/* ---------------------Login pop up------------------- */
.modal-bg{
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s;
}
/* new class to activate the background */
.bg-active{
  visibility: visible;
  opacity: 1;
}



.modal{
  position: fixed;
  top: 160px;
  left: 360px;
  background-color: seashell;
  width: 30%;
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
}
.modal button{
  padding: 10px 30px;
  background-color: skyblue;
  color:white ;
  border: none;
  cursor: pointer;
}
.modal span{
  position: relative;
  bottom: 170px;
  left: 180px;
  font-weight: bold;
  cursor: pointer;
}
.modal h2{
  margin-top: 10px;
  margin-bottom: 10px;
}
#Username,
#Password{
  padding: 7px;
  margin: 5px;
  border: none;

}
.modal button{
  margin-top: 15px;
}
/* Media queries */


/* -----------------------Message Pop Up----------------------- */




/* -----------------------------------CART------------------------------ */
.h1{
  position: relative;
  top: 80px;
  text-align: center;
  padding: 20px;
}
.BtnContainer{
 padding: 50px;
} 
.checkOut{
  position: relative;
  right:75px;
  float: right;
  bottom: 70px; 
  cursor: pointer;
 }
.checkOut button{
  padding: 5px 90px 5px 90px;
  border-radius: 10px;
  border: none;

}

.LogOut{
  position: relative;

  /* left: 75px;  */
   float: left;
  /* bottom: 140px;  */
  cursor: pointer;
}
.LogOut button{
  position: relative;
  padding: 5px 10px 5px 10px;
  bottom: 5px;
  border-radius: 10px;
  border: none;
  background-color: rgb(252, 203, 146);
}

.product-quantity{
  margin: 15px 0px 0px 0px;
  text-align: center;
}
.product-quantity .minus-btn{
  padding: 10px;
  margin: 5px;
  border: none;
  border-radius: 5px;
}
.product-quantity .plus-btn{
  padding: 10px;
  margin: 5px;
  border: none;
  border-radius: 5px;
}
.product-quantity input{
  padding: 10px;
  margin: 5px;
  width: 100px;
  border: none;
  border-radius: 5px;
}
.box-body{
  padding: 60px;
  
}
.table-responsive{
  border-style:solid;
  border-color: tomato;
}
.btn-info{
  border: none;
  padding: 120px;
}
.cusScroll{
  border-style: solid;
  border-color: rgb(121, 121, 121);
}
 strong{
  /* padding: 0px 10px 0px 10px; */
  position: relative;
  left: 315px;
  bottom: 100px;
  font-size: 30px;
}


/* -------------------------Success Popup------------------------------- */
.popup .overlay {
  position:fixed;
  top:0px;
  left:0px;
  width:100vw;
  height:100vh;
  background:rgba(0,0,0,0.7);
  z-index:1;
  display:none;
}
 
.popup .content {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%) scale(0);
  background:#fff;
  width:95%;
  max-width:500px;
  height:250px;
  z-index:2;
  text-align:center;
  padding:20px;
  box-sizing:border-box;
  font-family:"Open Sans",sans-serif;
}
 
.popup .close-btn {
  cursor:pointer;
  position:absolute;
  right:20px;
  top:20px;
  width:30px;
  height:30px;
  background:#222;
  color:#fff;
  font-size:25px;
  font-weight:600;
  line-height:30px;
  text-align:center;
  border-radius:50%;
}
 
.popup.active .overlay {
  display:block;
}
 
.popup.active .content {
  transition:all 300ms ease-in-out;
  transform:translate(-50%,-50%) scale(1);
}
/* -------------------------Unsuccessful Popup------------------------------- */
.popup2 .overlay2 {
  position:fixed;
  top:0px;
  left:0px;
  width:100vw;
  height:100vh;
  background:rgba(0,0,0,0.7);
  z-index:1;
  display:none;
}
 
.popup2 .content2 {
  position:absolute;
  top:30%;
  left:50%;
  transform:translate(-50%,-50%) scale(0);
  background:#fff;
  width:95%;
  max-width:500px;
  height:250px;
  z-index:2;
  text-align:center;
  padding:20px;
  box-sizing:border-box;
  font-family:"Open Sans",sans-serif;
}
 
.popup2 .close-btn2 {
  cursor:pointer;
  position:absolute;
  right:20px;
  top:20px;
  width:30px;
  height:30px;
  background:#222;
  color:#fff;
  font-size:25px;
  font-weight:600;
  line-height:30px;
  text-align:center;
  border-radius:50%;
}
 
.popup2.active2 .overlay2 {
  display:block;
}
 
.popup2.active2 .content2 {
  transition:all 300ms ease-in-out;
  transform:translate(-50%,-50%) scale(1);
}

/* -------------------------PayStack Popup------------------------------- */

/* new class to activate the background */
/* .bg-active{
  visibility: visible;
  opacity: 1;
} */
#paymentForm{
  position: fixed;
  top: 10rem;
  left: 50rem;
  background-color: rgb(255, 214, 184);
  width: 30%;
  height: 55%;
  display: flex;
  text-align: center;
  flex-direction: column;
  padding: 20px;
  display: none;
}
#paymentForm h1{
  padding: 10px;
}
.form-group input{
  margin: 8px;
  border-radius: 10px;
  border: none;
}
#paymentForm span{
  position: relative;
  bottom: 158px;
  left: 60px;
  font-weight: bold;
  cursor: pointer;
}


.form-submit button{
  padding: 10px 30px;
  background-color: skyblue;
  color:white ;
  border: none;
  cursor: pointer;
}
.form-cancel span{
  font-size: 25px;
  color:black ;
  border: none;
  cursor: pointer;
  margin: 15px;
}
.form-cancel{
  position: relative;
  bottom: 190px;
  left: 130px;
}
#paymentForm.active3{
  display:block;
}
/* -----------------------------------Media Query------------------------------- */
@media only screen and (max-width: 1024px){
  #paymentForm{
  position: fixed;
  top: 15rem;
  left: 30rem;
  background-color: rgb(255, 214, 184);
  width: 40%;
  height: 70%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  display: none;
  }
  .form-cancel{
    position: relative;
    bottom: 190px;
    left: 110px;
  }
  .LogOut{
    position: relative;
    top: 3px;
    left: 20px;
    margin: 5px;
  }
  .modal span{
    position: relative;
    bottom: 170px;
    left: 120px;
    font-weight: bold;
    cursor: pointer;
  }
  strong{
    /* padding: 0px 10px 0px 10px; */
    position: relative;
    left: 475px;
    bottom: 100px;
    font-size: 30px;
  }
 .nav-item{
   font-size: 12px;
   position: relative;
   left: 20px;
 }
 
 .cart-total-title{
   position: relative;
  right: 200px;
 }
 .form-submit button{
   position: relative;
  padding: 10px 30px;
  background-color: skyblue;
  color:rgb(0, 0, 0) ;
  border: none;
  cursor: pointer;
  left: 140px;
}
 
}
@media only screen and (max-width: 768px){
  .cart-icon{
    position: relative;
    bottom: 50px;
    left: 630px;
    /* text-align: right; */
    width: 30px;
    margin: 0px;

    /* bottom: 60px; */
  }
  .hamburger{
    position: relative;
    left: 360px;
    bottom: 100px;
    text-align: center;
    width: 40px;
    margin: 4px;
    padding: 5px;
  }
  #paymentForm{
    position: fixed;
  top: 15rem;
  left: 30rem;
  background-color: rgb(255, 214, 184);
  width: 50%;
  height: 70%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  display: none;
  }
  .form-cancel{
    position: relative;
    bottom: 190px;
    left: 80px;
  }
  .LogOut{
    position: relative;
    top: 3px;
    left: 20px;
    margin: 5px;
  }
  strong{
    /* padding: 0px 10px 0px 10px; */
    position: relative;
    left: 355px;
    bottom: 45px;
    font-size: 30px;
  }
  .checkOut button{
    position: relative;
    top:1px ;
    left: 60px;
  }
    .top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(253, 188, 104);
    padding: 1rem 1.6rem;
  }
  .box-body{
    padding: 40px;
    
  }
  .top-nav .logo {
    color: rgb(0, 0, 0);
  }

  .top-nav .close {
    color: rgb(0, 0, 0);
    font-size: 5rem;
    padding: 1rem;
    cursor: pointer;
    
  }
  .bx-x{
   color: black;
  }
 
  .modal{
    position: fixed;
  top: 160px;
  left: 220px;
    width: 330px;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  #Username, 
  #Password{
    padding: 7px 70px 7px 10px;
    margin: 11px ;
    border: none;
  }
  .modal span{
    position: relative;
    bottom: 198px;
    left: 120px;
    font-weight: bold;
    cursor: pointer;
  }
  .LogOut{
    
    position: relative;
    /* left: 75px;  */
     /* float: left; */
    /* bottom: 140px;  */
    cursor: pointer;
    margin: 15px;
    
  }
  .LogOut button{
    position: relative;
    padding: 5px 20px 5px 20px;
    border-radius: 10px;
    border: none;
    right: 840px;
    top: 25px;
  }
  .nav-list .nav-item{
    margin: 10px;
  }
  .nav-list .nav-item{
    height: 25px;
  }

}

@media only screen and (max-width: 425px){
  .cart-icon{
    position: relative;
    bottom: 50px;
    left: 360px;
    /* text-align: right; */
    width: 30px;
    margin: 0px;

    /* bottom: 60px; */
  }
  .hamburger{
    position: relative;
    left: 200px;
    bottom: 100px;
    text-align: center;
    width: 40px;
    margin: 4px;
    padding: 5px;
  }
  #paymentForm{
    position: fixed;
  top: 15rem;
  left: 10rem;
  background-color: rgb(255, 214, 184);
  width: 65%;
  height: 60%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  display: none;
  }
  #paymentForm h1{
    position: relative;
    bottom: 20px;
    /* padding: 10px; */
    font-size: 20px;
  }
  .form-group label{
    font-size: 12px;
  }
  .form-group input{
    width: 120px;
  }
  .form-cancel{
    position: relative;
    bottom: 170px;
    left: -40px;
  }
  .form-submit button{
    position: relative;
   padding: 5px 30px;
   background-color: skyblue;
   color:rgb(0, 0, 0) ;
   border: none;
   cursor: pointer;
   left: 65px;
 }
  .LogOut{
    position: relative;
    top: 3px;
    left: 20px;
    margin: 5px;
  }
  .h1{
    position: relative;
    top: 0px;
    bottom: 100px;
    padding: 21px;
    margin: 20px;
    font-size: 22px;
  }
  strong{
    /* padding: 0px 10px 0px 10px; */
    position: relative;
    left: 95px;
    bottom: 45px;
    font-size: 30px;
  }
  .checkOut button{
    position: relative;
    top:1px ;
    left: 40px;
  }
    .top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(253, 188, 104);
    padding: 1rem 1.6rem;
  }
  .box-body{
    padding: 10px;
    
  }
  .top-nav .logo {
    color: #fff;
  }

  .top-nav .close {
    color: #fff;
    font-size: 3rem;
    padding: 1rem;
    cursor: pointer;
  }
  .modal{
    position: fixed;
  top: 160px;
  left: 50px;
    width: 330px;
    height: 260px;
    display: flex;
   
  }
  
  #Username, 
  #Password{
    padding: 7px 70px 7px 10px;
    margin: 11px ;
    border: none;
  }
  .modal span{
    position: relative;
    bottom: 198px;
    left: 120px;
    font-weight: bold;
    cursor: pointer;
  }
  .LogOut{
    
    position: relative;
    /* left: 75px;  */
     /* float: left; */
    /* bottom: 140px;  */
    cursor: pointer;
    margin: 15px;
    
  }
  .LogOut button{
    position: relative;
    padding: 5px 20px 5px 20px;
    border-radius: 10px;
    border: none;
    right: 840px;
    top: 25px;
  }
  .nav-list .nav-item{
    margin: 10px;
  }
}
@media only screen and (max-width: 375px){
  .cart-icon{
    position: relative;
    bottom: 50px;
    left: 310px;
    /* text-align: right; */
    width: 30px;
    margin: 0px;

    /* bottom: 60px; */
  }
  .modal{
    position: fixed;
  top: 160px;
  left: 20px;
    width: 330px;
    height: 260px;
    display: flex;
   
  }
 
  .hamburger{
    position: relative;
    left: 170px;
    bottom: 100px;
    text-align: center;
    width: 40px;
    margin: 4px;
    padding: 5px;
  }
  #paymentForm{
    position: fixed;
  top: 15rem;
  left: 5rem;
  background-color: rgb(255, 214, 184);
  width: 70%;
  height: 60%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  display: none;
  }
  #paymentForm h1{
    position: relative;
    bottom: 20px;
    /* padding: 10px; */
    font-size: 20px;
  }
  .form-group label{
    font-size: 12px;
  }
  .form-group input{
    width: 120px;
  }
  .form-cancel{
    position: relative;
    bottom: 170px;
    left: -40px;
  }
  .form-submit button{
    position: relative;
   padding: 5px 30px;
   background-color: skyblue;
   color:rgb(0, 0, 0) ;
   border: none;
   cursor: pointer;
   left: 65px;
 }
  strong{
    /* padding: 0px 10px 0px 10px; */
    position: relative;
    left: 65px;
    bottom: 45px;
    font-size: 30px;
  }
  .checkOut button{
    position: relative;
    top:1px ;
    left: 70px;
  }
}
@media only screen and (max-width: 320px){
  .cart-icon{
    position: relative;
    bottom: 50px;
    left: 270px;
    /* text-align: right; */
    width: 30px;
    margin: 0px;

    /* bottom: 60px; */
  }
  .hamburger{
    position: relative;
    left: 140px;
    bottom: 100px;
    text-align: center;
    width: 40px;
    margin: 4px;
    padding: 5px;
  }
  .modal{
    position: fixed;
  top: 160px;
  left: 15px;
    width: 290px;
    height: 260px;
    display: flex;
   
  }
  .modal span{
    position: relative;
    bottom: 210px;
    left: 120px;
    font-weight: bold;
    cursor: pointer;
  }

  #paymentForm{
    position: fixed;
  top: 15rem;
  left: 2rem;
  background-color: rgb(255, 214, 184);
  width: 86%;
  height: 60%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  display: none;
  }
  #paymentForm h1{
    position: relative;
    bottom: 20px;
    /* padding: 10px; */
    font-size: 20px;
  }
  .form-group label{
    font-size: 12px;
  }
  .form-group input{
    width: 120px;
  }
  .form-cancel{
    position: relative;
    bottom: 170px;
    left: -40px;
  }
  .form-submit button{
    position: relative;
   padding: 5px 30px;
   background-color: skyblue;
   color:rgb(0, 0, 0) ;
   border: none;
   cursor: pointer;
   left: 65px;
 }
 .checkOut button{
  position: relative;
  top:1px ;
  left: 120px;
}
}

 

 

/* .table>tbody>tr>td, 
.table>tfoot>tr>td{
    vertical-align: middle;
}
@media screen and (max-width: 600px) {
    table#cart tbody td .form-control{
		width:20%;
		display: inline !important;
	}
	.actions .btn{
		width:36%;
		margin:1.5em 0;
	}
	
	.actions .btn-info{
		float:left;
	}
	.actions .btn-danger{
		float:right;
	}
	
	table#cart thead { display: none; }
	table#cart tbody td { display: block; padding: .6rem; min-width:320px;}
	table#cart tbody tr td:first-child { background: #333; color: #fff; }
	table#cart tbody td:before {
		content: attr(data-th); font-weight: bold;
		display: inline-block; width: 8rem;
	}
	
	
	
	table#cart tfoot td{display:block; }
	table#cart tfoot td .btn{display:block;}
	
}

.con{
  margin-top: 100px;
  margin-bottom: 100px;
} */



/* 

.section-header {
    font-family: "Metal Mania";
    font-weight: normal;
    color: #333;
    text-align: center;
    font-size: 2.5em;
}




.btn {
    text-align: center;
    vertical-align: middle;
    padding: .67em .67em;
    cursor: pointer;
}

.btn-header {
    margin: .5em 15% 2em 15%;
    color: white;
    border: 2px solid #2D9CDB;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 0;
    font-size: 1.5em;
    font-weight: lighter;
    padding-left: 2em;
    padding-right: 2em;
}

.btn-header:hover {
    background-color: rgba(255, 255, 255, .3);
}

.btn-play {
    display: block;
    margin: 0 auto;
    color: #2D9CDB;
    font-size: 4em;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 0;
    text-align: center;
}

.btn-primary {
    color: white;
    background-color: #56CCF2;
    border: none;
    border-radius: .3em;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #2D9CDB;
}

.tour-row {
    border-bottom: 1px solid black;
    padding-bottom: 1em;
    margin-bottom: 1em;
}

.tour-row:last-child {
    border: none;
}

.tour-item {
    display: inline-block;
    padding-right: .5em;
}

.tour-date {
    color: #555;
    width: 11%;
    font-weight: bold;
}

.tour-city {
    width: 24%;
}

.tour-arena {
    width: 42%;
}

.tour-btn {
    max-width: 19%;
}

.shop-item {
    margin: 30px;
}

.shop-item-title {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.shop-item-image {
    height: 250px;
}

.shop-item-details {
    display: flex;
    align-items: center;
    padding: 5px;
}

.shop-item-price {
    flex-grow: 1;
    color: #333;
}

.shop-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.cart-header {
    font-weight: bold;
    font-size: 1.25em;
    color: #333;
}

.cart-column {
    display: flex;
    align-items: center;
    border-bottom: 1px solid black;
    margin-right: 1.5em;
    padding-bottom: 10px;
    margin-top: 10px;
}

.cart-row {
    display: flex;
}

.cart-item {
    width: 45%;
}

.cart-price {
    width: 20%;
    font-size: 1.2em;
    color: #333;
}

.cart-quantity {
    width: 35%;
}

.cart-item-title {
    color: #333;
    margin-left: .5em;
    font-size: 1.2em;
}

.cart-item-image {
    width: 75px;
    height: auto;
    border-radius: 10px;
}

.btn-danger {
    color: white;
    background-color: #EB5757;
    border: none;
    border-radius: .3em;
    font-weight: bold;
}

.btn-danger:hover {
    background-color: #CC4C4C;
}

.cart-quantity-input {
    height: 34px;
    width: 50px;
    border-radius: 5px;
    border: 1px solid #56CCF2;
    background-color: #eee;
    color: #333;
    padding: 0;
    text-align: center;
    font-size: 1.2em;
    margin-right: 25px;
}

.cart-row:last-child {
    border-bottom: 1px solid black;
}

.cart-row:last-child .cart-column {
    border: none;
}

.cart-total {
    text-align: end;
    margin-top: 10px;
    margin-right: 10px;
}

.cart-total-title {
    font-weight: bold;
    font-size: 1.5em;
    color: black;
    margin-right: 20px;
}

.cart-total-price {
    color: #333;
    font-size: 1.1em;
}

.btn-purchase {
    display: block;
    margin: 40px auto 80px auto;
    font-size: 1.75em;
}

/* .container{
    display:flex;
    justify-content: center;
    flex-wrap: wrap;

} */
/* .add-cart{
    position: absolute;
    width: 100%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    cursor: pointer;
    text-align: center;
}
.image:hover .cart1,
.image:hover .cart2,
.image:hover .cart3,
.image:hover .cart4{
    bottom: 50px;
    opacity: 1;
    padding: 10px;
    text-decoration: none;
} */ 



/*----------------------------------------------*/
/*----------------------------------------------*/
 /* .shopping-cart {
    width: 750px;
    height: 423px;
    margin: 80px auto;
    background: #FFFFFF;
    box-shadow: 1px 2px 3px 0px rgba(0,0,0,0.10);
    border-radius: 6px;
   
    display: flex;
    flex-direction: column;
  }
  .title {
    height: 60px;
    border-bottom: 1px solid #E1E8EE;
    padding: 20px 30px;
    color: #5E6977;
    font-size: 18px;
    font-weight: 400;
  }
   
  .item {
    padding: 20px 30px;
    height: 120px;
    display: flex;
  }
   
  .item:nth-child(3) {
    border-top:  1px solid #E1E8EE;
    border-bottom:  1px solid #E1E8EE;
  }
  .buttons {
    position: relative;
    padding-top: 30px;
    margin-right: 60px;
  }
  .delete-btn,
  .like-btn {
    display: inline-block;
    Cursor: pointer;
  }
  .delete-btn {
    width: 18px;
    height: 17px;
    background: url(&amp;quot;delete-icn.svg&amp;quot;) no-repeat center;
  }
   
  .like-btn {
    position: absolute;
    top: 9px;
    left: 15px;
    background: url('twitter-heart.png');
    width: 60px;
    height: 60px;
    background-size: 2900%;
    background-repeat: no-repeat;
  }
  .is-active {
    animation-name: animate;
    animation-duration: .8s;
    animation-iteration-count: 1;
    animation-timing-function: steps(28);
    animation-fill-mode: forwards;
  }
   
  @keyframes animate {
    0%   { background-position: left;  }
    50%  { background-position: right; }
    100% { background-position: right; }
  }
  .image {
    margin-right: 50px;
  }
   
  
  .description {
    padding-top: 10px;
    margin-right: 60px;
    width: 115px;
  }
   
  .description span {
    display: block;
    font-size: 14px;
    color: #43484D;
    font-weight: 400;
  }
   
  .description span:first-child {
    margin-bottom: 5px;
  }
  .description span:last-child {
    font-weight: 300;
    margin-top: 8px;
    color: #86939E;
  }
  .quantity {
    padding-top: 20px;
    margin-right: 60px;
  }
  .quantity input {
    -webkit-appearance: none;
    border: none;
    text-align: center;
    width: 32px;
    font-size: 16px;
    color: #43484D;
    font-weight: 300;
  } */
   
/* ----------------------------------------------- */
/* ----------------------------------------------- */

  /*button[class*=btn] {
    width: 30px;
    height: 30px;
    background-color: #E1E8EE;
    border-radius: 6px;
    border: none;
    cursor: pointer;
  }
  .minus-btn img {
    margin-bottom: 3px;
  }
  .plus-btn img {
    margin-top: 2px;
  }
   
  button:focus,
  input:focus {
    outline:0;
  }
  .total-price {
    width: 83px;
    padding-top: 27px;
    text-align: center;
    font-size: 16px;
    color: #43484D;
    font-weight: 300;
  }
  @media (max-width: 800px) {
    .shopping-cart {
      width: 100%;
      height: auto;
      overflow: hidden;
    }
    .item {
      height: auto;
      flex-wrap: wrap;
      justify-content: center;
    }
    .image img {
      width: 50%;
    }
    .image,
    .quantity,
    .description {
      width: 100%;
      text-align: center;
      margin: 6px 0;
    }
    .buttons {
      margin-right: 20px;
    }
  } */