﻿section.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000C0;
    z-index: 9000;
    font-weight: 500;
    color: black;
}


    section.popup div.content {
        position: absolute;
        width: 90%;
        max-width: 640px;
        margin: 0;
        padding: 0;
        border-radius: 1rem;
        left: 50%;
        top: 50%;
        overflow: hidden;
        text-align: center;
        transform: translate(-50%, -50%);
        font-family: 'NU SKIN', sans-serif;
        /*    background: #62D8FF;
    background: linear-gradient(183deg, rgba(98, 216, 255, 1) 0%, rgba(162, 133, 241, 1) 80%);
*/
    }


        section.popup div.content img {
            display: block;
        }

        section.popup div.content div.footer {
            display: flex;
            justify-content: space-between;
            justify-items: center;
            font-size: 1rem;
            padding: 1rem 1.5rem;
            background-color: #F9F9F9;
        }


        section.popup div.content div.close-button {
            cursor: pointer;
            font-size: 1.2rem;
        }


        section.popup div.content label input {
            transform: scale(1.5);
            margin-right: 0.5rem;
        }
