@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?03092024_2");
/* 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);
    }
}

/* DB Venture Network page */

.DBVN .icons-view-row {
    width: 100%;
    height: auto;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin: 40px 0;
}

.DBVN .icons-view-row .container {
    width: 100%;
    height: 50px;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    margin: 20px;
}

.DBVN .icons-view-row .container img {
    height: 100%;
}

.DBVN .icons-view-row .container .label {
    font-family: inherit;
    font-size: 1.6em;
    font-weight: 800;
    margin-left: 10px;
}

.DBVN table {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.9em;
}

.DBVN td, th {
    border: 1px solid #b2b2b2;
    text-align: left;
    padding: 8px;
}

.DBVN .table-legend {
    font-size: small;
    margin: 5px;
}

.DBVN .table-legend div {
    margin-left: 10px;
    text-indent: -10px;
}

.DBVN form {
    padding: 0 10px;
    max-width: 500px;
}

.DBVN form textarea {
    min-height: 90px;
    resize: vertical;
}

.DBVN .input-file {
    font-size: small;
}

.DBVN .bn-submit {
    margin: 20px 0;
    cursor: pointer;
}

.DBVN th {
    background-color: #ffeedb;
}

/* END > DB Venture Network page */

.equity-day-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    margin: 20px;
}

.equity-day-container span {
    margin: 20px;
    width: 190px;
    aspect-ratio: 5 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MODAL ====================================================================================================*/

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-container {
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 100%;
    background-color: #fefefe;
    margin: 20px;
    padding: 20px;
    border-radius: 8px;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 0 30px #505050;
}

.modal-content img {
    height: 60px;
    margin: 20px;
}

.modal-message {
    padding: 20px;
    font-size: 22px;
}

@media all and (max-width: 480px) {
    .modal-message {
        padding: 10px;
        font-size: 16px;
    }
}

/* MODAL END ====================================================================================================*/

.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 {
    position: relative;
    width: 100%;
    height: 0px;
    overflow: hidden;
    transition: height 0.5s;
    transition-timing-function: ease-out;
}

.ticker-warning a {
    text-decoration: underline;
    color: #ffff66;
}

.ticker-warning .message {
    position: absolute;
    white-space: nowrap;
    color: #ffff66;
    top: 6px;
    font-size: 14px;
}

.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;
    border-radius: 4px;
}

.widget-top-banner img {
    height: 80px;
    margin: 10px;
}

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

/* Footer ====================================================================================================== */

footer {
    color: #ffffff;
    min-height: 135px;
    min-width: 320px;
}

.footerWrap {
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 20px 65px;
    max-width: 1700px;
    margin: 0 auto;
}

.footer-brands {
    width: 100%;
    height: auto;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    padding-bottom: 20px;
}

.footer-brands .left-right {
    width: 100%;
    height: auto;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}

.footer-brands .left-right .label {
    width: 100%;
    padding: 0 0 20px;
}

.footer-brands .left-right .logos-container {
    width: 100%;
    height: auto;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

.footer-brands .left-right .logos-container .logo {
    height: 50px;
    padding: 10px;
}

.footer-brands .left-right .logos-container img {
    height: 100%;
}

.footer-brands .left .logos-container {
    justify-content: flex-start;
    padding-right: 30px;
}

.footer-brands .right .logos-container {
    justify-content: flex-end;
    padding-left: 30px;
}

.footer-brands .right .label {
    text-align: right;
}

.footerSocial {
    margin: 10px;
}

.footerSocial .bse-icons {
    margin-right: 5px;
}

/* ============================================================================================================= */

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

@media (max-width: 640px) {
    .widget-top-banner .message {
        font-size: 20px;
    }
    .DBVN .icons-view-row {
        flex-direction: column;
    }
    .footerWrap {
        padding: 20px 15px;
    }
}

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