/* Theming */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");



:root{
    --white: #ffffff;  /* #f9f9f9; */
    --black: #36383F;
    --grey: #85888C;
}

/* Reset */
 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

 }

 html {
  height: 100%; 
 }

 body{
    background-color: var(--white);
    font-family: "Poppins", sans-serif;
    height: 100%; 
 }

 h4 {
  font-weght: bold;
  font-size: 1.25rem;
 }

/*
body {
  background-color: #0c0c0c;
  overflow: hidden;
}

*/

 a { text-decoration: none; }
 a:hover, a:visited, a:link, a:active
 {
    text-decoration: none;
 }

 ul { list-style: none; }

/* Header */
 .header{
    background-color: var(--black);
    box-shadow: 1px 1px 5px 0px var(--grey); 
/*    position: relative; */
    position: fixed;
    top: 0;
    width: 100%;
    margin: auto;
    z-index:1000;
 }

 .main{
    background-color: var(--white);
    top: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 1320px;
 }

/* Logo */
 .logo{
    margin-top: 10px;
    margin-left: 20px;
    width:200px;
    vertical-align: baseline;
 }

 .cart {
    float:right;
    margin-top: 10px;
    margin-right: 20px;
    width: 25px;
 }

 .spacer {
    margin-top:70px;
 }

 .spacer1 {
    margin-top:103px;
 }



 .subicon {
  text-shadow: none;
  transition: all 40ms ease;
  position: absolute;
  top: 4px;
  right: 77px;
  background: red;
  color: white;
  box-shadow: 0 0 4px rgba(41, 41, 41, 0.405);
  width: 18px;
  height: 18px;
  border-radius: 14px;
  font-size: 0.7em;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  border: 1px solid #ff8080;
}


/* Nav menu */
 .nav{
    width: 100%;
    height: 100%;
    max-height: 0;
    display: block;
/*
    position: fixed;
    transition: max-height .5s ease-out; 
*/
    background-color: var(--black);
    overflow: hidden;
/*    z-index:1000; */
 }

.menu a{
    display: block;
    margin-top:6px;
    padding: 6px 0 6px 30px;
    color: var(--white);
}

.menu a:hover{
    background-color: var(--grey);
    text-decoration: none;
}

.nav_menu-item {
/*  display: inline-block; 
  position: relative;
*/
}

.nav_menu-item:hover {
/*  background-color: #9b59b6; */
}

.nav_menu-item:hover .nav_submenu {
  display: block;
}

.nav_submenu {
  font-weight: 300;
  text-transform: none;
  display: none;
  position: fixed;
  width: 165px;
  padding: 5px 0px 0px 5px;
  background-color: #ffffff;
  border-radius: 5px;
  border-style:solid;
  border-width:thin;
}

.nav_submenu-item a {
 color:black;
 padding: 5px 0 5px 20px;
 margin-left: -5px;
}

/* Menu Icon */

.hamb{
    cursor: pointer;
    float: right;
    padding: 25px 20px;
}

.hamb-line {
    background: var(--white);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;    
}

.hamb-line::before,
.hamb-line::after{
    background: var(--white);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-line::before{
    top: 5px;
}

.hamb-line::after{
    top: -5px;
}


.side-menu {
    display: none;
}

/* Toggle menu icon */

.side-menu:checked ~ nav{
    max-height: 100%;
}

.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;

}

.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}


.slider {
  position: relative;
  width: 100%;
  height: 60%;
  overflow: hidden;
  margin-top:49px;

}

#slides {
  position: relative;
  width: 100%;
  height: 100%;
  padding-left: 0;
}

#slides .slide {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
}
#slides .slide .title {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 20px;
  z-index: 2;
  padding-top: 0px;
  font-family: "Reem Kufi", sans-serif;
  font-size: 9vw;
  color: white;
  overflow: hidden;
}
#slides .slide .title .title-text {
  display: block;
  transform: translateY(1.2em);
  transition: transform 1s ease-in-out;
}
#slides .slide .slide-partial {
  position: absolute;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: transform 1s ease-in-out;
}
#slides .slide .slide-partial img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s ease-in-out;
}
#slides .slide .slide-left {
  top: 0;
  left: 0;
  transform: translateX(-100%);
}
#slides .slide .slide-left img {
  top: 0;
  right: 0;
  -o-object-position: 100% 50%;
     object-position: 100% 50%;
  transform: translateX(50%);
}
#slides .slide .slide-right {
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition-delay: 0.2s;
}
#slides .slide .slide-right img {
  top: 0;
  left: 0;
  -o-object-position: 0% 50%;
     object-position: 0% 50%;
  transition-delay: 0.2s;
  transform: translateX(-50%);
}
#slides .slide.active .title .title-text {
  transform: translate(0);
  transition-delay: 0.3s;
}
#slides .slide.active .slide-partial, #slides .slide.active .slide-partial img {
  transform: translateX(0);
}

#slide-select {
  position: absolute;
  bottom: 2px;
  left: 10px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-around;
/*  font-family: "Reem Kufi", sans-serif; */
  font-size: 1.5em;
  font-weight: lighter;
  color: white;
}
#slide-select li {
  position: relative;
  cursor: pointer;
  margin: 0 5px;
  color: #ffffff;
}
#slide-select li.prev:hover {
  transform: translateX(-2px);
}
#slide-select li.next:hover {
  transform: translateX(2px);
}
#slide-select .selector {
  height: 14px;
  width: 14px;
  border: 2px solid white;
  background-color: transparent;
  transition: background-color 0.5s ease-in-out;
}
#slide-select .selector.current {
  background-color: white;
}


 .product {
/*   margin-left: 5%; */
/*   margin-top: 40px;*/
   border: 1px solid #ddd;
/*   float: left;*/
/*   height: 430px;*/
/*   width: 260px;*/
   position: relative;
   height: 100%;
 }

 .p_img {
   text-align: center;
 } 

 .p_content {
   padding: 15px;
 }

 .price {
  font-weight: 600;
  color: #444;
 }



 .wt {
  color: #0f0f0f;
 }

 div.required .col-form-label:before, div.required .form-label:before {
  content: "* ";
  color: #F00;
  font-weight: bold;
 }

#alert {
  z-index: 9999;
  position: fixed;
  top: 30%;
  left: 50%;
  width: 350px;
  margin-left: -175px;
}
@media (min-width: 992px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1140px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1320px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
#alert .alert {
  margin-bottom: 15px;
}
#alert .alert-primary {
  box-shadow: 0 0 0 5px rgb(var(--bs-primary-rgb), 0.1);
}
#alert .alert-secondary {
  box-shadow: 0 0 0 5px rgb(var(--bs-secondary-rgb), 0.1);
}
#alert .alert-success {
  box-shadow: 0 0 0 5px rgb(var(--bs-success-rgb), 0.1);
}
#alert .alert-warning {
  box-shadow: 0 0 0 5px rgb(var(--bs-warning-rgb), 0.1);
}
#alert .alert-danger {
  box-shadow: 0 0 0 5px rgb(var(--bs-danger-rgb), 0.1);
}
#alert .alert-info {
  box-shadow: 0 0 0 5px rgb(var(--bs-info-rgb), 0.1);
}
#alert .alert-light {
  box-shadow: 0 0 0 5px rgb(var(--bs-light-rgb), 0.1);
}
#alert .alert-dark {
  box-shadow: 0 0 0 5px rgb(var(--bs-dark-rgb), 0.1);
}


legend {
  padding: 7px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}


/* Responsiveness */

@media (min-width: 800px) {

    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
        margin-right: 50px;
    }

    .menu li{
        float: left;
    }

    .menu a:hover{
        background-color: transparent;
        color: var(--grey);
        
    }
    
    .hamb{
        display: none;
    }

    .subicon {
        right:14px;
    }

    .input-group {
	width: 60%;
    }
    
}

