.modal__content-inner.is-form-success .modal__title--tariff {
    font-size: 38px !important;
    line-height: 42px !important;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.modal-form-success {
    text-align: center;
    padding: 8px 0 12px;
    width: 80%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.modal-form-success[hidden] {
    display: none !important;
}

.modal__content-inner.is-form-success .modal__form,
.modal__content-inner.is-form-success .modal__form-field-hint {
    display: none !important;
}

.modal-form-success__text {
    margin: 16px 0 0;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 19px;
    line-height: 1.65;
    color: #4a4a4a;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.modal-form-success__icon {
    width: 120px;
    height: 120px;
    margin: 32px auto 8px;
    position: relative;
}

.modal-success-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.modal-success-check {
    transform-origin: 50px 50px;
}

.modal-success-check-path {
    fill: none;
    stroke: #22a559;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 82;
    stroke-dashoffset: 82;
}

.modal-success-clock {
    opacity: 0;
    transform: scale(0.55);
    transform-origin: 50px 50px;
}

.modal-success-clock-face {
    fill: none;
    stroke: #22a559;
    stroke-width: 5;
}

.modal-success-hour-hand {
    stroke: #22a559;
    stroke-width: 4;
    stroke-linecap: round;
}

.modal-success-minute-hand {
    stroke: #22a559;
    stroke-width: 3.5;
    stroke-linecap: round;
    transform-origin: 50px 50px;
}

.modal-success-center {
    fill: #22a559;
}

.modal-success-tick {
    stroke: #22a559;
    stroke-width: 2.5;
    stroke-linecap: round;
    opacity: 0.9;
}

.modal-form-success__icon.is-play {
    animation: modal-success-timeline 3.4s ease forwards;
}

.modal-form-success__icon.is-play .modal-success-check-path {
    animation: modal-success-draw-check 1.05s ease forwards;
}

.modal-form-success__icon.is-play .modal-success-check {
    animation: modal-success-check-out 0.55s ease 1.05s forwards;
}

.modal-form-success__icon.is-play .modal-success-clock {
    animation: modal-success-clock-in 0.55s ease 1.05s forwards;
}

.modal-form-success__icon.is-play .modal-success-minute-hand {
    animation: modal-success-minute-spin 1.8s ease-in-out 1.65s 2 forwards;
}

@keyframes modal-success-timeline {
    from { opacity: 1; }
    to { opacity: 1; }
}

@keyframes modal-success-draw-check {
    to { stroke-dashoffset: 0; }
}

@keyframes modal-success-check-out {
    to {
        opacity: 0;
        transform: scale(0.55);
    }
}

@keyframes modal-success-clock-in {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes modal-success-minute-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (min-width: 680px) {
    .modal-form-success__text {
        font-size: 20px;
        line-height: 1.7;
    }

    .modal-form-success__icon {
        width: 136px;
        height: 136px;
    }
}

@media screen and (max-width: 679px) {
    .modal__content-inner.is-form-success .modal__title--tariff {
        padding-right: 14vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    .modal-form-success__icon.is-play,
    .modal-form-success__icon.is-play .modal-success-check-path,
    .modal-form-success__icon.is-play .modal-success-check,
    .modal-form-success__icon.is-play .modal-success-clock,
    .modal-form-success__icon.is-play .modal-success-minute-hand {
        animation-duration: 0.01s !important;
        animation-delay: 0s !important;
        animation-iteration-count: 1 !important;
    }

    .modal-success-check-path {
        stroke-dashoffset: 0;
    }

    .modal-success-check {
        opacity: 0;
    }

    .modal-success-clock {
        opacity: 1;
        transform: scale(1);
    }
}
