/* Оверлей */
.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    opacity: .7;
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 7px;
    border-color: rgb(206 206 206);
    border-top-color: rgba(0, 0, 0, 0);
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Анимации */
.data-enter-active {
    animation: data-in .7s;
}
@keyframes data-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.spinner-enter-active {
    animation: spinner-in .5s;
}
@keyframes spinner-in {
    0% {
        transform: scale(.1);
    }
    100% {
        transform: scale(1);
    }
}

/* select2 */
.select2-container .select2-selection--single {
    height: 44px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 24px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 12px;
    padding-right: 30px;
    white-space: normal;
    word-break: break-all;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px;
    right: 7px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 26px;
    height: 40px;
    width: 20px;
    color: #a4a4a4;
}
.select2-container--default .select2-selection--single {
    border: 1px solid #e0e0e0;
    overflow: hidden;
}
.select2-container--open .select2-selection--single {
    border-color: #008996;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #008996;
}
.select2-container--default .select2-results__option--selected {
    background-color: white;
}
.select2-search--dropdown .select2-search__field {
    padding-left: 7px;
    padding-right: 7px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 4px;
}

.form-item.error .select2-container--default .select2-selection--single,
.form-item.invalid .select2-container--default .select2-selection--single {
    border-color: #facdcd;
    background-color: #fbeae5;
}

.form-item.error .select2-container--default.select2-container--focus .select2-selection--single,
.form-item.error .select2-container--default.select2-container--open .select2-selection--single,
.form-item.invalid .select2-container--default.select2-container--focus .select2-selection--single,
.form-item.invalid .select2-container--default.select2-container--open .select2-selection--single
{
    border-color: #ed6347;
}