/** * Theme Name: Fanpact 
    * Theme URI: https://cloudester.com/ 
    * Author: Cloudester Software Developers 
    * Author URI: 
    * Description: 
    * Version: 1.0.0 
*/
.theme_btn {
  background: #ecaa1e;
  text-transform: uppercase;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 14px;
}
.theme_btn:hover,
.theme_btn:active,
.theme_btn:active:focus {
  background: #000;
  color: #fff;
  box-shadow: none;
}
.contact_submit {
  position: relative;
}
.contact_submit .wpcf7-spinner {
  position: absolute;
  top: 10px;
}
.container-fluid {
  padding: 0 3rem;
}
.btn-primary {
  background: #ecaa1e;
  text-transform: uppercase;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 14px;
  color: #010101;
  border-color: #ecaa1e;
  outline: 0;
  box-shadow: none;
  transition: background 0.3s ease;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
  background: #000;
  border-color: #000;
  color: #fff;
  box-shadow: none;
}
.btn-light {
  border-radius: 8px;
  padding: 10px 0.75rem;
  font-size: 16px;
  font-weight: 400;
  border: 0;
  outline: 0;
  box-shadow: none;
  transition: background 0.3s ease;
}
.btn-light:hover,
.btn-light:focus,
.btn-light:active,
.btn-light:active:focus {
  background: #bc9351;
  color: #010101;
  box-shadow: none;
}
.head_title {
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  color: #121212;
  margin-bottom: 30px;
}
.head_title span {
  color: #ecaa1e;
}
.head_desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}
.grey_bg {
  background: #eaeaea;
}
.white_bg {
  background: #ffffff;
}
.heading_title {
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  color: #121212;
  margin-bottom: 30px;
}
.breadcrumb_line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  margin-right: 10px;
}
.breadcrumb_line .bread_list {
  color: #121212;
  font-weight: 500;
}
.breadcrumb_line .bread_list span a {
  color: #121212;
  transition: color 0.3s ease;
}
.breadcrumb_line .bread_list span a:hover {
  color: #f1b82d;
  text-decoration: none;
}
.breadcrumb_line .bread_list .non_link {
  color: #a0a0a0;
}
.breadcrumb_line .back_link {
  text-decoration: none;
  color: #121212;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb_line .back_link i {
  transition: transform 0.3s ease;
}
.breadcrumb_line .back_link:hover i {
  transform: translateX(-5px);
}

/* dots-spinner */
.fading-dots-spinner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: transparent;
  animation: spin 1.2s linear infinite;
  box-shadow: 0 -24px 0 0 rgba(245, 166, 35, 1),
    17px -17px 0 0 rgba(245, 166, 35, 0.9), 24px 0 0 0 rgba(245, 166, 35, 0.8),
    17px 17px 0 0 rgba(245, 166, 35, 0.7), 0 24px 0 0 rgba(245, 166, 35, 0.6),
    -17px 17px 0 0 rgba(245, 166, 35, 0.5), -24px 0 0 0 rgba(245, 166, 35, 0.4),
    -17px -17px 0 0 rgba(245, 166, 35, 0.3);
    margin: 30px auto 0;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* loader css */
.loader-wrapper {
  position: fixed;
  inset: 0;
  background: #121212ad;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.loader-wrapper svg {
  width: 220px;
  height: 220px;
  fill: none;
  stroke: #ddbc3d;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 3s ease-in-out infinite;
}
@keyframes draw {
  0% {
    stroke-dashoffset: 1000;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 1000;
  }
}
.home_heroshot {
  position: relative;
}
.school_marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  bottom: 20px;
  width: 100%;
}
.track {
  animation-duration: 40s;
  animation-iteration-count: infinite;
  animation-name: marquee;
  animation-timing-function: linear;
  display: inline-flex;
  gap: 8rem;
}
.track span {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
  color: #fff;
}
.track span::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #f0bd40;
  border-radius: 50px;
  position: absolute;
  top: 6px;
  left: 0;
}
.school_marquee:hover .track {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
/* header css */
header .navbar {
  padding: 10px;
  background-color: #fff;
  box-shadow: 0px 4px 24px 0 rgb(34 41 47 / 8%);
}
header .navbar .navbar-brand .nav_logo {
  height: 70px;
}
header .navbar h2 {
  font-size: 16px;
  font-weight: bold;
  color: #121212;
  margin: 0 20px 0 0;
  max-width: 200px;
}
header .navbar .search_box {
  border: 1px solid #ecaa1e;
  border-radius: 10px;
  width: 90%;
}
header .navbar .search_box .dropdown-menu{
  max-height: calc(100vh - 200px);
  overflow: auto;
}
.fp-suggest-panel{
  max-height: calc(100vh - 200px);
  overflow: auto !important;
}
header .navbar .search_box .btn-primary {
  background: #ecaa1e;
  border-color: #ecaa1e;
  padding: 10px 14px;
}
header .navbar .search_box .btn-primary a {
  color: #121212;
  text-decoration: none;
  font-size: 16px;
}
header .navbar .search_box .form-control {
  border: none;
  border-radius: 0;
  padding: 0.375rem 1rem;
  outline: none;
  box-shadow: none;
}
header .navbar .funding_counter {
  background: #ecaa1e;
  padding: 8px 8px 8px 14px;
  border-radius: 10px;
  margin-right: 18px;
}
header .navbar .funding_counter h4 {
  font-size: 22px;
  position: relative;
  margin: 0;
  user-select: none;
  line-height: 1.4em;
  font-weight: 700;
}
header .navbar .funding_counter h4 span {
  display: inline-block;
  width: 0.95em;
  text-align: center;
  text-transform: uppercase;
  color: #eee;
  position: relative;
  background-color: #05060b;
  border-radius: 0.15em;
  margin-right: 6px;
}
header .navbar .funding_counter h4 span:before {
  content: "";
  display: block;
  z-index: 99;
  position: absolute;
  top: 50%;
  width: 100%;
  background: #ecaa1e;
  height: 4%;
}
header .navbar .navbar-nav {
  margin-left: 20px;
}
header .navbar .navbar-nav .nav-item {
  margin: 0 4px;
}
header .navbar .navbar-nav .nav-item .dropdown .dropdown-menu {
  border: 1px solid #e9e9e9;
  border-radius: 12px;
}
header .navbar .navbar-nav .nav-item .dropdown .dropdown-menu .dropdown-item {
  border: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  border-radius: 0;
  height: auto;
  padding: 0.45rem 1rem;
  color: #121212;
}
header .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::after{
  content: none;
}
header .navbar .navbar-nav .nav-item .dropdown .dropdown-menu .dropdown-item:active{
  background-color: #f8f9fa;
  color: #121212;
}
header .navbar .navbar-nav .nav-item .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #121212;
}
header .navbar .navbar-nav .nav-item .nav-link:hover {
  color: #ecaa1e;
}
header .navbar .navbar-nav .nav-item .nav-link:hover svg path {
  stroke: #ecaa1e;
}
header .navbar .navbar-nav .nav-item .nav-link svg {
  width: 22px;
  height: 22px;
  margin-bottom: 4px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}
header .navbar .navbar-nav .nav-item .nav-link svg:hover {
  color: #ecaa1e;
}
.footer_section {
  background: #121212;
  padding: 40px 0px 16px;
}
.footer_section .footer_content .footer_logo img {
  width: 20%;
  margin-bottom: 14px;
}
.footer_section .footer_content p {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}
.footer_section .footer_content .footer_social {
  display: flex;
  justify-content: start;
  align-items: center;
}
.footer_section .footer_content .footer_social a {
  color: #fff;
  background-color: #252525;
  border-radius: 50%;
  width: 44px;
  display: flex;
  text-decoration: none;
  height: 44px;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-right: 14px;
  border: 1px solid #fff 33;
  transition: all 0.5s;
}
.footer_section .footer_content .footer_social a:hover {
  background-color: #f1b82d;
  color: #252525;
}
.footer_section .footer_links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 20px 0;
}
.footer_section .footer_links .link_item {
  margin-left: 50px;
  list-style: none;
}
.footer_section .footer_links .link_item .f_link {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.5s;
}
.footer_section .footer_links .link_item .f_link:hover {
  color: #f1b82d;
}
.footer_section .contact_detail {
  text-align: right;
  margin-top: 60px;
}
.footer_section .contact_detail p {
  color: #fff;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 400;
}
.footer_section .contact_detail p span {
  color: #f0bd40;
}
.footer_section .contact_detail p a {
  text-decoration: none;
  color: #fff;
}
.footer_section .footer_copyright {
  text-align: center;
  color: #e9e9e9;
  font-size: 14px;
  margin-top: 20px;
}
/* Login page css */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-size: cover;
  background-color: #000;
  flex-direction: column;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.login-wrapper .logo {
  width: 160px;
  margin: 20px 0 10px 0;
  pointer-events: none;
}
.login-wrapper h2 {
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
.login-wrapper .login_box {
  background: #010101;
  padding: 40px 40px;
}
.login-wrapper .login_box p {
  color: #fff;
  font-size: 14px;
}
.login-wrapper .login_box .custom-login-form .form-group label {
  color: #f4f4f6;
  font-weight: 500;
  font-size: 14px;
}
.login-wrapper .login_box .custom-login-form .form-group .forget_link {
  float: right;
  color: #fff;
  font-size: 12px;
  line-height: normal;
  padding-top: 4px;
  text-decoration: none;
}
.login-wrapper .login_box .custom-login-form .form-group .form-control {
  border-radius: 8px;
  margin-bottom: 0;
  padding: 0.6rem 0.75rem;
}
.login-wrapper .login_box .custom-login-form .form-group label.error {
  font-size: 14px;
  font-weight: 400;
  padding: 6px 0 0 0;
  color: #bc9351;
}

.login-wrapper .login_box .custom-login-form .form-group .password_input input {
  height: 44px;
  font-size: 30px;
  letter-spacing: 2px;
  color: #f5b940;
  -webkit-text-fill-color: #f5b940;
  transition: background-color 5000s ease-in-out 0s;
}
.login-wrapper
  .login_box
  .custom-login-form
  .form-group
  .password_input
  input:-webkit-autofill {
  height: 44px;
  font-size: 1rem;
  letter-spacing: 2px;
}
.login-wrapper
  .login_box
  .custom-login-form
  .form-group
  .password_input
  input[type="text"] {
  font-size: 1rem;
  letter-spacing: 0;
  color: #212529;
}
.login-wrapper
  .login_box
  .custom-login-form
  .form-group
  .password_input
  input:placeholder-shown {
  font-size: 1rem;
  -webkit-text-security: none;
  letter-spacing: 0;
  -webkit-text-fill-color: #212529;
}

.login-wrapper .login_box .custom-login-form .form-group .password_input i {
  top: 12px;
  right: 14px;
  position: absolute;
  color: #9a999c;
  cursor: pointer;
  font-size: 20px;
}
.login-wrapper .login_box .custom-login-form .form-check input {
  width: 16px;
  height: 16px;
  accent-color: #bc9351;
  margin: 0 6px 0 0;
}
.login-wrapper .login_box .custom-login-form .form-check label {
  font-size: 14px;
  color: #f4f4f6;
}
.login-wrapper .login_box .custom-login-form p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}
.login-wrapper .login_box .custom-login-form p .btn-link {
  color: #bc9351;
}
.login-wrapper .login_box .custom-login-form p .btn-link:hover {
  color: #fff;
}
.login-wrapper .login_box .separator {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}
.login-wrapper .login_box .separator::before,
.login-wrapper .login_box .separator::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #e5e5e54a;
}
.login-wrapper .login_box .separator::before {
  margin-right: 8px;
}
.login-wrapper .login_box .separator::after {
  margin-left: 8px;
}
.login-wrapper .login_box .btn-primary:hover,
.login-wrapper .login_box .btn-primary:focus,
.login-wrapper .login_box .btn-primary:active,
.login-wrapper .login_box .btn-primary:active:focus {
  background: #ba8512;
  border-color: #ba8512;
  color: #010101;
  box-shadow: none;
}
/* Login page css end */
/* register page css */
.register-wrapper .authentication-inner {
  margin-inline: 0px;
  max-width: 100%;
  min-height: 100vh;
}
.register-wrapper .authentication-inner .authentication_left {
  background-position: top center;
  background-size: cover;
}
.register-wrapper .authentication-inner .authentication_left h2 {
  font-weight: 700;
  font-size: clamp(36px, 3vw, 46px);
  line-height: 1.2;
}
.register-wrapper .authentication-inner .authentication_right {
  padding: 60px 40px;
  background: #010101;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.register-wrapper .authentication-inner .authentication_right .logo {
  width: 160px;
}
.register-wrapper .authentication-inner .authentication_right h2 {
  color: #fff;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 26px;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form {
  max-width: 650px;
  margin: 20px auto;
  text-align: left;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .password_input input {
  height: 44px;
  font-size: 30px;
  letter-spacing: 2px;
  color: #f5b940;
  -webkit-text-fill-color: #f5b940;
  transition: background-color 5000s ease-in-out 0s;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .password_input
  input:-webkit-autofill {
  height: 44px;
  font-size: 1rem;
  letter-spacing: 2px;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .password_input
  input[type="text"] {
  font-size: 1rem;
  letter-spacing: 0;
  color: #212529;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .password_input
  input:placeholder-shown {
  font-size: 1rem;
  -webkit-text-security: none;
  letter-spacing: 0;
  -webkit-text-fill-color: #abb9df;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .password_input
  i {
  top: 12px;
  right: 14px;
  position: absolute;
  color: #556693;
  cursor: pointer;
  font-size: 20px;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-label {
  color: #556693;
  font-weight: 400;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-control,
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-select {
  background-color: #2c324b;
  border: 1px solid #2c324b;
  color: #abb9df;
  padding: 0.6rem 0.75rem;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23abb9df' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  cursor: pointer;
}

.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-control:focus,
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-select:focus {
  background-color: #2c324b;
  border: 1px solid #2c324b;
  color: #abb9df;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-control:-webkit-autofill,
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-select:-webkit-autofill,
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-control:-webkit-autofill:hover,
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-select:-webkit-autofill:hover,
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-control:-webkit-autofill:focus,
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-select:-webkit-autofill:focus,
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-control:-webkit-autofill:active,
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-select:-webkit-autofill:active {
  background-color: #2c324b !important;
  border: 1px solid #2c324b !important;
  color: #abb9df !important;
  -webkit-box-shadow: 0 0 0px 1000px #2c324b inset !important;
  -webkit-text-fill-color: #abb9df !important;
  transition: background-color 5000s ease-in-out 0s;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-control::placeholder,
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  textarea::placeholder,
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-select::placeholder {
  color: #abb9df;
  font-size: 1rem;
  opacity: 1;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .error {
  color: #bc9351;
  font-size: 14px;
  margin-top: 6px;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-check
  .form-check-input {
  background-color: #2c324b;
  border: 1px solid #2c324b;
  color: #556693;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .form-check
  .form-check-label {
  color: #556693;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin: 0;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  p {
  text-align: center;
  padding: 0;
  margin: 0;
  color: #556693;
  font-weight: 400;
  font-size: 16px;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .btn-link {
  color: #bc9351;
  text-decoration: none;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .btn-primary:hover,
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .btn-primary:focus,
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .btn-primary:active,
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .btn-primary:active:focus {
  background: #ba8512;
  border-color: #ba8512;
  color: #010101;
  box-shadow: none;
}
.register-wrapper
  .authentication-inner
  .authentication_right
  .registration_form
  .btn-primary
  img {
  width: 6px;
  margin: 0px 0 2px 16px;
}
/* register page css end */
/* Home Page css */
.section {
  padding: 60px 0;
}
.hero_slider .carousel-indicators {
  margin-bottom: 30px;
}
.hero_slider .carousel-indicators button {
  border: 0;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #efc251;
}
.hero_slider .carousel-indicators button.active {
  width: 30px;
  background: #f0bd40;
  opacity: 1;
}
.hero_slider .carousel-inner .carousel-item img {
  /* height: 500px; */
  height: calc(100vh - 132px);
  object-fit: cover;
}
.hero_slider .carousel-inner .carousel-item .carousel-caption {
  top: 40%;
}
.hero_slider .carousel-inner .carousel-item .carousel-caption h1 {
  font-weight: 600;
  font-size: 46px;
  text-transform: uppercase;
}
.hero_slider .carousel-inner .carousel-item .carousel-caption p {
  font-weight: 600;
  font-size: 24px;
}
.school_section {
  background: #eaeaea;
}
.school_section .school_lists h2,
.add_school h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 40px;
}
.school_section .school_lists a {
  opacity: 0;
  transform: translateY(80px);
  transition: transform 1s ease, opacity 1s ease;
  text-decoration: none;
}

.school_section .school_lists a .school_info {
  height: 350px;
  display: flex;
  border-radius: 16px;
  background: #fff;
  align-items: center;
  padding: 30px;
  overflow: hidden;
  outline: 2px solid transparent;
  transition: outline-color 0.3s ease-in-out;
}

.school_section .school_lists a:hover .school_info {
  outline-color: #ecaa1e;
}

.school_section .school_lists a .school_info img {
  width: 100%;
  height: auto;
  pointer-events: none;
}
.school_section .school_lists a h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  text-transform: capitalize;
  color: #121212;
  margin-top: 12px;
}
.school_section .school_lists a.animate {
  opacity: 1;
  transform: translateY(0);
}
/* Home Page css end */
/* general ecoomarce Page css */
.category_section .category_box {
  /* box-shadow: 4px 4px 40px 0px #0000001a; */
  padding: 40px 60px;
  border-radius: 16px;
  background: #fff;
}
.category_section .category_box h3 {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 20px;
}
.category_section .category_box .shop_more {
  color: #ecaa1e;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.category_section .category_box .shop_more:hover {
  transform: translateY(-3px);
  color: #bc9351;
}
.category_section .category_box .category_item {
  text-decoration: none;
}
.category_section .category_box .category_item .category_img {
  text-align: center;
  border-radius: 16px;
  margin-bottom: 10px;
  border: 2px solid #f7f7f7;
  overflow: hidden;
}
.category_section .category_box .category_item .category_img img {
  width: 100%;
  /* height: 200px; */
  object-fit: contain;
  transition: transform 0.4s ease;
}
.category_section .category_box .category_item p {
  font-weight: 600;
  font-size: 18px;
  color: #121212;
  margin-bottom: 20px;
}
.category_section .category_box .category_item:hover img {
  transform: scale(1.1);
}
.service-container {
  background: #fff;
  padding: 40px 30px 20px;
  border-radius: 8px;
}
.service-container .service-item {
  text-align: center;
}
.service-container .service-item svg {
  margin-bottom: 10px;
}
.service-container .service-item .service-text h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #121212;
}
.service-container .service-item .service-text p {
  color: #5e6267;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

.product_section .description-table{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.product_section .description-table table{
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  border: 1px solid #dee2e6;
}
.product_section .description-table table tr td{
  padding: .75rem;
  vertical-align: top;
  border: 1px solid #dee2e6; 
}
.product_section .woocommerce-ordering {
  font-weight: 500;
  font-size: 14px;
  margin: 0 0 2em;
}
.product_section .woocommerce-ordering .form-select {
  outline: none;
  box-shadow: none;
}
.product_section .woocommerce-result-count {
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
}
.product_section .woocommerce-result-count .btn {
  padding: 0;
  text-decoration: none;
  color: #121212;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.product_section .woocommerce-result-count .btn svg {
  margin-right: 6px;
  width: 20px;
  height: 20px;
}
.product_section #product-list .product-container {
  text-decoration: none;
  width: 25%;
  cursor: pointer;
  position: relative;
}
.product_section .product-container {
  text-decoration: none;
  /* width: 25%;
  */
  cursor: pointer;
  position: relative;
}
.product_section .product-container .product-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 0px;
  box-shadow: 7px 7px 100px 0px #0000001A;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product_section .product-container .product-card .new-tag {
  position: absolute;
  background-color: #f1b82d;
  color: #121212;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
  top: 16px;
  left: 16px;
}
.product_section .product-container .product-card .discount-tag {
  position: absolute;
  background-color: #db4444;
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
  top: 16px;
  left: 16px;
}
.product_section .product-container .product-card .product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product_section .product-container .product-card .hover_buttons {
  opacity: 0;
  pointer-events: none;
  /* Prevent interactions when hidden */
  position: absolute;
  top: 0;
  width: 100%;
  height: 380px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(10px);
  /* Initial position for subtle motion */
}
.product_section .product-container .product-card .hover_buttons .icon-action {
  right: 16px;
  top: 16px;
  position: absolute;
}
.product_section
  .product-container
  .product-card
  .hover_buttons
  .icon-action
  .yith-add-to-wishlist-button-block {
  margin: 0;
}
.product_section
  .product-container
  .product-card
  .hover_buttons
  .icon-action
  a {
  position: unset;
  background: #fff;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid #e9e9e9;
  margin: 0px 0 14px 0;
}
.product_section
  .product-container
  .product-card
  .hover_buttons
  .icon-action
  a
  svg {
  width: 24px;
  color: #5e6267;
}
.product_section
  .product-container
  .product-card
  .hover_buttons
  .icon-action
  a
  span {
  display: none;
}
.product_section
  .product-container
  .product-card
  .hover_buttons
  .icon-action
  .quick-view-btn
  img {
  width: 22px;
}
.product_section
  .product-container
  .product-card
  .hover_buttons
  .icon-action
  a.yith-wcwl-add-to-wishlist-button--added {
  background: #db4444;
  border: 1px solid #db4444;
}
.product_section
  .product-container
  .product-card
  .hover_buttons
  .icon-action
  a.yith-wcwl-add-to-wishlist-button--added
  svg {
  color: #fff;
}
.product_section
  .product-container
  .product-card
  .hover_buttons
  .icon-action
  .quick-view-btn {
  position: unset;
  margin: 0;
  background: #fff;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  color: #5e6267;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid #e9e9e9;
}
.product_section .product-container .product-card .hover_buttons a,
.product_section .product-container .product-card .hover_buttons button {
  bottom: 0;
  position: absolute;
  background: #ecaa1e;
  border-color: #ecaa1e;
  width: 88%;
  left: 0;
  margin: 20px;
  background-color: #ecaa1e;
  text-transform: uppercase;
  padding: 7px 30px;
  font-weight: 500;
  font-size: 16px;
  color: #121212;
  height: 40px;
  border-radius: 6px;
}
.product_section .product-container .product_detail {
  padding: 10px 0;
}
.product_section .product-container .product_detail .product-title {
  color: #121212;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  transition: transform 0.3s ease, color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product_section .product-container .product_detail .rating {
  color: #5e6267;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
}
.product_section .product-container .product_detail .rating .rating_stars {
  color: #ecb018;
  margin-right: 6px;
}
.product_section
  .product-container
  .product_detail
  .rating
  .rating_stars
  .not_rated {
  color: #9e9e9e;
}
.product_section .product-container .product_detail del {
  text-decoration: none;
}
.product_section .product-container .product_detail del bdi {
  color: #a0a0a0;
  font-weight: 400;
  font-size: 12px;
  text-decoration: line-through;
}
.product_section .product-container .product_detail ins,
.product_section .product-container .product_detail bdi {
  text-decoration: none;
  color: #121212;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.product_section .product-container .product_detail .donation {
  color: #5e6267;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  margin-left: auto;
}
.product_section .product-container .product_detail .donation span {
  color: #121212;
  font-weight: 600;
}
.product_section .product-container:hover .product-title {
  transform: translateY(3px);
}
.product_section .product-container:hover .product-image {
  transform: scale(1.1);
}
.product_section .product-container:hover .hover_buttons {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  /* Smooth transition to original position */
}
.social_section .post_div {
  display: flex;
  flex-wrap: wrap;
}
.social_section .post_div img {
  width: 100%;
}
/* general ecoomarce Page css end */
/* Shop Page Css */
.woocommerce-no-products-found {
  text-align: center;
  margin-top: 30px;
}
.woocommerce-no-products-found svg {
  width: 30%;
}
.woocommerce-no-products-found .woocommerce-info {
  background: transparent;
  border: 0;
}
.woocommerce-no-products-found .woocommerce-info::before {
  content: none;
}
.sidebar {
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  transform-origin: left center;
  transform-style: preserve-3d;
  perspective: 1000px;
  width: 20%;
}
.sidebar.hide {
  width: 0;
  opacity: 0;
  transform: translateX(-50%) rotateY(-90deg) scale(0.8);
}
.sidebar:not(.hide) {
  transform: translateX(0) rotateY(0deg) scale(1);
}
.product_listing_section {
  transition: all 0.5s ease-in-out;
  transform-style: preserve-3d;
  width: 80%;
}
.product_listing_section.full {
  flex-grow: 1;
  padding: 0;
}
.product_listing_section.full
  .product_section
  #product-list
  .product-container {
  width: 20%;
}
section.widget {
  padding: 30px 0 0 0;
}
section.widget .widget-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: #121212;
}
.shop-sidebar {
  position: relative;
}
.shop-sidebar .sidebarfilter_title {
  font-weight: 600;
  font-size: 30px;
  line-height: 28px;
  color: #121212;
}
.shop-sidebar .filter_clear {
  position: absolute;
  right: 0;
  top: 11px;
  font-size: 16px;
  color: #121212;
  font-weight: 400;
  text-transform: capitalize;
  text-decoration: none;
}
.shop-sidebar .widget_price_filter #price-slider {
  background: #e9e9e9;
  border: none;
  height: 4px;
  margin-bottom: 26px;
}
.shop-sidebar .widget_price_filter #price-slider .ui-slider-range {
  background-color: #121212;
}
.shop-sidebar .widget_price_filter #price-slider .ui-slider-handle {
  border: 3px solid #121212;
  background-color: #ecaa1e;
  top: -0.4em;
}
.shop-sidebar .widget_price_filter .form-group .input-group .form-control {
  border-right: 0;
  height: 44px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  outline: none;
  box-shadow: none;
  border-color: #dee2e6;
}
.shop-sidebar .widget_price_filter .form-group .input-group .input-group-text {
  background: #fff;
  color: #5e6267;
  font-size: 14px;
  border-radius: 8px;
}
.shop-sidebar .category_filter .products_filter_list {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
.shop-sidebar .category_filter .products_filter_list .filter-list-item {
  font-size: 16px;
  line-height: 26px;
  display: flex;
  color: #5e6267;
  margin: 0px 0px 10px;
  justify-content: space-between;
  cursor: pointer;
}
.shop-sidebar
  .category_filter
  .products_filter_list
  .filter-list-item
  .filter_option_name {
  transition: 0.4s;
  border-bottom: 2px solid transparent;
}
.shop-sidebar
  .category_filter
  .products_filter_list
  .filter-list-item:hover
  .filter_option_name,
.shop-sidebar
  .category_filter
  .products_filter_list
  .filter-list-item.active
  .filter_option_name {
  color: #121212;
  border-bottom: 2px solid #121212;
}
.shop-sidebar .filter-colors {
  padding: 30px 0 0 0;
}
.shop-sidebar .filter-colors h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: #121212;
}
.shop-sidebar .filter-colors .colour-item {
  margin: 0px 8px 12px 0;
  width: max-content;
  cursor: pointer;
}
.shop-sidebar .filter-colors .colour-item input {
  display: none;
}
.shop-sidebar .filter-colors .colour-item input:checked + .item_label {
  border-color: #121212;
}
.shop-sidebar .filter-colors .colour-item .color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50px;
  margin-right: 6px;
}
.shop-sidebar .filter-colors .colour-item .item_label {
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid #e9e9e9;
  color: #121212;
  display: flex;
  align-items: center;
}
.shop-sidebar .filter-sizes {
  padding: 30px 0 0 0;
}
.shop-sidebar .filter-sizes h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: #121212;
}
.shop-sidebar .filter-sizes .brand-size {
  margin: 0px 8px 12px 0;
  width: max-content;
  cursor: pointer;
}
.shop-sidebar .filter-sizes .brand-size input {
  display: none;
}
.shop-sidebar .filter-sizes .brand-size input:checked + .size_value {
  background-color: #121212;
  border-color: #121212;
  color: #fff;
}
.shop-sidebar .filter-sizes .brand-size .size_value {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid #e9e9e9;
  color: #121212;
  display: block;
}
.shop-sidebar .Brands_filter .brand-item.categ_filter {
  margin: 0px 0px 12px;
}
.shop-sidebar .Brands_filter .brand-item.categ_filter .item_label {
  margin-left: 0;
  text-decoration: none;
  text-transform: capitalize;
  position: relative;
}
.shop-sidebar .Brands_filter .brand-item.categ_filter .item_label.active,
.shop-sidebar .Brands_filter .brand-item.categ_filter .item_label:hover {
  color: #121212;
}
.shop-sidebar .Brands_filter .brand-item.categ_filter .item_label span {
  width: max-content;
  position: relative;
}
.shop-sidebar
  .Brands_filter
  .brand-item.categ_filter
  .item_label.active
  span:first-child:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #121212;
  bottom: -4px;
}
.shop-sidebar .Brands_filter .brand-item {
  display: flex;
  margin: 0px 0px 10px;
}
.shop-sidebar .Brands_filter .brand-item .item_label {
  font-size: 16px;
  line-height: 26px;
  display: flex;
  color: #5e6267;
  margin-left: 10px;
  cursor: pointer;
  justify-content: space-between;
  width: 100%;
}
.shop-sidebar .Brands_filter .brand-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #a0a0a0;
  width: 22px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease;
}
.shop-sidebar .Brands_filter .brand-item input[type="checkbox"]:checked {
  background-color: #000;
  border: 2px solid #000;
}
.shop-sidebar
  .Brands_filter
  .brand-item
  input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
/* content page css */
.content_page .content_page_title {
  font-weight: 600;
  font-size: 50px;
  color: #ecaa1e;
}
.content_page .content_page_heading {
  color: #05060b;
  font-weight: 600;
  font-size: 26px;
  line-height: 40px;
  margin-top: 1.5rem;
}
.content_page p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #05060b;
}
.content_page p a {
  color: #05060b;
  text-decoration: none;
}
/* about us page */
.banner_section .banner_box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner_section .banner_box img {
  width: 100%;
}
.banner_section .banner_box h2 {
  position: absolute;
  font-weight: 500;
  font-size: 50px;
  line-height: 50px;
  text-transform: capitalize;
  margin: 0;
  color: #ecaa1e;
}
.banner_section .banner_box h1 {
  position: absolute;
  font-weight: 500;
  font-size: 50px;
  line-height: 50px;
  text-transform: capitalize;
  margin: 0;
  color: #ecaa1e;
}
.mission_section img {
  width: 100%;
}
.mission_section p {
  line-height: 30px;
  font-size: 18px;
  text-align: justify;
  margin-bottom: 10px;
}
.mission_section h3 {
  font-weight: 600;
  font-size: 30px;
  text-transform: capitalize;
  margin-top: 26px;
}
.apart_section img {
  width: 100%;
}
.apart_section p {
  line-height: 30px;
  font-size: 18px;
  text-align: justify;
  margin-bottom: 10px;
}
.apart_section h2 {
  font-weight: 600;
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 26px;
}
.apart_section h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
}
.scale_section img {
  width: 80%;
}
.scale_section p {
  line-height: 30px;
  font-size: 18px;
  text-align: justify;
  margin-bottom: 10px;
}
.scale_section h4 {
  font-weight: 600;
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.founders_section .head_title {
  margin-bottom: 10px;
}
.founders_section .head_desc {
  margin-bottom: 40px;
}
.founders_section .founder_box {
  text-align: center;
}
.founders_section .founder_box img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin-bottom: 20px;
}
.founders_section .founder_box h3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 40px;
}
.founders_section .founder_box p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: justify;
}
.how_works_section .work_icon_box {
  text-align: center;
  border: 5px solid #ecaa1e;
  border-bottom: 0;
  padding-top: 100px;
  border-top-left-radius: 300px;
  border-top-right-radius: 300px;
  position: relative;
  height: 220px;
}
.how_works_section .work_icon_box svg {
  position: absolute;
  bottom: 20%;
  left: 40%;
}
.how_works_section .work_icon_box::before {
  content: "";
  width: 20px;
  height: 12px;
  border-radius: 50%;
  border: 10px solid #05060b;
  z-index: 1;
  position: absolute;
  bottom: -4px;
  left: -12px;
}
.how_works_section .work_icon_box::after {
  content: "";
  width: 20px;
  height: 12px;
  border-radius: 50%;
  border: 10px solid #05060b;
  z-index: 1;
  position: absolute;
  bottom: -4px;
  right: -14px;
}
.how_works_section .work_icon_box:first-child::before {
  bottom: -4px;
  left: -16px;
}
.how_works_section .work_icon_box:last-child::after {
  bottom: -4px;
  right: -14px;
}
.how_works_section .icon_black_border {
  border: 5px solid #05060b;
  border-bottom: 0;
}
.how_works_section .icon_black_border::before {
  content: none;
}
.how_works_section .icon_black_border::after {
  content: none;
}
.how_works_section .work_content_box {
  text-align: center;
  padding: 50px 20px 20px;
}
.how_works_section .work_content_box .process_step {
  border: 4px solid #ecaa1e;
  padding: 6px 20px;
  width: max-content;
  margin: auto;
  border-radius: 50%;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
}
.how_works_section .work_content_box .process_step::after {
  content: "";
  width: 366px;
  height: 8px;
  background: #f2f2f2;
  z-index: 1;
  position: absolute;
  bottom: 22px;
  left: 62px;
}
.how_works_section .work_content_box h3 {
  font-size: 26px;
  line-height: 40px;
  text-align: center;
  font-weight: 300;
}
.how_works_section .work_content_box h3 span {
  font-weight: 600;
}
.how_works_section
  .work_content_box.work_content_box_last
  .process_step::after {
  content: none;
}
.movement_section .head_title {
  margin-bottom: 10px;
}
.movement_section .head_desc {
  margin-bottom: 40px;
  text-align: center;
}
.movement_section .form-control {
  background: #f3f4f7;
  min-height: 50px;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0.75rem 0.95rem;
}
.movement_section .wpcf7-not-valid-tip {
  text-align: left;
}
.movement_section .btn-primary {
  width: 20%;
  text-transform: uppercase;
  font-weight: bold;
}
.movement_section .form_text {
  text-align: left;
  margin: 0;
  font-size: 14px;
}
.movement_section .form_text span {
  color: red;
}
/* product detail page css */

.woocommerce-product-gallery__wrapper .product-slider .slider-for {
  margin-bottom: 20px;
}
.woocommerce-product-gallery__wrapper .product-slider .slider-for .slick-list .slick-slide img{
  height: 620px;
  object-fit: contain;
}
.woocommerce-product-gallery__wrapper .product-slider .slider-nav {
  /* right: -6px;
  */
}
.woocommerce-product-gallery__wrapper
  .product-slider
  .slider-nav
  .slick-next::before {
  color: #05060b;
}
.woocommerce-product-gallery__wrapper .product-slider .slider-nav .slick-prev {
  /* left: -6px;
  */
  z-index: 1;
}
.woocommerce-product-gallery__wrapper
  .product-slider
  .slider-nav
  .slick-prev::before {
  color: #05060b;
}
.woocommerce-product-gallery__wrapper
  .product-slider
  .slider-nav
  .slick-list
  .slick-track {
  margin-left: 0;
}
.woocommerce-product-gallery__wrapper
  .product-slider
  .slider-nav
  .slick-list
  .slick-track
  .slick-slide {
  padding-right: 6px;
  cursor: pointer;
  height: 100%;
}
.woocommerce-product-gallery__wrapper
  .product-slider
  .slider-nav
  .slick-list
  .slick-track
  .slick-slide
  img {
    height: 140px;
    width: 140px;
    object-fit: contain;
}
.woocommerce-product-gallery__wrapper
  .product-slider
  .slider-nav
  .slick-list
  .slick-track
  .slick-slide.slick-current.slick-active
  img {
  border: 2px solid #ecaa1e;
}
.summary.entry-summary .product-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.summary.entry-summary
  .product-meta-top
  .product-category
  .product-categories
  a {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  text-decoration: none;
  color: #a0a0a0;
}
.summary.entry-summary .product-meta-top .product-share-wishlist {
  display: flex;
  align-items: center;
}
.summary.entry-summary
  .product-meta-top
  .product-share-wishlist
  .dropdown
  .dropdown-toggle::after {
  display: none;
}
.summary.entry-summary
  .product-meta-top
  .product-share-wishlist
  .dropdown
  .dropdown-toggle
  img {
  width: 18px;
}
.summary.entry-summary
  .product-meta-top
  .product-share-wishlist
  .dropdown
  .dropdown-menu {
  border: 1px solid #e9e9e9;
  border-radius: 12px;
}
.summary.entry-summary
  .product-meta-top
  .product-share-wishlist
  .dropdown
  .dropdown-menu
  .dropdown-item {
  border: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  border-radius: 0;
  height: auto;
  padding: 0.45rem 1rem;
  color: #121212;
}
.summary.entry-summary
  .product-meta-top
  .product-share-wishlist
  .dropdown
  .dropdown-menu
  .dropdown-item:hover,
.summary.entry-summary
  .product-meta-top
  .product-share-wishlist
  .dropdown
  .dropdown-menu
  .dropdown-item:active {
  background-color: #f8f9fa;
  color: #121212;
}
.summary.entry-summary
  .product-meta-top
  .product-share-wishlist
  .dropdown
  .dropdown-menu
  .dropdown-item
  img {
  width: 18px;
  margin-right: 8px;
}
.summary.entry-summary
  .product-meta-top
  .product-share-wishlist
  .dropdown
  .dropdown-menu
  .dropdown-item
  span {
  font-size: 14px;
  line-height: normal;
}
.summary.entry-summary .product-meta-top .product-share-wishlist a {
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  margin-left: 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.summary.entry-summary .product-meta-top .product-share-wishlist a svg {
  width: 24px;
  height: auto;
}
.summary.entry-summary
  .product-meta-top
  .product-share-wishlist
  a
  .yith-wcwl-add-to-wishlist-button__label {
  display: none;
}
.summary.entry-summary
  .product-meta-top
  .product-share-wishlist
  a.yith-wcwl-add-to-wishlist-button--added {
  background: #db4444;
  border: 1px solid #db4444;
}
.summary.entry-summary
  .product-meta-top
  .product-share-wishlist
  a.yith-wcwl-add-to-wishlist-button--added
  svg {
  color: #fff;
}
.summary.entry-summary .product_title.entry-title {
  font-weight: 600;
  font-size: 34px;
  line-height: 42px;
  text-transform: capitalize;
  margin-bottom: 14px;
  color: #121212;
}
.summary.entry-summary .rating {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #5e6267;
  margin-bottom: 10px;
}
.summary.entry-summary .rating .rating_stars {
  color: #ecb018;
  margin-right: 6px;
}
.summary.entry-summary p.price {
  display: flex;
  align-items: center;
}
.summary.entry-summary p.price .custom-sale-price {
  font-weight: 600;
  font-size: 30px;
  line-height: 42px;
  text-transform: capitalize;
  color: #121212;
}
.summary.entry-summary p.price .saperator_line {
  font-weight: 400;
  font-size: 16px;
  color: #a0a0a0;
  margin-left: 8px;
}
.summary.entry-summary p.price .custom-regular-price {
  font-weight: 400;
  font-size: 16px;
  text-decoration: line-through;
  color: #a0a0a0;
  margin: 0 8px;
}
.summary.entry-summary p.price .custom-discount {
  border-radius: 36px;
  padding: 2px 10px;
  background: #db4444;
  font-size: 12px;
  color: #fff;
}
.summary.entry-summary .product_meta {
  margin-bottom: 20px;
}
.summary.entry-summary .product_meta .sku_wrapper {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #5e6267;
}
.summary.entry-summary .cart .add_cart_btn {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  /* .single_add_to_cart_button:hover {
    background-color: #ecaa1e;
    color: #121212;
    border-color: #ecaa1e;
 }
  */
}
.summary.entry-summary .cart .add_cart_btn .form-group {
  position: relative;
  width: 40%;
  margin-right: 20px;
}
.summary.entry-summary .cart .add_cart_btn .form-group .form-control {
  border: 1px solid #e9e9e9;
  background-color: #f7f7f7;
  text-align: center;
  box-shadow: none;
  outline: none;
  font-weight: 600;
  font-size: 18px;
  height: 46px;
  border-radius: 6px;
}
.summary.entry-summary .cart .add_cart_btn .form-group i {
  top: 16px;
  position: absolute;
  cursor: pointer;
}
.summary.entry-summary .cart .add_cart_btn .form-group .fa-plus {
  right: 12px;
}
.summary.entry-summary .cart .add_cart_btn .form-group .fa-minus {
  left: 12px;
}
.summary.entry-summary .cart .add_cart_btn .single_add_to_cart_button {
  border: 1px solid #121212;
  width: 70%;
  color: #121212;
  background-color: #fff;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.summary.entry-summary
  .cart
  .add_cart_btn
  .single_add_to_cart_button.disabled:hover {
  color: #121212;
  background-color: #fff;
}
.summary.entry-summary .cart .buy-now-button {
  width: 100%;
  background-color: #ecaa1e;
  text-transform: uppercase;
  padding: 12px 30px;
  font-weight: 500;
  font-size: 16px;
  color: #121212;
  height: 46px;
  border-radius: 6px;
}
.summary.entry-summary .cart .buy-now-button.disabled:hover {
  color: #121212;
  background-color: #ecaa1e;
}
.custom-product-top-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.custom-product-top-row span.onsale {
  left: 10px;
  top: 10px;
  height: 2rem;
  width: 2rem;
  padding: 0;
  background-color: #ecaa1e;
}
.custom-product-description h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 42px;
  text-transform: capitalize;
}
.custom-product-description h2:not(:first-of-type) {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: justify;
}
.custom-product-description p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: justify;
}
.custom-product-description ul {
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
}
.review_comment {
  background: #f7f7f7;
}
.review_comment .custom-product-reviews .review_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.review_comment .custom-product-reviews .review_header h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 42px;
  text-transform: capitalize;
}
.review_comment .rating-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 400px;
}
.review_comment .overall-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review_comment .overall-rating .score {
  font-size: 70px;
  font-weight: bold;
  color: #333;
}
.review_comment .overall-rating .stars-and-count {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.review_comment .overall-rating .stars-and-count .star-rating span::before {
  color: #ecb018;
}
.review_comment .overall-rating .rating-count {
  font-size: 16px;
  color: #777;
  margin-top: 5px;
}
.review_comment .rating-breakdown .rating-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 10px;
}
.review_comment .rating-breakdown .rating-label {
  font-size: 16px;
  color: #333;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.review_comment .progress-bar-container {
  background-color: #e0e0e0;
  border-radius: 5px;
  height: 10px;
  flex-grow: 1;
  overflow: hidden;
}
.review_comment .progress-bar {
  background-color: #ecb018;
  height: 100%;
  border-radius: 5px;
}
.review_comment .rating-breakdown .percentage {
  font-size: 16px;
  color: #333;
  width: 45px;
  text-align: right;
}
.review-images {
  padding-left: 50px;
}
.review-images h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 20px;
}
.review-images .image-grid {
  display: flex;
  width: 100%;
  overflow: auto;
  margin-bottom: 14px;
}
.review-images .image-grid .review_img {
  width: 166px;
  height: 166px;
  object-fit: cover;
  margin: 0 20px 10px 0;
}
.review-images .image-grid::-webkit-scrollbar {
  height: 4px;
}
.review-images .image-grid::-webkit-scrollbar-thumb {
  background-color: #ecb018;
  border-radius: 8px;
}
.review-images .image-grid::-webkit-scrollbar-track {
  background-color: #e0e0e0;
}
.review-images .review-sort-wrapper span {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #121212;
  margin-right: 10px;
}
.review-images .review-sort-wrapper .sort_review_by {
  border: 1px solid #e9e9e9;
  background-color: #fff;
  border-radius: 50px;
  padding: 8px 16px;
  margin-right: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  color: #121212;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.review-images .review-sort-wrapper .sort_review_by:hover,
.review-images .review-sort-wrapper .sort_review_by.active {
  background-color: #ecaa1e;
  color: #121212;
  border-color: #ecaa1e;
}
.review-list {
  border-width: 1px 0px 0px 0px;
  border-style: solid;
  border-color: #e9e9e9;
  margin-top: 30px;
}
.review-list .review-item {
  display: flex;
  /* align-items: center; */
  border-width: 0px 0px 1px 0px;
  border-style: solid;
  border-color: #e9e9e9;
  padding: 40px 0;
}
.review-list .review-item .review-left {
  width: 28%;
  margin-right: 20px;
}
.review-list .review-item .review-left .review-avatar .avatar {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-bottom: 10px;
}
.review-list .review-item .review-left .review-meta .review-author {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  display: block;
  color: #121212;
}
.review-list .review-item .review-left .review-meta .review-date {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #a0a0a0;
}
.review-list .review-item .review-right {
  width: 72%;
}
.review-list .review-item .review-right .review-rating .star-rating {
  float: none;
  margin-bottom: 16px;
}
.review-list .review-item .review-right .review-rating .star-rating::before {
  color: #cfc8d8;
}
.review-list
  .review-item
  .review-right
  .review-rating
  .star-rating
  span::before {
  color: #ecb018;
}
.review-list .review-item .review-right .review-content h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-transform: capitalize;
  color: #121212;
}
.review-list .review-item .review-right .review-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: justify;
  color: #121212;
  margin-bottom: 8px;
}
.review-list .review-item .review-right .review-content .review_like i.like {
  color: #db4444;
}
.review-list .review-item .review-right .review-content .review_like span {
  font-weight: 600;
  font-size: 16px;
  margin-left: 4px;
}
.review-list .review_more_btn {
  text-decoration: none;
  color: #121212;
  font-weight: 500;
  padding: 8px 4px;
  border-bottom: 2px solid #121212;
}
.review-list .no_reviews {
  text-align: center;
  padding: 20px 0;
  font-weight: 500;
  color: #46414d;
}
.woocommerce-Reviews h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 42px;
  margin-bottom: 30px;
}
.woocommerce-Reviews .form-group .form-label {
  color: #5e6267;
}
.woocommerce-Reviews .form-group .form-control {
  outline: none;
  box-shadow: none;
}
.woocommerce-Reviews .form-group label.error {
  color: red;
  margin-top: 4px;
}
.woocommerce-Reviews .form-group .required {
  color: red;
}
.woocommerce-Reviews .rating-widget .rating-box{
  display: flex;
  align-items: center;
}
.woocommerce-Reviews .rating-widget .rating-box .clear-stars{
  margin-left: 10px;
  text-decoration: none;
  color: #444548;
  font-weight: 600;
}
.woocommerce-Reviews .rating-widget .rating-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
}
.woocommerce-Reviews .rating-widget .rating-stars .star {
  font-size: 3rem;
  line-height: normal;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}
.woocommerce-Reviews .rating-widget .rating-stars .star::before {
  content: "★";
}
.woocommerce-Reviews .rating-widget .rating-stars .star:hover,
.woocommerce-Reviews .rating-widget .rating-stars .star:hover ~ .star {
  color: #ffc700;
  /* Gold color on hover */
}
.woocommerce-Reviews
  .rating-widget
  .rating-stars
  input[type="radio"]:checked
  ~ .star {
  color: #ffc700;
  /* Gold color for selected rating */
}
.woocommerce-Reviews .rating-widget .rating-stars input[type="radio"] {
  display: none;
}
.woocommerce-Reviews .upload-container {
  /* .drop-zone:hover {
    border-color: #ecaa1e;
    background-color: #ecaa1e17;
 }
  */
}
.woocommerce-Reviews .upload-container .drop-zone {
  display: flex;
  background: #fff;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}
.woocommerce-Reviews .upload-container .drop-zone-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.woocommerce-Reviews .upload-container .main-text {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
  margin: 0;
}
.woocommerce-Reviews .upload-container .sub-text {
  font-size: 14px;
  color: #888;
  margin: 5px 0;
}
.woocommerce-Reviews .upload-container .drop-zone-prompt input[type="file"]{
  visibility: hidden;
  width: 0;
  height: 0;
}
.woocommerce-Reviews .upload-container .browse-btn {
  display: inline-block;
  /* margin-top: 6px;
  */
  padding: 6px 14px;
  background-color: #444548;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}
.related.products.product_section h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 42px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 20px;
}
.woocommerce
  div.product
  form.cart.variations_form
  .variations
  tr
  th.label
  label {
  font-weight: 400;
  text-align: left;
  color: #121212;
}
.woocommerce
  div.product
  form.cart.variations_form
  .variations
  tr
  td.woo-variation-items-wrapper
  .button-variable-items-wrapper
  .button-variable-item {
  width: max-content;
  padding: 18px 17px;
  border-radius: 50px;
  box-shadow: var(--wvs-item-box-shadow, 0 0 0 1px #e9e9e9);
}
.woocommerce
  div.product
  form.cart.variations_form
  .variations
  tr
  td.woo-variation-items-wrapper
  .button-variable-items-wrapper
  .button-variable-item.selected {
  box-shadow: none;
  background-color: #444548;
  color: #fff;
}
.woocommerce
  div.product
  form.cart.variations_form
  .variations
  tr
  td.woo-variation-items-wrapper
  .button-variable-items-wrapper
  .button-variable-item
  .variable-item-span-button {
  overflow: visible;
}
.woocommerce
  div.product
  form.cart.variations_form
  .variations
  tr
  td.woo-variation-items-wrapper
  .reset_variations {
  color: #ecaa1e;
  text-decoration: none;
  font-size: 14px;
  margin-left: 6px;
}
.woo-variation-swatches
  .variable-items-wrapper
  .variable-item:not(.radio-variable-item).color-variable-item.selected:not(
    .no-stock
  )
  .variable-item-contents:before {
  background-image: none;
}
.product_section .woocommerce-notices-wrapper .woocommerce-error {
  border: 2px solid #b81c23;
  background: #fff;
  border-radius: 6px;
  outline: none;
}
.product_section .woocommerce-notices-wrapper .woocommerce-error li a {
  background-color: #444548;
  text-transform: uppercase;
  font-size: 11px;
  line-height: normal;
  color: #fff;
  border-radius: 6px;
  float: right;
  padding: 6px 10px;
  text-decoration: none;
}
.product_section .woocommerce-notices-wrapper .woocommerce-message {
  border: 2px solid #8fae1b;
  background: #fff;
  border-radius: 6px;
  outline: none;
}
.product_section .woocommerce-notices-wrapper .woocommerce-message .button {
  background-color: #444548;
  text-transform: uppercase;
  font-size: 11px;
  line-height: normal;
  color: #fff;
  border-radius: 6px;
}
/* cart page Css */
.cart_section .woocommerce-cart-form {
  width: 67%;
}
.cart_section .woocommerce-cart-form .shop_table {
  border: 0;
}
.cart_section .woocommerce-cart-form .shop_table thead {
  background-color: #f7f7f7;
  height: 60px;
}
.cart_section .woocommerce-cart-form .shop_table thead .product-thumbnail {
  width: 18%;
}
.cart_section .woocommerce-cart-form .shop_table thead .product-name {
  width: 40%;
}
.cart_section .woocommerce-cart-form .shop_table thead .product-subtotal {
  width: 15%;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .woocommerce-cart-form__cart-item
  td {
  border: 0;
  padding: 30px 16px;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .woocommerce-cart-form__cart-item
  .product-thumbnail
  img {
  background-color: #f7f7f7;
  width: 120px;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .woocommerce-cart-form__cart-item
  .product-name
  a {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-transform: capitalize;
  color: #121212;
  text-decoration: none;
  margin-bottom: 10px;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .woocommerce-cart-form__cart-item
  .product-name
  .variation {
  margin: 6px 0;
  font-size: 12px;
  line-height: 22px;
  color: #5e6267;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .woocommerce-cart-form__cart-item
  .product-name
  .variation
  dt {
  font-weight: 400;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .woocommerce-cart-form__cart-item
  .product-name
  .woocommerce-Price-amount.amount {
  font-weight: 600;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .woocommerce-cart-form__cart-item
  .product-subtotal
  .woocommerce-Price-amount.amount {
  font-weight: 600;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .woocommerce-cart-form__cart-item
  .product-quantity
  .custom-quantity-wrapper {
  position: relative;
  margin-right: 20px;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .woocommerce-cart-form__cart-item
  .product-quantity
  .custom-quantity-wrapper
  .form-control {
  border: 1px solid #e9e9e9;
  background-color: #f7f7f7;
  text-align: center;
  box-shadow: none;
  outline: none;
  font-weight: 600;
  font-size: 18px;
  height: 42px;
  border-radius: 6px;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .woocommerce-cart-form__cart-item
  .product-quantity
  .custom-quantity-wrapper
  i {
  top: 14px;
  position: absolute;
  cursor: pointer;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .woocommerce-cart-form__cart-item
  .product-quantity
  .custom-quantity-wrapper
  .cart-quantity-minus {
  left: 12px;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .woocommerce-cart-form__cart-item
  .product-quantity
  .custom-quantity-wrapper
  .cart-quantity-plus {
  right: 12px;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .woocommerce-cart-form__cart-item
  .product-remove
  .remove {
  color: #db4444 !important;
  font-weight: 400;
  border: 1px solid #db4444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .woocommerce-cart-form__cart-item
  .product-remove
  .remove:hover{
  color: #fff !important;
  background-color: #db4444;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .woocommerce-cart-form__cart-item
  .product-remove
  .remove:hover svg path{
  fill: #fff;
}
.cart_section .woocommerce-cart-form .shop_table tbody .actions {
  border: 0;
}
.cart_section .woocommerce-cart-form .shop_table tbody .actions .coupon {
  width: 100%;
  position: relative;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .actions
  .coupon
  .input-text {
  background: #f7f7f7;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0.375rem 9rem 0.375rem 1rem;
  height: 56px;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .actions
  .coupon
  .button {
  position: absolute;
  right: 6px;
  top: 6px;
  background-color: #121212;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  padding: 0.95em 1.8em;
  transition: background 0.3s ease;
}
.cart_section
  .woocommerce-cart-form
  .shop_table
  tbody
  .actions
  .coupon
  .button:hover {
  background-color: #ecaa1e;
  color: #121212;
}
.cart_section .cart-collaterals {
  width: 33%;
}
.cart_section .cart-collaterals .cart_totals {
  width: 100%;
  background-color: #f7f7f7;
  padding: 20px;
}
.cart_section .cart-collaterals .cart_totals h2 {
  font-weight: 600;
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.cart_section .cart-collaterals .cart_totals .shop_table {
  border: 0;
}
.cart_section .cart-collaterals .cart_totals .shop_table tr th {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
  padding: 20px 12px 20px 0px;
}
.cart_section .cart-collaterals .cart_totals .shop_table tr td {
  text-align: right;
  font-weight: 600;
  color: #121212;
  padding: 20px 0px 20px 12px;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .shop_table
  tr
  td
  ul.woocommerce-shipping-methods {
  text-align: left;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .shop_table
  tr
  td
  ul.woocommerce-shipping-methods
  li
  .shipping_method {
  margin: 6px 0.4375em 0 0 !important;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .shop_table
  tr
  td
  ul.woocommerce-shipping-methods
  li
  label {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .shop_table
  tr
  td
  ul.woocommerce-shipping-methods
  li
  label
  .woocommerce-Price-amount.amount {
  float: right;
  font-weight: 400 !important;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .shop_table
  tr
  td
  ul.woocommerce-shipping-methods
  li
  .shipping_method:checked
  + label {
  font-weight: 400;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .shop_table
  .cart-discount
  .woocommerce-remove-coupon {
  font-weight: 500;
  margin-left: 2px;
  font-size: 14px;
  color: #ecaa1e;
}
.cart_section .cart-collaterals .cart_totals .shipping_form td {
  text-align: left !important;
  padding: 26px 12px 26px 0px !important;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .shipping_form
  td
  .woocommerce-shipping-calculator
  .shipping-calculator-button {
  margin: 0 0 6px;
  color: #ecaa1e;
  text-decoration: none;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .shipping_form
  td
  .woocommerce-shipping-calculator
  .shipping-calculator-form {
  margin-top: 6px;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .shipping_form
  td
  .woocommerce-shipping-calculator
  .shipping-calculator-form
  .form-row {
  padding: 0;
  margin: 0 0 12px;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .shipping_form
  td
  .woocommerce-shipping-calculator
  .shipping-calculator-form
  .form-row
  label {
  font-weight: 400;
  margin-bottom: 4px;
  font-size: 14px;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .shipping_form
  td
  .woocommerce-shipping-calculator
  .shipping-calculator-form
  .form-row
  .select2-selection {
  border-radius: 6px;
  font-size: 14px;
  border: 1px solid #e9e9e9;
  height: 48px;
  padding: 0.5rem 0.6rem;
  outline: none;
  box-shadow: none;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .shipping_form
  td
  .woocommerce-shipping-calculator
  .shipping-calculator-form
  .form-row
  .input-text {
  border-radius: 6px;
  font-size: 14px;
  border: 1px solid #e9e9e9;
  height: 48px;
  padding: 0.375rem 1.1rem;
  outline: none;
  box-shadow: none;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .shipping_form
  td
  .woocommerce-shipping-calculator
  .shipping-calculator-form
  p
  button {
  background-color: #121212;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  padding: 0.8em 1.8em;
  width: 100%;
  border-radius: 6px;
  margin-top: 6px;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .shipping_form
  td
  .woocommerce-shipping-destination {
  font-weight: 300;
  text-align: left;
  word-break: break-word;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .shipping_form
  td
  .woocommerce-shipping-destination
  strong {
  font-weight: 500;
}
.cart_section .cart-collaterals .cart_totals .order-total th {
  font-weight: 500 !important;
  font-size: 20px !important;
}
.cart_section .cart-collaterals .cart_totals .order-total td {
  font-size: 20px !important;
}
.cart_section .cart-collaterals .cart_totals .order-total td strong {
  font-weight: 500 !important;
}
.cart_section .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  padding: 0;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .wc-proceed-to-checkout
  .checkout-button {
  width: 100%;
  background-color: #ecaa1e;
  text-transform: uppercase;
  padding: 14px 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #121212;
  height: 46px;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .wc-proceed-to-checkout
  .checkout-button:hover,
.cart_section
  .cart-collaterals
  .cart_totals
  .wc-proceed-to-checkout
  .checkout-button:focus,
.cart_section
  .cart-collaterals
  .cart_totals
  .wc-proceed-to-checkout
  .checkout-button:active,
.cart_section
  .cart-collaterals
  .cart_totals
  .wc-proceed-to-checkout
  .checkout-button:active:focus {
  background: #121212;
  color: #fff;
  box-shadow: none;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .wc-proceed-to-checkout
  .shop_link {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  text-decoration: none;
  text-transform: uppercase;
  color: #121212;
  transition: color 0.3s ease;
}
.cart_section
  .cart-collaterals
  .cart_totals
  .wc-proceed-to-checkout
  .shop_link:hover {
  color: #ecaa1e;
}
.woocommerce-message {
  border: 2px solid #8fae1b;
  background: #fff;
  border-radius: 6px;
  outline: none;
}
.woocommerce-message .button {
  background-color: #444548;
  text-transform: uppercase;
  font-size: 11px;
  line-height: normal;
  color: #fff;
  border-radius: 6px;
}
.woocommerce-message a.button {
  background-color: #444548;
  text-transform: uppercase;
  font-size: 11px;
  line-height: normal;
  color: #fff;
  border-radius: 6px;
}
.woocommerce-message a.button:hover{
  background-color: #444548;
  color: #fff;
}
.woocommerce-message .restore-item {
  color: #8fae1b;
}
.wc-empty-cart-message .cart-empty {
  border: 0;
  padding: 0;
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 6px;
  color: #121212;
}
.wc-empty-cart-message .cart-empty::before {
  display: none;
}
.empty_img {
  text-align: center;
}
.empty_img img {
  width: 250px;
  margin-bottom: 14px;
}
.empty_description {
  text-align: center;
  font-size: 16px;
  color: #5e6267;
  margin-bottom: 20px;
}
.woocommerce-info {
  border: 2px solid #1e85be;
  background: #fff;
  border-radius: 6px;
  outline: none;
}
.woocommerce-info .button {
  background-color: #444548;
  text-transform: uppercase;
  font-size: 11px;
  line-height: normal;
  color: #fff;
  border-radius: 6px;
}
.woocommerce-error {
  border: 2px solid #b81c23;
  background: #fff;
  border-radius: 6px;
  outline: none;
}
.checkout_section h3 {
  font-weight: 600;
  line-height: 42px;
  color: #121212;
}
.checkout_section .woocommerce-message {
  border: 2px solid #8fae1b;
  background: #fff;
  border-radius: 6px;
  outline: none;
}
.checkout_section .woocommerce-form-coupon-toggle .woocommerce-info {
  border: 2px solid #1e85be;
  background: #fff;
  border-radius: 6px;
  outline: none;
}
.checkout_section
  .woocommerce-form-coupon-toggle
  .woocommerce-info
  .showcoupon {
  background-color: #444548;
  text-transform: uppercase;
  font-size: 11px;
  line-height: normal;
  color: #fff;
  border-radius: 6px;
  padding: 0.618em 1em;
  text-decoration: none;
  float: right;
}
.checkout_section .deliver_forms .form-row-first,
.checkout_section .deliver_forms .form-row-last {
  width: 50%;
}
.checkout_section .deliver_forms .form-row {
  padding: 0px 15px;
  margin: 0 0 24px;
}
.checkout_section .deliver_forms .form-row .form-control {
  border: 1px solid #e9e9e9;
  height: 48px;
  padding: 0.375rem 1.1rem;
  outline: none;
  box-shadow: none;
}
.checkout_section .deliver_forms .form-row .select2 .select2-selection {
  border: 1px solid #e9e9e9;
  height: 48px;
  padding: 0.375rem 1.1rem;
  outline: none;
  box-shadow: none;
}
.checkout_section .deliver_forms .form-row textarea.form-control {
  border: 1px solid #e9e9e9;
  padding: 0.575rem 1.1rem;
  outline: none;
  box-shadow: none;
  height: 4em;
}
.checkout_section .deliver_forms .woocommerce-additional-fields__field-wrapper {
  margin: 0 -15px 30px;
}
.checkout_section .shopping_summary {
  padding-left: 50px;
}
.checkout_section .shopping_summary .form-row-wide {
  padding: 0;
  margin: 0 0 20px;
}
.checkout_section .shopping_summary .form-row-wide .form-select{
  border: 1px solid #e9e9e9;
  height: 48px;
  padding: 0.375rem 1.1rem;
  outline: none;
  box-shadow: none;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table {
  border: 0;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tbody
  .product-name {
  padding: 10px 12px 10px 0px;
  display: flex;
  align-items: center;
  border: 0;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tbody
  .product-name
  img {
  width: 30%;
  margin-right: 20px;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tbody
  .product-name
  .product_details {
  width: 70%;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-transform: capitalize;
  color: #121212;
  text-decoration: none;
  margin-bottom: 10px;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tbody
  .product-name
  .product_details
  .variation {
  margin: 6px 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  color: #5e6267;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tbody
  .product-name
  .product_details
  .variation
  dt {
  font-weight: 400;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tbody
  .product-total {
  text-align: right;
  font-weight: 600;
  color: #121212;
  padding: 10px 0px 10px 12px;
  width: 70%;
  border: 0;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  tr
  th {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
  padding: 10px 12px 10px 0px;
  width: 70%;
  border: 0;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  tr
  td {
  text-align: right;
  font-weight: 600;
  color: #121212;
  padding: 10px 0px 10px 12px;
  width: 30%;
  border: 0;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  tr
  td
  ul.woocommerce-shipping-methods {
  text-align: left;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  tr
  td
  ul.woocommerce-shipping-methods
  li
  .shipping_method {
  margin: 6px 0.4375em 0 0 !important;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  tr
  td
  ul.woocommerce-shipping-methods
  li
  .shipping_method:checked
  + label {
  font-weight: 400;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  tr
  td
  ul.woocommerce-shipping-methods
  li
  label {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  tr
  td
  ul.woocommerce-shipping-methods
  li
  label
  .woocommerce-Price-amount.amount {
  float: right;
  font-weight: 400 !important;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  .cart-discount
  .woocommerce-remove-coupon {
  font-weight: 500;
  margin-left: 2px;
  font-size: 14px;
  color: #ecaa1e;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  .shipping.shipping_form {
  display: none;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  .custom-coupon-row
  td {
  padding: 0px 0 20px;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  .custom-coupon-row
  td
  .custom-coupon-wrapper {
  margin: 0 !important;
  padding: 0;
  border: 0;
  position: relative;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  .custom-coupon-row
  td
  .custom-coupon-wrapper
  .form-row-first {
  width: 100% !important;
  padding: 0;
  margin: 0;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  .custom-coupon-row
  td
  .custom-coupon-wrapper
  .form-row-first
  .input-text {
  background: #f7f7f7;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  height: 56px;
  position: relative;
  margin: 0;
  padding: 0.375rem 9rem 0.375rem 1rem;
  box-shadow: none;
  outline: none;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  .custom-coupon-row
  td
  .custom-coupon-wrapper
  .form-row-last {
  padding: 0;
  margin: 0;
  position: absolute;
  right: 6px;
  top: 6px;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  .custom-coupon-row
  td
  .custom-coupon-wrapper
  .form-row-last
  .button {
  background-color: #ecaa1e;
  color: #121212;
  font-weight: 600;
  font-size: 12px;
  line-height: 25px;
  text-transform: uppercase;
  padding: 0.75em 1.8em;
  transition: background 0.3s ease;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  .custom-coupon-row
  td
  .custom-coupon-wrapper
  .form-row-last
  .button:hover {
  background-color: #121212;
  color: #fff;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  .order-total
  th {
  font-weight: 500 !important;
  font-size: 24px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 12px 10px 0px;
}
.checkout_section
  .shopping_summary
  .woocommerce-checkout-review-order
  .shop_table
  tfoot
  .order-total
  td {
  font-size: 24px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0px 10px 12px;
}
.checkout_section .woocommerce-checkout #payment {
  background: #fff;
}
.checkout_section .woocommerce-checkout #payment .wc_payment_methods {
  padding: 0;
  border: 0;
}
.checkout_section
  .woocommerce-checkout
  #payment
  .wc_payment_methods
  .payment_box.payment_method_stripe::before {
  content: none;
}
.checkout_section .woocommerce-checkout #payment ul.wc_payment_methods li .payment_box.payment_method_stripe{
  margin: 0;
  background: #fff;
  padding: 0;
}
.checkout_section .woocommerce-checkout #payment ul.wc_payment_methods li .payment_box.payment_method_stripe .woocommerce-SavedPaymentMethods{
  padding: 0;
}
.wc-stripe-payment-method-instruction{
  margin-bottom: 14px;
  font-size: 12px;
}
.checkout_section .deliver_forms .form-row.woocommerce-SavedPaymentMethods-saveNew{
  padding: 0;
}
.checkout_section .deliver_forms .form-row.woocommerce-SavedPaymentMethods-saveNew input{
  margin-right: 6px !important;
}
.checkout_section .woocommerce-checkout #payment .form-row.place-order {
  padding: 0;
}
.checkout_section
  .woocommerce-checkout
  #payment
  .form-row.place-order
  .button.alt {
  background-color: #ecaa1e;
  text-transform: uppercase;
  padding: 14px 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #121212;
  height: 46px;
  border-radius: 6px;
  transition: background 0.3s ease;
  margin-top: 30px;
}
.checkout_section
  .woocommerce-checkout
  #payment
  .form-row.place-order
  .button.alt:hover {
  background: #121212;
  color: #fff;
  box-shadow: none;
}

/* old payment method css */
/* .checkout_section
  .woocommerce-checkout
  #payment
  .wc_payment_methods
  .payment_method_cardconnect {
  background-color: #fff;
  padding: 0;
  margin: 0;
}
.checkout_section
  .woocommerce-checkout
  #payment
  .wc_payment_methods
  .payment_method_cardconnect::before {
  content: none;
}
.checkout_section
  .woocommerce-checkout
  #payment
  .wc_payment_methods
  .payment_method_cardconnect
  label {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #121212;
  margin-top: 10px;
}
.checkout_section
  .woocommerce-checkout
  #payment
  .wc_payment_methods
  .payment_method_cardconnect
  .payment_box
  p {
  color: #5e6267;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}
.checkout_section
  .woocommerce-checkout
  #payment
  .wc_payment_methods
  .payment_method_cardconnect
  .payment_box
  label {
  font-size: 16px;
  font-weight: 400;
  color: #5e6267;
  width: 100%;
  margin-bottom: 6px;
}
.checkout_section
  .woocommerce-checkout
  #payment
  .wc_payment_methods
  .payment_method_cardconnect
  .payment_box
  label
  span {
  color: red;
}
.checkout_section
  .woocommerce-checkout
  #payment
  .wc_payment_methods
  .payment_method_cardconnect
  .payment_box
  input {
  display: block;
  width: 100%;
  border: 1px solid #e9e9e9;
  height: 48px;
  padding: 0.375rem 1.1rem;
  outline: none;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  border-radius: 0.375rem;
}
.checkout_section
  .woocommerce-checkout
  #payment
  .wc_payment_methods
  .payment_method_cardconnect
  #cc-number-field
  iframe {
  width: 100%;
  height: 50px;
  border: none;
}
.checkout_section .woocommerce-checkout #payment .form-row.place-order {
  padding: 0;
}
.checkout_section
  .woocommerce-checkout
  #payment
  .form-row.place-order
  .button.alt {
  background-color: #ecaa1e;
  text-transform: uppercase;
  padding: 14px 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #121212;
  height: 46px;
  border-radius: 6px;
  transition: background 0.3s ease;
  margin-top: 30px;
}
.checkout_section
  .woocommerce-checkout
  #payment
  .form-row.place-order
  .button.alt:hover {
  background: #121212;
  color: #fff;
  box-shadow: none;
} */
.select2-container .select2-dropdown {
  border: 1px solid #e9e9e9;
}
.quick_view_modal {
  padding: 20px;
}
.quick_view_modal h3 {
  font-weight: 600;
  font-size: 25px;
  line-height: 32px;
  text-transform: capitalize;
  margin-bottom: 14px;
  color: #121212;
}
.quick_view_modal img {
  height: auto;
  max-width: 100%;
}
.quick_view_modal .price bdi {
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  text-transform: capitalize;
  color: #121212;
  text-decoration: none;
}
.quick_view_modal .price del .woocommerce-Price-amount bdi {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #5e6267;
}
.quick_view_modal .price ins {
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  text-transform: capitalize;
  color: #121212;
  text-decoration: none;
}
.quick_view_modal .variations_form table {
  margin-bottom: 1em;
  border: 0;
  width: 100%;
}
.quick_view_modal .variations_form table tbody tr .label {
  margin-bottom: 4px;
}
.quick_view_modal .variations_form table tbody tr .label label {
  font-weight: 400;
  text-align: left;
  color: #121212;
}
.quick_view_modal
  .variations_form
  table
  tbody
  tr
  .value
  .button-variable-items-wrapper
  .button-variable-item {
  width: max-content;
  padding: 18px 17px;
  border-radius: 50px;
  box-shadow: var(--wvs-item-box-shadow, 0 0 0 1px #e9e9e9);
}
.quick_view_modal
  .variations_form
  table
  tbody
  tr
  .value
  .button-variable-items-wrapper
  .button-variable-item
  .variable-item-span {
  overflow: visible;
}
.quick_view_modal
  .variations_form
  table
  tbody
  tr
  .value
  .button-variable-items-wrapper
  .button-variable-item.selected {
  box-shadow: none;
  background-color: #444548 !important;
  color: #fff !important;
}
.quick_view_modal .variations_form table tbody tr .value .reset_variations {
  color: #ecaa1e;
  text-decoration: none;
  font-size: 14px;
  margin-left: 6px;
}
.quick_view_modal .cart .add_cart_btn {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}
.quick_view_modal .cart .add_cart_btn .form-group {
  position: relative;
  width: 40%;
  margin-right: 20px;
}
.quick_view_modal .cart .add_cart_btn .form-group i {
  top: 16px;
  position: absolute;
  cursor: pointer;
}
.quick_view_modal .cart .add_cart_btn .form-group .fa-minus {
  left: 12px;
}
.quick_view_modal .cart .add_cart_btn .form-group .fa-plus {
  right: 12px;
}
.quick_view_modal .cart .add_cart_btn .form-group .form-control.quantity-input {
  border: 1px solid #e9e9e9;
  background-color: #f7f7f7;
  text-align: center;
  box-shadow: none;
  outline: none;
  font-weight: 600;
  font-size: 18px;
  height: 46px;
  border-radius: 6px;
}
.quick_view_modal .cart .add_cart_btn .single_add_to_cart_button,
.quick_view_modal .cart .add_cart_btn .single_add_to_cart_button.disabled {
  border: 1px solid #121212;
  width: 70%;
  color: #121212;
  background-color: #fff;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.quick_view_modal .cart .add_cart_btn .single_add_to_cart_button:hover,
.quick_view_modal
  .cart
  .add_cart_btn
  .single_add_to_cart_button.disabled:hover {
  color: #121212;
  background-color: #fff;
}
.quick_view_modal .cart .button.buy-now-button {
  width: 100%;
  background-color: #ecaa1e;
  text-transform: uppercase;
  padding: 12px 30px;
  font-weight: 500;
  font-size: 16px;
  color: #121212;
  height: 46px;
  border-radius: 6px;
  border: 0;
}
.order-confirmation {
  background-color: #eaeaea;
}
.order-confirmation .order_success {
  text-align: center;
  margin-bottom: 50px;
}
.order-confirmation .order_success img {
  width: 100px;
  margin-bottom: 16px;
}
.order-confirmation .order_success h2 {
  font-weight: 600;
  font-size: 34px;
}
.order-confirmation .order_summary {
  background: #fff;
  width: 56%;
  margin: auto;
  padding: 20px 30px 10px;
  border-radius: 14px;
}
.order-confirmation .order_summary .table thead tr {
  border-bottom: 1px solid #eaeaea;
}
.order-confirmation .order_summary .table thead tr .head_title {
  font-weight: 600;
  font-size: 28px;
  border: 0;
  width: 60%;
}
.order-confirmation .order_summary .table thead tr .details {
  text-align: right;
  border: 0;
  width: 40%;
}
.order-confirmation .order_summary .table thead tr .details .order_number,
.order-confirmation .order_summary .table thead tr .details .order_status {
  font-weight: 400;
  font-size: 15px;
  color: #ecaa1e;
  margin-bottom: 4px;
}
.order-confirmation .order_summary .table thead tr .details .order_number span,
.order-confirmation .order_summary .table thead tr .details .order_status span {
  color: #121212;
  font-weight: 500;
}
.order-confirmation .order_summary .table tbody .head_titles td {
  padding: 2.5rem 0.5rem 1rem;
}
.order-confirmation .order_summary .table tbody tr td {
  border: 0;
  padding: 1rem 0.5rem;
  color: #001c30;
  line-height: 26px;
}
.order-confirmation .order_summary .table tbody tr td:last-child {
  text-align: right;
  vertical-align: middle;
}
.order-confirmation .order_summary .table tbody tr .product_details {
  display: flex;
  align-items: center;
}
.order-confirmation .order_summary .table tbody tr .product_details img {
  width: 110px;
  margin-right: 20px;
}
.order-confirmation
  .order_summary
  .table
  tbody
  tr
  .product_details
  .pro_detail
  span {
  font-weight: 500;
  font-size: 18px;
  color: #121212;
}
.order-confirmation
  .order_summary
  .table
  tbody
  tr
  .product_details
  .pro_detail
  div {
  color: #5e6267;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
}
.order-confirmation .order_summary .table tbody .user_details {
  border-top: 1px solid #eaeaea;
}
.order-confirmation .order_summary .table tbody .user_details td {
  padding: 2rem 0.5rem 0.5rem;
  border-collapse: collapse;
  border-radius: 0;
}
.order-confirmation .share-this-post{
  background: #fff;
  width: 56%;
  margin: 50px auto 20px;
  padding: 20px 30px 30px;
  border-radius: 14px;
  text-align: center;
}
.order-confirmation .share-this-post p{
  font-size: 14px;
  font-weight: 500;
}
.order-confirmation .share-this-post .social-icons{
  display: flex;
  justify-content: center;
  align-items: center;
}
.order-confirmation .share-this-post .social-icons a {
  margin: 0px 8px;
  background: #d9d9d980;
  border: 1px solid #d9d9d980;
  display: flex;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.order-confirmation .share-this-post .social-icons a:hover {
  background-color: #f1b82d;
}

.woocommerce table.shop_table.wishlist_table {
  border: 0;
  border-collapse: collapse;
}
.woocommerce table.shop_table.wishlist_table thead {
  background-color: #f7f7f7;
  height: 60px;
}
.woocommerce table.shop_table.wishlist_table thead tr th {
  border: 0;
  font-size: 1rem;
}
.woocommerce table.shop_table.wishlist_table thead tr .product-name {
  width: 40%;
}
.woocommerce table.shop_table.wishlist_table tbody tr .product-name {
  display: flex;
  align-items: center;
}
.woocommerce table.shop_table.wishlist_table tbody tr .product-price del {
  font-weight: 400;
  color: #a0a0a0;
  font-size: 0.9em;
  float: right;
}
.woocommerce table.shop_table.wishlist_table tbody tr .product-price ins {
  text-decoration: none;
}
.woocommerce table.shop_table.wishlist_table tbody tr td {
  border: 0;
  padding: 30px 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  color: #121212;
}
.woocommerce table.shop_table.wishlist_table tbody tr td a {
  text-decoration: none;
  width: 25%;
}
.woocommerce table.shop_table.wishlist_table tbody tr td a img {
  background-color: #f7f7f7;
}
.woocommerce table.shop_table.wishlist_table tbody tr td .product_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  color: #121212;
  text-decoration: none;
  margin-left: 20px;
  width: 75%;
}
.woocommerce table.shop_table.wishlist_table tbody tr td .button {
  color: #121212;
  border-radius: 6px;
  background: #ecaa1e;
  text-transform: uppercase;
  padding: 12px 30px;
  font-weight: 500;
  font-size: 14px;
  width: 92%;
  transition: background 0.3s ease;
  margin-bottom: 0 !important;
}
.woocommerce table.shop_table.wishlist_table tbody tr td .button:hover {
  background: #000;
  color: #fff;
  box-shadow: none;
}
.woocommerce table.shop_table.wishlist_table tbody tr td .remove_from_wishlist {
  color: #fff !important;
  border-radius: 6px;
  background: #db4444;
  text-transform: uppercase;
  padding: 12px 30px;
  font-weight: 500;
  font-size: 14px;
  height: auto;
  width: 90%;
  transition: background 0.3s ease;
}
.woocommerce
  table.shop_table.wishlist_table
  tbody
  tr
  td
  .remove_from_wishlist:hover {
  background: #000;
  color: #fff;
  box-shadow: none;
}
.wishlist_table.responsive {
  padding: 0px;
}
.wishlist_table.responsive li {
  padding: 20px 20px 12px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 7px 7px 100px 0px #0000001a;
  position: relative;
}
.wishlist_table.responsive li .item-wrapper {
  width: 100%;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.wishlist_table.responsive li .item-wrapper .product-thumbnail {
  max-width: 120px;
  margin-right: 14px;
}
.wishlist_table.responsive li .item-wrapper .item-details {
  width: calc(100% - 140px);
}
.wishlist_table.responsive li .item-wrapper .item-details .product-name h3 {
  font-size: 18px;
  line-height: 24px;
}
.wishlist_table.responsive li .item-wrapper .item-details .product-name a {
  font-weight: 500;
  text-transform: capitalize;
  color: #121212;
  text-decoration: none;
}
.wishlist_table.responsive
  li
  .item-wrapper
  .item-details
  .item-details-table
  td.label {
  width: auto;
}
.wishlist_table.responsive
  li
  .item-wrapper
  .item-details
  .item-details-table
  td.value {
  text-align: left;
}
.wishlist_table.responsive li .additional-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wishlist_table.responsive li .additional-info-wrapper .remove_from_wishlist {
  text-decoration: none;
  font-weight: 400;
  font-size: 12px;
  color: #dc2626;
}
.wishlist_table.responsive
  li
  .additional-info-wrapper
  .remove_from_wishlist
  svg {
  width: 14px;
  height: 14px;
  margin-right: 2px;
  margin-bottom: 2px;
}
.wishlist_table.responsive li .additional-info-wrapper .additional-info {
  margin: 0;
  margin-right: 4px;
}
.wishlist_table.responsive
  li
  .additional-info-wrapper
  .additional-info
  td.label {
  width: auto;
}
.wishlist_table.responsive
  li
  .additional-info-wrapper
  .additional-info
  td.value {
  text-align: left;
}
.wishlist_table.responsive
  li
  .additional-info-wrapper
  .additional-info
  td.value
  .wishlist-in-stock {
  color: #16a34a;
}
.wishlist_table.responsive
  li
  .additional-info-wrapper
  .additional-info
  td.value
  .wishlist-out-of-stock {
  color: #dc2626;
}
.nav-mobile {
  display: none;
}
.school_brand_mobile {
  display: none;
}
.other_related_products h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
  margin-bottom: 14px;
}
.other_related_products #product-list {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
}
.other_related_products #product-list .product-container {
  width: 34%;
}
.other_related_products #product-list .product-container .product-card {
  box-shadow: none;
  border: 1px solid #f2f2f2;
  height: 220px;
}
.other_related_products
  #product-list
  .product-container
  .product-card
  .hover_buttons
  .icon-action {
  right: 10px;
  top: 10px;
}
.other_related_products
  #product-list
  .product-container
  .product-card
  .hover_buttons
  .icon-action
  a {
  justify-content: center;
}
.other_related_products
  #product-list
  .product-container
  .product-card
  .hover_buttons
  .icon-action
  .quick-view-btn {
  display: none;
}
.other_related_products
  #product-list
  .product-container
  .product-card
  .hover_buttons
  .btn-outline-primary {
  display: none;
}
.other_related_products
  #product-list
  .product-container
  .product_detail
  .product-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  margin-bottom: 0px;
}
.other_related_products
  #product-list
  .product-container
  .product_detail
  .rating {
  display: none;
}
.other_related_products
  #product-list
  .product-container
  .product_detail
  .justify-content-between {
  justify-content: center !important;
}
.other_related_products #product-list::-webkit-scrollbar {
  height: 10px;
}
.other_related_products #product-list::-webkit-scrollbar-thumb {
  background-color: #f0bd40;
  border-radius: 8px;
  cursor: pointer;
}
.other_related_products #product-list::-webkit-scrollbar-track {
  background-color: #e9e9e9;
  border-radius: 8px;
  cursor: pointer;
}
.sidebar_backdrop {
  display: none;
}

/* blog page css */
.blog_section .blog-card {
  position: relative;
  transition: 0.45s;
  margin-bottom: 30px;
}
.blog_section .blog-card .blog-card-img-wrap {
  position: relative;
}
.blog_section .blog-card .blog-card-img-wrap a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.5s ease-out;
}
.blog_section .blog-card .blog-card-img-wrap a img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: all 0.5s ease-out;
}
.blog_section .blog-card .blog-card-img-wrap a:hover img {
  transform: scale(1.1);
}
.blog_section .blog-card .blog-card-img-wrap .category {
  font-size: 14px;
  font-weight: 700;
  color: #121212;
  background-color: #f0bd40;
  line-height: 1;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  transition: 0.7s;
  position: absolute;
  left: 20px;
  top: 20px;
  text-decoration: none;
}
.blog_section .blog-card .blog-content {
  padding-top: 23px;
  text-align: left;
}
.blog_section .blog-card .blog-content .publish-date {
  font-size: 14px;
  font-weight: 400;
  color: #545454;
  position: relative;
  line-height: 1;
  transition: 0.35s;
  margin-bottom: 8px;
}
.blog_section .blog-card .blog-content .publish-date::before{
  content: "";
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background-color: #03030833;
    display: inline-block;
    margin: 0px 8px 2px 0;
}
.blog_section .blog-card .blog-content h4 {
  margin-bottom: 0;
}
.blog_section .blog-card .blog-content h4 a {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #121212;
  transition: 0.35s;
  word-spacing: normal;
  word-break: break-word;
  word-wrap: normal;
  text-decoration: none;
}
.blog_section .blog-card .blog-content h4 a:hover {
  color: #f0bd40;
}

.blog_section .pagination {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.blog_section .pagination a {
  text-decoration: none;
  color: #05060b;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.blog_section .pagination a.active {
  color: #f0bd40;
  font-weight: 700;
}

.blog_section .pagination a.arrow {
  display: flex;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  color: #a0a0a0;
  font-size: 24px;
  padding: 0 0 6px 0;
  align-items: center;
  transition: background-color 0.3s;
}

.blog_section .pagination a:not(.active):not(.arrow):hover {
  color: #f0bd40;
}

.blog_section .pagination a.arrow:hover {
  background-color: #f0bd40;
  border: 1px solid #f0bd40;
  color: #121212;
}

.single_blog_section .blog-content .post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 26px;
}

.single_blog_section .blog-content .publish-date {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #121212;
}
.single_blog_section .blog-content .blog_title {
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  margin: 6px 0 16px;
}
.single_blog_section .blog-content .post-content {
  margin-bottom: 60px;
}
.single_blog_section .blog-content .share-this-post {
  background: #f5f5f5;
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 50px;
}
.single_blog_section .blog-content .share-this-post h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 14px;
}
.single_blog_section .blog-content .share-this-post .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.single_blog_section .blog-content .share-this-post .social-icons a {
  margin: 0px 8px;
  background: #fff;
  border: 1px solid #d9d9d980;
  display: flex;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.single_blog_section .blog-content .share-this-post .social-icons a:hover {
  background-color: #f1b82d;
}

.single_blog_section .blog-content .share-this-post .share-link {
  position: relative;
  width: 60%;
  margin: auto;
  background: #fff;
  border-radius: 50px;
}
.single_blog_section .blog-content .share-this-post .share-link .copylinkmsg{
  display: none;
  color: #121212;
  background: #f0bd40;
  position: absolute;
  width: max-content;
  right: -26px;
  bottom: -24px;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}
.single_blog_section .blog-content .share-this-post .share-link .copylinkmsg::after{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgb(240 189 64);
  clip-path: polygon(0 0, 50% 50%, 100% 0);
  rotate: 180deg;
  top: -9px;
  left: 50%;
}
.single_blog_section .blog-content .share-this-post .share-link input {
  width: 90%;
  background: #fff;
  border: none;
  padding: 8px;
  height: 40px;
  border-radius: 50px;
  outline: none;
  text-overflow: ellipsis;
}
.single_blog_section .blog-content .share-this-post .share-link button {
  background: #f0bd40;
  border: 0;
  outline: none;
  border-radius: 50px;
}
.single_blog_section .blog-content .share-this-post .share-link button img {
  width: 13px !important;
  filter: grayscale(100%) brightness(0%);
}
.single_blog_section .blog-content .promo_Banner {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.single_blog_section .related_blogs {
  margin-top: 30px;
  text-align: center;
}
.single_blog_section .promo-banner{
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.single_blog_section .promo-banner img{
  width: 100%;
  height: auto;
}
.single_blog_section .promo-banner .promo-content{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.single_blog_section .promo-banner .promo-content h2{
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}
.single_blog_section .promo-banner .promo-content a{
  padding: 6px 12px;
  font-size: 12px;
}
.single_blog_section .promo-banner .promo-content a:hover{
  background: #ecaa1e;
  color: #121212;
}

.single_blog_section .latest-articles {
  background: #f5f5f5;
  padding: 30px 30px 10px;
  border-radius: 10px;
}
.single_blog_section .latest-articles .article_title {
  background: #f0bd40;
  width: max-content;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  padding: 2px 14px;
  border-radius: 50px;
  margin-bottom: 30px;
}
.single_blog_section .latest-articles.blog_section .blog-card{
  display: flex;
  align-items: center;
  margin-bottom: 24px;
} 
.single_blog_section .latest-articles.blog_section .blog-card .blog-card-img-wrap a img{
  width: 90px;
  height: 90px;
}
.single_blog_section .latest-articles.blog_section .blog-card .blog-card-img-wrap a:hover img{
  transform: none;
}
.single_blog_section .latest-articles.blog_section .blog-card .blog-content{
  padding: 0;
  margin-left: 20px;
}
.single_blog_section .latest-articles.blog_section .blog-card .blog-content h4 a{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.contact_section .contact_description {
  text-align: left;
}
.contact_section .contact_description .head_title {
  font-size: 30px;
  line-height: 40px;
}
.contact_section .contact_list {
  padding: 20px 0;
}
.contact_section .contact_list .location_details {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0bd40;
}
.contact_section .contact_list .mail_details {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.contact_section .contact_list img {
  padding: 2px 10px 0 0;
}
.contact_section .contact_list h3 {
  font-size: 18px;
  font-weight: 500;
  color: #121212;
}
.contact_section .contact_list p a {
  color: #121212;
}
body:has(header .navbar.nav-mobile .navbar-collapse.show) {
  overflow: hidden;
}

/* myaccount page css */
.woocommerce .woocommerce-MyAccount-content form .form-row .password-input input {
  height: 44px;
  font-size: 30px;
  letter-spacing: 2px;
  color: #f5b940;
  -webkit-text-fill-color: #f5b940;
  transition: background-color 5000s ease-in-out 0s;
}
.woocommerce .woocommerce-MyAccount-content form .form-row .password-input input:-webkit-autofill {
  height: 44px;
  font-size: 1rem;
  letter-spacing: 2px;
}
.woocommerce .woocommerce-MyAccount-content form .form-row .password-input input[type="text"] {
  font-size: 1rem;
  letter-spacing: 0;
  color: #212529;
}
.woocommerce .woocommerce-MyAccount-content form .form-row .password-input input:placeholder-shown {
  font-size: 1rem;
  -webkit-text-security: none;
  letter-spacing: 0;
  -webkit-text-fill-color: #212529;
}


.woocommerce-account .woocommerce{
  display: flex;
  gap: 1rem;
}
.woocommerce-MyAccount-navigation{
  padding: 10px 10px 10px 0px;
}
.woocommerce-MyAccount-navigation h3{
  font-weight: 600;
  padding-inline: 15px 10px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  text-transform: uppercase;
  border-bottom: 1px solid #F0BD40;
  font-size: 26px;
}
.woocommerce-MyAccount-navigation ul{
  list-style: none;
  padding: 0;
}
.woocommerce-MyAccount-navigation ul li a{
  display: block;
  padding: 10px 15px;
  margin-bottom: 6px;
  color: #242424;
  line-height: 20px;
  text-transform: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all .25s ease;
  border: 1px solid transparent;
}
.woocommerce-MyAccount-navigation ul li a:hover{
  color: #ecaa1e;
  background: #fff9ec;
  border: 1px solid;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  color: #ecaa1e;
  background: #fff9ec;
  border: 1px solid;
}
.woocommerce-MyAccount-content{
  border-inline-start: 1px solid #F0BD40;
  padding: 10px 0px 10px 30px;
}
.woocommerce .woocommerce-MyAccount-content form .form-row-first, .woocommerce .woocommerce-MyAccount-content form .form-row-last, .woocommerce-page .woocommerce-MyAccount-content form .form-row-first, .woocommerce-page .woocommerce-MyAccount-content form .form-row-last{
  width: 49%;
}

.woocommerce .woocommerce-MyAccount-content form .form-row .input-text, 
.woocommerce .woocommerce-MyAccount-content form .form-row select,
.woocommerce .woocommerce-MyAccount-content form .form-row .woocommerce-input-wrapper .select2-selection{
  background: #f3f4f7;
  border: 0;
  padding: 0.75rem 0.95rem;
}
.woocommerce .woocommerce-MyAccount-content form .form-row .woocommerce-input-wrapper .select2-selection .select2-selection__rendered{
  padding: 0;
}

.woocommerce .woocommerce-MyAccount-content form .form-row{
  margin: 0 0 14px;
}
.woocommerce .woocommerce-MyAccount-content form .form-row label{
  margin-bottom: 6px;
  color: #121212;
}
.woocommerce .woocommerce-MyAccount-content form .form-row span{
  font-size: 14px;
  color: #777777;
}
.woocommerce .woocommerce-MyAccount-content form fieldset legend{
  font-size: 22px;
  font-weight: 700;
  margin-top: 20px;
}
.woocommerce .woocommerce-MyAccount-content form .theme-btn{
  background: #ecaa1e;
  text-transform: uppercase;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 14px;
  color: #121212;
  border-radius: 0.375rem;
  line-height: 1.5;
  margin-top: 10px;
  transition: all .25s ease;
}
.woocommerce .woocommerce-MyAccount-content form .theme-btn:hover{
  color: #ffffff;
  background: #121212;
}
.woocommerce-MyAccount-content .woocommerce-orders-table{
  margin-bottom: 10px;
}
.woocommerce-MyAccount-content .woocommerce-orders-table .woocommerce-button{
    background: #ecaa1e;
    text-transform: uppercase;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 12px;
    color: #121212;
    border-radius: 0.375rem;
    transition: all .25s ease;
}
.woocommerce-MyAccount-content .woocommerce-orders-table .woocommerce-button:hover{
  color: #ffffff;
  background: #121212;
}
.woocommerce-MyAccount-content .woocommerce-orders-table th, .woocommerce-MyAccount-content .woocommerce-orders-table td{
  padding: 6px 8px !important;
}
.woocommerce-MyAccount-content .woocommerce-pagination{
  display: flex;
  justify-content: space-between;
}
.woocommerce-MyAccount-content .woocommerce-pagination a{
  padding: 0;
  background: transparent;
  font-size: 14px;
  color: #121212;
  transition: all .25s ease;
}
.woocommerce-MyAccount-content .woocommerce-pagination a:hover{
  color: #ecaa1e;
  background: transparent;
}
.woocommerce-MyAccount-content .address-content{
  color: #777777;
  margin-bottom: 30px;
}

.woocommerce-MyAccount-content .u-columns .woocommerce-Address-title h2{
  text-transform: uppercase;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}
.woocommerce-MyAccount-content .u-columns .woocommerce-Address-title a{
  color: #121212;
  text-decoration: none;
  float: none !important;
  font-weight: 400;
  margin-bottom: 16px;
  display: block;
  font-size: 1.1em;
  transition: all .25s ease;
}
.woocommerce-MyAccount-content .u-columns .woocommerce-Address-title a:hover{
  color: #ecaa1e;
}
.woocommerce-MyAccount-content .u-columns .woocommerce-Address-title a:hover svg{
  fill: #ecaa1e;
}
.woocommerce-MyAccount-content .u-columns .woocommerce-Address-title a svg{
  width: 18px;
  height: 18px;
  transition: all .25s ease;
  margin: 0 4px 4px 0;
}
.woocommerce-MyAccount-content .u-columns .woocommerce-Address address{
  margin-bottom: 20px;
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: #777;
}
.woocommerce-MyAccount-content .order-content{
  margin-bottom: 30px;
  color: #777777;
}
.woocommerce-MyAccount-content .order-content mark{
  display: inline-block;
  padding: 5px 8px;
  background-color: #f7f7f7;
  color: #242424;
  font-weight: 600;
  line-height: 1;
}
.woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-order-details__title{
  font-size: 22px;
  font-weight: 700;
}
.woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table{
  border: 0;
  border-collapse: collapse;
}
.woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table .product-total{
  text-align: right;
}
.woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table tbody td,
.woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table thead th{
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  border-top: 0;
}
.woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table tbody td.product-name ul.wc-item-meta{
  color: #777;
  font-size: 14px;
  margin-top: 4px;
  padding: 0;
}
.woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table tbody td.product-name a{
  color: #121212;
    text-decoration: none;
    font-weight: 400;
    transition: all .25s ease;
} 
.woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table tbody td.product-name a:hover{
  color: #ecaa1e;
}
.woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table tfoot td{
  text-align: right;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  border-top: 0;
  font-weight: 400;
}
.woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table tfoot td .amount,
.woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table .product-total .amount{
  color: #ecab3f;
  font-weight: bold;
}
.woocommerce-MyAccount-content .woocommerce-order-details .woocommerce-table tfoot th{
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  border-top: 0;
  font-weight: 400;
}
.woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-column__title{
  text-transform: uppercase;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
}
.woocommerce-MyAccount-content .woocommerce-customer-details address{
  border: 0;
  padding: 0;
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: #777;
}

.woocommerce-MyAccount-content .woocommerce-MyAccount-paymentMethods a.button.delete{
  background: #d2322d;
  text-transform: uppercase;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  border-radius: 0.375rem;
  transition: all .25s ease;
  float: right;
}
.woocommerce-MyAccount-content .woocommerce-MyAccount-paymentMethods a.button.delete:hover{
  color: #ffffff;
  background: #121212;
}
.woocommerce .woocommerce-MyAccount-content .payment-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.woocommerce .woocommerce-MyAccount-content .payment-header h4{
  font-size: 22px;
  font-weight: 700;
}
.woocommerce .woocommerce-MyAccount-content a.button.theme-btn{
  background: #ecaa1e;
  text-transform: uppercase;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 14px;
  color: #121212;
  border-radius: 0.375rem;
  line-height: 1.5;
  margin-bottom: 10px;
  transition: all .25s ease;
}
.woocommerce .woocommerce-MyAccount-content a.button.theme-btn:hover{
  color: #ffffff;
  background: #121212;
}

/* account payment method form */
#add_payment_method #payment {
  background: #fff;
}
#add_payment_method #payment ul.payment_methods {
  padding: 0;
  border: 0;
}
#add_payment_method #payment .payment_methods .woocommerce-PaymentBox.payment_method_stripe::before {
  content: none;
}
#add_payment_method #payment .payment_methods .woocommerce-PaymentBox.payment_method_stripe{
  margin: 0;
  background: #fff;
  padding: 0;
}
.confirm-address-modal .btn{
  text-transform: uppercase;
  padding: 6px 14px;
  font-weight: 500;
  font-size: 14px;
}
.address-box{
  padding: 20px;
  border: 1px solid #ecaa1e;
  border-radius: 6px;
  margin-bottom: 20px;
  background: #fffaf1;
}

/* responsive css */
@media (min-width: 600px) and (max-width: 1199px) {
  .section {
    padding: 20px 0;
  }
  .nav-desktop {
    display: none;
  }
  .school_brand_mobile {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #121212;
    margin: 0 auto 0 0;
    padding: 10px 0;
  }
  .banner_section .banner_box img {
    height: 200px;
    object-fit: cover;
  }
  .banner_section .banner_box h2 {
    font-size: 40px;
  }
  .banner_section .banner_box h1 {
    font-size: 40px;
  }
  header .navbar.nav-mobile .search_box .dropdown-menu{
    width: 82vw;
  }
  header .navbar.nav-mobile .search_box .dropdown-menu li a{
    white-space: normal;
  }
  header .navbar.nav-mobile {
    display: block;
    padding: 10px 0;
  }
  header .navbar.nav-mobile .navbar-brand .nav_logo {
    height: 50px;
  }
  header .navbar.nav-mobile .navbar-toggler {
    padding: 0;
    border-color: transparent;
    box-shadow: none;
    display: block;
  }
  header .navbar.nav-mobile .navbar-toggler .navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
  }
  header .navbar.nav-mobile .navbar-collapse {
    position: fixed;
    inset: 0 auto 0 0;
    width: 88vw;
    height: 100%;
    background: #fff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    display: flex;
    flex-direction: column;
    z-index: 500;
  }
  header .navbar.nav-mobile .navbar-collapse .search_box {
    width: 94%;
    margin: 16px;
  }
  header .navbar.nav-mobile .navbar-collapse .funding_counter {
    margin: 24px 0 12px;
  }
  header .navbar.nav-mobile .navbar-collapse.show {
    transform: translateX(0);
  }
  header .navbar.nav-mobile .navbar-collapse.show .navbar-toggler-close {
    background: transparent;
    border: none;
    position: absolute;
    right: -40px;
    font-size: 26px;
    color: #fff;
  }
  header .navbar.nav-mobile .navbar-collapse-backdrop {
    content: "";
    position: fixed;
    inset: 0;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 400;
  }
  header .navbar.nav-mobile .navbar-collapse.show + .navbar-collapse-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  header .navbar.nav-mobile .navbar-nav {
    width: 100%;
    margin: 0;
    flex-direction: column;
  }
  header .navbar.nav-mobile .navbar-nav .nav-item {
    margin: 0;
  }
  header .navbar.nav-mobile .navbar-nav .nav-item .nav-link {
    color: #121212;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    padding: 5px 20px;
    min-height: 50px;
    border-bottom: 1px solid #eee;
  }
  header .navbar.nav-mobile .navbar-nav .nav-item .nav-link svg {
    margin-right: 8px;
    margin-bottom: 0;
  }
  header .navbar.nav-mobile .navbar-nav .nav-item .nav-link:hover {
    color: #ecaa1e;
  }
  .heading_title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .how_works_section .work_icon_box {
    display: none;
  }
  .how_works_section .work_content_box {
    padding: 20px 20px;
  }
  .how_works_section .work_content_box .process_step::after {
    display: none;
  }
  .head_title {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 20px;
  }
  .other_related_products #product-list .product-container {
    width: 33.33% !important;
  }
  .footer_section .footer_content .footer_logo {
    text-align: center;
    display: block;
  }
  .footer_section .footer_content .footer_logo img {
    width: 20%;
    margin-bottom: 20px;
  }
  .footer_section .footer_content p {
    text-align: center;
  }
  .footer_section .footer_content .footer_social {
    justify-content: center;
  }
  .footer_section .footer_links {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
  }
  .footer_section .footer_links .link_item {
    margin: 6px 20px;
  }
  .footer_section .contact_detail {
    text-align: center;
    margin-top: 30px;
  }
  .product_section #product-list .product-container {
    width: 100%;
  }
  .product_section
    #product-list
    .product-container
    .product_detail
    .product-title {
    font-size: 20px;
    line-height: 30px;
  }
  .product_section #product-list .product-container .product_detail .rating {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 24px;
  }
  .product_section #product-list .product-container .product_detail del {
    float: right;
    margin-left: 6px;
  }
  .product_section #product-list .product-container .product_detail del bdi {
    font-size: 14px;
  }
  .product_section #product-list .product-container .product_detail ins,
  .product_section #product-list .product-container .product_detail bdi {
    font-size: 18px;
    line-height: 24px;
  }
  .product_section #product-list .product-container .product_detail .donation {
    font-size: 16px;
    line-height: 22px;
  }
  .sidebar {
    position: fixed;
    inset-block: 0;
    z-index: 500;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: min(340px, 100vw);
    background-color: #fff;
    /* transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1); */
    left: 0;
    right: auto;
    transform: translate3d(100%, 0, 0);
    padding: 30px 20px;
  }
  .shop-sidebar .btn-close {
    position: absolute;
    top: -22px;
    right: -12px;
  }
  .sidebar:not(.hide) + .sidebar_backdrop {
    opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 400;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    display: block;
  }
  body:has(.sidebar:not(.hide)) {
    overflow: hidden;
  }
  .product_listing_section {
    width: 60%;
  }
  .product_listing_section.full {
    padding: 0px;
  }
  .product_listing_section.full
    .product_section
    #product-list
    .product-container {
    width: 50%;
  }
  .related.products.product_section #product-list .product-container {
    width: 50%;
  }
  .checkout_section .deliver_forms {
    order: 2;
    width: 100%;
  }
  .checkout_section .shopping_summary {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    order: 1;
    width: 100%;
  }
  .order-confirmation .order_summary {
    width: 100%;
  }
  .cart_section .woocommerce-cart-form {
    width: 100%;
  }
  .cart_section .woocommerce-cart-form .shop_table_responsive {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 0;
    overflow: hidden;
  }
  .cart_section .woocommerce-cart-form .shop_table_responsive thead {
    display: table-header-group;
    height: auto;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    thead
    tr
    .product-subtotal {
    width: 16%;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    thead
    tr
    .product-thumbnail {
    width: 18%;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    thead
    tr
    .product-name {
    width: 38%;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    thead
    tr
    .product-quantity {
    width: 20%;
  }
  .cart_section .woocommerce-cart-form .shop_table_responsive tr {
    display: table-row;
  }
  .cart_section .woocommerce-cart-form .shop_table_responsive tr td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tr
    .product-thumbnail {
    display: table-cell;
    text-align: left !important;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tr
    .product-thumbnail::before {
    display: none;
  }
  .cart_section .woocommerce-cart-form .shop_table_responsive tr .product-name {
    text-align: left !important;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tr
    .product-name::before {
    display: none;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tr:nth-child(2n)
    td {
    background-color: #fff;
  }
  .cart_section .woocommerce-cart-form .shop_table_responsive tbody tr td {
    display: table-cell;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tbody
    tr
    td::before {
    display: none;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tbody
    tr
    .product-subtotal {
    width: 16%;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tbody
    tr
    .product-thumbnail {
    width: 18%;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tbody
    tr
    .product-quantity {
    width: 20%;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tbody
    tr
    .product-name {
    width: 38%;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tbody
    tr
    .product-quantity
    .custom-quantity-wrapper {
    margin: 0 !important;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tbody
    tr
    .actions
    .coupon {
    padding: 0;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tbody
    tr
    .actions
    .coupon
    .button {
    width: auto;
  }
  .cart_section .cart-collaterals {
    width: 100%;
  }
  .cart_section .cart-collaterals .cart_totals .shop_table tr:nth-child(2n) td {
    background-color: transparent;
  }
  .cart_section
    .cart-collaterals
    .cart_totals
    .shop_table
    .woocommerce-shipping-totals
    td
    .woocommerce-shipping-methods {
    width: 40%;
    margin-left: auto !important;
  }
  .cart_section .cart-collaterals .cart_totals .shop_table .shipping_form td {
    padding: 20px 0px 20px 12px !important;
  }
  .cart_section
    .cart-collaterals
    .cart_totals
    .shop_table
    .shipping_form
    td::before {
    display: none;
  }
  .woocommerce-account .woocommerce{
    flex-direction: column;
  }
  .woocommerce-MyAccount-content {
    border-inline-start: 0;
    padding: 30px 0px 10px 0px;
    border-top: 1px solid #F0BD40;
  }
  .woocommerce-MyAccount-content .woocommerce-customer-details address{
    margin-bottom: 30px !important;
  }
  .review-images{
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .hero_slider .carousel-inner .carousel-item img{
    height: auto;
  }
  .category_section .category_box h3{
    font-size: 24px;
  }
  .register-wrapper .authentication-inner .authentication_right {
    padding: 40px 20px;
  }
  .register-wrapper .authentication-inner .authentication_right .logo {
    width: 160px;
  }
  .register-wrapper .authentication-inner .authentication_right h2 {
    margin-top: 20px;
  }
  .section {
    padding: 20px 0;
  }
  .nav-desktop {
    display: none;
  }
  .school_brand_mobile {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #121212;
    margin: 0 auto 0 0;
    padding: 10px 0;
  }
  .banner_section .banner_box img {
    height: 140px;
    object-fit: cover;
  }
  .banner_section .banner_box h1 {
    font-size: 28px;
  }
  header .navbar.nav-mobile .search_box .dropdown-menu{
    width: 82vw;
  }
  header .navbar.nav-mobile .search_box .dropdown-menu li a{
    white-space: normal;
  }
  header .navbar.nav-mobile {
    display: block;
    padding: 10px 0;
  }
  header .navbar.nav-mobile .navbar-brand .nav_logo {
    height: 50px;
  }
  header .navbar.nav-mobile .navbar-toggler {
    padding: 0;
    border-color: transparent;
    box-shadow: none;
  }
  header .navbar.nav-mobile .navbar-toggler .navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
  }
  header .navbar.nav-mobile .navbar-collapse {
    position: fixed;
    inset: 0 auto 0 0;
    width: 88vw;
    height: 100%;
    background: #fff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    display: flex;
    flex-direction: column;
    z-index: 500;
  }
  header .navbar.nav-mobile .navbar-collapse .search_box {
    width: 94%;
    margin: 16px;
  }
  header .navbar.nav-mobile .navbar-collapse .funding_counter {
    margin: 24px 0 12px;
  }
  header .navbar.nav-mobile .navbar-collapse.show {
    transform: translateX(0);
  }
  header .navbar.nav-mobile .navbar-collapse.show .navbar-toggler-close {
    background: transparent;
    border: none;
    position: absolute;
    right: -40px;
    font-size: 26px;
    color: #fff;
  }
  header .navbar.nav-mobile .navbar-collapse-backdrop {
    content: "";
    position: fixed;
    inset: 0;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 400;
  }
  header .navbar.nav-mobile .navbar-collapse.show + .navbar-collapse-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  header .navbar.nav-mobile .navbar-nav {
    width: 100%;
    margin: 0;
  }
  header .navbar.nav-mobile .navbar-nav .nav-item {
    margin: 0;
  }
  header .navbar.nav-mobile .navbar-nav .nav-item .nav-link {
    color: #121212;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    padding: 5px 20px;
    min-height: 50px;
    border-bottom: 1px solid #eee;
  }
  header .navbar.nav-mobile .navbar-nav .nav-item .nav-link svg {
    margin-right: 8px;
    margin-bottom: 0;
  }
  header .navbar.nav-mobile .navbar-nav .nav-item .nav-link:hover {
    color: #ecaa1e;
  }
  .heading_title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .how_works_section .work_icon_box {
    display: none;
  }
  .how_works_section .work_content_box {
    padding: 20px 20px;
  }
  .how_works_section .work_content_box .process_step::after {
    display: none;
  }
  .head_title {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 20px;
  }
  .other_related_products #product-list .product-container {
    width: 50% !important;
  }
  .other_related_products #product-list .product-container .product-card {
    height: 160px;
  }
  .container,
  .container-fluid {
    padding: 0 2rem;
  }
  .breadcrumb_line .back_link {
    margin-left: 10px;
  }
  .category_section .category_box {
    padding: 40px;
  }
  .woocommerce-notices-wrapper .woocommerce-message .button {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  .hero_slider .carousel-inner .carousel-item .carousel-caption {
    top: 30%;
    width: 100%;
    left: 0;
  }
  .hero_slider .carousel-inner .carousel-item .carousel-caption h1 {
    font-size: 30px;
  }
  .hero_slider .carousel-inner .carousel-item .carousel-caption p {
    font-size: 18px;
  }
  .footer_section .footer_content .footer_logo {
    text-align: center;
    display: block;
  }
  .footer_section .footer_content .footer_logo img {
    width: 20%;
    margin-bottom: 20px;
  }
  .footer_section .footer_content p {
    text-align: center;
  }
  .footer_section .footer_content .footer_social {
    justify-content: center;
  }
  .footer_section .footer_links {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
  }
  .footer_section .footer_links .link_item {
    margin: 6px 20px;
  }
  .footer_section .contact_detail {
    text-align: center;
    margin-top: 30px;
  }
  .sidebar {
    position: fixed;
    inset-block: 0;
    z-index: 500;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: min(340px, 100vw);
    background-color: #fff;
    /* transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1); */
    left: 0;
    right: auto;
    transform: translate3d(100%, 0, 0);
    padding: 30px 20px;
  }
  .shop-sidebar .btn-close {
    position: absolute;
    top: -22px;
    right: -12px;
  }
  .sidebar:not(.hide) + .sidebar_backdrop {
    opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 400;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    display: block;
  }
  body:has(.sidebar:not(.hide)) {
    overflow: hidden;
  }
  .product_listing_section.full
    .product_section
    #product-list
    .product-container {
    width: 100%;
  }
  .woocommerce-Reviews .upload-container .main-text {
    width: 60%;
  }
  .related.products.product_section #product-list .product-container {
    width: 100%;
  }
  .checkout_section .deliver_forms {
    order: 2;
    width: 100%;
  }
  .checkout_section .shopping_summary {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    order: 1;
    width: 100%;
  }
  .order-confirmation .order_summary {
    width: 100%;
  }
  .cart_section .woocommerce-cart-form {
    width: 100%;
  }
  .cart_section .woocommerce-cart-form .shop_table_responsive tr {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
    padding: 10px 20px;
  }
  .cart_section .woocommerce-cart-form .shop_table_responsive tr td {
    padding: 10px 0px !important;
  }
  .cart_section .woocommerce-cart-form .shop_table_responsive tr .product-name {
    text-align: left !important;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tr
    .product-name::before {
    display: none;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tr
    .product-remove {
    position: absolute;
    top: 4px;
    right: 10px;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tr
    .product-subtotal {
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    margin-top: 8px;
    padding-top: 16px !important;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tr:nth-child(2n)
    td {
    background-color: #fff;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tbody
    tr
    .product-quantity::before {
    display: none;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tbody
    tr
    .product-quantity
    .custom-quantity-wrapper {
    margin: 0 !important;
    width: 40%;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tbody
    tr
    .product-thumbnail {
    display: block;
    text-align: left !important;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tbody
    tr
    .product-thumbnail::before {
    display: none;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tbody
    tr
    .actions
    .coupon {
    padding: 0;
  }
  .cart_section .woocommerce-cart-form .shop_table tbody .actions .coupon .input-text{
    margin-bottom: 12px;
    padding: 1rem;
  }
  .cart_section
    .woocommerce-cart-form
    .shop_table_responsive
    tbody
    tr
    .actions
    .coupon
    .button {
      width: 100%;
      position: unset;
      float: none;
  }
  .cart_section .cart-collaterals {
    width: 100%;
  }
  .cart_section .cart-collaterals .cart_totals .shop_table tr:nth-child(2n) td {
    background-color: transparent;
  }
  .cart_section
    .cart-collaterals
    .cart_totals
    .shop_table
    .woocommerce-shipping-totals
    td
    .woocommerce-shipping-methods {
    width: 60%;
    margin-left: auto !important;
  }
  .cart_section .cart-collaterals .cart_totals .shop_table .shipping_form td {
    padding: 20px 0px 20px 12px !important;
  }
  .cart_section
    .cart-collaterals
    .cart_totals
    .shop_table
    .shipping_form
    td::before {
    display: none;
  }
  .checkout_section
    .shopping_summary
    .woocommerce-checkout-review-order
    .shop_table
    tr {
    display: block;
    position: relative;
    box-shadow: 7px 7px 100px 0px #0000001a;
    margin-bottom: 16px;
    padding: 0 10px;
    border-radius: 8px;
  }
  .checkout_section
    .shopping_summary
    .woocommerce-checkout-review-order
    .shop_table
    tbody
    .product-name
    .product_details {
    font-size: 16px;
    line-height: 24px;
  }
  .checkout_section
    .shopping_summary
    .woocommerce-checkout-review-order
    .shop_table
    tbody
    .product-name {
    padding: 10px 12px 56px 0px;
  }
  .checkout_section
    .shopping_summary
    .woocommerce-checkout-review-order
    .shop_table
    tbody
    .product-total {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top: 1px solid #eee;
    width: 100%;
    padding: 10px;
  }
  .checkout_section
    .shopping_summary
    .woocommerce-checkout-review-order
    .shop_table
    tfoot
    tr {
    display: flex;
    position: unset;
    border: 0;
    margin-bottom: 0;
    padding: 0;
    box-shadow: none;
  }
  .checkout_section
    .shopping_summary
    .woocommerce-checkout-review-order
    .shop_table
    tfoot
    tr
    th {
    width: 40%;
    line-height: 1.5;
    padding: 10px 12px 10px 12px;
  }
  .checkout_section
    .shopping_summary
    .woocommerce-checkout-review-order
    .shop_table
    tfoot
    tr
    td {
    width: 60%;
    padding: 10px 12px 10px 12px;
  }
  .checkout_section
    .shopping_summary
    .woocommerce-checkout-review-order
    .shop_table
    tfoot
    tr.custom-coupon-row
    td {
    width: 100%;
  }
  .order-confirmation .order_success img {
    width: 60px;
  }
  .order-confirmation .order_success h2 {
    font-size: 24px;
  }
  .order-confirmation .order_summary table thead,
  .order-confirmation .order_summary table tbody {
    display: block;
  }
  .order-confirmation .order_summary table tbody .user_details {
    display: block;
  }
  .order-confirmation .order_summary table tbody .user_details td:first-child,
  .order-confirmation .order_summary table tbody .user_address td:first-child {
    display: block;
    font-weight: bold;
    padding-bottom: 0;
  }
  .order-confirmation .order_summary table tbody .head_titles {
    display: none;
  }
  .order-confirmation .order_summary table tbody tr .product_details img {
    display: none;
  }
  .order-confirmation .order_summary table tbody .user_details td:last-child,
  .order-confirmation .order_summary table tbody .user_address td:last-child {
    display: block;
    text-align: left;
    padding: 0rem 0.5rem;
  }
  .order-confirmation .order_summary table thead tr {
    display: block;
  }
  .order-confirmation .order_summary .table thead tr .head_title {
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
  }
  .order-confirmation .order_summary .table thead tr .details {
    display: block;
    width: 100%;
    text-align: left;
  }
  .single_blog_section .blog-content .share-this-post .share-link{
    width: 100%;
  }
  .single_blog_section .blog-content .share-this-post .share-link input{
    width: 86%;
  }
  .woocommerce-account .woocommerce{
    flex-direction: column;
  }
  .woocommerce-MyAccount-content {
    border-inline-start: 0;
    padding: 30px 0px 10px 0px;
    border-top: 1px solid #F0BD40;
  }
  .woocommerce-MyAccount-content .woocommerce-customer-details address{
    margin-bottom: 30px !important;
  }
  .woocommerce .woocommerce-MyAccount-content .payment-header{
    flex-direction: column;
    align-items: flex-start;
  }
  .fp-suggest-panel .fp-prod .fp-title{
    width: 33vw;
  }
  .fp-suggest-panel .fp-prod .fp-meta{
    width: 33vw;
  }
  .review-images{
    padding-left: 0;
  }
  .review-images .review-sort-wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .review-images .review-sort-wrapper span{
    width: 100%;
    margin-bottom: 10px;
  }
  .review-images .review-sort-wrapper .sort_review_by{
    padding: 4px 16px;
    margin: 0px 8px 10px 0;
  }
  .review-list .review-item{
    flex-wrap: wrap;
  }
  .review-list .review-item .review-left{
    width: 100%;
    margin-right: 0;
    display: flex;
    align-items: center;
  }
  .review-list .review-item .review-left .review-meta{
    margin-left: 20px;
  }
  .review-list .review-item .review-left .review-avatar .avatar{
    margin-bottom: 0;
  }
  .review-list .review-item .review-right {
    width: 100%;
    padding-left: 80px;
  }
  .related.products.product_section{
    padding: 20px 0;
  }
}
