.portal .portal__loader {
    display: none;
    overflow: hidden;
}
.portal .portal__loading .portal__loader {
    display: block;
    padding-bottom: 50px;
}
.portal .portal__loading .portal__info {
    -webkit-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    max-height: 0;
    -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
    overflow: hidden;
}
.portal .portal__loading p, .portal .portal__loading button, .portal .portal__loading .portal__info__image {
    opacity: 0;
}
.loading-text {
    text-align: center;
    margin: auto;
    width: 200px;
    font-family: os-web-text;
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0;
    display: block;
    color: #000;
}

.loading-frames {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 10px auto auto;
    width: 140px;
    max-width: 100%;
}

.loading-frames .loading-frame {
    width: 12px;
    height: 12px;
    background-color: #cad1d8;
    animation-name: bounce_os-loading;
    -o-animation-name: bounce_os-loading;
    -ms-animation-name: bounce_os-loading;
    -webkit-animation-name: bounce_os-loading;
    -moz-animation-name: bounce_os-loading;
    animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    -ms-animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
    border-radius: 12px;
    -o-border-radius: 12px;
    -ms-border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    transform: scale(0.6);
    -o-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
}

.loading-frame-1 {
    animation-delay: .6s;
    -o-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    left: 0px;
}

.loading-frame-2 {
    animation-delay: .75s;
    -o-animation-delay: .75s;
    -ms-animation-delay: .75s;
    -webkit-animation-delay: .75s;
    -moz-animation-delay: .75s;
    left: 25px;
}

.loading-frame-3 {
    animation-delay: .9s;
    -o-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    left: 50px;
}

.loading-frame-4 {
    animation-delay: 1.05s;
    -o-animation-delay: 1.05s;
    -ms-animation-delay: 1.05s;
    -webkit-animation-delay: 1.05s;
    -moz-animation-delay: 1.05s;
    left: 75px;
}

.loading-frame-5 {
    animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    -ms-animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    left: 100px;
}

.loading-frame-6 {
    animation-delay: 1.35s;
    -o-animation-delay: 1.35s;
    -ms-animation-delay: 1.35s;
    -webkit-animation-delay: 1.35s;
    -moz-animation-delay: 1.35s;
    left: 125px;
}

@keyframes bounce_os-loading {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        background-color: #cad1d8;
    }

    33% {
        -webkit-transform: scale(1);
        transform: scale(1);
        background-color: #d81e05;
    }

    100% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        background-color: #cad1d8;
    }
}

@-webkit-keyframes bounce_os-loading {
    0% {
        -webkit-transform: scale(0.6);
        background-color: #cad1d8;
    }

    33% {
        -webkit-transform: scale(1);
        background-color: #d81e05;
    }

    100% {
        -webkit-transform: scale(0.6);
        background-color: #cad1d8;
    }
}

@media only screen and (min-width: 1281px) {
    .portal .portal__loading .portal__loader {
        padding-bottom: 0;
    }
}
