:root {
    --colorPrimary: #0078b4;
    --colorSecondary: #003b6f;
    --colorBtn: #ffffff;
}

#loader {
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
}

.loader-text {
    display: block;
    text-align: center;
    color: #d7d7d7;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@keyframes loader {
    0% {
        filter: grayscale(0);
    }

    50% {
        filter: grayscale(100%);
    }

    100% {
        filter: grayscale(0);
    }
}

.loader-logo {
    width: 100px;
    -webkit-animation: loader 1.3s infinite linear;
    -moz-animation: loader 1.3s infinite linear;
    -ms-animation: loader 1.3s infinite linear;
    -o-animation: loader 1.3s infinite linear;
    animation: loader 1.3s infinite linear;
}

.pload {
    display: none;
}

.iti__flag-container {
    display: none;
}

section#mymap {
    height: 540px;
}

button.btn.btn-sm.btn-outline-info.sectio-bro-btn.overflow-hidden.enqModal {
    margin-bottom: 15px;
}

input#submitBtn {
    margin: 15px 0;
}

.textcolor {
    color: #fff;
}

button.btn.btn-info.micro-form-btn.effetMoveGradient.submitBtn.enqModal {
    margin-bottom: 15px;
}

a.drift-open-chat {
    color: #fff;
}

p {
    text-align: justify;
}

select.my_country_name.form-control.rounded-0.micro-form-field {
    float: left;
    display: inline-block;
    width: 40%;
    padding-left: 8px;
}

input#modal_my_mobile {
    width: 60%;
}

/*--for thank you page --*/
.thankyou-text p {
    text-align: justify !important;
}

/* common style end*/
.sheak {
    display: inline-block;
    animation: shake .9s;
    animation-iteration-count: infinite
}

.mobile-bottom {
    background: #000;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9;
    border-top: 1px solid #3c3c3c;
    display: none
}

.mobile-bottom ul {
    padding: 0;
    margin: 0
}

.mobile-bottom li {
    display: inline-block;
    width: 32%;
    padding: 10px 10px;
    color: #333;
    text-align: center;
    border-right: 1px solid #606060
}

.mobile-bottom .last-child {
    border-right: none
}

.mobile-bottom li i {
    font-size: 20px;
    color: #bb892c
}

.mobile-bottom li a {
    color: #fff;
    text-align: center;
    text-decoration: none;
    width: 100%;
    display: block;
    font-size: 14px
}

.mobile-bottom img {
    width: 18px;
    height: 18px;
    margin-bottom: 0
}

@media screen and (max-width:767px) {
    .mobile-bottom {
        display: block
    }
}

.card-d-custom {
    width: 95%;
    justify-content: center;
    text-align: center;
    margin: 0 auto 15px;
}

iframe {
    width: 100%;
    height: 38vh;
    border: 2px solid #d7d7d7;
}

@media only screen and (max-width: 1024px) {
    iframe {
        width: 100%;
        height: 32vh;
        border: 2px solid #d7d7d7;
    }
}

@media only screen and (max-width: 992px) {
    iframe {
        width: 100%;
        height: 18vh;
        border: 2px solid #d7d7d7;
    }
}

@media only screen and (max-width: 800px) {
    iframe {
        width: 100%;
        height: 26vh;
        border: 2px solid #d7d7d7;
    }
}

@media only screen and (max-width: 768px) {
    iframe {
        width: 100%;
        height: 20vh;
        border: 2px solid #d7d7d7;
    }
}

@media only screen and (max-width: 500px) {
    iframe {
        width: 100%;
        height: 50vh;
        border: 2px solid #d7d7d7;
    }
}

.action-icon img {
    height: 22px;
    width: auto;
    margin-right: 7px;
    /*margin-right: 4px;*/
}

.ft-main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0% 2%;
    font-size: 14px;
}

.ft-left {
    width: 82%;
}

.ft-right {
    width: 16%;
}

.acceptcookies {
    font-size: 16px;
    padding: 3px 30px;
}

@media (min-width: 1920px) and (max-width: 2560px) {
    .ft-main {
        font-size: 19px;
    }
}

@media (min-width: 2561px) and (max-width: 5120px) {
    .ft-main {
        font-size: 36px;
    }
}

@media (min-width: 1920px) and (max-width: 5120px) {
    .acceptcookies {
        font-size: 46px;
        padding: 3px 30px;
    }
}

@media (min-width: 320px) and (max-width: 767px) {
    .ft-main {
        display: block;
    }

    .ft-left {
        width: 100%;
        text-align: justify;
    }

    .ft-right {
        width: 100%;
    }

    .acceptcookies {
        margin-top: 10px;
        margin-left: 0px !important;
    }

}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #212327;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}

.social-media {
    align-items: center;
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.social-media:hover {
    transform: translateX(calc(-100% + 35px));
}

.social-media img {
    padding: 3px;
    text-align: center;
    width: 35px;
}

.social-media a {
    color: #fff;
    padding: 0 10px;
    text-align: center;
    text-decoration: none;
}

.social-media-container {
    top: 85%;
    list-style-type: none;
    padding: 0;
    position: fixed;
    left: calc(100% - 37px);
    transform: translateY(-50%);
    min-width: 130px;
}

.social-media.facebook {
    background-color: #014592;
}

.social-media.pinterest {
    background-color: #bd081c;
}

.social-media.linkedin {
    background-color: #007;
}

.social-media.instagram {
    background-color: #c13584;
}

.top-heaing {
    margin-top: 80px;
}

.info-box span {
    font-size: 14px;
}

.logo {
    width: 100px !important;
    height: auto;
}


/* location */

.map-box {
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
}

.map-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.map-box button {
    width: 100%;
    background: linear-gradient(to right, #003b6f, #0078b4);
    color: #fff;
    padding: 12px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.tabs {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.tabs button {
    flex: 1 1 auto;
    padding: 8px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.tabs button.active {
    background: #0078b4;
    color: white;
}

.tab-content {
    margin-top: 15px;
    text-align: left;
    padding-left: 10px;
}

.tab-content p {
    margin: 8px 0;
    font-size: 15px;
}

.tab-content p::before {
    content: "📍";
    margin-right: 6px;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .tabs button {
        font-size: 13px;
    }
}
