.progressbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progressbar__inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.progressbar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 178px;
    height: 178px;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    --progress-color: #01B0B9;
    --persents: 0;

}

.progressbar svg .progress-animation {
    transition: 0.5s;
    --progress-full: 500;
    --persent: calc(var(--progress-full) / 100);
    stroke-dasharray: calc(var(--progress-full) * 1px);
    stroke-dashoffset: 0px;
    animation: progress 1s linear forwards;
    --calculated-persents: calc((var(--progress-full) - (var(--persent) * var(--persents))) * 1px)
}

.progressbar .progress__main {
    stroke: var(--progress-color);
}

@keyframes progress {
    0% {
        stroke-dashoffset: 264px;
    }

    100% {
        stroke-dashoffset: var(--calculated-persents);
    }
}

.progressbar-wrapper .progressbar__value {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.switch-wrapper.switch--secondary {
    border-radius: 8px;
}

.switch-wrapper.switch--secondary .switch-items {
    padding: 3px;
}

.switch-wrapper.switch--secondary input:checked~.active-check {
    transform: translate(calc(100% + 6px), -50%);
    left: -3px;
}

.switch-wrapper.switch--secondary .active-check {
    border-radius: 6px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
}

.color-default {
    color: var(--defaultTextColor);
}


/* select2  */
.form-group,
.form-group--row {
    --input-height: 40px;
    --select-border: none;
    --rounded: 0;
    --select-bg: transparent;
    --select-arrow-size: 12px;
    --select-padding-left: 13px;
    --select-padding-right: calc(6px + var(--select-arrow-size));
    --select-font-size: 15px;
    --select-line-height: var(--input-height);
    --select-color: var(--defaultTextColor);
}
.form-group .select-wrapper {
    --select-border: 1px solid var(--light-4);
    --rounded: 10px;
    --select-arrow-size: 50px;
}
.form-group .select-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-weight: 400;
    font-style: normal;
}
.form-group .select2-selection,
.form-group--row .select2-selection {
    background-color: var(--white);
    border: 1px solid var(--light-4);
    border-radius: 12px;
}

.form-group .select2-container .select2-selection--single,
.form-group .select2-container--default .select2-selection--single .select2-selection__rendered,
.form-group--row .select2-container .select2-selection--single,
.form-group--row .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: var(--input-height)
}

.form-group .select2-container .select2-selection--multiple {
    min-height: var(--input-height);
    padding-right: 25px;
    padding-left: 2px;
}

.form-group .select2-container .select2-selection--multiple .select2-selection__rendered {
    line-height: calc(var(--input-height) - 10px);
    font-size: 14px;
}

.form-group .select2-container .select2-search--inline .select2-search__field {
    height: calc(var(--input-height) - 10px);
    line-height: calc(var(--input-height) - 10px);
    font-size: 15px;
}

.form-group .select2-container--default .select2-selection--multiple .select2-selection__choice {
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: var(--white);
    border-radius: 9px;
    padding-left: 30px;
}

.form-group .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border-right: 1px solid var(--white);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: var(--white);
    height: 100%;
    padding: 0 10px;
}

.form-group .select2-container,
.form-group--row .select2-container {
    width: 100% !important;
}

.form-group .select2-container--default .select2-selection--single,
.form-group--row .select2-container--default .select2-selection--single {
    background: var(--select-bg);
    border: var(--select-border);
    border-radius: var(--rounded);
}


.form-group .select2-container--default .select2-selection--single .select2-selection__rendered,
.form-group--row .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: var(--select-padding-left);
    padding-right: var(--select-padding-right);
    font-size: var(--select-font-size);
    line-height: var(--select-line-height);
    color: var(--select-color);
    font-style: italic;
    font-weight: 600;
}

.form-group .select2-container--default .select2-selection--single .select2-selection__arrow,
.form-group--row .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: var(--input-height);
    position: absolute;
    top: 50%;
    right: 0;
    width: var(--select-arrow-size);
    transform: translateY(-50%);
}

.form-group .select2-container--default .select2-selection--single .select2-selection__arrow b,
.form-group--row .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--select-color) transparent transparent transparent;
}

.form-group .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b,
.form-group--row .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--select-color) transparent;
}