@font-face {
    font-weight: normal;
    font-family: 'Geometria';
    font-style: normal;
    src: url('Geometria/Geometria.otf');
}

@font-face {
    font-weight: normal;
    font-family: 'Geometria Bold';
    font-style: normal;
    src: url('Geometria/Geometria-Bold.otf');
}

.issue {
    z-index: 99999999;
    box-sizing: border-box;
    width: 100%;
    max-width: 1260px;
    height: 100%;
    max-height: 720px;
    margin: auto;
    padding: 20px 0 0 0;
    overflow: hidden;
    font-family: "Geometria";
}

.issue-wrap {
    position: relative;
    box-sizing: border-box;
    width: 80%;
    height: auto;

    /* background: rgba(40, 40, 40, .8); */
    margin: 0 auto;
    padding: 1% 3%;
}

.issue__close {
    position: absolute;
    right: -60px;
    bottom: 0;
    width: 55px;
    height: 55px;
    background: url("img/close_red.png") no-repeat;
    border-radius: 50%;
    cursor: pointer;
}

.issue-title, .issue-title__text {
    display: inline-block;
}

.issue-title {
    position: relative;
    margin-right: 5px;
    padding-right: 5px;
    font-size: 32px;
    font-family: "Geometria Bold";
}

.issue-title__text {
    font-size: 20px;
    font-family: "Geometria";
}

.issue-title::after {
    position: absolute;
    top: 9px;
    right: -5px;
    width: 3px;
    height: 60%;
    background: #fff;
    content: "";
}

.issue-wrap-text {
    color: #e2e2e2;
    font-size: 20px;
    opacity: 1;
}

.issue-wrap-text__span {
    line-height: 70px;
}

.issue-form {
    overflow: hidden;
}

.issue-form-label {
    position: relative;
    display: block;
    margin-bottom: 12px;
    padding-left: 35px;
    font-size: 28px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.issue-form-label__descr {
    font-size: 20px;
}

.issue-form__input {
    position: absolute;
    width: 0;
    height: 0;
    cursor: pointer;
    opacity: 0;
}

.issue-form__checkmark {
    position: absolute;
    top: 6px;
    left: 0;
    width: 25px;
    height: 25px;
    background-color: transparent;
    border: 1px solid #fff;
}

.issue-form__checkmark::after {
    position: absolute;
    display: none;
    content: "";
}

.issue-form-label input:checked ~ .issue-form__checkmark::after {
    display: block;
}

.issue-form-label .issue-form__checkmark::after {
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    background: #ed5024;
    border-radius: 50%;
    transform: translate(-50%, -50%);

}

.issue-form__text {
    box-sizing: border-box;
    width: 100%;
    min-height: 110px;
    padding: 5px;
    font-size: 16px;
    font-family: "Geometria";
    resize: none;
}

.issue-form__submit {
    float: right;
    margin-top: 1vw;
    padding: 5px 35px;
    color: #fff;
    font-size: 18px;
    background: #ed5024;
    border: none;
    border-radius: 5px;
    outline: none;
}

@media (max-width: 1259px) {
    .issue {
        padding: 0;
    }

    .issue-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .issue-wrap-text {
        width: 80%;
    }

    .issue__close {
        right: 20px;
        bottom: 20px;
        width: 43px;
        height: 43px;
        background: url("img/close_black.png") no-repeat;
    }

    .issue-title {
        font-size: 3vw;
    }

    .issue-title__text {
        font-size: 2vw;
    }

    .issue-form-label {
        font-size: 2.5vw;
    }

    .issue-form-label__descr {
        font-size: 1.5vw;
    }

    .issue-form__text {
        height: 5vw;
        min-height: initial;
    }

    .issue-form__checkmark {
        width: 15px;
        height: 15px;
    }

    .issue-form-label .issue-form__checkmark::after {
        width: 10px;
        height: 10px;
    }

    .issue-form__submit {
        padding: 5px 20px;
        font-size: 2vw;
    }
}

@media screen and (max-width: 575px) {
    .issue-form-label, .issue-form__input, .issue-form__checkmark, .issue-title::after {
        display: none;
    }

    .issue-title {
        font-size: 4vw;
    }

    .issue-form__text {
        height: 15vw;
    }

    .issue-title__text {
        font-size: 3vw;
    }

    .issue-form__submit {
        float: left;
        font-size: 4vw;
    }

    .issue__close {
        width: 30px;
        height: 30px;
        background-size: cover;
    }
}