.big_box_popup_buy_art {
    width: 25vw;
    height: 25vw;

    font-family: 'Georgia', serif;

    background: white;

    display: none;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 125%;
    left: 50%;
    z-index: 100;

    border-radius: 50%;
    box-shadow: 0px 5px 7px #343434;

    transform: translate(-50%, -50%);
    transition: 0.5s;
    overflow: hidden;

    /*------ANIMATION-------*/
    /*animation-name: display_box_buy_art;*/
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(.28, .84, .42, 1.2);
    animation-fill-mode: forwards;
}

@keyframes display_box_buy_art {
    0% {
        top: 125%;
        border-radius: 50%;
        width: 25vw;
        height: 25vw;
    }

    40% {
        top: 50%;
        border-radius: 50%;
        width: 25vw;
        height: 25vw;
    }

    60% {
        top: 50%;
        border-radius: 50%;
        width: 75vw;
        height: 75vw;
    }

    80% {
        top: 50%;
        border-radius: 50%;
        width: 100%;
        height: 100vw;
    }

    100% {
        top: 50%;
        border-radius: 0%;
        width: 100vw;
        height: 100vh;
    }
}

@keyframes close_box_buy_art {
    0% {
        top: 50%;
        border-radius: 0%;
        width: 100%;
        height: 100vh;
    }

    20% {
        top: 50%;
        border-radius: 50%;
        width: 100%;
        height: 100vw;
    }

    40% {
        top: 50%;
        border-radius: 50%;
        width: 75%;
        height: 75vw;
    }

    60% {
        top: 50%;
        border-radius: 50%;
        width: 25%;
        height: 25vw;
    }

    100% {
        top: 125%;
        border-radius: 50%;
        width: 25%;
        height: 25vw;
    }
}

/*
.popup_buy_art_active {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;

    display: flex;

    top: 0;
    left: 0;

    transform: translate(0%, 0%);
    border-radius: 0%;
}
*/

.box_popup_bay_art {
    width: 90%;
    max-width: 450px;

    padding: 2em 0;

    background: linear-gradient(135deg, #FFC107 7%, aliceblue 7%);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;

    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.box_popup_bay_art h1 {
    max-width: 90%;
    text-align: center;
    color: #3F51B5;
    font-size: 20px;
    font-weight: 500;
}

.box_img_art_to_buy {
    width: 200px;
    height: 200px;

    border: 1px solid #d4af37;

    border-radius: 15px;
    overflow: hidden;
}

.box_img_art_to_buy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.box_img_art_to_buy:hover img {
    transform: scale(1.05);
}

.box_popup_bay_art h2 {
    color: #4f4d4d;
    margin-top: 1em;
    font-weight: 500;
    font-style: italic;
    font-size: 14px;
}

.big_box_mode_to_buy {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.box_mode_by_whatsapp,
.box_mode_by_phone {
    border: 1px solid #d4af37;

    width: 75px;
    aspect-ratio: 1/1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.box_mode_by_whatsapp:hover,
.box_mode_by_phone:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.box_mode_by_whatsapp img,
.box_mode_by_phone img {
    width: 40px;
    height: 40px;

    border-radius: 50%;
}

.box_mode_by_whatsapp:hover img,
.box_mode_by_phone:hover img {
    border-color: #000;
}

.box_mode_by_whatsapp a,
.box_mode_by_phone a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.box_mode_by_whatsapp p,
.box_mode_by_phone p {
    color: #4b4a49;
    font-size: 10px;
    font-weight: 500;
}

.box_mode_by_whatsapp:hover p,
.box_mode_by_phone:hover p {
    color: #000;
}

.icon_close_popup_bay_art {
    width: 30px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(42%, -42%);
    filter: drop-shadow(0px 0px 2px gray);
}

.icon_close_popup_bay_art:hover {
    scale: 1.1;
    transform: translate(38.8%, -38.8%);
    transition: 0.25s;
}