.popup{
    visibility: hidden;
    opacity: 0;
    z-index: 910;
    transition: all 0.3s ease;
    position: fixed;
}
.popup[data-active="true"]{
    visibility: visible;
    opacity: 1;
}
.popup[data-popuptype="basic"]{
    /* max-width: 60vw; */
    width: calc(100% - 12rem);
    /* max-height: 90vh; */
    max-height: calc(100% - 12rem);
    height: fit-content;
    padding: 2rem;
    border-radius: 1rem;
    /* background-color: #FDF7ED; */
    background-color: #F8E5C3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.popup[data-popuptype="scrollable-right"]{
    width: 40vw;
    height: calc(100vh - 4rem);
    padding: 2rem 3rem;
    background-color: #FDF7ED;
    left: 100%;
    top: 0;
}
.popup[data-popuptype="scrollable-right"][data-active="true"]{
    transform: translate(-100%, 0);
}
.popup[data-popuptype="scrollable-bottom"]{
    width: 40vw;
    height: 80vh;
    padding: 2rem 3rem;
    background-color: #FDF7ED;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0);
}
.popup[data-popuptype="scrollable-bottom"][data-active="true"]{
    transform: translate(-50%, -100%);
}
.popup-container{
    width: 100%;
    /* height: 100%; */
    max-height: calc(100vh - 12rem);
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-width: 2px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}
.popup-container[data-columns="2"]{
    align-items: flex-start;
    gap: 1rem;
}
body[data-screen="desktop"] .popup-container[data-columns="2"]{
    flex-direction: row;
}
body[data-screen="mobile"] .popup-container[data-columns="2"]{
    flex-direction: column-reverse;
}
.popup-column{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
}
.popup-column[data-columnflex="1"]{
    flex: 1;
}
.popup-column[data-columnflex="2"]{
    flex: 2;
}
.popup-column[data-columnflex="3"]{
    flex: 3;
}
.popup-column[data-columnflex="4"]{
    flex: 4;
}
.popup-column[data-columnflex="5"]{
    flex: 5;
}
.popup-column[data-columnflex="6"]{
    flex: 6;
}
.popup-column[data-columnflex="7"]{
    flex: 7;
}
.popup-column[data-columnflex="8"]{
    flex: 8;
}
.popup-column[data-columnflex="9"]{
    flex: 9;
}
.popup-column[data-columnflex="10"]{
    flex: 10;
}
.popup-img{
    width: 100%;
    border-radius: 0.5rem;
    display: block;
}

.backdrop{
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    visibility: hidden;
    opacity: 0;
    z-index: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    position: fixed;
    left: 0;
    top: 0;
}
.backdrop[data-active="true"]{
    visibility: visible;
    opacity: 0.8;
}