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

/*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: 1;
    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(4 39 95 / 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;
}
.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-image, .fancybox-image img{
    border-radius: var(--border-radius);
}
/*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*/


/*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*/

/*Donate Button Sticky*/
.donate-button-sticky{
    display: flex;
    position: fixed;
    bottom: 70px;
    align-items: flex-end;
    right: 20px;
    z-index: 99;
}
/*Donate Button Sticky*/


/*Toastr*/
.custom-toast {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, -150%);
    background-color: rgba(4 39 95 / 60%);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-size: 0.9em;
    font-weight: 500;
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.custom-toast.show {
    transform: translate(-50%, 20px);
    opacity: 1;
}
/*Toastr*/

