@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");

:root {
    /* BACKGROUND COLOURS */
    --bg-primary: #011dac;
    --bg-white: rgb(255, 255, 255);
    --bg-dark: #1c3764;
    --bg-light: #f5f5f5;
    --bg-xtra-light: rgb(189, 200, 219);
    --bg-success: rgb(67, 217, 91);
    --bg-blue: #011dac;

    --bg-action: #fe4f58;

    /* INPUT BORDER COLOURS */
    --border-grey: rgba(100, 109, 117, 0.2);
    --border-black: #2c3640;

    /* TEXT COLOURS */
    --txt-primary: #fe4f58;
    --txt-white: rgb(255, 255, 255);
    --txt-dark: #2c3640;
    --txt-light: #646d75;
    --txt-xtra-light: rgb(219, 219, 219);
    --txt-action: #fe4f58;
    --txt-blue: #011dac;

    /* TYPOGRAPHY */
    --font-title: "Montserrat", sans-serif;
    --font-family: "Montserrat", sans-serif;
    --font-labels: "Poppins", sans-serif;

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

    --fs-h1: clamp(2rem, 5vw, 3.5rem);
    --fs-h2: clamp(1.75rem, 4.5vw, 2.2rem);
    --fs-h3: clamp(1.25rem, 4vw, 2rem);
    --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: min(14vw, 14em);
    --section-p-lg: min(10vw, 10em);
    --section-padding: min(8vw, 8em);
    --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.85rem;
    --br-sm: 0.25rem;
    --br-rd: 0.45rem;
    --br-none: 0;

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

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

html,
body {
    font-family: var(--font-family);
    color: var(--txt-dark);
    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-bg {
    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;
}

.link-cta {
    color: var(--bg-action);
    text-decoration: underline!important;
}

.link-cta {
    color: var(--bg-action)!important;
}

span.highlight {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    color: #2c3640;
    z-index: 1;
}

span.highlight::before {
    display: block;
    content: "";
    width: 100%;
    height: 50%;
    background: #facb01;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: height ease 0.2s;
    -o-transition: height ease 0.2s;
    transition: height ease 0.2s;
}

span.highlight:hover::before {
    height: 100%;
}

.title-badge {
    color: var(--txt-white);
    background-color: #0040a6;
    display: flex;
    flex-direction: row;
    width: fit-content;
    border-radius: 999px;
    padding: 10px;
}

.basic-img-lg-container {
    position: relative;
}

.basic-img-lg-container span {
    position: absolute;
    bottom: 14px;
    right: 20px;
    color: var(--txt-white);
    font-weight: var(--fw-500);
    font-size: var(--fs-md);
}

.basic-img-lg {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--br-sm);
}

#offer .basic-img-lg {
    height: 100%;
}

.esta-preview {
    display: flex;
    flex-direction: row;
    background-color: var(--bg-white);
    padding: 12px;
    position: relative;
    border-radius: var(--br-rd);
    border: 0;
    width: fit-content;
}

.esta-preview .preview {
    height: 120px;
    width: 100px;
    background-color: var(--bg-light);
    object-fit: cover;
    object-position: top;
    margin: auto 0;
    border-radius: var(--br-sm);
    border-bottom: 4px solid #fff;
}

.esta-preview .esta-logo {
    width: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.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;
    }
}

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

.navbar {
    justify-content: center;
    background-color: var(--bg-dark);
    padding: 0.5rem 0;
    z-index: 99;
}

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

.navbar-brand img {
    width: 35px;
    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: var(--fs-h4);
    font-weight: var(--fw-500);
    color: var(--txt-white);
}

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

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

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

.language-flag {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.4rem;
    /* height: 1rem; */
    margin-right: 2px;
}

.language-select {
    line-height: 1.5;
    color: var(--txt-white);
    text-transform: uppercase;
    background-color: transparent;
    font-weight: var(--fw-500);
    font-size: var(--fs-nav);
    border: 0;
    height: auto;
    text-align: right;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    z-index: 99;
}

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

/*------------------------------------------------------------
  SIDE NAVIGATION / SIDEBAR
  ------------------------------------------------------------*/

.side-navbar {
    position: fixed;
    width: 70px;
    height: 100%;
    background-color: var(--bg-dark);
    padding: 0 0.5rem;
    padding-top: 7rem;
    overflow: hidden;
    transition: var(--transition-slow);
    z-index: 1;
}

.sidebar-active {
    margin-left: 0;
    width: 220px;
}

.side-navbar .nav-link {
    display: flex;
    justify-content: center;
    padding: 0.65rem 0.5rem;
    margin-bottom: 1rem;
    color: var(--txt-white);
    font-weight: var(--fw-500);
    border-radius: var(--br-rd);
}

.side-navbar .nav-link:active,
.side-navbar .nav-link:focus,
.side-navbar .nav-link:hover {
    background-color: #0040a6;
    transition: var(--transition-slow);
}

.side-navbar .nav-link svg {
    display: flex;
    margin: auto 0;
    width: 24px;
    height: 24px;
}

.side-navbar .nav-link svg path,
.side-navbar .nav-link svg circle {
    fill: var(--txt-white);
}

.side-navbar .nav-link span {
    display: none !important;
    font-size: var(--fs-nav);
    color: var(--txt-white);
    margin: auto 0;
    white-space: nowrap;
}

.sidebar-active.side-navbar .nav-link span {
    display: flex !important;
}

.sidebar-active.side-navbar .nav-link {
    display: flex;
    flex-direction: row;
    justify-content: start;
    padding: 0.65rem 0.5rem;
    margin-bottom: 1rem;
    transition: var(--transition-slow);
}

.sidebar-active.side-navbar .navbar-brand {
    display: flex;
    flex-direction: row;
    justify-content: start;
}

.side-navbar .navbar-brand {
    justify-content: center;
    margin: 0;
    padding: 0.65rem 0.5rem;
}

.sidebar-active.side-navbar .navbar-brand span {
    display: inline-block;
    color: var(--txt-white);
}

.side-navbar .navbar-brand span {
    display: none;
}

.side-navbar .nav-item {
    margin: 0;
}

.side-navbar .language-select {
    appearance: none;
    text-align: start;
    padding-left: 6px;
}

.sidebar-active.side-navbar .language-select {
    appearance: auto;
    text-align: start;
    padding-left: 0;
}

.sidebar-active.side-navbar .language-flag {
    position: relative;
}

.side-navbar .language-flag {
    display: block;
}

.nav-link.nav-link-danger svg path,
.nav-link.nav-link-danger svg path {
    fill: var(--bg-action) !important;
    stroke: var(--bg-action) !important;
    transition: var(--transition-slow);
}

.nav-link.nav-link-danger:hover {
    background-color: #f5efef !important;
}

.active-cont {
    margin-left: 220px;
}

.navbar .btn {
    font-size: var(--fs-nav);
    padding: 20px 40px;
}

.navbar .separator {
    display: block;
    height: 30px;
    width: 1px;
    border-radius: var(--br-rd);
    background-color: var(--bg-xtra-light);
    margin: 0 20px;
}

#menu-btn {
    position: relative;
    right: 20px;
    width: 42px;
    height: 42px;
    padding: 12px;
    color: var(--txt-dark);
    background-color: var(--bg-white);
    border: 1px solid var(--bg-xtra-light);
    border-radius: 999px;
    transform: rotate(90deg);
    transition: var(--transition-slow);
    z-index: 999;
}

#menu-btn svg {
    transform: rotate(90deg);
}

#menu-btn:hover {
    background-color: var(--bg-light);
}

.navbar-dashboard {
    position: fixed;
    background: transparent;
    width: 100%;
    justify-content: space-between;
}

@media (max-width: 776px) {
    .navbar .btn {
        border-radius: 999px;
    }
}

@media (max-width: 556px) {
    .my-container .head-bg {
        padding-top: 6rem !important;
    }
    .navbar-dashboard {
        position: fixed;
        background-color: var(--bg-dark);
        width: 100%;
    }
    .side-navbar {
        width: 0;
        margin-left: -22px;
    }
    .sidebar-active {
        width: 220px;
        margin-left: 0;
    }
    .active-cont {
        margin-left: 0;
    }
    .side-navbar .language-select {
        appearance: none;
        text-align: center;
    }
    .navbar .btn {
        font-size: var(--fs-nav);
        border-radius: 999px;
    }
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    /* font-family: var(--font-family); */
    font-family: var(--font-title);
    color: var(--txt-dark);
    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);
    color: #011f67;
}
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-300);
    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(--txt-white) !important;
}
.text-action { 
    color: var(--txt-action) !important;
}
.text-dark {
    color: var(--txt-dark) !important;
}
.text-light {
    color: var(--txt-light) !important;
}
.text-xtra-light {
    color: var(--txt-xtra-light) !important;
}

#landing h1 {
    font-size: var(--fs-h2);
    color: var(--txt-white);
    text-align: start;
}

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

#step-process h4::before,
.title-underline::before {
    background-color: var(--bg-blue);
    bottom: -6px;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 20px;
}

#step-process h4::after,
.title-underline::after {
    background-color: var(--bg-action);
    bottom: -6px;
    content: "";
    height: 4px;
    left: 24px;
    position: absolute;
    width: 10px;
}

@media (max-width: 776.98px) {
    #landing h1 {
        font-size: var(--fs-title);
        text-align: center;
    }
}

/*------------------------------------------------------------
  [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-sm) !important;
    border-radius: var(--br-sm);
    /* border: 1px solid var(--border-grey); */
}

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

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

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

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

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

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

.bg-hero {
    background: var(--bg-dark);
    /* background-image: image-set(
        url("/img/backgrounds/hero_landing.webp") 1x,
        url("/img/backgrounds/hero_landing.png") 2x
    ); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

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

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

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

.bg-head-block::after {
    background: linear-gradient(
        180.63deg,
        var(--bg-light) 2.53%,
        var(--bg-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(--bg-dark);
}

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

@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: 60px;
    padding: 20px 60px;
    font-size: var(--fs-base);
    font-weight: var(--fw-500);
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    transition: var(--transition);
    /* z-index: 99; */
}

.btn span {
    display: flex;
    position: relative;
    transition: var(--transition);
}

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

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

.btn-cta {
    background-color: var(--bg-action);
    color: var(--txt-white);
    border: 1px solid var(--bg-action);
}

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

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

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

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

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

.btn-outline-dark {
    background-color: transparent;
    border: 1px solid var(--bg-light);
    color: var(--txt-dark);
}

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

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

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

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

/* Country select btn */
.dropbtn {
    color: var(--text-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-none);
    text-overflow: ellipsis;
}

/* The search field when it gets focus/clicked on */
.countryText:focus {
    outline: 1px solid var(--bg-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(--bg-xtra-light);
    border-radius: 0 0.25rem;
    margin: 0;
    z-index: 999;
}

/* Links inside the dropdown */
.dropdown-country div {
    color: var(--txt-dark);
    padding: 12px 16px;
    cursor: pointer;
    display: block;
}

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

/* Change color of dropdown links on hover */
.dropdown-country div:hover {
    background-color: var(--bg-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(--border-grey);
}

label,
.label {
    font-family: var(--font-labels);
    color: var(--txt-dark);
    font-size: 0.725rem;
    font-weight: var(--fw-400);
    margin-bottom: 0.2rem;
}

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

.form-control,
.form-select,
select {
    height: 50px;
    font-size: var(--fs-md);
    border: 1px solid var(--border-grey);
    border-radius: var(--br-sm);
    color: var(--txt-dark);
    transition: var(--transition);
}

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

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

.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;
    font-size: var(--fs-md);
    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-color: var(--bg-white);
    border-radius: 999px;
    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(--txt-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: #212529;
    background-color: #fff;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--br-sm);
    border: 1px solid var(--bg-xtra-light);
    color: var(--txt-dark);
    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: 400%;
    border-radius: var(--br-sm) 0 0 var(--br-sm);
    background-color: var(--bg-white);
    border-right: 1px solid var(--bg-xtra-light);
    cursor: pointer;
    z-index: 99;
    transition: var(--transition);
}

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

.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;
    }
}

.form-check-input[type="checkbox"] {
    border-radius: var(--br-sm);
    outline: none !important;
    box-shadow: none !important;
}

.form-check-input:checked {
    background-color: var(--bg-success);
    border-color: var(--bg-success);
}

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

#landing .custom-checkbox {
    padding: 1rem;
    font-size: var(--fs-md);
}

@media (max-width: 768px) {
    #landing .custom-checkbox {
        padding: 0.5rem;
        font-size: var(--fs-sm);
    }
    #landing .custom-checkbox svg {
        width: 20px;
        height: 20px;
    }

    #landing .custom-checkbox.checked {
        background-image: none;
    }
}

.custom-checkbox {
    align-items: center;
    border: 1px solid var(--border-grey);
    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(--bg-dark);
    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;
    background-color: var(--bg-white);
    border: 1px solid var(--bg-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;
    opacity: 0;
}
.custom-radio-field input[type="radio"]:checked + label {
    background-color: #a5d6a7; /* Background color when checked */
    border-color: #81c784; /* Optional: change border color too */
    color: var(--txt-dark); /* Keep the text color consistent */
}

/* Ensure the labels are positioned correctly */
.custom-radio-field input[type="radio"] {
    display: none; /* Hide the actual radio button */
}

/* 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(--bg-white);
    color: var(--txt-dark);
    font-size: var(--fs-base);
    line-height: 1;
    text-align: center;
    padding: 0.925rem;
    border: 1px solid var(--bg-light);
    transition: background-color 0.1s ease-in-out;
    border-radius: var(--br-sm);
}

.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: 1px solid var(--border-grey);
    border-radius: var(--br-sm);
    color: var(--txt-dark);
    transition: var(--transition);
    position: relative;
    background-color: var(--bg-white);
    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 var(--border-grey);
    color: var(--txt-dark);
    transition: var(--transition);
    line-height: 1.4;
    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(--border-grey);
    border-radius: var(--br-sm);
}

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

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

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

#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;
    }
}

#paymentLoader {
    height: 24px;
    width: 24px;
    margin-left: 10px;
    border: 3px solid rgb(235 91 91);
    border-top-color: var(--bg-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;
    background-color: var(--bg-blue);
    color: var(--txt-white);
    font-size: var(--fs-xs);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    padding: 0.1em 0.55em;
    border-radius: 999px;
    font-weight: var(--fw-700);
    cursor: help;
    margin-left: 10px;
}

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

.tooltip-inner {
    display: flex;
    flex-direction: row;
    max-width: 400px;
    padding: 1rem;
    color: var(--txt-dark);
    text-align: left;
    background-color: var(--bg-white);
    border: 1px solid var(--bg-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(--bg-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(--txt-dark);
}

.badge span::after {
    content: "";
    width: 10px;
    height: 10px;
    margin: auto 0 auto 10px;
    background-color: var(--bg-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(--bg-success);
}

.badge-denied,
.badge-closed {
    background-color: rgb(255, 230, 226);
}
.badge-denied span::after,
.badge-closed span::after {
    background-color: var(--bg-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(--bg-white);
    margin: 1rem 0;
    border-radius: var(--br-sm);
    box-shadow: none;
    padding: 0.75rem;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--border-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(--txt-dark);
    font-weight: var(--fw-500);
    font-size: var(--fs-base);
    background-color: var(--bg-light);
    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(--txt-dark);
    font-weight: var(--fw-500);
    background-color: var(--bg-light);
    box-shadow: none;
    border-radius: var(--br-sm) !important;
}

.accordion-body {
    border: none;
    color: var(--txt-dark);
    font-size: var(--fs-medium);
}

/*------------------------------------------------------------
  [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%;
    align-items: center;
    overflow: hidden;
}
.steps__item {
    position: relative;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
}
.steps__item__content {
    display: flex;
    flex-direction: row;
    vertical-align: top;
}
.steps__item__title {
    position: relative;
    display: inline-block;
    color: var(--txt-dark);
    font-size: var(--fs-md);
    font-weight: var(--fw-500);
    text-align: center;
    display: flex;
    align-items: center;
}
.steps__item__subTitle {
    color: var(--txt-light);
    font-size: var(--fs-sm);
    font-weight: var(--fw-500);
}

.steps__item__icon {
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: var(--bg-light);
    width: 38px;
    height: 38px;
    border-radius: var(--br-sm);
    transition: background-color 0.3s, border-color 0.3s;
    margin-right: 0.5rem;
}
.steps__item-finish .steps__item__icon {
    background-color: var(--bg-success);
    border-color: var(--bg-success);
}
.steps__item-process .steps__item__title {
    font-weight: var(--fw-600);
    color: var(--txt-dark);
}
.steps__item-process .steps__item__icon,
.steps__item-completed .steps__item__icon {
    background: var(--bg-success);
    border-color: var(--bg-success);
}
.steps__item-process .steps__icon {
    color: var(--txt-dark);
}
.steps__item-wait .steps__item__title {
    color: var(--txt-dark);
    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__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;
    }
}

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

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

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

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

footer .navbar-brand {
    margin-bottom: 1.2rem;
}

footer .navbar-brand img {
    width: 32px;
}

footer .navbar-brand .brand-service {
    font-style: italic;
    margin-left: 4px;
    margin-top: 0;
    font-size: 2rem;
    font-weight: var(--fw-500);
    color: var(--txt-white);
}

footer h6 {
    color: var(--txt-primary);
    padding: 12px 16px;
}

footer p {
    color: var(--txt-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(--txt-xtra-light);
    font-weight: var(--fw-600);
}

.footer ul {
    list-style: none;
}

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

.footer ul li a,
.footer ul li span {
    white-space: nowrap;
    font-size: var(--fs-sm);
    color: var(--txt-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-sm);
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.footer-lower ul li a:hover {
    text-decoration: none;
    color: var(--txt-white);
    background-color: rgb(34, 62, 108);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: var(--txt-white);
    border-top: 1px solid var(--bg-xtra-light);
}

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

.footer-bottom img {
    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;
    }
}

/* BASIC CONTENT GRID */

.home-grid-process {
    grid-auto-columns: 1fr;
    display: grid;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
}

.process-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    opacity: 1;
    /* transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
        rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d; */
}

.process-item-wrap {
    /* grid-column-gap: 10px; */
    align-items: center;
    margin-bottom: 10px;
    display: flex;
    /* justify-content: center; */
}

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

.process-title {
    color: var(--txt-dark);
    font-size: var(--fs-h4);
    font-weight: var(--fw-600);
}

.process-divider {
    width: 100%;
    /* height: 1px; */
    /* background-color: var(--bg-xtra-light); */
}

@media (max-width: 998.98px) {
    .home-grid-process {
        grid-template-columns: 1fr;
    }
}

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

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

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

.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(--bg-white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: var(--br-sm);
    width: 35rem;
    z-index: 1000;
}
.cookieAlert p {
    font-size: var(--fs-md);
    color: var(--txt-light);
    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;
    }
}

/* TESTING NEW DESIGN CSS */

.panel-container {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-self: stretch;
    border-radius: var(--br-sm);
    padding: var(--section-p-sm) !important;
    background-color: var(--bg-white);
    min-height: 420px;
    gap: 60px;
}

.payment-form {
    background: #FFFFFF;
    border: 1px solid #E8EFFA;
    padding: 50px 32px 22px 32px;
}

.payment-right-side {
    padding: 50px 32px;
}

