.block_close {
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.block_close > .material-symbols-rounded {
    font-size: 40px !important;
    color: #ffffff;
    margin-right: 24px;
    cursor: pointer;
}

.forms_vadim_handler_button:hover {
    cursor: pointer;
}

.forms_vadim_background_block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #0a0a0aa8;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.forms_vadim_wrapper_form {
    width: 460px;
    padding: 30px 40px;
    border-radius: 5px;
    background-color: #ffffff;
    overflow-y: auto;
    transition: opacity 0.6s;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.forms_vadim_wrapper_form>img {
    height: 210px;
    width: 220px !important;
    width: inherit;
}

.forms_vadim_wrapper_form>form {
    align-self: stretch;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.forms_vadim_wrapper_form>form>h2{
    margin-bottom: 24px;
    margin-top: 40px;
}

.forms_vadim_wrapper_form>form>h2>span{
    font-weight: bold;
}

.forms_vadim_wrapper_form>form label {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.forms_vadim_wrapper_form>form label>input:not([type="button"]) {
    margin-top: 5px;
    border-radius: 5px;
    height: 50px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.33;
    border-color: #c9c9c9;
}

.forms_vadim_wrapper_form>form label>input[readonly] {
    font-weight: bold;
    cursor: default;
}

.forms_vadim_wrapper_form>form label>input:not([type="button"]):focus {
    border-color: #c9c9c9;
}

.forms_vadim_wrapper_form>form input[type="button"] {
    margin-top: 20px;
    font-weight: bold;
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    background-color: #000000;
}

.forms_vadim_wrapper_form>form input[type="button"]:hover {
    cursor: pointer;
}

.forms_vadim_wrapper_form>form output{
    font-weight: normal;
    width: 100%;
    margin: 12px 0px;
}


@media (max-width: 767px) {
    .forms_vadim_wrapper_form {
        width: 100%;
    }

    .block_close {
        margin-bottom: 0px !important;
    }
}

