/*CUSTOM CSS*/
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Raleway: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');

*, :after, :before {
    box-sizing: border-box;
}

:root {
    /*Brand colors*/
    --brand-01: #ef7d34;
    --brand-02: #00014D;
    --brand-03: #191a1b;
    --brand-04: #53EFEF;
    /*Neutrals*/
    --neutral-01: #FFFFFF;
    --neutral-02: #f4f4f4;
    --neutral-03: #616A82;
    --neutral-04: #80889B;
    --neutral-05: #DFE1E6;
    /*Tints*/
    --brand-01-tint-75: #409CD3;
    --brand-01-tint-60: #66B0DC;
    --brand-01-tint-40: #99CAE7;
    --brand-01-tint-20: #CCE5F3;
    --brand-01-tint-5: #F2F8FC;
    /*Link & hover colors*/
    --brand-01-links: #006BAA;
    --brand-01-hover-dark: #ef7d34;
    --brand-01-hover-light: #E6F2F9;
    --brand-02-hover-dark: #000333;
    --brand-02-hover-light: #E6E6EC;
    --neutral-01-hover-light: #FFFFFF33; /*FFFFFF 20% opacity*/
    /*Status*/
    --ui-error: #BA0808;
    --ui-warning: #EC721C;
    --ui-success: #007BC4;
    /*Sub-brand*/
    --sub-brand-01: #09882D;
    --sub-brand-01-tint-60: #9AC872;
    --sub-brand-01-tint-20: #D8E6BA;
    --sub-brand-02: #F8CB46;
}

html, body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    height: 100%;
    background: var(--neutral-02);
    color: var(--brand-02);
}

h1 {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
}

h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
}

h3 {
    font-family: 'Raleway';
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
}

h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
}

.p-bold {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}

.small-bold {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}

@media (min-width: 768px) {
    h1 {
        font-size: 40px;
        line-height: 50px;
    }

    h2 {
        font-size: 32px;
        line-height: 42px;
    }

    h4 {
        font-size: 20px;
        line-height: 28px;
        display: contents;
    }

    .p-bold {
        line-height: 24px;
    }

    .small-bold {
        line-height: 22px;
    }
}

hr {
    color: var(--brand-01-tint-75);
}

@media (max-width: 991px) {
    hr {
        width: 70%;
    }
}

@media (max-width: 560px) {
    hr {
        width: 100%;
    }
}

/*LIST*/
.ordered-list {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

.ordered-list > li {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
    padding-bottom: 8px;
}

    .ordered-list > li:before {
        content: counters(item, ".") ". ";
        display: table-cell;
        padding-right: 0.6em;
    }

li .ordered-list > li {
    margin: 0;
}

    li .ordered-list > li:before {
        content: counters(item, ".") " ";
    }

/*LIST endregion*/

/*Header*/
.top-header {
    padding: 0 120px;
    gap: 440px;
    background: var(--brand-01);
    border-bottom: 1px solid var(--brand-01-tint-75);
}

.item {
    padding: 10px;
}

.logo {
    height: 35px;
    width: auto;
}

.header-text {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    text-decoration: none;
    text-align: right;
    color: var(--neutral-01);
}

    .header-text:hover {
        color: var(--neutral-01);
    }
/*Header endregion*/

/*Card*/
.card {
    font-family: 'Raleway', sans-serif;
    padding: 10px;
    color: var(--brand-02);
    background: var(--neutral-01);
    border: 1px solid var(--brand-01-tint-20);
    border-radius: 4px;
}

.card-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.hyper_link {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    color: var(--brand-01-links);
    cursor: pointer;
}

    .hyper_link:hover {
        color: var(--brand-01-hover-dark);
    }

    .hyper_link:focus {
        color: var(--brand-01-hover-dark);
    }
/*Card endregion*/

/*Icons*/
.success-check-icon {
    color: var(--ui-success);
    font-size: 50px;
}

.fail-check-icon {
    color: var(--ui-error);
    font-size: 50px;
}

.warning-check-icon {
    color: var(--ui-warning);
    font-size: 50px;
}

.success-svg {
    background-image: url(../images/success.svg);
    height: 40px;
    width: 40px;
    align-self: center;
    background-repeat: no-repeat;
    background-position: center;
}
/*Icons endregion*/

/*Buttons*/
.retry-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    margin: 32px 0;
    gap: 10px;
    height: 48px;
    width: 100%;
    min-width: 150px;
    background: var(--brand-01) 0% 0% no-repeat padding-box;
    color: var(--neutral-01);
    border-radius: 100px;
    border: none;
    outline: none;
}

    .retry-btn:hover {
        background-color: var(--brand-01-hover-dark);
        border: 1px solid var(--brand-01);
    }

    .retry-btn:focus {
        background-color: var(--brand-01);
        border: 1px solid var(--brand-01-hover-dark);
        color: var(--neutral-01);
    }

@media (min-width: 768px) {
    .retry-btn {
        width: auto;
        padding: 0 24px;
    }
}

.proceed-to-pay-btn {
    color: var(--brand-01-links);
    background-color: transparent;
    border: 2px solid var(--brand-01-links);
    border-radius: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-self: start;
    padding: 12px 24px;
    margin: 32px 0;
    gap: 10px;
    height: 48px;
    width: 100%;
    min-width: 180px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    justify-content: center;
    outline: none;
    overflow: hidden;
    position: relative;
    -webkit-text-decoration: none;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

    .proceed-to-pay-btn:hover {
        color: var(--brand-01-links);
        border: 1px solid var(--brand-01-hover-dark);
        background-color: var(--brand-01-hover-light);
    }

    .proceed-to-pay-btn:disabled {
        background-color: var(--neutral-04);
        color: var(--neutral-05);
        border: none;
    }

@media (min-width: 768px) {
    .proceed-to-pay-btn {
        width: auto;
        min-width: 180px;
        padding: 0 24px;
    }
}

@media (max-width: 260px) {
    .proceed-to-pay-btn {
        width: 100%;
        min-width: 100px;
        font-size: 12px;
        padding: 0 12px;
    }
}
/*Buttons endregion*/

/*paymen code form*/
.payment-code-input {
    color: var(--brand-02);
    background-color: var(--neutral-01);
    border: 1px solid var(--neutral-04);
    height: 44px;
    width: 100%;
    min-width: 150px;
    outline: none;
    padding: 10px 16px;
    border-radius: 2px;
}

    .payment-code-input:hover {
        border: 1px solid var(--brand-03);
    }

    .payment-code-input:focus {
        border: 2px solid var(--brand-03);
    }

@media (min-width: 768px) {
    .payment-code-input {
        width: auto;
    }
}
/*paymen code form endregion*/

/*Footer*/
.footer {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    position: relative;
    bottom: 0;
    width: 100%;
    border-top: 1px solid var(--brand-01-tint-20);
    background-color: var(--neutral-01);
    color: var(--brand-02);
}

@media (max-width: 345px) {
    .footer {
        font-size: 12px;
        padding: 0;
        margin: 0;
    }
}
/*Footer endregion*/

/*Loader*/
.image-loader-wrap {
    position: absolute;
    left: 0%;
    right: 0%;
    top: 46px;
    bottom: 0%;
    display: flex;
    justify-content: center;
    background-color: var(--neutral-01);
}

.image-loader {
    background-image: url(../images/loading_spinner.png);
    width: 64px;
    height: 64px;
    position: absolute;
    align-self: center;
    background-repeat: no-repeat;
    background-position: center;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-overlay h2 {
    color: var(--neutral-01);
    margin-top: 50px;
    padding: 5px;
}

.loader-overlay {
    overflow: hidden;
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    height: 100vh;
    background: #011F44;
    mix-blend-mode: normal;
    opacity: 0.8;
    display: flex;
    justify-content: center;
    z-index: 9999;
}

.image-loader-light {
    background-image: url(../images/loading_spinner_light.png);
    width: 64px;
    height: 64px;
    position: absolute;
    align-self: center;
    background-repeat: no-repeat;
    background-position: center;
    animation: spin 2s linear infinite;
}
/*Loader endregion*/

/*ACI PAYMENT FORM*/
.wpwl-container {
    font-family: 'Raleway', sans-serif;
    margin-top: 20px;
}

.wpwl-form {
    margin: 0;
}

.wpwl-control {
    background-color: var(--neutral-01);
    border: 1px solid var(--neutral-04);
    border-radius: 2px;
    position: relative;
}

    .wpwl-control:hover {
        border: 1px solid var(--brand-03);
    }

    .wpwl-control:focus {
        border: 2px solid var(--brand-03);
    }

.wpwl-has-error {
    padding-right: 40px;
    position: relative;
    color: var(--brand-02);
    border-color: var(--ui-error);
}

.wpwl-hint {
    color: var(--ui-error);
}

.wpwl-button-pay {
    font-family: 'Raleway', sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 10px;
    height: 48px;
    width: 100%;
    color: var(--brand-04);
    background-color: var(--brand-02) !important;
    border: 0;
    border-radius: 100px;
}

    .wpwl-button-pay:hover {
        color: var(--brand-04);
        background-color: var(--brand-02-hover-dark) !important;
        border: 1px solid var(--brand-04) !important;
    }

@media (min-width: 768px) {
    .wpwl-button-pay {
        width: 180px;
        padding: 0 24px;
    }
}

.wpwl-brand-card-logo-highlighted::before {
    border: none;
}

.wpwl-text-billing {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    margin-top: 7px;
}

    .wpwl-text-billing span {
        color: var(--brand-01);
    }

@media (min-width: 768px) {
    .wpwl-text-billing {
        font-size: 12px;
        line-height: 18px;
    }
}

.wpwl-hidden {
    display: block !important;
}

.wpwl-label {
    text-transform: lowercase;
}

    .wpwl-label::first-letter {
        text-transform: uppercase;
    }
/*ACI PAYMENT FORM endregion*/

/*Modal*/
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #011F44;
    mix-blend-mode: normal;
    opacity: 0.8;
    z-index: 999;
    cursor:pointer;
}

.modal-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 15px 15px 32px;
    width: 768px;
    min-width: auto;
    max-height:768px;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--neutral-01);
    box-shadow: -5px 8px 10px 2px rgba(29, 51, 85, 0.15);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .modal-container {
        padding: 0;
        width: 100%;
        min-width: auto;
        height: 100%;
    }
}

@media (max-width: 375px) {
    .modal-container {
        padding:0;
        width: 100%;
        min-width: 180px;
        height: 100%;
    }
}

.close-container {
    display: flex;
    position: sticky;
    right: 0;
    top: 0;
    padding: 16px;
    z-index: 999;
}

.close-modal-icon {
    color: var(--brand-01);
    font-size: 24px;
    cursor: pointer;
    padding: 16px;
}

.modal-heading {
    margin-bottom: 12px;
}

.modal-content {
    position: relative;
    top: 16px;
    padding: 0 24px 32px 24px;
    border: none;
    scroll-behavior: auto;
}
/*Modal endregion*/

/*Checkbox*/
.form-check {
    padding-top: 16px;
}

.form-check-input {
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    background-color: var(--neutral-01);
    border: 1px solid var(--neutral-04);
    border-radius: 4px;
    margin: auto;
}

    .form-check-input:hover {
        border: 2px solid var(--brand-01);
    }

    .form-check-input:checked[type=checkbox] {
        background-color: var(--neutral-01);
        background-image: url(../images/checbox_icon.svg);
        color: var(--brand-01);
        border: 2px solid var(--brand-01);
    }

    .form-check-input:focus[type=checkbox] {
        border: 2px solid var(--brand-01);
        outline: 2px solid var(--brand-02);
        box-shadow: none !important;
        margin-top: 2px;
        margin-bottom: 2px;
    }

.checkbox-label {
    margin-left: 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}


@media (min-width: 768px) {
    .checkbox-label {
        line-height: 22px;
    }
}

.required-field {
    color: var(--ui-error);
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    margin: 4px 0 8px 12px;
}
/*Checkbox endregion*/

/*Page not found 404*/
.error-page {
    padding: 32px 120px;
    gap: 440px;
    background: var(--brand-01);
    color: var(--neutral-01);
}

.error-page-title-svg {
    margin-bottom: 16px;
    max-width: 100%;
}

.error-page-search-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    margin: 32px 0;
    gap: 10px;
    height: 48px;
    width: 100%;
    min-width: 150px;
    background: var(--neutral-01) 0% 0% no-repeat padding-box;
    color: var(--brand-01);
    border-radius: 100px;
    border: none;
    outline: none;
}

    .error-page-search-btn:hover {
        background-color: var(--brand-01-hover-light);
        color: var(--brand-01-links);
        border: 1px solid var(--brand-01-tint-40);
    }

    .error-page-search-btn:focus {
        background-color: var(--neutral-01);
        border: 2px solid var(--brand-01-tint-40);
        color: var(--brand-01);
    }

@media (min-width: 768px) {
    .error-page-search-btn {
        width: auto;
        min-width: 150px;
        padding: 0 24px;
    }
}
/*Page not found 404 endregion*/


/*Expired Alert*/
.expired-alert-container {
    margin-bottom: 40px;
    padding: 20px 16px 24px;
}

@media (min-width: 375px) {
    .expired-alert-container {
        margin-bottom: 56px;
        padding: 32px;
    }
}

@media (min-width: 768px) {
    .expired-alert-container {
        margin-bottom: 80px;
        padding: 40px;
    }
}

.warning-wrapper {
    padding-right: 16px;
    justify-items: center;
    background-image: url(../images/warning.png);
    height: 64px;
    width: 64px;
}

@media (min-width: 375px) {
    .warning-wrapper {
        margin-bottom: 16px;
    }
}


/*Expired Alert endregion*/
