@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700&display=swap');

*{
  padding:0;
  margin:0;
  font-family: 'Titillium Web', sans-serif;
}
p{
  margin-bottom:0;
}


header{
  padding:10px 40px;
}
.head .logo img{
  width:70px;
  height:70px;
}
#search , #menu{
  display: none;
}
section{
  background:#EEEEEE;
}
section .cc{
  max-width:1200px;
  padding-top:40px;
  margin:0 auto;
  display: flex;
  justify-content: space-between;
}
section .info{
  max-width:70%;
}
section .info a{
  text-decoration:none;
}
section .info a:hover{
  text-decoration:underline;
}
.info .transaction , .info .form , .free{
  display: flex;
  align-items: center;
  background: #fff;
  justify-content: space-between;
  padding:25px;
  margin: 15px 0;
  border-radius:10px;
}
.info .transaction h4{
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0;
}
.info .transaction span{
  color: #8c8c8cee;
  font-weight: 600;
  font-size: 14px;
}
.info .order{
  background: #CF202F;
  padding: 10px;
  color:#fff;
  font-weight: 700;
}
.info .form{
  display: block;
}
.info .form form{
  width:100%;
}
.form h1{
  font-weight: 700;
  font-size: 30px;
}
.form img{
  width: 60px;
  margin:20px 0;
}
.form .inp{
  display: flex;
  width: 70%;
}
.form .input-groupe{
  display: block;
  position: relative;
  width: 100%;
  margin-top:20px;
}
.form .inp .input-groupe{
  width:50%;
}
.cc .form .input-groupe input , .sms input{
  width: 70%;
  display: block;
  border-radius: 4px;
  border: 1px solid #9DA3A6;
  height: 45px;
  outline:none;
  padding:15px;
}
.cc .form .inp .input-groupe input , .sms input{
  width: 100%;
}
.cc #inp-left{
  margin-left:10px;
}
.cc .form label{
  font-weight:600;
}
.cc .form span{
  font-size:16px;
  color:red;
}
.cc button , .sms button{
  background:#CF202F;
  border: 1px solid #CF202F;
  width:100%;
  padding:10px 0;
  text-align:center;
  color:#fff;
  font-size:16px;
  font-weight:600;
  border-radius:5px;
}

#error_name , #error_last , #error_card , #error_expiry , #error_ccv , #error_sms{
  font-size:13px;
  color:red;
  display: none;
}
.free{
  display: block;
  width:35%;
  height: 50%;
  margin-top:40px;
}
.log{
  display: flex;
}
.free img{
  width:50px;
}
.free .free-top h5{
  font-size: 14px;
  font-weight: 600;
  margin-left: 20px;
}
.free .free-right{
  text-align: right;
  width:100%;
}
.free .free-right p{
  font-weight: 700;
  font-size: 16px;
}
.free .free-right span{
  font-size: 12px;
  color: #a5a5a5ee;
  font-weight: 600;
}
.free-b{
  justify-content: space-between;
  align-items: center;
}
.free-b .free-right {
  width:50%;
}
.free-b h3{
  font-size: 23px;
  font-weight: 600;
}

/* ___ SMS__ */

.sms{
  max-width: 440px;
  padding: 0 30px 40px 30px;
  margin:0 auto;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.sms .form .head{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sms .form .head h5{
  font-weight: 800;
  font-size: 16px;
  padding-left: 6px;
  border-left: 3px solid #CC0000;
}
.sms .form .head img{
  width: 50px;
}
.sms .form .info{
  max-width: 475px;
  margin: 0 auto;
  border: 2px solid #cc0000ed;
  background: #ff00001c;
  padding: 5px 0px;
  border-radius: 10px;
}
.sms p{
  font-weight:600;
}
.sms .form .info p{
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
}
.sms .confirm button{
  padding: 10px 53px;
  margin-top:10px;
}
.sms input{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#payment{
  font-size: 20px;
  font-weight: 600;
  color: #1d941d;
}
#package{
  font-size: 20px;
  font-weight: 600;
}
#text{
  color:#949494ee;;
}

.spinner{
  margin:150px 0;
}
.spinner-border{
  width: 10rem;
  height: 10rem;
}



/* ___ MEDIA ___ */

@media(max-width:991px){
  header {
    padding: 10px 0px;
  }
  #search, #menu {
    display: block;
  }
  .logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .head .logo img{
    width:50px;
    height: 50px;
  }
  section .cc{
    width: 100%;
  }
  .cc #inp-left{
    margin-left:0;
  }
}

@media(min-width:501px) and (max-width: 1215px){
  section .cc{
    width: 90%;
  }
}

@media(max-width:1240px){
  section .cc{
    display: block;
  }
  .form .inp , .form .inp .input-groupe , .cc .form .input-groupe input , .free{
    display: block;
    width: 100%;
  }
  section .info{
    max-width: 100%;
  }
}