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

.navbar-top{
    background: #0f0c29;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29); /* 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;
}

.well-box{
    background: white;
    padding-top:10px;
    border-radius: 3px;
}

.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;
}
.box .header{
    background: #0f0c29;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding:10px;
    color:white;
    text-align: center;
    border-radius:5px 5px 0px 0px;
}

.btn-primary{
    background-color: #0f0c29;
}

.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: yellow;
}

.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;
}

@meda(max-width:768px){

    .ads .tag{
        position: absolute;
        right:0;
        bottom:0;
    }
}