.kc-directory-close{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    line-height: 0;
    cursor: pointer;
}

@media screen and (max-width: 1024px){
    .kc-directory-close{
        background-color: rgba(255, 255, 255, .2);
        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
        padding: 10px;
        border-radius: 5px;
    }
}

.kc-directory-close svg {
    display: block;
    width: 39px;
    height: 39px;
}

.kc-share-wrapper{
    display: flex;
    align-items: center;
    justify-content: end;
}

.kc-share-wrapper .kc-share-item{
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kc-share-wrapper .kc-share-item.kc-share-link{
    background-color: #49494999;
}

.kc-share-wrapper .kc-share-item.kc-share-whatsapp{
    background-color: #494949CC;
}

.kc-share-wrapper .kc-share-item.kc-share-mail{
    background-color: #494949;
}

.kc-contact-wrapper .kc-contact-title{
    font-weight: 600;
}

.kc-contact-wrapper .kc-contact-item{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

@media screen and (max-width: 1024px){
    .kc-contact-wrapper .kc-contact-item{
        margin-top: 24px;
    }
}

.kc-contact-wrapper .kc-contact-item svg{
    width: 36px;
    fill: #494949;
}

.kc-contact-wrapper .kc-contact-item a{
    color: #494949;
}

@media screen and (max-width: 1024px){
    .kc-contact-wrapper .kc-contact-item svg{
        width: 24px;
    }
    .kc-contact-wrapper .kc-contact-item a{
        font-size: 14px;
    }
}

.kc-termslist-wrapper{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.kc-termslist-wrapper .kc-termslist-title{
    font-weight: 600;
    margin-bottom: 40px;
}

.kc-termslist-wrapper  .kc-termslist-terms{
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.kc-termslist-wrapper  .kc-termslist-terms .kc-termslist-term{
    border: 1px solid #494949;
    border-radius: 50px;
    padding: 0 15px;
    font-weight: 600;
    font-size: 20px;
}

@media screen and (max-width: 1024px){
    .kc-termslist-wrapper  .kc-termslist-terms .kc-termslist-term{
        font-size: 14px;
    }
}


.kc-vanilla-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.kc-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.kc-slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.kc-slide-copyright{
    position: absolute;
    right: 25px;
    bottom: 25px;
    color: #494949;
    background-color: #ffffff;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.kc-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.kc-prev, .kc-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    display: none;
}
.kc-prev { left: 10px; }
.kc-next { right: 10px; }
.kc-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    transform: translateX(-50%);
    left: 50%;
}
.kc-dots button {
    /*background: transparent;*/
    background-color: transparent !important;
    width: 12px;
    height: 12px;
    border: 1px solid #ffffff !important;
    margin: 0 5px;
    border-radius: 50% !important;
    cursor: pointer;
    padding: 0 !important;
}
.kc-dots button.active {
    background-color: #ffffff !important;
}

.kc-map-link img{
    width: 100%;
}

/**

 */
body.no-scroll {
    overflow-y: hidden;
}

.kc-address-loop .e-loop-item{
    cursor: pointer;
}

.popup-content{
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-backdrop-filter: blur(50px) opacity(30) brightness(.5);
    backdrop-filter: blur(50px) opacity(30) brightness(.5);
    min-height: 100vh;
    height: 100%;
}

.popup-content > div{
    height: 100%;
    overflow-y: auto;
}

.popup-content_container{
    max-width: 1160px;
    margin: 40px auto;
}

.kc-address-loop .e-loop-item.modal-open .popup-content{
    display: block;
}