*{
    margin: 0;
    padding: 0;
}

/*Custome ScroolBar*/
::-webkit-scrollbar {
    width: 4px;
  }
  
  /* Track */
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  /* End Here */

body{
    background: url(../images/chuncheonlottery-bg.webp) fixed;
    background-size: 100% 100%;
    color: white;
}

.container-header{
    width: 100%;
    background: linear-gradient(to bottom, #0300a7, #830000);
    box-shadow: 0px 3px 6px black;
}

.header{
    text-align: center;
}

.logo{
    width: 500px;
    height: 165px;
}

.navbar{
    background: #550000;
    padding: 10px 0px;
}

.navbar a{
    color: white;
    font-weight: bolder;
    text-decoration: none;
    margin: 0px 10px;
}

.container-content{
    width: 100%;
}

.full{
    width: 100%;
    padding: 10px;
    font-weight: bolder;
}

.container-content .container-first{
    text-align: center;
    display: flex;
}

.header-full{
    padding: 10px 0px;
    background: linear-gradient(to bottom, #ff0000, #000000);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border: 1px solid white;
}

.box{
    background: linear-gradient(to bottom, #910000, #020088);
    border: 1px solid white;
    margin: 0px 0px 10px 0px;
    font-weight: bolder;
}

.box .header-box{
    padding: 10px 0px;
}

.tabs{
    max-height: 360px;
    overflow: auto;
}

.table-container table{
    width: 100%;
}

.table-container table tr td{
    padding: 20px 0px;
}

.bola{
    padding:15px 20px;
    background: linear-gradient(to bottom, #0400ff, #000000);
    border-radius: 50%;
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0px 0px 6px 2px white;
}

.container-article{
    margin: 20px 10px;
    background: linear-gradient(to bottom, #910000, #0300a7);
    border: 1px solid white;
}

.container-article .article{
    padding: 10px ;

}

.container-article .article h1, h2{
    text-align: center;
}
.container-article .article p{
    text-align: justify;
    margin: 12px 0px;
}

.gif{
    width: 100%;
}

.slider{
    overflow: hidden;
  }
  
  .slides{
    width: 500%;
    display: flex;
    text-align: center;
  }
  
  .slides input{
    display: none;
  }
  
  .slide{
    width: 20%;
    transition: 2s;
  }
  
  /* CSS for manual carousel */
  
  .center{
    text-align: center;
  }
  
  .navigation-manual{
    position: absolute;
    display: flex;
    margin-top: -2.32%;
    margin-left: 31%;
    text-align: center;
    justify-content: center;
  }
  
  .banner{
    width: 99%;
  }
  
  .manual-btn{
    border: 2px solid #82ff93;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
    display: none;
  }
  
  .manual-btn:not(:last-child){
    margin-right: 40px;
  }
  
  .manual-btn:hover{
    background: #82ff93;
  }
  
  #radio1:checked ~ .first{
    margin-left: 0;
  }
  
  #radio2:checked ~ .first{
    margin-left: -20%;
  }
  #radio3:checked ~ .first{
    margin-left: -40%;
  }
  
  
  /* CSS Navigation auto */
  
  .navigation-auto{
    position: absolute;
    display: flex;
    justify-content: center;
    margin-top: 35%;
    margin-left: 31%;
    display: none;
  }
  
  .navigation-auto div{
    border: 2px solid #82ff93;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
  }
  
  .navigation-auto div:not(:last-child){
    margin-right: 40px;
  }
  
  #radio1:checked ~ .navigation-auto .auto-btn1{
    background: #82ff93;
  }
  #radio2:checked ~ .navigation-auto .auto-btn2{
    background: #82ff93;
  }
  #radio3:checked ~ .navigation-auto .auto-btn2{
    background: #82ff93;
  }

  .container-banner-footer{
    padding: 10px;
  }

  .container-history{
    padding: 10px;
    text-align: center;
  }

  .tabs-history{
    max-height: 500px;
    overflow: auto;
  }
  .history{
    width: 100%;
    border-spacing: 0;
  }

  .history thead th{
    background: linear-gradient(to bottom, #830000, #0300a7);
    padding: 12px 0px;
  }

  .history td{
    padding: 10px 0px;
  }

  .history tr:nth-child(even){
    background: #550000;
  }

  .history tr:nth-child(odd){
    background: #000655;
  }

  .copyright{
    padding: 10px 0px;
    background: linear-gradient(to bottom, #910000, #0300a7);
    text-align: center;
    font-weight: bolder;
  }
  
  @media screen and (max-width:630px) {
        .bola{
            padding: 10px 15px;
        }
  }

  @media screen and (max-width:550px) {
        .bola{
            padding: 5px 10px;
        }
        .full{
            padding: 5px;
        }
        .logo{
            width: 300px;
            height: 100px;
        }
  }

  @media screen and (max-width:450px) {
        .box{
            font-size: 12px;
        }
        .bola{
            padding: 3px 7px;
        }
        .tabs{
            max-height: 340px;
        }
  }