@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    /* COLOURS */
    /* --primary: rgb(29, 112, 184); */
    --primary: #2382ff;
    --secondary: #003e7c;
    --white: rgb(255, 255, 255);
    --dark-text: #1A2B48;
    --light-text: #f9f9fb;
    --dark: #022859;
    /* --light: rgb(243, 242, 241); */
    --light: #f9f9fb;
    --grey: #5C6B7C;
    --xtra-light: rgb(219, 219, 219);
    --action: #C92A2A;
    --success: rgb(0, 160, 106);
    --trustpilot: #00B67A;
    --trustpilot-hover: rgb(0, 160, 106);

    /* TYPOGRAPHY */
    --font-title: "Open Sans", sans-serif;
    --font-family: "Nunito", sans-serif;

    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;

    --fs-h1: clamp(2rem, 5vw, 3.2rem);
    --fs-h2: clamp(1.5rem, 4.5vw, 2.2rem);
    --fs-h3: clamp(1.25rem, 4vw, 1.8rem);
    --fs-h4: clamp(1rem, 3.5vw, 1.5rem);
    --fs-h5: clamp(1rem, 3.5vw, 1.2rem);
    --fs-nav: clamp(0.905rem, 0.25vw, 1rem);
    --fs-title: clamp(1.65rem, 4.5vw, 2.2rem);
    --fs-base: 1rem;
    --fs-md: 0.85rem;
    --fs-sm: 0.75rem;
    --fs-xs: 0.625rem;

    /* SECTIONS PADDING */
    --section-p-xl: clamp(6em, 14vw, 14em);
    --section-p-lg: clamp(6em, 10vw, 10em);
    --section-p-md: min(6vw, 6em);
    --section-p-sm: min(3.5vw, 2.5em);
    --section-p-xs: min(3.5vw, 1.5em);
    --section-p-xxs: min(3.5vw, 1rem);

    /* BORDER RADIUS */
    --br-base: 0.125rem;
    --br-sm: 0.25rem;
    --br-rd: 0.75rem;

    /* TRANSITIONS */
    --transition: all 0.3s ease-in-out;
    --transition-slow: all 0.4s ease-in-out;
}

/*------------------------------------------------------------
  [1. GENERAL]
  ------------------------------------------------------------*/

html,
body {
    font-family: var(--font-family);
    color: var(--dark-text);
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    padding: 0;
}

img {
    border: 0;
    height: auto;
    image-rendering: auto;
    vertical-align: middle;
}

main {
    transition: var(--transition);
}

section {
    padding-top: var(--section-p-md);
    padding-bottom: var(--section-p-md);
}

.head {
    position: relative;
}

.head-xl {
    padding: var(--section-p-xl) 0;
}

.head-lg {
    padding-top: var(--section-p-xl);
    padding: var(--section-p-lg) 0;
}

.head-md {
    padding: var(--section-p-md) 0;
}

.head-sm {
    padding: var(--section-p-sm) 0 var(--section-p-md);
}

.head p {
    font-weight: var(--fw-400);
}

a,
.link {
    text-decoration: none !important;
}

.title-badge {
    border: 0;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    border-radius: var(--br-rd);
    padding: 4px 8px 4px 4px;
}

.title-underline {
    line-height: 40px;
    margin-bottom: 24px;
    position: relative;
    border-bottom: 0;
    display: inline-block;
}

.title-underline::before {
    background-color: var(--action);
    bottom: -6px;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 30px;
}

.title-underline::after {
    background-color: var(--primary);
    bottom: -6px;
    content: "";
    height: 4px;
    left: 34px;
    position: absolute;
    width: 60px;
}

.title-underline-short {
    line-height: 40px;
    margin-bottom: 24px;
    position: relative;
    border-bottom: 0;
    display: inline-block;
}

.title-underline-short::before {
    background-color: var(--action);
    bottom: -4px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 10px;
}

.title-underline-short::after {
    background-color: var(--primary);
    bottom: -4px;
    content: "";
    height: 2px;
    left: 14px;
    position: absolute;
    width: 30px;
}

.basic-img {
    border-radius: var(--br-sm);
    width: 100%;
    max-height: clamp(300px, 40vw, 600px);
    object-fit: cover;
    background-color: var(--light);
}

.basic-img-sm {
    height: clamp(200px, 20vw, 300px);
}

.basic-img-md {
    height: clamp(250px, 25vw, 400px);
}

.basic-img-lg {
    height: clamp(300px, 30vw, 600px);
}

.txt-nowrap {
    white-space: nowrap;
}

.txt-nowrap-sm {
    white-space: normal;
}

@media (max-width: 1399px) {
    .txt-nowrap {
        white-space: normal;
    }

    .txt-nowrap-sm {
        white-space: nowrap;
    }
}

.vr {
    display: inline-block;
    align-self: stretch;
    width: 1px;
    min-height: 2em;
    margin: 0;
    background-color: currentcolor;
    opacity: .25;
}

/*------------------------------------------------------------
  [2. NAVIGATION]
  ------------------------------------------------------------*/

.navbar {
    position: relative;
    top: 0;
    width: 100%;
    justify-content: center;
    background-color: transparent;
    padding: 0.5rem 0;
    z-index: 999;
}

.navbar-brand {
    display: flex;
    flex-direction: row;
}

.navbar-brand img {
    width: 32px;
    margin: auto 0;
}

.navbar-brand .brand {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-brand .brand-service {
    margin-left: 12px;
    margin-top: 0;
    font-size: 1.6rem;
    font-weight: var(--fw-500);
    color: var(--white);
}

.navbar-light .navbar-nav .nav-link,
.navbar-nav .nav-link {
    color: var(--white);
    font-size: var(--fs-nav);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-nav .nav-link:hover {
    color: var(--xtra-light);
}

.navbar-light .navbar-toggler {
    color: var(--white);
    border-color: var(--white);
}

.language-flag {
    position: absolute;
    top: 2px;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.3rem;
    height: 1rem;
    margin: 0;
    border-radius: 2px;
    overflow: hidden;
}

.language-select {
    font-family: var(--font-family);
    line-height: 1.5;
    font-size: var(--fs-nav);
    color: var(--white);
    border-radius: var(--br-sm);
    transition: var(--transition);
    text-transform: capitalize;
    background-color: transparent;
    border: 0;
    height: auto;
    width: fit-content;
    text-align: center;
    z-index: 99;
    padding-left: 1.4rem !important;
    padding-right: 0 !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.language-select:hover,
.language-select:focus {
    color: var(--xtra-light);
    cursor: pointer;
    outline: none;
    border: none !important;
}

.language-select option {
    background-color: var(--white);
    color: var(--dark-text);
}


/*------------------------------------------------------------
  [3. TEXT ]
  ------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-title);
    color: var(--dark-text);
    overflow-wrap: break-word;
}

h1,
.h1 {
    font-size: var(--fs-h1);
    font-weight: var(--fw-600);
    line-height: 140%;
}

h2,
.h2 {
    font-size: var(--fs-h2);
    font-weight: var(--fw-600);
}

h3,
.h3 {
    font-size: var(--fs-h3);
    font-weight: var(--fw-600);
}

h4,
.h4 {
    font-size: var(--fs-h4);
    font-weight: var(--fw-600);
}

h5,
.h5 {
    font-size: var(--fs-h5);
    font-weight: var(--fw-500);
}

p,
.p {
    font-size: var(--fs-base);
    font-weight: var(--fw-400);
    margin-bottom: 1rem;
}

small,
.small {
    font-size: var(--fs-sm);
    font-weight: var(--fw-300);
}

.fs-medium {
    font-size: var(--fs-md);
}

.fs-small {
    font-size: var(--fs-sm);
}

.fs-xsmall {
    font-size: var(--fs-xs);
}

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

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

.text-light {
    color: var(--grey) !important;
}

.text-xtra-light {
    color: var(--light-text) !important;
}

/*------------------------------------------------------------
  [4. BACKGROUNDS]
  ------------------------------------------------------------*/

.bg {
    padding: var(--section-p-xs) var(--section-p-sm) !important;
    border-radius: var(--br-sm);
    border: 1px solid var(--border-grey);
}

.bg-sm {
    padding: var(--section-p-xs) !important;
    border-radius: var(--br-sm);
    border: 1px solid var(--white);
}

.bg-xs {
    padding: var(--section-p-xxs) !important;
    border-radius: var(--br-base);
    border: 1px solid var(--white);
}

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

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

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

.bg-xtra-light {
    background-color: var(--xtra-light) !important;
}

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

.bg-transparent {
    background-color: transparent !important;
}

.bg-hero {
    background-image: url("/img/backgrounds/hero.webp");
    background-color: var(--secondary);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
}

.bg-patterned,
.bg-pattern-light {
    position: relative;
    z-index: 99;
    background-color: var(--white);
}

.bg-pattern {
    position: relative;
    z-index: 99;
    background-color: var(--white);
    /* background-image: url(/img/backgrounds/bg-worldwide.png); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-pattern::after {
    background: linear-gradient(180.63deg,
            var(--secondary) 2.53%,
            var(--secondary) 88.6%) !important;
    bottom: -1px;
    content: "";
    display: block;
    height: 10rem;
    left: 0;
    position: absolute;
    right: 0;
    z-index: -1;
}

.bg-pattern-light::after {
    background: linear-gradient(180.63deg,
            var(--light) 2.53%,
            var(--light) 88.6%) !important;
    bottom: -1px;
    content: "";
    display: block;
    height: 10rem;
    left: 0;
    position: absolute;
    right: 0;
    z-index: -1;
}

.bg-patterned {
    background-image: url(/img/backgrounds/patterns.svg);
    background-color: var(--white);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-head-block {
    position: relative;
    background-image: url(/img/backgrounds/background-flag.png);
    background-color: var(--secondary);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 99;
}

.bg-head-block::after {
    background: linear-gradient(180.63deg,
            var(--light) 2.53%,
            var(--light) 88.6%) !important;
    bottom: 0;
    content: "";
    display: block;
    height: 3rem;
    left: 0;
    position: absolute;
    right: 0;
    z-index: -1;
}

.bg-head-block-big {
    position: relative;
    z-index: 99;
    background-color: var(--secondary);
}

.bg-head-block-big::after {
    background: linear-gradient(180.63deg,
            var(--light) 2.53%,
            var(--light) 88.6%) !important;
    bottom: 0;
    content: "";
    display: block;
    height: 28rem;
    left: 0;
    position: absolute;
    right: 0;
    z-index: -1;
}

.bg-bordered-left-primary {
    border-left: 2px solid var(--primary);
    border-radius: 0 var(--br-sm) var(--br-sm) 0!important;
}

.bg-bordered-left-action {
    border-left: 2px solid var(--action);
    border-radius: 0 var(--br-sm) var(--br-sm) 0!important;
}

@media (max-width: 776.98px) {
    .bg {
        padding: var(--section-p-md) !important;
    }

    .bg-head-block-big::after {
        height: 20rem;
    }
}

/*------------------------------------------------------------
  [5. BUTTONS / LINKS ]
  ------------------------------------------------------------*/

.btn {
    display: flex;
    position: relative;
    width: fit-content;
    height: 100%;
    max-height: 50px;
    padding: 16px 32px;
    font-size: var(--fs-base);
    border-radius: var(--br-sm);
    font-weight: var(--fw-600);
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.btn span {
    display: flex;
    position: relative;
    /* left: -12px; */
    transition: (var(--transition));
}

/* .btn span::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-image: url("/img/icons/icon-arrow-up.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    top: 6px;
    right: -22px;
} */

.btn:hover span::after {
    top: 4px;
    right: -24px;
    transition: all 0.2s ease-in-out;
}

.btn span.spinner-border {
    left: 0;
}

.btn span.spinner-border::after {
    display: none;
    opacity: 0;
}

.btn-sm {
    min-height: 50px;
    padding: 10px 30px;
}

.btn-cta {
    background-color: var(--action);
    color: var(--white);
    font-weight: 700;
    border: 1px solid var(--action);
}

.btn-cta:hover,
.btn-cta:focus,
.btn-cta:active {
    color: var(--white);
    background-color: rgb(180, 33, 33);
    border: 1px solid var(--white);
    outline: none;
    box-shadow: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #2194d6;
    border: 1px solid #2194d6;
    outline: none;
    box-shadow: none;
}

.btn-outline-light {
    background-color: transparent;
    border: 1px solid var(--xtra-light);
    color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    outline: none;
    box-shadow: none;
}

.btn-outline-dark {
    opacity: 1;
    background-color: transparent;
    border: 1px solid var(--grey);
    color: var(--dark-text);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active {
    opacity: 0.6;
    background: transparent;
    border: 1px solid var(--xtra-light);
    color: var(--dark-text);
    outline: none;
    box-shadow: none;
}

.btn-success {
    background-color: var(--trustpilot) !important;
    border-color: var(--trustpilot) !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: var(--trustpilot-hover) !important;
    border-color: var(--trustpilot-hover) !important;
}

.custom-relative-image {
    position: relative;
    top: -2px;
    width: 20px;
    height: 20px;
}

.border-primary {
    border-radius: var(--br-rd);
    border: 1px solid var(--primary);
    width: 100%;
    text-align: center;
}

#applicant_information .btn,
#applicationStepTwoForm .btn,
#applicationStepFourForm .btn,
#applicationStepFiveForm .btn {
    min-width: 180px;
}

@media (max-width: 776.98px) {
    .btn {
        width: fit-content;
        padding: 20px 40px;
    }

    #applicant_information .btn,
    #applicationStepTwoForm .btn,
    #applicationStepFourForm .btn,
    #applicationStepFiveForm .btn {
        width: 100%;
    }
}

/* Country select btn */
.dropbtn {
    color: var(--white);
    padding: 16px;
    font-size: var(--fs-base);
    border: none;
    cursor: pointer;
}

.countriesList {
    padding: 14px 20px 12px 45px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

/* The search field */
.countryText {
    height: 50px;
    width: 100%;
    box-sizing: border-box;
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: var(--fs-base);
    padding: 11px 20px 13px;
    border: none;
    border-radius: var(--br-base);
    text-overflow: ellipsis;
}

/* The search field when it gets focus/clicked on */
.countryText:focus {
    outline: 1px solid var(--xtra-light);
    color: #141414 !important;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-country {
    overflow: scroll;
    height: 200px;
    width: 100%;
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    background-color: #fbfbfb;
    min-width: 230px;
    border: 1px solid var(--xtra-light);
    border-radius: 0 0.25rem;
    margin: 0;
    z-index: 999;
}

/* Links inside the dropdown */
.dropdown-country div {
    color: var(--dark);
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.dropdown-country div:nth-of-type(even) {
    background-color: var(--white);
}

/* Change color of dropdown links on hover */
.dropdown-country div:hover {
    background-color: var(--light);
}

.dropdown-toggle::after {
    display: none;
}

.show {
    display: block;
}

/*------------------------------------------------------------
  [6. FORMS ]
  ------------------------------------------------------------*/

.form-step-section {
    position: relative;
    padding-bottom: 1.4rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--xtra-light);
}

label,
.label {
    color: var(--dark-text);
    font-size: 0.85rem;
    font-weight: var(--fw-500);
    margin-bottom: 4px;
}

@media (max-width: 767.98px) {
    label.form-check-label {
        font-size: var(--fs-xs);
        vertical-align: middle;
    }

    .form-step-section {
        padding-bottom: 0.5rem;
        margin-bottom: 1.2rem;
    }
}

.form-control,
.form-select,
select {
    height: 50px;
    border: 1px solid #e4e4e4;
    background-color: var(--light);
    border-radius: var(--br-sm);
    color: var(--dark-text);
    transition: var(--transition);
}

.form-select,
select {
    cursor: pointer;
}

.form-control:hover,
.form-select:hover,
select:hover {
    border: 1px solid var(--grey);
}

.just-validate-error-label {
    font-size: var(--fs-sm);
    margin-top: 2px;
}

.form-control.is-valid,
.was-validated .form-control:valid,
.form-control.is-invalid,
.was-validated .form-control:invalid {
    transition: none !important;
}

@media (max-width: 768px) {

    .form-control.is-valid,
    .was-validated .form-control:valid,
    .form-control.is-invalid,
    .was-validated .form-control:invalid {
        /* background-image: none; */
        padding-right: 0.75rem;
    }

    .form-select.is-invalid:not([multiple]):not([size]),
    .form-select.invalid:not([multiple]):not([size]),
    .form-select.valid:not([multiple]):not([size]),
    .form-select.is-valid:not([multiple]):not([size]) {
        padding-right: 2rem;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    }
}

.form-custom-floating {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-custom-floating .form-control {
    height: 55px;
    transition: var(--transition);
}

.form-custom-floating .form-control::placeholder {
    font-size: var(--fs-md);
}

.form-custom-floating>label {
    position: absolute;
    top: -10px;
    left: 10px;
    z-index: 1;
    height: fit-content;
    background: linear-gradient(to bottom, white, var(--light));
    border-radius: var(--br-base);
    padding: 0 5px;
    transition: var(--transition);
    transform: none !important;
}

.form-custom-floating>.form-control:focus {
    box-shadow: none;
}

.form-custom-floating>.form-control:focus~label {
    color: var(--primary);
    transform: none !important;
}

.form-custom-floating>.form-control:focus,
.form-custom-floating>.form-control:not(:placeholder-shown) {
    color: #212529;
    padding: 1rem 0.75rem;
}

.user-select-input {
    padding-left: 3rem;
}

.user-select-input-container img {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: auto;
    pointer-events: none;
}

.input-group {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    height: 50px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 3px;
    color: var(--dark-text);
    background-color: #fff;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--br-sm);
    border: 1px solid var(--xtra-light);
    color: var(--dark-text);
    transition: var(--transition);
}

.input-group label {
    position: absolute;
    top: 1px;
    left: 1px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    line-height: 347%;
    border-radius: var(--br-sm) 0 0 var(--br-sm);
    background-color: var(--light);
    border-right: 1px solid var(--xtra-light);
    cursor: pointer;
    z-index: 99;
    transition: var(--transition);
}

.input-group label:hover {
    background-color: #dce0e4;
}

.form-image-upload {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    font-size: var(--fs-md);
    padding-left: 170px;
    padding-top: 14px;
    overflow: hidden;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-image-upload::-webkit-file-upload-button {
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
}

@-moz-document url-prefix() {
    input[type="file"] {
        position: absolute;
        top: 0;
        left: 0;
        background-color: transparent;
        font-size: var(--fs-md);
        padding-left: 100px;
        padding-top: 14px;
        -moz-appearance: none;
        overflow: hidden;
    }
}

.custom-checkbox-input {
    display: none;
    position: relative;
}

.custom-checkbox {
    align-items: center;
    border: 1px solid var(--xtra-light);
    border-radius: var(--br-sm);
    cursor: pointer;
    display: block;
    display: flex;
    flex-direction: inherit;
    margin: 5px 0;
    min-height: 60px;
    position: relative;
    width: 100%;
    transition: var(--transition);
}

.custom-checkbox svg path {
    fill: var(--primary);
    transition: var(--transition);
}

.custom-declaration-checkbox .custom-checkbox-input {
    display: flex;
    margin: auto 6px auto 0;
    width: 1.2em;
    height: 1.2em;
}

.custom-declaration-checkbox {
    border-radius: var(--br-sm);
    min-height: 40px;
    justify-content: center;
    margin: 0;
    border: 1px solid var(--xtra-light);
    background-image: none !important;
}

.custom-checkbox.checked,
.custom-declaration-checkbox.checked {
    border: 1px solid #198754;
    transition: var(--transition);
}

.custom-checkbox.checked {
    box-shadow: inset 0 0 0 0.6px #198754;
    border: 1px solid #198754;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    background-repeat: no-repeat;
    transition: none !important;
}

.custom-declaration-checkbox .custom-checkbox-input:checked {
    background-color: #198754;
    box-shadow: none;
    outline: none;
    border: 1px solid #198754;
}

.custom-declaration-checkbox .custom-checkbox-input:focus {
    box-shadow: none;
    outline: none;
}

.custom-declaration-checkbox .custom-checkbox-label {
    margin: auto 0;
}

.custom-checkbox.checked svg path {
    fill: #198754;
}

.custom-radio-field {
    display: flex;
    flex-direction: row;
    min-width: fit-content;
}

/* Default style for all browsers */
.custom-radio-field input[type="radio"] {
    outline: none !important;
    margin-right: 2px;
    position: relative;
    border: 0;
    top: 1px;
    overflow: hidden;
}

/* Apply top: 1px; only in Google Chrome */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
    .custom-radio-field input[type="radio"] {
        top: 1px;
    }
}

/* Apply top: -1px; only in Firefox */
@-moz-document url-prefix() {
    .custom-radio-field input[type="radio"] {
        top: -1px;
    }
}

/* Apply top: -1px; only in Safari */
@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: -apple-appearance) {
        .custom-radio-field input[type="radio"] {
            top: -1px;
        }
    }
}

.custom-radio-field label {
    background-color: var(--light);
    color: var(--dark-text);
    font-size: var(--fs-base);
    line-height: 1;
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--light);
    transition: background-color 0.1s ease-in-out;
    border-radius: var(--br-base);
}

.custom-radio-field label:hover {
    cursor: pointer;
}

.custom-select-countries {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    width: 100%;
    height: 50px;
    border-radius: var(--br-sm);
    color: var(--dark-text);
    transition: var(--transition);
    position: relative;
    border: 1px solid #e4e4e4;
    background-color: var(--light);
    background-image: url("/img/icons/icon-down-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 18px;
    padding-left: 10px;
}

.custom-select-countries .dropbtn,
.custom-select-countries select {
    display: flex;
    align-items: center;
    border: 1px solid #e4e4e4;
    background-color: var(--light);
    color: var(--dark-text);
    transition: var(--transition);
    line-height: 1.4;
    padding: 10px;
    width: 100%;
    height: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    text-align: left;
}

.custom-select-phone-parent {
    position: relative;
    display: flex;
    flex-direction: row;
    border: 1px solid var(--xtra-light);
    border-radius: var(--br-sm);
}

.custom-select-phone-parent:hover {
    border: 1px solid var(--grey);
}

.custom-select-phone-prepend {
    max-width: 130px;
    border: 0;
    border-right: 1px solid var(--xtra-light);
    background-color: var(--light);
    border-radius: var(--br-sm) 0 0 var(--br-sm) !important;
}

.custom-select-phone {
    border: 0 !important;
    border-radius: 0 var(--br-sm) var(--br-sm) 0;
}

.dropdown .flag-icon {
    background-size: cover;
    background-position: 100%;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    height: 16px;
    width: 20px;
    line-height: 1em;
    border-radius: var(--br-sm) !important;
    border-top-right-radius: var(--br-sm) !important;
    border-bottom-right-radius: var(--br-sm) !important;
    overflow: hidden;
}

.dropdown .flag-icon-currency {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    line-height: 1em;
    border-radius: var(--br-base) !important;
    filter: invert(1);
}

#paymentForm .form-check-label {
    position: relative;
    top: 5px;
    font-size: var(--fs-sm);
    font-weight: vaR(--fw-400);
    line-height: 1.3;
}

#paymentForm label,
#paymentForm .label {
    font-size: var(--fs-md);
}

.d-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.d-grid-lg {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.d-grid-md {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.2rem;
}

.d-grid-md div {
    max-width: 100%;
    word-wrap: break-word;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .grid-cols-lg-2 {
        grid-template-columns: 2fr 2fr;
    }
}

@media (min-width: 768px) {
    .grid-cols-md-1 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .d-grid-lg {
        grid-template-columns: 1fr;
    }
}

#paymentBuffer {
    height: 32px;
    width: 32px;
    margin: 40px auto;
    border: 3px solid var(--light);
    color: var(--dark-text);
    border-radius: 999px;
    transition: opacity 0.3s ease-in-out;
    animation: spin 1s linear infinite;
}

#paymentLoader {
    height: 24px;
    width: 24px;
    margin-left: 10px;
    border: 3px solid rgb(235 91 91);
    border-top-color: var(--white);
    border-radius: 999px;
    transition: opacity 0.3s ease-in-out;
    animation: spin 1s linear infinite;
}

#paymentLoaderDark {
    height: 24px;
    width: 24px;
    margin-left: 10px;
    border: 3px solid var(--dark-text);
    border-top-color: var(--white);
    border-radius: 999px;
    transition: opacity 0.3s ease-in-out;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(1turn);
    }
}

@media (max-width: 767.98px) {
    .input-group {
        flex-direction: column;
    }

    .d-grid-md {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.2rem;
    }

    .d-grid-md div {
        max-width: 170px;
        word-wrap: break-word;
    }
}

/* Payment confirmation animation */

.svg-animation {
    width: 62px;
    display: block;
    margin-right: 6px;
}

.svg-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.svg-path.circle {
    -webkit-animation: dash 1s ease-in-out;
    animation: dash 1s ease-in-out;
}

.svg-path.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check 1s 0.5s ease-in-out forwards;
    animation: dash-check 1s 0.5s ease-in-out forwards;
}

@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

/* tooltip */
.tooltip-badge {
    display: inline-block;
    color: var(--dark-text);
    color: var(--white);
    font-size: var(--fs-xs);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    padding: 0.1em 0.65em;
    border-radius: 999px;
    font-weight: var(--fw-700);
    cursor: help;
    margin-left: 10px;
    height: fit-content;
}

.tooltip {
    background-color: transparent;
    border: none;
    opacity: 1 !important;
}

.tooltip-inner {
    display: flex;
    flex-direction: row;
    max-width: 400px;
    padding: 1rem;
    color: var(--dark-text);
    text-align: left;
    background-color: var(--white);
    border: 1px solid var(--dark);
    border-radius: var(--br-rd);
}

.tooltip-inner p {
    font-size: var(--fs-sm);
    line-height: 180%;
    margin: auto;
}

.tooltip-inner img {
    width: 70px;
    margin-left: 10px;
}

.tooltip .tooltip-arrow::before {
    display: none;
}

.tooltip-arrow {
    display: none;
}

#paymentForm .tooltip-badge {
    position: relative;
    top: -2px;
    margin-left: 2px;
}

.payment-tooltip {
    max-width: 240px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-500);
}

@media (max-width: 776.98px) {
    .tooltip-inner {
        max-width: 300px;
        flex-direction: column;
    }

    .tooltip-inner p {
        font-size: var(--fs-md);
        line-height: 180%;
        margin: auto;
    }

    .tooltip-inner img {
        width: 150px;
        margin: 10px auto 0;
    }
}

/*  Badges */

.badge {
    background-color: var(--light);
    min-width: 100px;
    padding: 10px 15px;
    border: none;
    border-radius: var(--br-rd);
    margin: auto 0;
}

.badge span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--fs-sm);
    font-weight: var(--fw-500);
    color: var(--dark-text);
}

.badge span::after {
    content: "";
    width: 10px;
    height: 10px;
    margin: auto 0 auto 10px;
    background-color: var(--white);
    border-radius: 999px;
}

.badge-pending {
    background-color: rgb(255, 239, 209);
}

.badge-pending span::after {
    background-color: rgb(255, 165, 0);
}

.badge-success,
.badge-open {
    background-color: rgb(224, 255, 229);
}

.badge-success span::after,
.badge-open span::after {
    background-color: var(--success);
}

.badge-denied,
.badge-closed {
    background-color: rgb(255, 230, 226);
}

.badge-denied span::after,
.badge-closed span::after {
    background-color: var(--action);
}

/* Modal */

@media (min-width: 768px) {
    .modal-dialog {
        display: flex;
        align-items: center;
        min-height: calc(100% - 1rem);
    }

    .modal-dialog-centered {
        display: flex;
        align-items: center;
        min-height: calc(100% - 1rem);
    }

    .modal-content {
        margin: auto;
    }
}

/*------------------------------------------------------------
  [7. FAQ / ACCORDIONS ]
  ------------------------------------------------------------*/

.accordion-item,
.accordion-item:not(:first-of-type) {
    border: 1px solid;
    border-color: var(--white);
    margin: 1rem 0;
    border-radius: var(--br-sm);
    box-shadow: none;
    padding: 1rem;
    background-color: var(--white);
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--grey);
}

.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: var(--br-sm) !important;
}

.accordion-button {
    color: var(--dark-text);
    padding: 6px;
    font-weight: var(--fw-500);
    font-size: var(--fs-base);
    background-color: var(--white);
    border: none;
    border-radius: var(--br-sm);
    transition: var(--transition);
}

.accordion-button:focus,
.accordion-button:hover,
.accordion-button:active {
    outline: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    font-weight: var(--fw-500);
    background-color: var(--white);
    box-shadow: none;
    border-radius: var(--br-sm) !important;
}

.accordion-body {
    border: none;
    color: var(--grey);
}

/*------------------------------------------------------------
  [7. STEPS PROGRESS BAR ]
  ------------------------------------------------------------*/

.steps {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.steps__item {
    position: relative;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
}

.steps__item__content {
    display: flex;
    flex-direction: column;
    vertical-align: top;
}

.steps__item__title {
    position: relative;
    display: inline-block;
    color: var(--dark-text);
    font-size: var(--fs-base);
    font-weight: var(--fw-500);
    text-align: center;
}

.steps__item__subTitle {
    color: var(--grey);
    font-size: var(--fs-sm);
    font-weight: var(--fw-400);
    text-align: center;
}

.steps__item__icon {
    background-color: var(--xtra-light);
    width: 100%;
    min-width: 200px;
    height: 0.3rem;
    border-radius: 0;
    transition: background-color 0.3s, border-color 0.3s;
    display: flex;
    vertical-align: top;
    margin-bottom: 10px;
}

.steps__item-finish .steps__item__icon {
    background-color: var(--success);
    border-color: var(--success);
}

.steps__item-process .steps__item__title {
    font-weight: var(--fw-600);
    color: var(--dark-text);
}

.steps__item-process .steps__item__icon,
.steps__item-completed .steps__item__icon {
    background: var(--success);
    border-color: var(--success);
}

.steps__item-process .steps__icon {
    color: var(--dark-text);
}

.steps__item-wait .steps__item__title {
    color: var(--dark-text);
    font-weight: var(--fw-400);
}

@media (max-width: 1199.98px) {
    .steps__item__icon {
        min-width: 160px;
    }
}

@media (max-width: 998.98px) {
    .steps__item__icon {
        min-width: 100px;
    }
}

@media (max-width: 767.98px) {
    .steps__item__subTitle {
        display: none;
    }

    .steps__item__icon {
        min-width: 80px;
    }
}

@media (max-width: 564.98px) {
    .steps__item__icon {
        min-width: 40px;
    }

    .steps__item-process .steps__item__title,
    .steps__item-wait .steps__item__title {
        margin-bottom: 0 !important;
    }
}

.home-process {
    background-color: var(--action);
    padding: 0.5rem;
    height: fit-content;
    width: fit-content;
    color: var(--white);
    margin-bottom: 0;
    font-size: var(--fs-base);
    font-weight: var(--fw-700);
    border-radius: var(--br-sm);
}

/*------------------------------------------------------------
  [8. LOGIN / FORGOT PASSWORD PAGES ]
  ------------------------------------------------------------*/

#login img {
    position: absolute;
    top: -25px;
    border: 8px solid var(--light);
    border-radius: 999px;
}

/*------------------------------------------------------------
  [9. FOOTER ]
  ------------------------------------------------------------*/

footer {
    position: relative;
    width: 100%;
    z-index: 99;
    background-color: var(--dark-text);
    padding-top: var(--section-p-md);
    padding-bottom: var(--section-p-sm);
}

footer p {
    color: var(--xtra-light);
    font-weight: var(--fw-300);
}

footer .footer-brand {
    text-decoration: none;
    font-weight: var(--fw-500);
}

footer .footer-brand img {
    width: 40px;
}

footer .footer-brand span {
    position: relative;
    top: 6px;
    color: var(--xtra-light);
    font-weight: var(--fw-600);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin: 10px 0;
}

.footer ul li:hover,
.footer ul li span:hover {
    cursor: pointer;
}

.footer ul li a,
.footer ul li span {
    white-space: nowrap;
    font-size: var(--fs-nav);
    color: var(--xtra-light);
    text-decoration: none !important;
    transition: (var(--transition));
}

.footer-lower ul {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
}

.footer-lower ul li a {
    font-size: var(--fs-nav);
    transition: (var(--transition));
}

.footer-lower ul li .currency-item:hover {
    text-decoration: none;
    color: var(--white);
    background-color: var(--xtra-light) !important;
}

.footer-lower ul li a:hover {
    text-decoration: none;
    color: var(--white);
    cursor: pointer;
}

.footer-lower ul li .dropdown-toggle {
    font-size: var(--fs-md);
    color: var(--white);
    border: 1px solid var(--white);
    padding: 8px 20px;
    width: 100%;
    border-radius: var(--br-sm);
}

.footer-lower ul li .dropdown-toggle::after {
    display: inline-flex;
    position: relative;
    top: 0;
    background-image: url(/img/icons/icon-down-arrow-white.svg);
    border: 0;
    height: 16px;
    width: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.footer-lower small {
    color: var(--xtra-light);
    font-size: var(--fs-nav);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--grey);
}

.footer-bottom img {
    margin-top: 10px;
    max-width: 200px;
}

@media (max-width: 992.98px) {
    .footer-lower ul {
        flex-direction: column;
    }

    .footer-lower ul li {
        margin-right: auto !important;
        margin: 12px 0;
    }
}

@media (max-width: 767.98px) {
    .footer-lower {
        border: 0;
    }

    .footer-lower ul {
        flex-direction: column;
    }

    .footer-lower ul li {
        margin-right: auto !important;
        margin: 12px 0;
    }
}

/*------------------------------------------------------------
  [10. RECAPTCHA / FLASH ERROR MESSAGES ]
  ------------------------------------------------------------*/

.grecaptcha-badge {
    z-index: 999;
}

.message.error {
    position: relative;
    z-index: 999;
    min-height: 50px;
    margin: auto;
    display: flex;
    font-weight: 500;
    color: var(--action);
    background: #ffd3d3;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.phone-error {
    position: absolute;
    left: 0;
    bottom: -20px;
}

/* CSS for loader */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
    z-index: 9999;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*------------------------------------------------------------
  [11. COOKIES ALERT]
  ------------------------------------------------------------*/

.cookieAlert {
    position: fixed;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    background-color: var(--white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: var(--br-base);
    width: 35rem;
    z-index: 1000;
}

.cookieAlert p {
    font-size: var(--fs-md);
    color: var(--grey);
    font-weight: var(--fw-400);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.cookieAlert .btn {
    font-size: var(--fs-md);
    border-radius: var(--br-sm);
    padding: 6px 14px;
    min-height: 40px;
}

@media (max-width: 767px) {
    .cookieAlert {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
    }
}