#uv-sidebar-pop.uv-sidebar-pop .uv-pop-cont-tab,
#uv-sidebar-pop.uv-sidebar-pop .uv-pop-cont-cell {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
}

#uv-sidebar-pop .uv-pop-box {
    color: #000;
    width: 100%;
    max-width: 618px;
    position: fixed;
    margin: 0;
    border-radius: 0;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: 88889;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    transform: translateX(100%);
    transform-origin: right center;
    opacity: 1;
    transition: transform 0.25s ease-in-out;
    overflow: hidden;
}

#uv-sidebar-pop.visible .uv-pop-box {
    transform: translateX(0);
}

.uv-sidebar-widget-cont {
    min-height: 100dvh;
    position: relative;
    padding: 2.5em;
}

.uv-sidebar-widget-cont::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.uv-sidebar-widget-cont::after,
body:has(.uv-sidebar-widget-cont) .uws-loader-uvicon {
    width: 30px;
    height: 30px;
    background-image: url(../assets/images/loader.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    animation: uwsloader 4s infinite linear;
    transition: all 0.25s ease-in-out;
}

body:has(.uv-sidebar-widget-cont) .uws-loader-uvicon:before {
    display: none;
}

.uv-sidebar-pop:not(.uvpoploading) .uv-sidebar-widget-cont::after {
    opacity: 0;
    visibility: hidden;
}

@keyframes uwsloader {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Media Queries */
@media (max-width: 600px) {
    .uv-sidebar-widget-cont {
        padding: 1.25em;
    }

    #uv-sidebar-pop.uv-pop-cont .uv-pop-box>.uv-closepop {
        font-size: 1.2rem;
    }
}