@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --primary-color: #0ec2ff;
  --secondary-color: #ed8628;
  --dark-black: #1f2222;
  --white: #ffffff;
  --lato-font: "Lato", sans-serif;
  --gabrito-font: "Gabarito", sans-serif;
}
.container-fluid {
  max-width: 1800px;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
  display: inline-block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gabarito", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

ul,
ol {
  padding: 0;
  margin: 0;
}
p {
  font-size: 17px;
  font-weight: 400;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-btn {
  font-size: 19px;
  font-family: var(--lato-font);
  font-weight: 500;
  color: var(--white);
  background: linear-gradient(173.72deg, #2dcaff 4.71%, #0095c8 89.41%);
  padding: 20px 20px 20px 40px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  width: max-content;
  transition: border-color 0.3s ease-in-out;
  border-bottom: 4px solid transparent;
  background-clip: padding-box;
}

.site-btn .btn-icon-wrap {
  margin-left: 12px;
  overflow: hidden;
  width: 40px;
  height: 29px;
}
.site-btn .btn-icon-wrap img {
  transition: 0.3s ease-in-out;
}
.site-btn:hover img:first-of-type {
  position: relative;
  transform: translate(24px, -24px);
}
.site-btn img:last-of-type {
  position: relative;
  /* transform: translate(-51px, 18px); */
  transform: translate(-17px, -10px);
  opacity: 0;
}
.site-btn:hover img:last-of-type {
  /* transform: translate(-30px, 0px); */
  transform: translate(0px, -29px);
  opacity: 1;
}
.site-btn:hover {
  border-color: #2f3233;
}

.explore-btn {
  font-size: 18px;
  font-family: var(--lato-font);
  font-weight: 500;
  color: var(--white);
  background: linear-gradient(173.72deg, #2dcaff 4.71%, #0095c8 89.41%);
  padding: 7px 5px 7px 20px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  width: max-content;
  transition: border-color 0.3s ease-in-out;
  border-bottom: 4px solid transparent;
  background-clip: padding-box;
}

.explore-btn .btn-icon-wrap {
  margin-left: 25px;
  overflow: hidden;
  width: 32px;
  height: 32px;
  background-color: var(--white);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.explore-btn .btn-icon-wrap img {
  transition: 0.3s ease-in-out;
  border-radius: 0;
  width: auto;
}
.explore-btn:hover img:first-of-type {
  position: relative;
  transform: translate(24px, -24px);
}
.explore-btn img:last-of-type {
  position: absolute;
  transform: translate(-16px, 18px);
}
.explore-btn:hover img:last-of-type {
  transform: translate(0px, 0px);
}
.explore-btn:hover {
  border-color: #2f3233;
}
.sec-tb-padd {
  padding: 100px 0;
}
/*------Topbar-----*/
.topbar img {
  display: block;
}
.topbar-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  padding: 6px 0;
}
.search-box form {
  position: relative;
}
.search-box form input {
  background-color: #f2f2f3;
  font-size: 17px;
  color: #1f2222;
  border: none;
  outline: none;
  font-weight: 400;
  padding: 10px 40px 10px 20px;
  border-radius: 50px;
  font-family: var(--lato-font);
  width: 100%;
}
.search-box form button {
  border: none;
  border: none;
  background: transparent;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.logo-box,
.menu-icon-box {
  width: 20%;
}
.search-box {
  width: 50%;
}
.logo-box a img{
	max-width: 140px;
	width: 140px;
}
/*---------Desktop Menubar-------------*/
.nav-menu {
  /* padding: 20px 0; */
  position: relative;
  border-top: 1px solid #e8e8e8;
}
.menubar {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.menu {
  text-align: center;
}
.menu > ul {
  display: flex;
  gap: 60px;
}
.menu > ul > li {
  position: relative;
  /* padding: 24px 0; */
}
.menu ul li a {
  font-size: 19px;
  font-weight: 400;
  line-height: 20px;
  color: var(--dark-black);
  /* margin: 0px 18px; */
  padding: 24px 20px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  /* border-bottom: 1px solid #fff; */
  position: relative;
}
.menu > ul > li > a:before {
  content: "";
  width: 0%;
  height: 2px;
  background: #2f3233;
  position: absolute;
  bottom: 100%;
  left: 0;
  transition: all 0.3s ease-in-out;
}
/* .menu > ul > li > a:hover{
    color: var(--primary-color);
} */
.menu > ul > li > a:hover::before,
.menu > ul > li > a.active::before {
  width: 100%;
}
.menu-icon-box ul li a {
  font-size: 17px;
  color: var(--dark-black);
}
.menu-icon-box ul li:last-child a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-icon-box ul {
  text-align: right;
  display: flex;
  gap: 20px;
  flex-direction: row;
  justify-content: flex-end;
}

.submenu {
  width: 200px;
  background: var(--primary-color);
  position: absolute;
  left: 18px;
  top: 100%;
  text-align: left;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.submenu li {
  display: block !important;
}
.have-child > a::after {
  content: "\f107";
  font-family: "FontAwesome";
  position: relative;
  right: -3px;
  top: 53%;
  transition: all 0.3s ease-in-out;
  font-size: 13px;
  transform: translateY(-50%);
}
.menu ul li .submenu li a {
  display: block;
  padding: 6px 15px;
  margin: 0;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.menu ul li .submenu li a:hover {
  background-color: #ffbd33;
  color: var(--dark-black);
}
.menu > ul > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  /* max-height: 200px; */
}

.menu-right-box p {
  font-size: 20px;
  font-family: var(--gabrito-font);
  color: var(--dark-black);
  font-weight: 400;
  padding: 20px 0;
}
.menu-right-box p span {
  color: var(--secondary-color);
}

/*-------Mobile Menubar----------*/
.mobile-toggle {
  position: absolute;
  left: 15px;
  top: 25px;
  display: none;
}

.mobile-toggle span {
  background: var(--primary-color);
  height: 2px;
  display: block;
  width: 27px;
  position: relative;
  transition: all 0.5s;
}
.mobile-toggle span:nth-child(2) {
  margin: 7px 0;
}
.offcanvas {
  background: var(--primary-color);
  max-width: 80%;
}
.offcanvas-header .btn-close {
  color: #000 !important;
  opacity: 0.8;
}
.menu .accordion-item {
  background: transparent;
  border: none;
}
.menu .accordion-button {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: var(--dark-black);
  padding: 3px 0;
  background: transparent;
  box-shadow: none;
  border: none;
  outline: none;
}
.menu .accordion-body {
  padding: 0;
}
.menu .accordion-collapse.collapse.show .submenu {
  visibility: visible;
  opacity: 1;
}

/*-----------Banner-------*/
.hero-banner {
  background-size: cover;
  background-position: center;
  height: 750px;
  position: relative;
}
.scroll-down-txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50px;
}
.banner-left-cont {
  width: 49%;
}
.banner-slider {
  width: 50%;
  max-height: 738px;
}
.banner-left-cont h1 {
  font-weight: 400;
  font-family: var(--gabrito-font);
  font-size: 72px;
  color: var(--dark-black);
  margin: 30px 0 40px;
}
.banner-left-cont h1 span {
  color: var(--secondary-color);
  font-size: 120px;
  position: relative;
}
.banner-left-cont h1 span:after {
  content: "";
  width: 100%;
  height: 22px;
  background-image: url(../images/banner-line-shape.svg);
  display: inline-block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  bottom: -2px;
}
.star-wrap {
  display: flex;
  gap: 3px;
}
.rating-txt p {
  font-size: 17px;
  font-family: var(--lato-font);
  font-weight: 400;
  color: var(--dark-black);
  margin-bottom: 2px;
}
.ratting-no p {
  font-size: 25px;
  font-weight: 700;
  color: var(--white);
  padding: 15px 12px;
  background-color: #ed8628;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  line-height: 25px;
}
.review-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #f2f2f2;
  background-color: #ffffff73;
  backdrop-filter: blur(30px);
  box-shadow: 1.2px 1.2px 30px 0px #00000014;
  padding: 12px;
  border-radius: 8px;
  width: fit-content;
}
.banner-left-cont > p {
  font-size: 18px;
  font-weight: 500;
  color: #2f3233;
  display: inline-block;
  line-height: 1;
  padding: 13px 30px;
  background-color: #e3f8ff;
  border: 1px solid #afeaff;
  border-radius: 12px;
}
.banner-img img {
  width: 100%;
}
.banner-wrap {
  display: flex;
  align-items: center;
  min-height: 750px;
}
.banner-swiper-pagination .swiper-pagination-bullet {
  background-color: #ed8628;
  position: relative;
  margin: 11px 0 !important;
}
.banner-swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  min-width: 18px;
  min-height: 18px;
  display: inline-block;
  background-color: #ed872833;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
}
.banner-swiper-pagination {
  right: 110px !important;
  /* width: auto !important; */
}
.banner-btn-wrap {
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
}

/*---Our services-----*/
.our-services {
  position: relative;
  overflow: hidden;
}
.left-graphics {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.our-services .container {
  position: relative;
  z-index: 2;
}
.sec-title p {
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.sec-title h2 {
  font-size: 45px;
  color: var(--dark-black);
  font-weight: 400;
  border-bottom: 1px solid #e1e4e9;
  padding-bottom: 25px;
  margin-bottom: 50px;
}
.category-box {
  background: linear-gradient(213.96deg, #dcf6ff 4.69%, #ffeea0 98.43%);
  box-shadow: 0px 0px 40px 0px #0000001a;
  border-radius: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.category-cont {
  padding: 40px 40px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.category-txt h4 a {
  font-size: 36px;
  font-weight: 400;
  color: var(--dark-black);
  margin-bottom: 10px;
  display: inline-block;
  max-width: 235px;
}
.category-txt p {
  font-size: 18px;
  font-weight: 400;
  color: #515151;
}
.category-img img {
  border-radius: 30px;
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}
.category-img {
  position: relative;
}
.category-img .explore-btn {
  position: absolute;
  bottom: 40px;
  left: 45px;
}

/*---choice-sec-----*/
.choice-title {
  text-align: center;
}
.choice-sec {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
  /* overflow: hidden; */
}
.choice-title h2 {
  font-size: 130px;
  color: var(--dark-black);
  font-weight: 400;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}
.choice-title h2 span {
  color: #b5bec2;
}
.choice-title h2::before {
  content: "";
  width: 210px;
  height: 210px;
  background-image: url(../images/choice-left-shadow.svg);
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: -22px;
  left: -80px;
  z-index: -1;
}
.choice-title h2::after {
  content: "";
  width: 210px;
  height: 210px;
  background-image: url(../images/choice-right-shadow.svg);
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: -26px;
  right: -96px;
  z-index: -1;
}
.choice-title h3 {
  font-size: 70px;
  font-weight: 400;
  color: var(--dark-black);
  display: block;
}
.choice-icon-box {
  position: relative;
  margin-bottom: 30px;
}
.choice-icon-box img {
  width: 60px;
}
.choice-icon-box::before {
  content: "";
  width: 50px;
  height: 50px;
  background-color: #e3f8ff;
  border-radius: 50px;
  display: inline-block;
  position: absolute;
  left: -12px;
  top: -19px;
  z-index: -1;
}
.choice-cont h5 {
  font-size: 28px;
  font-weight: 400;
  color: var(--dark-black);
  margin-bottom: 20px;
}
.choice-cont p {
  font-size: 19px;
  font-weight: 400;
  color: #515151;
  line-height: 30px;
}
.choice-box-wrap {
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
  margin-top: 80px;
  margin-left: -45px;
  margin-right: -45px;
}
.choice-box {
  width: calc(100% / 4);
  border-right: 1px solid #e1e4e9;
  padding-right: 45px;
  padding-left: 45px;
}
.choice-box-wrap .choice-box:last-of-type {
  /* padding-right: 0; */
  border: none;
  margin-right: 0;
}

/* Marquee Container */
.marquee-container {
  display: flex;
  overflow: hidden;
  gap: 0px 2vw;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  gap: 0px 2vw;
  animation: marquee 30s linear infinite;
}

.marquee-content span {
  display: flex;
  align-items: center;
  font-size: 46px;
  font-weight: 600;
  background: linear-gradient(173.72deg, #2dcaff 4.71%, #0095c8 89.41%);
  color: transparent;
  background-clip: text;
  padding-left: 40px;
  line-height: 1.15;
}
.marquee-content span::before {
  content: "";
  width: 38px;
  height: 38px;
  background-size: contain;
  background-image: url("../images/print.svg");
  position: relative;
  left: -40px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*---testimonial----*/
.testimonial-cont > p {
  font-size: 19px;
  font-weight: 400;
  color: #515151;
  line-height: 30px;
}
.testimonail-wrap {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.tstimonial-user h6 {
  font-family: var(--lato-font);
  font-weight: 500;
  font-size: 19px;
  color: var(--dark-black);
  margin-bottom: 6px;
}
.tstimonial-user p {
  font-size: 17px;
  font-weight: 500;
  color: #515151;
}
.tstimonial-user {
  border-top: 1px solid #e1e4e9;
  margin-top: 20px;
  padding-top: 20px;
}
.testimonial-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.testimonial-slider .swiper-wrapper .swiper-slide {
  height: auto;
  display: flex;
}
.testimonial-cont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.home-right-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.testimonial-sec .container {
  z-index: 9;
  position: relative;
}
.scroll-slider-sec {
  background-color: #ecfbff;
  padding: 30px 0;
  position: relative;
  z-index: 9;
}

/*-----footer-------*/
.footer {
  background-color: var(--secondary-color);
  position: relative;
  z-index: 9;
}
.footer-top {
  padding: 100px 0;
}
.footer-left a img {
  margin-bottom: 50px;
}
.footer-left ul {
  display: flex;
  gap: 50px;
}
.footer-left ul li a {
  font-size: 19px;
  font-family: var(--lato-font);
  font-weight: 500;
  color: var(--white);
}
.footer-right h2 {
  font-size: 54px;
  font-weight: 400;
  line-height: 70px;
  color: var(--white);
  text-align: right;
}
.footer-right form input {
  border: 1px solid #ffffff;
  background: transparent;
  font-size: 19px;
  font-weight: 500;
  padding: 18px 70px 18px 30px;
  border-radius: 50px;
  width: 100%;
  color: #fff;
  outline: none;
}
.footer-right form input::placeholder {
  color: #fff;
}
.footer-right form {
  position: relative;
  margin-top: 30px;
}
.subscribe-btn {
  width: 54px;
  height: 54px;
  background: linear-gradient(173.72deg, #2dcaff 4.71%, #0095c8 89.41%);
  border-radius: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.footer-btm p {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
}
.design-by {
  text-align: right;
}

.footer-btm .row {
  border-top: 1px solid #fff3;
  padding-top: 30px;
  padding-bottom: 30px;
}

/*---------DTF Transfer------------*/
.page-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  height: 450px;
}
.page-header-txt h2 {
  font-size: 72px;
  color: var(--dark-black);
  text-align: center;
}
.elevate-print-cont p,
.elevate-print-cont ul li {
  font-size: 19px;
  font-weight: 400;
  color: #515151;
  line-height: 30px;
}
.elevate-print-cont ul {
  display: flex;
  gap: 12px 20px;
  flex-wrap: wrap;
  margin-left: 20px;
  margin-top: 30px;
  margin-bottom: 50px;
}
.elevate-print-cont ul li {
  width: calc((100% - 20px) / 2);
  list-style: disc;
  display: list-item;
}
.elevate-print-sec {
  position: relative;
  background-size: cover;
}

.elevate-print-sec .row {
  align-items: center;
  min-height: 740px;
}
.elevate-print-sec .sec-title h2 {
  padding-bottom: 0;
  border: none;
}
.print-tshirt-img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 40% !important;
}

.step-box-cont {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(213.96deg, #dcf6ff 4.69%, #ffeea0 98.43%);
  box-shadow: 0px 0px 10px 0px #00000008;
  border-radius: 30px;
  padding: 50px;
}
.step-box-cont h6 {
  font-size: 22px;
  color: var(--secondary-color);
  font-weight: 400;
}
.step-box-cont h4 {
  font-size: 32px;
  color: var(--dark-black);
  font-weight: 400;
}
.step-box-cont p {
  font-size: 19px;
  color: #515151;
  font-weight: 400;
  line-height: 30px;
}
.step-video video {
  min-height: 400px;
  border-radius: 30px;
  object-fit: cover;
  width: 100%;
}
.step-box-wrap {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.step-process-sec .row .col-md-4:nth-of-type(2) .step-box-wrap {
  flex-direction: column-reverse;
}
.step-process-sec .row .col-md-4:nth-of-type(2) .step-box-wrap .step-box-cont {
  background: linear-gradient(215.51deg, #d6fff4 7.33%, #ffbdd7 93.09%);
}
.step-process-sec .row .col-md-4:nth-of-type(3) .step-box-wrap .step-box-cont {
  background: linear-gradient(215.88deg, #ffe9d4 5.62%, #b5ecff 89.83%);
}
.step-process-sec {
  margin-bottom: 0;
  padding: 100px 0;
}

/*-------single order transfer------------*/
.swiper-thumb-wrap {
  position: relative;
}
.single-product-sec {
  margin: 100px 0;
}

.single-product-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.thumbs-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: #fdfff8;
  box-shadow: 1.17px 1.17px 39.06px 0px #0000001f;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.thumbs-button-prev {
  top: -15px;
}

.thumbs-button-next {
  bottom: -15px;
}
.single-product-wrap .swiper-thumbs {
  width: 160px;
  height: 620px;
}

.single-product-wrap .swiper-thumbs .swiper-slide {
  opacity: 0.8;
  cursor: pointer;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}

.single-product-wrap .swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--secondary-color);
}

.single-product-wrap .swiper-main {
  width: calc(100% - 180px);
  height: 620px;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
}
.single-product-wrap .swiper-main img,
.single-product-wrap .swiper-thumbs img {
  width: 100%;
  height: auto;
  display: block;
}
.single-product-wrap .swiper-main img {
  height: 620px;
  object-fit: contain;
}
.single-product-wrap .swiper-thumbs img {
  height: 143px;
  object-fit: contain;
}

.single-product-detl-header h2 {
  font-size: 45px;
  color: var(--dark-black);
  font-weight: 400;
  margin-bottom: 20px;
}
.single-product-detl-header p {
  font-size: 22px;
  font-weight: 400;
  color: #515151;
}
.single-product-descr {
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 30px 30px 25px;
  margin-top: 40px;
}
.single-product-key-feature {
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 30px 30px 25px;
  margin-top: 20px;
}
.single-product-descr h6,
.single-product-key-feature h6 {
  font-family: var(--lato-font);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}
.single-product-key-feature h6 {
  margin-bottom: 30px;
}
.single-product-descr p {
  font-size: 19px;
  line-height: 30px;
  color: #515151;
}
.single-product-key-feature ul {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.single-product-key-feature ul li {
  width: calc((100% - 30px) / 2);
  font-family: var(--lato-font);
  font-weight: 400;
  font-size: 17px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #515151;
}
/*--related product--*/
.recomended-product-sec {
  margin: 100px 0;
}
.related-product-slider .swiper-wrapper {
  padding: 10px;
}
.related-product-slider .category-box {
  box-shadow: 0px 0px 14px 0px #0000001a;
}
.breadcrumb {
  margin-bottom: 0;
}
.breadcrumb ul li a,
.breadcrumb ul li {
  font-size: 19px;
  font-weight: 400;
  font-family: var(--lato-font);
  font-weight: 400;
  position: relative;
  color: #515151;
}
.breadcrumb ul li a:after {
  content: "/";
  margin: 0 15px;
}

/* custom css */
#sidebar {
  display: none;
}

.xoo-wsc-icon-cart2:before {
  content: " " !important;
  background-image: url(https://moguldesign.elvirainfotech.live/wp-content/themes/Moguldesignlab/theme-assets/images/cart.svg) !important;
  background-size: 26px;
  width: 26px;
  height: 22px;
  display: inline-block;
}

.submenu-toggle {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: baseline;
  position: absolute;
  right: -3px;
  top: 27px;
  font-size: 13px;
}
.menu .dropdown-toggle::after {
  display: none;
}

#gang-sheet-builder-button {
  border-radius: 4px !important;
  padding: 14px !important;
  width: 100% !important;
}

section.breadcrumb-sec {
  padding: 40px 0;
}
.testimonial-icon img {
  max-width: 100px !important;
}

/*-----Sticker-------*/
.sticker-box {
  width: 100%;
}
.sticker-img {
  background-color: #f0f0f0;
  border-radius: 20px;
  text-align: center;
  padding: 20px;
  margin-bottom: 15px;
}
.sticker-card{
	margin-bottom: 25px;
}
.sticker-card a p,
.sticker-card a {
  font-size: 25px;
  font-weight: 400;
  color: #1f2222;
  font-family: var(--gabrito-font);
  text-align: center;
   line-height: 1.3;
}
.sticker-img img {
  width: 100%;
  height: 230px !important;
  object-fit: contain;
}
/*-----varient-----*/
.choose-varient-box {
  margin-top: 20px;
}
.choose-varient-box h6 {
  font-family: var(--lato-font);
  font-size: 20px;
  font-weight: 400;
  /* margin-bottom: 20px; */
}
.choose-varient-box ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.choose-varient-box ul li {
  width: calc((100% - 30px) / 4);
}
.choose-varient-box ul li input[type="radio"] {
  display: none;
}
.choose-varient-box ul li label {
  border: 1px solid #ebebeb;
  border-radius: 12px;
  font-family: var(--lato-font);
  font-size: 19px;
  font-weight: 400;
  padding: 15px 15px;
  cursor: pointer;
  width: 100%;
  text-align: center;
}
.choose-varient-box ul li input[type="radio"]:checked + label {
  background: var(--primary-color);
  color: #fff;
}
.custm_dtf_button {
  width: 100% !important;
  margin-top: 20px;
}
.single-product.postid-131 .recomended-product-sec {
  margin-top: 0;
}

/* .woocommerce div.product form.cart .variations, .single_variation_wrap .woocommerce-variation.single_variation, .single_variation_wrap .quantity, .single-product .woocommerce-tabs.wc-tabs-wrapper{
  display: none !important;
} */
.sticker-grid article {
  width: 100%;
}
.product_cat-stickers .summary.entry-summary.custm_dtf_button {
  display: none !important;
}
.page-template-my-account .woocommerce-order-details h2,
.page-template-my-account .woocommerce-customer-details h2 {
  margin: 20px 0px 20px 0px;
}

/*-----My Account-------*/

.woocommerce-ResetPassword.lost_reset_password p {
  font-size: 20px;
}
.my-account .woocommerce-Addresses {
  margin-top: 30px;
}
.my-account .woocommerce-MyAccount-content form .form-row .input-text,
.my-account
  .woocommerce-MyAccount-content
  form
  .form-row
  .select2-container
  .select2-selection {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.select2-container .select2-results li {
  width: 100% !important;
}
.my-account
  .woocommerce-MyAccount-content
  .woocommerce-address-fields__field-wrapper {
  margin-bottom: 30px;
}
.my-account
  .woocommerce-MyAccount-content
  .woocommerce-EditAccountForm
  fieldset {
  margin-top: 30px;
}
.my-account .woocommerce-EditAccountForm.edit-account .woocommerce-Button {
  margin-top: 20px;
}
.my-account {
  margin: 80px 0;
}
.my-account a {
  color: var(--secondary-color);
}
.my-account a:hover {
  color: var(--dark-black);
}
.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  border: 1px solid #e1e4e9;
  border-radius: 8px;
  overflow: hidden;
}
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 7px 15px;
  color: var(--dark-black);
  border-bottom: 1px solid #e1e4e9;
}
.woocommerce-MyAccount-navigation ul li:last-child a {
  border-bottom: none;
}
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
  background: var(--primary-color);
  color: #fff;
}
.my-account .woocommerce-Button,
.my-account .button,
.my-account .edit {
  font-size: 16px !important;
  font-family: var(--lato-font);
  color: var(--white) !important;
  background: linear-gradient(
    173.72deg,
    #2dcaff 4.71%,
    #0095c8 89.41%
  ) !important;
  border-radius: 40px !important;
  transition: border-color 0.3s ease-in-out;
  border-bottom: 2px solid transparent !important;
  background-clip: padding-box !important;
  padding: 8px 15px;
}
.woocommerce-info {
  border-top-color: var(--primary-color) !important;
}
.my-account .woocommerce-Button:hover,
.my-account .button:hover,
.my-account .edit:hover {
  border-color: #2f3233 !important;
}
.woocommerce-account .addresses .title .edit {
  float: none !important;
  display: inline-block;
  margin: 10px 0;
}
#customer_login .woocommerce-form-register__submit {
  margin-top: 20px;
}
#customer_login form {
  min-height: 290px;
}
.single-product .choice-sec {
  margin-top: 50px;
}
.woo-variation-swatches
  .variable-items-wrapper
  .variable-item:not(.radio-variable-item).button-variable-item.selected:not(
    .no-stock
  ) {
  box-shadow: none;
}
/* .woocommerce-variation.single_variation{
	display: none !important;
} */
.embrodery-header h2 {
  font-size: 45px;
  color: var(--dark-black);
  font-weight: 400;
  padding-bottom: 10px;
}
.embrodery-header p {
  font-size: 18px;
  font-weight: 500;
  color: #2f3233;
  padding-bottom: 25px;
}
.embrodery-box {
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 15px;
  margin: 60px 0;
}
.embroidery-form button {
  font-size: 16px !important;
  font-family: var(--lato-font);
  color: var(--white) !important;
  background: linear-gradient(
    173.72deg,
    #2dcaff 4.71%,
    #0095c8 89.41%
  ) !important;
  border-radius: 40px !important;
  transition: border-color 0.3s ease-in-out !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  background-clip: padding-box !important;
  padding: 12px 35px !important;
}
.embroidery-form button:hover {
  border-color: #2f3233 !important;
  opacity: 1 !important;
}
.embroidery-form input {
  font-size: 18px;
  font-weight: 500;
  color: #2f3233 !important;
  font-family: "Lato", sans-serif !important;
}

/*----------Shop page--------------*/
.woocommerce-shop .woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
	margin: 0;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	border: 1px solid #ebebeb;
    padding: 15px;
    border-radius: 10px;
	width: calc((100% - 40px) / 3) !important;
}
.woocommerce-shop ul.products{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}
.woocommerce-shop ul.products::before{
	display: none !important;
}
.woocommerce-shop .woocommerce ul.products li.product .woocommerce-loop-product__title{
	font-size: 22px;
    font-weight: 400;
    color: #1f2222;
    font-family: var(--gabrito-font);
}
.woocommerce-shop .woocommerce ul.products li.product .price{
	font-size: 18px;
	font-family: var(--lato-font);
	color: #1f2222;
}
.woocommerce-shop .woocommerce ul.products li.product .button{
	font-size: 18px;
    font-family: var(--lato-font);
    font-weight: 500;
    color: var(--white);
    background: linear-gradient(173.72deg, #2dcaff 4.71%, #0095c8 89.41%);
    padding: 11px 25px 11px 25px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    width: max-content;
    transition: border-color 0.3s ease-in-out;
    border-bottom: 2px solid transparent;
    background-clip: padding-box;
    line-height: 1;
}
.woocommerce-shop .woocommerce ul.products li.product .button:hover{
	border-color: #2f3233;
}
.custom-product-price{
	font-size: 22px;
	font-family: var(--lato-font);
	color: #1f2222;
}
.product-cat-dtf-transfers .variations li.variable-item{
	border-radius: 12px !important;
	margin: 0px !important;
}
.product-cat-dtf-transfers .variations .variable-items-wrapper{
	gap: 10px;
}
.single_variation_wrap .woocommerce-variation-price .price{
	font-size: 22px !important;
    font-family: var(--lato-font);
    color: #1f2222 !important;
	margin-bottom: 10px;
	display: inline-block;
}
.reset_variations{
	color: #0ec2ff;
}