@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

input::placeholder {
    opacity: 0.3 !important;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: normal;
}

.main {
    overflow-y: scroll;
}

.border-c-primary {
    border-color: var(--primary-color) !important;
}

.border-c-secondary {
    border-color: var(--secondary-color) !important;
}

.border-c-red {
    border-color: var(--red-color) !important;
}

.bg-c-primary {
    background-color: var(--primary-color) !important;
}

.bg-c-secondary {
    background-color: var(--secondary-color) !important;
}

.text-c-primary {
    color: var(--primary-color) !important;
}

.text-c-secondary {
    color: var(--secondary-color) !important;
}

.text-c-red {
    color: var(--red-color) !important;
}

.secondary-btn {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

.btn-outline-c-primary {
    --bs-btn-color: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--primary-color);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--primary-color);
    --bs-gradient: none;
}

.hidden {
    display: none !important;
}

/* minimalistic scrollbar */
::-webkit-scrollbar {
    width: 0px;
}

input[type="file" i] {
    opacity: 0;
    z-index: 997;
    cursor: pointer;
    width: 128px;
    height: 128px;
}

.pagination {
    --bs-pagination-active-bg: var(--primary-color);;
    --bs-pagination-active-border-color: var(--primary-color);;
}

.cursor-pointer {
    cursor: pointer;
}

.chips.minimized {
    display: none !important;
}

.top-negative {
    top: -5px !important;
}

.end-negative {
    right: -5px !important;
}

.start-negative {
    left: -5px !important;
}

.bottom-negative {
    bottom: -5px !important;
}

:root, [data-bs-theme=light] {
    --primary-color: #000642;
    --secondary-color: #e8bb2b;
    --white-color: #fff;
    --red-color: #ff040493;
}

@media only screen and (max-width: 768px) {
    .modal {
        font-size: 11px;
    }
}