/*modal*/
.no-scroll{
    overflow:hidden;
}
.customModalContainer {
  position: fixed;
  height: 100vh;
  display: flex;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  align-items: center;
  z-index: 1000;
  padding:50px 10px;
  background-color: rgba(0, 0, 0, 0.8);
  inset: 0;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.customModalContainer.show {
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
}
.customModal {
  max-width: 500px;
  border-radius: 10px;
  border: 1px solid #ddd;
  width: 100%;
  background-color: #fff;
}

.customModalHeader {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
}
.customModalHeader h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--eclipse);
}
.customModalHeader figure img{
   max-width:150px;
   height:auto;
}
.customModalHeader button {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
    transition:.3s ease-in-out;
}
.customModalHeader button svg {
  width: 16px;
  height: 16px;
  fill: var(--default);
}
.customModalHeader button:hover svg {
  fill: var(--eclipse);
}
.custommodal-body {
  padding: 20px;
}
.form-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.modal-input-wrapper {
  width: 100%;
}
.modal-input-wrapper input,.modal-input-wrapper select {
  width: 100%;
  min-height: 25px;
  border-radius: 5px;
  outline: none;
  border: 1px solid #ddd;
  padding: 10px;
}
.modal-input-wrapper textarea {
  max-height: 180px;
  height: 100%;
  border-radius: 5px;
  width: 100%;
  min-height: 100px;
  outline: none;
  border: 1px solid #ddd;
  padding: 10px;
  resize: vertical;
}
.modal-input-wrapper button{
    width:100%;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--default);
    color:white;
    transition:.3s ease-in-out;
    background:var(--default);
    font-size:16px;
    font-weight:500;
    border-radius:27px;
    line-height:1.2;
}
.modal-input-wrapper button:hover{
    color:var(--eclipse);
    background:transparent;
}
#extrasModalContent h2{
    color:var(--eclipse);
    font-size:20px;
    text-align:center;
    margin-bottom:10px;
}
#extrasModalContent img{
    max-width:150px;
     width:100%;
      height:100%;
      margin:0 auto;
    max-height:150px;
}

/*modal*/

/* ---- header ---- */
.header {
  padding: 20px 0;
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  background: var(--white);
  position: absolute;
  top: 0;
  z-index: 800;
     transition: all 0.5s ease-in-out;
}
.header.scrolled {
  position: fixed;
  top: 0;
  padding: 10px 0;
  background: #f9f9f9;
box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
    animation: 500ms ease-in-out 0s normal fadeInDown;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-wrapper .hamburger {
  display: block;
}

.header-wrapper .hamburger button {
  border: none;
  cursor: pointer;
  background: transparent;
  font-size: 20px;
  color: #22282f;
}
.header_logo a {
  display: block;
  width: fit-content;
  height: fit-content;
}
.header_logo a img {
  width: 100%;
  max-width: 150px;
  height: auto;
}
.header_navlink {
  display: none;
}
.header_navlink ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.header_navlink_item {
  position: relative;
  width: fit-content;
}
.header_navlink_item:hover .sub_menu {
  opacity: 1;
  max-height: 500px;
  visibility: visible;
  overflow: visible;
}
.header_navlink_item .sub_menu {
  position: absolute;
  top: 50px;
  max-height: 0;
  z-index:2;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  left: 0;
  flex-direction: column;
  row-gap: 10px;
  min-width: 150px;
  width:fit-content;
  box-shadow: 0px 4px 24px 0px #66666652;
  padding: 10px 0;
  border-radius: 15px;
  background: var(--white);
}
.header_navlink_item .sub_menu li {
  width: 100%;
 padding:0;
 border-radius:0;
}
.header_navlink_item .sub_menu li:hover {
  background: var(--crimsonPink) !important;
}
.header_navlink_item .sub_menu li:hover a{
    background:transparent;
}
.header_navlink_item .sub_menu li a img{
    width:20px;
    height:20px;
    filter: invert(0) brightness(0);

}
.header_navlink_item .sub_menu li a {
    display:flex;
    gap:10px;
    align-items:center;
  width: 100%;
  line-height:30px !important;
  padding: 0 10px !important;
  border-radius: 0;
  padding: 10px 0;
   white-space: nowrap;
}
.header_navlink_item .sub_menu li:hover a {
     color: white;
}
.header_navlink_item .sub_menu li:hover img{
       filter: invert(1) brightness(1);

}

 
.header_navlink ul li  {
    transition: 0.3s ease-in-out;
    border-radius: 11px;
    padding: 15px 5px;
}
.header_navlink ul li a {
  width: fit-content;
  color: var(--coalBlack);
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 500;
  line-height: 21.94px;
  text-align: left;

}
.header_navlink ul li:hover{
  background: #ede9e9;
}
.header_right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header_right .wishlist {
  position: relative;
}

.header_right .wishlist path {
    fill: red;
}

.header_right .wishlist span {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 15px;
  height: 15px;
  font-size: 10px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  background: var(--crimsonPink);
  justify-content: center;
  color: white;
}
.header_right .wishlist a i {
  font-size: 20px;
  color: var(--crimsonPink);
}
.header_right .phone_number {
  display: none;
}
.header_right .phone_number a {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  gap: 10px;
  border-radius: 24px;
  color: var(--white);
  font-size: 13px;
  background: var(--midnightBlue);
}
.header_right .phone_number img {
  width: 16px;
  height: 16px;
  filter: invert(1) brightness(1);
}
.header_right .language {
  display: none;
  position:relative;
}
.header_right .language button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding:0;
  font-size: 18px;
  cursor:pointer;
  border: none;
  color: #646464;
  background: transparent;
}
.header_right .language button i{
    transition:.3s ease-in-out;
}
.header_right .language button i.show{
    transform:rotate(-180deg);
}
.language .language_dropdown{
    position:absolute;
    width:max-content;
    min-width:100px;
    right:0;
    z-index:2;
    background:white;
    padding:20px 0;
    border-radius:10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display:flex;
    flex-direction:column;
    opacity:0;
    max-height:0;
    visibility:hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease, visibility 0.3s ease,margin 0.3s ease;
    overflow:hidden;
    row-gap:10px;
}

.language .language_dropdown.show{
    max-height:300px;
    opacity:1;
    visibility:visible;
    margin-top: 20px;
}
.language .language_dropdown li{
    background:transparent;
    line-height:30px;
    transition:.3s ease-in-out;
}
.language .language_dropdown li:hover{
    background:var(--crimsonPink);
}
.language .language_dropdown li:hover a{
    color:white;
}
.language .language_dropdown li a{
    padding:0 10px;
    display:block;
    width:100%;
   color: var(--coalBlack);
    height:100%;
    text-transform: capitalize;
}

.login_register_area {
    position:relative;
}
.login_register_area  button,.login_register_area  a{
     color:var(--coalBlack);
     transition:.3s ease-in-out;
     display:block;
     text-align:start;
     
     width:100%;
    line-height:30px;
    font-size:16px;
    cursor:pointer;
    background:transparent;
    border:none;
}
.login_register_area .login_reg_drop{
    position:absolute;
    width:max-content;
    min-width:150px;
    right:0;
    z-index:1000;
    background:white;
    padding:10px 0;
    border-radius:10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display:flex;
    flex-direction:column;
    opacity:0;
    max-height:0;
    visibility:hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease, visibility 0.3s ease,margin 0.3s ease;
    overflow:hidden;
    row-gap:10px;
}
.login_register_area .login_reg_drop.show{
    max-height:300px;
    opacity:1;
    visibility:visible;
    margin-top: 20px;
}
.login_register_area .login_reg_drop li button ,.login_register_area .login_reg_drop li a{
    padding:0 10px;
}
.login_register_area .login_reg_drop li:hover{
    background:var(--crimsonPink);
}
.login_register_area .login_reg_drop li:hover button,.login_register_area .login_reg_drop li:hover a{
    color:white;
}
@media screen and (min-width: 992px) {
  .header-wrapper .hamburger {
    display: none;
  }
  .header_navlink {
    display: block;
  }
  .header_right .language {
    display: block;
  }

  .header-wrapper .hamburger {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .header_right .phone_number {
    display: block;
  }
}


.all_sidebar {
	display: block;
}

#mobile_navbar {
	max-width: 100%;
	width: 100%;
	background-color: #fcfcfc;
	z-index: 700;
	padding: 20px 0;
	transition: .3s ease-in-out;
	position: fixed;
	top:80px;
	height: 100%;
	overflow-y: scroll;
	opacity: 0;
	visibility: hidden;
}
#mobile_navbar.active_navbar{
	visibility: visible;
	opacity: 1;
	max-height:70vh;
}
#mobile_navbar::-webkit-scrollbar {
	width: 5px;
  }
  
  #mobile_navbar::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
  }
  
  #mobile_navbar::-webkit-scrollbar-thumb {
	width: 3px;
	height: auto;
	background-color:#ddd;
	border-radius: 4px;
  }
#mobile_navbar .cancel_logo_mobile {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #ddd;
}

.cancel_logo_mobile .logo_mobile {
	margin: 0;
	width: auto;
	height: 45px;
}

.cancel_logo_mobile .logo_mobile a {
	width: 100%;
	height: 100%;
	display: inline-block;
}

.cancel_logo_mobile .logo_mobile a img {
	width: 100%;
	height: 100%;
}

.cancel_logo_mobile .cancel_button {
	width: 25px;
	height: 25px;

}

.cancel_logo_mobile .cancel_button #cancel {
	border: none;
	cursor: pointer;
	background-color: transparent;
}

.cancel_logo_mobile .cancel_button svg {
	width: 100%;
	height: 100%;
	fill:#221f1f;
	opacity: .8;
}

.mobile_list .mobile_nav_item {
	width: 100%;
}

.mobile_list .mobile_nav_item .mobile_nav_links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-weight: bold;
	transition:.3s ease-in-out;
	padding: 10px 0;
    color: var(--midnightBlue);
	border-bottom: 1px solid #ddd;
}
.mobile_list .mobile_nav_item .mobile_nav_links:hover{
    color: var(--crimsonPink);
}
.mobile_nav_item .mobile_nav_submenu {
	padding-left: 20px;
	display: none;
}

.mobile_nav_submenu li a {
	display: block;
	width: 100%;
	padding: 10px 0;
	color: #000;
	font-weight: bold;
	opacity: .8;
	border-bottom: 1px solid #ddd;
}
.language_mob_list{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top: 20px;
}
.language_mob_list li a{
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--midnightBlue);
    width:50px;
    height:50px;
    border-radius:5px;
    text-transform: uppercase;
    border:1px solid var(--midnightBlue);
    background:transparent;
    transition:.3s ease-in-out;
}
.language_mob_list li a:hover{
    background:var(--midnightBlue);
    color:#fff;
}
.overlay{
	position: fixed;
	width: 100%;
	height: 100vh;
inset:0;
	background-color:rgba(0,0,0,0.3);
	z-index: 99;  
	display: none;
}

/* ---- header ---- */