@import url("https://fonts.googleapis.com/css2?family=Mooli&display=swap");

:root {
  --dark_gray: #3c4859;
  --pink: #df1c49;
  --cream: #fff6e9;
}
/* 
.min-100 {
  min-height: 100px;
}

.min-150 {
  min-height: 150px;
}

.min-175 {
  min-height: 175px;
}

.min-200 {
  min-height: 200px;
}

.min-250 {
  min-height: 250px;
}

.min-275 {
  min-height: 275px;
}

.min-300 {
  min-height: 300px;
}

.min-350 {
  min-height: 350px;
}

.min-375 {
  min-height: 375px;
}

.min-400 {
  min-height: 400px;
}

.min-450 {
  min-height: 450px;
}

.min-475 {
  min-height: 475px;
} */
.note-btn-group button{
	min-width:auto !important;
}
body {
  font-family: "Mooli", sans-serif;
  background-color: var(--cream);
}

.color_heading {
  color: var(--heading__color__base, #000);
}

.container-fluid {
  padding: 0px !important;
}

section {
  padding-left: 15px;
  padding-right: 15px;
}

.w-100 {
  width: 100%;
}

.text-align-center {
  text-align: center;
}

header {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

header .logo {
  width: 75%;
}

header .col-lg-2 {
  text-align: center;
}

header .col-lg-5 ul {
  list-style: none;
}

header .col-lg-5 ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  margin-bottom: 0px !important;
  padding:0px;
}

header .col-lg-5 ul li a {
  text-decoration: none;
  color: black;
  font-family: "Mooli", sans-serif;
}

.row.innerBlock.choose_gender {
	min-height:275px;
}

.category .row .col-lg-6 {
  height: 300px;
  /* [1.1] Set it as per your need */
  overflow: hidden;
}

.category .row .col-lg-3 img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  height: 450px;
}

.category .row .col-lg-3 {
  padding: 0px !important;
  overflow: hidden;
}

.category {
  text-align: center;
}

.category h2 {
  margin-top: 50px;
  margin-bottom: 50px;
  color: var(--dark_gray);
}

.category .row .col-lg-3:hover img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
  overflow: hidden;
}

.header_title {
  padding: 15px;
}

.header_title::before {
  content: "";
  display: inline-block;
  width: 6rem;
  height: 2px;
  background: var(--pink);
  margin-right: 3rem;
  margin-bottom: 10px;
}

.header_title::after {
  content: "";
  display: inline-block;
  width: 6rem;
  height: 2px;
  background: var(--pink);
  margin-left: 3rem;
  margin-bottom: 10px;
}

button {
  background-color: var(--pink);
  border: none;
  color: #ffe3b7;
  padding: 10px;
  min-width: 150px;
  font-family: "Mooli", sans-serif;
}

.category button {
  margin-top: 30px;
  margin-bottom: 50px;
}

ul li a {
  /* position: relative;
  display: block;
  padding: 4px 0;  
  color: var(--dark_gray) !important;
  text-decoration: none;
  
  transition: 0.5s;
  font-family: 'Mooli', sans-serif; */
}

ul li a::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}

ul li a:hover {
  /* color: #95a5a6; */
}

ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Y CSS */

ul li a {
  position: relative;
  display: block;
  padding: 4px 0;
  color: #df1c49 !important;
  text-decoration: none;
  /* text-transform: uppercase; */
  transition: 0.5s;
  font-weight: bold;
  font-family: "Mooli", sans-serif;
}

ul li a::before {
  content: attr(data-text);
  color: #2b5596;
  display: block;
  position: absolute;
  text-transform: capitalize;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  padding: 4px 0;
  animation: 0.5s right-leave;
  transition: all 0.5s ease-in-out;
  background-color: var(--cream);
}

ul li a:hover::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: 0.5s right-enter;
}

@keyframes right-enter {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes right-leave {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  100% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}

/* Y CSS END */

.products h2 {
  margin-top: 10px;
  margin-bottom: 50px;
  color: var(--dark_gray);
}

.products .row .col-lg-3 {
  /* padding:0px !Important; */
  overflow: hidden;
  margin-bottom: 25px;
}

.products .row .col-lg-3 img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  height: 300px;
  object-position: top center;
}

.products .row .col-lg-3:hover img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
  overflow: hidden;
}

.product_detail_block {
  text-align: left !important;
  margin-top: 10px;
}

.product_detail_block h3 {
  font-size: 19px;
  margin-bottom: 0px !important;
  color: var(--dark_gray) !important;
  margin-top:10px;
}

section h2 {
  text-align: center;
}

.product_detail_block p {
  font-size: 17px;
  /* margin-bottom:0px !Important; */
  color: var(--pink) !important;
  margin-top:5px;
}

.product_detail_block button {
  width: 100%;
}

.about_platform {
  width: 98%;
  margin: 0px auto !important;
}

footer {
  background-color: black;
  padding: 25px;
  text-align: center;
  color: white;
}

.social_icons svg {
  width: 32px;
  margin-right: 10px;
  margin-left: 10px;
}

footer .row .col-lg-12 {
  padding-top: 40px;
}

footer .row .col-lg-12 img {
  width: 35px;
  margin-bottom: 25px;
}

.mobile {
  display: none !important;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 99999999999;
  top: 0;
  left: 0;
  background-color: #fdedce;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  text-align: center;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #f6ad23;
  display: block;
  transition: 0.3s;
}

.nav-open span {
  color: #f6ad23;
}

.sidenav a:hover {
  color: #f6ad23;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* PRODUCT CREATE BLOCK */

.create_products {
  padding-top: 60px;
  padding-bottom: 60px;
}

.row.innerBlock {
  width: 60% !important;
  margin: 0px auto !important;
  /* min-height: 275px; */
}

.button_block_common {
  margin-bottom: 35px;
}

.innerBlock_btn {
  width: 60% !important;
  margin: 0px auto !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.choose_gender {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.choose_gender img {
  width: 150px;
  cursor: pointer;
}

.innerBlock_btn button {
  width: 150px;
}

.size {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.choose_size {
  background-color: var(--dark_gray);
  color: white;
  padding: 5px;
  width: auto;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.choose_size.active {
  background-color: var(--pink);
  color: white;
}

.innerBlock .col-md-6 {
  margin-bottom: 20px;
}
/* ANIMATION CSS */

.page {
  transition: all 0.5s ease-in-out;
  
  flex-direction: column;
  margin: auto;
  top: 0;
  left: 0;
}

	
.fromRight {
  animation: fromRight 0.5s ease-out;
}

@keyframes fromRight {
  from {
	transform: translate3d(100%, 0, 0);
  }
}
.toRight {
  animation: toRight 0.5s ease-out;
}

@keyframes toRight {
  to {
	transform: translate3d(100%, 0, 0);
  }
}
.fromLeft {
  animation: fromLeft 0.5s ease-out;
}

@keyframes fromLeft {
  from {
	transform: translate3d(-100%, 0, 0);
  }
}
.toLeft {
  animation: toLeft 0.5s ease-out;
}

@keyframes toLeft {
  to {
	transform: translate3d(-100%, 0, 0);
  }
}

.page:first-child {
	 position: unset;
}
.page {
  width: 100%;
  height: 100%;
  position: absolute;
  text-align: left;
  top: 0;
  left: 0;
  overflow: hidden;
  visibility: hidden;
 
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  will-change: transform;
  
}
.page--current {
  visibility: visible;
  z-index: 1;
}
/* ANIMATION CSS END */

.error {
  border: 2px solid red;
}
.error_text{
	color:red;
	font-size:12px;
}
.next_submit {
	display:none;
}
.fa {
	color:var(--pink);
}
button .fa {
	color:white;
}
.product_detail_block button {
	width:49% !Important;
}
.product_detail_block a {
	text-decoration:none;
}
table tr th{
	background-color:var(--dark_gray) !important;
	color:white !important;
}

.product_list .row {
	min-height:375px;
}
.preview_layout {
	cursor:pointer;
	color:var(--pink);
}
.product_list {
  padding-top: 50px;
}
.alert{
	width: 100%;
	  text-align: center;
	  margin: 0px auto;
	 background-color:var(--dark_gray);
	 color:white;
	 font-size:18px;
}


.product_details .col-lg-7 {
	text-align:center;
	display:flex;
	flex-direction:row-reverse;
}

.product_details .col-lg-5 h1{
	font-size:28px;
}
.product_details .row {
	margin-top:40px;
}

.product_details .col-lg-5 {
	text-align:left;
	padding-left:80px;
}
.product_details .col-lg-5 .product_title{
	color:var(--dark_gray);
}
.product_details .col-lg-5 .price{
	color:var(--pink);
	margin-top:30px;
	font-weight:bold;
	font-size:18px;
}
.product_details .col-lg-7 .main_image{
	text-align:right;
	
}
.main_image img {
	/* width:75% !important; */
}
.sizes_show {
	display:flex;
	align-items:center;
	gap:25px;
	
}

.ages_show {
	display:flex;
	align-items:center;
	gap:25px;
	
}
.sizess {
	margin-top:25px;
}
.inquiry_now {
	margin-top:35px;
	width:100%;
	font-weight:bold;
}
.sizes_show span{
	background-color:var(--pink);
	padding: 10px;
  color: white;
  font-weight: bold;
  cursor:pointer;
}

.ages_show span{
	background-color:var(--pink);
	padding: 10px;
  color: white;
  font-weight: bold;
  cursor:pointer;
}
.product_modal .modal-header button {
	background-color: transparent;
  border: none;
  color: var(--pink);  
  min-width: 0px;
  font-size: 30px;
  padding: 0px;
  position: relative;
  top: -18px;
}
span.active {
  background-color: var(--dark_gray);
}
.product_details .alert{
	/* width:100% !important; */
}
.modal-header {
	border-bottom:0px !important;
}
.modal-footer {
	border-top:0px !important;
}
.product_details_main {
	padding-top:50px;
}
.show_sub_images {
  display: flex;
  align-items: start;
  margin-top:0px;
  margin-bottom:0px;
  justify-content: start;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom:50px;
}

.show_sub_images .sub_img_video {
	width:90% !Important;
	height: 243px;
	object-fit: cover;
	margin-left: 0px;
	margin-right: 0px;
	object-position: top center;
  
}
.product_detail_block_front {
	position:relative;
}
.product_detail_block_front .fa {
	position:absolute;
	right: 20px;
  top: 7px;
  font-size: 25px;
  z-index: 999999;
  cursor:pointer;
}
.product_detail_block_front .fa-solid {
	position:absolute;
	right: 20px;
  top: 7px;
  font-size: 25px;
  z-index: 999999;
  cursor:pointer;
  color:white;
}
.product_details_main .col-lg-12 h2{
	text-align:left;
}
.show_description {
	margin-bottom:25px;
}
.show_description h2 {
	margin-bottom:2px;
	font-size:16px;
	font-weight:bold;
	color:var(--pink);
}
.show_description p {
	margin-bottom:0px !Important;
	color:var(--dark_gray);
	/* padding-left:10px; */
}
.note_text {
	font-size: 12px;
    font-weight: 700;
}
.product_modal .modal-footer {
	justify-content:center;
}
.note-editable {
	height:300px !important;
}
.filter_row {
	text-align:left !Important;
	margin-bottom:25px;
}
.filter_row button {
	min-width: auto !important;
	padding: 6px !important;
	width: 100%;
	font-weight: bold;
}
.filter_row h3 {
	font-size:18px !Important;
	cursor:pointer;
}
.filters .form-control {
	border-radius:0px !Important;
	border:1px solid var(--dark_gray);
	
}

.filter_row .gender label {
	display:block;
	padding-left:15px;
}

.filter_row .mode label {
	display:block;
	padding-left:15px;
}


.filter_row .condition label {
	display:block;
	padding-left:15px;
}
.price_range  {
	display:flex;
	gap:10px;
}
.close_mobile {
	display:none;
	position: absolute;
  right: 28px;
  top: 0;
  font-weight: bold;
  color: var(--pink);
  font-size: 17px;
  cursor: pointer;
  transition: 0.5s;
}
.filter_on_mobile {
	display:none;
}
.text_pages .row {
	width:80%;
	margin:0px auto;
}
.footer_menus {
	background-color:var(--dark_gray);
	min-height:300px;
}
.footer_menus ul {
	list-style:none;
}
.footer_menus .row {
	padding-top:25px;
	text-align:center;
	margin-bottom:30px;
	
}
.footer_menus .row h2 {
	color:white !important;
}
.footer_menus .row .col-md-3 a {
	color:white !important;
	text-decoration:none;
}
.footer_menus .row .col-md-3 ul {
	margin-top:20px;
	padding-left:0px;
}
.footer_menus .row .col-md-3 ul li {
	color:white;
	cursor:pointer;
}
.footer_menus .row .col-md-3 ul li a{
	color:white !important;
}
.footer_menus .row .col-md-3 h3 {
	color:white;
	font-size:23px;
	margin-bottom:2px;
}


.product_block_parent .col-lg-3 {
	position:relative;
}
.product_block_parent .col-lg-3 .tags{
	position: absolute;
	z-index: 999;
	width: 55px;
	text-align: center;
}
.product_block_parent .col-lg-3 .tags span{
	background-color:var(--pink);
	color:#FFE3B7;
	font-weight:bold;
	display:inherit;
	font-size: 13px;
}
.product_block_parent .col-lg-3 .tags .tag_condition{
	background-color: #FFE3B7;
	color: var(--pink);
}

.product_block_parent .col-lg-4 {
	position:relative;
}
.product_block_parent .col-lg-4 .tags{
	position: absolute;
	z-index: 999999999;
	width: 55px;
	text-align: center;
}
.product_block_parent .col-lg-4 .tags span{
	background-color:var(--pink);
	color:#FFE3B7;
	font-weight:bold;
	display:inherit;
	font-size: 13px;
}
.product_block_parent .col-lg-4 .tags .tag_condition{
	background-color: #FFE3B7;
	color: var(--pink);
}

/* 28-09-2023 */
.c-variation-outer .c-variation-option{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap: wrap;
}
.c-variation-outer .c-variation-option div{
  display:flex;
  align-items:center;
}

.c-variation-outer input[type="checkbox"],
.c-variation-outer input[type="radio"] {
  width: 20px;
  height: 20px;
  background-color: var(--bs-white);
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  outline: none !important;
  margin: 0 8px;
  border: 1px solid var(--bs-gray-300);
}
.c-variation-outer input[type="radio"] {
  border-radius: 50%;
}
.c-variation-outer input[type="checkbox"]::after {
  font-family: "FontAwesome";
  position: absolute;
  content: "\f00c";
  font-weight: normal;
  color: var(--bs-white);
  background-color: var(--pink);
  width: 100%;
  height: 100%;
  display: none;
  place-items: center;
  left: 0 !important;
}
.c-variation-outer input[type="radio"]::after {
  content: "";
  background-color: var(--pink);
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
}
.c-variation-outer input[type="checkbox"]:checked::after {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-variation-outer input[type="radio"]:checked::after {
  display: block;
}
/* 28-09-2023 */

.store_title {
	color:var(--pink);
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}
@media (max-width: 995px) {
	.text_pages .row {
		width:97%;
		margin:0px auto
	}
	.close_mobile {
		display:block;
	}
	.filter_row {
		overflow-x: hidden;
		left:0;
		width: 0%;
		position: absolute;
		z-index: 9999;
		background-color: var(--cream);
		transition: 0.5s;
		padding:0px;
		height:100%;
	}
	.filter_on_mobile {
		cursor:pointer;
		display:block;
		text-align: left;
		font-size: 18px;
		margin-bottom: 20px;
	}
	.main_product_list_page .col-md-9 {
		width:100% !important;
	}
	.main_product_list_page .main_row{
		position:relative;
		display:inline-block;
	}
}

@media (max-width:1100px) {
	.row.innerBlock {
		width: 80% !important;
	}
	.row.row.innerBlock_btn {
		width: 80% !important;
	}
}
@media (max-width: 992px) {
	.choose_gender img {
		width:100px;
	}
	
	.innerBlock .col-md-6 {
		width:100% !important;
	}
  .category .row {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .desktop {
    display: none !important;
  }

  .mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .nav-open {
    text-align: right;
  }

  header .logo {
    width: 50% !important;
  }

  .category .row .col-lg-3 img {
    height: auto !important;
  }

  .products .row .col-lg-3 img {
    height: auto !important;
  }
}

@media (max-width: 768px) {
  header {
    min-height: 65px !important;
  }

  section.sliders {
    padding: 0px !important;
  }

  section.category {
    padding: 0px !important;
  }
  .size {
	  flex-wrap:wrap;
	  gap:10px;
  }
  .size span:nth-child(1){
	  width:48%;
	  flex:0 0 auto;
  }
  .size span:nth-child(2){
	  width:48%;
	  flex:0 0 auto;
  }
  
  h1.header_title::after {
    content: initial !important;
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: var(--pink);
    margin-left: 1rem;
    margin-bottom: 10px;
  }

  h1.header_title::before {
    content: initial !important;
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: var(--pink);
    margin-right: 1rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
	.row.innerBlock.choose_gender {
		min-height:180px;
	}	
	.row.innerBlock {
		width: 98% !important;
	  }
	.row.row.innerBlock_btn {
		width: 93% !important;
	}
  header .logo {
    width: 50% !important;
  }

  .category h2 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  .category .row .col-lg-3 img {
    height: auto !important;
  }

  .category button {
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .products h2 {
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .products .row .col-lg-3 img {
    height: auto !important;
  }

  .header_title::after {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: var(--pink);
    margin-left: 1rem;
    margin-bottom: 10px;
  }

  .header_title::before {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: var(--pink);
    margin-right: 1rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 500px) {
	 .choose_gender img {
		width: 70px;
	  }
}
@media (max-width:415px){
	 .choose_gender img {
		width: 50px;
	  }
}
@media (max-width: 400px) {
  header .logo {
    width: 60% !important;
  }

  .header_title::after {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 2px;
    background: var(--pink);
    margin-left: 1rem;
    margin-bottom: 6px;
  }

  .header_title::before {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 2px;
    background: var(--pink);
    margin-right: 1rem;
    margin-bottom: 6px;
  }
  .choose_gender img {
		width: 50px;
	  }
}

@media (max-width:360px){
	 .choose_gender img {
		width: 50px;
	  }
}
