/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : May 11, 2022, 11:17:15 AM
    Author     : SALUNII
*/
html, body{
    width:100%;
    height: 100%;
    margin: 0;
}
.custom_container{
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 50px;
    position:relative;
    width: 70%;
    height: 0;
    padding-bottom: 40%;
    background: #4c4c4c;
    border: 10px solid #2c2c2c;
}
.slide_img{
    position: absolute;
    width:100%;
    height: 100%;
    
}
.slide_img img{
    width:100%;
    height:100%;
    
}
#i1,#i2,#i3,#i4,#i5,#i6,#i7,#i8,#i9{
    display: none;
    
}
.text {
  color: #f2f2f2;
  font-size: 30px;
  padding: 8px 12px;
  position: absolute;
  bottom: 30%;
  width: 40%;
  margin-left: 30%;
  margin-right: 20%;
  text-align: center;
  border: none;
  background-color: rgba(0,0,0,0.5);
}


.pre,.nxt{
    width: 12%;
    height: 100%;
    position:absolute;
    top: 0;
    background: rgba(88,88,88, 0.4);
    z-index: 99;
    cursor: pointer;
    
}
.pre{
    left:0;
}
.nxt{
    right:0;
}


.custom_nav{
    width: 100%;
    height: 11px;
    bottom: 8%;
    position: absolute;
    text-align:center;
    z-index: 99;
    
}

.dots{
    top: -5px;
    width: 18px;
    height: 18px;
    margin: 0 4px;
    position: relative;
    border-radius: 50%;
    display: inline-block;
    background: rgba(0,0,0, 0.4);
    
}
.slide_img{
    z-index: -1;
}
#i1:checked ~ #one,
#i2:checked ~ #two,
#i3:checked~ #three,
#i4:checked~ #four,
#i5:checked~ #five,
#i6:checked~ #six,
#i7:checked~ #seven,
#i8:checked~ #eight,
#i9:checked~ #nine{
    z-index: 9;
}
#i1:checked~.custom_nav #dot1,
#i2:checked~.custom_nav #dot2,
#i3:checked~.custom_nav #dot3,
#i4:checked~.custom_nav #dot4,
#i5:checked~.custom_nav #dot5,
#i6:checked~.custom_nav #dot6,
#i7:checked~.custom_nav #dot7,
#i8:checked~.custom_nav #dot8,
#i9:checked~.custom_nav #dot9{
    background: #fff;
}