@import url(../../lib/bootstrap/css/bootstrap.min.css);

 /* @import url(include/variables.css); */
@import url(include/fonts.css);
/*@import url(include/icons.css);
@import url(include/common.css);
@import url(include/buttons.css);
@import url(include/menu.css);
@import url(include/fields.css);
@import url(include/footer.css);
@import url(include/header.css);
@import url(include/layout.css);
@import url(include/responsive.css); */


body{
    background-color: #FFF;
    color: #222423;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    word-wrap: break-word;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #222423;
    color: #FFF;
    padding: 10px 15px;
    z-index: 99;
}
.header .menu {
    display: flex;
    gap: 5px;
    margin: 0 !important;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header .menu li{
    flex-grow: 1;
    flex-shrink: 0;
}
.header .menu li a{
    display: flex;
    font-size: 16px;
    color: #FFF;
    font-weight: 600;
    border-radius: 8px;
    height: 40px;
    padding: 5px 10px;
    align-items: center;
    text-align: center;
    text-decoration: none;
    justify-content: center;
}
.header .menu li a:hover{
    background-color: rgba(255, 255, 255, 0.05);
}
.header .menu li.active a{
    background-color: #44693D;
}

.page{
    margin-top: 40px;

}
.top-banner{
    background-color: #222423;
    padding: 25px 0;
    color: #FFF;
}
.top-banner svg{
    width: 100px;
    height: 100px;
    margin-top: -18px;
    margin-bottom: -18px;
}
.top-banner .logo{
    font-size: 7vw;
    line-height: 1;
    text-align: center;
    margin-top: 17px;
    margin-bottom: 17px;
}
.top-banner .logo strong{
    font-weight: 700;
}
.top-banner .timer{
    text-align: center;
}
.top-banner .timer .badge{
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 6px;
    background-color: #44693D;
    color: #FFF;
}

.result .box-result{
    padding: 0;
    border-bottom: 1px solid #222423;
    text-align: center;
}
.result .box-result strong{
    display: block;
    font-size: 22px;
    font-weight: 800;
}
.result .box-result span{
    display: block;
    font-size: 64px;
    text-align: center;
    line-height: 1;
    color: #44693D;
    font-weight: 800 !important;
}
.result .box-result img{
    max-width: 70px;
}

.blink {
    animation: blinker 1s linear infinite;
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }

.table-responsive{

}
.table-responsive table th{
    background-color: #facc15;
    color: #FFF;
    padding: 5px 10px;
    border: none;
    font-size: 16px;
    white-space: nowrap;
    color: #222423;
}
.table-responsive table th:first-child{
    background-color: #6b22a9;
    color: #FFF;
}
.table>:not(:first-child){
    border-top: 0 !important;
}
.table-responsive table  td.table-border-right{
    border-right: 2px solid #222423;
}
.table-responsive table td{
    padding: 5px 10px;
    border: 0;
    border-bottom: 1px solid #222423;
    vertical-align: middle;
}
.table-responsive table td.sticky-left strong{
    color: #222423;
    font-size: 20px;
}
.table-responsive table td.sticky-left span{
    font-size: 13px;
    display: block;
    margin-top: -3px;
    color: #d25a27;
    font-weight: bold;
}
.table-responsive table td.number{
    font-weight: 700;
    font-size: 20px;
}

.table-responsive table tr:nth-child(even) td{
    background-color: #F8F9F7;
}
.table-responsive table tr:nth-child(odd) td{
    background-color: #FFF;
}

.ads1{
    border: 1px solid #D9CB71;
    padding: 20px;
    background-color: #FEFBE8;
}

.ads2{
    border: 1px solid #E37F13;
    padding: 20px;
    background-color: #E4F0C3;
}

.ads3{
    border: 1px solid #D64228;
    padding: 20px;
    background-color: #FDDED8;
}

.ads4{
    border: 1px solid #6BDCD3;
    padding: 20px;
    background-color: #E5FDFB;
}

.ads5{
    border: 1px solid #44693D;
    padding: 20px;
    background-color: #44693D;
    color: #FFF;
}

.ads6{
    border: 1px solid #D9CB71;
    padding: 20px;
    background-color: #FEFBE8;
}

.ads7{
    border: 1px solid #44693D;
    padding: 20px;
    background-color: #44693D;
    color: #FFF;
}

.title{
    font-weight: 600;
    font-size: 24px;
}

.btn-primary, .btn-primary:hover, .btn-primary:focus{
    background-color: #44693D;
    border-color: #44693D;
}

.sticky-left{
    position: sticky;
    left: 0;
    z-index: 9;
}