.add-form {
}

.add-form .form-messages {
}

.add-form .form-messages p {
    font-size: 16px;
}

.add-form .form-messages .-is-error {
    color: var(--highlight-color);
}

.add-form .form-messages .-is-note {
    color: var(--text-dark-color);
}

.add-form .form-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.add-form .form-popup .form-popup__inner {
    margin: 70px auto;
    padding: 20px;
    background: var(--background-color);
    border-radius: 5px;
    width: 90%;
    position: relative;
    transition: all 5s ease-in-out;
}

.add-form .form-popup .form-popup__title {
    margin-top: 0;
    color: #333;
    text-align: center;
    font-size: 16px;
}

.add-form .form-popup .form-popup__body {
    margin: 70px auto;
    padding: 20px;
    background: var(--background-color);
    border-radius: 5px;
    width: 90%;
    position: relative;
    transition: all 5s ease-in-out;
}

.add-form .form-popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-dark-color);
}

.add-form .form-popup .close:hover {
    color: var(--highlight-color);
}

.add-form .form-popup p {
    font-size: 16px;
}

.add-form .form-popup .-is-error {
    color: var(--highlight-color);
}

.add-form .form-popup .-is-note {
    color: var(--text-dark-color);
}

@media screen and (max-width: 700px) {
    .add-form .form-popup {
        width: 70%;
    }
}

.add-form .moreContacts {
    margin-bottom: 20px;
}

.add-form .moreContacts .moreContacts__item {
    line-height: 18px;
    font-size: 15px;
    border: 1px solid var(--text-light-color);
    margin-right: 8px;
    border-radius: 10px;
    padding: 3px;
}

.add-form .moreContacts .moreContacts__item i {
    padding-right: 5px;
    font-size: 18px;
}

.add-form .form-group {
}

.add-form .form-group .group-col {

}

.add-form .form-group .col {
}

.add-form .form-group .col-2 {
    width: 49%;
    display: inline-block;
    vertical-align: top;
}

.add-form .form-group .col-3 {
    width: 32%;
    display: inline-block;
    vertical-align: top;
}

.add-form .form-group .form-field {
    margin-bottom: 20px;
}

.add-form .form-group .col-2 .form-field {
    width: 90%;
}

.add-form .form-group .col-3 .form-field {
    width: 90%;
}

.add-form .form-buttons input {
    color: #fff;
    border: none;
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

.add-form .form-buttons input:hover {
    color: var(--background-color);
}

.add-form .input-map .girl-up-button {
    color: #fff;
}

.add-form .input-map .girl-up-button:hover {
    color: var(--background-color);
}

.add-form .description-checkbox-add {
    position: absolute;
    right: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease-out;
}

.add-form .custom-checkbox > .custom-checkbox--input:checked ~ .description-checkbox-add {
    opacity: 1;
    pointer-events: auto;
}

.add-form .input-string.--multiple .form-control {
    margin-bottom: 10px;
}

.add-form .input-file .photo-wrap {
    position: relative;
    text-align: center;
    margin-bottom: 10px;
}

.add-form .input-file .photo-wrap .file-preview {
    position: relative;
    display: block;
    border-radius: 6px;
    margin: 2px auto;
}

.add-form .input-file .photo-wrap .file-preview .delete-file {
    text-align: center;
    width: 100%;
    padding: 10px;
    bottom: 0;
    position: absolute;
}

.add-form .input-file .photo-wrap .form-control {
}

.add-form .form-group .form-field .error {
    color: var(--highlight-color);
    display: inline-block;
    margin-right: 4px;
}

.add-form .form-group .form-field.-has-error .form-control {
    border-color: var(--highlight-color);
}

.add-form .form-group .form-field.-pulse {
    box-shadow: 0 0 0 0 rgba(200, 33, 113, 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(200, 33, 113, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.form-group.form-captcha{

}

.form-group.form-captcha .form-field{
    display: flex;
    gap: 15px;
}

.form-group.form-captcha .form-field input[name="captcha_word"]{
    flex: 1 0 auto;
    padding: 10px;
    font-size: 13px;
}

@media(max-width: 420px){
    .form-group.form-captcha .form-field input[name="captcha_word"]{
        width: 100%;
        flex: unset;
    }
}