body {
    margin: 0;
}

#loading-bg {
    width: 100%;
    height: 100%;
    background: #fff;
    display: block;
    position: absolute;
}

.loading-logo {
    position: absolute;
    left: calc(50% - 55px);
    top: calc(50% - 65px);
}

.loading {
    position: absolute;
    left: calc(50% - 23px);
    top: calc(50% - 25px);
}

.dsb_progress__circular-wrapper {
    width: fit-content;
}

.dsb_progress__circular_standart {
    width: 44px;
    height: 44px;
}

.dsb_progress__circular_standart .dsb_progress-circle {
    stroke: #fdd835;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 250ms;
}

.dsb_progress__circular_standart .dsb_progress-circle__track, .dsb_progress__circular_standart .dsb_progress-circle__indication {
    transform-origin: 50% 50%;
    cx: 22px;
    cy: 22px;
    r: 19px;
    fill: transparent;
    stroke-width: 6px;
}

.dsb_progress__circular_standart .dsb_progress-circle__track {
    stroke: rgba(25, 28, 52, 0.12);
}

.dsb_progress__circular_standart .dsb_progress-circle__indication {
    stroke: #fdd835;
    stroke-linecap: round;
}

.dsb_progress__circular_standart .dsb_progress-circle__indication_completed {
    stroke-linecap: square;
}

.dsb_progress__circular_standart .dsb_progress-circle__cycled {
    animation: colors 1300ms linear infinite, circle-rotate 1300ms linear infinite, dash 1300ms linear infinite;
}

@keyframes circle-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 11.9380520836px, 119.3805208364px;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89.5353906273px, 119.3805208364px;
    }
    100% {
        stroke-dasharray: 89.5353906273px, 107.4424687528px;
        stroke-dashoffset: -119.3805208364px;
    }
}

@keyframes colors {
    0% {
        stroke: #fdb435;
    }
    50% {
        stroke: #fdd835;
    }
    100% {
        stroke: #fdb435;
    }
}

.dsb_progress__circular_mini {
    width: 20px;
    height: 20px;
}

.dsb_progress__circular_mini .dsb_progress-circle {
    stroke: #fdd835;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 250ms;
}

.dsb_progress__circular_mini .dsb_progress-circle__track, .dsb_progress__circular_mini .dsb_progress-circle__indication {
    transform-origin: 50% 50%;
    cx: 10px;
    cy: 10px;
    r: 8.5px;
    fill: transparent;
    stroke-width: 3px;
}

.dsb_progress__circular_mini .dsb_progress-circle__track {
    stroke: var(--color-divider);
}

.dsb_progress__circular_mini .dsb_progress-circle__indication {
    stroke: #fdd835;
    stroke-linecap: round;
}

.dsb_progress__circular_mini .dsb_progress-circle__indication_completed {
    stroke-linecap: square;
}

.dsb_progress__circular_mini .dsb_progress-circle__cycled {
    animation: colors-mini 1300ms linear infinite, rotate-mini 1300ms linear infinite, dash-mini 1300ms ease-in infinite;
}

@keyframes rotate-mini {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash-mini {
    0% {
        stroke-dasharray: 5.3407075111px, 53.407075111px;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 40.0553063333px, 53.407075111px;
    }
    100% {
        stroke-dasharray: 40.0553063333px, 48.0663675999px;
        stroke-dashoffset: -53.407075111px;
    }
}

@keyframes colors-mini {
    0% {
        stroke: #fdb435;
    }
    50% {
        stroke: #fdd835;
    }
    100% {
        stroke: #fdb435;
    }
}

#ie-block {
    display: none;
}

.ie-block__instruction {
    margin-top: 2rem;
}

.ie__title {
    text-align: center;
    color: #5e5873;
}

.ie__list {
    padding-left: 0;
    list-style: none;
    text-align: center;
}

.ie__list__elem {
    margin-right: 1em;
    display: inline;

}

.ie__list__link {
    text-decoration: none;
    color: #5e5873;
    font-weight: 500;
    font-size: 1.285rem;
}

.ie__list__link:hover,
.ie__list__link:active {
    color: #6e6b7b;
}

.list-instruction {
    color: #5e5873;
    font-weight: 500;
    font-size: 1.285rem;
}

.text-img {
    text-align: center;
}

.image {
    text-align: center;
}

.error {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.error__title {
    margin-top: 24px !important;
}

.error__image {
    width: 480px;
    height: auto;
}

.error__subtitle {
    margin-top: 8px !important;
    text-align: center;
}

.dsb_typography {
    margin: 0;
    padding: 0;
    color: rgba(9, 11, 22, 0.94);
    font-family: "Beeline Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
}

.dsb_typography__h4 {
    font-size: 26px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0.2px;
}

.dsb_typography__body1 {
    font-size: 19px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.2px;
}

@media (max-width: 600px) {
    .error__image {
        width: 258px;
    }
}

@media (max-width: 960px) {
    .error__image {
        width: 300px;
    }
}

@media (max-width: 960px) {
    .error__title {
        margin-top: 16px !important;
    }
}