:root {
    --darkblue : #1d4e89;
    --green : #7dcfb6;
    --orange : #f79256;
    --blue : #00b2ca;
    --cream : #fbd1a2;
    --darkbluetext : #03254b;
    --bg2 : #e8f4ff;
    --bg : #b4e1ff;
}
.container {
    max-width: 900px;
}
body {
    background: linear-gradient(90deg, var(--bg2), var(--bg));
    color: var(--orange);
    font-weight: 600;
}
.header {
    text-align: center;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--blue);
    margin: 0 auto;
}
.header-logo {
    width: 120px;
}
.menu-item {
    display: inline-block;
    vertical-align: middle;
    background-color: var(--blue);
    color: var(--darkbluetext);
    border-radius: 10px;
}
.menu-item:nth-child(3) {
    background-color: transparent;
    border: 4px solid var(--blue);
    border-radius: 50%;
}
.menu-item a {
    text-decoration: none;
    color: #1d4e89;
    padding: 5px 15px;
    display: block;
}
.menu-item.active {
    background-color: var(--darkbluetext);
    box-shadow: 3px 3px var(--green);
}
.menu-item.active a{
    color: #fff;
}
.banner-img {
    width: 100%;
    max-height: 250px;
}
.center-header {
    margin-top: 25px;
}
.content {
    margin-top: 20px;
}
.news {
    width: 48%;
    background-color: #fff;
    margin-left: 1%;
}
.livedraw-home-box {
    width: 50%;
    margin-top: -50px;
    background-color: #555;   
    border-radius: 15px;
    box-shadow: 5px 5px 10px #000;
}
.news, .livedraw-home-box {
    display: inline-block;
}
.table-livedraw-home {
    text-align: center;
    color: #fff ;
    background-color: #fff;
    border-radius: 15px;
}
.table-livedraw .table th{
    border : none;
}
.livedraw-home-header {
    background-color: #ff0000; 
    border-radius: 15px 15px 0 0;
}
.livedraw-home-content .title:nth-child(1) {
    margin: 0 20px;
    background-color: #1b6a99;
}
.livedraw-home-content .title:nth-child(3) {
    margin: 0 20px;
    background-color: #5ec0f2;
}
.livedraw-home-content .title:nth-child(5) {
    margin: 0 20px;
    background-color: #64b330;
}
.title p {
    margin: 0;
}
.result_num {
    width: 50px;
    margin: 5px 0;
}
.btn-full {
    width: 100%;
    border-radius: 15px;
}
.news {
    vertical-align: top;
    padding: 15px;
}
.news-img {
    border-radius: 15px;
    box-shadow: 5px 5px 10px #000;
    margin-bottom: 10px;
}
.addition {
    padding: 15px;
    background-color: #fff;
}
.addition img {
    border-radius: 15px;
}
.addition a {
    text-decoration: none;
    color: #f79256;
}
.footer {
    background-color: #eaf7ff;
    text-align: center;
    margin-top: 10px;
    padding: 15px 0;
    font-weight: bold;
    box-shadow: 2px 2px 10px #000;
}
.footer p {
    margin : 0;
}

.last_result {
    text-align: center;
    overflow-x: scroll;
}
.last_result::-webkit-scrollbar {
    display: none;
}
.table {
    font-size: 20px;
    min-width: 650px;
}

.livedraw_page .livedraw-home-content .title {
    padding: 10px;
}
.conso-prize, .starter-prize {
    width: 49%;
    display: inline-block;
    margin-top: 20px;
}
.conso-prize .title, .starter-prize .title {
    border-radius: 15px 15px 0 0;
    background-color: var(--darkbluetext)!important;
    border-bottom: 1px solid #fff;
}
.conso-prize .conso-content, .starter-prize .conso-content{
    border-radius: 0 0 15px 15px;
}
.conso-content {
    margin: 0 20px 20px 20px;
    background-color: black;
}
.conso-item {
    display: inline-block;
    width: 49%;
    text-align: center;
    border : 1px solid black;
    margin: 10px auto;
}
.blinking {
    animation: blink 3s ease-in-out infinite;
}
.about_page {
    padding : 15px;
    background-color: #fff;
    box-shadow: 2px 2px 5px #000;
}
.video-box {
    text-align: center;
}
.about_title {
    text-align: center;
}
.contact-info p {
    margin:  0;
}
.menu-small {
    display: none;
}
.menu-small .menu-item:nth-child(3) {
    display: inline-block;
    vertical-align: middle;
    background-color: var(--blue);
    color: var(--darkbluetext);
    border-radius: 10px;
    border : none;
}
.menu-small .menu-item:nth-child(3).active {
    background-color: var(--darkbluetext);
    box-shadow: 3px 3px var(--green);
}

@media screen and (max-width : 815px) {
    .menu-nav .menu-item:nth-child(1) {
        display: none;
    }
    .menu-nav .menu-item:nth-child(2) {
        display: none;
    }
    .menu-nav .menu-item:nth-child(4) {
        display: none;
    }
    .menu-nav .menu-item:nth-child(5) {
        display: none;
    }
    .menu-small {
        display: block;
    }
    .menu-nav {
        padding: 0;
    }
}
@media screen and (max-width : 653px) {
    .menu-small .menu-item {
        width: 45%;
        margin: 5px 1%;
    }
}
@media screen and (max-width : 558px) {
    .conso-prize, .starter-prize {
        width: 100%;
    }
}
@media screen and (max-width : 535px) {
    .livedraw-home-box, .news {
        width: 100%;
        margin-bottom: 20px;
    }
}
@media screen and (max-width : 420px) {
    .menu-small {
        padding: 0;
    }
    .menu-small .menu-item {
        width: 100%;
        margin: 5px 0;
    }
}
@keyframes blink {
    0%{
        background-color: #ff0000;
    }
    50% {
        background-color: #03254b;
    }
}