@import url(imports/_header.css);
@import url(imports/_footer.css);
@import url(imports/_sidebar.css);
@import url(imports/_modals.css);
@import url(imports/_forms.css);

:root {
    --header-height: 90px;
    --footer-top-height: 180px;
    --footer-bottom-height: 57px;
    --footer-height: calc(var(--footer-top-height) + var(--footer-bottom-height));
    --page-header-height: 130px;
    --gray-color: #C8C8C8;
    --container-margin: calc((100vw - 1440px) / 2);
    --main-radius: 6px;
    --medium-radius: 12px;
    --dark-color: #111A22;
    --line-color: #D9E4F2;
    --table-line-color: #F0F4F8;
    --wrapper-width: 1150px;
    --shadow:  0px 4px 25px 0px #00234412;
    --input-bg: #EEF3F9;
    --label-color: #495965;
    --pending-color: #007094;
    --accepted-color: #009266;
    --rejected-color: #940059;
    --ghosted-color: #CC9300;
    --completed-color: #003E77;
    --canceled-color: #495965;
    --status-color: defaultValue;
}
@media (max-width: 1439px) {
    :root {
        --container-margin: calc((100vw - 1180px) / 2);
    }
}
@media (max-width: 1199px) {
    :root {
        --container-margin: calc((100vw - 950px) / 2);
        --wrapper-width: 100%;
    }
}
@media (max-width: 969px) {
    :root {
        --container-margin: calc((100vw - 750px) / 2);
        --footer-bottom-height: 95px;
    }
}
@media (max-width: 749px) {
    :root {
        --container-margin: calc((100vw - 576px) / 2);
        --footer-top-height: 360px;
        --page-header-height: 90px;
    }
}
@media (max-width: 575px) {
    :root {
        --container-margin: calc((100vw - 480px) / 2);
        --footer-bottom-height: 120px;
    }
}
@media (max-width: 480px) {
    :root {
        --container-margin: 10px;
        --footer-bottom-height: auto;
    }
}
body,
body > *,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
input,
select,
textarea,
button,
span {
    font-family: var(--font-family);
    color: var(--text-color)
}
a:hover {
    color: var(--text-color);
}
button {
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: none;
}
button:focus {
    outline: none;
    box-shadow: none;
}
button.disabled,
a.disabled {
    opacity: 0.6;
    cursor: no-drop;
}
.noto-fonts {
    font-family: var(--font-family-noto);
}
.mainColor {
    color: var(--color) !important;
}
main {
    padding-top: var(--header-height);
    min-height: calc(100vh - var(--footer-height));
}
.page-wrapper {
    width: var(--wrapper-width);
    margin: auto;
}
.page-header {
    height: var(--page-header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-color);
    position: relative;
}
.page-header .sponsored_by {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    color: #FFFFFF;
    padding-left: 1.25rem;
}
.header-sponsor-img {
    max-height: 75px;
    margin-left: 1.5rem;
    object-fit: contain;
}
.page-title {
    font-family: var(--font-family-noto);
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 0;
    width: calc(100% - 80px);
}
.header-title-wrapper {
    justify-content: center;
    position: relative;
}
.big-margin{
    margin-top: 140px;
}
.visit_website {
    width: fit-content;
    height: 39px;
    background: var(--color);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 15px;
    letter-spacing: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-top: 1.25rem;
    border: none;
}

.main-btn {
    width: fit-content;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--main-radius);
    padding: 0 1.25rem 0 1.5rem;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    background: var(--color);
}
.main-btn:hover {
    text-decoration: none;
    color: #FFFFFF;
}
.main-btn.smaller-btn {
    height: 44px;
    font-size: 14px;
    line-height: 17px;
}
.main-btn.inverse-color {
    background: #FFFFFF;
    color: var(--color);
}
.main-btn.light-color {
    background: var(--input-bg);
    color: var(--color);
}
.main-btn.light-color .info-icon {
    filter: brightness(0) saturate(100%) invert(35%) sepia(68%) saturate(1482%) hue-rotate(171deg) brightness(91%) contrast(101%);
}
.main-btn.dark-btn {
    background: var(--dark-color);
    box-shadow: 0 4px 52.599998474121094px 0 #00000021;
}
.main-btn.outline-btn {
    background: none;
    color: var(--label-color);
    border: 1px solid #49596533
}
.text-normal {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    color: var(--text-color);
}
.text-smaller,
.text-smaller p {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0;
    text-align: left;
    color: var(--text-color);
}
.main-heading {
    font-family: var(--font-family-noto);
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0;
    text-align: left;
    color: var(--color);
}
.main-heading.smaller {
    font-size: 24px;
    line-height: 27px;
}
.section-heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: var(--dark-color);
    margin-bottom: 1rem;
}
.big-heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: var(--dark-color);
}
.btn_icon_square {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: var(--input-bg);
    padding: 0;
}
.text-normal.inverse-color,
.text-smaller.inverse-color,
.text-smaller.inverse-color > p,
.text-smaller.inverse-color > p > *,
.main-heading.inverse-color {
    color: #FFFFFF;
}

.img-radius-full {
    border-radius: var(--medium-radius);
}
.inverse-color > svg path {
    fill: var(--color);
}
.tooltip.show {
    opacity: 1 !important;
}
.tooltip-inner {
    background-color: var(--white) !important;
    color: var(--dark-color);
    box-shadow: var(--shadow);
    border-radius: var(--main-radius);
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: var(--white) !important;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
    border-right-color: var(--white) !important;
}


.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: var(--white) !important;
}


.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
    border-left-color: var(--white) !important;
}

.td.status {
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 0 1rem;
    border-radius: 32px;
    position: relative;
    font-weight: 600;
    color: var(--status-color);
    white-space: nowrap;
    font-size: 14px;
}
.td.status:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
    border-radius: 32px;
    opacity: 0.1;
    background: var(--status-color);
}
.td.status.text-pending {
    color: var(--pending-color);
}
.td.status.text-pending:before {
    background: var(--pending-color);
}
.td.status.text-accepted {
    color: var(--accepted-color)
}
.td.status.text-accepted:before {
    background: var(--accepted-color);
}
.td.status.text-rejected {
    color: var(--rejected-color);
}
.td.status.text-rejected:before {
    background: var(--rejected-color);
}
.td.status.text-ghosted {
    color: var(--ghosted-color);
}
.td.status.text-ghosted:before {
    background: var(--ghosted-color);
}
.td.status.text-completed {
    color: var(--completed-color);
}
.td.status.text-completed:before {
    background: var(--canceled-color);
}
.td.status.text-canceled {
    color: var(--canceled-color);
}
.td.status.text-canceled:before {
    background: var(--canceled-color);
}
.warning-wrapper {
    background: #49596514;
    border-radius: 4px;
    padding: 0.5rem;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: left;
    color: var(--label-color);
}
.warning-wrapper span {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: left;
    color: var(--label-color);
}
.bordered_wrapper {
    border: 1px solid var(--line-color);
    border-radius: 8px;
    padding: 1rem;
    max-height: 540px;
    overflow-y: auto;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


#notification {
    background: var(--color);
}
#notification .text-smaller p {
    margin-bottom: 0;
}

@media (max-width: 969px) {
    .bordered_wrapper {
        max-height: unset;
        overflow-y: unset;
    }
}
@media (max-width: 749px) {
    .page-title {
        font-size: 24px;
        line-height: 30px;
    }
}
@media (max-width: 480px) {
    .page-title {
        font-size: 20px;
        line-height: 24px;
    }
}