* {
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bs-body-font-family: 'Inter', sans-serif;
  --main: #f8f8f7;
  --secondary: #565449;
  --white: #ffffff;
  --black: #000000;
  --primary: #0275d8;
  --light-grey : #a2a3a3;
  --light-blue : #E4F4FC;
  --grey-shade : #7e8182;
   --bs-accordion-active-color: #FFFFFF; 
     --bs-body-bg: #f8f8f7;
    --logoed-dark: #565449;
    --logoed-green: #FFFFFF;
    --bs-success: #198754;
    --bs-danger: #dc3545;
    --bs-primary: #565449;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --custom-gray-300: #d1d5db;
    --custom-gray-400: #9ca3af;
    --custom-gray-500: #6b7280;
    --custom-gray-600: #4b5563;
    --custom-gray-700: #374151;
    --custom-gray-800: #1f2937;
    --custom-gray-900: #111827;
    --custom-green-400: #4ade80;
    --custom-green-500: #22c55e;
    --custom-green-600: #16a34a;
    --custom-green-700: #15803d;
    --custom-green-900: #14532d;
    --custom-blue-500: #3b82f6;
    --custom-blue-600: #2563eb;
    --custom-blue-700: #1d4ed8;
    --custom-pink-500: #ec4899;
    --custom-yellow-500: #eab308;
    --custom-teal-400: #2dd4bf;
    --custom-teal-500: #14b8a6;
    --custom-teal-600: #0d9488;
    --custom-teal-700: #0f766e;
    --custom-purple-400: #c084fc;
    --custom-purple-600: #9333ea;
    --custom-purple-700: #7e22ce;
    --custom-purple-900: #581c87;
    --custom-red-500: #ef4444;
    --custom-red-600: #dc2626;
    --custom-orange-400: #fb923c;
}

/* all anchor */
a {
  text-decoration: none;
}

/* for all text color */
.text-main {
  color: var(--main);
}

.text-grey-shade {
  color: var(--grey-shade);
}

.flex-1 {
  flex: 1;
}

.no-break {
  white-space: nowrap;
}

.text-color-main {
  color: var(--logoed-dark);
}

.text-color-second {
  color: var(--secondary);
}

.text-light-grey {
  color: #a2a3a3;
}

/* background */
.bg-main {
  background: var(--logoed-dark)!important;
}

.bg-scnd {
     background-color: var(--logoed-dark);

}

.bg-lght {
  background: #eaf4fa;
}

.bg-light-grey {

  background-color: #f0f1f2;
}

.bg-light-blue {
  background-color: #EEFDFF;
}

.bg-light-yellow {
  background-color: #e6e523;
}

.bg-grey {
  background-color: #A9A9A9;
}
/* text-alignment */

.fs-sm-custom {
  font-size: clamp(0.75rem, 0.6964rem + 0.1488vw, 0.875rem);
}

.fs-md-custom {
  font-size: clamp(1rem, 0.9196rem + 0.2232vw, 1.1875rem);
}

.fsc-14 {
  font-size: 0.875rem;
}
.fsc-15 {
  font-size: 15px;
}

.fsc-12 {
  font-size: 12px;
}

.w-30 {
  width: 30% !important;
}

.header_resp {
  font-size: 1.875rem;
}

.main-underline {
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--main);
  text-underline-offset: 10px;
}
/* button main*/

.btn-info {
  background-color: var(--main) !important;
  color: #fff !important;
  border-radius: 10px !important;
}

.btn-info:hover {
  background-color: var(--secondary) !important;
}

.btn-custom {
  padding: 12px 5px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
}

.btn-custom a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}

.btn-custom:hover {
  background-color: var(--main);
  color: #fff;
  transition: .25s;
}

.btn-hover:hover {
  background-color: var(--main);
  color: #fff;
}

.btn-hover-second:hover {
  background-color: var(--secondary);
  color: #fff;
}

/* image alignment */
.img-custom-fluid {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.designImagePreview {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* for section white title text */
.title-white {
  color: var(--white);
  font-weight: bold;
}

/* for section black title text  */
.section-title {
  color: var(--black);
  font-size: 40px;
  font-weight: 700;
}

.page-title {
  color: var(--secondary);
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: black;
  text-underline-offset: 8px;
  margin-bottom: 1rem;
}

.basic-product::placeholder {
  font-weight: bold;
}


/*--------------------------------------------------------------
# Home Top Portion Start
--------------------------------------------------------------*/

.home-section-button a:hover {
  background-color: var(--primary);
}

.home-top-link {
  text-decoration: none;
  color: #000000;
  padding: 0px 8px;
  border-right: 2px solid black;
}

.home-top-link:hover {
  color: var(--primary);
}

.call-subhead {
  color: #000000;
  cursor: pointer;
  text-decoration: none;
}

.social-links-top a i:hover {
  color: var(--primary);
}

/* home top portion end */

/*--------------------------------------------------------------
# Top Bar Medium and Mobile Screen Only
--------------------------------------------------------------*/

#topbar {
  background: var(--white);
  height: 40px;
  font-size: 12px;
  transition: all 0.5s;
  color: black;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: black;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: black;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: var(--primary);
  text-decoration: underline;
}

#topbar .social-links a {
  color: var(--main);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: var(--primary);
}
/*--------------------------------------------------------------
# Brand Section Start
--------------------------------------------------------------*/

.search {
  width: 100%;
  position: relative;
  display: flex;
}

.searchterm {
  width: 100%;
  border: 1px solid var(--secondary);
  border-right: none;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  padding: 5px;
  outline: none;
}

.searchterm:focus {
  color: #535c68;
}

.searchbutton {
  width: 60px;
  height: 40px;
  border: 1px solid var(--secondary);
  border-left: none;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  text-align: center;
  color: #ffffff;
  background: var(--secondary);
  cursor: pointer;
  font-size: 0;
}

.searchbutton i {font-size: 20px;}

.searchbutton:hover {
  background: var(--primary);
  transition: all 0.2s linear;
}

.wrap {
  width: 100%;
}

.aus_head_logo {
  max-width: 70px;
  max-height: 70px;
}

.menu-icon {
  text-align: center;
}

.menu-icon .menu-icon-text {
  font-size: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.menu-icon a i {
  color: #000000;
}

.menu-icon a i:hover {
  color: var(--primary);
}

.popup-modal-padding {
  padding: 0 !important;
}

.popup-modal-banner-description {
  font-size: 0.875rem;
}

.popup-modal-text-small {
  font-size: 0.813rem;
  font-weight: 500;
  font-style: italic;
}

.popup-modal-banner-text-small {
  font-size: 0.625rem;
  font-style: italic;
  color: #fff;
  font-weight: 400;
}

.decor-modal-close{    
    position: absolute;
    right: 5px;
    top: 4px;
    background-color: transparent;
    color: #ffffff !important;
 }   

.modal-rounded-btn-close {
  color: var(--secondary);
  transition: .25s;
}

.modal-rounded-btn-prev {
  color: var(--light-grey);
  transition: .25s;
}

.modal-rounded-btn-close:hover {
  color: var(--primary);
  transition: .25s;
}

.modal-rounded-btn-prev:hover {
  color: var(--grey-shade);
  transition: .25s;
}

.popup-modal-btn {
  border: 0;
  text-align: center;
  display: inline-block;
  font-size: 1rem;
  padding: 5px 10px;
  color: #fff;
  background-color: var(--secondary);
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow 200ms ease-out;
}

.popup-modal-btn:hover {
  background-color: var(--main);
  color: #fff;
  transition: .25s;
}

.popup-modal-img-container {
  background-color: #DCDCDC;
  padding: 2px;
  cursor: pointer;
}

.popup-modal-img-container.active {
  background-color: var(--secondary);
  color: #fff;
  padding: 2px;
}

.popup-modal-footer {
  font-size: 0.75rem;
}

/* Header Modal */
/*--------------------------------------------------------------
# Header Start
--------------------------------------------------------------*/

/* Desktop Navbar */

.flex-1 {
  flex: 1;
}

#navbar {
  position: relative;
}

.menu-item {
  border-right: 1px solid #47C0EA;
}

.menu-item:first-child {
  border-left: 1px solid #47C0EA;

}

.menu-link {
  display: block;
  color: #fff;
  padding: 10px 10px;
  text-decoration: none !important;
  font-weight: 800;
}

.menu-item:hover .menu-link {
  color: #fff;
  background-color: var(--secondary);
}

.menu-content {
  position: absolute;
  width: 100%;
  background-color: #ebebeb;
  padding: 30px 0;
  left: 0;
  border-bottom: 5px solid var(--main);
  box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  display: none;
  z-index: 12;
}

.menu-content .menu-content-link {
  display: block;
  padding: 5px 10px;
  transition: 0.25s;
  text-decoration: none;
  font-size: 15px;
}

.menu-content .menu-content-link:hover {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #2D98D1;
}


.menu-item .list-group .active {
  background-color: var(--black);
}
/*
.main-header-sec-bg:hover .menu-content {
  display: block;
}
*/
.tab-content-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* animation */

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }

}

/*Mobile-Navbar*/

#navbar-mobile {
  position: fixed;
  width: 100%;
  inset: 0;
  margin-top: 60px;
  height: 100vh;
  overflow: auto;
  animation: slideUp 0.3s ease-in-out;
  z-index: 1500;
}

#accordion {
  padding: 15px 0;
}

#navbar-mobile .accordion-item .btn {
  padding: 15px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.accordion-item-content {
  background-color: #eee;
}

.accordion-item-content-item {
  padding: 15px 20px;
}

.accordion-content-link {
  display: inline-block;
  padding: 5px 15px;
  transition: 0.25s;
}

.accordion-content-link:hover {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/************* Home Mega Menu End *************/

/* old */

.main-header {
  background-color: var(--main);
  width: 100%;
}

.main-header-sec-bg {
  background: var(--secondary);
}

.main-header-list a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
}

#navbar .nav-link {
  color: var(--black);
  text-decoration: none;
  transition: background-color 0.3s;
}

#navbar .nav-link:hover {
  color: var(--white) !important;
  background-color: var(--secondary);
}


.brand-header-info {
  background-color: var(--main);
}

.chat-with-us-wrap {
  display: none;
}

/* header end */
/* #################### Navbar End ############### */

/*--------------------------------------------------------------
# Hero Section START
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background-image: url(images/coverpage.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

#hero h1 {
  margin: 0 0 10px 0;
  padding-bottom: 25px;
  font-size: 55px;
  font-weight: bold;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #fff;
  font-size: 28px;
  font-weight: normal;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Best Retailer Section
--------------------------------------------------------------*/
.retailer-logo img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  height: 80%;

}

.home-pricing-info {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(215, 249, 255, 1) 30%);
}

.home-pricing-info h1 {
  font-weight: bold;
}

.home-pricing-info p {
  font-size: 1.17em;
  font-weight: 600;
  max-width: 75%;
}

.home-pricing-info-img {
  overflow: hidden;
  display: block;
  width: 100%;
  margin: auto;
}

.home-pricing-info-img a {
  text-decoration: none;
  color: var(--main);
}

.home-pricing-info-img a:hover {
  color: var(--primary);
}

.home-pricing-info-img h4 {
  font-weight: 600;
}

/*--------------------------------------------------------------
# Home Delivery Section
--------------------------------------------------------------*/
.home-delivery-info {
  background: rgb(215, 249, 255);
  background: linear-gradient(90deg, rgba(215, 249, 255, 1) 0%, rgba(255, 255, 255, 1) 70%);
}

.home-delivery-info h1 {
  font-weight: bold;
}

.home-delivery-info-text p {
  font-size: 1.17em;
  font-weight: 600;
  max-width: 75%;
}

#home-delivery-info-card {
  background: lightgrey;
}

#home-delivery-info-card .delivery-text {
  font-style: italic;
}

.small-text {
  font-size: 12px;
}

/*--------------------------------------------------------------
# HOME Easy Ordering
--------------------------------------------------------------*/
.easy-ordering-col2 {
  background: rgb(191, 190, 190);
  background: linear-gradient(90deg, rgba(191, 190, 190, 1) 0%, rgba(255, 255, 255, 1) 70%);
}

/*--------------------------------------------------------------
# HOME Shop By Industry
--------------------------------------------------------------*/
.industry-section-title {
  color: var(--white);
  font-weight: 700;
  float: right;
}

.industry-section-heading {
  color: #000;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.industry-icons {
  font-size: 1.625rem;
  color: var(--main);
}

.industry-section-imgcon {
  width: 380px;
  height: 214px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.industry-section-imgcon img {
  height: 100%;
  width: 100%;
  max-width: 380px;
  max-height: 214px;
  object-fit: contain;
}

.features {
  padding-top: 0px;
  background: var(--main);
}

.features .icon-box {
  /* display: flex; */
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid #eef0ef;
  background: var(--white);
  text-align: center;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box i {
  font-size: 16px;
  padding-right: 10px;
  line-height: 1;
  float: right;
  color: #47c0ea;
}

.features .icon-box h3 a {
  color: #37423b;
  transition: 0.3s;
  text-decoration: none;
  font-weight: 500;
}

.features .icon-box:hover {
  border-color: var(--primary);
}

.features .icon-box:hover h3 a {
  color: var(--primary);
  text-decoration: none;
}

/*--------------------------------------------------------------
# HOME Recent Completed Jobs
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# HOME All Categories
--------------------------------------------------------------*/
.all-categories {
  background: var(--main);
}

.all-categories .member .pic {
  overflow: hidden;
  border-radius: 50%;
  display: block;
  width: 60%;
  margin: auto;
}

.all-categories .member .pic img {
  transition: ease-in-out 0.3s;
}

.member a {
  text-decoration: none;
  color: #000000;
}

.member a:hover {
  color: var(--primary);
}

.member:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# HOME Newsletter
--------------------------------------------------------------*/
.newsletter {
  background: #E4F4FC;
}

.newsletter p {
  font-weight: bold;
}

.newsletter-title {
  font-size: 25px;
}

.newsletter i {
  color: var(--main);
  font-size: 5em;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.home-footer {
  background: var(--main);
}

.home-footer h6 {
  font-weight: bold;
  font-size: 18px;
}

.home-footer .map {
  height: auto;
  width: 24px;
}

.border-right {
  color: var(--white);
}

.home-footer li a {
  text-decoration: none;
}

.home-footer li a {
  text-decoration: none;
  font-weight: 500;
}

.home-footer li a:hover {
  text-decoration: underline;
}

.footer-db-notification{
	position:fixed;
	padding-top:50px;
	bottom: 8px;
	left:20px;
}

/* Copy Right */
.copy-right {
  background: var(--main);
}

/* Mobile Footer Start */

/* .mobile_bottom {
  position: fixed;
  bottom: 0;
  width: 70%;
  height: 55px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  display: none;
} */

.mobile__link {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  min-width: 50px;
  overflow: hidden;
  white-space: nowrap;
  font-family: sans-serif;
  font-size: 13px;
  color: #444444;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.1s ease-in-out;
}

.mobile__link:hover {
  background-color: var(--primary);
}

.mobile__link--active {
  color: var(--main);
}

.mobile__icon {
  font-size: 18px;
}

.mobile__link i {
  font-weight: 900;
  font-size: 25px;
  color: #333;
}

/* ====  mobile footer END ===*/


/* contact us page */
.contact-us-card > * {
  display: block;
  margin: 2rem;
  text-align: center;
}
/* contact us page */

.panel {
  padding: 15px 25px;
  position: relative;
  width: 100%;
  z-index: 10;
  margin-top: 19px;
}

.panel .panel-login{
  margin-bottom: 20px;
  box-shadow: none;
}

.login-register-form {
  background: #fff;
  margin: 60px 0;
  padding-top: 1px;
  padding-bottom: 1px;
}

.login-page-content{
  padding: 100px 5px 80px 40px;
}

.login-page-content h3{
  color: var(--secondary);
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.login-page-content .content-title{
  color: #000;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0;
}

.login-page-content .content-text{
  color: #000;
  font-size: 0.625rem;
  font-weight: 600;
  margin-bottom: 0;
}

.panel-login {
  margin-top: 20px;
  margin-bottom: 40px;
}

.panel-login>.panel-heading {
  text-align: center;
  padding-bottom: 2px;
}

.panel-login>.panel-heading a, .profile_header {
  text-decoration: none;
  color: #666;
  font-weight: 600;
  font-size: 0.875rem;
}

.panel-login>.panel-heading a.active, .profile_header.active{
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--main);
  text-underline-offset: 7px;
  margin-bottom: 1rem;
}

.panel-login>.panel-heading hr {
  margin-top: 15px;
  margin-bottom: 10px;
  border: 0;
  height: 1px;
  background-color: #000;
}

.panel-login input[type="text"],
.panel-login input[type="email"],
.panel-login input[type="password"] {

  height: 34px;
  font-size: 14px;
  border-radius: 0;
  border-color: #EFEFEF;
  background-color: #EFEFEF;
}

.panel-login input:hover,
.panel-login input:focus {

  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #000;
}

.btn-login, .btn-main {
  background-color: var(--main);
  outline: none;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  padding: 6px;
  text-transform: capitalize;
  border-radius: 0;
}

/* check box */

.btn-login:hover,
.btn-main:hover,
.btn-main:focus,
.btn-login:focus {
  color: #fff;
  background-color: var(--primary);
}

.forgot-password {
  text-decoration: underline;
  color: #888;
}

.forgot-password:hover,
.forgot-password:focus {
  text-decoration: underline;
  color: #666;
}

.btn-register {
  background-color: var(--main);
  outline: none;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  padding: 6px;
  text-transform: capitalize;
  border-radius: 0;
}

.btn-register:hover,
.btn-register:focus {
  color: #fff;
  background-color: var(--primary);
}

.wish_list_bg {
  background: #fff;
}

.quote-title {
  color: #3c8dbc;
  padding: 0px 0 12px 0;
  cursor: default;
}

.quote-sub-title {
  font-size: 20px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px;
  font-weight: 700;
}

.quote-row {
  display: block;
  width: 100%;
  padding: 7px 0px;
}

.quote-row span {
  font-weight: bold;
  margin-left: 10px;
  font-size: 13px;
}

.quote-row label {
  font-size: 15px;
  display: inline-block;
  font-weight: 700;
}

.quote-inner-row a {
  font-weight: bold;
  margin-left: 10px;
  color: #3c8dbc;
}

.quote-inner-row label {
  font-weight: normal;
  width: auto;
  padding: 8px 10px;
}

.quote-inner-row span {
  font-weight: bold;
  margin-left: 10px;
  padding: 5px 10px;
}

.special-row {
  background: #efefef;
  padding: 12px;
  border-radius: 2px;
}

.show-art-block {
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 6px;
  margin-top: 14px;
}

.quote-art-details {
  display: inline-block;
  padding: 0 0px;
  max-width: 100%;
  text-align: justify;
  margin-top: 20px;
}

.quote-art-details p {
  margin: 0 0 10px;
  font-size: 14px;
}

.quote-show-art {
  max-width: 263px;
  height: auto;
  float: left;
}

.box-primary {
  margin-top: 20px;
}

/* 24 Hour Production */

.commonbanner_btn{
  background-color: #fff;
  color: #000;
}

.prod-time-banner {
  background-image: url(../images/loginpage.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.prod-time-display-text {
  color: var(--white);
  font-weight: 600;
}

.prod-time-banner h4 span {
  color: var(--white);
  font-size: clamp(1.375rem, 1.2679rem + 0.2976vw, 1.625rem);
}

.prod-time-banner h4 {
  font-size: clamp(1.25rem, 1.1429rem + 0.2976vw, 1.5rem);
}

.prod-time-q-bg {
  background: var(--secondary);
}

.prod-time-q-bg h5 {
  font-size: clamp(1.25rem, 1.1429rem + 0.2976vw, 1.5rem);
  color: #fff;
}

.prod-time-faq p {
  color: #000;
}

/* FAQ */

#accordionFAQ .accordion-button {
  font-weight: 600;
}

/*** 24 hour production end ***/
/*--------------------------------------------------------------
# Blog Page Start
--------------------------------------------------------------*/

.content-player {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.content-player video {
  max-height: 400px;
}
.player-br-r {
  border-radius: 0px 200px 200px 0px;
  -moz-border-radius: 0px 200px 200px 0px;
  -webkit-border-radius: 0px 200px 200px 0px;
  border: 0px solid #000000;
}
.player-br-l {
  border-radius: 200px 0px 0px 200px;
  -moz-border-radius: 200px 0px 0px 200px;
  -webkit-border-radius: 200px 0px 0px 200px;
  border: 0px solid #000000;
}
.blog-img-fixed-height {
  height: 314px;
}
.section-copy {
  margin-top: 3rem;
}
.ps-custom-50 {
  padding-left: 3rem;
}
.ps-first-custom-50 {
  padding-left: 3rem;
  }
.pe-custom-50 {
  padding-right: 3rem;
}
.section-copy h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.8px;
  margin-bottom: 1rem;
}
.section-copy p {
  font-weight: 400;
  line-height: 1.4444;
  letter-spacing: -.2px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.hidden-players {
  display: none;
}

/*--------------------------------------------------------------
# Category page Start
--------------------------------------------------------------*/

/* category page start */
.header-highlights {
  background-color: lightgray;
  color: var(--main);
}

.header-highlights-arrow {
  width: 30px;
  height: 30px;
}

.product_brand_container{
  align-items: start;
  height: 35px;
  width: 100px;
  margin-bottom: 2px;
}

.product-sale-banner {
  display:flex;
  align-items: center;
  width: 100% !important;
  padding: 3px 8px;
  gap: 15%;
  background-color: var(--secondary);
}

.product-sale-banner .product-sale-title {
  color: #fff;
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
  font-weight: bold;
  text-transform: uppercase;
}
.product-sale-banner .product-sale-percent {
  color: #fff;
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
  font-weight: bold;
  text-transform: uppercase;
}

.category_button {
  background-color: #daf1fa;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.category_button:hover {
  background-color: var(--secondary);
  color: #fff;
}

.category-colorlink {
  display: flex;
  flex-grow: 1;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  padding-left: 0.25rem;
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.category-colorbox{
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  display:block;
  margin-right: 5px;
  border: 1px solid rgb(108, 117, 125);
}

/* side bar start */
.select:hover {
  font-size: 0;
  background: #000;
}

.select:hover::after {
  content: attr(data-hover);
  font-size: 12px;
  color: #fff;
}

.design:hover {
  font-size: 0;
  background: #000;
}

.design:hover::after {
  content: attr(data-hover);
  font-size: 12px;
  color: #fff;
}

.order:hover {
  font-size: 0;
  background: #000;
}

.order:hover::after {
  content: attr(data-hover);
  font-size: 12px;
  color: #fff;
}

.showhidefilter {
  display: none;
}

#sidebar {
  transition: all 0.3s ease;
  z-index: 0;
}

#sidebar h5 {
  color: var(--secondary);
  border-bottom: 2px solid #47C0EA;
  font-size: 25px;
}

.sidebar-border {
  border: 1px solid var(--main);
  border-radius: 2px;
}

.sidebar-border-bottom {
  border-bottom: 2px solid #47C0EA;
}

.side-nav-text-color:hover {
  color: var(--secondary);
  font-weight: 700;
}


.side-nav-cat-list li a:hover {
  text-decoration: underline;
  font-weight: 700;
}

.side-nav-color-filter {
  height: 300px;
  width: 165px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.side-nav-color-filter-box {
  background-position: center;
  width: 30px;
  height: 30px;
  display: block;
  margin-right: 5px;
}

.side-nav-color-filter a:hover {
  text-decoration: underline;
}

.grid-view i:hover {
  color: #000;
  cursor: pointer;
}

.list-view i:hover {
  color: #000;
  cursor: pointer;
}

.pagination {
  margin-left: auto;
}

.pagination a {
  color: var(--main);
}

.pagination a:hover {
  color: #000;
}

/* category filter */
.category-filter-reset-btn {
  background-color: #E4F4FC;
  border-radius: 251px;
  color: #000;
  cursor: pointer;
  display: inline-block;
  padding: 3px 15px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 1px solid var(--secondary);
  font-size: 14px;
  margin: 5px;
}

.category-filter-buttons {
  background-color: #E4F4FC;
  border-radius: 100px;
  color: #000;
  cursor: pointer;
  display: inline-block;
  padding: 2px 8px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 1px solid var(--secondary);
  font-size: 10px;
  margin: 2px;
}


/**price slider start**/

.range-slider {
  width: 170px;
  margin: auto;
  text-align: center;
  position: relative;
  height: 4em;
}

.range-slider svg,
.range-slider input[type=range] {
  position: absolute;
  left: 0;
  bottom: 0;
}

input[type=number] {
  border: 1px solid #ddd;
  /* text-align: center; */
  -moz-appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number]:invalid,
input[type=number]:out-of-range {
  /* border: 2px solid #ff6347; */
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #2497e3;
}

input[type=range]:focus::-ms-fill-lower {
  background: #2497e3;
}

input[type=range]:focus::-ms-fill-upper {
  background: #2497e3;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: #2497e3;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}

input[type=range]::-webkit-slider-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid #2497e3;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #a1d0ff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: #2497e3;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}

input[type=range]::-moz-range-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid #2497e3;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #a1d0ff;
  cursor: pointer;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range]::-ms-fill-lower,
input[type=range]::-ms-fill-upper {
  background: #2497e3;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}

input[type=range]::-ms-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid #2497e3;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #a1d0ff;
  cursor: pointer;
}

/** Price Slice End**/

/* Category Page */
.intro {
  background: #E4F4FC;
  padding: 5px;
}

.select:hover {
  font-size: 0;
  background: #000;
}

.select:hover::after {
  content: attr(data-hover);
  font-size: 12px;
  color: #fff;
}

.design:hover {
  font-size: 0;
  background: #000;
}

.design:hover::after {
  content: attr(data-hover);
  font-size: 12px;
  color: #fff;
}

.order:hover {
  font-size: 0;
  background: #000;
}

.order:hover::after {
  content: attr(data-hover);
  font-size: 12px;
  color: #fff;
}

.showhidefilter{
  display:none;
}

#sidebar {
  transition: all 0.3s ease;
  z-index: 0;
}

#sidebar h4 {
  border-bottom: 2px solid var(--main);
}

#sub-menu-1 .cat-clr-palette-1 {
  background: #fff;
}

#sub-menu-1 .cat-clr-palette-2 {
  background: #9a9a9a;
}

#sub-menu-1 .cat-clr-palette-3 {
  background: #000000;
}

#sub-menu-1 .cat-clr-palette-4 {
  background: #004c7c;
}

#sub-menu-1 .cat-clr-palette-5 {
  background: var(--secondary);
}

#sub-menu-1 .cat-clr-palette-6 {
  background: #72d4f5;
}

#sub-menu-1 .cat-clr-palette-7 {
  background: #ff0000;
}

#sub-menu-1 .cat-clr-palette-8 {
  background: #f7448b;
}

#sub-menu-1 .clr-palette-9 {
  background: #702c16;
}

#sub-menu-1 .cat-clr-palette-10 {
  background: #913489;
}

#sub-menu-1 .cat-clr-palette-11 {
  background: #303262;
}

#sub-menu-1 .cat-clr-palette-12 {
  background: #fd7e00;
}

#sub-menu-1 .cat-clr-palette-13 {
  background: #702c16;
}

#sub-menu-1 .cat-clr-palette-14 {
  background: #313462;
}

#sub-menu-1 .cat-clr-palette-15 {
  background: var(--secondary);
}

#sub-menu-1 .cat-clr-palette-16 {
  background: #f9d100;
}

#sub-menu-1 .cat-clr-palette-17 {
  background: #ddd9b6;
}

#sub-menu-1 .cat-clr-palette-18 {
  background: #a5cfdd;
}

#sub-menu-1 .cat-clr-palette-19 {
  background: #d5d5d5;
}

#sub-menu-1 .cat-clr-palette-20 {
  background: #f50e16;
}

#sub-menu-1 .cat-clr-palette-21 {
  background: #47C0EA;
}

#sub-menu-1 .cat-clr-palette-22 {
  background: #486a1e;
}

#sub-menu-1 .cat-clr-palette-23 {
  background: #b54eaf;
}

#sub-menu-1 .cat-clr-palette-24 {
  background: #9895be;
}

#sub-menu-1 .cat-clr-palette-25 {
  background: #f7448b;
}

#sub-menu-1 .cat-clr-palette-26 {
  background: #f9d100;
}

#sub-menu-1 .cat-clr-palette-27 {
  background: #b54eaf;
}

#sub-menu-1 .cat-clr-palette-28 {
  background: #ff268d;
}

#sub-menu-1 .cat-clr-palette-29 {
  background: #702c16;
}

#sub-menu-1 .cat-clr-palette-30 {
  background: #9592bc;
}

#sub-menu-1 .cat-clr-palette-31 {
  background: #97cbc0;
}

#sub-menu-1 .cat-clr-palette-32 {
  background: #74d4f5;
}

.grid-view i:hover {
  color: var(--secondary);
  cursor: pointer;
}

.list-view i:hover {
  color: var(--secondary);
  cursor: pointer;
}

.prod-bs-label {
  padding: 5px 11px;
  left: -10px;
  top: 10px;
}

/* Category Product Start */

.product-gallery {
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  min-height: 450px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.product-gallery-sm {
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  min-height: 477px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.product-gallery-basic {
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  min-height: 380px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.product-image-basic {
  position: relative;
  height: 250px;
  overflow: hidden;
  padding: 20px;
}

/* End of Category Product */

.main_div {
  width: 300px;
  height: 300px;
  position: relative;
  border: 2px solid #000;
  background: grey;
}

.product img {
  position: relative;
  height: 250px;
  overflow: hidden;
  width: 80%;
  margin-left: 10%;
}

.product::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  mix-blend-mode: hue;
}

/* Product Card Footer */

.icon-wishlist a {
  color: var(--primary);
}

.icon-wishlist a:active {
  color: var(--primary);
}

.icon-wishlist a:hover {
  color: var(--main);
}

.icon-wishlist p {
  font-size: 15px;
}

.product-details-price {
  display: flex;
}

.product-brand-view {
  padding: 0px 5px 0px 5px;
  width: 50%;
  text-align: start;
}

.prod-content {
  padding-bottom: 15px;
}

.start-price {
  font-size: 8px;
  font-weight: 400;
  padding: 0;
  margin-bottom: -5px;
}

.category_yellow-div {
  background-color: var(--main);
  font-size: 10px;
  text-align: center;
  padding: 2px;
}

.corflutes_headsup {
  border-radius: 10px;
  margin-bottom: 10px;
  border: solid 2px #7ea7b8;
  background-color: #cdeaf6;
}

.corflutes_headsup p {
  text-align: center;
  color: #32728e;
  font-size: 20px;
  padding-top: 10px;
}

.corflutes_yellow-div {
  border-radius: 10px;
  margin-bottom: 10px;
  border: solid 2px var(--main);
  background-color: #ffb80145;
  text-align: center;
}

.corflutes_yellow-div p {
  text-align: center;
  color: #000;
  font-size: 20px;
  padding: 5px;
  margin: 0;
}

/* Color Box Start */
.color_1 {
  background-size: contain;
  float: left;
  height: 25px;
  width: 25px;
  margin-left: 3px;
  transition: transform .2s;
  margin-top: 5px;
}

.color_1_listview {
  float: left;
  height: 25px;
  width: 25px;
  margin-left: 3px;
  transition: transform .2s;
  margin-top: 5px;
}



.color_1:hover {
  cursor: pointer;
  border: solid 3px #000;
  border-collapse: separate;
  border-spacing: 10px;
}

.color_1_listview:hover {
  transform: scale(1.5);
  cursor: pointer;
  border: solid 1px #000;
  border-collapse: separate;
  border-spacing: 10px;
}



.color_swatch-left-arrow {
  height: 25px;
  margin-top: 5px;
  margin-left: 3px;
  color: #000;
  border: solid 1px #000;
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  transition: 0.4s;
  height: 25px;
  width: 28px;
}

.color_swatch-arrow-mid {
  font-weight: bold;
  color: #000;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
}

.color_swatch-arrow-right {
  font-weight: bold;
  color: #000;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
}

.color_swatch-left-panel {
  padding:3px 0px;
  display: none;
  overflow: hidden;
}

.color_swatch-mid-panel {
  padding: 0px 0px;
  display: none;
  overflow: hidden;
  height: 60px;
}

.color_swatch-right-panel {
  padding: 0px 0px;
  display: none;
  overflow: hidden;
  height: 60px;
}

.color_swatch-arrow-mid-2nd {
  font-weight: bold;
  color: #000;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
}

.color_swatch-mid-2nd-panel {
  padding: 0px 0px;
  display: none;
  overflow: hidden;
  height: 60px;
}

.color_swatch-arrow-right-2nd {
  font-weight: bold;
  color: #000;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
}

.color_swatch-right-2nd-panel {
  padding: 0px 0px;
  display: none;
  overflow: hidden;
  height: 60px;
}

.color_swatch-arrow-left-2nd {
  font-weight: bold;
  color: #000;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
}

.color_swatch-left-2nd-panel {
  padding: 0px 0px;
  display: none;
  overflow: hidden;
  height: 60px;
}

.color_swatch-arrow-left-3rd {
  font-weight: bold;
  color: #000;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
}

.color_swatch-left-3rd-panel {
  padding: 0px 0px;
  display: none;
  overflow: hidden;
  height: 60px;
}

.color_swatch-arrow-mid-3rd {
  font-weight: bold;
  color: #000;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
}

.color_swatch-mid-3rd-panel {
  padding: 0px 0px;
  display: none;
  overflow: hidden;
  height: 60px;
}

.color_swatch-arrow-right-3rd {
  font-weight: bold;
  color: #000;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
}

.color_swatch-right-3rd-panel {
  padding: 0px 0px;
  display: none;
  overflow: hidden;
  height: 60px;
}

/* End of Color Swatch */



.prod-tag {

  left: 30px;

  color: #696981;

}

.product-main-img .prod-brand {

  right: 5px;

  bottom: 5px;

}

.prod-brand {

  right: 82px;

  bottom: 89px;

  width: 99px;

}


.product-image .prod-tag {

  right: 1px;

  bottom: 64px;

  border-radius: 5px 0 0 5px;

  font-size: 18px;

}

.prod-footer {

  height: 65px;

  background-color: #dad9d9;

}


.product-main-img {

  width: 90px;
}

.overlay-in {

  background-color: rgba(0, 0, 0, 0.6);

  height: 100%;

  width: 100%;

  opacity: 0;

  top: 0;

  left: 0;

  padding: 7px;

  transition: opacity 0.5s;

}



.overlay-in:hover {

  opacity: 1;

  transition: opacity 0.5s;

}



.overlay-in .btn:hover {

  background: var(--main);

  color: #fff;

  transition: all 0.3s ease;

}

.overlay-in .img-title {

  font-size: 20px;

}

.overlay-in .img-desc {

  font-size: 15px;

}

.product-image {

  position: relative;

  height: 300px;

  overflow: hidden;

  /* padding: 20px; */

}

/* ##################  Product card end ####################*/

/* ################## Category Page Ribbon Start #################### */

.ribbon {
  width: 152px;
  height: 152px;
  overflow: hidden;
  position: absolute;

}

.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 5px solid #2980b9;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 247px;
  padding: 6px 0;
  /* background-color: #25b712; */
  box-shadow: 0 3px 10px -5px rgb(0 0 0);
  color: #fff;
  font: 700 18px/1;
  text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}


.ribbon-top-left {
  top: -10px;
  left: -10px;
}

.ribbon-top-left::before,
.ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}

.ribbon-top-left::before {
  top: 0;
  right: 0;
}

.ribbon-top-left::after {
  bottom: 0;
  left: 0;
}

.ribbon-top-left span {
  right: -17px;
  top: 31px;
  transform: rotate(-45deg);
  font-size: 10px;
  text-align: center;
  background-color: #25b712;
}

.ribbon-top-right {
  top: -10px;
  right: -10px;
}

.ribbon-top-right::before,
.ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}

.ribbon-top-right::before {
  top: 0;
  left: 0;
}

.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}

.ribbon-top-right span {
  left: -17px;
  top: 31px;
  font-size: 10px;
  transform: rotate(45deg);

  background: linear-gradient(#4ac9be 0%, #4ac9be 100%);

}

.ribbon-bottom-left {
  bottom: -10px;
  left: -10px;
}

.ribbon-bottom-left::before,
.ribbon-bottom-left::after {
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.ribbon-bottom-left::before {
  bottom: 0;
  right: 0;
}

.ribbon-bottom-left::after {
  top: 0;
  left: 0;
}

.ribbon-bottom-left span {
  right: -17px;
  bottom: 28px;
  transform: rotate(45deg);
  font-size: 10px;
  background-color: #a0a5a0;
}


.ribbon-bottom-right {
  bottom: -10px;
  right: -10px;
}

.ribbon-bottom-right::before,
.ribbon-bottom-right::after {
  border-bottom-color: transparent;
  border-right-color: transparent;
}

.ribbon-bottom-right::before {
  bottom: 0;
  left: 0;
}

.ribbon-bottom-right::after {
  top: 0;
  right: 0;
}

.ribbon-bottom-right span {
  left: -17px;
  bottom: 28px;
  transform: rotate(-45deg);
  font-size: 10px;
  background-color: #f93550;
}

.ribbon-side-left {
  top: 91px;
  left: -25px;
  font-weight: bold;
}

.ribbon-side-left::before,
.ribbon-side-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}

.ribbon-side-left::before {
  top: 0;
  right: 0;
}

.ribbon-side-left::after {
  bottom: 0;
  left: 0;
}

.ribbon-side-left span {
  right: -35px;
  top: 62px;
  transform: rotate(-90deg);
  font-size: 10px;
  text-align: center;
  background: rgb(253, 126, 0);
}

.ribbon-side-right {
  top: 91px;
  right: -25px;
  font-weight: bold;
}

.ribbon-side-right::before,
.ribbon-side-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}

.ribbon-side-right::before {
  top: 0;
  left: 0;
}

.ribbon-side-right::after {
  bottom: 0;
  right: 0;
}

.ribbon-side-right span {
  left: -35px;
  top: 62px;
  font-size: 10px;
  transform: rotate(90deg);

  background: #00218e;

}

/* fast moving, almost sold out, sold out ribbon */

.prod-ribbon-top {
  width: 125px;
  height: 25px;
  font-size: 10px;
  padding: 6px 0;
  box-shadow: 0 3px 10px -5px rgb(0 0 0);
  color: #fff;
  text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  font:'Lato', sans-serif;
}

.prod-ribbon-top::before,
.prod-ribbon-top::after {
  border-top-color: transparent;
  border-right-color: transparent;
}

/* ################## Category Page Ribbon End ####################*/

/*--------------------------------------------------------------
# Custom Category
--------------------------------------------------------------*/
.category-custom {
  background: rgb(215, 249, 255);
  background: linear-gradient(90deg, rgba(215, 249, 255, 1) 0%, rgba(255, 255, 255, 1) 90%);
}

.category-custom h3 {
  font-size: 30px;
  font-weight: 600;
}

/* ################## Custom Category Page End ####################*/


/* ################## START check_out_page####################*/
.check_out_section p {
  margin-bottom: 5px;
  font-size: 14px;
}

.check_out_section input {
  font-size: 16px;
}

.shipping_address header i {
  padding: 5px;
}

.shipping_address header {
  height: 50px;
  width: 100%;
  background-color: var(--secondary);
  color: #fff;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
}

.shipping_methods header {
  height: 50px;
  width: 99%;
  background-color: var(--secondary);
  color: #fff;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
  margin: 20px 0px 0px 0;
  border-radius: 5px;
  float: left;
}

.shipping_methods header i {
  padding: 5px;
}

.payment_methods header {
  height: 50px;
  width: 100%;
  background-color: var(--secondary);
  color: #fff;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
  margin: 1px 0px 0px 0;
  border-radius: 5px;
  float: left;
}

.payment_methods {

  width: 100%;
  float: left;
}

.payment_methods p {
  font-size: 15px;
  text-align: left;
  margin-left: 5%;
  margin-top: 10px;
}

.shipping_methods p {
  font-size: 16px;
  text-align: left;
  margin-left: 10px;
  margin-top: 10px;
  float: left;
}

.ship-method-text-cls {
  margin-top: 20px !important;

}

.payment_methods header i {
  padding: 5px;
}

.shipping_address form {
  width: 100%;
}

fieldset {
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column-reverse;
  font-size: 13px;
}

fieldset p {
  margin-bottom: 4px;
  font-size: 16px;
}

fieldset input[required]~p:after {
  content: '*';
  color: red;
  font-size: 13px;
  margin-left: 4px;
}

fieldset select[required]~p:after {
  content: '*';
  color: red;
  font-size: 13px;
  margin-left: 4px;
}

.shipping_address_first_name select {
  font-size: 13px;
  border-color: #000;
}

.shipping_address_last_name select {
  font-size: 13px;
  border-color: #000;
}

.shipping_address_first_name {
  width: 45%;

}

.shipping_address_last_name {
  width: 45%;
  margin-left: 10%;

}

.shipping_address_checkbox {
  font-size: 10px;
}

.shipping_address_checkbox input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
  float: left;
  margin-top: 10px;
}

/* .shipping_address_checkbox [type="checkbox"]:not(:checked)+label,
[type="checkbox"]:checked+label {

  padding-left: 2%;
  cursor: pointer;
  font-size: 12px;
  margin-top: 8px;
} */

.shipping_methods_table {
  width: 50%;
}

.shipping_methods {
  width: 100%;
  float: left;
}

.order_summary header {
  height: 50px;
  width: 100%;
  background-color: var(--secondary);
  color: #fff;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
}

.shipping_methods_radio_button input[type=radio] {}

.order_summary table {
  border-collapse: unset;
  border-spacing: 0em;
  border: solid 2px #e0dcdc;
}

.number {

  width: 100%;
}

.minus,
.plus {
  width: 30px;
  height: 30px;
  background: #f2f2f2;
  border-radius: 4px;
  /* padding: 0px 9px 0px 0px; */
  border: 1px solid #ddd;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  padding: 2px;
  background-color: var(--secondary);
  color: #fff;
}

.number input {
  height: 30px;
  width: 30%;
  text-align: center;
  font-size: 17px;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
}

/*.shipping_methods_comment{
            height: 100px;
            width: 100%;
            border: 2px solid #333;
          }*/
.shipping_methods_comment textarea {
  padding: 5px;
}

.check_out_newsletter {
  height: 50px;
  width: 100%;
  /*background-color: #333;*/
  border-radius: 5px;
  padding: 13px;
  margin-bottom: 10px;
  font-size: 12px;
  border: 2px solid #dee2e6;
}

.placeorder {
  height: 50px;
  padding: 13px;
  color: #fff;
}


.payment_methods input[type="radio"] {
  appearance: none;
}

.payment_methods input[type="radio"]+label {
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  line-height: 20px;
  font-weight: bold;
}

.payment_methods input[type="radio"]+label::before {
  content: "";
  display: inline-block;
  width: 20px;
  aspect-ratio: 1;
  border: 1px solid #686de0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s;
  font-weight: bold;
}

.payment_methods input[type="radio"]+label::after {
  content: "";
  display: inline-block;
  width: 10px;
  aspect-ratio: 1;
  border: 1px solid #686de0;
  background: #686de0;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s;
  font-weight: bold;
}

.payment_methods input[type="radio"]:checked+label::after {
  opacity: 1;
}

.payment_methods img {
  height: 40px;
  width: 50x;
}


.check_out_details_product_image {
  height: 70px;
}

.payment_methods hr {
  width: 100%;
  /* text-align: left; */
  /* margin-left: 0; */
  margin-top: 125px;
  color: #000;
}

.shipping_methods hr {
  width: 100%;
  /* text-align: left; */
  /* margin-left: 0; */
  /* margin-top: 125px; */
  color: #000;
}

.payment_methods form {
  width: 100%;
  height: 50px;
}

/* ################## END check_out page ####################*/


/*--------------------------------------------------------------
# Wishlist Page Start
--------------------------------------------------------------*/
.offcanvas-body .sidenav:hover {
  color: var(--primary);
}

.offcanvas-body .sidenav.active {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--white);
  background: var(--secondary);
  border-left: 6px solid var(--main);
  font-weight: bold;
}

/*--------------------------------------------------------------
# Product Page View Start
--------------------------------------------------------------*/
.list-group-item-action.active {
  background-color: var(--secondary);
  color: #000;
}

.list-group-item-action:focus,
.list-group-item-action:hover {
  background-color: var(--secondary);
  color: #000;
  transition: all 0.3s ease;
}

.product-wish-icon {
  bottom: 21px;
  right: 5px;
}


.breadcrumb {
  background-color: transparent;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: ">";
}

.enquiry .main-img {
  border-radius: 37px;
}

.enq-form {
  border-radius: 23px;
}

/* .portfolio-img-logo {
  max-width: 25%;
} */

.brand_logo_img {
  width: 120px;
}

.ratings i {
  color: var(--secondary);
}

.prod-hrs {
  letter-spacing: 2px;
}

.product-nav-items {
  font-size: 25px;
}

.product-nav-items a {
  color: #000;
}

.product-nav-items a.active {
  text-decoration: underline;
  text-decoration-color: #002e65;
}

.d-templates a:hover {
  text-decoration: underline;
  text-decoration-color: #002e65;
}

.prod-portfolio a:hover {
  text-decoration: underline;
  text-decoration-color: #002e65;
}

.products-side-container {
  height: 70vh;
}

#sidebar h4 {
  font-size: 18px;
}

.uv-flatbed-bg {
  background-image: url(../images/product/uv-flatbed.png);
  background-size: cover;
  height: 430px;
  background-position: center;
  background-repeat: no-repeat;
}

.prod-tech-content {
  max-width: 510px;
  float: right;
  margin-top: 90px;
  margin-right: 20px;
  font-size: 18px;
  text-align: right;
  align-content: justify;
}

.prod-tech-content hr {
  background: var(--secondary);
  padding: 2px;
  margin-left: 120px;
  width: 15em;
}

.prod-auto-mac {
  margin-top: 20px;
}

.prod-auto-mac-bg {
  background-image: url(../images/product/auto-machine.png);
  background-size: cover;
  height: 430px;
  background-position: center;
  background-repeat: no-repeat;
}

.prod-auto-mac-bg h4 {
  margin-left: 20px;
  padding-top: 20px;
  text-align: left;
}

.prod-auto-mac hr {
  background: var(--secondary);
  padding: 2px;
  margin-left: 20px;
  width: 22em;
}

.prod-auto-mac p {
  padding-top: 30px;
  font-size: 23px;
  margin-left: 20px;
}

.prod-print-perfection {
  margin-top: 24px;
}

.prod-print-perfect-bg {
  background-image: url(../images/product/print-perfect.png);
  background-position: center;
  background-size: cover;
  height: 430px;
  background-repeat: no-repeat;
}

.prod-print-perfect-content {
  max-width: 510px;
  float: right;
  margin-top: 45px;
  margin-right: 20px;
  font-size: 18px;
}

.prod-print-perfect-content h4 {
  text-align: right;
}

.prod-print-perfect-content p {
  text-align: right;
}


.prod-print-perfect-content hr {
  background: var(--secondary);
  padding: 2px;
  margin-left: 8rem;
  width: 21em;
}

.product-size-container {
  box-shadow: rgba(0, 0, 0, 0.24) 10px 10px 10px;
  border-radius: 10px;
}

#threemmsize h3 {
  padding-left: 20px;
}

/*  new product slider  */
.product-main-img {
	width: 100%;
	height: auto;
	overflow: hidden;
  background: #FFF;
}

.img-product-slide-container img {
  object-fit: contain;
}

.prod-main-back-img {
  width: 100px;
  height: 100px;
  border: 2px solid var(--secondary);
}

.prod-main-back-img img {
  max-height: 96px;
  object-fit: contain;
}

.prod-img-wraper-Font img {
  max-height: 96px;
  object-fit: contain;
}

.prod-main-font-img {
  width: 100px;
  height: 100px;
  border: 2px solid var(--secondary);
}

.back_foot{
  height: auto;
  width: 100px;
  font-size: 10px;
}

.view-diy-btn {
  background-color: #f0f0f0;
  color: #000;
  text-decoration: none;
  border: #606060 2px solid;
  text-transform: capitalize;
  font-size: clamp(0.75rem, 0.5417rem + 0.2778vw, 0.875rem);
  padding: 6px;
  width: 100%;
  display: inline-block;
  text-align: center;
  font-weight: bold;
}

.view-design-mock-btn {
  background-color: #fdeeba;
  color: #000;
  text-decoration: none;
  border: #676767 2px solid;
  text-transform: capitalize;
  font-size: clamp(0.75rem, 0.5417rem + 0.2778vw, 0.875rem);
  padding: 6px;
  width: 100%;
  display: inline-block;
  text-align: center;
  font-weight: bold;
}

.view-diy-btn:hover, .view-design-mock-btn:hover {
  background-color: var(--secondary);
  color: #fff;
}

.pricechart-btn span{
  font-size: 14px;
}

.pricechart-btn:hover {
  background-color: var(--secondary);
  color: #fff;
}



.small-img {
  /* height: 120px; */
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
}

.small-img .icon-left, .small-img .icon-right {
  width: 12px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.small-img .icon-left { transform: rotate(180deg) }
.small-img .icon-right { right: 0; }
.small-img .icon-left:hover, .small-img .icon-right:hover { opacity: .5; }
.small-container {
  width: 87%;
  /* height: 120px; */
  overflow: hidden;
  position: relative;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.small-container div {
  width: 800%;
  position: relative;
}

.small-container .show-small-img {
  width: 70px;
  height: 100%;
  padding: 5px;
  margin-right: 10px;
  cursor: pointer;
  float: left;
}

.small-container .show-small-img:last-of-type { 
  margin-right: 0; 
}

/**  end slider  */

.zender-box ul li {
	position:relative;
	float:left;
	text-align:center;
	list-style: none;
    margin: 0 3px;
}
.zender-box h4 {
	font-size:20px;
	color:#000;
}
.zender-box-boxes {
	border:1px solid #d2d2d2;
	display:inline-block;
	width:46px;
	text-align: center;
}
.zender-box-boxes-color {
	font-size:12px;
	color:#000;
	display:block;
	text-align:center;
	margin-bottom: 5px;
}
#sizegender .nav-tabs > li > a {
	border-radius: 0;
	color: #fff;
	font-size: 15px;
	padding: 4px 16px;
	margin-right: 5px;
	/* font-weight: bold; */
	background-color: #cccccc;
}
#sizegender .nav-tabs > li.active > a, #sizegender .nav-tabs > li.active > a:focus, #sizegender .nav-tabs > li.active > .categorie > a:hover {
	background-color: #f5a12b;
	color:#fff;
	

}

/* product page tab section */

.data_more_less_inner {overflow: hidden; margin-bottom: 20px; position: relative;}

.action_less {display: none;}

.less_active .action_less {display: inline-block;}

.less_active .action_more {display: none;}

.data_more_less:not(.less_active):not(.action_disabled) .data_more_less_inner:after {

    content: ''; 

    display: block; 

    position: absolute; 

    bottom: 0; 

    left: 0; 

    width: 100%; 

    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);

  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);

  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);

  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); 

  height: 120px;

}

.data_more_less.action_disabled .more_less_action {display: none;}

/* magnifying glass icon */

.zoom:after {
	content:'';
	display:block; 
	width:33px; 
	height:33px; 
	position:absolute; 
	top:0;
	right:0;
	background:url(../images/icon.png);
}

.zoom img {
	display: block;
}

.zoom img::selection { 
  background-color: transparent; 
}

/* Product Page End */

/* PACKAGE PRODUCT START */

.product_border {
  border-bottom: 1px solid #dddddd;
  margin-top: 15px;
  margin-bottom: 15px;
}



/* PACKAGE PRODUCT END */


/* Corflutes Page */
.corflutes-navbar {
  background: #0c1e2f;
}

.cor-highlights {
  background: #aaaaaa;
}

.cor-breadcrumbs li a {
  color: #0C1E2F;
  font-weight: 500;
}

.cor-form-board {
  background: #DCDFE1;
  border-radius: 20px;
}

.cor-browse-btn {
  font-size: 16px;
  font-weight: 700;
  background: var(--secondary);
}

.cor-browse-btn a {
  color: #fff;
}

.cor-form-bg {
  border-radius: 20px;
}

.cor-form-bg h3 {
  font-size: 23px;
}

.prod-details-smal-icons p a {
  color: #212529;
}

.cor-prod-highlights-bg {
  background: #E5E5E5;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cor-prod-highlights-bg .cor-text {
  font-weight: 500;
  font-size: 12px;
  padding: 3px;
}

.chart-margin {
  margin-top: 1.5rem !important;
}

.cor-form-upload {
  background-color: #fff;
  padding: 12px;
  border: 3px solid var(--secondary);
  text-align: center;
  width: 100%;
  margin-right: 5px;
  margin-left: 5px;
  cursor: pointer;
}

.cor-form-upload-input-btn {
  background: none!important;
  border: none;
  padding: 0!important;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

.cor-form-upload a {
  color: #000;
}

.cor-form-upload a:hover,
.cor-form-upload a:focus,
.cor-form-upload.active a,
.cor-form-upload.active p,
.cor-form-upload.active a:active {
  color: var(--primary);
}

.cor-form-upload:hover,
.cor-form-upload:focus,
.cor-form-upload.active {
  background: var(--secondary);
  border: 3px solid var(--primary);
}

.cor-form-upload-row {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cor-form-upload:hover span,
.cor-form-upload:focus span,
.cor-form-upload.active span {
  color: #fff;
}

.cor-form-upload span {
  color: #000;
}

.cor-form-upload {
  font-weight: 600;
  font-size: 12px;
}

.cor-instant-quote {
  background: #DCDFE1;
  color: #0c1e2f;
  border: 1px solid #DCDFE1;
  /* margin-bottom: 5px; */
}

.ask_quote_submit {
  background: var(--secondary);
}

.cor-prod-nav {
  background: #0D1E30;
}

.cor-prod-nav .nav-item a {
  color: #fff;
  font-size: 27px;
}

.cor-prod-nav .nav-item a:hover,
.cor-prod-nav .nav-item a.active {
  color: var(--secondary);
}

.cor-prod-features-head {
  color: var(--secondary);
}

.cor-features .figure-caption {
  font-weight: 600;
}

.cor-size-guide h5 {
  font-size: 27px;
}

.cor-size-guide h5::before,
.cor-size-guide h5::after {
  display: inline-block;
  width: 20%;
  height: 20px;
  background: var(--secondary);
  content: "";
  margin: 0 2rem;
  border-top: 0.6rem solid var(--secondary);
}

.cor-size-caption {
  font-family: 'Bebas Neue', cursive;
  color: #000;
  font-size: 22px;
}

.cor-op-steps {
  padding-top: 10px;
}

.cor-options {
  background: #4F4F4E;
}

.cor-options p {
  color: #fff;
  font-size: 25px;
}

.cor-slider-1 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cor-flatbed-tech-img-holder,
.cor-print-perf-img-holder {
  border-right: 3px solid var(--secondary);
  padding-right: 5px;
}

.cor-flatbed-tech h3 {
  color: #4F4F4E;
  font-size: 27px;
  margin-bottom: 0;
}

.cor-flatbed-tech hr {
  height: 3px;
  background: var(--secondary);
  width: 275px;
  margin: 0;
}

.cor-auto-mac h3 {
  color: #283D76;
  margin-bottom: 0;
}

.cor-auto-mac hr {
  height: 3px;
  background: var(--secondary);
  width: 27rem;
  margin: 0;
}

.cor-auto-mac-img-holder {
  border-left: 3px solid var(--secondary);
  padding-left: 5px;
}

.cor-auto-mac p {
  color: #283D76;
  font-weight: 500;
}

.cor-print-perfection hr {
  height: 3px;
  background: var(--secondary);
  width: 27rem;
  margin: 0;
}

.cor-case-study h4 {
  color: #0c1e2f;
}

.cor-sol-points i {
  color: var(--secondary);
}

.cor-industry {
  background: #DCDFE1;
}

.cor-industry p {
  color: #A6ABAF;
  font-size: 25px;
}

.cor-industry .fa-industry,
.cor-industry .fa-list-alt,
.cor-industry .fa-user {
  color: var(--secondary);
}

.cor-industry-desc {
  font-size: 15px;
  font-weight: 500;
}

.cor-golden-plus .carousel-indicators {
  bottom: -56px;
}

.cor-golden-plus .carousel-indicators li.active {
  background-color: #707070;
  width: 15px;
  border-radius: 50%;
  height: 15px;
}

.cor-golden-plus .carousel-indicators li {
  background-color: #CACACA;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.cor-ind-select:hover {
  background: var(--primary);
  color: #fff;
}

.cor-mytooltip {
  display: inline;
  position: relative;
  z-index: 999;
}

.cor-mytooltip .cor-tooltip-item {
  background: transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  padding: 0px 10px;
}

.cor-mytooltip .cor-tooltip-content {
  position: absolute;
  z-index: 9999;
  width: 360px;
  left: 50%;
  margin: 0 0 20px -180px;
  bottom: 100%;
  text-align: left;
  font-size: 14px;
  line-height: 30px;
  -webkit-box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
  box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
  background: #2b2b2b;
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

.cor-mytooltip .cor-tooltip-content::after {
  content: '';
  top: 100%;
  left: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #2a3035 transparent transparent;
  border-width: 10px;
  margin-left: -10px;
}

.cor-mytooltip .cor-tooltip-content img {
  position: relative;
  height: 140px;
  display: block;
  float: left;
  margin-right: 1em;
}

.cor-mytooltip .cor-tooltip-item::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 20px;
  bottom: 100%;
  left: 50%;
  pointer-events: none;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.cor-mytooltip:hover,
.cor-my-tooltip-item::after {

  pointer-events: auto;

}

.cor-mytooltip:hover .cor-tooltip-content {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0deg);
  transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0deg)
}

.cor-mytooltip:hover .cor-tooltip-content2 {
  opacity: 1;
  font-size: 18px;
}

.cor-mytooltip .cor-tooltip-text {
  font-size: 14px;
  line-height: 24px;
  display: block;
  padding: 1.31em 1.21em 1.21em 1em;
  color: #fff;
}

.prod-form .col-form-label {
  font-size: 14px;
}

.cor-email {
  color: #0c1e2f;
  font-size: 15px;
  padding-right: 10px;
}

.cor-prod-time {
  font-size: 16px;
  padding-left: 10px;
  font-weight: 600;
}

.cor-footnotes {
  background: #DCDFE1;
  border-radius: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0;
  width: 100%;
}

.cor-foot-links::before {
  display: inline-block;
  content: '';
  -webkit-border-radius: 0.375rem;
  border-radius: 0.375rem;
  height: 0.5rem;
  width: 0.5rem;
  margin-right: 0.5rem;
  background-color: var(--main);
}

.cor-foot-links {
  font-size: 12px;
  text-decoration: underline;
}

.cor-print {
  color: var(--black);
}

.cor-print:hover {
  color: var(--primary);
}

.cor-order-process {
  margin: 0 auto;
  border: 2px solid #F9B513;
  padding: 10px;
  border-radius: 10px;
}

.cor-more-details {
  color: #0c1e2f;
}

.cor-add-to-cart-btn {
  background: #0c1e2f;
  font-weight: 700;
}

.cor-add-to-cart-btn:hover {
  background: #142C44;
  border: 1px solid #142C44;
}

/************START corflutes-drag&drop*************/

.dotted {
  margin-bottom: 12px;
  border: 1px solid var(--secondary);
  background-color: #e9f0f3;
}


.watermark-choose-file-wrapper {
  display: flex;
  width: 100%;
  height: 220px;
}

.pop-up-watermark {
  width: 50%;
}

.choose-file-text-wrapper {
  width: 50%;
  margin-top: 9px;
  margin-right: 20%;
}

.pop-up-watermark img {
  margin-left: 20%;
  margin-top: 33px;
  height: 140px;
}

.dotted h4 {
  color: var(--secondary);
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.5px;
  padding-top: 35px;
}

.dotted p {
  color: #000;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.file {
  position: relative;
  overflow: hidden;
  background-color: var(--secondary);
  border-radius: 20px;
}

.file input {
  position: absolute;
  font-size: 20px;
  opacity: 0;
  right: 0;
  top: 0;
}

.file-drop-area {
  position: relative;
  align-items: center;
  width: 450px;
  max-width: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  transition: 0.2s
}

.choose-file-button {
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 8px 15px;
  margin-right: 10px;
  font-size: 12px;
  text-transform: uppercase
}

.file-message {
  font-size: small;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0
}


.common-banner-modal-btn {
  padding: 1px 3px;
  font-size: 12px;
}
/************END corflutes-drag&drop*************/


/* =================  hi vis wear page =====================*/

.hivis-prod-brand {

  right: 40px;

  bottom: 16px;

}

/* ================= hi vis wear end =======================*/

/* =============== list view page start ====================*/

.tee-name {

  color: var(--secondary);

}

.list-text {

  font-size: 18px;

  color: #000;

}

.size-text {

  color: var(--secondary);

}

.hilite-points {

  color: var(--main);

}

.prod-text .btn {

  background: var(--secondary);

  color: #fff;

  font-weight: bold;

}

.prod-text .btn:hover {

  background: var(--main);

  transition: all 0.3s ease;

}

.vl {

  border: 6px;

  height: 364px;

}

.price-chart h4 {

  color: var(--secondary);

}

.price-chart-card {

  height: 313px;
  overflow: hidden;

}

.modal-card-product-img{

  height: 200px;
  text-align: center;

}

/* #product-tab-category .nav-link,
#designportffolio-tab-category .nav-link{
  background-color: #84868a;
  color: #fff;
  border: 1px solid #fff;
}

#product-tab-category .nav-link.active,
#designportffolio-tab-category .nav-link.active{
  background-color: var(--secondary);
} */


/* View Page Tab Start */

.view-page-title {
  color: var(--secondary);
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 1rem;
  border-bottom: 2px solid #d3d3d3;
  text-decoration: underline;
  text-decoration-color: var(--main);
  text-underline-offset: 7px;
  margin-bottom: 1rem;
}


#product-tab-category {
  border-bottom: 2px solid #d3d3d3;
  margin-bottom: 1rem;
}

#product-tab-category li>a {
  text-decoration: none;
  color: #000;
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 1rem;
}

#product-tab-category li>a:hover {
  color: var(--secondary);
  text-decoration: underline;
  text-decoration-color: var(--main);
  text-underline-offset: 7px;
}

#product-tab-category li>a.active {
  color: var(--secondary);
  text-decoration: underline;
  text-decoration-color: var(--main);
  text-underline-offset: 7px;
}

/* View Page Tab Start */

#sizetabs .nav-link.active {
  color: var(--main);
}

.price-chart hr {
  width: 249px;
}

.selectpicker {
  border: 2px solid var(--secondary);
  border-radius: 10px;
}

.list-image .product-bs-label {
  left: 3px;
}

.list-view-prod-brand {
  right: 20px;
  top: 37%;
  text-align: center;
}

.list-view-prod-bs-label {
  padding: 5px 11px;
  left: 5px;
  top: 10px;
}

/* ================  list view end ========================*/

/* ================== aluminium composite ================*/

.alu-product-wish-icon {

  bottom: 80px;

  right: 61px;

}

.alu-comp-prod-hrs {

  letter-spacing: 1px;

}

.alu-main-img {

  border-radius: 40px;

}

.alu-form {

  border-radius: 40px;

}

.list-group {

  letter-spacing: 2px;

}

.alu-product-nav-items {

  font-size: 29px;

}

.alu-product-nav-items a.active {

  text-decoration: underline;

}

.alu-product-nav-items a:hover {

  text-decoration: underline;

}

/* =================== aluminium composite end =============*/

/* Bootstrap Lightbox using Modal */

#profile-grid {

  overflow: auto;

  white-space: normal;

}

#profile-grid .profile {

  padding-bottom: 40px;

}

#profile-grid .panel {

  padding: 0;

}

#profile-grid .panel-body {

  padding: 15px;

}

#profile-grid .profile-name {

  font-weight: bold;

}

#profile-grid .thumbnail {

  margin-bottom: 6px;

}

#profile-grid .panel-thumbnail {

  overflow: hidden;

}

#profile-grid .img-rounded {

  border-radius: 4px 4px 0 0;

}


/*************************************  order process start ************************************/

.op-hero .jumbotron {
  background-image: url(../images/order-process/hero-img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
}

.op-hero .display-2 {
  color: var(--main);
  text-shadow: 0px 0px 0 rgb(229, 157, 0), 1px 1px 0 rgb(204, 132, 0),
  2px 2px 0 rgb(179, 107, 0), 3px 3px 2px rgba(133, 122, 92, 0.6),
  3px 3px 1px rgba(133, 122, 92, 0.5), 0px 0px 2px rgba(133, 122, 92, 0.2);
  font-size: 7.5rem;
}

.op-hero .lead {
  text-shadow: 0px 0px 0 rgb(180, 180, 180), 0px 1px 0 rgb(130, 130, 130),
  0px 2px 1px rgba(255, 255, 255, 0.08), 0px 2px 1px rgba(255, 255, 255, 0.5),
  0px 0px 1px rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

/*--------------------------------------------------------------
# Job Details Page Buttons Start
--------------------------------------------------------------*/

.op-progress-steps {
  background-image: url(../images/order-process/order-step-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.op-steps-form .op-steps-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.op-steps-form .op-steps-row .op-steps-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-basis: calc(20% - 10px);
  margin: 5px;
  box-sizing: border-box;
  padding: 5px;
  background-color: #e0e0e0;
  cursor: pointer;
}

.op-steps-form .op-steps-row .op-steps-step:hover {
  box-shadow: rgba(45, 152, 209, 0.3) 0px 0px 0px 3px;
}


.op-steps-form .op-steps-row .op-steps-step p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.op-steps-inner-contents img {
  margin-top: 0.5rem;
  width: 50px;
  height: 50px;
}

/*--------------------------------------------------------------
# Job Details Page Buttons End
--------------------------------------------------------------*/

/*********** accordion **************/

.tooltip-pickup {

  @include tooltip-pickup(#f2653c, #ffffff);

}

/*--------------------------------------------------------------
# Job Details Page Start
--------------------------------------------------------------*/

.op-acc-header {
  color: #000;
  font-size: clamp(1.5rem, 1.3929rem + 0.2976vw, 1.75rem);
  font-weight: 600;
  text-transform: uppercase;
}

.op-acc-header span {
  text-shadow: none;
  color: var(--secondary);
}

.op-acc-img {
  width: 50px;
  height: 50px;
}

.op-card-head-status {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}

.op-card-head-status span {
  color: var(--secondary);
  text-shadow: 1px 1px 2px #707070;
}

.op-card-head-issue-date span {
  font-weight: 600;
}

.op-card-head-invoice span {
  font-weight: 600;
}

.op-btn-invoice {
  font-weight: 600;
  border-radius: 20px;
  background: #0c1e2f;
  font-size: clamp(0.75rem, 0.6429rem + 0.2976vw, 1rem);
}

.op-btn-invoice:hover {
  background: var(--secondary);
}

.op-card-head-invoice-status {
  font-size: 1.5rem;
  text-shadow: 2px 2px 8px #dfe6e9;
  font-weight: bold;
}

.op-accordion .btn {
  color: #000000;
}

.op-accordion .parent-jb-process-card-header::after {
  float: right;
  content: "\f056";
  font-family: "FontAwesome";
  position: absolute;
  right: 20px;
  top: 40px;
}

.op-accordion .parent-jb-process-card-header.collapsed::after {
  content: "\f78c";
  color: var(--secondary);
  position: absolute;
  right: 20px;
  top: 40px;
}

.quote-text {
  font-size: 1.25rem;
  font-weight: bold;
}

.quote {
  color: var(--secondary);
  font-weight: 600;
}

.request {
  font-size: 2rem;
}

.op-btn-quote {
  background: #fff;
  font-weight: bold;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 5px 5px 6px;
  margin-left: 10px;
}

.op-btn-quote:hover {
  background: var(--secondary);
  color: #fff;
}

.op-pickup-btn,
.op-delivery-btn {
  background: #fff;
  border-radius: 20px;
  max-width: 180px;
  border: none;
}

.op-pickup-radio:hover {
  border-color: #fff;
}

.op-pickup-btn p,
.op-delivery-btn p {
  font-size: 12px;
}

.op-pickup-btn label:hover {
  color: #fff;
}

.fa-store,
.fa-shipping-fast {
  font-size: 4rem;
}

.op-pickup-btn:hover {
  color: #fff;
  background: var(--secondary);
}

.op-delivery-btn.active,
.op-delivery-label {
  background-color: var(--secondary);
  color: #fff;
}

.op-edit-btn {
  display: inline-block;
  background-color: var(--secondary);
  border: 1px solid #000;
  border-radius: 10px;
  color: #fff;
  padding: 3px 8px;
  margin: 5px 3px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  font-size: 0.75rem;
}

.op-edit-btn:hover {
  color: #fff;
  background-color: var(--main);
}

.op-update-btn {
  background: var(--secondary);
  color: #fff;
  border-radius: 12px;
  font-size: 7px;
}

.op-update-btn:hover {
  color: var(--secondary);
}

.deliver-address-board {
  border-radius: 10px;
}

.op-card-head-approval {
  text-shadow: 2px 2px 8px #dfe6e9;
  font-weight: 500;
  margin-top: 10px;
}

.op-card-head-approval span {
  font-weight: 600;
  color: var(--secondary);
}

.op-in-prod-header-btn {
  font-weight: 600;
  border-radius: 10px;
  margin-top: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 3px 3px 10px;
  background: #0c1e2f;
}

.op-in-prod-header-btn:hover {
  background: var(--secondary);
}

#pills-resident-tab,
#pills-comm-address-tab {
  border-radius: 50px;
}

#pills-resident-tab {
  color: #000;
}

#pills-resident-tab:focus {
  color: #fff;
  background: var(--secondary);
}

.op-commercial a {
  color: #000;
}

.op-col-form-label {
  font-size: 7px;
}

.form-check-label
{
  font-size: 16px;
}

/*em{
  color: red;
}*/

.op-delivery-note {
  position: relative;
  max-width: 30em;
  font-size: 10px;
  background-color: #fff;
  padding: 1.125em 1.5em;
  border-radius: 1rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.3),
    0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2);
}

.op-delivery-note::before {
  content: "";
  position: absolute;
  border: 20px solid transparent;
  border-right-color: #fff;
  top: 50%;
  left: -4px;
  margin-top: -20px;
  margin-left: -36px;
  filter: drop-shadow(0 -0.0625rem 0.0625rem rgba(0, 0, 0, 0.1));
}

.op-contrast-tee-card,
.op-hoodies-card,
.op-polo-card {
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.op-tee-bg,
.op-hoodies-bg,
.op-polo-bg {
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 6px;
}

.job-no {
  background: #3b3b3b;
}

.op-hoodies-desc,
.op-polo-desc {
  font-size: 10px;
  padding-top: 20px;
}

.op-contrast-tee-card-lock .btn,
.op-hoodies-card-lock .btn,
.op-polo-card-lock .btn {
  color: #acacac;
  right: 0px;
  top: 0px;
}

.op-unisex-size-rows {
  display: flex;
}

.op-kids-size-rows {
  display: flex;
}

.op-tee-sizes .nav-link.active,
.op-hoodies-sizes .nav-link.active,
.op-polo-sizes .nav-link.active {
  background: var(--secondary);
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 6px;
}

.op-tee-sizes a,
.op-hoodies-sizes a,
.op-polo-sizes a {
  color: #000;
}

.nav-pills .nav-link.active {
  background: var(--secondary);
}

.op-coupon-code {
  font-size: 9px;
}

.op-tee-logos .nav-link,
.op-hoodies-logos .nav-link,
.op-polo-logos .nav-link {
  color: #000;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.op-tee-logos .nav-link:focus,
.op-hoodies-logos .nav-link:focus,
.op-polo-logos .nav-link:focus {
  background: var(--secondary);
}



.enquiry .op-unisex-head,
.enquiry .op-kids-head {
     top: -20px;
     font-size: 14px;
}

.op-unisex-head,
.op-kids-head {
  border-radius: 10px;
  top: -15px;
  font-size: 10px;
  left: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 5px;
}

.op-unisex-head p,
.op-kids-head p {
  font-weight: 600;
}

.op-size {
  font-size: 14px;
  font-weight: 500;
  color: #3b3b3b;
}

.op-size-input-box {
  width: 40px;
  height: 25px;
	text-align: center;
}

.bd-highlight input[type="text"] {
  border: none;
  outline: none;
}

.op-unisex-board input:not(:placeholder-shown) {
  background: #FFF;
}

.op-kids-board {
  border-radius: 10px;
  margin-top: 2rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 10px;
  margin-bottom: 20px;
}

.deco-details {
  background: #ebedf0;
  border-radius: 20px;
}

.unisex-logo-bg {
  border-radius: 5px;
}

#pills-tee-size-tab,
#pills-tee-logo-tab,
#pills-hoodies-size-tab,
#pills-hoodies-logo-tab,
#pills-polo-size-tab,
#pills-polo-logo-tab,
#invoice-pills-tee-size-tab,
#invoice-pills-tee-logo-tab,
#invoice-pills-hoodies-size-tab,
#invoice-pills-hoodies-logo-tab,
#invoice-pills-polo-size-tab,
#invoice-pills-polo-logo-tab {
  font-size: 12px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.coupon-code-input-box {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.op-invoice {
  color: var(--secondary);
}

.op-invoice-text {
  font-size: 22px;
  font-weight: 700;
}

.op-issue-date span,
.op-invoice-number span {
  color: var(--secondary);
}

.op-issue-date,
.op-invoice-number {
  font-weight: 600;
}

.op-pay-table-board {
  border: 3px solid #0c1e2f;
  border-radius: 10px;
}

.op-pay-table-head {
  border: 3px solid #0c1e2f;
  border-radius: 10px;
  top: -20px;
  left: -3px;
  width: 9em;
  height: 2.5em;
}

.seperator {
  height: 2px;
  background: #707070;
}

.op-invoice-download {
  border-radius: 20px;
  background-color: #041324;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.apply-btn {
  font-size: 9px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.op-invoice-download:hover {
  background-color: var(--secondary);
}

.op-order-total {
  font-size: 12px;
  font-weight: 600;
}

.op-pay-history {
  color: var(--secondary);
  font-size: 1.375rem;
}

.op-pay-history-details {
  border-radius: 20px;
  font-weight: 600;
  font-size: 11px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.op-history-receipt-btn {
  display: inline-block;
  color: #fff;
  font-size: 0.625rem;
  padding: 4px 8px;
  border-radius: 20px;
  background: #041324;
  font-weight: bold;
  text-transform: capitalize;
}

.op-history-receipt-btn:hover {
  background: var(--secondary);
}

/*********** pre-production ***************/

.op-pre-prod-text span {
  color: #47C0EA;
}

.op-pre-prod-text {
  font-size: 25px;
}

.op-artwork-approve-text {
  font-size: 15px;
}

.op-artwork-approve-text span {
  color: #47C0EA;
  font-size: 14px;
}

.op-notice-board {
  border: 1px solid #707070;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 5px 5px 5px;
}

.op-notice-board-head {
  border: 1px solid #707070;
  background: #151011;
  border-radius: 10px;
  top: -19px;
  left: -3px;
  width: 9em;
  height: 2.5em;
}

.op-notice-board-head p {
  font-size: 12px;
}

.op-notice-details {
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1px;
}

.op-preview-mockup-board {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.op-prev-img-holder {
  border-radius: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.op-prev-img-holder-head {
  border-radius: 10px;
  top: -1rem;
  left: 0em;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  font-size: 10px;
}

.op-accept-btn {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.op-reject-btn {
  background: #ff2c2c;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 5px 5px 6px;
}

.op-reject-btn:hover {
  background: #ff7979;
}

.op-accept-2-btn {
  background: #2fe314;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 5px 5px 6px;
}

.op-accept-2-btn:hover {
  background: #44bd32;
}

.op-mockup-desc {
  font-size: 15px;
}

.op-lhs-breast .card-header,
.op-std-back .card-header {
  background: #707070;
  border-radius: 20px 20px 0 0;
  font-size: 12px;
}

.op-lhs-breast,
.op-std-back {
  border-radius: 20px;
  width: 13vw;
  font-size: 7px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 6px;
}

.op-lhs-breast .card-footer,
.op-std-back .card-footer {
  background: #707070;
  border-radius: 0 0 20px 20px;
}

.op-mockup-desc p {
  margin-bottom: 0;
}

/******************** in production *******************/

.op-in-prod-text {
  font-size: clamp(1.5rem, 1.3929rem + 0.2976vw, 1.75rem);
}

.op-in-prod-text span {
  color: #47C0EA;
}

.op-in-prod-display-board {
  border-radius: 20px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.op-in-prod-result-highlight {
  background: #47C0EA;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.24) 5px 5px 6px;
}

.op-in-prod-mockup-desc {
  font-size: 12px;
}

.op-in-prod-result-highlight p {
  font-size: 9px;
}

.op-in-prod-lhs-breast,
.op-in-prod-std-back {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 6px;
}

.op-in-prod-lhs-breast .card-header,
.op-in-prod-std-back .card-header {
  background: #707070;
  border-radius: 20px 20px 0 0;
  font-size: 10px;
}

.op-in-prod-lhs-breast .card-footer,
.op-in-prod-std-back .card-footer {
  background: #707070;
  border-radius: 0 0 20px 20px;
  font-size: 10px;
}

.op-complete-btn {
  background: var(--secondary);
  font-weight: 600;
  border-radius: 10px;
  font-size: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 3px 3px 10px;
}

.op-pending-btn {
  font-weight: 600;
  border-radius: 10px;
  font-size: 15px;
  background: #0c1e2f;
  box-shadow: rgba(0, 0, 0, 0.24) 3px 3px 10px;
}

.op-hold-btn {
  background: #ff2c2c;
  font-weight: 600;
  border-radius: 10px;
  font-size: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 3px 3px 10px;
}

.op-in-prod-left-chevron {
  left: -63px;
  color: #000;
}

.op-in-prod-right-chevron {
  right: -63px;
  color: #000;
}

/************************** post production **********************/

.op-post-prod-text {
  font-size: clamp(1.5rem, 1.3929rem + 0.2976vw, 1.75rem);
}

.op-post-prod-text span {
  color: #47C0EA;
}

.op-post-sub-head {
  font-size: clamp(1rem, 0.9464rem + 0.1488vw, 1.125rem);
  font-weight: 600;
}

.op-post-sub-head span {
  color: #47C0EA;
}

.op-courier-status {
  font-size: clamp(1rem, 0.9464rem + 0.1488vw, 1.125rem);
  font-weight: 600;
}

.op-courier-status span {
  color: #47C0EA;
  font-weight: 700;
}

.op-tracking,
.op-courier {
  font-size: clamp(1rem, 0.9464rem + 0.1488vw, 1.125rem);
}

.op-delv-track .btn {
  border-radius: 20px;
  background: #fff;
  font-size: 25px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-bottom: 5rem;
}
/************** product delivered ***************/

.op-prod-delv-text span {
  color: var(--secondary);

}

.op-prod-delv-text {
  font-size: clamp(1.5rem, 1.2857rem + 0.5952vw, 2rem);
}

.op-prod-delv-table-head tr {
  font-size: clamp(1.5rem, 1.2857rem + 0.5952vw, 2rem);
}

.op-tbl-order-process-product-deliver {
  display: inline-table;
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
  border-collapse: collapse;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.op-tbl-order-process-product-deliver tr {
  background-color: #707070 !important;
}

.op-tbl-order-process-product-deliver tr th {
  width: auto;
  padding: 10px;
}

/******************* review **************/

.op-review-text {
  font-size: 40px;
}

.op-review-text span {
  color: var(--secondary);
}

.op-feedback-review-board {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.op-feedback-sub {
  font-weight: 700;
  font-size: 12px;
}

.rating-star i {
  color: var(--secondary);
}

.op-share-details {
  font-size: 12px;
  font-weight: 700;
}

.op-details-input {
  outline: 0;
  border-width: 0 0 2px;
  border-color: #707070;
  width:90%;
  margin:5%;
}

.op-img-holder {
  border-radius: 10px;
}

.op-cancel-btn {
  font-weight: 600;
}

.op-cancel-btn:hover {
  color: #ff2c6c;
}

.op-submit-btn {
  color: #707070;
  font-weight: 600;
}

.op-submit-btn:hover {
  color: #000;
}

.op-table-body {
  background: #fff;
  border-right: 2px solid #000;
  font-weight: 500;
  padding: 10px;
}

.op-table-body .fas,
.op-table-body .far {
  color: #000;
}

.op-global-table-body {
  background: #fff;
  font-weight: 500;
  padding: 10px;
}

/************************************** order process end ***************************************/

/*portfolio-tabs-start*/
.portfolio-project-tab #tabs{
  background: #007b5e;
  color: #eee;
}

.portfolio-project-tab #tabs h6.section-title{
  color: #eee;
}

.portfolio-project-tab .nav-tabs .nav-link {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  color: #000000;
}

.portfolio-project-tab .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  color: var(--secondary);
  font-size: 16px;
  font-weight: 600;
}

.portfolio-project-tab .nav-link:hover {
  border: none;
}

.portfolio-project-tab thead{
  background: #f3f3f3;
  color: #333;
}

.portfolio-project-tab a{
  text-decoration: none;
  font-weight: 600;
}

.portfolio-project-tab .productivity-wraper{
  position:relative;
}

.portfolio-project-tab .productivity-wraper:hover .product-c-img-effect{
  transform: scale(1.1); 
  transition: transform .5s ease-in;
}

.portfolio-project-tab .productivity-wraper:hover .overlay-into{
  opacity: 0.5;
  transition: opacity 0.5s;
}

.portfolio-project-tab h3::before, .portfolio-project-tab h3::after {
	display: inline-block;
	width: 10%;
	height: 20px;
	background: var(--secondary);
	content: "";
	margin: 0 2rem;
	border-top: 0.6rem solid var(--secondary);
}

.portfolio-project-tab .card-wrapper {
  margin-bottom: 30px;
  height: 150px;
}

.portfolio-project-tab .card-image .card .card-img-wrapper {
  height: 100%;
}

.portfolio-project-tab .card-image .card .card-body {
  display: none;
}

.portfolio-project-tab .card-image-title-description .card .card-img-wrapper {
  max-height: 160px;
}

.portfolio-project-tab .card-image-title-description .card {
  position: relative;
  min-height: 300px;
}

.portfolio-project-tab .card-image-title-description .card .card-body {
  height: auto;
  position: relative;
  top: 0;
  margin-bottom: -70px;
}

.portfolio-project-tab .card-image-title-description .card:hover .card-body {
  top: -70px;
}

.portfolio-project-tab .card-image-title-description .card .card-body .card-title {
  margin-bottom: .75rem;
}

.portfolio-project-tab .card {
  display: inline-block;
  position: relative;
  overflow: hidden;
  min-height: 0px;
  height: 100%;
  box-shadow: 5px 5px 5px 5px #ebeced;
  width: 100%;
  background-color: #fff;
}

.portfolio-project-tab .card-img-wrapper {
  display: inline-block;
  position: relative;
  overflow: hidden;
  min-height: 0px;
  height: 100%;
  background-color: #fff;
  padding: 12px;
}

.portfolio-project-tab .card-img-wrapper img {
  transition: 1.5s ease;
  height: 100%;
}

.card:hover .card-img-wrapper img {
  transform: scale(1.15);
}

.portfolio-project-tab .card-body .card-title {
  margin-bottom: calc(50% + 20px);
  transition: 1.5s ease;
  font-size: 15px;
  line-height: 10px;
  margin-top: -8px;
  font-weight: bold;
}

.portfolio-project-tab .card-body p{
  font-size: 10px;
  line-height: 12px;
}

.portfolio-project-tab .card:hover .card-body .card-title {
  margin-bottom: .85rem;
}

.portfolio-project-tab .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background-color: #fff0;
  transition: 1.5s ease;
  opacity:0;
}

.portfolio-project-tab .card-content {
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
  transition: 1.5s ease;
}

.portfolio-project-tab .card:hover .card-body {
  height: 40%;
  background-color: #fff;
  opacity:1;
}

.portfolio-project-tab .card:hover .card-content {
  bottom: 0;
}

.portfolio-project-tab .overlay-into {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  padding: 20px;
  transition: opacity 0.5s;
}

.portfolio-project-tab .card:hover .overlay-into{
  opacity: 0.5;
  transition: opacity 0.5s;
}

.portfolio-project-tab .card .card-fas-plus-icon{
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  top: 5px;
  right: 0px;
  border-bottom-left-radius: 10px;
  opacity: 0;
  float: right;   
}

.portfolio-project-tab .fa{
  color:white;
  padding-top:10px;
  text-align: center;
}

.portfolio-project-tab .card:hover .card-fas-plus-icon{
  top:0px;
  transform:translateZ(-9.7rem);
  animation: fadeIn 1s ease-in both;
  opacity: 1;
  z-index:999;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translate3d(50%, -60%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.portfolio-top-wrapper {
  padding-top: 45px;
  padding-bottom: 15px;
}

.portfolio-top-wrapper .portfolio-title {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 1rem;
}

.portfolio-top-desc {
  font-size: 1.25rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-decoration-line: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--main);
  text-underline-offset: 10px;
}

.potrfolio-filter-by {
  background-color: var(--light-blue);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.potrfolio-filter-by select {
  height: 32px;
  font-size: clamp(0.75rem, 0.6964rem + 0.1488vw, 0.875rem);
  border-radius: 0;
  border-color: #efefef;
}

.portfolio-reset-btn {
  height: 32px;
  font-size: clamp(0.75rem, 0.6964rem + 0.1488vw, 0.875rem);
  border: 2px solid var(--secondary);
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.portfolio-reset-btn:hover {
  background: var(--secondary);
  color: white;
}

.portfolio-img-container {
  height: 400px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-img-container img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

/* Portfolio Pagination Start */

.new-pagination-container {
  background: #e5e5e5;
  padding: 1.5rem 0;
  margin: 1.5rem 0;
  text-align: center;
}

.new-goto-wrapper {
  margin-bottom: 0.5rem;
}

.new-pagination a, .new-goto-wrapper a {
  display: inline-block;
  color: #000000;
  background-color: #ffffff;
  font-size: clamp(0.75rem, 0.6964rem + 0.1488vw, 0.875rem);
  border: solid 1px #bebebe;
  border-radius: 0.2rem;
  text-decoration: none;
  text-align: center;
  min-width: 32px;
  padding: 4px;
  margin-right: 3px;
  margin-bottom: 0.5rem;
}

.new-pagination a:hover, .new-goto-wrapper a:hover {
  color: #ffffff;
  background-color: var(--secondary);
}

.pageitem.active {
  color: #ffffff;
  background-color: var(--secondary);
}

.new-pagination-btn {
  border: 0;
  padding: 3px 9px !important;
  text-transform: capitalize !important;
}

.new-pagination-btn-go {
  display: inline-block;
  color: #000000;
  background-color: #ffffff;
  font-size: clamp(0.75rem, 0.6964rem + 0.1488vw, 0.875rem);
  border: solid 1px #bebebe;
  border-radius: 0.2rem;
  text-decoration: none;
  text-align: center;
  min-width: 32px;
  padding: 3px 9px !important;
  text-transform: capitalize !important;
}

.new-pagination-btn-go:hover {
  color: #ffffff;
  background-color: var(--secondary);
}

.new-goto-wrapper {
  display: flex;
  gap: 5px;
  align-items: center;
  padding-left: clamp(0rem, -0.6429rem + 1.7857vw, 1.5rem);
}

.new-goto-wrapper span {
  font-size: clamp(0.75rem, 0.6964rem + 0.1488vw, 0.875rem);
}

.new-goto-wrapper .new-goto-box {
  color: #000000;
  font-size: clamp(0.75rem, 0.6964rem + 0.1488vw, 0.875rem);
  border: solid 1px #d7d7d7;
  border-radius: 0.2rem;
  text-align: center;
  width: 50px;
  padding: 4px;
  margin-right: 3px;
}

/**** Portfolio-tabs-end *********/

.owl-carousel-portfolio-template .item{
  height: 360px;
}

.owl-carousel-portfolio-template  img{

  -webkit-animation-name: opacity;

    animation-name: opacity;

    -webkit-animation-duration: 0.3s;

    animation-duration: 0.3s;

    height: 100%;

    padding: 20px;

}

/* ################## END view_portfolio_section #################### */

/* ==================  product popup modal ===============*/

.grey{
  margin-top: -20px;
  background-color: #ebecec;
  min-height: 30px;
}

.grey p{
  font-size: 13px;
  padding-top: 5px;
  padding-left: 10%;
}

.exit{
  border-radius: 15px;
  width: 20%;
}

.upload{
  font-size: 15px;
  text-align: left;
}

.logo_database{
  font-size: 13px;
  padding-top: 20px;
}

/************START corflutes new-pop-up mid aditi 18/04/22*************/

.grey_mid{

  text-align: center;

   margin-top: -20px;

  background-color: #ebecec;

  font-size: 13px;

  padding-top: 5px;

}

.grey_mid p{

  font-size: 13px;

    padding-top: 5px;

    /* text-align: center; */

    /*padding-left: 10%;*/

}

.DECORATION_METHOD p{

  font-size: 15px;

  margin-top: 10px;

}

.DECORATION_POSITION p  {

  font-size: 15px;

  margin-top: 10px;

}

.comment textarea{
 width: 90%;
}

.logo-selection-body ::placeholder {
  color: #8f9090;
  font-size:12px;
  padding-top: 10px;
}

.blue_lower_left{
  height: 40px;
  float: right;
  width: 45%;
  margin-right: 4%;
}

.blue_lower_right{
  height: 40px;
  width: 45%;
  margin-left: 4%;
  float: left;
}

.yellow_lower{

  height: 45px;

    width: 90%;

    background-color: var(--secondary);

    border-radius: 15px;

    margin-bottom: 10px;

}

.yellow_lower p{

  font-size: 17px;

  padding-top: 5px;

}

/************END corflutes new-pop-up mid aditi 18/04/22*************/

/************START corflutes new-pop-up right aditi 18/04/22*************/

#blue_border_left{
  height: 300px;
  width: 100%;
  background-color: #fff;
  border: solid 5px #333;
  margin-top: 20px
}

 #blue_border_right{
  height: 300px;
  width: 100%;
  background-color: #fff;
  border: solid 5px #333;
  margin-top: 20px
}

.yellow_lower_left{
  height: 45px;
  width: 35%;
  margin-left: 3%;
  margin-right: 3%;
  background-color: var(--secondary);
  border-radius: 10px;
  float: left;
}

.yellow_lower_right{
  height: 45px;
  width: 55%;
  margin-left: 2%;
  background-color: var(--secondary);
  border-radius: 10px;
  float: left;
}

.yellow_lower_left p{
  padding-top: 3px;
  color: #fff;
}

.yellow_lower_right p{
  padding-top: 3px;
  color: #fff;
}

.AllAddedDecorationLogoModalCls #blue_border_left {
  height: auto;
  color: #000;
}

.AllAddedDecorationLogoModalCls .yellow_lower_left,

.AllAddedDecorationLogoModalCls .yellow_lower_right,

.AllAddedDecorationLogoModalCls .grey_mid{

    display:none;

}

/************START corflutes new-pop-up right aditi 18/04/22*************/

/* ==================  product popup_grey_div ===============*/

.corflutes_arrow {

    height: 100px;

    width: 10%;

    float: left;

    margin-top: -19px;

}

.grey_div_text{

   font-size: 14px;

   margin-top: 12px;

   float: left;

}

.corflutes_arrow_green {

  height: 100px;

  width: 10%;

  float: left;

  margin-top: -19px;

}

.green_div_text{

  height: 50px;

  width: 10%;

  border-radius: 15px;

  background-color: var(--secondary);

  color: #fff;

  margin-top: 20px;

  font-size: 15px;

  float: left;

  
}

.select_color{

  margin-top: 2px;

}

/* ==================  css for how-it-works ===============*/

.How_It_Works{

  font-size: 35px;

   padding-top: 20px;

}

.Watch_Video{

  height: 50px;

  margin-top: 20px;

  margin-left: 10%;

  width: 45%;

}

.Watch_Video p{

  font-size: 25px;

}

.yellow_div{

background-color: #fdb713;

}

.yellow_div p{

  font-size: 18px;

  padding-top: 10px;

  font-weight: bold;

}

.yellow_div img{

  height: 60px;

  padding-left: 30%;

}

.blue_div{

  font-size: 22px;

  padding-top: 20px;

  background-color: #12263a;

}

.white_div p{

  font-size: 22px;

  padding-top: 15px;

  color: #373939;

}

.white_div ul li{

  font-size: 22px;

  padding-left: 10%;

}

.check_box{

  font-size: 20px;

}

.got_it{

 height: 70px;

    width: 50%;

    font-weight: bold;

    font-size: 30px;

    margin-left: 30%;

    margin-top: 20px;

    background-color: #aaabab;

    border-radius: 20px;

}

.assistance{

  height: 70px;

    width: 50%;

    font-weight: bold;

    font-size: 25px;

    margin-left: 20%;

    margin-top: 20px;

    background-color: #aaabab;

    border-radius: 20px;

}

.btn_div{

  height: 120px;

}

/*******************pre-production************/


/*----modal------*/
.modal,
.modal-backdrop {
  display: none;
  overflow: scroll;
}

.modal.open,
.modal-backdrop.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal {
  display: none; /* Hidden by default */
  padding-top: 100px; /* Location of the box */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}
.modal-dialog {
  margin: auto;
}
.modal-content {
  position: relative;
  margin: auto;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

.modal-header .close {
  margin-top: -2px;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
    opacity: 1;
    background: 0 0;
    width: 45px;
    font-size: 35px;
}
.modal_header {
  border: none;
}
.product_section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.product_section h1 {
  font-size: 20px;
  color: #273f85;
  text-transform: uppercase;
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 32px;
  text-align: center;
  margin-top: 20px;
}
.modal_footer {
  border: none;
}

/*******************pre-production end ************/

/*---Edit my Account Details.css(23.08.2019)----*/
.edit-account {
  background-color: #f5f5f5;
  padding: 50px 0;
}
.account-title h1 {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #000;
  text-align: center;
}
.card-profile {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0.375rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 1rem;
  border: 1px solid #ddd;
  display: block;
  overflow: hidden;
}
.justify-content-center {
  justify-content: center !important;
}

.card-profile-image img {
  max-width: 180px;
}
.card-profile-image img,
.shadow {
  box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15);
  margin: 0 auto;
}
.rounded-circle {
  border-radius: 50%;
}
.upload-profile-picture {
  margin-top: 5px;
}
.upload-profile-picture label {
  color: #525f7f;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0;
}
.upload-button {
  border: none;
}
.form-group input[type="password"] {
  height: auto;
  padding: 6px 12px;
  box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.15s ease;
  border-color: rgba(50, 151, 211, 0.25);
}
.personal-form {
  height: auto;
  padding: 6px 12px;
  box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.15s ease;
  border-color: rgba(50, 151, 211, 0.25);
}
.enquiring-checkbox input[type="checkbox"] {
  display: inherit;
}
.enquiring-checkbox .enquiring-control-label {
  color: #000;
  font-size: 12px;
}
.shipping-address {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0.375rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 1rem;
  border: 1px solid #ddd;
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}
.shipping-address h1 {
  font-size: 22px;
  color: #fff;
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 48px;
  text-align: center;
  background: var(--secondary);
}
.shipping-address label {
  color: #525f7f;
  font-size: 0.875rem;
  font-weight: 600;
}
.card-profile label {
  color: #525f7f;
  font-size: 0.8rem;
  font-weight: 600;
}
.side-navbar {
  background-color: #333;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0.375rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 1rem;
  border: 1px solid #ddd;
  display: block;
  overflow: hidden;
}
.side-navbar li a {
  text-align: left;
  font-size: 15px;
  line-height: 29px;
  color: #fff;
  display: block;
}
.side-navbar li a:hover {
  background: #fff;
  color: #000;
  width: 100%;
  padding-left: 5px;
}

.flexigrid div.sDiv2 {
  display: inline-flex;
}
.flexigrid div.sDiv2 {
  width: auto !important;
  margin-right: 10px;
}

.flexigrid div.sDiv2 input,
.flexigrid div.sDiv2 select {
  vertical-align: middle;
  margin-left: 10px;
  border: 1px solid #ddd;
  font-size: 12px;
}
.flexigrid div.pDiv {
  padding-bottom: 20px;
}
.flexigrid div.pDiv input {
  top: 5px !important;
  height: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}
div.pGroup {
  height: auto !important;
}
.flexigrid .search-div-clear-button input {
  color: #444444;
  border: 1px solid #dddddd;
  font-size: 12px;
}
@keyframes blinking {
  0% {
    background-color: #ff3d50;
    border: 5px solid #871924;
  }
  /* YOU CAN ADD MORE COLORS IN THE KEYFRAMES IF YOU WANT
        50%{
          background-color: #55d66b;
          border: 5px solid #126620;
        }
        */
  100% {
    background-color: #222291;
    border: 5px solid #6565f2;
  }
}
.btn-request {
  animation: blinking 1s infinite;
}
.btn-rejected {
  background: red !important;
}

.AllAddedDecorationLogoModalCls .btn-save,
.AllAddedDecorationLogoModalCls h1 {
  display: none !important;
}

/* .previewImgModalLogo {
  max-height: 120px;
} */

/* .childAddedDecorationLogo {
  background: var(--secondary);
    margin-bottom: 20px;
    border: 1px solid #ccc;
    padding: 10px;
    color: #FFF;
    border-radius: 20px;
}
.childAddedDecorationLogo .fa{
  color: #FFF;
}    */


.previewlogo-wrap {
  width: 120px;
  height: 120px;
  border: 2px solid #aaa;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.previewImgModalLogo {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.previewModalDecPosWrap p {
  margin-bottom: 0.25rem;
  font-size: 14px;
  text-transform: capitalize;
}

.previewModalDecPosWrap span {
  font-size: 14px;
  font-weight: bold;
  text-transform: capitalize;
}

.previewModalEditBtn {
  display: inline-block;
  background-color: #fff;
  color: #000;
  text-transform: capitalize;
  font-size: 12px;
  text-align: center;
  padding: 3px 12px;
  border: 1px solid #000;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
}

.previewModalEditBtn:hover {
  background-color: var(--secondary);
  color: #fff;
}

.previewModalDeleteBtn {
  display: inline-block;
  background-color: #fff;
  color: #000;
  text-transform: capitalize;
  font-size: 12px;
  text-align: center;
  padding: 3px 12px;
  border: 1px solid #000;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
}

.previewModalDeleteBtn:hover {
  background-color: var(--secondary);
  color: #fff;
}


.price_border {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.childAddedDecorationLogo {
  background: #f0f1f2;
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 1rem;
}

.childAddedDecorationLogo .fa{
  color: #000;
}

.submit_bg {
  text-align: center;
  display: block;
  color: #fff;
  text-transform: capitalize;
  font-family: "Open Sans Semibold";
  font-size: 14px;
  line-height: 25px;
  padding: 9px;
  border: 1px solid #243d85;
  background: #243d85;
}

.submit_bg:hover {
  background: #f5a12b;
}

.add_to_cart i {
  padding-left: 10px;
}

.product_name img {
  background: var(--main);
}

.low-atc-btn i {
  padding-left: 10px;
}

.select_bg {
  color: #fff;
  text-transform: capitalize;
  font-family: "Open Sans Semibold";
  font-size: 15px;
  border-radius: 30px;
  padding-left: 22px;
  padding-right: 22px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #263f85;
  margin-left: 19px;
  border: 1px solid #263f85;
}
.submit_tab {
  text-align: center;
  color: #fff;
  font-size: 16px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 10px;
  line-height: 25px;
  background: #263f85;
  display: block;
  margin-top: 30px;
  width: 100%;
  border: none;
  text-transform: uppercase;
}
.boxes {
  margin-top: 20px;
}
.find_word {
  margin-top: 14px;
}
.submit_tab:hover {
  background: #f5a12b;
}

.first_panel > tbody > tr > td,
.first_panel > tbody > tr > th,
.first_panel > tfoot > tr > td,
.first_panel > tfoot > tr > th,
.first_panel > thead > tr > td,
.first_panel > thead > tr > th {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #f2f2f2;
  text-align: center;
}
.opactity {
  background-color: rgba(0, 0, 0, 1);
  z-index: 1999;
}
input.text_position {
  width: 60%;
  float: left;
  padding-top: 17px;
}

input.button_position {
  width: 40%;
  float: right;
}
.quote-row span {
  font-weight: bold;
  margin-left: 10px;
  font-size: 13px;
  display: inline-block;
}
@media (min-width: 992px) {
  .modal-xl {
    width: 1200px;
  }
}


/*----------------- Portfolio Section-----------------*/

#portfolio #portfolio-flters {
  padding: 0;

  margin: 30px 0 50px 0;

  list-style: none;

  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0px 30px 5px 0;
  display: inline-block;
  padding: 4px 0px;
  font-size: 15px;
  line-height: 19px;
  color: #263f85;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: none;

  color: #f5a12b;

  border-radius: 0px;

  display: inline-block;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-wrap {
  transition: 0.3s;

  border-radius: 0px;
}

#portfolio .portfolio-wrap:hover {
}

#portfolio .portfolio-item {
  position: relative;

  height: 269px;

  overflow: hidden;
}

#portfolio .portfolio-item figure {
  /*background: #f5a535; */

  overflow: hidden;

  height: 240px;

  position: relative;

  width: 353px;

  margin: 0;
}

#portfolio .portfolio-item figure:hover img {
  opacity: 1;

  transition: 0.3s;
}

#portfolio .portfolio-item figure .link-preview,
#portfolio .portfolio-item figure .link-details {
  position: absolute;

  display: inline-block;

  opacity: 0;

  line-height: 1;

  text-align: center;

  width: 36px;

  height: 36px;

  background: #fff;

  border-radius: 50%;

  transition: 0.2s linear;
}

#portfolio .portfolio-item figure .link-preview i,
#portfolio .portfolio-item figure .link-details i {
  padding-top: 6px;

  font-size: 22px;

  color: #333;
}

#portfolio .portfolio-item figure .link-preview:hover,
#portfolio .portfolio-item figure .link-details:hover {
  background: #18d26e;
}

#portfolio .portfolio-item figure .link-preview:hover i,
#portfolio .portfolio-item figure .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);

  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);

  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;

  left: calc(50% - 44px);
}

#portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;

  right: calc(50% - 44px);
}

#portfolio .portfolio-item figure:hover .details {
  opacity: 1;

  right: calc(50% - 44px);
}

#portfolio .portfolio-item figure .details h1 {
  padding-top: 6px;

  font-size: 22px;

  color: #fff;
}

#portfolio .portfolio-item .portfolio-info {
  background: #fff;

  text-align: center;

  padding: 30px;

  height: 90px;

  border-radius: 0 0 3px 3px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;

  line-height: 1px;

  font-weight: 700;

  margin-bottom: 18px;

  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info h4 a {
  color: #333;
}

#portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: #18d26e;
}

#portfolio .portfolio-item .portfolio-info p {
  padding: 0;

  margin: 0;

  color: #b8b8b8;

  font-weight: 500;

  font-size: 14px;

  text-transform: uppercase;
}

h2.LATEST {
  margin-bottom: 0px;
}

#portfolio .portfolio-item figure img.img-top {
  display: none;

  position: absolute;

  top: 0;

  left: 0;

  z-index: 99;
  -webkit-transform: rotate(15deg) scale(1.4);
  transform: rotate(15deg) scale(1.4);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#portfolio .portfolio-item figure:hover img.img-top {
  display: inline;
  -webkit-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
}

/*----------------- SERVICE Section-----------------*/

.services-sec {
  background: #f2f2f2;

  padding-bottom: 50px;
}

.services-sec-height {
  margin-bottom: 50px;
}

.transcript-language {
  background: url(../images/design2.png) no-repeat left bottom;

  margin-bottom: 50px;

  padding-bottom: 30px;

  font-family: "Poppins", sans-serif;
  font-weight: 500px;
  font-size: 26px;

  color: #000;

  text-transform: uppercase;
}

.transcript-ul li {
  margin-bottom: 15px;
  padding-top: 22px;
  padding-bottom: 22px;
  background: #fff;
  color: #273f85;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid #dddddd;
  cursor: pointer;
  text-align: center;
}
.transcript-ul li:hover,
.transcript-ul li a:hover {
  background: #f9b122;
  border: transparent;
  color: #fff;
}

.contact-active {
  background: #f9b122 !important;

  border: transparent;
  color: #fff !important;
}
.transcript-ul li .active {
  background: #f9b122;
  border: transparent;
}

.lrn-btn {
  background: #243d85;

  width: 100%;

  color: #fff;

  text-transform: capitalize;

  margin-top: 0px;

  display: inline-block;

  text-align: center;
  border-radius: inherit;
  padding: 11px 12px;
  font-size: 18px;
}
.lrn-btn:hover {
  color: #f9b122;
}

.lrn-btn i {
  color: #fff;

  font-size: 34px;

  padding-top: 1px;

  padding-bottom: 1px;
}

section.team {
  background: #ff7b2c url(../images/team-bg.jpg) no-repeat left top;

  background-size: cover;

  background-attachment: fixed;

  padding: 40px 0;
}

.team-h2 {
  font-family: "Raleway";

  font-size: 40px;

  text-transform: uppercase;

  color: #b87a00;

  background: url(../images/design.png) no-repeat center bottom;

  padding-bottom: 45px;

  margin-bottom: 30px;

  text-align: center;
}

.team-h2 span {
  color: #fff;

  font-family: "Raleway SemiBold";

  margin-bottom: 30px;
}

.team-p {
  color: #fff;

  font-size: 14px;

  width: 80%;

  margin: 0 auto 40px;

  text-align: center;

  line-height: 24px;
}

section.testimonial {
  padding: 50px 0;
}

section.testimonial h2 {
  margin-bottom: 30px;

  background: url(../images/line1.png) no-repeat center bottom;

  font-size: 44px;

  font-family: "Raleway SemiBold";

  color: #131313;

  text-align: center;

  text-transform: uppercase;

  padding-bottom: 20px;
}

/*---------testimonial-------------------------*/

.TESTIMONIALS {
  background: #f2f2f2;
}

.testi-img {
  float: left;
}

.arrow_box {
  position: relative;

  background: none;

  min-height: 170px;
}

.arrow_box_caption {
  margin-left: 178px;
}

.arrow_box_caption h1 {
  line-height: 24px;

  font-family: "Poppins", sans-serif;
  font-weight: 600;

  font-size: 18px;

  color: #1d1d1d;

  font-style: normal;

  padding-bottom: 9px;
}

.arrow_box_caption h1 span {
  line-height: 24px;

  font-family: "Open Sans";

  font-size: 16px;

  color: #f5a12b;

  margin-left: 6px;

  font-style: italic;
}

.arrow_box_caption h2 {
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;

  font-size: 18px;

  color: #263f85;

  font-style: normal;

  padding-bottom: 8px;
}

.arrow_box_caption p {
  line-height: 20px;

  font-family: "Poppins", sans-serif;
  font-weight: 400;

  font-size: 14px;

  color: #4e4e4e;
}

.block-text {
  background-color: #fff;

  border: 1px solid #c4c4c4;

  border-radius: 5px;

  color: #626262;

  font-size: 14px;

  margin-top: 27px;

  min-height: 194px;

  padding: 15px 18px;
}

.block-text a {
  color: #7d4702;

  font-size: 25px;

  font-weight: bold;

  line-height: 21px;

  text-decoration: none;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mark {
  padding: 12px 0;
  background: none;
}

.block-text p {
  color: #585858;

  font-family: Georgia;

  font-style: italic;

  line-height: 20px;
}

.sprite-i-triangle {
  background-position: 0 -1298px;

  height: 44px;

  width: 50px;
}

.block-text ins {
  bottom: -44px;

  left: 50%;

  margin-left: -60px;
}

.block {
  display: block;
}

.zmin {
}

.ab {
  position: absolute;
}

.person-text {
  padding: 10px 0 8px 68px;

  text-align: left;

  z-index: 2;
}

.person-text a {
  color: #898989;

  display: block;

  font-size: 14px;

  margin-top: 3px;

  padding-left: 49px;
}

.person-text a span {
  color: #000;
}

.person-text i {
  color: #fff;

  font-family: Georgia;

  font-size: 13px;
}

.rel {
  position: relative;
  padding: 15px;
  background: #fff;
  margin-bottom: 56px;
  margin-right: 40px;
  margin-left: 20px;
}

.owl-demo8.owl-theme .owl-controls .owl-buttons div {
  color: #fff;
  display: inline-block;
  display: inline;
  padding: 3px 10px;
  font-size: 12px;
  margin-top: -22px;
  margin-right: 10px;
}

.rating-box {
  padding-left: 10px;
}

.rating-box::before {
  color: #f5a12b;

  content: "\f005\f005\f005\f005\f005";

  font-size: 16px;

  letter-spacing: 3px;

  font: normal normal normal 14px/1 FontAwesome;
}

.google_search {
  margin-bottom: 60px;
}

/************START shopping-cart-modal*************/

/* ##################START auto-suggest-search modify by aditi 20/05/22####################*/

.ui-menu img{
  width:70px;
  height:70px;
}
.ui-menu li span{
  font-size:12px;
  padding:0 0 10px 10px;
  margin:0 0 10px 0 !important;
  white-space:nowrap;
}
.auto-suggest-search .autocomplete-container {
  position: relative;
  width: 100%;
}

.auto-suggest-search .autocomplete {
  display: flex;
}

.auto-suggest-search .ui-autocomplete-input {
  border: 3px solid #f9ca24;
  width: 100%;
  padding: 8px;
  font-size: 16px;
  line-height: 1.5;
  flex: 1;
  height: 40px;
}

.auto-suggest-search .autocomplete-submit {
  
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid #f9ca24;
  background-color:#f9ca24 ;
}

.auto-suggest-search .autocomplete-submit svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.auto-suggest-search .search-result {
  margin-top: 64px;
  text-align: center;
}

.auto-suggest-search .hidden {
  display: none;
}

.auto-suggest-search .searchterm:focus {

  color: #535c68;

}

.auto-suggest-search .searchbutton {

  width: 40px;

  height: 40px;

  border: 1px solid #f9ca24;

  text-align: center;

  color: #fff;

  background: #f9ca24;

  cursor: pointer;

}

.auto-suggest-search .searchbutton:hover {

  background: var(--secondary);

  transition: all 0.3s linear;

}

/* ##################END auto-suggest-search ####################*/

/* ##################START header auto-suggest ####################*/
.autosuggest-search {
  width: 100%;
  background: #fff;
  height: 60px;
  position:relative;
  display: flex;
}

.autosuggest-search-note{
height: 50px;
  width: 80%;
  margin: 5px;
}

.autosuggest-search-pic {
  height: 44px;
  width: 20%;
  margin: 3px 2%;
}

.autosuggest-search img {
  height: 44px;
  padding: 3px;
  position: absolute;
}
.autosuggest-search p{
font-size: 12px;
}
.top-autosuggest-search-wrapper,.top-autosuggest-search-wrapper-mobile{
  z-index: 30;
  width: 84%;
  max-height: 600%;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  background-color: #fff;
  font-weight: 500;
}

.auto-suggest-search .searchterm:focus {

  color: #535c68;

}

.search input[type="text"] {
  padding-left: 15px;
}

/*--------------------------------------------------------------
# Industry
--------------------------------------------------------------*/
#industry-head {
  background-color: var(--main);
}

.industry-header {
  margin: 0 0 10px 0;
  padding-bottom: 20px;
  font-size: 55px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 56px;
  color: #000;
}

.industry-header-text {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#industry-head .view-all-product-link {
  color: #ffffff;
  text-align: center !important;
  margin-right: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#industry-head .view-all-product-link:hover {
  color: #000000;
}

.industry-light-grey-text {

  color: #AFAFAF;
  font-weight: 600;

}

#indusrty-head .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.industry-hyperlinks a {
  color: var(--secondary);
}

.industry-hyperlinks a:hover {
  color: var(--primary);
}

.industry-hyperlinks-small {
  font-size: 13px;
}

.industry-hyperlinks-small a {
  color: var(--secondary);
}

.industry-hyperlinks-small a:hover {
  color: var(--primary);
}

.industry-head-btn {
  border: 0;
  text-align: center;
  display: inline-block;
  padding: 12px;
  width: 100%;
  color: #000000;
  background-color: #ffffff;
  border-radius: 8px;
  font-size: clamp(0.875rem, 0.7188rem + 0.5vw, 1rem);
  font-weight: bold;
  text-decoration: none;
  transition: box-shadow 200ms ease-out;
}

.industry-head-btn:hover {
  color: #ffffff;
  background-color: var(--secondary);
}

/*--------------------------------------------------------------
# Helpsection
--------------------------------------------------------------*/

.help-section-banner-container {
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
  padding: 55px 15px;
  width: 100%;
}

.help-section-banner {
  position: relative;
  background-color: var(--main);
  background-size: cover;
}

.helpsection-banner-title {
  flex-basis: 100%;
  font-weight: 700;
  color: #fff;
  font-size: 38px;
  line-height: 52px;
  margin: 0;
  letter-spacing: -1px;
}

.helpsection-banner_desc {
  font-size: 18px;
  line-height: 26px;
  padding: 0;
  flex-basis: 100%;
  color: #fff;
  margin: 0;
}

.helpsection-tabcontent-container {
  padding-top: 45px;
  padding-left: 15px;
  padding-right: 15px;
}

.helpsection-tabcontent-list {
  list-style: none;
  padding-bottom: 45px;
  border-bottom: 1px solid #e3e3e3;
  padding-top: 35px;
}

.helpsection-tabcontent-list:last-child {
  border-bottom: 0;
}

.helpsection-tabcontent-content ul {
    color: #89898b;
}

.helpsection-tabcontent-content ul>li>a {
  text-decoration: none;
  color: var(--secondary);
}

.helpsection-tabcontent-content ul>li>a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.helpsection-insider-list {
  margin: 0;
  column-count: 2;
  column-gap: 20px;
}

.helpsection-insider-list li {
  font-size: 1rem;
  line-height: 21px;
  padding-bottom: 8px;
  page-break-inside: avoid;
  break-inside: avoid;
  margin-left: 5px;
  list-style: disc;
}

/* Navigation Tab Start */

#help-section-tabs-btn>nav>ul>li>a  {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

#help-section-tabs-btn>nav>ul>li>a.active {
  color: #000 !important;
  background-color: #ffffff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 16px;
  font-weight: 600;
}

#help-section-tabs-btn>nav>ul>li>a.active:hover {
  background-color: #ffffff !important;
  color: #000 !important;
  font-size: 16px;
  font-weight: 600;
}

#help-section-tabs-btn>nav>ul>li:hover>a {
  text-decoration: none;
  background-color: rgba(255,255,255,.2);
  color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

#help-section-tabs-btn>nav>ul>li:hover>ul {
  display: block;
  box-shadow: 0 3px 10px 0 rgba(0,0,0,.14);
  border: 1px solid #ccc;
  border-top: 0;
  margin-left: -1px;
}

#help-section-tabs-btn>nav>ul>li:hover>ul {
  display: block;
  box-shadow: 0 3px 10px 0 rgba(0,0,0,.14);
  border: 1px solid #ccc;
  border-top: 0;
  margin-left: -1px;
}

#help-section-tabs-btn>nav>ul>li>ul {
  padding: 0;
  position: absolute;
  display: none;
  width: inherit;
  background-color: #fff;
  z-index: 3;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  overflow: hidden;
}

#help-section-tabs-btn>nav>ul>li>ul>li>a.active {
  background-color: var(--secondary) !important;
  color: #ffffff !important;
}

#help-section-tabs-btn>nav>ul>li>ul>li>a.active:hover {
  background-color: var(--secondary) !important;
  color: #ffffff !important;
}

#help-section-tabs-btn>nav>ul>li>ul>li>a:hover {
  background-color: #ebf6fd !important;
}

#help-section-tabs-btn>nav>ul>li>:hover>a {
  background-color: rgba(255,255,255,.2) !important;
}
/* Navigation Tab End */

/*--------------------------------------------------------------
# Vectorizing START
--------------------------------------------------------------*/

#vectorizing-head {
  width: 100%;
  background-color: var(--main);
}

.vectorizing-head-color-text {
  color: #1C87BD;
}

.vectorizing-price-guide-btn {
  border: 0;
  text-align: center;
  display: inline-block;
  text-transform: capitalize;
  font-size: 1.25rem;
  padding: 10px;
  width: 75%;
  color: #fff;
  background-color: var(--main);
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: box-shadow 200ms ease-out;
}

.vectorizing-price-guide-btn:hover {
  color: #ffffff;
  background-color: var(--secondary);
}

.vectorizing-price-btn-small {
  border: 0;
  text-align: center;
  display: inline-block;
  text-transform: capitalize;
  font-size: 1rem;
  padding: 8px 70px;
  color: #000;
  background-color: var(--main);
  border-radius: 0;
  font-weight: bold;
  text-decoration: none;
  transition: box-shadow 200ms ease-out;
}

.vectorizing-price-btn-small:hover {
  color: #ffffff;
  background-color: var(--secondary);
}

.vectorizing-card-img {
  width: 100%;
  height: 12rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vectorizing-card-content-header {
  font-size: 1.25rem;
}

.vectorizing-card-p {
  font-size: 0.875em;
}

.vectorizing-icons {
  color: #2D98D1;
  font-size: 3.5rem;
}

.vectorizing-readmore-btn {
  border: 1px solid var(--secondary);
  text-align: center;
  display: inline-block;
  text-transform: capitalize;
  font-size: 1rem;
  padding: 8px 16px;
  color: var(--secondary);
  background-color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: box-shadow 200ms ease-out;
}

.vectorizing-readmore-btn:hover {
  border: 1px solid var(--primary);
  color: #fff;
  background-color: var(--main);
}

#vectorizingAccordionContainer {
  padding-left: 8rem;
  padding-right: 8rem;
}

#vectorizingAccordion .accordion-button {
font-weight: 600;
padding-top: 2rem;
padding-bottom: 2rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--secondary) !important;
  color: #FFF !important;
}

/*--------------------------------------------------------------
# Owl Carousel START
--------------------------------------------------------------*/
        
.owl-theme {
  padding-left: 2rem;
  padding-right: 2rem;
}

.owl-theme .border-item {
  padding: 1rem;
  border: 3px solid #f0f1f2;
  margin: 1rem;
  height: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-theme .item {
  padding: 1rem;
  margin: 1rem;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-theme .owl-prev {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
}

.owl-theme .owl-prev::before {
  font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f104"; font-size: 30px;
}

.owl-theme .owl-next {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
}

.owl-theme .owl-next::before {
  font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f105"; font-size: 30px;
}

.carousel-add-border {
  text-align: center;
}

.carousel-add-border img {
  max-height: 180px;
  object-fit: contain;
}

.carousel-add-border-active {
  border: 4px #2d98d1 solid;
  margin: 2px;
}

.carousel-uploaded-border-active{
  border: 2px #2d98d1 solid;
}

.selecteted-design-img {
  max-height: 500px;
  object-fit: contain;
}

/*--------------------------------------------------------------
# Owl Carousel END
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Sample template Start
--------------------------------------------------------------*/

/* Subscription Table Start */
.subscription-benefits-container {
 background-color: #f6efe8;
}

.subscription-benefits-heading {
  font-weight: 600;
  letter-spacing: -.3px;
  line-height: 1.1875;
  margin-bottom: 3rem;
}

.subscription-benefits {
  background-color: #fff;
  padding: 1rem 0rem;
  border-top: 4px solid var(--main);
  margin-bottom: 2rem;
  box-shadow: 0 0 2rem rgba(0,0,0,.1);
}

.benefits-table-header {
  padding-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 600 !important;
}

.benefits-table, .benefits-table-large {
  table-layout: fixed !important;
}

.benefits-table-header-1 {
  padding-left: 2% !important;
}

.benefits-table-col-1 {
  padding-left: 2% !important;
}

.benefits-table-large-col-1 {
  padding-left: 2% !important;
  padding-top: 2rem !important;
  font-size: 0.875rem !important;
}

.benefits-table-col-2, .benefits-table-larger-col-bg {
  text-align: center;
  background-color: #F5F4F5 !important;
  opacity: 1;
}

.benefits-table-col-3 {
  padding-left: 7% !important;
  text-align: start;
  background-color: #F5F4F5 !important;
  opacity: 1;
}

.benefits-table-col-radius-start {
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
}

.benefits-table-col-radius-end {
  border-bottom-left-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

.benefits-table-spacer {
  width: 2%;
}

.benefits-table-text {
  font-family: sans-serif;
  font-size: .875rem;
  line-height: 1rem;
}

.benefits-table-large-text {
  font-family: sans-serif;
  font-size: .875rem;
  line-height: 1rem;
}

.benefits-table-large-header {
  padding: 1.5rem !important;
  text-align: center;
  font-size: 0.875rem !important;
}

.benefits-table-large-text {
  text-align: center;
}

.benefits-table-large-footer-link {
  text-align: center;
}

.benefits-table-large-footer-link a {
  cursor: pointer;
  text-decoration: none;
  color: var(--secondary);
  font-size: 0.875rem;
  text-align: center;
  font-weight: 400 !important;
  border-bottom: 1px solid var(--secondary);
}
/* Subscription Table End */

/* Sample foot notes start */
.sample-foot-notes {
  background: var(--main);
  border: none;
  clip-path: ellipse(90% 100% at center top);
  height: auto;
  min-height: 370px;
}

.sample-foot-notes-header {
  margin-bottom: 3rem;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.sample-foot-notes-btn-white {
  margin-bottom: 1rem;
  color: var(--main);
  background-color: #fff;
  border: 2px solid #fff;
  cursor: pointer;
  border-radius: 4px;
  text-align: center;
  font-family: "Helvetica Neue",Helvetica,"Segoe UI",Tahoma,Arial,sans-serif;
  font-weight: 700;
  line-height: 1.2857;
  letter-spacing: .8px;
  font-size: .875rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 19px 40px 20px;
  display: block;
  width: 80%;
}

.sample-foot-notes-btn {
  margin-bottom: 5rem;
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  cursor: pointer;
  border-radius: 4px;
  text-align: center;
  font-family: "Helvetica Neue",Helvetica,"Segoe UI",Tahoma,Arial,sans-serif;
  font-weight: 700;
  line-height: 1.2857;
  letter-spacing: .8px;
  font-size: .875rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 19px 40px 20px;
  display: block;
  width: 80%;

}
/* Sample foot notes End */

/* Sample Pricing Start */

.sample-pricing-container {
  background-color: #fff;
  padding: 1rem 0rem;
  border-top: 4px solid var(--main);
  margin-bottom: 2rem;
  box-shadow: 0 0 2rem rgba(0,0,0,.1);
  position: relative;
}

.sample-pricing-card, .sample-pricing-container-grid {
  display: flex;
  flex-basis: 0;
  flex-direction: column;
  flex-grow: 1;
}

.sample-pricing-header {
  padding: 1.25rem;
  height: 7rem;
  padding-bottom: 0;
}

.sample-pricing-header-text {
  margin-bottom: 0rem !important;
  font-size: 1.5rem;
}

.sample-pricing-text {
  font-size: .8rem;
}

.sample-pricing-content {
  padding: 0 1.25rem;
}

.sample-pricing-container, .sample-pricing-content {
  flex: 1;
}

.sample-pricing-content-price {
  height: auto;
}

.sample-pricing-content-price-dollar {
  border-bottom: 0 !important;
  font-size: 1.25rem;
  margin-bottom: 1rem !important;
}

.sample-pricing-content-price-text {
  color: #454545;
  border-bottom: 0 !important;
  font-weight: 500;
  font-size: 1.25rem;
}

.sample-pricing-content-btn-container {
  height: 5rem;
}

.sample-pricing-content-btn {
  background-color: var(--main);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  text-align: center;
  font-family: "Helvetica Neue",Helvetica,"Segoe UI",Tahoma,Arial,sans-serif;
  font-weight: 700;
  line-height: 1.2857;
  letter-spacing: .8px;
  font-size: .875rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 19px 40px 20px;
  display: block;
  width: 100%;

}

.sample-pricing-content-btn:hover {
  background-color: var(--primary);
}

.sample-pricing-content-description-header {
  height: 3rem;
  font-size: 0.875rem;
}

.sample-pricing-content-description-item {
  display: inline-flex;
}

.sample-pricing-content-description-item-check {
  margin-right: 5px;
}

.sample-pricing-content-description-item-text, .artwork-tips-description {
  font-size: 0.875rem;
}

.sample-pricing-card-footer {
  padding: 1.25rem;
  align-items: end;
  display: flex;
  justify-content: center;
  height: 4rem;
  text-align: center;
  padding-bottom: 0 !important;
}

.sample-pricing-card-footer a {
  color: var(--secondary);
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
}
.sample-pricing-card-footer a:hover {
  text-decoration: underline;
}
/* Sample Pricing End */

/* team Chat Start */
.team-chat-container {
  background-color: #f6efe8;
}

.team-chat-link-container-content {
  background-color: #fff;
  width: 100%;
  max-width: 400px;
  margin-bottom: 0.5rem !important;
  border-radius: 6px;
  padding: 10px;
  box-shadow: inset 0 0 0 1px #69696980;

  display: grid;
  grid-column-gap: 1rem;
  grid-template-columns: auto 1fr;
}

.team-chat-link-container-content:hover {
  box-shadow: inset 0 0 0 2px var(--primary);
}


.team-chat-link-container-content-text {
  justify-self: start !important;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

.team-chat-link-container-content-media {
  width: 50px;
}
.team-chat-features-header {
  font-weight: 700;
  line-height: 1.1875;
  letter-spacing: -.3px;
  margin-bottom: 1rem !important;
  margin-top: 0 !important;
}

.team-chat-features-text {
  font-weight: 500;
  line-height: 1.4444;
  letter-spacing: -.2px;
  font-size: 1.125rem;
  margin-bottom: 1rem !important;
}

.team-chat-features-text-link {
  font-weight: 500;
  line-height: 1.4444;
  letter-spacing: -.2px;
  font-size: 1.125rem;
  margin-bottom: 1rem !important;
  color: var(--secondary);
  text-decoration: none;
}

.team-chat-features-text-link:hover {
  text-decoration: underline;
}

/* team Chat End */

/* Chat Securely Start */
.chat-securely-header-title {
  font-weight: 600;
  line-height: 1.1875;
  letter-spacing: -.3px;
  margin-bottom: 1rem !important;
  text-align: center;
}
.chat-securely-header-text {
  font-weight: 500;
  line-height: 1.4444;
  letter-spacing: -.2px;
  font-size: 1rem;
  margin-bottom: 1rem !important;
  text-align: center;
}

.chat-securely-section-icons {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
}

/* Chat Securely End */

/*--------------------------------------------------------------
# Sample template End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Artwork Services Start
--------------------------------------------------------------*/
.artwork-services-card-btn {
  border: 0;
  text-align: center;
  display: inline-block;
  text-transform: capitalize;
  font-size: 1rem;
  padding: 3px 10px;
  width: 100%;
  color: #000;
  background-color: var(--main);
  border-radius: 0;
  font-weight: bold;
  text-decoration: none;
  transition: box-shadow 200ms ease-out;
}

.artwork-services-card-btn:hover {
  color: #ffffff;
  background-color: var(--secondary);
}
.artwork-package-order-xxl-text {
  font-size: 4rem;
  color: #a2a3a3;
}

.artwork-package-order-container {
  padding-left: 2rem;
  padding-right: 2rem;
}

.artwork-package-order-color-text {
  font-size: 1.125rem;
}

.artwork-tips-img-container {
  border: 1px solid #000;
  width: 100%;
  height: 100%;
}

.artwork-tips-description-link a {
  color: var(--secondary);
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
}
.artwork-tips-description-link a:hover {
  text-decoration: underline;
}

.artwork-tips-footer-btn {
  border: 2px solid var(--secondary);
  text-align: center;
  display: inline-block;
  text-transform: capitalize;
  font-size: 1rem;
  padding: 10px;
  width: 100%;
  color: var(--secondary);
  border-radius: 0;
  font-weight: bold;
  text-decoration: none;
  transition: box-shadow 200ms ease-out;
}

.artwork-tips-footer-btn:hover {
  color: #ffffff;
  background-color: var(--primary);
}

/*--------------------------------------------------------------
# Artwork Services End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Blog Design Start ( Header from Vectorizing)
--------------------------------------------------------------*/

.blog-design-card-description {
  font-size: 0.875rem;
}

.blog-design-card-img-container .blog-design-card-img {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Blog Design Start
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Sample Design Start
--------------------------------------------------------------*/
.sample_design_banner_container {
  position: relative;
}

.sample_design_banner_text_box {
  position: absolute;
  bottom: 12%;
  height: 195px;
  background-color: rgb(250, 250, 250);
  padding: 1rem calc((100% - 1440px) / 2) 1rem 0px;
  right: 0px;
}

.sample_design_banner_text_content {
  padding-left: 1rem;
  padding-right: 2rem;
  white-space: nowrap;
}


.sample_design_banner_header {
  color: var(--secondary);
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
}

.sample_design_banner_sub_header {
  color: var(--secondary);
  margin-top: 0.25rem;
  font-size: 1.625rem;
  font-weight: normal;
  font-style: italic;
}
.sample_design_banner_link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
  min-height: 3rem;
  padding: 0.68rem 1rem;
  background-color: var(--secondary);
}

.sample_design_ribbon .ribbon_icon {
  height: 24px;
  width: 24px;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.sample_design_ribbon .ribbon_icon img {
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.sample_design_ribbon .ribbon_icon_text {
  margin-left: 0.5rem;
  margin-bottom: 0 !important;
  line-height: 1.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sample_design_text_header_width {
  width: calc(100% - 2rem);
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  max-width: 1440px;
  padding-bottom: 1rem;
}

.sample_design_text_description_width {
  width: calc(100% - 2rem);
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  max-width: 722px;
  padding-bottom: 2rem;
}

.sample_design_card_img .card_img_container {
  display: grid;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
}

.sample_design_card_img .card_img_container > * {
  grid-area: 1/ 1 / 1/ 1;
}

.card_img_container_img {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.card_img_container_img img {
  width: 100%;
  height: auto;
}

.card_img_overlay {
  position: relative;
  display: grid;
  -webkit-box-align: end;
  align-items: end;
  padding: 1rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(48, 50, 53, 0.4), rgba(48, 50, 53, 0.9));
}

.card_img_overlay_content {
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0px, 192px) min-content;
  gap: 0.5rem;
  -webkit-box-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  justify-content: space-between;
  line-height: 1.75rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
}

.card_img_overlay_content p {
  margin-bottom: 0rem;
}

.card_img_overlay_content_icon {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentcolor;
  transition: fill 100ms ease-out 0s;
}

.card_img_overlay_content:hover {
  transform: translateY(-10px);
  transition: transform 0.25s ease 0s;
  will-change: transform;
}

.sample_design_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
  min-height: 3rem;
  min-width: 12rem;
  padding: 0.68rem 1rem;
  background-color: var(--secondary);
}

.sample_design_btn_sm {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.0625em;
  min-height: 3rem;
  padding: 0.68rem 1rem;
  background-color: var(--secondary);
}

.sample_design_img_container {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*--------------------------------------------------------------
# New Home Page Start
--------------------------------------------------------------*/
.new-home {
  padding-top: 5rem;
  padding-bottom: 1.5rem;
  background-image: url(images/home-page-banner-image.png);
  background-repeat: no-repeat;
  background-size: clamp(30rem, 12rem + 22vw, 40rem);
  background-position: right 5px top 20px;
}

.new-home .banner-color-text {
  color: var(--secondary);
}

.new-home-hero-text {
  font-size: clamp(1.875rem, 1.7143rem + 0.4464vw, 2.25rem);
  font-weight: bold;
}

.new-home-hero-text-small {
  font-size: clamp(1rem, 0.8929rem + 0.2976vw, 1.25rem);
  font-weight: 600;
}

.new-home-heading {
  color: var(--secondary);
  font-weight: 600;
  line-height: 1.75rem;
}

.new-home-description {
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.new-home-icons {
  font-size: 2.5rem;
  color: var(--main);
}

.hero-cards-small-text {
  font-size: clamp(0.75rem, 0.6964rem + 0.1488vw, 0.875rem);
  font-weight: 500;
  margin-bottom: 0 !important;
}

.hero-cards-inner-text {
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0 !important;
}

.new-home-section-title {
  color: var(--secondary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #000;
  text-underline-offset: 8px;
}

.new-home-best-seller-card {
  transition: 0.5s;
  margin-top: 12px;
  margin-bottom: 12px;
  margin-left: 12px;
  margin-right: 12px;
}

.new-home-best-seller-card:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in-out;
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.bestselller-card-text {
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
}

.new-home-card-text-container {
  line-height: 1.125rem;
}

.bestselller-card-text-sm {
  color: #a2a3a3;
  margin-top: -3px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.clothing-category-card {
  border: #DCDBDA 3px solid;
  transition: 0.5s;
  margin-top: 12px;
  margin-bottom: 12px;
  margin-left: 12px;
  margin-right: 12px;
}

.clothing-category-card:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in-out;
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
}

.clothing-category-card-img {
  overflow: hidden;
}

/* Video Player Start */
.video {
  width: 100%;
  cursor: pointer;
}

.home_video_player.wrapper {
  width: auto;
  position: relative;
}

.playpause {
  background-image: url(images/home-play-button-logo.png);
  background-repeat: no-repeat;
  width: 35%;
  height: 35%;
  position: absolute;
  left: 0%;
  right: 0%;
  top: 0%;
  bottom: 0%;
  margin: auto;
  background-size: contain;
  background-position: center;
  cursor: pointer;
}

.playpause {
  opacity: 0.6;
  transition: opacity 400ms;
  cursor: pointer;
}

.playpause[hidden] {
  opacity: 0;
  display: block;
}
/* Video Player End */

/* User Review Start */

.user-review-wrap {
  text-align: center;
  padding: 12px;
  margin: 12px;
}

.user-review-wrap .date-wrap {
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.user-review-wrap .star-rating-wrap {
  color: var(--main);
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.user-review-wrap .review-title-wrap {
  font-size: 0.75rem;
  text-transform: capitalize;
  font-weight: bold;
  margin-bottom: 12px;
}

.user-review-wrap .review-desc-wrap {
  height: 50px;
  margin-bottom: 14px;
}

.user-review-wrap .review-desc-wrap span {
  display: inline;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* word-wrap: break-word; */
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.3;
}

.user-review-wrap .user-name-wrap {
  color: var(--main);
  font-size: 16px;
  font-weight: bold;
}

/* Review Owl Carousel */
.user-review-theme {
  background-color: #fff;
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.user-review-theme .owl-prev {
  font-size: 0;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--main);
  border: 2px solid var(--main);
  border-radius: 50%;
  display: -webkit-box;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.user-review-theme .owl-next {
  font-size: 0;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--main);
  border: 2px solid var(--main);
  border-radius: 50%;
  display: -webkit-box;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.user-review-theme .owl-prev::before {
  font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f104"; font-size: 20px;
}

.user-review-theme .owl-next::before {
  font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f105"; font-size: 20px;
}

/* Portfolio Carousel */


.portfolio-home-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem;
  margin: 0.5rem 1rem;
  border-radius: 10px;
  box-shadow: 3px 3px 5px 1px rgba(128, 127, 126, 0.54);
}

.portfolio-home-wrap .portfolio-home-prod-image {
  display: flex;
  height: 100px;
}

.portfolio-home-wrap .portfolio-home-prod-image img {
  max-height: 100px;
  object-fit: contain;
}

.portfolio-home-wrap .portfolio-home-prod-title {
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Portfolio Title */
.portfolio-home-title {
  text-align: center;
  font-weight: bold;
  font-size: clamp(1rem, 0.4444rem + 1.7778vw, 2rem);
}

.portfolio-home-title span {
  display: inline-block;
  position: relative;
  color: #7e8182;
}

.portfolio-home-title span:before,
.portfolio-home-title span:after {
  content: "";
  position: absolute;
  height: 1px;
  border: 1px solid #7e8182;
  top: 50%;
  width: 50px;
}

.portfolio-home-title span:before {
  right: 100%;
  margin-right: 15px;
}

.portfolio-home-title span:after {
  left: 100%;
  margin-left: 15px;
}


/*--------------------------------------------------------------
# New Home Page End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# New Home Page Banner Start
--------------------------------------------------------------*/

.home-banner-top {
  color: #000000;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-weight: bold;
  font-size: clamp(0.875rem, 0.5625rem + 1vw, 1.125rem);
  text-transform: uppercase;
}

.home-banner-top .under-tag {
  color: #000000;
  text-decoration: underline;
  font-style: italic;
  font-weight: normal;
}

.home-banner-top .mob-under-tag {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
}

#banner-background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.home-banner-overlay {
  display: flex;
  justify-content: center;
}

.home-banner-overlay .banner-overlay-wrap {
  padding: 1.75rem 0.5rem;
  text-align: center;
}

.home-banner-overlay .banner-overlay-wrap .banner-overlay-title {
  margin-bottom: 2.25rem;
}

.home-banner-overlay .banner-overlay-wrap .lpg-4-banner-title {
  margin-bottom: 1rem;
}

.home-banner-overlay .banner-overlay-wrap .lpg-4-banner-title h1 {
  color: #fff;
  font-size: clamp(2.125rem, 0.875rem + 4vw, 4.375rem);
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0;
  letter-spacing: -2px;
}

.home-banner-overlay .banner-overlay-wrap .banner-overlay-desc {
  width: 70%;
  margin: 0 auto 2rem auto;
  text-align: center;
}

@media (max-width: 968px) {
  .home-banner-overlay .banner-overlay-wrap .banner-overlay-desc {
    width: 90%;
  }
}


.home-banner-overlay .banner-overlay-wrap .lpg-4-banner-btn-wrap {
  margin-bottom: 2rem;
}

.home-banner-overlay .banner-overlay-wrap .lpg-4-banner-btn-wrap .lpg-4-banner-btn {
  background-color: var(--main);
  border: none;
  color: white;
  padding: 10px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  font-size: clamp(1.5rem, 1.2917rem + 0.6667vw, 1.875rem);
  font-weight: bold;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 100px;
  transition: background-color 0.3s ease;
  line-height: 1;
}

.home-banner-overlay .banner-overlay-wrap .lpg-4-banner-btn-wrap .lpg-4-banner-btn:hover {
  background-color: var(--secondary);
}

.home-banner-overlay .banner-overlay-wrap .lpg-4-banner-btn-wrap .lpg-4-banner-btn .btn-smaller-text {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}

.home-banner-overlay .banner-overlay-wrap .banner-overlay-desc p {
  color: #ffffff;
  font-size: clamp(1.25rem, 1.1944rem + 0.1778vw, 1.35rem);
  font-weight: 500;
  margin-bottom: 0;
}

.home-banner-overlay .banner-overlay-wrap .banner-overlay-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.home-banner-overlay .banner-overlay-wrap .banner-overlay-stars .fa-star {
  color: #ffff00;
  font-size: clamp(0.875rem, 0.8056rem + 0.3704vw, 1.25rem);
  font-weight: bold;
  margin-bottom: 0;
}

.home-banner-overlay .banner-overlay-wrap .banner-overlay-rating-desc span {
  color: #ffffff;
  font-size: clamp(0.875rem, 0.8056rem + 0.3704vw, 1.25rem);
  font-weight: bold;
}

.home-banner-overlay .banner-overlay-wrap .banner-overlay-video-wrap {
  max-width: 500px;
  margin: 0 auto 1rem;
}


.banner-overlay-featured-title {
  text-align: center;
  font-size: clamp(1.25rem, 0.95rem + 1.2vw, 2rem);
  font-weight: bold;
}

.banner-overlay-featured-title span {
  display: inline-block;
  position: relative;
  color: #bbbdbd;
}

.banner-overlay-featured-title span:before,
.banner-overlay-featured-title span:after {
  content: "";
  position: absolute;
  height: 1px;
  border: 1px solid #fff;
  top: 50%;
  width: 35px;
}

.banner-overlay-featured-title span:before {
  right: 100%;
  margin-right: 15px;
}

.banner-overlay-featured-title span:after {
  left: 100%;
  margin-left: 15px;
}

.banner-overlay-wrap .banner-overlay-featured-container {
  max-width: 960px;
}

.banner-overlay-wrap .banner-overlay-featured-container .featured-logo {
  max-width: 165px;
  max-height: 70px;
  object-fit: contain;
}

.must-read-btn-wrap {
  text-align: center;
  margin: 1.25rem 0;
}

.must-read-btn-wrap .must-read-btn {
  background-color: var(--main);
  border: none;
  color: white;
  padding: 10px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: clamp(1.375rem, 1.1667rem + 0.6667vw, 1.75rem);
  font-weight: bold;
  text-transform: uppercase;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

@media (max-width: 968px) {
  .must-read-btn-wrap .must-read-btn {
    padding: 10px 15px;
  }
  .upload-btn-skip, .upload-btn-next {
      width: 50%!important;
  }
}


.must-read-btn-wrap .must-read-btn:hover {
  background-color: var(--secondary);
}

.lpg-4-must-read-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.must-read-content-wrapper {
  position: relative;
  z-index: 10;
}

.lpg-4-must-read-wrap .stripe-img {
  position: absolute;
}

.stripe-img {
  position: absolute;
}

.stripe-img.img-first,
.stripe-img.img-third,
.stripe-img.img-fifth,
.stripe-img.img-seventh {
  left: 0;
}

.stripe-img.img-second,
.stripe-img.img-fourth,
.stripe-img.img-sixth,
.stripe-img.img-eight {
  right: 0;
}

.stripe-img.img-first { top: 60px; width: 140px; }
.stripe-img.img-second { top: 580px; width: 480px; }
.stripe-img.img-third { top: 1600px; width: 250px; }
.stripe-img.img-fourth { top: 2500px; width: 300px; }
.stripe-img.img-fifth { top: 3600px; width: 80px; }
.stripe-img.img-sixth { top: 4200px; width: 100px; }
.stripe-img.img-seventh { top: 4700px; width: 250px; }
.stripe-img.img-eight { top: 6000px; width: 250px; }

@media (max-width: 1200px) {
  .stripe-img {
    display: none;
  }
}


.lpg-4-must-read-wrap .must-read-content {
  width: 50%;
  margin: 0 auto;
}

.lpg-4-must-read-wrap .must-read-content p {
  font-size: clamp(1.25rem, 1.1806rem + 0.2222vw, 1.375rem);
  margin-bottom: 1.6rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .lpg-4-must-read-wrap .must-read-content {
    width: 100%;
    margin: 0;
  }
}

.lpg-4-must-read-wrap .must-read-content .read-more-content {
  display: none;
}

/* Give Away Popup */
.home-giveaway-wrap {
  padding: 0.5rem;
  margin: 1rem;
  border: 3px solid var(--light-grey);
  border-radius: 50px;
}

.home-giveaway-wrap .giveaway-img {
  position: relative;
  overflow: hidden;
}

.giveaway-countdown-wrap h2 {
  color: #000000;
  font-weight: bolder;
  font-size: clamp(1.25rem, 0.8333rem + 1.3333vw, 2rem);
}

.giveaway-desc-wrap h3 {
  color: #000000;
  font-weight: bold;
  font-size: clamp(0.875rem, 0.5278rem + 1.1111vw, 1.5rem);
}

.giveaway-desc-foot {
  color: #000000;
  font-size: clamp(0.6rem, 0.5167rem + 0.2667vw, 0.75rem);
  font-style: italic;
  font-weight: 500;
}


/*--------------------------------------------------------------
# New Home Page Banner End
--------------------------------------------------------------*/


/******* order process 2 ***********/
.op2-banner {
  background-image: url(../images/order-process/op-2-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.op-2-heading {
  font-size: clamp(2.75rem, 2.3214rem + 1.1905vw, 3.75rem);
  font-weight: 700;
  color: var(--secondary);
}

.op-2-stepwizard-step p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: clamp(0.5625rem, 0.4821rem + 0.2232vw, 0.75rem);
  font-weight: 500;
}

.op-2-stepwizard-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

.op-2-stepwizard-step button[disabled] {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
}

.op-2-stepwizard-step {
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.btn-circle {
  display:-webkit-box;
  -webkit-box-align:center;
  -webkit-box-pack:center;
  color: white;
  border: none;
  border-radius: 50%;
  font-weight: bold;
  width: 50px;
  height: 50px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  margin: 4px 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  background: var(--secondary);
}

.btn-circle:hover {
  background: var(--main);
}

.op-2-add-to-cart , .op-2-art-approve , .op-2-completion {
  background: rgba(194, 193, 193, 0.1);
}

/******* order process 2 end ******/

/*--------------------------------------------------------------
# Pre Loader
--------------------------------------------------------------*/
#loading-overlay {
  position: fixed;
  width: 100%;
  height:100%;
  left: 0;
  top: 0;
  align-items: center;
  background-color: #000;
  z-index: 1500;
  opacity: 0.5;
}

.loading-icon{
  position:absolute;
  border-top:2px solid #fff;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  border-left:2px solid #767676;
  border-radius:25px;
  width:25px;
  height:25px;
  margin:0 auto;
  position:absolute;
  left:50%;
  margin-left:-20px;
  top:50%;
  margin-top:-20px;
  z-index:4;
  -webkit-animation:spin 1s linear infinite;
  -moz-animation:spin 1s linear infinite;
  animation:spin 1s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }  

/*--------------------------------------------------------------
# Add Logo Modal New Start
--------------------------------------------------------------*/

.upload-form-title {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
}

.upload-step-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: #f0f1f2;
  padding: 6px 0;
  cursor: pointer;
}

.upload-step-one, .upload-step-two, .upload-step-three {
  color: #aaaaaa;
}

.upload-step-one.active, .upload-step-two.active, .upload-step-three.active {
  font-weight: bold;
  color: #000 !important;
}

.step-arrow {
  border: solid #aaaaaa;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.step-right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.mydesign-title{
  width: 100%;
}

.mydesign-title img {
  width: 28px;
  height: 28px;
}

.mydesign-title span {
  font-weight: bold;
  font-size: 0.875rem;
  color: #2d98d1;
}

/* Upload Box Start */
.upload-box {
  margin: 10px 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px dashed #ced4da;
  border-radius: 0.5rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.upload-box:hover {
    border-color: var(--logoed-dark);
    background-color: #ffffff;
}

.upload-box .img-show .file-name {
  max-width: 20ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.uploadbox-button {
  display: inline-block;
  border: 0;
  color: var(--secondary);
  font-weight: bold;
  background-color: #FFF;
  font-size: 0.875rem;
}

.uploadbox-button i {
  color: #000;
}

.upload-text{
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 14px;
  color: #a3a3a3;
}

.upload-text-container p {
  text-align: center;
  font-size: 12px;
  color: #a3a3a3;
  margin-bottom: 0;
}

.file-input-area {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
/* Upload Box End */

.upload-btn-skip, .upload-btn-next {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  padding: 0 3px;
  width: 22%;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

.upload-btn-skip:hover, .upload-btn-next:hover {
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.select-dec-input {
  padding: 0;
  accent-color: #ff0000;
}

.select-dec-container {
  display: flex;
  align-items: center;
  width: 100%;
  border: 3px solid #aaaaaa;
}

.select-dec-container:hover {
  border: 3px solid var(--secondary);
}
.select-dec-container.active {
  border: 3px solid #ff0000;
}

.dec-img {
  max-width: 110px;
  height: auto;
}

.dec-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.dec-text {
  width: 80%;
  height: auto;
  padding: 4px;
}

.dec-text h3 {
  color: #000;
  font-weight: bold;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.dec-desc p {
  font-size: 10px;
  color: #aaaaaa;
  margin-bottom: 0;
}

.position-container.active {
  border: 3px solid var(--secondary);
}

.position-container .position-img {
  cursor: pointer;
  border: 3px solid #aaaaaa;
}

.position-container .position-img:hover {
  border: 3px solid var(--secondary);
  transition: all ease;
}

.position-img {
  border: 2px solid lightgrey;
  border-radius: 10px;
  cursor: pointer;
}

.position-img-active {
  border: 3px solid black !important;
}


.position-container .position-img.position-img-active:hover {
  border: 3px solid #ff0000;
}

.position-text {
  font-size: 0.75rem;
  color: var(--secondary);
  background-color: #cdeaf6;
  font-weight: bold;
  text-transform: uppercase;
}

.position-name {
  font-size: 0.75rem;
  color: #000;
  margin-bottom: 4px;
}

/*--------------------------------------------------------------
# Add Logo Modal End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Print Position Start
--------------------------------------------------------------*/

.pos_btn_center {
  display: flex;
  gap: 15%;
  align-items: center;
  justify-content: center;
}

.pos_btn_start {
  display: flex;
  gap: 15%;
  align-items: center;
  justify-content: start;
}

.pos_btn {
  display: inline-block;
  color: #000;
  padding: 3px 10px;
  margin: 10px 3px;
  border: 1px solid var(--light-grey);
  border-radius: 3px;
  text-decoration: none;
  width: 32%;
  text-align: center;
  font-size: clamp(0.75rem, 0.6429rem + 0.2976vw, 1rem);
  font-weight: bold;
  transition: all 0.2s ease;
}


.pos_btn:hover, .pos_btn:active {
  color: var(--secondary);
  border: 1px solid var(--secondary);
}

.pos_btn:active {
  box-shadow: 0 0 2px rgb(51, 88, 88);
  transform: translateY(2px);
}

.pos-align-center img {
  width: 240px;
  height: 275px;
}

.pos-align-end img {
  width: 240px;
  height: 275px;
}


/*--------------------------------------------------------------
# Print Position End
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Graphic Designer Artwork Start
--------------------------------------------------------------*/

.graphics-designer-artwork-left{
  position: relative;
  width: 100% !important;
  height: 100% !important;
  padding: 0.5rem;
  border-radius: 2rem;
  border: solid 2px var(--light-grey);
  background-color: #fff;
}

.graphics-designer-artwork-left h1{
  font-size: 1.5rem;
  margin-top: 10px;
}

.graphics-designer-artwork-left-pic{
  text-align: center !important;
  width: 60%;
  max-height: 200px;
  border-radius: 20px;
  margin-right: 0.5rem;
}

.graphics-designer-artwork-left-pic img{
  max-height: 200px;
  border-radius: 20px;
}

.graphics-designer-artwork-left-note{
  width: 38% !important;
  height: 100% !important;
}

.graphics-designer-btn{
  border: 3px solid var(--secondary);
  width: 100% !important;
  height: 100% !important;
  padding: 4px;
  border-radius: 20px;
  color: var(--secondary);
  margin-bottom: 5px;
  text-align: center !important;
  text-transform: uppercase;
  transition: all .2s;
}

.graphics-designer-btn:hover{
  color: var(--main);
  border: 3px solid var(--main);
  background: #E4F4FC;
}

.graphics-designer .graphics-designer-btn span{
  font-size: 1.75rem;
}

.graphics-designer .graphics-designer-btn p{
  font-size: 0.688rem;
  font-weight: bold;
  margin-bottom: 0;
}

.gd-btn-danger {
  display: inline-block;
  font-size: 0.875rem;
  color: #fff;
  background-color: #dc3545;
  border:#b02a37;
  border-radius: 5px;
  padding: 3px 8px;
  margin: 0.5rem 0;
  text-align: center !important;
}

.gd-btn-danger:hover {
  background-color: #bb2d3b;
  border: #b02a37;
  color: #fff;
}


/* Start Production and Upload Img Overlay Container Start */
.graphics-designer-artwork-left-activated {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0.4rem;
  border-radius: 2rem;
  z-index: 10;
  inset: 0;
}

.graphics-designer-artwork-left-overlay {
  height: 100%;
  width: 100%;
  background-color: var(--secondary);
  border-radius: 2rem;
  border: 2px solid var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.graphics-designer-artwork-left-overlay span{
  font-size: 2rem;
}

.graphics-designer-artwork-left-overlay p{
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0;
}

.graphics-designer-artwork-left-overlay-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 50%;
  width: 100%;
  background-color: #f1eb27;
}

.graphics-designer-artwork-left-overlay-pic {
  width: 45%;
  max-height: 200px;
  text-align: center !important;
  margin: 0 0.5rem;
}
.graphics-designer-artwork-left-overlay-pic img {
  max-height: 200px;
}

.graphics-designer-artwork-left-overlay-note {
  width: 45%;
  text-align: center;
}

.graphics-designer-artwork-left-overlay-note span {
  font-size: 2rem;
  color: #fff;
}

.graphics-designer-artwork-left-overlay-note p {
  color: #fff;
  width: 100%;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0;
}
/* Start Production and Upload Img Overlay Container End */

/* Add to Cart Overlay Start */
.graphics-designer-artwork-mid-activated {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0.4rem;
  border-radius: 2rem;
  z-index: 10;
  inset: 0;
}

.graphics-designer-artwork-mid-overlay {
  height: 100%;
  width: 100%;
  background-color: var(--secondary);
  border-radius: 2rem;
  border: 2px solid var(--secondary);
}

.graphics-designer-artwork-mid-overlay .graphics-designer-artwork-mid-bluediv {
  font-size: 1.25em;
  font-weight: 550;
  color: #fff;
  text-align: center !important;
  padding-top: 4px;
}

.graphics-designer-artwork-mid-yellowdiv {
  background-color: #f1eb27;
  padding: 0.4rem 0.4rem;
}

.graphics-designer-artwork-mid-yellowdiv h5{
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.2rem !important;
}
	
.graphics-designer-artwork-mid-overlay .graphics-designer-artwork-mid-yellowdiv > p{
  font-size: 0.625rem;
  text-align: justify;
  font-weight: 500;
  margin-bottom: 0;
}	

.graphics-designer-artwork-mid-whitediv {
  background-color: #fff;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  text-align: center !important;
}

.graphics-designer-artwork-mid-whitediv h6{
  font-size: 0.7em;
  font-weight: bold;
  padding: 2px;
}

.graphics-designer-artwork-mid-whitediv input{
	margin:auto;
	width:70%;
}

.graphics-designer-artwork-mid-whitediv input::placeholder{
  color: #000;
  font-weight: bold;
}

.graphics-designer-artwork-mid-overlay .graphics-designer-artwork-mid-whitediv > form h6 textarea {
  height: auto;
  width: 75%;
  margin-left: 5%;
  margin-right: 5%;
  font-size: 0.75rem;
}
/* Add to Cart Overlay End */

.graphics-designer-artwork-mid{
  height: 300px;
  width: 100%;
  border-radius: 32px;
  border: solid 2px #dedcdc;
  background-color: #fff;
  margin-top: 35px;
}

.graphics-designer-artwork-mid h1{
  font-size: 27px;
  margin-top: 10px;
}

/* Payment Table */
.graphics-designer-payment-right{
  width: 100%;
  height: auto;
  border-radius: 32px;
  border: solid 2px var(--secondary);
  background-color: #fff;
}

.graphics-designer-payment-right-heading {
  text-align: center;
  width: 100%;
  background-color: var(--secondary);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.graphics-designer-payment-right-heading h2 {
  color: #fff;
  font-size: 1.5rem;
  padding: 0.5rem 0;
}

.graphics-designer-payment-right-content {
  height: auto;
  width: 100%;
}

.graphics-designer-payment-right-content .artwork-recreation {
  width: 100%;
  color:#146170 ;
}

.graphics-designer-payment-right-content .price-details{
  width: 100%;
  background-color: #e5f2f5;
  color: #000;
}

.graphics-designer-payment-right-content .order-total{
  color: #000;
}

.graphics-designer-payment-right-footer {
  display: inline-block;
  color: #fff;
  background-color: var(--main);
  text-align: center !important;
  font-size: 1.25rem;
  padding: 0.5rem 0;
  width: 100%;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.graphics-designer-payment-right-footer:hover {
  color: #fff;
  background-color: var(--primary);
}

.graphics-designer .lightbox {
  display: none;
  position: fixed;
  z-index: 10;
  inset: 0;
  padding: 1em;
  background: rgba(0, 0, 0, 0.8);
}

.graphics-designer .lightbox:target {
  display: block;
}

.graphics-designer .lightbox span {
  display: block;
  width: 100%;
  height:100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
/*--------------------------------------------------------------
# Graphic Designer Artwork End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Landing Page 1 Start
--------------------------------------------------------------*/
/* Hero Section Start */

#landingpage3 {
  padding-top: 1rem;
  background-color: #f4f5f6;
  background-image: none;
}

.landingpage3-hero .landingpage-hero-img-cont {
  margin-top: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.landingpage3-hero .hero-sc {
  box-shadow: 0px 0px #00000070;
  padding: 65px 10px 10px 10px;
  overflow: visible;
}
.landingpage3-hero .hero-sc .hero-sc-cd span {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 10px;
  margin-top: 5px;
}

.landingpage3-hero .hero-sc .hero-sc-cd h1 {
  color: var(--secondary);
  font-size: clamp(1.875rem, 1.0714rem + 2.2321vw, 3.75rem);
  text-align: left;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.1em;
  margin-bottom: 10px;
}

.landingpage3-hero .hero-sc .hero-sc-list {
  color: var(--secondary);
  text-align: left;
  text-transform: capitalize;
  margin-top: 5px;
  margin-bottom: 50px;
}

.landingpg3-btn {
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  line-height: 1em;
  font-weight: 500;
  font-family: inherit;
  text-align: center !important;
  text-transform: uppercase;
  background-color: #ff5151;
  border:#ff5151;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  transition: all .2s linear;
}

.landingpg3-btn:hover {
  color: #fff;
  background-color: #ff0000;
  border: #ff3d50;
}
/* Hero Section End */

/* Featured Product Start */
.lp-sc-heading {
  text-align: center;
}

.lp-sc-heading-text {
  color: var(--black);
  font-size: clamp(1.5rem, 1.2054rem + 0.8185vw, 2.1875rem);
  line-height: 1.4em;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.lp-sc-heading-seperator {
  display: inline-block;
  border-top-style: solid;
  border-top-width: 3px;
  width: 10%;
  border-color: #ff5151;
  margin-bottom: 15px;
}

/* Product Container Start */

.landingpg3-prod-container .landingpg3-prod-image {
  margin-left: auto;
  margin-right: auto;
  text-align: center !important;
}

.landingpg3-prod-container .landingpg3-prod-image img {
  text-align: center;
  border-radius: 25px;
  box-sizing: border-box;
}

.landingpg3-prod-caption {
  text-align: center;
  caption-side: bottom;
  margin-bottom: 1em;
  margin-top: .5em;
}
/* Product Container End */

/* Transparent Content Start */
.landingpage3-trans .lp-trans-cr {
  position: relative;
  box-shadow: 0px 0px #00000070;
  padding-top: 160px;
  padding-bottom: 160px;
  padding-left: 10px;
  padding-right: 100px;
  overflow: visible;
  border-color: inherit;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: fixed;
  background-image: url(images/banner-02.jpg);
  background-clip: padding-box;
}

.landingpage3-trans .lp-trans-cr::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: -0px;
  left: -0px;
  width: calc(100% + 0px + 0px);
  height: calc(100% + 0px + 0px);
  border-color: inherit;
  background: rgba(244,245,246,0.15);
  opacity: 1;
}

.lp-trans-cr .lp-trans-wrap {
  z-index: 1;
}

.lp-trans-cr .lp-trans-wrap .lp-trans-title-wrap {
  text-align: left;
}

.lp-trans-cr .lp-trans-wrap .lp-trans-title-wrap span {
  color: #000000;
  margin-bottom: 10px;
  margin-top: 5px;
  font-weight: 600;
  font-size: 1.875rem;
}

.lp-trans-cr .lp-trans-wrap p {
  color: #000000;
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 30px;
  margin-top: 5px;
}

.lpg3-dis-content {
  padding-top: 110px;
  padding-bottom: 50px;
}

.lpg3-dis-image-content img {
  vertical-align: middle;
  padding-bottom: 20px;
}

.lpg3-dis-wrap {
  text-align: center;
}

.lpg3-dis-wrap .lpg3-dis-title {
  display:inline-block;
  color: #000000;
  font-size: clamp(1.125rem, 1.0714rem + 0.1488vw, 1.25rem);
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 20px;
}

.lpg3-dis-subtitle {
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.6;
  font-weight: 600;
}
/* Transparent Content End*/

/* Bottom Content */
#landingpage3-bottom-content {
  padding-top: 55px;
  padding-bottom: 55px;
}

.lpg3-bottom-title-wrap {
  margin-bottom: 20px;
  margin-top: 20px;
}

.lpg3-bottom-title {
  color: #000;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 600;
}


/* Featured Product Start */

/*--------------------------------------------------------------
# New Cart Page Start
--------------------------------------------------------------*/
.cart-tresp {
  font-size: clamp(0.75rem, 0.6111rem + 0.4444vw, 1rem);
}

.cart-page-border {
  border: 2px solid var(--light-grey);
}

.cart-header-wrap {
  background-color: #eaebec;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.cart-header-wrap .cart-header-num {
  color: #fff;
  background-color: var(--secondary);
  padding: 0 0.75rem;
  margin-left: 3%;
  font-size: 1rem;
  font-weight: bold;
}

.cart-header-wrap .cart-header-title {
  color: #8a898a;
  margin-left: 2%;
  font-weight: bold;
  font-size: clamp(1rem, 0.8214rem + 0.5714vw, 1.25rem);
}

.prod-child-select:nth-child(odd) {
  background-color: #e6e6e6;
}

.prod-child-select:nth-child(odd) .cart-col-border {
  border-right: 2px solid #ffffff;
}

/* Product Containers Start */

.cart-prod-contain-wrap, .cart-decor-contain-wrap, .prod-pricing-contain-wrap {
  padding: 1rem;
}

.cart-col-border {
  border-right: 2px solid #dee2e6;
}

.cart-prod-contain-wrap .prod-details-wrap label,
.cart-decor-contain-wrap .decor-details-wrap label,
.prod-pricing-contain-wrap label {
  color: #8a898a;
}

.cart-prod-contain-wrap .prod-image-container {
  text-align: center;
  border: 1px solid var(--light-grey);
  max-width: 100px;
  height: auto;
}

.cart-prod-contain-wrap .prod-img {
  max-height: 100px;
  object-fit: contain;
}

.cart-decor-contain-wrap .decor-image-container {
  background-color: #dcdcdc;
  text-align: center;
  max-width: 80px;
  height: auto;
}

.cart-decor-contain-wrap .decor-img {
  max-height: 100px;
  object-fit: contain;
}

.add-logo-btn {
  display: inline-block;
  font-size: 0.75rem;
  text-decoration: none;
  color: #8a898a;
  border: 1px solid #8a898a;
  padding: 5px 10px;
  background-color: #e5e5e5;
  width: 100%;
  max-width: 80px;
}

.add-logo-btn-cart {
  display: inline-block;
  font-size: 0.675rem;
  text-decoration: none;
  color: #8a898a;
  border: 1px solid #8a898a;
  padding: 5px 10px;
  background-color: #e5e5e5;
  width: 100%;
  max-width: 80px;
}

/* buttons */

.prod-update-wrap .cart-edit-btn, .prod-update-wrap .cart-update-btn {
  display: inline-block;
  font-size: 0.875rem;
  width: 100%;
  border: 2px solid #8a898a;
  color: #8a898a;
  padding: 6px 24px;
  text-align: center;
  text-decoration: none;
  transition: all ease .2s;
}

.prod-update-wrap .cart-edit-btn:hover, .prod-update-wrap .cart-update-btn:hover {
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.prod-update-wrap .cart-edit-btn i {
  color: #000000;
  font-size: 1.125rem;
}

.prod-update-wrap .cart-update-btn i {
  color: #ff0000;
  font-size: 1.125rem;
}

/* Cart Size Chart */

.cart-size-chart .op-size {
  font-size: 11px;
  font-weight: 500;
  color: #3b3b3b;
}

.cart-size-chart .op-size-input-box {
  width: 22px;
  height: 25px;
  text-align: center;
}

/* Cart Summary Start */

.cart-summary-board {
  margin-top: 1rem;
}

.cart-summary-board .summary-child {
  padding: 0.25rem 3%;
}

.cart-summary-board .summary-child.summary-title span {
  font-weight: bold;
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
}

.cart-summary-board .summary-child.summary-data p {
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
  margin-bottom: 0;
}

.summary-child:nth-child(odd) {
  background-color: #e6e6e6;
}

/* Cart Delivery Page */
.cart-section-title {
  color: #8a898a;
  font-weight: 500;
  font-size: 1.125rem;
}

/* Custom Check Box Start */
.cart-checkbox-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cart-checkbox-wrapper label {
  color: #8a898a;
  font-size: clamp(0.75rem, 0.6111rem + 0.4444vw, 1rem);
}

.cart-checkbox-wrapper input[type='checkbox'] {
  accent-color: var(--secondary);
}

.cart-checkbox-wrapper input[type=checkbox]:checked + .cart-label-check {
  color: #000;
  font-size: 0.875rem;
  padding: 0 8px;
  border: 2px solid var(--secondary);
  border-radius: 10px;
}

.cart-checkbox-wrapper input[type=checkbox]:checked + .cart-label-color {
  color: var(--secondary);
  font-weight: 500;
}
/* Custom Check Box End */

.cart-delivery-wrap {
  padding: 3% 3%;
}

.cart-payment-wrap {
  margin-top: 1rem;
}

.cart-delivery-form input, .cart-delivery-form select {
  height: 32px;
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
  border-radius: 0;
  border-color: #efefef;
  background-color: #efefef;
}

.cart-delivery-form label {
  font-size: clamp(0.75rem, 0.6964rem + 0.1488vw, 0.875rem);
  color: #000;
  margin-bottom: 3px;
}

.cart-billing-form input, .cart-billing-form select {
  height: 32px;
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
  border-radius: 0;
  border-color: #efefef;
  background-color: #efefef;
}

.cart-billing-form label {
  font-size: clamp(0.75rem, 0.6964rem + 0.1488vw, 0.875rem);
  color: #000;
  margin-bottom: 3px;
}

/* Payment Section Start */
.cart-payment-mbox {
    padding: 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid var(--secondary);
    /* width: 80px; */
    height: 55px;
    border-radius: 10px;
    cursor: pointer;
}

.cart-payment-mbox i {
  color: var(--secondary);
  font-size: 25px;
}

.cart-payment-mbox span {
  color: var(--secondary);
  font-size: 0.5rem;
}

.cart-payment-mbox.active {
  background-color: var(--secondary);
}

.cart-payment-mbox.active i , .cart-payment-mbox.active span {
  color: #fff;
}

.cart-payment-card-wrap, .cart-payment-bank-wrap , .cart-payment-paypal-wrap {
  padding: 4% 3%;
}

.cart-payment-card-wrap label, .cart-payment-bank-wrap label, .cart-payment-paypal-wrap label {
  width: 45%;
}

.cart-payment-card-wrap input, .cart-payment-bank-wrap input, .cart-payment-paypal-wrap input {
  border: 1px solid var(--light-grey);
  border-radius: 0;
}

.cart-payment-card-wrap .input-enlarge, .cart-payment-bank-wrap .input-enlarge, .cart-payment-paypal-wrap .input-enlarge {
  width: 55%;
}

.cart-payment-card-wrap .input-medium {
  width: 65px;
}

.cart-payment-card-wrap .input-small {
  width: 50px;
}

.cart-payment-paybtn {
  background-color: #ddefdd;
  border: 1px solid #2a7c3b;
  color: #2a7c3b;
  padding: 4px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  width: 100%;
}

.cart-payment-paybtn:hover {
  background-color: #2a7c3b;
  color: #fff;
}

.cart-submit-paybtn {
  background-color: #ecf9fd;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 4px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  width: 100%;
}

.cart-submit-paybtn:hover {
  background-color: var(--secondary);
  color: #fff;
}

.cart-payment-banktf {
  font-weight: bold;
}

/* Payment Section End */

/* Delivery & Shipping Start */
.cart-select-delivery-title {
  font-size: 0.75rem;
  color: #e85924;
  font-weight: 500;
  line-height: 1.5;
}

.cart-delivery-type-title {
  font-size: 0.75rem;
}

.cart-delivery-type-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5%;
  gap: 10px;
  border: 1px solid var(--light-grey);
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

.cart-delivery-type-wrap.active {
  color: var(--secondary);
  border: 1px solid var(--secondary);
}

.cart-delivery-type-wrap span {
  font-size: 0.6rem;
  font-weight: 500;
}

.cart-delivery-type-wrap i {
  font-size: 24px;
}

.cart-delivery-type-wrap input {
  display: none;
}

/* Courier Type Start */
.cart-select-delivery-box {
  width: 100% !important;
  padding: 0.75rem;
  border: 1px solid var(--light-grey);
  text-decoration: none;
  color: #000;
}

.cart-select-delivery-box.active {
  background-color: var(--light-blue);
}

.cart-select-delivery-box .service-pricing {
  font-weight: bold;
  margin-bottom: 0;
  font-size: clamp(0.875rem, 0.8056rem + 0.2222vw, 1rem);
}

.cart-select-delivery-box .service-description p {
  margin-bottom: 0;
}

.cart-select-delivery-box .service-check {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.cart-select-delivery-box .service-check .form-check-input:checked {
  background-color: var(--secondary) !important;
  border-color: var(--secondary);
}

/* Coupon Box */
.cart-coupon-padding {
  padding-left: 6%;
  padding-right: 3%;
}

.cart-coupon-wrap {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin-bottom: 0.5rem;
}

.cart-coupon-wrap input {
  width: 65%;
  border: 1px solid var(--light-grey);
  border-radius: 0;
}

.cart-coupon-wrap .coupon-submit {
  display: inline-block;
  padding: 4px 15px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  border: 2px solid var(--secondary);
  background-color: var(--secondary);
}

.cart-coupon-wrap .coupon-submit:hover {
  display: inline-block;
  padding: 4px 15px;
  border-radius: 0 !important;
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  border: 2px solid var(--secondary);
  background-color: var(--main);
}

.logo-notes-btn {
  display: inline-block;
  padding: 4px 5px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  border: 2px solid var(--secondary);
  background-color: var(--secondary);
}

.logo-notes-btn:hover {
  color: #fff;
  background-color: var(--main);
}

.cart-total-price-wrap {
  padding-right: 6%;
}

.cart-total-price-wrap p {
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
  margin-bottom: 0.5rem;
}

.cart-total-price-wrap .cart-price {
  font-weight: bold;
  color: #000;
}

.cart-total-price-wrap .cart-shipping-price {
  text-decoration: line-through;
  text-decoration-color: #ff0000;
  text-decoration-thickness: 2px;
}

.pselect-container, .shipshowhide {
  display: none;
}

.pselect-container.active, .shipshowhide.active {
  display: block;
}


/* Bootstrap Carousel Start */
@media (max-width: 767px) {
  .carousel-inner .carousel-item > div {
    display: none;
  }
  .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

  .carousel-inner .carousel-item-end.active,
  .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }

  .carousel-inner .carousel-item-start.active, 
  .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
  }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start { 
  transform: translateX(0);
}
/* Bootstrap Carousel End */

/*--------------------------------------------------------------
# Landing Page 5 Start
--------------------------------------------------------------*/

.home-xl-title {
  color: #7e8182;
  font-weight: bold;
  font-size: clamp(1.375rem, 1.0278rem + 1.1111vw, 2rem);
}

.home-text-xl-main {
  font-size: clamp(1.25rem, 0.8333rem + 1.3333vw, 2rem);
}

.home-lg-title {
  color: #bbbdbd !important;
  font-weight: 800 !important;
  font-size: clamp(1.25rem, 1.1574rem + 0.4938vw, 1.75rem) !important;
  text-transform: capitalize;
}

#mob_header_trans {
  margin-top: 60px;
  background-color: #fff;
}

.home-section-wrap .desc-wrap {
  padding-top: 14px;
  padding-bottom: 5px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: clamp(1rem, 0.8148rem + 0.9877vw, 2rem);
  text-transform: capitalize;
}

@keyframes blinkwrap {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.home-section-wrap.flash-wrap {
  animation: blinkwrap 1s infinite ease-in-out;
}

.home-section-wrap .must-read-wrap {
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}

.home-section-wrap .must-read-wrap span {
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.375rem, 1.0278rem + 1.1111vw, 2rem);
  text-transform: uppercase;
}

.home-section-wrap .consultation-btn {
  display: inline-flex;
  justify-content: center;
  background-color: #000;
  border: 0;
  border-radius: 100px;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.125rem, 1.0556rem + 0.3704vw, 1.5rem);
  cursor: pointer;
  font-weight: 600;
  padding: 8px 32px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: -1.5rem;
}

.home-section-wrap .consultation-btn:hover,
.home-section-wrap .consultation-btn:focus { 
  background-color: #16437E;
  color: #fff;
}

.home-section-wrap .consultation-btn:active {
  background: #09223b;
  color: rgb(255, 255, 255, .7);
}

.home-section-wrap {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.home-section-wrap .section-title-wrap {
  text-align: center;
  margin-bottom: 2rem;
}

.home-section-wrap .section-desc-title {
  text-align: center;
  margin-bottom: 1rem;
}

/* Company To Date Start */

.home-todate-bg {
  background-image: linear-gradient(#2D98D1, #E4F4FC);
}

.home-todate-wrap h3 {
  color: #011b32;
  font-size: clamp(2.5rem, 2.3843rem + 0.6173vw, 3.125rem);
  font-weight: 700;
}

.home-todate-wrap .wrap-title {
  color: #011b32;
  font-size: clamp(1.25rem, 1.2037rem + 0.2469vw, 1.5rem);
  font-weight: 700;
  border-bottom: 4px solid var(--secondary);
}

.home-todate-wrap .wrap-desc {
  color: #011b32;
  font-size: clamp(1rem, 0.9537rem + 0.2469vw, 1.25rem);
  font-weight: 500;
  font-style: italic;
}

.home-marker-main {
  font-weight: 500;
}

.home-marker-main li {
  margin-bottom: 0.875rem !important;
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
}

.home-marker-main li::marker {
  color: var(--main);
}

/* brand experience */
.brand-experience-card {
  padding: 1rem;
  margin: 0.5rem;
  border: 2px solid #dee2e6;
  border-radius: 10px;
  position: relative;
}

.brand-experience-card .card-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.brand-experience-card .image-wrap {
  display: -webkit-box;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  width: 200px;
  height: 200px;
  text-align: center;
  padding: 0.5rem;
  border: 2px solid #dee2e6;
  border-radius: 50%;
  background-color: #fff;
}

.brand-experience-card .image-wrap img {
  max-height: 120px;
}

.brand-experience-wrap {
  min-height: 160px;
  margin-bottom: 4rem;
}

.brand-experience-wrap p {
  font-size: 13px;
  display: inline;
  -webkit-line-clamp: 10;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.brand-bottom-wrap {
  line-height: 1.25rem !important;
  text-align: end;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.brand-achieve-notes {
  font-size: clamp(1.25rem, 1.2153rem + 0.1852vw, 1.4375rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

/* Slick Slider Button Custom */

.slick-wrapper {
  width: 85%;
  margin: 0 auto;
}

.slick-prev:before {
  color: var(--secondary) !important;
  font-size: 24px !important;
}
.slick-next:before {
  color: var(--secondary) !important;
  font-size: 24px !important;
}

/* **** Book Appointment **** */

.book-appointment-steps, .assessment-steps {
  text-align: center;
}

.book-appointment-logo {
  max-width: 200px;
  object-fit: contain;
}

.book-appointment-steps, .assessment-steps {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.book-appointment-steps .step, .assessment-steps .assessment-step {
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  opacity: 0.8;
}

.book-appointment-steps .step.active, .assessment-steps .assessment-step.active {
  background-color: var(--main);
}

.book-appointment-tabs-wrap, .assessment-tabs-wrap {
  padding: 1rem;
}

.book-appoint-tab, .assessment-tab {
  display: none;
}


.book-appoint-tab h1, .assessment-tab h1 {
  color: #000;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.book-appoint-tab p, .assessment-tab p {
  font-size: 14px;
  color: #aaaaaa;
  text-align: center;
}

.book-appoint-tab input[type="text"],.book-appoint-tab input[type="number"],.book-appoint-tab input[type="email"] {
  font-size: 0.875rem;
  border-radius: 0;
  background-color: #efefef;
  width: 100%;
  border: 1px solid #efefef;
  border-radius: 0;
  padding: 12px 20px;
  box-sizing: border-box;
}

.book-appoint-checks {
  padding-left: 1rem;
  text-align: unset !important;
}

.book-appoint-checks input {
  border-color: var(--main) !important;
}

.book-appoint-tab input.invalid {
  background-color: #ffdddd !important;
}

.book-appoint-btn-wrap {
  text-align: center;
  padding: 1rem;
  display: block;
  width: 100%;
}

.book-appoint-btn-wrap #nextBtn {
  color: #000;
  text-align: center;
  background-color: var(--main);
  border: none;
  font-size: 17px;
  padding: 5px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.book-appoint-btn-wrap #prevBtn {
  text-align: center;
  color: #000;
  background-color: var(--light-grey);
  border: none;
  font-size: 17px;
  padding: 5px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 8px;
}

.book-appoint-btn-wrap #nextBtn:hover, .book-appoint-btn-wrap #prevBtn:hover {
  opacity: 0.9;
}


.assessment-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 40px;
  padding: 1rem;
}

.assessment-btn-wrap #yesBtn, .assessment-btn-wrap .bookNowBtn, .assessment-btn-wrap .chatNowBtn {
  color: #000;
  text-align: center;
  background-color: var(--main);
  border: none;
  font-size: 17px;
  padding: 5px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.assessment-btn-wrap #noBtn {
  color: #000;
  text-align: center;
  background-color: var(--main);
  border: none;
  font-size: 17px;
  padding: 5px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* Calender */

/****calender popup start*****/

.portfolio-popup{
  padding-bottom: 100px;
  padding-top: 120px;
}

.calendar, .calendar_weekdays, .calendar_content {
  max-width: 400px;
}

.calendar {
  margin: auto;
  font-family:'Muli', sans-serif;
  font-weight: 400;
}

.calendar_content, .calendar_weekdays, .calendar_header {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
}

.calendar_weekdays div {
  display:inline-block;
  vertical-align:top;
}

.calendar_weekdays div, .calendar_content div {
  width: 14.28571%;
  overflow: hidden;
  text-align: center;
  background-color: transparent;
  color: #6f6f6f;
  font-size: 14px;
}

.calendar_content div {
  border: 1px solid transparent;
  float: left;
  padding: 10px;
}

.calendar_content div:hover {
  border: 1px solid #dcdcdc;
  cursor: default;
  border-radius:50%;
}

.calendar_content div.blank:hover {
  cursor: default;
  border: 1px solid transparent;
}

.calendar_content div.past-date {
  color: #d5d5d5;
}

.calendar_content div.today {
  font-weight: bold;
  font-size: 14px;
  color: #000 !important;
  border-radius: 50%;
  background: var(--main);
  padding: 10px;
}

.calendar_content div.selected {
  background-color: var(--main);
  border-radius: 50%;
  color: #000 !important;
  padding: 10px;
}

.calendar_header {
  width: 100%;
  text-align: center;
}

.calendar_header h2 {
  padding: 0 10px;
  font-family:'Muli', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--main) !important;
  float:left;
  width:70%;
  margin: 0 0 10px;
}

button.switch-month {
  background-color: transparent;
  padding: 0;
  outline: none;
  border: none;
  color: #dcdcdc;
  float: left;
  width:15%;
  transition: color .2s;
}

button.switch-month:hover {
  color: var(--main) !important;
}

.portfolio-popup .btn-outline-primary {
  color: #fff !important;
  border-color: var(--main) !important;
  width: 100%;
}

.portfolio-popup .btn-outline-primary:hover {
  color: #fff !important;
  background-color: var(--secondary) !important;
}

.portfolio-popup .btn-outline-primary{
  color: var(--main) !important;
  border-color: var(--main) !important;
}

.portfolio-popup .btn-secondary{
  width:45%;
}

.portfolio-popup .btn-primary {
  background-color: var(--main) !important;
  width:45%;
}

.portfolio-popup .btn-outline-primary:hover {
  color: #fff !important;
  background-color: var(--secondary) !important;
}

.portfolio-popup .btn-secondary {
  width: 50%;
}

/****calender popup end*****/


/* New View File */
.product-view-img-wrap {
  max-width: 100%;
  max-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.product-view-img-wrap .prod-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.view-select-border-box {
  border: 2px solid var(--light-grey);
  padding: 20px 7%;
}

.select-image-box .prod-name {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0.25rem !important;
}

.view-select-img {
  border: 1px solid var(--light-grey) !important;
  font-size: 15px;
  font-weight: 600;
}

.view-image-border {
  border: 1px solid var(--light-grey) !important;
}

.view-selected-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 10px;
  height: 200px;
}

.view-selected-img-wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
}

.uploaded-logo-box {
  border: 2px solid var(--light-grey) !important;
  padding: 10px;
}

.logo-close-btn-wrap {
  background-color: var(--light-grey);
  text-align: right;
}

.logo-close-btn-wrap a {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  padding-right: 7px;
}

.uploaded-logo-box .uploaded-logo {
  max-width: 100%;
  max-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--light-grey) !important;
  margin-bottom: 0.5rem;
}

.uploaded-logo-box .uploaded-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 98px;
  object-fit: contain;
}

.uploaded-logo-box .logo-desc label {
  color: #8a898a;
  font-size: 14px;
}

.uploaded-logo-box .logo-desc p {
  font-size: 14px;
}




/* Courier Dispatch Start */

.courier-dispatch-boxwrap {
  border: 1px solid #000;
}

.courier-dispatch-boxwrap .box-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  color: #fff;
  padding: 5px 15px;
  font-weight: bold;
}

.courier-dispatch-boxwrap .box-title a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
}

.courier-dispatch-boxwrap .box-title a:hover {
  color: var(--secondary);
}

.courier-dispatch-boxwrap .box-content {
  padding: 1rem;
}

.courier-dispatch-boxwrap .box-content .textviolet {
  color: #613bc2;
}

.customs-info-btn {
  display: block;
  padding: 3px 15px;
  border: none;
  background-color: #bef4f2;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: all ease 0.3s;
}

.customs-info-btn:hover {
  background-color: var(--secondary);
  color: #fff;
}

/********** COURIER NEW PAGE ***********/

.decor-image-container {
  text-align: center;
  border: 1px solid var(--light-grey);
  width: 100px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.decor-image-container .decor-img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 98px;
  max-height: 78px;
  object-fit: contain;
}

.view-file-button {
  display: inline-block;
  font-size: 0.75rem;
  text-decoration: none;
  color: #fff;
  border: none;
  padding: 0 8px;
  background-color: var(--secondary);
}

.label-text-grey {
  color: #8a898a;
}

.custom-input-select input[type='text'],
.custom-input-select input[type='date'],
.custom-input-select input[type='datetime-local'],
.custom-input-select input[type='time'],
.custom-input-select input[type='number'],
.custom-input-select input[type='email'],
.custom-input-select input[type='file'],
.custom-input-select textarea,
.custom-input-select input[list],
.custom-input-select select {
  height: 30px;
  font-size: 0.75rem;
  border-radius: 0;
  border-color: #efefef;
  background-color: #efefef;
}

.courier-dispatch-qrwrap {
  text-align: center;
}

.courier-dispatch-qrwrap img {
  max-width: 115px;
}

.courier-dispatch-qrwrap p {
  margin-bottom: 0;
  font-weight: 600;
}

/* Size Table */
.courier-size-table {
  border: 1px solid #ccc;
  border-collapse: collapse;
}

.courier-size-table th {
  min-width: 70px;
}

.courier-size-table th, .courier-size-table td {
  border: 1px solid #ccc;
  padding: 5px;
  text-align: center;
  vertical-align: middle;
}


.courier-size-table th p, .courier-size-table td p {
  margin-bottom: 0;
}

.courier-size-table td input[type="text"] {
  text-align: center;
  border: none;
  outline: none;
  width: 45px;
  font-weight: bold;
}

.courier-size-table .avl-sizes {
  color: #adacac;
  font-weight: bold;
}

.courier-size-table .avl-stock {
  color: #ccc;
}


/* Picking Size Table */
.courierpicking-size-table {
  /* border: 1px solid #ccc; */
  border-collapse: collapse;
}

.courierpicking-size-table th {
  min-width: 70px;
}

.courierpicking-size-table th, .courierpicking-size-table td {
  border: 1px solid #ccc;
  padding: 5px;
  text-align: center;
  vertical-align: middle;
}

.courierpicking-size-table tr:last-child {
  border: none;
}

.courierpicking-size-table tr:last-child td {
  border: none;
}


.courierpicking-size-table th p, .courierpicking-size-table td p {
  margin-bottom: 0;
}

.courierpicking-size-table td input[type="text"] {
  text-align: center;
  border: none;
  outline: none;
  width: 45px;
  font-weight: bold;
}

.courierpicking-size-table .avl-sizes {
  color: #adacac;
  font-weight: bold;
}

.courierpicking-size-table .avl-stock {
  color: #ccc;
}

/* Custom Check Button */

.courier-picked-check {
  position: relative;
}

.courier-picked-check .fa-check {
  position: relative;
  color: #ccc;
  opacity: 0.6;
  font-size: 20px;
  z-index: -1;
}

.courier-picked-check input[type=checkbox] {
  position: relative;
  /* opacity: 0;
  inset: 0; */
  cursor: pointer;
}

.courier-picked-check input[type=checkbox]:checked + .fa-check {
  color: #008000;
  font-size: 20px;
}

.courier-dispatch-submit {
  margin-bottom: 0.75rem;
}

.courier-submit-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 3px 15px;
  color: #000;
  font-weight: bold;
  background-color: #ecf2e6;
  text-decoration: none;
  transition: all ease 0.3s;
  border: none;
}
.courier-submit-btn:hover {
  color: #fff;
  background-color: var(--secondary);
}

.courier-dispatch-proddecwrap {
  border: 1px solid #adacac;
  padding: 15px;
  margin: 10px;
}

.uploaded-logo-wrap {
  border: 1px solid #adacac;
  width: 100px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uploaded-logo-wrap img {
  max-width: 96px;
  max-height: 68px;
  object-fit: contain;
}

.prod-complete-decorcard {
  padding: 10px;
  background-color: #fff;
}

.production-complete-container:nth-child(odd) {
  background-color: #eaeaea;
}

.packing-complete-container:nth-child(odd) {
  background-color: #eaeaea;
}

.bg-light-green {
  background-color: #a4ead9;
}

.mockup-process-wrap {
  background-color: #fff;
  margin-bottom: 0.5rem;
  text-align: center;
}

.product-page-btn{
  display: inline-block;
  font-size: 0.75rem;
  color: #000;
  background-color: #E4F4FC;
  text-decoration: none;
  padding: 3px 9px;
  text-align: center;
  border: 1px solid #686868;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
}

.product-page-btn:hover {
  color: #fff;
  background-color: var(--secondary);
}

/*** Order Tracking ***/

.col-border-grey {
  border: 2px solid #a2a3a3;
}

.col-inner-border {
  border-right: 2px solid #dee2e6;
}

.ordered-prod-wrap {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 10px;
	margin-bottom: 0.5rem;
	/* background-color: #efefef; */
}

.ordered-prod-img-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	background-color: #fff;
	border:1px solid #AFAFAF;
}

.ordered-prod-img-container img {
	max-width: 68px;
	max-height: 68px;
	object-fit: contain;
}

.ordered-prod-info {
	line-height: 1.2;
}

.ordered-prod-info label {
	color: #8a898a;
}

/* current-prog bar start */

.order-tracking-desk-wrap {
	/* background-color: #F8F8F8; */
	margin-bottom: 20px;
	/* padding: 35px; */
	margin-top: 20px;
}

/* .pt45{padding-top:45px;} */

.order-tracking-desk {
	text-align: center;
	width: 14%;
	position: relative;
	display: block;
}

.order-tracking-desk .is-complete{
	display: block;
	position: relative;
	border-radius: 50%;
	height: 25px;
	width: 25px;
	border: 0px solid #AFAFAF;
	background-color: #f7be16;
	margin: 0 auto;
	transition: background 1s linear;
	-webkit-transition: background 1s linear;
	z-index: 2;
}

.order-tracking-desk .is-complete:after {
	display: block;
	position: absolute;
	content: '';
	height: 14px;
	width: 7px;
	top: -2px;
	bottom: 0;
	left: 5px;
	margin: auto 0;
	border: 0px solid #AFAFAF;
	border-width: 0px 2px 2px 0;
	transform: rotate(45deg);
	opacity: 0;
}

.order-tracking-desk.completed .is-complete{
	border-color: #27aa80;
	border-width: 0px;
	background-color: #27aa80;
}

.order-tracking-desk.completed .is-complete:after {
	border-color: #fff;
	border-width: 0px 3px 3px 0;
	width: 8px;
	left: 9px;
	opacity: 1;
}

.order-tracking-desk p {
	color: #A4A4A4;
	font-size: 12px;
	margin-top: 8px;
	margin-bottom: 0;
	line-height: 20px;
}

.order-tracking-desk p span {
  font-size: 10px;
  font-weight: 500;
}

.order-tracking-desk.completed p{
  color: #000;
}

.order-tracking-desk::before {
	content: '';
	display: block;
	height: 3px;
	width: calc(100% - 20px);
	background-color: #f7be16;
	top: 11px;
	position: absolute;
	left: calc(-50% + 10px);
	z-index: 0;
}

.order-tracking-desk:first-child:before {
	display: none;
}

.order-tracking-desk.completed:before {
	background-color: #27aa80;
}



/***** Order tracking Mobile Version  *****/

.order-tracking-mob ul{
	display: flex;
  }
  
  .order-tracking-mob ul li{
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 80px;
  }
  
  .order-tracking-mob ul li .icon{
	font-size: 35px;
	color: #ff4732;
	margin: 0 60px;
  }
  
  .order-tracking-mob ul li .text{
	font-size: 14px;
	color: #000000;
  }
  
  /* current-prog Div Css  */
  
  .order-tracking-mob ul li .current-prog{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #f7be16;
	margin: 14px 0;
	display: grid;
	place-items: center;
	color: #fff;
	position: relative;
	cursor: pointer;
  }
  
  .order-tracking-mob ul li .current-prog::after{
	content: " ";
	position: absolute;
	width: 125px;
	height: 5px;
	background-color: #f7be16;
	right: 30px;
  }
  
  /* .order-tracking-mob ul li .current-prog.f-one::after{
	width: 0;
	height: 0;
  } */

  .order-tracking-mob ul li:nth-child(1) .current-prog::after {
    width: 0;
    height: 0;
  }
  
  .order-tracking-mob ul li .current-prog i{
	display: none;
  }
  
  .order-tracking-mob ul li .current-prog p{
	font-size: 13px;
  }
  
  /* Active Css  */
  
  .order-tracking-mob ul li .completed{
	background-color: #27aa80;
	display: grid;
	place-items: center;
  }
  
  .order-tracking-mob ul li .completed::after{
	background-color: #27aa80;
  }
  
  .order-tracking-mob ul li .completed p{
	display: none;
  }
  
  .order-tracking-mob ul li .completed i{
	font-size: 17px;
	display: flex;
  }
  
  /* Responsive Css  */
  
  @media (max-width: 980px) {
	.order-tracking-mob  ul{
		flex-direction: column;
	}
	.order-tracking-mob ul li{
		flex-direction: row;
	}
	.order-tracking-mob ul li .current-prog{
		margin: 0 20px;
	}
	.order-tracking-mob ul li .current-prog::after{
		width: 5px;
		height: 55px;
		bottom: 30px;
		left: 50%;
		transform: translateX(-50%);
		z-index: -1;
	}
	/* .order-tracking-mob ul li .current-prog.f-one::after{
		height: 0;
	} */
  .order-tracking-mob ul li:nth-child(1) .current-prog::after {
    width: 0;
    height: 0;
  }
	.order-tracking-mob ul li .icon{
		margin: 15px 0;
	}
  }
  


/***** Customer Survey Form  ******/

.survey-body-color {
  background-color: rgb(240, 240, 240);
}

.survey-bordered-box {
  margin-top: 12px;
  background-color: #fff;
  border: 1px solid rgb(218,220,224);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 24px;
  padding-top: 22px;
  position: relative;
}

.survey-bordered-box .border-grey-1 {
  border-top: 1px solid rgb(218,220,224);
  left: 0;
  position: absolute;
  width: 100%;
}

.survey-box-title {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.survey-box-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
}

.survey-submit-btn {
  display: inline-block;
  color: #fff;
  background-color: var(--main);
  text-decoration: none;
  padding: 3px 9px;
  text-align: center;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.survey-submit-btn:hover {
  background-color: var(--secondary);
}


/* Modal Size Chart View Page */
.msize-chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 20px;
  background-color: var(--main);
}

.msize-chart-title p {
  color: #000;
  font-weight: bold;
}

.msize-close-btn {
  background-color: var(--main);
  border: none;
  color: white;
  padding: 0;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
}

.msize-chart-wrap {
  padding: 0 4% 4% 4%;
}

.msize-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  font-size: clamp(0.75rem, 0.4375rem + 1vw, 1rem);
  border-bottom: 1px solid #ccc;
}

.msize-wrap label {
 min-width: 100px;
}

.msize-total {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 16px;
}

.msize-total label {
  font-size: clamp(0.625rem, 0.3125rem + 1vw, 0.875rem);
  font-weight: bold;
  min-width: 100px;
}

.msize-total p {
  font-size: clamp(0.75rem, 0.4375rem + 1vw, 1rem);
}

.msize-btn-group {
  display: flex;
  align-items: center;
  font-size: clamp(0.75rem, 0.4375rem + 1vw, 1rem);
}

.msize-btn-group input[type="text"] {
  width: 100%;
  max-width: 60px;
  height: 30px;
  border: 1px solid #000;
  border-left: none;
  border-right: none;
  outline: none;
  background-color: transparent;
  font-size: clamp(0.75rem, 0.4375rem + 1vw, 1rem);
}

.msize-btn-group .decrease-btn {
  display: inline-block;
  text-align: center;
  width: 30px;
  height: 30px;
  color: #000;
  background:none;
  border: 1px solid #000;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.msize-btn-group .increase-btn {
  display: inline-block;
  text-align: center;
  width: 30px;
  height: 30px;
  color: #000;
  background:none;
  border: 1px solid #000;
  border-radius: 0 5px 5px 0;
  outline: none;
}

/* .msize-wrap span {
  display: none;
  color: #888;
  font-size: clamp(0.5625rem, 0.3281rem + 0.75vw, 0.75rem);
} */

/* .msize-wrap input[type="text"] {
  max-width: 60px;
  border: none;
  outline: none;
  background-color: transparent;
}

.msize-wrap input[type="text"]:focus {
  border-bottom: 1px solid #000;
} */

.msize-save-btn {
  background-color: var(--main);
  border: none;
  color: #000;
  font-weight: 600;
  padding: 2px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  max-width: 60%;
  margin: 0 auto;
}

@media screen and  (max-width: 576px) {
  .msize-total {
    padding-left: 20px;
  }
}


/*** Process Page CSS Start ***/
.bg-process-grey:nth-child(odd) {
  background-color: #efefef;
  padding: 1rem 0;
  margin-bottom: 0.75rem;
}

.process-artwork-container {
  width: 90%;
  margin-bottom: 1rem;
}

.process-artwork-container .prod-container-xl {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
  max-width: 462px;
  max-height: 333px;
  background-color: #fff;
}

.process-artwork-container .prod-container-xl img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 462px;
  max-height: 333px;
}

.process-terms-wrap {
  display: flex;
  gap: 5px;
  margin-bottom: 0.75rem;
}

.process-terms-wrap input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 0;
}

.process-terms-wrap .process-terms-label p {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}

.process-btn-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.process-btn-success {
  flex: 1;
  display: inline-block;
  background-color: #add1bd;
  color: #118641;
  border: 2px solid #118641;
  padding: 6px 20px;
  margin: 4px 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
}

.process-btn-success:hover {
  color: #05642c;
  border: 2px solid #05642c;
}

.process-btn-warning {
  flex: 1;
  display: inline-block;
  background-color: #e8b4b4;
  color: #d42426;
  border: 2px solid #d42426;
  padding: 6px 20px;
  margin: 4px 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
}

.process-btn-warning:hover {
  color: #bf191b;
  border: 2px solid #bf191b;
}

.process-label {
  font-weight: normal;
  font-style: italic;
  font-size: clamp(0.6875rem, 0.6125rem + 0.3vw, 0.875rem);
}

.process-label.cs-width {
  width: 55%;
}

.process-info {
  font-weight: normal;
  font-size: clamp(0.6875rem, 0.6125rem + 0.3vw, 0.875rem);
}

.process-info-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: normal;
  font-size: clamp(0.6875rem, 0.6125rem + 0.3vw, 0.875rem);
  transition: all 0.3s;
}

.process-info-link:hover {
  color: var(--primary);
}

.process-jobdetails-container {
  margin-bottom: 1rem;
}

.process-dec-container {
  border: 2px solid #a2a3a3;
  margin-bottom: 0.5rem;
}

.process-dec-imgwrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 100%;
  height: 100%;
  max-width: 80px;
  max-height: 80px;
}

.process-dec-imgwrap img {
  max-width: 80px;
  max-height: 80px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.process-dec-label {
  color: #8a898a;
  font-size: 12px;
}

.process-dec-info {
  font-size: 12px;
  font-size: 500;
}
.process-chat-wrap{
	max-height: 300px; overflow-y: auto;
}
/* accordion start */
.process-accordion {
    width: 100%;
    margin-bottom: 1rem;
}

.process-accordion-item {
    padding: 10px;
    border-bottom: 1px solid #000;
}

.process-accordion-item:first-child {
    border-top: 1px solid #000;
}

.process-accordion-header {
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-user-select: none;  /* Chrome, Safari */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE10+/Edge */
    user-select: none;          /* Standard syntax */
}

.process-accordion-header::after {
    content: '\002B';
    color: #000;
    font-weight: bold;
}

.process-accordion-item.open .process-accordion-header::after {
    content: "\2212";
}

.process-accordion-content {
  padding: 0 18px;
  overflow: hidden;
  display: none;
}

/* Order Updates Accordion */

.orderupdates-accordion {
  width: 100%;
  margin-bottom: 1rem;
}

.orderupdates-accordion-item {
  border: 1px solid #000;
}

/* .orderupdates-accordion-item:first-child {
  border-top: 1px solid #000;
} */

.orderupdates-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  background-color: #cccbcb;
  text-decoration: none;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 10%;
  padding-right: 10%;
  cursor: pointer;
  -webkit-user-select: none;  /* Chrome, Safari */
  -moz-user-select: none;     /* Firefox */
  -ms-user-select: none;      /* IE10+/Edge */
  user-select: none;          /* Standard syntax */
}

.orderupdates-accordion-header h3 {
  color: #000;
  margin: 0;
  font-size: clamp(0.75rem, 0.65rem + 0.4vw, 1rem);
  font-weight: bolder;
}

.orderupdates-accordion-header::after {
  content: '\002B';
  color: #000;
  font-weight: bold;
}

.orderupdates-accordion-item.open .orderupdates-accordion-header::after {
  content: "\2212";
}

.orderupdates-accordion-content {
  padding: 0.75rem 8%;
  background-color: #efefef;
  overflow: hidden;
  display: none;
}

/* accordion end */

.faq-accordion .accordion-button {
    padding: 10px;
    font-size: 14px;
    background: #efefef; 
}
.faq-accordion .accordion-button::after {
    width: 0.75rem !important;
    height: 0.75rem !important;
    background-size: 0.75rem 0.75rem !important;
}
.faq-accordion .accordion-body {
    padding: 0.5rem 0.75rem;
    font-size: 12px;
    background: #efefef;
}

.process-onhold-wrap {
    border: 2px solid #a2a3a3;
    border-top: none;
}

.process-onhold-title {
    background-color: #d42426;
    padding: 10px 30px;
}

.process-onhold-title h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    font-size: clamp(0.875rem, 0.775rem + 0.4vw, 1.125rem);
}

/* section 2 start */
.process-box-container {
    border: 1px solid #000;
}

.process-box-container .process-box-header {
  background-color: #cccbcb;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 10%;
  padding-right: 10%;
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.process-box-container .process-box-header h3 {
  margin: 0;
  font-size: clamp(0.75rem, 0.65rem + 0.4vw, 1rem);
  font-weight: bolder;
}

.process-box-container .process-box-header h3 a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
}

.process-box-container .process-box-header h3 a:hover {
  color: var(--secondary);
}

.process-box-container .process-box-content {
    padding: 0.75rem 8%;
    background-color: #efefef;
}

/* process box steps */
.process-view-btn {
  display: inline-block;
  color: #000;
  background-color: #d7d9d8;
  font-size: clamp(0.6875rem, 0.6125rem + 0.3vw, 0.875rem);
  padding: 2px 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

.process-view-btn:hover {
  color: #fff;
  background-color: var(--secondary);
}

/* start */
.process-steps-wrap {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0.75rem 0;
}

.process-steps-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: calc(50% - 90px);
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  vertical-align: baseline;
  background: #d7d9d8;
  z-index: 0;
  transition: background-color 0.5s ease;
}

.process-steps-wrap.active::before {
  background-color: #add1bd;
}

.process-steps, .process-steps-info {
  position: relative;
  z-index: 1;
}

.process-steps {
  background-color: #d7d9d8;
  width: 100%;
  max-width: 295px;
  font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  text-align: center;
  padding: 5px 0;
  margin-right: 60px;
  transition: background-color 0.5s ease;
}

.process-steps-wrap.active .process-steps {
  background-color: #add1bd;
}

.process-steps-info {
  min-width: 100px;
  background-color: #efefef;
  padding: 0 6px;
  text-align: left;
  font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
}

.process-main-btn {
  display: inline-block;
  width: 100%;
  background-color: var(--secondary);
  color: #fff;
  border: none;
  outline: none;
  padding: 5px 20px;
  margin: 4px 0;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

.process-section-divider {
  width: 100%;
  height: 2px;
  background: #000;
}


/* textarea */

.process-chat-textarea {
  font-size: 14px;
  border-radius: 0 !important;
  border: 1px solid #000 !important;
}

.process-chat-textarea {
  margin-bottom: 0.5rem;
}

.process-textarea-inputs {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
}

.process-chatsend-filebtn {
  display: inline-block;
  color: #000;
  border: 1px solid #4e4e4c;
  outline: none;
  font-size: 14px;
  padding: 3px;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  text-decoration: none;
  transition: all 0.3s;
}

.process-chatsend-filebtn i {
  color: #4e4e4c;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-chatsend-btn {
  display: inline-block;
  color: #000;
  background-color: #aedee3;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: bold;
  padding: 2px 10px;
  text-decoration: none;
  transition: all 0.3s;
}

.process-textarea-inputs .chat-file-name {
  font-size: 14px;
}


/**** Stock Check Start ****/

.stockcheck-img-wrap img {
  width: 100%;
  height: auto;
  max-width: 250px;
  min-height: 250px;
  object-fit: contain;
}

.stockcheck-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.stockcheck-label {
  margin: 0;
  font-weight: bold;
  font-size: clamp(0.875rem, 0.825rem + 0.2vw, 1rem);
}

.stockcheck-info {
  margin: 0;
  font-weight: bold;
  font-size: clamp(0.875rem, 0.825rem + 0.2vw, 1rem);
}

.stockcheck-btn-primary {
  display: inline-block;
  color: #fff;
  background-color: var(--secondary);
  border: 0;
  outline: 0;
  text-decoration: none;
  padding: 2px 10px;
}

.add-entry-table th {
  min-width: 120px;
}

.stock-check-table-wrap {
	padding: 8px 15px;
	background-color: #2D98D1;
}

.stock-check-table-title {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0;
}

/* Alert */
.product-alert-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}

.product-alert-container i {
  color: #808080;
}

.product-alert-container.active i {
  color: #ff0000;
}

.product-alert-container .product-alert-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #808080;
  text-align: center;
  padding: 4px 20px;
  border-radius: 20px;
}

.product-alert-container.active .product-alert-wrap {
  background-color: #ff0000;
}

.product-alert-container .product-alert-wrap .product-color-alert {
  color: #fff;
  font-size: clamp(0.5rem, 0.3438rem + 0.5vw, 0.625rem);
}

.acoordion-prod-content-text {
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.blinking-button {
  animation: blink 1s infinite ease-in-out;
}

.blinking-button:hover {
  animation: none;
  opacity: 1;
}

/* **** Time Logger **** */
.time-logger-container {
  background-color: #f6f7f7;
}

.time-logger-timesheet {
  background-color: #e6e7e7;
  display: inline-block;
  padding: 15px;
}

.time-logger-savebtn {
  display: inline-block;
  font-size: 14px;
  border: none;
  padding: 3px 9px;
  color: #27934f;
  background-color: #d4ead5;
  text-align: center;
  text-decoration: none;
  transition: all ease 0.3s;
}

.time-logger-savebtn:hover {
  color: #118039;
  background-color: #add8ae;
}

.time-logger-stopbtn {
  display: inline-block;
  font-size: 14px;
  border: none;
  padding: 3px 10px;
  color: #ee2b2a;
  background-color: #fdd5d5;
  text-align: center;
  text-decoration: none;
  transition: all ease 0.3s;
}

.time-logger-stopbtn:hover {
  color: #ee2b2a;
  background-color: #f59494;
}

.time-logger-startbtn {
  display: inline-block;
  font-size: 14px;
  border: none;
  padding: 3px 10px;
  color: #fff;
  background-color: var(--secondary);
  text-align: center;
  text-decoration: none;
  transition: all ease 0.3s;
}

.time-logger-startbtn:hover {
  background-color: var(--primary);
}

.time-logger-pause {
  display: inline-block;
  font-size: 14px;
  border: none;
  padding: 3px 10px;
  color: #fff;
  background-color: #f19e1e;
  text-align: center;
  text-decoration: none;
  transition: all ease 0.3s;
}

.time-logger-pause:hover {
  background-color: #f19e1e;
  opacity: 0.8;
}



/* New Landing Page  18/09/24*/

.lpg-4-sc-padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.lpg-sn-bg-dark {
  background-color: #262626;
}

.lpg-sn-bg-dark .lpg-4-stripe.stripe-top img {
  margin-top: -1px;
}

.lpg-sn-bg-dark .lpg-4-stripe.stripe-bottom img {
  margin-bottom: -1px;
}

.lpg-sn1-text-colored {
  text-align: center;
  margin-bottom: 0.5rem;
}

.lpg-sn1-text-colored span{
  display: inline-block;
  background-color: var(--main);
  color: #fff;
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: bold;
}

.lpg-sn1-title {
  text-align: center;
}

.lpg-sn1-title h1 {
  font-size: clamp(2rem, 1.0278rem + 3.1111vw, 3.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.lpg-sn1-text-info {
  text-align: center;
  margin-bottom: 2rem;
}

.lpg-sn1-text-info p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: clamp(1rem, 0.7222rem + 0.8889vw, 1.5rem);
}

.lpg-sn1-img {
  text-align: center;
  margin-bottom: 1rem;
}

.lpg-sn2-img {
  margin-bottom: 1rem;
  text-align: center;
}

.lpg-sn-btn {
  background-color: var(--main);
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  font-size: clamp(0.875rem, 0.625rem + 1vw, 1.5rem);
  font-weight: bold;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.lpg-sn-btn:hover {
  background-color: var(--secondary);
}

.lpg-sn-rating-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lpg-sn-rating-sm .lpg-sn-rating-stars .fa-star {
  color: #ffff00;
  font-size: clamp(0.75rem, 0.65rem + 0.4vw, 1rem);
  font-weight: bold;
  margin-bottom: 0;
}

.lpg-sn-rating-sm .lpg-sn-rating-desc span {
  font-size: clamp(0.75rem, 0.65rem + 0.4vw, 1rem);
  font-weight: bold;
}

.lp-sn-video-wrap {
  max-width: 600px;
  margin: 0 auto 1rem;
}

.lpg-sn2-text-colored {
  text-align: center;
  margin-bottom: 0.5rem;
}

.lpg-sn2-text-colored span{
  display: inline-block;
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: bold;
}

.lpg-sn2-title {
  text-align: center;
}

.lpg-sn2-title h1 {
  font-size: clamp(2rem, 1.0278rem + 3.1111vw, 3.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.lpg-sn2-text-info {
  text-align: center;
  margin-bottom: 2rem;
}

.lpg-sn-2-img-wrap {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  /*.lpg-sn-2-img-wrap {
      flex-direction: column;
      gap: 1.5rem;
  }*/
  .lpg-sn-2-img-wrap .img-fluid{
	  width:48%;
  }
  .logoed-content-text-1 p {
		font-size: calc(0.6rem + 0.6vw);
	}
	.logoed-content-title {
	  margin-bottom: 2rem !important;
	  margin-top: 1.75rem !important;
	  
	}
  .logoed-content-title h1 {
		font-size: calc(1.6rem + 1.5vw) !important;
		font-weight: 900 !important;
		word-spacing: normal !important;
		
	}
}

.lpg-sn2-text-info p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: clamp(1rem, 0.7222rem + 0.8889vw, 1.5rem);
  color: #a8a9a8;
}


/* Overlay Image Container */

.watermarked {
  position: relative;
  overflow: hidden;
}

.watermarked img {
  max-width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.watermarked::before {
  position: absolute;
  top: -25%;
  left: -25%;
  display: block;
  width: 150%;
  height: 150%;
  transform: rotate(-25deg);
  content: attr(data-watermark);
  opacity: 0.1;
  line-height: 3em;
  letter-spacing: 2px;
  color: #fff;
}

a[data-fancy-custom="watermark-fancy"] .fancybox-image-wrap {
  border: 1px solid red;
}

a[data-fancy-custom="watermark-fancy"] .fancybox-image {
  border: 1px solid red;
}


/* Artfile */

.artfile-warning-banner {
  background-color: #ff0000;
  padding: 0.75rem;
}
.artfile-warning-banner p {
  color: #fff;
  margin-bottom: 0;
}
.artfile-banner-info {
  padding: 1rem;
}
.artfile-banner-info p {
  color: #aaa;
  margin-bottom: 0;
}

/* Info Box Start */
.artfile-box-wrap {
  height: 100%;
  border: 2px solid #000;
  background-color: #f4f4f4;
}
.artfile-box-wrap .artfile-box-title {
  background-color: #fff;
  padding: 0.75rem;
}
.artfile-box-wrap .artfile-box-title p {
  font-size: clamp(0.75rem, 0.6875rem + 0.25vw, 0.9375rem);
  margin-bottom: 0;
}
.artfile-box-wrap .artfile-box-info {
  padding: 0.75rem;
}
.artfile-box-wrap .artfile-box-info p {
  font-size: clamp(0.6875rem, 0.625rem + 0.25vw, 0.875rem);
  margin-bottom: 0;
}

/* Logo Box Start */
.artfile-logobox-wrap {
  display: flex;
  justify-content: space-between;
  border: 1px solid #a2a3a3;
}
.artfile-logobox-wrap.active {
  border: 3px solid #1fa329;
}
.artfile-logobox-wrap .logo-wrap {
  flex: 0 0 35%;
}
.artfile-logobox-wrap .logo-check-contain {
  flex: 0 0 65%;
  padding: 1rem
}
.artfile-logobox-wrap .logo-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}
.artfile-logobox-wrap .logo-price {
  text-align: center;
  font-size: 14px;
  color: #fff;
  background-color: #000;
  padding: 0.5rem 0;
}

.logo-check-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 1rem;
}

.logo-check-wrap:last-child {
  margin-bottom: 0;
}

.logo-check-wrap .check-input {
  width: 25px;
  height: 25px;
  accent-color: #1fa329;
  border-radius: 0;
  border: 1px solid #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

.logo-check-wrap .check-input:checked {
  background-color: #1fa329;
  border: 1px solid #1fa329;
  position: relative;
}

.logo-check-wrap .check-input:checked::before {
  content: '✓';
  color: #fff;
  position: absolute;
  top: 0;
  left: 4px;
  font-size: 18px;
}


.logo-check-wrap .check-label {
  line-height: 1.2;
  font-weight: bold;
  font-size: 15px;
}
.logo-check-wrap .check-label span {
  display: block;
  font-weight: normal;
  font-style: italic;
}
.logo-check-wrap .check-label .text-xx {
  font-size: 11px;
}

.artfile-order-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0 1.5rem;
  padding: 1rem;
}

.artfile-order-summary:nth-child(even) {
  background-color: #eaebec;
}

.artfile-summary-logo {
  width: 70px;
  height: 70px;
  border: 1px solid #a2a3a3;
}

.artfile-summary-info {
  font-size: 14px;
  font-weight: bold;
}

.artfile-summary-price {
  font-size: 14px;
  font-weight: bold;
}

/*Product View css*/

.bulk-grid-btn {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  background-color: rgba(239,239,239,.89);
  padding: 0 18px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 3px;
  cursor: pointer;
}

.bulk-grid-btn i {
  color: #808080;
  font-size: 18px;
  margin-right: 6px;
}

#timer {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 5px;
}

#timer .timer-text {
  text-align: right;
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
}
#timer .timer-time {
  color: #808080;
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
}

.tablesize-btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(0.75rem, 0.4375rem + 1vw, 1rem);
}

.tablesize-btn-group input[type="text"] {
  width: 100%;
  max-width: 35px;
  height: 35px;
  border: 1px solid #dee2e6;
  border-top: none;
  border-bottom: none;
  outline: none;
  background-color: transparent;
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
}

.tabledecrease-btn {
  display: inline-block;
  text-align: center;
  width: 35px;
  height: 25px;
  color: #000;
  background: none;
  border: 1px solid #dee2e6;
  border-radius: 5px 5px 0 0;
  outline: none;
}

.tableincrease-btn {
  display: inline-block;
  text-align: center;
  width: 35px;
  height: 25px;
  color: #000;
  background: none;
  border: 1px solid #dee2e6;
  border-radius: 0 0 5px 5px;
  outline: none;
}

.acoordion-prod-content-text {
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
}


/* New Production Details Page */

.prod-details-country-img {
  width: 120px;
  height: 100px;
}

.prod-label-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.25rem;
}

.prod-label-wrap .pro-wrap-left {
  text-align: right;
  width: 40%;
  font-weight: bold;
  font-size: clamp(0.875rem, 0.825rem + 0.2vw, 1rem);
}

.prod-label-wrap .pro-wrap-right {
  text-align: left;
  font-size: clamp(0.875rem, 0.825rem + 0.2vw, 1rem);
}

/* Card Box Start */

.prod-card-cbox {
  border: 2px solid #000;
}

.prod-card-cbox .card-cbox-header {
  background-color: #696868;
  color: white;
  padding: 5px 10px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 2px solid #000;
}

.prod-card-cbox .card-cbox-body {
  padding: 10px;
  font-size: 16px;
  text-align: left;
  line-height: 1.5;
}

.prod-card-cbox .card-cbox-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #f8f9fa;
  padding: 5px 10px;
  text-align: center;
  font-size: 14px;
  border-top: 2px solid #000;
}

.prod-details-prod-wrap {
  width: 100%;
}

.prod-details-prod-wrap .prod-details-prod-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 200px;
  overflow: hidden;
  max-height: 500px;
  border: 3px solid #0c813f;
  padding: 5px;
}

.prod-details-prod-wrap .prod-details-prod-info {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 5px 10px;
  background-color: #0c813f;
  color: #fff;
  font-size: clamp(0.75rem, 0.4375rem + 1vw, 1rem);
  font-weight: bold;
}

/* Production Details Decoration Method Box */


.prod-details-decor-wrap {
  border: 1px solid #ccc;
}

.prod-details-decor-top {
  margin: 8px;
  border: 1px solid #000;
}

.prod-details-img-wrap {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  margin: 8px auto;
}

.prod-details-decor-info {
  margin: 8px auto;
  text-align: center;
}

.prod-details-date-sm {
  font-size: 0.6rem;
}

.prod-details-date-success {
  font-size: 0.6rem;
  padding: 2px;
  margin-left: 5px;
  background-color: #c4dfc6;
}

.prod-details-decor-info .decor-info-label {
  font-size: clamp(0.75rem, 0.4375rem + 1vw, 1rem);
  font-weight: 600;
}

.prod-details-input-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

.prod-details-input-wrap .prod-inputs-grow {
  flex-grow: 1;
  padding: 0 8px;
}

.prod-details-input-wrap label {
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
  font-weight: 600;
}

.prod-details-input-wrap input {
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
  border: none;
  outline: none;
  background-color: #f0f0f0;
  padding: 5px;
  width: 100%;
  /* max-width: 50px; */
  border-radius: 0;
}

.prod-details-decor-btn {
  padding: 0 15px;
}

.prod-details-secondary-btn {
  display: inline-block;
  width: 100%;
  background-color: var(--secondary);
  color: #fff;
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  padding: 5px 10px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.prod-details-secondary-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

.prod-details-btn-sm {
  flex-grow: 1;
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
  background-color: #f0f0f0;
  color: #000;
  border: none;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 0;
  text-transform: uppercase;
}

.prod-details-btn-sm:hover {
  background-color: var(--secondary);
  color: #fff;
}

.prod-details-fsc-14 {
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
}

.prod-details-danger-sm {
  font-size: clamp(0.75rem, 0.6806rem + 0.2222vw, 0.875rem);
  padding: 2px 6px;
  background-color: #f7a386;
  color: #fff;
  border-radius: 0;
}

.prod-details-decor-products-wrap {
  padding: 10px 15px;
  background-color: #f0f0f0;
}

.prod-details-decor-products {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.prod-details-decor-products .decor-products-num {
  background-color: #fff;
  color: #000;
  font-size: 0.6875rem;
  font-weight: bold;
  text-align: center;
  padding: 3px 9px;
}

.prod-details-decor-products .decor-products-info {
  text-transform: uppercase;
  background-color: #fff;
  color: #000;
  font-size: 0.6875rem;
  padding: 3px 9px;
  width: 100%;
}


/* CM FRONT PAGE */
/* ******************************************* */
.cmf-bg-section {
  padding: 1rem 0;
  margin-bottom: 1rem;
  background-color: #f2f2f2;
}

.cmf-card {
  padding: 4px 10px;
  background-color: #f2f2f2;
  border: 1px solid #939192;
}

.cmf-card .cmf-card-header {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2px;
  margin-bottom: 6px;
}

.cmf-card .cmf-card-header p {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.cmf-card .cmf-card-header img {
  width: 18px;
  height: 18px;
}

.cmf-prod-content {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.cmf-card .cmf-card-content {
  display: flex;
  justify-content: start;
  gap: 10px;
}

.cmf-card .cmf-card-content .card-content-info a {
  display: inline-block;
  text-decoration: none;
  background-color: #f1caca;
  color: #000;
  font-size: 10px;
  padding: 1px 2px;
  margin-bottom: 2px;
}

.cmf-card-content .card-content-info p {
  font-size: 14px;
}

.cmf-card-content .card-content-info .content-text-bgv {
  font-weight: bold;
  color: #7b4c9e;
  font-size: 14px;
}

.cmf-card-content .card-content-info .content-text-bgb {
  font-weight: bold;
  color: var(--secondary);
  font-size: 14px;
}

.cmf-card-content .card-content-img {
  border: 1px solid #000;
  width: 60px;
  height: 60px;
}

.cmf-card .card-cm-upload {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cmf-card .card-cm-upload input[type="text"] {
  border: 1px solid #000;
  padding: 5px 10px;
  width: 100%;
  height: 50px;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  font-weight: bold;
}

.cmf-card .card-cm-upload button {
  display: inline-block;
  padding: 10px 15px;
  background-color: white;
  color: black;
  border: 1px solid #000;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  width: 60px;
  height: 50px;
  text-align: center;
}

/* timer new design */
.base-timer-wrap{
  background-color: #e0dfe0;
  border-radius: 50%;
  padding:8px;
}

.base-timer {
  position: relative;
  width: 110px;
  height: 110px;
}

.base-timer__svg {
  transform: scaleX(-1);
}

.base-timer__circle {
  fill: none;
  stroke: none;
}

.base-timer__path-elapsed {
  stroke-width: 1px;
  stroke: grey;
}

.base-timer__path-remaining {
  stroke-width: 7px;
  stroke-linecap: round;
  transform: rotate(90deg);
  transform-origin: center;
  transition: 1s linear all;
  fill-rule: nonzero;
}

.base-timer__label {
  position: absolute;
  width: 110px;
  height: 110px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

/* button */
.base-timer-controller {
  padding: 3px;
  background-color: #e0dfe0;
  border-radius: 10px;
}

.base-timer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.base-timer-btn button {
  padding: 2px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  margin: 5px;
}

#pauseButton, #resetButton {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #6a579f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6a579f;
}

#startStopButton {
  width: 60px;
  height: 35px;
  border-radius: 10px;
  background-color: #6a579f;
  color: #fff;
}

.cmf-input-select-left {
  padding: 10px 20px;
  background-color: #c4e6f6;
}

.cmf-input-select-right {
  padding: 10px 20px;
  background-color: #f3e9cf;
}

.cmf-send-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  width: 100%;
  height: 100%;
  background-color: #a3d296;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.cmf-send-btn:hover {
  background-color: #91c487;
}



/********* Logoed Start *********/

.logoed-hero-wrapper {
  background-color: #000000;
  padding: 20px;
  text-align: center;
}

.logoed-hero-text-wrapper h3 {
    color: #fff;
    font-size: clamp(1.25rem, 0.6944rem + 1.2889vw, 1.65rem);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    word-spacing: -1px;
    margin-bottom: 1rem;
    transform: scaleY(1.6);
}

.dotted-heading {
  position: relative;
  display: inline-block;
  text-align: center;
  font-style: italic;
}

.dotted-heading::before,
.dotted-heading::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: red;
  border-radius: 50%;
  margin: 0 10px;
  vertical-align: middle;
}

.logoed-hero-text-wrapper h1 {
	color: #fff;
	font-size: clamp(2.5rem, 1.0694rem + 3.2vw, 4.5rem);
	font-weight: bold;
	text-transform: uppercase;
	transform: scaleY(1.6);
	line-height: 1.2;
}

.logoed-mob-hero-text-wrapper h1,
.logoed-mob-hero-text-wrapper h2 {
  color: #fff;
  font-weight: bolder;
  text-transform: uppercase;
  font-size: calc(1.075rem + 1.6vw);
  line-height: 1;
	transform: scaleY(1.6);
}
.logoed-mob-hero-text-wrapper h1::before, .logoed-mob-hero-text-wrapper h1::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    margin: 0 10px;
    vertical-align: middle;
}
.logoed-hero-text-wrapper-2 {
  position: relative;
  display: inline-block;
  text-align: center;
  transform: rotate(-5deg) translateY(-5px);
  transform-origin: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.logoed-hero-text-wrapper-2 h1 {
    display: inline-block;
    padding: 3px 5px;
    color: #fff;
    font-size: clamp(1.125rem, -0.125rem + 4vw, 3.375rem);
    font-weight: 900;
    text-transform: uppercase;
    background-color: var(--secondary);
    transform: scaleY(1.6);
    margin-bottom: 1rem;
}

.logoed-rating-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logoed-rating-sm .logoed-rating-stars .fa-star {
  color: #ffff00;
  font-size: clamp(0.75rem, 0.65rem + 0.4vw, 1rem);
  font-weight: bold;
  margin-bottom: 0;
}

.logoed-rating-sm .logoed-rating-desc span {
  font-size: clamp(0.75rem, 0.65rem + 0.4vw, 1rem);
  font-weight: bold;
}

.logoed-hero-content-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 10px;
}

.logoed-hero-img-wrapper {
  text-align: center;
}

.logoed-hero-img-wrapper img {
  max-width: 100%;
  max-height: 600px;
}

.logoed-hero-text-wrapper-3 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-text-gap {
  margin-bottom: 1.5rem;
}

.logoed-hero-text-wrapper-3 .large-text {
  font-size: clamp(1.5rem, 1.2917rem + 0.6667vw, 1.875rem);
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 0;
}

.logoed-hero-text-wrapper-3 .mid-text {
  font-size: clamp(1.125rem, 0.8472rem + 0.8889vw, 1.625rem);
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
}

.logoed-hero-text-wrapper-3 .small-text {
  font-size: clamp(0.75rem, 0.6111rem + 0.4444vw, 1rem);
  color: #fff;
  margin-bottom: 0;
}

.logoed-hero-text-wrapper-3 .hero-text-highlight {
  color: var(--main);
}

.logoed-hero-text-wrapper-3 .hero-text-highlight.text-italic {
  font-style: italic;
}

.logoed-hero-text-wrapper-3 .hero-text-highlight.text-big {
  font-size: 32px;
}

.logoed-hero-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logoed-hero-timer-item {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.logoed-hero-timer-item-number {
  font-size: clamp(2.625rem, 2.4167rem + 0.6667vw, 3rem);
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
}

.logoed-hero-timer-item-number:first-child {
  margin-right: 0.5rem;
}

.logoed-hero-timer-item-text {
  text-transform: uppercase;
  font-size: 10px;
  color: #fff;
  margin-bottom: 0;
}

.logoed-hero-timer-item-separator {
  font-size: clamp(2.625rem, 2.4167rem + 0.6667vw, 3rem);
  font-weight: bold;
  color: #fff;
  align-self: flex-start;
  transform: translateY(-3px);
}

.logoed-hero-timer-btn {
  text-align: center;
  margin-top: 1rem;
}

.logoed-hero-timer-btn a {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--main);
  text-decoration: none;
  text-align: center;
  border-radius: 24px;
}

.logoed-hero-timer-btn .timer-main-text {
  display: block;
  color: #fff;
  font-size: clamp(2.5rem, 2.2222rem + 0.8889vw, 3rem);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.1;
}

.logoed-hero-timer-btn .timer-sub-text {
  display: block;
  color: #000;
  font-size: 12px;
  font-style: italic;
  opacity: 0.8;
  margin-top: 0;
}

.logoed-hero-timer-btn .timer-tag-text {
  color: #fff;
  font-size: 16px;
  font-style: italic;
  opacity: 0.8;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.logoed-hero-reviews {
  margin-bottom: 1rem;
  padding: 10px;
}

.logoed-hero-reviews-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.logoed-hero-reviews-stars .fa-star {
  color: #ffff00;
  font-size: 16px;
  font-weight: bold;
}

.logoed-hero-reviews-text {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
}

.logoed-hero-reviews-text p {
  margin-bottom: 0;
}

.logoed-hero-image-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  overflow-x: auto;
}

.logoed-hero-image-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .logoed-hero-image-grid img {
    max-width: 180px;
  }

}

@media (max-width: 480px) {
  .logoed-hero-image-grid img {
    max-width: 85px;
  }
}

.logoed-content-text-1 {
  text-align: center;
  font-size: clamp(1.125rem, 0.6389rem + 1.5556vw, 2rem);
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}

.logoed-content-text-1 p {
  margin-bottom: 0;
  /*color: #a9a8a8;*/
}

.logoed-content-img-wrapper {
  text-align: center;
  padding: 20px 10px;
}

.logoed-content-img-wrapper img {
  max-width: 100%;
}

.logoed-content-btn {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--main);
  text-decoration: none;
  text-align: center;
  border-radius: 24px;
}

.logoed-content-btn .content-main-text {
  display: block;
  color: #fff;
  font-size: clamp(2.5rem, 2.2222rem + 0.8889vw, 3rem);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.1;
}

.logoed-content-btn .content-sub-text {
  display: block;
  color: #000;
  font-size: clamp(0.75rem, 0.6111rem + 0.4444vw, 1rem);
  font-style: italic;
  opacity: 0.8;
  margin-top: 0;
}

/* logoed content */
.logoed-content-title-sm {
  text-align: center;
}

.logoed-content-title-sm span {
    display: inline-block;
    position: relative;
    background-color: var(--main);
    color: #fff;
    font-size: clamp(1.125rem, 0.3611rem + 1.4444vw, 1.5rem);
    word-spacing: -2px;
    font-weight: bolder;
    text-transform: uppercase;
    padding: 2px 5px;
    transform: rotate(-2deg) translateY(15px) scaleY(1.6);
    transform-origin: bottom left;
    z-index: 2;
}

@media (max-width: 768px) {
  .logoed-content-title-sm span {
    transform: rotate(-3deg) translateY(10px) scaleY(1.6);
	font-size: calc(0.7rem + 0.7vw) !important;
	word-spacing: normal;
  }
}

.logoed-content-title {
  margin-bottom: 4.5rem;
  margin-top: 3.5rem;
  text-align: center;
}

.logoed-content-title h1 {
  font-size: clamp(2.5rem, 1.25rem + 4vw, 4.75rem);
  font-weight: bolder;
  text-transform: uppercase;
  word-spacing: -4px;
  line-height: 0.8;
    transform: scaleY(1.6);
	
}

.logoed-video-wrap {
  max-width: 600px;
  margin: 0 auto 1rem;
}


.logoed-mock-container {
    padding: 0 !important;
    margin: 0 auto;
    max-width: 100%;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-wrapper .form-row {
    display: flex;
    gap: 0.5rem;
}

.form-wrapper .form-row input {
    flex: 1;
    padding: 0.5rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.form-wrapper .form-row .email-input {
    flex: 0 0 55%;
}

/* .form-wrapper .form-row .phone-input {
    flex: 0 0 40%;
} */

.form-wrapper .form-row textarea {
    margin-bottom: 0.5rem;
    color: #fff;
    background-color: #000000;
    border: 1px solid var(--main);
    padding: 0.5rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.logoed-form-btn {
  display: inline-block;
  margin-bottom: 0.5rem;
  width: 100%;
  padding: 10px 30px;
  background-color: var(--main);
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
}

.logoed-form-btn .form-main-text {
  display: block;
  color: #fff;
font-size: clamp(1.5rem, 1.2222rem + 0.8889vw, 2rem);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.1;
}

.logoed-form-btn .form-sub-text {
    display: block;
    color: #fff;
font-size: clamp(1rem, 0.8056rem + 0.6222vw, 1.35rem);
    font-weight: bold;
    margin-top: 0;
}

.form-wrapper-bottom-text {
    text-align: center;
}

.form-wrapper-bottom-text p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0;
}

.form-wrapper-bottom-text p span {
    color: rgb(249, 203, 0);
    font-size: 1.2rem;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }

    .form-wrapper .form-row .email-input,
    .form-wrapper .form-row .phone-input {
        flex: 1 0 100%;
    }
}

.logoed-mock-bordered {
    padding: 5px;
    border: 5px solid rgb(249, 203, 0);
    text-align: center;
    margin-bottom: 1.2rem;
}

.logoed-mock-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.logoed-mock-top i,
.logoed-mock-bordered h3 {
    color: rgb(249, 203, 0);
}

.logoed-mock-top i {
font-size: clamp(1.25rem, 1.0417rem + 0.6667vw, 1.625rem);
}

.logoed-mock-top p,
.logoed-mock-bordered p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 0;
}

.logoed-mock-top p {
font-size: clamp(1.25rem, 1.0417rem + 0.6667vw, 1.625rem);
}

.logoed-mock-bordered h3 {
font-size: clamp(1.75rem, 1.5rem + 0.8vw, 2.2rem);
    margin-bottom: 0.5rem;
}




/* === Logoed Upload Component Styles === */

.logoed-upload-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.logoed-upload-label {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5px;
  border: 2px solid #4dd0e1;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.logoed-upload-label.active {
  background: #fff;
  color: #000;
  border: none;
}

.logoed-upload-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logoed-upload-titles h4 {
  color: #fff;
  font-size: 16px !important;
  margin-top: 5px;
}

.logoed-upload-formats {
  color: #b0b0b0;
  font-size: 14px;
  margin-top: 5px;
}

.logoed-upload-label.active .logoed-upload-titles h4,
.logoed-upload-label.active .logoed-upload-formats {
  color: #000 !important;
}

.logoed-upload-icon img {
  max-width: 40px;
}

/* Scoped hidden input */
.logoed-upload-wrapper input[type="file"].d-none {
  display: none;
}

.upload-img-preview {
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.logoed-upload-preview {
  max-width: 100%;
  max-height: 200px;
  margin: 0 auto;
  display: block;
}

.logoed-upload-filename {
  margin-top: 10px;
  color: #ddd;
  font-size: 14px;
  display: none;
}

.logoed-mock-colored-info {
  margin: 1rem;
  color: var(--main);
  font-size: 14px;
  text-align: center;
}

.logoed-mock-colored-info p {
  font-weight: bold;
  margin: 0;
}


/* Brad New layout design 11/7/2025 */

.bg-logoed-dark {
    background-color: var(--logoed-dark);
}
.text-logoed-dark { color: var(--logoed-dark); }
.bg-logoed-green { background-color: var(--logoed-green); }
.text-logoed-green { color: var(--logoed-green); }
.border-logoed-dark { border-color: var(--logoed-dark) !important; }
.btn-logoed-dark {
    background-color: var(--logoed-dark) !important;
    color: white !important;
}
.btn-logoed-dark:hover {
            background-color: var(--logoed-dark);
            color: white;
            opacity: 0.9;
        }
.btn-logoed-green {
            background-color: var(--logoed-green) !important;
            color: var(--logoed-dark) !important;
            font-weight: bold !important;
            border: 1px solid var(--logoed-dark) !important;
}
.btn-logoed-green:hover {
	background-color: #f0f0f0 !important;
	color: var(--logoed-dark)!important;
}
/* Fade-in animation */
/*.fade-in-section {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-section.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.fade-in-section-compare {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-section-compare.is-visible-compare {
	opacity: 1;
	transform: translateY(0);
}*/
.accordion-button:not(.collapsed) .plus-icon {
	transform: rotate(135deg);
}
.plus-icon {
	transition: transform 0.2s ease-in-out;
}
.header-search-bar{
	position:relative;
}
/* Simple transition for hover states */
        .hover-effect {
            transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
        }
/* Keyframes for the sliding animation */
	@keyframes slide-left {
		from {
			transform: translateX(0%);
		}
		to {
			transform: translateX(-50%);
		}
	}

	/* Container for the sliding banner */
	#promo-banner-container {
		overflow: hidden; /* Hides the text that moves outside the container */
	}

	/* The sliding element */
	.promo-slider {
		animation: slide-left 15s linear infinite; /* Controls the speed of the slide */
		white-space: nowrap; /* Prevents the text from wrapping */
	}

	/* Individual promo message styles */
	.promo-message {
		display: inline-block; /* Ensures messages sit side-by-side */
	}
/* Product Card Styling */
.product-card-link {
	position: relative; /* Parent for absolute positioning */
}
.product-card-link:hover .product-card {
	transform: translateY(-5px);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.product-card {
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	border: 1px solid #dee2e6;
	background-color: #ffffff;
}
.product-card .product-image-wrapper {
	background-color: #f1f1f1;
	height: 100%;
}
.product-card .product-image {
	transition: transform 0.3s ease;
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.product-card-link:hover .product-image {
	transform: scale(1.05);
}

/* Read More Functionality */
.more-text-category { display: none; }
.read-more-btn-category {
	cursor: pointer;
	color: var(--logoed-dark);
	font-weight: 600;
}

/* Color Swatches */
.color-swatch-wrapper {
	display: flex;
	gap: 6px;
	margin-top: 0.5rem;
	margin-bottom: 0.75rem;
	flex-wrap: wrap;
}
.color-swatch {
	width: 24px;
	height: 24px;
	border-radius: 20px;
  /* NEW: Drop shadow so white swatches are visible */
  box-shadow: 0 0 4px rgba(0,0,0,0.35);
}

/* Card Description Truncation */
.card-text-truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* Custom Pagination Styling */
.pagination .page-link {
	color: var(--logoed-dark);
	border-color: #dee2e6;
}
.pagination .page-link:hover {
	background-color: #e9ecef;
	border-color: #dee2e6;
}
.pagination .page-item.active .page-link {
	background-color: var(--logoed-dark);
	border-color: var(--logoed-dark);
	color: white;
	z-index: 2;
}
.pagination .page-item.disabled .page-link {
	color: #6c757d;
	background-color: #fff;
	border-color: #dee2e6;
}

/* Badge Container */
.card-badges-container {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
}

/* Best Seller Badge */
.bestseller-badge {
	background-color: var(--logoed-dark);
	color: white;
	padding: 4px 10px;
	font-size: 0.7rem;
	font-weight: 600;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Sales Velocity Label */
.sales-velocity {
	font-size: 0.8rem;
	color: #dc3545; /* Bootstrap danger red */
	font-weight: 600;
	display: flex;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 2px 8px;
	border-radius: 4px;
}
.sales-velocity i {
	width: 14px;
	height: 14px;
	margin-right: 4px;
	color: #dc3545; /* Ensure icon is also red */
}

/* Stars & Reviews */
.star-rating {
	font-size: 0.8rem;
	color: #6c757d;
}
.star-rating i {
	width: 16px;
	height: 16px;
	color: #ffc107; /* Bootstrap warning yellow */
	fill: #ffc107;
}

/* Delivery Info */
.delivery-info {
	font-size: 0.8rem;
	color: #6c757d;
}
.delivery-info i {
	width: 14px;
	height: 14px;
	margin-right: 4px;
}

/* Category Filter Buttons */
.category-btn-list .nav-link {
	background-color: #f8f9fa;
	border: 1px solid #dee2e6;
	color: var(--logoed-dark);
	text-align: left;
	margin-bottom: 0.5rem;
}
.category-btn-list .nav-link.active {
	background-color: var(--logoed-dark);
	color: white;
	border-color: var(--logoed-dark);
}

/* product */

.btn-logoed-dark {
            background-color: var(--logoed-dark);
            color: white;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
        }
        .btn-logoed-dark:hover:not(:disabled) {
            opacity: 0.9;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            transform: translateY(-1px);
        }
        .btn:disabled {
            background-color: #9ca3af; /* gray-400 */
            cursor: not-allowed;
            opacity: 0.7;
        }
        
        .text-shadow-subtle {
            text-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }


        /* About Us Page.css */
      

        .bg-logoed-dark { background-color: var(--logoed-dark); }
        .text-logoed-dark { color: var(--logoed-dark); }
        .bg-logoed-green { background-color: var(--logoed-green); }
        .text-logoed-green { color: var(--logoed-green); }
        .border-logoed-dark { border-color: var(--logoed-dark) !important; }
        
        .btn-logoed-green {
            background-color: var(--logoed-green);
            color: var(--logoed-dark);
            font-weight: bold;
            border: 1px solid var(--logoed-dark);
        }
        .btn-logoed-green:hover {
            background-color: #f0f0f0;
            color: var(--logoed-dark);
        }
        .btn-logoed-dark {
            background-color: var(--logoed-dark);
            color: white;
        }
        .btn-logoed-dark:hover {
            background-color: var(--logoed-dark);
            color: white;
            opacity: 0.9;
        }
        
        /* Fade-in Animation */
        /*.fade-in-section {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }*/

                /* Custom styles inspired by your style.css */
       

        .text-logoed-dark {
            color: var(--logoed-dark);
        }

        /* Customizing Bootstrap Components */
        .form-control {
            background-color: #EFEFEF;
            border-color: #EFEFEF;
            padding: 0.8rem 1rem;
        }

        .form-control:focus {
            background-color: #EFEFEF;
            border-color: var(--logoed-dark);
            box-shadow: 0 0 0 0.25rem rgba(86, 84, 73, 0.25);
        }

        .btn-logoed-dark {
            background-color: var(--logoed-dark);
            color: #fff;
            padding: 0.6rem 1.5rem;
            font-weight: 600;
        }

        .btn-logoed-dark:hover {
            background-color: var(--logoed-dark);
            color: #fff;
            opacity: 0.9;
        }

        /* Login Form Page */
        .nav-tabs {
            border-bottom: 1px solid #dee2e6;
        }
        
        .nav-tabs .nav-link {
            border: none;
            border-bottom: 2px solid transparent;
            color: #6c757d;
        }

        .nav-tabs .nav-link.active,
        .nav-tabs .nav-item.show .nav-link {
            color: var(--logoed-dark);
            font-weight: 600;
            background-color: transparent;
            border-color: transparent transparent var(--logoed-dark) transparent;
        }

        .nav-tabs .nav-link:hover:not(.active) {
            border-color: transparent transparent #dee2e6 transparent;
        }

        .benefits-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .benefits-list i-lucide {
           color: var(--logoed-dark);
           margin-top: 5px;
           flex-shrink: 0;
        }

        /*decoration modal*/
       .modal-container {
          border-top-left-radius: 20px;
          border-top-right-radius: 20px;
          overflow: hidden;
          width: 100%;
          max-height: 90vh;
        }
        
        .header-modal {
            background-color: var(--logoed-dark);
            color: white;
        } 

        .add-another-logo{
          background-color: var(--logoed-dark)!important; 
          color: white !important;
        }

        .divider {
            width: 1px;
            background: linear-gradient(to bottom, transparent, #DEE2E6, transparent);
            position: relative;
            z-index: 20; /* Ensures the divider is on top */
        }

        .divider-or {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--bs-body-bg);
            color: #6C757D;
            font-weight: 700;
            padding: 0.5rem;
            border-radius: 50%;
            width: 3rem;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #DEE2E6;
        }

        .custom-radio-check .selectModalDecoration {
          display: none;
        }

        .custom-radio-check .selectModalDecoration + label {
          display: inline-block;
          width: 20px;
          height: 20px;
          border-radius: 50%;
          border: 2px solid #28a745;
          position: relative;
          cursor: pointer;
          transition: all 0.2s ease;
          background-color: transparent;
          box-shadow: none;
        }

        .custom-radio-check .selectModalDecoration:checked + label::before {
          content: '✓';
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 12px;
          color: #28a745;
        }

        .form-check-label.printing,
        .form-check-label.embroidery {
          padding: 1rem;
          border: 1px solid #ccc;
          border-radius: 0.5rem;
          text-align: center;
          transition: 0.3s;
        }

        .form-check-label.printing.active,
        .form-check-label.embroidery.active {
          border-color: #28a745;
          background-color: #eaffea;
        }


/* Styles for Before & After Showcase */
#ba-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
#ba-slider img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
#ba-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 30;
    cursor: ew-resize;
}
#ba-slider-track, #ba-magic-reveal {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: 20;
}
#ba-slider-track {
    width: 3px;
    background-color: white;
}
#ba-magic-reveal {
    width: 200px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s;
}
#ba-magic-reveal.visible {
    opacity: 1;
}
#ba-nav-dots {
    display: flex;
    gap: 0.75rem;
}
.ba-nav-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: var(--custom-gray-300);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.ba-nav-dot:hover:not(.active) {
    background-color: var(--custom-gray-400);
}
.ba-nav-dot.active {
    background-color: var(--logoed-dark);
    transform: scale(1.25);
}

/* Styles for Interactive Design Showcase */
.btn:disabled {
    background-color: #9ca3af; /* gray-400 */
    cursor: not-allowed;
    opacity: 0.7;
}
.form-input {
    width: 100%;
    padding: 1rem;
    background-color: #f3f4f6; /* bg-gray-100 */
    border-radius: 0.5rem;
    border: 1px solid transparent;
}
.form-input:focus {
    outline: none;
    border-color: var(--logoed-dark);
    box-shadow: 0 0 0 2px rgba(86, 84, 73, 0.2);
}
.slider-container {
    position: relative;
    user-select: none;
    aspect-ratio: 16 / 9;
}
#after-image-wrapper {
    position: relative;
    z-index: 5;
}
.before-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    z-index: 10;
}
.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 30;
}
.slider-handle-icon {
    color: var(--logoed-dark);
}
#slider-track {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 100%;
    background-color: var(--logoed-dark);
    pointer-events: none;
    z-index: 20;
}
.magic-reveal {
    position: absolute;
    top: 0;
    left: 50%;
    width: 80px;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(86, 84, 73, 0.3) 0%, rgba(86, 84, 73, 0) 70%);
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease-out;
    z-index: 15;
}
.magic-reveal.visible {
    opacity: 1;
}
.nav-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background-color: var(--custom-gray-300);
    transition: all 0.3s ease;
    border: none;
}
.nav-dot:hover:not(.active) {
    background-color: var(--custom-gray-400);
}
.nav-dot.active {
    background-color: var(--logoed-dark);
    transform: scale(1.25);
}
#text-content-slider {
    transition: opacity 0.3s ease-in-out;
}
#text-content-slider.loading {
    opacity: 0;
}

 /* Container for the chat widget */
  .chat-widget-container {
      position: fixed;
      bottom: 1rem;
      right: 1rem;
      z-index: 1050;
  }

  /* Styling for the pop-up messages */
  #message-popup {
      transition: all 0.3s ease-out;
      transform: translateY(0.5rem);
      opacity: 0;
  }
  
  #message-popup.visible {
      transform: translateY(0);
      opacity: 1;
  }

  #message-popup .popup-message {
      border-radius: 0.75rem;
      cursor: pointer;
  }

  /* Styling for the floating toggle button */
  #chat-toggle-btn {
      width: 3rem;
      height: 3rem;
      transition: transform 0.2s ease-in-out;
  }

  #chat-toggle-btn:hover {
      transform: scale(1.1);
  }
  
  #chat-toggle-btn svg {
      width: 1.5rem;
      height: 1.5rem;
  }

  /* Center full page */
.loader-wrapper {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff; /* remove if you want transparent */
    pointer-events: none;
}

/* SVG size */
.google-svg-loader {
    width: 20px;
    height: 20px;
    animation: rotate 2s linear infinite;
}

/* Colored arc */
.loader-path {
    stroke-width: 4;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite, colors 6s ease-in-out infinite;
}

/* Stroke dash animation (Google original) */
@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* Rotation */
@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* Google color cycle */
@keyframes colors {
    0% { stroke: #4285F4; }   /* Blue */
    25% { stroke: #EA4335; }  /* Red */
    50% { stroke: #FBBC05; }  /* Yellow */
    75% { stroke: #34A853; }  /* Green */
    100% { stroke: #4285F4; } /* Back to Blue */
}