/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 27 2025 | 16:35:59 */
.popup {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .8);
    z-index: 5000;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    /* display: none; */
	z-index: 5000;
	font-size: 16px;
}

.popup--active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    display: flex;
    width: 95%;
    max-height: 85vh;
    background-color: #FFF;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, .2);
    border-radius: 3px;
    overflow: hidden;
    opacity: 0;
    transform: scale(.25);
    transition: all .4s .2s;
}

@media screen and (min-width: 600px) {
    .popup-content {
        width: 75%;
    }
}

.popup--active .popup-content {
    opacity: 1;
    transform: scale(1);
}

.popup-left {
/*     width: 33.33%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-right {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-close:link,
.popup-close:visited {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #777;
    transition: all .2s;
}

.popup-close svg {
    height: 32px;
    width: 32px;
}

.popup-close:hover {
    color: #e31e25;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transform: rotate(360deg);
}

.popup-description {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2rem;
    overflow-y: auto;
}

@media screen and (min-width: 600px) {
    .popup-description {
        padding: 2rem 3rem;
    }
}

.popup-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.popup-description .paragraph {
    font-size: 16px;
    line-height: 1.5;
    color: #5c5c5c;
}

@media screen and (min-width: 600px) {
    .popup-description .paragraph {
        font-size: 16px;
    }
}

.popup-description .paragraph:not(:last-of-type) {
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 600px) {
    .popup-description .paragraph:not(:last-of-type) {
        margin-bottom: 2rem;
    }
}

.recommend {
    /* color: #f0EEEE; */
    display: flex;
    align-items: center;
}

.recommend-count {
    margin-right: auto;
}

.recommend-photo {
    height: 4rem;
    width: 4rem;
    border: 3px solid #FFF;
    border-radius: 50%;
    transition: all .3s;

}

.recommend-photo:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transform: translateX(-2px) translateY(-2px);

}

.recommend-photo:not(:last-child) {
    margin-right: -1.5rem;
}

.recommend-friends {
    flex-shrink: 0;
}
