.email {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(43, 85, 102, 0.70);
    z-index: 10;
    justify-content: center;
    align-items: center;
    padding: 20px;
    display: none;

    &.email-open {
        display: flex;
    }

    .email-form {
        max-width: 800px;
        width: 100%;
        padding: 40px;
        background: white;
        position: relative;

        .email-form_-title {
            text-align: center;
            margin-bottom: 20px;
        }
        .email-form__description {
            text-align: center;
            margin-bottom: 40px;
        }

        .email-form__list {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 25px;
        }
        label {
            position: relative;
            width: 100%;
        }
        .input_text {
            /*height: 80px;*/
            border: solid 1px black;
            padding: 20px 60px;
            font-family: Proxima Nova Rg, sans-serif;
            font-size: 24px;
            line-height: normal;
            width: 100%;
            border-radius: 8px;
        }
        .input_checkbox_text {
            font-family: Proxima Nova Rg, sans-serif;
            font-size: 20px;
            line-height: normal;
        }
        .input_checkbox_text_link {
            font-family: Proxima Nova Rg, sans-serif;
            font-size: 20px;
            line-height: normal;
            color: #34677B;
            text-decoration: underline;
        }

        .input_label {
            position: absolute;
            top: 0;
            left: 20px;
            padding: 0 10px;
            transform: translateY(-50%);
            display: flex;
            background: white;
            font-family: Proxima Nova Rg, sans-serif;
            line-height: normal;
        }

    }

    .email-form-close {
        position: absolute;
        right: 20px;
        top: 20px;
        width: 20px;
        height: 20px;
        cursor: pointer;

        &:after,
        &:before {
            content: '';
            display: block;
            height: 2px;
            width: 100%;
            background: #34677B;
            position: absolute;
            top: calc(50% - 1px);
            transform-origin: center;
        }
        &:after {
            transform: rotate(45deg);
        }
        &:before {
            transform: rotate(-45deg);
        }
    }
}