.mm-form {
    max-width: 660px;
    margin: 50px auto;
    position: relative;
}

.mm-form.sended {
    overflow-x: hidden;
}

.chekbox input[type="checkbox"].error + label::before {
    border-color: #EC2C61;
    color: #EC2C61;
}
  
.chekbox input[type="checkbox"].error + label {
    color: #EC2C61;
}

.form-result {
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    transition: .3s;
    opacity: 0;
    pointer-events: none;
}

.mm-form.sended .form-result {
    opacity: 1;
    pointer-events: fill;
}

.form-result__img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

@media screen and (max-width: 576px) {
    .form-result__img {
        width: 100px;
        height: 100px;
    }
}

.form-result__text {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.form-result__title {
    margin-bottom: 10px;
}

.form-result__subtitle {
    margin-bottom: 30px;
}