.modal-form {
    display: none;
}
.modal-success {
    text-align: center;
    padding: 20px;
}
.success-message__text {
    font-size: 18px;
    margin-bottom: 20px;
}
.success-ok-button {
    width: 240px;
    height: 44px;
    text-transform: uppercase;
    border: 0;
    outline: none;
    font-size: 14px;
    padding: 13px 0;
    display: inline-block;
    text-decoration: none;
    background: #ffc107;
    color: #333;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, .25);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .25);
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.form-error.general-error {
    color: #d32f2f;
    background: #ffebee;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #f44336;
}
.success-message {
    text-align: center;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-clear {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #999;
    display: none;
    z-index: 10;
}

.coweb-form .content.out {
    max-width:600px;
}

.select-clear:hover {
    color: #666;
}

.select-input {
    padding-right: 30px !important; /* Место для крестика */
}

.coweb-form .input {
    position:relative;
    margin-bottom:20px;
}
.coweb-form .input input[type=text],
.coweb-form .input input[type=tel],
.coweb-form .input input[type=email],
.coweb-form .input textarea {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 4px;
    background: #eeeeee;
    -webkit-box-shadow: inset 0 2px 2px rgba(0, 0, 0, .25);
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, .25);
    -webkit-border-radius: 4px;
    padding: 16px;
    font-size: 14px;
}
.coweb-form .clear-input {
    opacity: 1;
    pointer-events: all;
    position: absolute;
    transform: translateY(-50%);
    top: 68%;
    flex: 0;
    display: flex;
    align-items: center;
    width: 32px;
    height: 32px;
    z-index: 2;
    right: 16px;
    justify-content: flex-end;
    border: none;
    padding: 0;
    background: transparent;
    outline: none;
    cursor: pointer;
}
.coweb-form .clear-input[hidden] {
    opacity: 0;
    pointer-events: none;
}
.coweb-form .button-sumbit {
    width:100%;
}
.coweb-form .btn {
    margin: 20px auto;
}
.coweb-form .btn[disabled] {
    background: #ccc;
}
.coweb-form .field-name {
    text-align:left;
}
.coweb-form .field-name .red {
    color:red;
    font-size:16px;
}
.modal-close {
    border: none;
    padding: 0;
    background: transparent;
    outline: none;
    cursor: pointer;
    float: right;
    position: absolute;
    top: 30px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}