/**Global**/
.zoom-img{
    border-radius: var(--border-radius);
}
/**Global**/


/*Owl Slider*/
.owl-theme .owl-dots .owl-dot span{
    width: 30px !important;
    height: 7px !important;
    background: var(--gray) !important;
    margin: 5px 6px !important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: var(--theme-font-color-blue) !important;
}
.owl-theme .owl-dots, .owl-theme .owl-nav{
    margin-bottom: 10px;
}
/*Owl Slider*/

/*Sticky Bars*/
.stickybar-wrap{
    position: fixed;
    display: flex;
    justify-content: center;
    width: 10px;
    height: 100vh;
    padding-top: 5vh;
    padding-bottom: 5vh;
    top: 0;
    z-index: 101;
    align-items: center;
}
.stickybar-left{
    left: 42px;
}
.social-icon {
    padding: 16px 11px;
    border-radius: 30px;
    margin: 0;
    list-style: none;
    font-size: 15px;
    line-height: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(51 90 152 / 80%);
}
.social-icon li{
    display: inline-block;
    line-height: 2.2em;
}
.social-icon li img{
    width: 14px;
}
/*Sticky Bars*/

/*Fancybox*/
.fancybox__backdrop{
    background-color: rgba(19, 57, 90, 0.6) !important;
    backdrop-filter: blur(5px) !important;
}
/*Fancybox*/

/*Tabs*/
.nav-pills{
    display: flex;
    gap: 10px;
    justify-content: center;
}
.nav-pills .nav-link{
    align-content: center;
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 4px;
    height: 48px;
    padding: 16px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -.176px;
    line-height: 24px;
    border: 1px solid rgb(226, 228, 233);
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    box-shadow: rgba(16, 24, 41, 0.08) 0px 0px 0px 0px;
    will-change: auto;
    color: var(--gray);
    transition: box-shadow ease 0.5s;
}
.nav-pills .nav-link:hover{
    box-shadow: rgba(16, 24, 41, 0.08) 0px 4px 17px -4px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    color: var(--theme-font-color-blue);
    box-shadow: rgba(16, 24, 40, 0.03) 0px 8px 8px -4px, rgba(16, 24, 40, 0.08) 0px 20px 24px -4px;
    background-color: rgb(207, 234, 255);
    font-weight: bold;
}
.tab-content{
    padding-top: 20px;
}
.tab-content img{
    border-radius: var(--border-radius);
    width: 100%;
}
.tab-content>.active{
    display: flex;
}
/*Tabs*/

/*Fancybox*/
.is-compact .fancybox__content>.f-button.is-close-btn{
    --f-button-color: var(--theme-bg-color-second);
    --f-button-hover-color: var(--gray);
    --f-button-outline-color: transparent;
    --f-button-bg: transparent;
    --f-button-hover-bg: transparent;
}
/*Fancybox*/

/*Popup*/
#auto-popup-content{
    max-width: 90%;
    height: 90vh;
    border-radius: var(--border-radius);
    background-color: var(--theme-font-color);
    display: none;
}
#auto-popup-content img{
    border-radius: var(--border-radius);
    height: 100%;
}
#auto-popup-content iframe{
    border-radius: var(--border-radius);
    width: 720px;
    height: 100%;
}
/*Popup*/

.overlay{
    display: flex;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    position: absolute;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}