.card {
    position: relative;
}

.card__desc {
    z-index: 1;
}

.wstd-custom-popup {
    background: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    padding: 30px;
    display: none;
    overflow-y: scroll;
    border-radius: 10px;
    border: 2px solid var(--main);
}

.wstd-custom-popup.active {
    display: flex;
}

.wstd-custom-popup__close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 2px solid #252525;
    z-index: 1;
    cursor: pointer;
}

.wstd-custom-popup__close-btn:hover {
    background: #252525;
}

.wstd-custom-popup__close-btn::after,
.wstd-custom-popup__close-btn::before {
    content: '';
    position: absolute;
    height: 2px;
    background: #252525;
    width: calc(100% - 4px);
    transform-origin: center;
    left: 2px;
    top: 50%;
    margin-top: -1px;
}

.wstd-custom-popup__close-btn:hover::after,
.wstd-custom-popup__close-btn:hover::before {
    background: #ffffff;
}

.wstd-custom-popup__close-btn::after {
    transform: rotate(45deg);
}


.wstd-custom-popup__close-btn::before {
    transform: rotate(-45deg);
}