@font-face {
    font-family: "ubuntu-700";
    src: url("../../website/fonts/Ubuntu-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "ubuntu-500";
    src: url("../../website/fonts/Ubuntu-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "ubuntu-400";
    src: url("../../website/fonts/Ubuntu-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: var(--ubuntu-400);
    color: var(--brand-text);
}

:root {
    --primary-color: #2A255E;
    --theme-yellow: #FECE00;
    --brand-text: #132237;
    --ubuntu-700: "ubuntu-700", sans-serif;
    --ubuntu-500: "ubuntu-500", sans-serif;
    --ubuntu-400: "ubuntu-400", sans-serif;
    --hover-bg: #F69112;
}

/* Generic CSS Start */
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.navbar-custom {
    background: #132237;
    position: sticky;
    top: 0px;
}

.max-w-1440 {
    width: 100%;
    /* max-width: 1440px; */
    margin: 0 auto;
    padding: 0 24px;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0px;
}

.navbar-custom {
    z-index: 3;
    padding: 15px 0px;
    width: 100%
}

.container-1440 {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0px 24px;
}

.gap-x-1 {
    column-gap: 4px;
}

.gap-x-2 {
    column-gap: 8px;
}

.gap-x-3 {
    column-gap: 12px;
}

.gap-x-4 {
    column-gap: 16px;
}


.navbar-brand img {
    height: 40px;
}

.nav-wa,
.nav-mail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-yellow);
    font-family: var(--ubuntu-400);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    padding: 12px 16px;
    border-radius: 8px;
    transition: 0.3s ease-in-out !important;
    text-transform: lowercase;
}

.nav-wa:hover,
.nav-mail:hover {
    background: var(--hover-bg);
    color: var(--theme-yellow);
    color: var(--brand-text) !important;
}

.main-map-div {
    position: relative;
    height: 100vh;
    max-height: calc(100vh - 80px);
}

#calc-map,
#company-bg {
    /* min-height: 100vh; */
    /* min-height: calc(100vh - 48px); */
    height: 100%;
    width: 100%;
    z-index: 1;
}

#company-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.calculator-form {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(19, 34, 55, 0.20), 0px 4px 10px 0px rgba(19, 34, 55, 0.10);
    padding: 40px 40px;
    width: 448px;
    max-width: 100%;
    max-height: calc(100vh - 124px);
    overflow-y: scroll;
    scroll-behavior: smooth;
}

/* Custom scrollbar */
.calculator-form::-webkit-scrollbar {
    width: 5px;
    border-radius: 16px;
}

.calculator-form::-webkit-scrollbar-track {
    background: transparent;
}

.calculator-form::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: none;
}

.calculator-form::-webkit-scrollbar-button {
    display: none;
}

.calculator-form #obt-form h1 {
    color: var(--brand-text);
    font-family: var(--ubuntu-700);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}


.navbar-custom .nav-mail {
    color: var(--theme-yellow);
}


.custom-select-toggle {
    border-radius: 8px;
    border: 1px solid #EDE8DE;
    background: #FFF;
    padding: 1px 1px;
    font-weight: 500;
    color: var(--brand-text);
    font-family: var(--ubuntu-400);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.14px;
}

.btn:focus {
    box-shadow: none;
    border: solid 1px var(--theme-yellow);
}

.form-select:focus {
    border-color: var(--theme-yellow);
    box-shadow: none;
}

.custom-select-menu {
    border-radius: 8px;
    border: 1px solid #EDE8DE;
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(19, 34, 55, 0.24), 0px 6px 15px -10px rgba(19, 34, 55, 0.10);
    overflow: hidden;
}

.dropdown-item {
    padding: 6px 10px;
    font-size: 14px;
    color: var(--brand-text);
}

.dropdown-item:hover {
    background-color: var(--theme-yellow);
}

.form-label-group {
    position: relative;
    margin-bottom: 16px;
}

.obt-form .progress-header {
    margin-bottom: 10px !important;
}

.obt-form .form-desc {
    color: var(--brand-text);
    font-family: var(--ubuntu-400);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.18px;
}

.form-label-inline {
    position: absolute;
    top: -9px;
    left: 12px;
    background: white;
    font-family: var(--ubuntu-00);
    padding: 0 2px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-text);
    z-index: 1;
}

.form-label-inline.disabled-lable {
    color: #acafb4;
    background: #FFF;
}

.form-select {
    padding: 8px 12px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 18px;
    min-height: 50px;
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--theme-yellow) !important;
}

input:hover {
    background-color: #FFF5CC;
    border-color: var(--brand-text);
}

input:active {
    border-color: var(--theme-yellow);
}

.form-select:disabled {
    background-color: #FFF;
    opacity: 0.5;
}


.lang-selector {
    position: absolute;
    top: 20px;
    right: 20px;
}

.property-option {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 2px 16px 2px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 8px;
    transition: border 0.3s ease;
}

.property-option.selected {
    border-color: var(--theme-yellow);
    background-color: transparent;
}

.property-option:hover {
    border-color: var(--brand-text);
    background-color: #FFF5CC;
}

.form-check-input:checked[type=radio] {
    background-image: url('../../images/website/check.svg');
}

.property-option span {
    max-width: 290px;
    color: var(--brand-text);
    font-family: var(--ubuntu-400);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 23.4px */
    letter-spacing: 0.18px;
}

.form-check-input[type="radio"] {
    width: 1.2em;
    height: 1.2em;
    border: 2px solid var(--theme-yellow);
    flex-shrink: 0;
}

.form-check-input:checked {
    background-color: var(--theme-yellow);
    border-color: var(--theme-yellow);
    flex-shrink: 0;
}

.form-check-input:focus {
    box-shadow: none;
}

.form-label {
    color: var(--brand-text);
    font-family: var(--ubuntu-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 14px */
    text-transform: uppercase;
}

.property-icon {
    width: 72px;
    height: 72px;
    margin-right: 15px;
}

.property-label {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
}

.yellow-btn {
    color: var(--brand-text);
    font-family: var(--ubuntu-400);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    border-radius: 14px;
    background: var(--theme-yellow);
    display: flex;
    padding: 16px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all ease-in-out 0.3s;
    cursor: pointer;
    border: none;
}

.yellow-btn:hover {
    background: var(--hover-bg);
}

.header-warning {
    background: #EDE8DE;
    border-radius: 8px;
    display: flex;
    padding: 8px 12px;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    margin-bottom: 20px;
}

.header-warning p {
    color: var(--brand-text);
    font-family: var(--ubuntu-400);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 18.2px */
    letter-spacing: 0.14px;
    margin: 0;
}

/* .progress-header {
    display: flex;
    align-items: center;
    font-family: var(--ubuntu-400);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1rem;
  } */

/* .progress-header span {
    margin-left: auto;
    font-weight: bold;
  } */

.progress-header .back-arrow {
    cursor: pointer;
    margin-right: 10px;
    color: var(--theme-yellow);
    font-weight: bold;
    font-size: 24px;
}

select.form-select:hover {
    background-color: #FFF5CC;
    border-color: var(--brand-text);
}

select.form-select:active {
    border-color: var(--theme-yellow);
}

select.disable-form.form-select:hover {
    background-color: #FFF;
    opacity: 0.5;
    border: 1px solid #ddd !important;
}

select.disable-form.form-select:active {
    background-color: #FFF;
    opacity: 0.5;
    border: 1px solid #ddd !important;
}

option:hover {
    background-color: var(--hover-bg) !important;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.progress-header .back-arrow {
    padding: 0px 6px;
    border-radius: 8px;
    display: inline;
    /* height: 26px; */
}

.progress-header .back-arrow:hover {
    background-color: var(--hover-bg);
    color: var(--brand-text);
}

.pac-target-input {
    padding-right: 48px !important;
}

.progress-header h2 {
    color: var(--brand-text);
    font-family: var(--ubuntu-500);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    display: inline;
    margin-bottom: 2px;
}

.progress-header h1 {
    color: var(--brand-text);
    font-family: var(--ubuntu-500);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    display: inline;
    margin-bottom: 2px;
}

.progress-header span {
    color: var(--brand-text);
    font-family: var(--ubuntu-400);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.2px;
    opacity: 0.38;
}

.amount-group {
    position: relative;
}

.amount-display {
    padding: 8px 12px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 18px;
    min-height: 50px;
    width: 100%;
}

.amount-ctrl {
    position: absolute;
    top: 6px;
    right: 10px;
}

.location-group {
    position: relative;
}

.location-group input {
    padding: 8px 12px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 18px;
    min-height: 50px;
    width: 100%;
}

.loc-img {
    position: absolute;
    top: 10px;
    right: 10px;
}

.manual-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.manual-toggle span {
    color: var(--hover-bg);
    font-family: var(--ubuntu-400);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
}

.btn-control {
    font-size: 1.5rem;
    padding: 0 10px;
    border: none;
    background: transparent;
    font-weight: bold;
    color: #333;
}

.dropdown-card ol {
    border-radius: 8px;
    border: 1px solid #EDE8DE;
    background: #FFF;
    padding: 24px 16px 24px 40px;
}

.dropdown-card hr {
    background: #EDE8DE !important;
}

.form-control {
    padding: 8px 12px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 18px;
    min-height: 50px;
    width: 100%;
}

.main-obt-form-div {
    background: url('/assets/images/aqe-hero-banner-bg-dark-min.jpg');
    /* background-size: 100%; */
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
    padding-top: 100px;
}

.obt-form-main {
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(19, 34, 55, 0.20), 0px 4px 10px 0px rgba(19, 34, 55, 0.10);
    padding: 40px 40px;
    width: 448px;
    max-width: 100%;
}

.obt-form h1,
.post-obt-form h1 {
    color: var(--brand-text);
    font-family: var(--ubuntu-700);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.2px;
}

.obt-form-main .progress-header {
    margin-bottom: 4px !important;
}

.obt-form .form-desc strong {
    font-family: var(--ubuntu-700);
}

.obt-form ::placeholder {
    text-transform: uppercase;
}

.obt-form .form-check-label {
    color: #132237;
    font-family: var(--brand-text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.14px;
}

.obt-form .form-check-label a {
    color: var(--theme-yellow);
    text-decoration: underline;
}

.success-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.transparent-yellow-btn {
    color: var(--theme-yellow);
    font-family: var(--ubuntu-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border: 2px solid var(--theme-yellow);
    border-radius: 8px;
    background: transparent;
    display: flex;
    padding: 13px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all ease-in-out 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.transparent-yellow-btn:hover {
    border-color: transparent;
    background-color: var(--theme-yellow);
    color: var(--brand-text);
}

.post-obt-form h3 {
    color: var(--brand-text);
    font-family: var(--ubuntu-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.2px;
}

.post-obt-form .success-div img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.post-obt-form h4 {
    color: var(--brand-text);
    font-family: var(--ubuntu-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.2px;
}

.is-invalid {
    border: 1px solid #F00000 !important;
}

.post-obt-form-main {
    display: none;
}

.upload-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.property-label img {
    max-width: 64px;
    max-height: 64px;
}

.upload-option.selected {
    background-color: #FFF5CC;
    border-color: var(--theme-yellow);
}

.upload-option img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.sample-img-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border-radius: 16px;
    background: #EDE8DE;
    padding: 8px 40px;
    margin-top: 20px;
    position: relative;
}

.sample-img-div img {
    width: 100%;
}

.info-sample {
    border-radius: 8px;
    background: #FFF;
    padding: 4px 4px 4px 4px;
    position: absolute;
    left: 8px;
    top: 8px;
}

.info-sample p {
    margin: 0;
    color: var(--brand-text);
    font-family: var(--ubuntu-400);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 18.2px */
    letter-spacing: 0.14px;
}

@media (max-width: 767px) {
    .navbar-custom {
        padding: 8px 0;
    }

    .main-map-div {
        max-height: calc(100vh - 65px);
    }

    .nav-wa span {
        display: none;
    }

    .nav-mail span {
        display: none;
    }

    .calculator-form {
        top: 15px;
        left: 15px;
        padding: 16px 16px;
        min-width: 93%;
        max-width: 100%;
        width: 93.5%;
        max-height: calc(100vh - 100px);
        overflow-y: scroll;
    }

    .progress-header h2 {
        font-size: 18px;
    }

    .progress-header h1 {
        font-size: 18px;
    }

    .progress-header span {
        font-size: 16px;
    }

    .property-label img {
        max-width: 56px;
        max-height: 56px;
    }

    .obt-form-main {
        min-width: 92%;
        max-width: 100%;
        width: 92%;
        padding: 16px;
    }

    .calculator-form #obt-form h1 {
        font-size: 24px;
    }

    .lang-selector {
        top: 10px;
        right: 10px;
    }

    .form-desc {
        font-size: 16px;
    }

    .property-option span {
        font-size: 16px;
    }

    .property-icon {
        width: 56px;
        height: 56px;
    }

    .yellow-btn {
        font-size: 16px;
        padding: 12px 16px;
    }

    /* Hide Google Maps fullscreen control on mobile */
    .gm-fullscreen-control {
        display: none !important;
    }

}