.popup__container {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100vh;
    width: 100vw;


    .bg {
        background: rgba(86, 86, 86, 0.523);
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        height: 100vh;
        width: 100vw;
    }

    .popup {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-height: 100px;
        min-width: 100px;
        background: white;
    }
}

.popup__container .burger_menu {
    transform: translate(100%, -50%);
    width: auto;
    left: auto;
    right: 0;
    display: block;
    transition-duration: 0.5s;
}

.popup__container .burger_menu.active {
    transform: translate(0%, -50%);
}

.popup__container.open,
.popup.active {
    display: block;
}

.popup__container {
    .content {
        .p {
            font-size: 20px;
            background: orangered;
            padding: 20px 10px;
            font-weight: 600;
            text-align: center;
            color: white;
            letter-spacing: 1px;
        }
    }

    .wrapper {
        padding: 10px 20px;

        * {
            width: 100%;
        }

        form {
            input {
                border: none;
                border: 1px solid rgba(58, 58, 58, 0.559);
                border-radius: 5px;
                padding: 5px 10px;
                outline: none;
            }


        }
    }


    .popup-buy {
        height: 300px;
        width: 400px;
        border-radius: 30px;
        padding: 40px;

        button {
            margin-top: 10px;
            background: rgb(10, 50, 247);
            padding: 10px 20px;
            margin-top: 30px;
            width: 100%;
        }

        label {
            display: block;
            text-align: center;
            margin-bottom: 5px;
        }

        input {
            width: 100%;
            margin-bottom: 15px;
            border: none;
            border-bottom: 1px solid lightblue;
            padding: 5px 20px;
            outline: none;
        }

    }
}