
.main_youpop {
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    background: rgba(0, 0, 0, 0.3);
}

.main_youpop .you_pop_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.main_youpop .you_pop_box .you_preview {
    display: flex;
    flex-direction: column;
    /*overflow: hidden;*/
    position: relative;
    width: 40vw;
    height: auto;
    max-height: 67.75rem;
    background-color: white;
    /*transform: scale(0);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: standardModalAnimation 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);*/
    box-shadow: 2px 2px 15px rgb(0 0 0 / 40%);
    border-radius: 0.25rem;
}

/*
@keyframes standardModalAnimation {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.main_youpop .you_pop_box .you_preview.active {
    transform: inherit;
    opacity: 1;
}
*/

.main_youpop .you_pop_box .you_preview img {
    width: 100%;
}