/* standalone form styles */
.send-question-block {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    position: fixed;
    top: 0;
    z-index: 21;
    display: none;
}
.send-question-block-mask.layer {
    z-index: 0;
}
.layer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    min-height: 800px;
    z-index: 99;
}
.send-question-block .send-question-form {
    font-family: 'Montserrat',Arial,sans-serif;
    display: block;
    width: 350px;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    transform: translateY(-200%);
    background: #fff;
    padding: 25px 20px;
    left: 50%;
    box-shadow: 0 0 12px rgba(0, 0, 0, .25);
    transition: all ease .6s;
    margin-left: -175px;
    opacity: 0;
    border-radius: 12px 0 12px 12px;
}
.send-question-block .send-question-form.is-active {
    transition: all ease .6s;
    transform: translateY(-50%);
    opacity: 1;
}
.send-question-block .second-question__close {
    width: 32px;
    height: 32px;
    position: absolute;
    bottom: 100%;
    right: 0;
    background: rgb(0, 205, 46);
    border: 0;
    overflow: hidden;
    text-indent: -999px;
    outline: none;
    border-radius: 12px 12px 0 0;
}
.form-send-success {
    margin: 0 auto;
    text-align: center;
    color: #222;
    font-size: 18px;
}
.hidden {
    display: none !important;
}
input {
    margin: 0;
}
.send-question-form__head {
    margin-bottom: 20px;
    padding: 0 12px;
}
.send-question-form__footer {
    position: relative;
    margin-top: 0;
    text-align: center;
}
.send-question-block .send-question-form__field {
    border: 1px solid #ddd;
    position: relative;
    padding-top: 10px;
    cursor: text;
    border-radius: 8px;
}
.send-question-block .send-question-form__field label {
    font-size: 11px;
    position: absolute;
    left: 7px;
    margin: 0;
    display: block;
    top: -6px;
    transition: all ease .3s;
    background: #fff;
    padding: 0 5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #888;
}
.send-question-block .send-question-form__field input[type="text"], .send-question-block .send-question-form__field textarea {
    border: 0;
    padding: 4px 12px 6px;
    box-sizing: border-box;
    width: 100%;
    outline: none;
    border-radius: 8px;
}
.send-question-block .send-question-form__field textarea {
    min-height: 160px;
}
.send-question-form__body {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}

.send-question-block .send-question-form__field_checkbox {
    display: flex;
    align-items: flex-start;
    border-color: transparent;
    padding-top: 0;
}
.send-question-block .send-question-form__field_checkbox input[type="checkbox"] {
    margin: 0;
    padding: 0;
    vertical-align: top;
}
input[type="radio"], input[type="checkbox"] {
    margin: 4px 0 0;
    line-height: normal;
}
.send-question-block .send-question-form__field_checkbox label {
    font-size: 13px;
    line-height: 1.33;
    padding-left: 12px;
    position: relative;
    top: auto;
    left: auto;
    text-transform: none;
}
.send-question-block .send-question-form__field_checkbox label a {
    color: rgb(0, 205, 46);
    text-decoration: none;
}
.common-btn {
    text-transform: uppercase;
    letter-spacing: .05em;
    width: auto;
    font-size: 16px;
    background: #00cd2e;
    color: #fff;
    opacity: 1;
    padding: 1em 1.5em;
    line-height: 1;
    display: inline-block;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #00cd2e;
    margin-top: 18px;
}
.common-btn:hover {
    background: #fff;
    color: #00cd2e;
}
.common-btn.disabled {
    background: #ddd;
    color: #bbb;
    border: 1px solid #ddd;
}
.send-question-block .second-question__close {
    width: 32px;
    height: 32px;
    position: absolute;
    bottom: 100%;
    right: 0;
    background: rgb(0, 205, 46);
    border: 0;
    overflow: hidden;
    text-indent: -999px;
    outline: none;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
}
.send-question-block .second-question__close:after, .send-question-block .second-question__close:before {
    height: 2px;
    width: 20px;
    background: #fff;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px 0 0 -10px;
}
.send-question-block .second-question__close:before {
    transform: rotate(-45deg);
}
.send-question-block .second-question__close:after {
    transform: rotate(45deg);
}
