@import url('https://fonts.googleapis.com/css?family=Anton&amp;display=swap');
body{
    background: #ffffff;
}

.navbar-top{
    background: #333;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #24243e, #302b63, #333);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #24243e, #302b63, #333); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding-top:10px;
    color:white;
    text-align: center;
}

header h1{
    font-family: 'Anton', sans-serif;
    letter-spacing: 7px;
}
header p{
    color: black;
}

header .header-content{
    padding:15px;
}

header .jald{
    font-size:25px;
}

header .news-daily{
    padding:10px;
    font-size: 20px;
    border-top:1px solid white;
    border-bottom:1px solid white;
    margin-top:20px;
}

.well-box{
    background: white;
    padding-top:10px;
    border-radius: 3px;
}
.update{
    color:white;
}
.shine{
    position: relative;
      font-family: Geneva, sans-serif;
      font-size: 4vw;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: bold;
      background: linear-gradient(90deg, #DC143C, #fff, #000);
      background-repeat: no-repeat;
      background-size: 80%;
      animation: animate 3s infinite;
      -webkit-background-clip: text;
      -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
}
@keyframes animate {
    0% {
    background-position: -500%;
    }
    100% {
    background-position: 500%;
    }
    }
.color-changer{
    animation:myfirst 5s;
    -moz-animation:myfirst 5s infinite; /* Firefox */
    -webkit-animation:myfirst 5s infinite; /* Safari and Chrome */
}


@-moz-keyframes myfirst /* Firefox */ {
    0% {color:green;}
    50% {color:blue;}
    100% {color:violet;}
}

@-webkit-keyframes myfirst /* Safari and Chrome */ {
    0% {color:red;}
    50% {color:orange;}
    100% {color:Purple;}
}

.box{
    background: white;
    display: flow-root;
    border-radius:15px 15px 0px 0px;
}
.last-result_box{
    background: #642B73;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to top, #C6426E, #642B73);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #C6426E, #642B73); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    height:-webkit-fill-available;
    border-radius:15px;
    max-height: 335px;
}

.last-result_box h1{
    font-size: 10vw;
    color: white;
    margin:0px!important;
}
.last-result_box p{
    font-size: 20px;
    color:white;
}
.box .header{
    background: #333;  /* fallback for old browsers */
      /* Chrome 10-25, Safari 5.1-6 */
     /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding:10px;
    color:white;
    text-align: center;
    border-radius:15px 15px 0px 0px;
}

.btn-primary{
    background-color: #333;
}

.wrap{
    white-space:normal;
}

.box ul{
    list-style: none;
    padding-left:0px;
    padding:10px;
    display: flex;
    flex-direction: column;
}

.marginTop{
    margin-top:20px;
}

.box ul li .head{
    float:left;
}
.box ul li .number{
    float:right;
}
.box ul li .number h3{
    margin-top: 4px;
    font-size: 29px;
}

.box .table thead{
    background-color: #ccc;
}

.filter{
    background: #676768;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #676768, #999, #676768);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #676768, #999, #676768); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    display: flow-root;
    padding: 10px;
    color: white;
}

.model{
    position: fixed;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100vh;
    overflow: hidden;
    top: 0px;
}
.model .box{
    background:white;
    max-width:300px;
    margin:0px auto;
    padding:10px;
}
.model .box h3{
    line-height: 31px;
    color: #333;
}

.ads{
    background: #fff;  /* fallback for old browsers */
    margin-top:10px;
    margin-bottom: 10px;
    position: relative;
    border:3px solid red;
}

.ads .tag{
    position: absolute;
    right:0;
    top:0;
    background: black;
    color:white;
    padding:3px;
}

.main{
    display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  height: 100vh;
  height: calc(100vh - 60px);
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}

.plan{
    list-style: none;
}

.plan li{
    text-align: center;
    padding:15px;
}

.mrgnTop{
    margin-top:20px;
}

.last-result_box_mobile{
    display: none;
}

@media(max-width:768px){

    .ads .tag{
        position: absolute;
        right:0;
        bottom:0;
    }
    .main{
        /*//display: none;*/
        text-align: center;
    }
    .last-result_box_mobile{
       /* position: absolute;
        width:100vw;
        left:0;*/
        display: block;
       /* top:0; 
        height:100vh;
        max-height: 100vh;*/
    }
    .last-result_box h1{
        font-size:30vw;
    }
}