:root {
    --source-sans-3: "Source Sans 3";
    --primary-color: #fab217;
    --black-color: #000000;
    --white-color: #ffffff;
    --hover-color: #fecb5d;
    --light-color: #f2f2f2;
}

html {
    scroll-padding-top: 76px;
}

* {
    font-family: var(--source-sans-3);
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
}

body {
    padding: 0 !important;
}

main {
    background-image: url("/images/main_bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

@media screen and (min-width: 768px) {
    main {
        min-height: 100vh;
    }
}

textarea,
input {
    text-indent: 0.5rem;
    background-color: var(--white-color);
}

textarea:focus,
input:focus,
select:focus {
    outline: none;
    border: 1px solid var(--primary-color) !important;
}

textarea:hover,
input:hover {
    border: 1px solid var(--primary-color);
}

label {
    cursor: pointer;
    margin: 0 !important;
}

input[type="radio"]:checked + label.btn {
    border: 2px solid var(--primary-color);
}

input::placeholder {
    font-size: small;
}

select:focus {
    outline-color: var(--primary-color);
}

select:hover {
    border: 1px solid var(--primary-color);
}

.btn-close:focus {
    outline: none !important;
    box-shadow: none !important;
}

.custom-radio {
    border-color: black;
}

.custom-radio:hover {
    border-color: var(--primary-color);
}

.custom-radio:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(250, 178, 23, 0.25);
}

.sup-down {
    position: relative;
    top: -2px;
}

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

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

li > .active {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    font-weight: 600;
}

.nav-item > .nav-link:hover {
    color: var(--white-color) !important;
}

.navbar-toggler:focus {
    text-decoration: none !important;
    outline: 1px solid var(--black-color) !important;
    box-shadow: none !important;
}

button[name="tariff-btn"]:not(.active):hover {
    background-color: var(--hover-color) !important;
}

button[name="tariff-btn"] {
    transition: background-color 0.3s ease, color 0.3s ease;
}

#callNow > a:hover {
    color: var(--white-color) !important;
}

.bookingDetails {
    width: 100% !important;
}

.advertisementDetails {
    width: 50% !important;
}

@media screen and (min-width: 768px) {
    .bookingDetails {
        width: 55% !important;
    }
    .advertisementDetails {
        width: 45% !important;
    }
}

@media screen and (min-width: 1200px) {
    .bookingDetails {
        width: 45% !important;
    }
    .advertisementDetails {
        width: 55% !important;
    }
}
#service > #wave_bg_1 {
    background-image: url("/images/wave_bg_1.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#share {
    overflow-x: hidden;
}

#share > #vector_bg_1 {
    background-image: url("/images/vector_bg_1.svg");
    background-repeat: repeat;
    background-size: 10% 10% !important;
    background-position: center;
    opacity: 0.2;
}

.text-indent {
    text-indent: 1rem !important;
}

#testimonial > #wave_bg_2 {
    background-image: url("/images/wave_bg_2.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#confirmBooking > #wave_bg_3 {
    background-image: url("/images/vector_bg_3.svg");
    background-repeat: space;
    background-size: 50% auto !important;
    background-position: center;
    opacity: 0.2;
}

#feedback > #vector_bg_2 {
    background-image: url("/images/vector_bg_2.svg");
    background-repeat: repeat;
    background-size: 10% 10% !important;
    background-position: center;
    opacity: 0.2;
}

#tariff > #vector_bg_4 {
    background-image: url("/images/vector_bg_4.svg");
    background-repeat: repeat;
    background-size: 5% 5% !important;
    background-position: center;
    opacity: 0.2;
}

#testimonialCarousel,
#feeddback_form,
#bookingForm {
    width: 100%;
}

@media screen and (min-width: 768px) {
    #testimonialCarousel,
    #feeddback_form,
    #bookingForm {
        width: 75% !important;
    }
}

@media screen and (min-width: 1024px) {
    #testimonialCarousel,
    #feeddback_form,
    #bookingForm {
        width: 60% !important;
    }
}

.glass-effect {
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#est_table_body tr td:first-child {
    text-align: left;
    text-indent: 0.5rem;
}

.collapse-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.collapse-details.show {
    max-height: 300px;
}

#loadingOverlay,
#loadingOverlayForConfirmBooking {
    height: calc(100vh - 76px);
}

.details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.details-content.expanded {
    max-height: 500px;
}

button {
    cursor: pointer;
}

button:disabled {
    pointer-events: auto !important;
    cursor: not-allowed !important;
}

#suggestions {
    border: 1px solid var(--black-color);
    max-height: 200px;
    overflow-y: auto;
    top: 70%;
    display: none;
}
.suggestion-item {
    padding: 8px;
    cursor: pointer;
}
.suggestion-item:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.otp-input {
    width: 50px;
    height: 50px;
    font-size: 24px;
}
.no-focus:focus {
    box-shadow: none !important;
    outline: none !important;
}
span.absoluteSpan {
    top: 50%;
    transform: translateY(-50%);
}

.btn:focus:not(:disabled),
.btn:hover:not(:disabled) {
    background-color: var(--white-color) !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.td-row .date-container {
    flex: 0 0 66.6667% !important;
    max-width: 66.6667% !important;
}

.td-row .time-container {
    flex: 0 0 33.3333% !important;
    max-width: 33.3333% !important;
}

.time-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid gray !important;
}

.tempus-dominus-widget .time-container-clock {
    grid-auto-rows: 40px !important;
}

.time-container-clock > * {
    padding: 4px !important;
}

.tempus-dominus-widget .toggleMeridiem {
    height: 24px !important;
    text-align: center;
}

.tempus-dominus-widget button[data-action] {
    padding: 0 !important;
}

.time-container-hour > * {
    padding: 4px !important;
}

.time-container-minute > * {
    padding: 4px !important;
}

.tempus-dominus-widget .date-container-days {
    display: grid !important;
    grid-auto-rows: 30px !important;
    grid-template-areas: "a a a a a a a" !important;
}

.tempus-dominus-widget.light .date-container-days .dow {
    color: var(--td-dow-color);
    font-size: 0.8rem !important;
}

.tempus-dominus-widget .time-container {
    margin: 0 !important;
}

.tempus-dominus-widget .time-container-hour,
.tempus-dominus-widget .time-container-minute,
.tempus-dominus-widget .time-container-second {
    grid-auto-rows: 40px !important;
}

.sm-icons {
    color: var(--black-color) !important;
    text-decoration: none;
}

.sm-icons:hover {
    color: var(--primary-color) !important;
}

.toggle-closed {
    width: 40px !important;
}

.toggle-open {
    width: 100px !important;
}

.toggle-open #social-icons {
    width: auto;
    opacity: 1;
}

#socialIcons {
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#socialIcons.show {
    transform: translateX(0);
    opacity: 1;
}

.testimonial-card {
    max-height: 220px;
    overflow-y: auto;
}

#testimonial .carousel-item .p-4 {
    min-height: 220px;
}

.news-ticker {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.scrolling-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
