@charset "utf-8";
/* Google Fonts */

@import 'https://fonts.googleapis.com/css?family=Roboto:300,400,700&subset=cyrillic-ext';
/* BSE Icons Font */

@import '/fonts/icons/style.css';
/* CSS dashboard Stylesheets*/

@import url("dashboard.css");
/* CSS plugins */

@import url("plugins.css");
/* CSS form elements */

@import url("form.css");
/* jQuery UI  */

@import url("jquery-ui.min.css");
@import url("jquery-ui.theme.min.css");
@keyframes pulse_animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(2);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation-name: pulse_animation;
    animation-duration: 300ms;
    transform-origin: center center;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.red_dot {
    position: fixed;
    z-index: 1000;
    margin: 70px 20px;
    background-color: red;
    border: 1px solid white;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.ticker-warning {
    width: 100%;
    height: 0px;
    transition: height 0.5s;
    transition-timing-function: ease-out;
}

.footer-brands {
    width: 100%;
    text-align: center;
    padding: 20px 0 40px;
    white-space: nowrap;
}

.footer-brands a {
    margin: 0 15px;
}

.footer-brands img {
    height: 30px;
}

.speech-box {
    display: none;
    width: auto;
    border-radius: 8px;
    margin: 50px auto;
    background: #FF7700;
    padding: 10px 20px;
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: 400;
    position: absolute;
    right: 100%;
    top: 0px;
    z-index: 100;
    white-space: nowrap;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.7);
}

.speech-box:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 10px solid #FF7700;
    border-right: 10px solid transparent;
    border-top: 10px solid #FF7700;
    border-bottom: 10px solid transparent;
    right: -19px;
    top: 6px;
}

.new_widget_flash_arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #FF7700;
    border-bottom: 14px solid transparent;
    animation: blinker 0.5s linear infinite;
    z-index: 10;
}

.widget-top-banner {
    display: flex;
    margin: 10px auto 0px;
    justify-content: space-evenly;
    align-items: center;
    overflow: hidden;
    max-width: 960px;
}

.widget-top-banner img {
    height: 60px;
    margin: 20px;
}

.widget-top-banner .message {
    margin: 20px;
    font-size: 24px;
    color: white;
}

@media (max-width: 980px) {
    .widget-top-banner {
        margin: 10px 5px 0px;
    }
}

@media (max-width: 640px) {
    .widget-top-banner .message {
        font-size: 20px;
    }
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}