:root {
    --bs-body-color: #444;
}
body{
    font-family: 'Red Hat Text', sans-serif;
}
.ml-1{
    margin-left: 1rem;
}
.ml-2{
    margin-left: 2rem;
}
.ml-3{
    margin-left: 3rem;
}
.ml-4{
    margin-left: 4rem;
}
.ml-5{
    margin-left: 5rem;
}

.mr-1{
    margin-right: 1rem;
}
.mr-2{
    margin-right: 2rem;
}
.mr-3{
    margin-right: 3rem;
}
.mr-4{
    margin-right: 4rem;
}
.mr-5{
    margin-right: 5rem;
}

.mt-1{
    margin-top: 1rem;
}
.mr-2{
    margin-right: 2rem;
}
.mr-3{
    margin-right: 3rem;
}
.mr-4{
    margin-right: 4rem;
}
.mr-5{
    margin-right: 5rem;
}
.font-14{
    font-size:14px;
}
.font-16{
    font-size:16px;
}
.font-18{
    font-size:18px;
}
.font-20{
    font-size:20px;
}
.font-22{
    font-size:22px;
}
.font-24{
    font-size:24px;
}

.w-10-p{
    width:10%;
}
.w-90-p{
    width:90%;
}
.pl-1{
    padding-left:1rem;
}
.w-90-p{
    width:90%;
}
.w-10-p{
    width:10%;
}

/* mobile side menu css starts*/
.side-menu-logo{
    text-align: left;
  margin-bottom: 15px;
  margin-top: 15px;
  margin-left: 10px;
}
.side-menu-logo img{
    width: 50% !important;
}
/* mobile side menu css ends */

.nav-tabs .nav-link.active {
    color: white;
  background-color: #000;
  border-color: #000;
  font-weight: 600;
}
.nav-tabs .nav-link {
    background: #eee;
    color: black;
}
.default-btn, .default-btn:hover, .default-btn:focus, .default-btn:active, .default-btn:active:hover {
    padding: 12px 20px;
    border-radius: 0;
    background: #15a832;
    color: white;
    outline: 0;
    width: 100%;
    border: 0;
    box-shadow: none;
    color: white;
    font-weight: 600;
}
.grey-btn, .grey-btn:hover, .grey-btn:focus, .grey-btn:active, .grey-btn:active:hover {
    padding: 12px 20px;
    border-radius: 0;
    background: #eee;
    color: black;
    outline: 0;
    width: 100%;
    border: 0;
    box-shadow: none;
    margin-bottom:30px;
}

.recipe-item{
    position:relative;
}
.recipe-item .recipe-thumb-image{
    display: block;
    width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.recipe-item-overlay{
    position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: flex;
  align-items: flex-end;
  border-radius: 20px;
}
.recipe-item-overlay-container h4{
    font-size: 24px;
    color: black;
}
.recipe-item-overlay-container a{
    font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}
.recipe-full-description h2{
    font-size:24px;
}

@media screen and (max-width: 600px) {
    .recipes-section {
      padding: 0 10px 40px 10px;
    }
    .recipe-item .recipe-thumb-image {
        height: 250px;
    }
    .recipe-item-overlay-container h4 {
      font-size: 16px;
      line-height: 1.4;
    }
    .recipe-item-overlay-container a {
        font-size: 12px;
    }
    .nav-tabs .nav-link.active {
        font-size: 14px;
    }
    #BasicDetails h4, #Addresses h4, #defaultaddresssection h4{
        font-size: 18px;
    }
    #BasicDetails p, #Addresses p, #defaultaddresssection p{
        font-size: 14px;
    }
    .grey-btn svg{
        width: 15px;
        height: 15px;
    }
    .default-btn, .default-btn:hover, .default-btn:focus, .default-btn:active, .default-btn:active:hover {
      font-size: 14px;
    }
    .grey-btn, .grey-btn:hover, .grey-btn:focus, .grey-btn:active, .grey-btn:active:hover {
      font-size: 14px;
    }
}
.aboutus-section {
  padding: 90px 0 90px 0;
}
.aboutus-text-container h1{
    font-size: 32px;
    margin-bottom: 15px;
}
.aboutus-text-container p{
    font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  color: rgba(0, 0, 0, 0.9);
}

@media screen and (max-width: 768px) {
    .aboutus-section {
      padding: 40px 0 50px 0;
    }
    .aboutus-text-container h1 {
      font-size: 24px;
      text-align: center;
    }
    .aboutus-text-container p {
      font-size: 14px;
      padding: 0 30px;
    }
    .aboutus-text-container p:last-child {
        margin-bottom:20px;
    }
}

@media screen and (min-width: 1440px) {
    .aboutus-text-container {
        padding-right: 70px;
    }
}

/* custom checkbox css style start */
@-webkit-keyframes check {
  0% {
    height: 0;
    width: 0;
  }
  25% {
    height: 0;
    width: 10px;
  }
  50% {
    height: 20px;
    width: 10px;
  }
}
@-moz-keyframes check {
  0% {
    height: 0;
    width: 0;
  }
  25% {
    height: 0;
    width: 10px;
  }
  50% {
    height: 20px;
    width: 10px;
  }
}
@-ms-keyframes check {
  0% {
    height: 0;
    width: 0;
  }
  25% {
    height: 0;
    width: 10px;
  }
  50% {
    height: 20px;
    width: 10px;
  }
}
@keyframes check {
  0% {
    height: 0;
    width: 0;
  }
  25% {
    height: 0;
    width: 10px;
  }
  50% {
    height: 20px;
    width: 10px;
  }
}
.checkbox, .checkbox-alt {
  background-color: #fff;
  display: inline-block;
  height: 30px;
  margin: 0;
  width: 30px;
}
.checkbox label, .checkbox-alt label {
  display: block;
  height: 50px;
  position: relative;
  width: 50px;
}
.checkbox label:after, .checkbox-alt label:after {
  -moz-transform: scaleX(-1) rotate(135deg);
  -ms-transform: scaleX(-1) rotate(135deg);
  -webkit-transform: scaleX(-1) rotate(135deg);
  transform: scaleX(-1) rotate(135deg);
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-right: 4px solid rgba(0, 0, 0, 0.25);
  border-top: 4px solid rgba(0, 0, 0, 0.25);
  content: '';
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 15px;
  width: 10px;
}
.checkbox label:hover:after, .checkbox-alt label:hover:after {
  border-color: rgba(0, 0, 0, 0.5);
}
.checkbox input, .checkbox-alt input {
  display: none;
}
.checkbox input:checked + label:after, .checkbox-alt input:checked + label:after {
  -webkit-animation: check 0.8s;
  -moz-animation: check 0.8s;
  -o-animation: check 0.8s;
  animation: check 0.8s;
  border-color: rgba(0, 0, 0);
}
.checkbox.checkbox-alt label:hover:after, .checkbox-alt.checkbox-alt label:hover:after {
  -webkit-animation: check 0.8s ease infinite;
  -moz-animation: check 0.8s ease infinite;
  -o-animation: check 0.8s ease infinite;
  animation: check 0.8s ease infinite;
}
.checkbox.checkbox-alt input:checked + label:after, .checkbox-alt.checkbox-alt input:checked + label:after {
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}
/* custom checkbox style end */

.user-menu-icon, .menu-icon {
    padding: 20px 0;
    text-align: center;
}
.user-menu-icon i, .menu-icon i{
    color:#333;
    font-size: 20px;
}
.user-menu-container{
    position:relative;
}
.user-menu{
    background: white;
    padding: 7px;
    position: absolute;
    width: 160px;
    left: -70px;
    top: 60px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
}
.user-menu ul{
    padding-left: 0;
  margin: 0;
  list-style: none;
}
.user-menu ul li{
padding: 4px 15px;
border-radius: 10px;
}
.user-menu ul li a{
    color:#333;
    text-decoration:none;
    font-size:16px;
}
.user-menu ul li:hover a{
    color:#000;
}
.user-menu ul li:hover{
    background:whitesmoke;
}
.navbar-text-white .user-menu-icon i, .navbar-text-white .menu-icon i{
    color:black;
}
.navbar-top{
    background: #333;
    padding: 7px 0;
}
.navbar-top h2{
    font-size:18px;
    margin:0;
}
.navbar-bottom h2{
    color:white;
    margin: 7px 0;
}
.navbar-bottom img{
    margin: 15px 0;
}
.navbar-bottom .menu li{
    display: inline-block;
    padding: 2px 25px;
    color:white;
}
.navbar-text-white .menu li{
    color:black;
    font-weight: 500;
}
.navbar-bottom .menu a, .navbar-bottom .menu a:hover, .navbar-bottom .menu a:focus, .navbar-bottom .menu a:active{
    text-decoration:none;
    color: #333;
  font-weight: 500;
}
.navbar-text-white .menu a, .navbar-text-white .menu a:hover, .navbar-text-white .menu a:focus, .navbar-text-white .menu a:active{
    text-decoration:none;
    color:black;
}
.navbar-bottom .menu {
    padding: 25px 0;
    margin: 0;
}
.home-banner-container{
    position:relative;
}
.navbar-container{
    position:relative;/*absolute*/
    width: 100%;
    z-index: 999;
}
.navbar-bottom .menu .dropdown-menu li{
    width:100%;
}

.alert-danger, .alert-success {
  color: #000;
  background-color: rgba(21, 168, 50, 0.1);
  border-color: rgba(21, 168, 50, 0.1);
  border-radius: 15px;
}
.alert-danger .btn-close:hover, .alert-danger .btn-close:focus, .alert-danger .btn-close:active, .alert-success .btn-close:hover, .alert-success .btn-close:focus, .alert-success .btn-close:active {
outline: 0;
  box-shadow: none;
 }
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #000; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
#snackbar p {
    color:black;
    margin:0;
    font-size:14px;
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
} 
@media screen and (max-width: 600px) {
    .navbar-bottom img{
        width: 75px;
    }
}

.home-banner{
    height:auto;/*100vh*/
}
.home-banner img{
    width:100%;
    height:auto;/*100vh*/
    /*object-fit: cover;
    object-position: center;*/
}
.home-banner-text-container{
    position:absolute;
    width:100%;
    height:100vh;
    top: 0;
    padding: 15%;
    display: flex;
  justify-content: center;
  align-items: center;
}

.home-banner-text{
    max-width:100%;
    text-align:center;
}
.home-banner-text h2{
    font-size: 100px;
  text-align: center;
  color: white;
  font-family: 'Paytone One', sans-serif;
  line-height: 1;
}
.home-banner-text p{
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom:50px;
    font-family: 'Red Hat Text', sans-serif;
}
.white-bordered-link, .white-bordered-link:hover, .white-bordered-link:focus, .white-bordered-link:active{
    color: white;
  text-decoration: none;
  border: 1px solid white;
  padding: 10px 15px;
  border-radius: 30px;
}

@media screen and (max-width: 600px) {
    .user-menu ul li a {
      font-size: 14px;
    }
    .home-banner-text h2 {
      font-size: 36px;
      margin-bottom: 15px;
    }
    .white-bordered-link, .white-bordered-link:hover, .white-bordered-link:focus, .white-bordered-link:active {
      padding: 7px 12px;
      font-size: 14px;
    }
    .home-banner-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }
}
.section{
    padding:40px 0;
}
.home-section-2 h2{
    text-align:center;
    margin-bottom:2rem;
}
.home-section-2-full-block{
    display: flex;
      text-align: left;
      background: rgb(220,193,63);
      background: linear-gradient(90deg, #333 0%, rgba(240,240,240,1) 100%);
      padding: 40px 20px;
      border-radius: 16px;
}
.home-section-2-full-block .hs2fb-right img{
    width:100%;
}
.home-section-2-full-block .hs2fb-left{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.home-section-2-full-block .hs2fb-left h2 {
    text-align:left;
    margin-bottom: 10px;
    font-size: 24px;
}
.home-section-2-full-block .hs2fb-left p{
    text-align:left;
    margin-bottom: 20px;
}        
.home-section-2-full-block .hs2fb-left a, .home-section-2-full-block .hs2fb-left a:hover, .home-section-2-full-block .hs2fb-left a:focus, .home-section-2-full-block .hs2fb-left a:active{
    color: black;
  text-decoration: none;
  border: 1px solid black;
  padding: 10px 15px;
  border-radius: 30px;
}
.home-section-2-full-block .hs2fb-left .hs2fb-left-block{
    padding-left: 50px;
     width: 75%;
}
@media screen and (max-width: 600px) {
    .home-section-2{
        padding-bottom:0;
    }
    .home-section-2 h2 {
      font-size: 24px;
    }
    .home-section-2-full-block .hs2fb-left .hs2fb-left-block {
      padding-left: 0;
      width: 100%;
    }
    .home-section-2-full-block .hs2fb-left p {
      font-size: 12px;
    }
    .home-section-2-full-block .hs2fb-left h2 {
      font-size: 18px;
      line-height: 1.3;
    }
    .home-section-2-full-block .hs2fb-left a, .home-section-2-full-block .hs2fb-left a:hover, .home-section-2-full-block .hs2fb-left a:focus, .home-section-2-full-block .hs2fb-left a:active {
      padding: 7px 12px;
      font-size: 12px;
    }
}
/*.carousel-item .slider-bg{
    height: 520px;
  object-fit: cover;
  object-position: left;
}*/
.carousel-caption {
    top: 25%;
    padding:0;
}
.caption-text{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.caption-text-container{
  text-align:left;
}
.caption-text-container h3{
  font-size: 22px;
  margin-bottom: 10px;
  font-family: 'Dancing Script', cursive;
}
.caption-text-container h2{
  font-size: 28px;
    margin-bottom: 25px;
}
.caption-text-container p{
  font-size: 14px;
 margin-bottom: 40px;
}
.slider-link, .slider-link:hover, .slider-link:focus, .slider-link:active{
  color: black;
  text-decoration: none;
  border: 1px solid white;
  padding: 10px 15px;
  border-radius: 30px;
  background: white;
}
.carousel-indicators button{
  border: 3px solid white !important;
  display: flex;
  height: 30px !important;
  width: 30px !important;
  padding: 15px !important;
  background: transparent !important;
  border-radius: 50px !important;
}
.carousel-indicators button img{
    width:100%;
}
.carousel-indicators {
  top: 50px;
  margin-right: 0%;
  bottom: auto;
  left: auto;
  right: 40%;
}
.carousel-caption img{
    width:85%;
    margin-bottom:15px;
}
/*@media screen and (min-width: 768px) {
.carousel-item .slider-bg{
    height: 400px;
}
}
@media screen and (max-width: 1024px) {
    .carousel-caption img{
        width:300px;
        margin-bottom:15px;
    }
}*/
@media screen and (max-width: 768px) {
    /*.carousel-caption img{
        width:180px;
        margin-bottom:15px;
    }*/
    .caption-text-container {
      text-align: center;
    }
}
@media screen and (max-width: 600px) {
    .home-section-3{
        padding-bottom:0;
    }
    .carousel-indicators button {
        height: 30px !important;
        width: 30px !important;
    } 
    /*.carousel-caption img{
        width:180px;
        margin-bottom:15px;
    }*/
    .caption-text-container {
      text-align: center;
    }
    .slider-link, .slider-link:hover, .slider-link:focus, .slider-link:active {
      padding: 7px 12px;
      font-size: 14px;
    }
    .caption-text-container p {
      margin-bottom: 25px;
    }
    .caption-text-container h2 {
        font-size: 24px;
    }
}      
        
.home-section-4 h2{
    text-align:center;
    margin-bottom:2rem;
}
.home-section-4-full-block{
    display: flex;
      text-align: left;
      background: rgb(220,193,63);
      background: linear-gradient(90deg, #333 0%, rgba(240,240,240,1) 100%);
      padding: 30px;
      border-radius: 16px;
}
.home-section-4-full-block .hs4fb-right img{
    width:100%;
}
.home-section-4-full-block .hs4fb-left{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.home-section-4-full-block .hs4fb-left h2 {
    text-align:left;
    margin-bottom: 10px;
    font-size: 24px;
}
.home-section-4-full-block .hs4fb-left h3 {
    font-size: 14px;
    background: rgba(0, 0, 0, 0.25);
      width: 100px;
      padding: 5px;
      text-align: center;
      border-radius: 5px;
      color: white;
}
.home-section-4-full-block .hs4fb-left p{
    text-align:left;
    margin-bottom: 20px;
    font-size: 14px;
}        
.home-section-4-full-block .hs4fb-left a, .home-section-4-full-block .hs4fb-left a:hover, .home-section-4-full-block .hs4fb-left a:focus, .home-section-4-full-block .hs4fb-left a:active{
    color: black;
  text-decoration: none;
  border: 1px solid black;
  padding: 10px 15px;
  border-radius: 30px;
}
.home-section-4-full-block .hs4fb-left .hs4fb-left-block{
    padding-left: 0;
     width: 75%;
} 
@media screen and (max-width: 600px) {
    .home-section-4 h2 {
        font-size: 24px;
    }
    .home-section-4-full-block .hs4fb-left h2{
        font-size: 18px;
        line-height: 1.3;
    }
    .home-section-4-full-block .hs4fb-left p {
        font-size: 12px;
    }
    .home-section-4{
        padding-bottom:0;
    }
    .home-section-4-full-block {
      padding: 20px;
      margin-bottom: 15px;
    }
    .home-section-4-full-block .hs4fb-left .hs4fb-left-block {
      width: 100%;
    }
    .home-section-4-full-block .hs4fb-left a, .home-section-4-full-block .hs4fb-left a:hover, .home-section-4-full-block .hs4fb-left a:focus, .home-section-4-full-block .hs4fb-left a:active {
      padding: 7px 12px;
      font-size: 12px;
    }
}
.home-section-5 {
  margin: 0;
}
.home-section-5-bg {
  background: rgba(137, 176, 80, 0.25);
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
}
.home-section-5-content{
    position: absolute;
    width: 50%;
  padding: 70px 50px;
  background: white;
  top: -45px;
    -webkit-box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.1);
}
.home-section-5-content a{
    text-decoration:none;
}
.home-section-5-content h2{
    font-size: 24px;
}
.home-section-5-content p{
    font-size: 14px;
    margin-bottom:7px;
}
.home-section-5-content .seeonmaps{
color: rgba(128, 128, 128, 0.5);
}
.home-section-5-bottom-img img{
    width: 100%;
  height: auto;/*500px*/
  /*object-fit: cover;
  object-position: center;*/
}

@media screen and (max-width: 600px) {
    .home-section-5-content {
      width: 80%;
  padding: 70px 30px;
    }
    .home-section-5-content h2 {
      font-size: 18px;
    }
}

.d-content-center{
    display:flex;
    justify-content:center;
    align-items:center;
}
.home-section-6{
    padding: 50px 0;
    background: whitesmoke;
}
.home-section-6-content{
    /*display: flex;
  justify-content: center;*/
}
.home-section-6-content-row {
  display: flex;
}
.home-section-6-content-row-left{
    width:7%;
}
.home-section-6-content-row-right{
    width:93%;
    padding-left: 15px;
}

.home-section-6-content h2{
    font-size: 20px;
}
.home-section-6-content h2 img{
    width: 25px;
    margin-right: 10px;
}
.home-section-6-content p{
    font-size: 14px;
    margin-bottom: 0;
}
.home-section-6-content p a{
    color: black;
}

.footer-section {
    padding: 70px 0;
    background: #000;
}
.footer-section h2{
    font-size: 20px;
  margin-bottom: 20px;
  color: white;
}
.footer-section h3{
    font-size: 14px;
    margin-bottom: 15px;
    color:rgba(0, 0, 0, 0.85);
}
.footer-section h3 a{
    color:rgba(255, 255, 255, 0.5);
    text-decoration:none;
}
.footer-section ul {
    padding-left: 0;
    list-style: none;
    font-size: 12px;
}
.footer-section ul li{
  padding: 4px 0;
  color:rgba(0, 0, 0, 0.75);
}
.footer-sm-links a{
    font-size: 18px;
    margin-right: 15px;
    color: white;
}
.footer-sm-links a i{
    
}

.section-breadcrumb{
    padding:40px 0 40px 0;
}
.section-breadcrumb-content{
    padding:0 15px;
    text-align: center;
}
.section-breadcrumb-content h2{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}
.section-breadcrumb-content h3{
    font-size: 22px;
    margin-bottom:15px;
    font-family: 'Dancing Script', cursive;
}
.section-breadcrumb-content p{
    font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom:7px;
}
.section-breadcrumb-content a, .section-breadcrumb-content a:hover, .section-breadcrumb-content a:focus, .section-breadcrumb-content a:active{
text-decoration: none;
  color: #333;
  font-size: 20px;
  font-weight: 700;
  }

@media screen and (max-width: 600px) {
    .home-section-6-content h2 {
      font-size: 18px;
    }
    .home-section-6-content h2 img {
        width: 25px;
    }
    .home-section-6 .col-md-4 .home-section-6-content p {
        margin-bottom:15px;
    }
    .home-section-6-content p {
      font-size: 12px;
    }
    .home-section-6-content-row-right p{
        width: 75%;
    }
    .footer-section h2 {
        font-size: 18px;
    }
    .section-breadcrumb-content h2 {
      font-size: 24px;
      margin-bottom: 15px;
    }
    .section-breadcrumb-content a, .section-breadcrumb-content a:hover, .section-breadcrumb-content a:focus, .section-breadcrumb-content a:active {
        font-size: 14px;
    }
    #newaddresssection h4, #updateaddresssection h4{
        font-size: 18px;
    }
    #newaddresssection label, #updateaddresssection label{
        font-size: 14px;
    }
}
@media screen and (max-width: 768px) {
    .home-section-6-content{
      margin-bottom:15px;
    }
    .section-breadcrumb img{
        display:none;
    }
}
.products-section, .signin-section, .signup-section, .resetpwd-section{
    padding:0 0 60px 0;
}
.view-more-btn, .view-more-btn:hover, .view-more-btn:focus, .view-more-btn:active{
padding: 10px 25px;
  background: whitesmoke;
  color: black;
  border-radius: 20px;
  text-decoration: none;
  }
.home-products-section{
    padding:60px 0;
}
.product-details-section, .cart-section{
    padding:40px 0 40px 0;
}
.p-lprice{
    text-decoration: line-through;
    color: rgb(0 0 0 / 50%);
    font-size: 24px;
}
.p-price{
    color: rgb(0 0 0 / 100%);
    font-size: 24px;
}
.product-details-right-container{
    padding:0 15%;
    width: 90%;
}
.product-details-cat-icons{
    text-align:right;
}
  .product-details-cat-icons img {
    margin-bottom: 15px;
    width: 25px;
}
.pd-name-cat-icons-row{
    display:flex;
    justify-content: space-between;
}
.pd-name-cat-icons-row-left{
    width:100%;
}
.pd-name-cat-icons-row-left h2{
    font-size:24px;
}
.pd-name-cat-icons-row-right{
    width:10%;
}
.pd-call-text, .pd-share-text{
    font-size:14px;
    margin: 0;
}
.wishlist-btn {
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    text-align: center;
}
.wishlist-btn img {
    width: 30px;
}
.product-details-right-container button, .product-details-right-container button:hover, .product-details-right-container button:focus, .product-details-right-container button:active {
    background: #1ba338;
    width: 100%;
    padding: 15px;
    color: white;
    border: 0;
    outline: 0;
    font-size:16px;
}
.product-variant, .product-variant:hover, .product-variant:focus, .product-variant:active{
    border: 1px solid black;
    padding: 12px 15px;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
}
.product-share-btn, .pd-call-text{
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .pd-name-cat-icons-row h2{
        font-size:24px;
    }
    .p-lprice, .p-price{
        font-size: 18px;
    }
    .pd-call-text, .pd-share-text {
      font-size: 12px;
    }
    .product-share-btn img, .pd-call-icon img{
        width: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .pd-name-cat-icons-row h2{
        font-size:24px;
    }
    .p-lprice, .p-price{
        font-size: 18px;
    }
    .pd-call-text, .pd-share-text {
      font-size: 12px;
    }
    .product-share-btn img, .pd-call-icon img{
        width: 20px;
    }
}

.right {
  float: right;
}

.left {
  float: left;
}

.rating .stars {
  margin-right: 15px;
}

.rating .stars .star {
  float: left;
  padding: 5px 2px;
  cursor: pointer;
  color: transparent;
}

.rating .stars .star:before {
  font-family: "Font Awesome 6 Free";
  content: '\f005';
  color: rgba(137, 176, 80, 0.25);
  font-size: 2em;
}

.rating .stars .star:hover:before,
.rating .stars .star.to_rate:before,
.rating .stars .star.rated:before {
  color: #333;
}

.rating .stars .star.no_to_rate:before {
  color: rgba(255, 215, 0, 0.15);
}

.average-rating-text{
    margin-bottom: 0;
}
.w-10 {
    width: 10%;
}
.w-90 {
    width: 90%;
}

/* blogs css starts*/
.blogs-section {
  padding: 0 0 60px 0;
}
.blog-full-details .h2-title{
    font-size: 24px;
  margin-bottom: 25px;
}
.blog-full-details .blog-thumb-image{
  margin-bottom: 25px;
}
.blog-item {
  position: relative;
  margin-bottom: 0;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.blog-item .blog-item-in {
  background: #fff;
  padding: 0 30px 15px 0;
  position: relative;
}
/*.blog-item .blog-item-in:hover:before {
  width: 100%;
}
.blog-item .blog-item-in::before {
  content: "";
  position: absolute;
  bottom: 0px;
  height: 2px;
  width: 0%;
  background: #333333;
  right: 0px;
  transition: width 0.4s;
}*/

.blog-item h4 {
  font-size: 16px;
  margin-top: 25px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.6;
}
.blog-item p {
  font-size: 12px;
  margin-bottom: 0;
}
.blog-item a {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #666666;
  margin-top: 10px;
}
.blog-item a i {
  opacity: 0;
  padding-left: 0px;
  transition: 0.4s;
  font-size: 24px;
  display: inline-block;
  top: 5px;
  position: relative;
}
.blog-item a:hover {
  text-decoration: none;
}
.blog-item a:hover i {
  padding-left: 10px;
  opacity: 1;
  font-weight: 300;
}

.blog-item .icon {
  position: absolute;
  top: 27px;
  left: -16px;
  cursor: pointer;
}
.blog-item .icon a {
  font-family: "Merriweather", serif;
  font-size: 14px;
  font-weight: 400;
  color: #999;
  text-transform: none;
}
.blog-item .icon svg {
  width: 32px;
  height: 32px;
  float: left;
}
.blog-item .icon .icon-topic {
  opacity: 0;
  padding-left: 0px;
  transition: 0.4s;
  display: inline-block;
  top: 0px;
  position: relative;
}
.blog-item .icon:hover .icon-topic {
  opacity: 1;
  padding-left: 10px;
}

@media only screen and (max-width: 768px) {
  .blog-item .icon {
    position: relative;
    top: 0;
    left: 0;
  }
  .blog-item{
        margin-bottom: 0;
    }
    .blog-item .blog-item-in {
        padding: 0 15px 30px 15px;
   }
   .blog-full-details{
        padding: 0 15px 15px 15px;
    }
    .related-blogs-title{
        padding: 0 15px;
    }
    .blog-full-details .h2-title {
      font-size: 22px;
    }
    .blog-desc-container p{
        font-size: 14px;
        text-align: justify;
    }
}
@media screen and (max-width: 600px) {
   .blog-item .blog-item-in {
        padding: 0 15px 30px 15px;
   }
   .blog-full-details{
        padding: 0 15px 15px 15px;
    }
    .related-blogs-title{
        padding: 0 15px;
    }
    .blog-full-details .h2-title {
      font-size: 22px;
    }
    .blog-desc-container p{
        font-size: 14px;
        text-align: justify;
    }
}
/* blog css ends */
@media screen and (max-width: 1200px) {
    .product-details-right-container {
        padding: 20px 0;
        width: 100%;
    }
}
@media screen and (max-width: 1024px) {
    .product-details-right-container {
        padding: 20px 0;
        width: 100%;
    }
}
@media screen and (max-width: 992px) {
    .product-details-right-container {
        padding: 20px 0;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .product-details-right-container {
        padding: 20px 0;
        width: 100%;
    }
}
@media screen and (max-width: 575px) {
    .product-details-right-container {
        padding: 20px 0;
        width: 100%;
    }
}
  .login-card {
  padding: 50px;
  background: whitesmoke;
  border-radius: 15px;
}
  .login-card p{
      font-size:14px;
  }
  .login-card p a{
      color:black;
      font-weight: 500;
    text-decoration: none;
  }

.login-card .form-submit-btn {
  padding: 10px;
  border: 0;
  text-decoration: none;
  color: white;
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  background: #000;
}
.form-input-row {
  margin-bottom: 20px;
}
.form-input, .form-input:hover, .form-input:focus, .form-input:active{
    font-size: 14px;
    width: 100%;
  border: 0;
  padding: 0 0 7px 0;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  outline:0;
  border-radius: 0;
  box-shadow: none;
}

  .product-card {
  padding: 15px;
  background: white;
  border-radius: 0;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.product-card-img-container{
    text-align:center;
}
  .product-card img {
margin-bottom: 0;
  width: 100%;
  height: auto;
}
.product-cat-icons{
    text-align:right;
margin-bottom: 10px;
}
  .product-cat-icons img {
    margin-bottom: 0;
    width: 25px;
    height: auto;
}
.product-cat-icons img:nth-child(1) {
    margin-right: 2px;
  }
  .product-card h2 {
margin: 15px 0 15px 0;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
  .product-card h3 {
font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  }
.product-card-row-50{
    display:flex;
}
.product-card-row-50-left{
    width:50%;
}
.product-card-row-50-right{
    width:50%;
}
.product-card .product-desc{
    color: rgba(0, 0, 0, 0.75);
}
.product-card .product-more-info {
    padding: 10px;
  border: 1px solid #1ba338;
  text-decoration: none;
  color: white;
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  background: #1ba338;
}
.accordion-item {
  background-color: #fff;
  border: 1px solid #eee;
}
.accordion-button:not(.collapsed) {
  color: black;
  background-color: #eee;
  box-shadow: inset 0 -1px 0 #eee;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #eee;
  outline: 0;
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after, .accordion-button::after{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faqs-section {
  padding: 0 0 60px 0;
}
.faq-text-content p{
    text-align:justify;
}
.contactus-section {
  padding: 30px 0 100px 0;
}
.contactus-phone, .contactus-email {
  margin-bottom: 40px;
}
.contactus-phone h2, .contactus-email h2, .contactus-address h2{
    font-size: 24px;
}
.contactus-phone h2 img{
    width:18px;
    margin-right: 10px;
}
.contactus-email h2 img{
    width:18px;
    margin-right: 10px;
}
.contactus-address h2 img{
    width:22px;
    margin-right: 0px;
}
.contactus-phone p, .contactus-email p, .contactus-address p{
    font-size: 14px;
}
.contactus-input, .contactus-input:hover, .contactus-input:focus, .contactus-input:active{
    width: 100%;
    border: 0;
    border-bottom: 1px solid black;
    margin-bottom: 20px;
    padding: 10px 0;
    outline:0;
    box-shadow: none;
    font-size: 14px;
}
.contactus-submit-btn, .contactus-submit-btn:hover, .contactus-submit-btn:focus, .contactus-submit-btn:active{
    width: 100%;
  padding: 7px;
  outline: 0;
  border: 0;
  background: #1ba338;
  color: white;
}
.termsofuse-section, .shippingpolicy-section {
  padding: 0 0 80px 0;
}
.termsofuse-section h2, .shippingpolicy-section h2{
    font-size: 18px;
  margin-top: 25px;
}
.termsofuse-section p, .shippingpolicy-section p{
    font-size: 16px;
    text-align: justify;
  line-height: 1.6;
  margin-bottom: 7px;
}
.termsofuse-section ul, .shippingpolicy-section ul{
    font-size: 16px;
    text-align: justify;
  line-height: 1.6;
    padding-left: 15px;
  }

.privacypolicy-section {
  padding: 0 0 80px 0;
}
.privacypolicy-section h2{
    font-size: 18px;
  margin-top: 25px;
}
.privacypolicy-section p{
    font-size: 16px;
    text-align: justify;
  line-height: 1.6;
  margin-bottom: 7px;
}
.privacypolicy-section ul{
    font-size: 16px;
    text-align: justify;
  line-height: 1.6;
  padding-left:15px;
  }
.home-about-us-section {
  padding: 40px 0 80px 0;
}
.home-about-us-content h2 {
    text-align:center;
    margin-bottom:15px;
}
.home-about-us-content p {
    font-size:14px;
    text-align: center;
  line-height: 1.6;
  padding: 0 15px;
    color: black;
}
.home-about-us-content p:last-child {
    margin-bottom:0;
}
@media screen and (max-width: 600px) {
    .home-about-us-content p{
        font-size: 12px;
        text-align: left;
    }
    .privacypolicy-section, .termsofuse-section, .shippingpolicy-section {
        padding: 0 15px 80px 15px;
    }
    .home-about-us-section {
      padding: 40px 0 40px 0;
    }
    .termsofuse-section h2, .shippingpolicy-section h2{
        font-size: 16px;
    }
    .termsofuse-section p, .shippingpolicy-section p{
        font-size: 14px;
    }
    .termsofuse-section ul, .shippingpolicy-section ul{
        font-size: 14px;
    }
    .privacypolicy-section h2{
        font-size: 16px;
    }
    .privacypolicy-section p{
        font-size: 14px;
    }
    .privacypolicy-section ul{
        font-size: 14px;
    }
    .contactus-phone, .contactus-email {
      margin-bottom: 25px;
    }
    .contactus-phone h2, .contactus-email h2, .contactus-address h2 {
      font-size: 18px;
    }
    .contactus-phone p, .contactus-email p, .contactus-address p {
      font-size: 12px;
    }
    .form-input, .form-input:hover, .form-input:focus, .form-input:active {
        font-size:14px;
        color: var(--bs-body-color);
    }
    .products-section {
        padding: 0 0 30px 0;
    }
    .home-products-section{
        padding:30px 0;
    }
    .faqs-section, .contactus-section {
      padding: 0 15px 40px 15px;
    }
    .section-breadcrumb {
      padding: 20px 0 20px 0;
    }
    .product-card {
        margin-bottom:15px;
    }
    .product-card img {
      width: 100%;
    }
    .product-cat-icons img {
      margin-bottom: 0;
      width: 20px;
      height: auto;
    }
    .product-card h2 {
        font-size: 14px;
    }
    .product-card .product-more-info{
        font-size: 12px;
    }
    .section-breadcrumb-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .section-breadcrumb-content p {
        font-size: 14px;
    }
}

/* cart and wishlist page css start */
.wishlist-section {
  padding: 40px 0 80px 0;
}
.cart-products-container, .wishlist-products-container {
  border: 1px solid #eee;
  margin-bottom: 4px !important;
}
.wishlist-product-row, .cart-product-row, .cart-promocode-container, .checkout-address-container, .footer-social-media-icons {
    display: flex;
    background: white;
    padding: 15px;
}
.cart-product-row-left, .cart-promocode-container .cart-promocode-container-left, .cart-promocodes-container-head-left, .checkout-address-container .checkout-address-container-left {
    width: 10%;
}
.wishlist-product-row-left {
    width: 7%;
}
.cart-product-row-left.prl-width, .wishlist-product-row-left.prl-width{
    width: 5%;
}
.cart-product-row-left img, .wishlist-product-row-left img, .nav-tabs .nav-link:hover .nav-link-text:after, .search-input-container {
    width: 100%;
}
.cart-product-row-left img, .wishlist-product-row-left img{
    background: #eee;
}
.cart-product-row-right {
    width: 90%;
    padding-left: 30px;
    justify-content: space-between;
}
.wishlist-product-row-right {
    width: 93%;
    padding-left: 30px;
    justify-content: space-between;
}
.cart-product-row-right.prr-width, .wishlist-product-row-right.prr-width {
    width: 95%;
}
@media screen and (max-width: 575px) {
    .wishlist-product-row-left {
        width: 15%;
    }
    .wishlist-product-row-right {
        width: 85%;
    }
    .cart-product-row-left.prl-width, .wishlist-product-row-left.prl-width{
        width: 20%;
    }
    .cart-product-row-right.prr-width, .wishlist-product-row-right.prr-width {
        width: 80%;
    }
}
.cart-product-row-right-left {
    width: 80%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.wishlist-product-row-right-left {
    width: 85%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.orders-product-row-right-left {
    width: 90%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.orders-product-row-right-right {
    width: 10%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.cart-product-row-right .cart-product-row-right-left p:nth-child(3), .wishlist-product-row-right .wishlist-product-row-right-left p:nth-child(3) {
    font-size: 12px;
}
.cart-product-row-right-right{
    display: flex;
    align-items: center;
    padding-left: 20px;
    width: 20%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wishlist-product-row-right-right {
    display: flex;
    align-items: center;
    padding-left: 20px;
    width: 15%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cart-product-row-right-right button, .wishlist-product-row-right-right button {
    padding: 4px 22px;
    background: #eee;
    border: 1px solid #eee;
    border-radius: 5px;
}
.cart-product-row-right-right select, .wishlist-product-row-right-right select {
    padding: 4px 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
}
.select2-container {
  width: 100% !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #eee;
  color: white;
}

.cart-payment-details-section {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 0;
    background: white;
}
.cart-payment-details-section p.title {
    font-size: 14px;
    font-weight: 700;
    color: var(--bs-body-color);
    padding: 0 0 10px 0;
    margin-bottom: 0;
}
.payment-details-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
}
.content-left-bg-img-banner-content p, .font-14, .payment-details-row-left, .review-container .review-text p, form#reviewform .form-group label {
    font-size: 14px;
}
.payment-details-row-right {
    font-size: 14px;
    font-weight: 700;
    color: #444;
}
.payment-total-savings {
    clear: both;
    margin: 10px 0;
    font-size: 12px;
    color: #222;
    line-height: 16px;
    background: rgba(43, 58, 149, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    font-weight: 700;
}
.address-action-right p:first-child, .cart-promocode-container p:first-child, .cart-promocodes-container-body .cart-promocode:last-child, .checkout-addresses-container-body .checkout-address:last-child, .payment-total-savings p, .settings-action .settings-menu ul {
    margin-bottom: 0;
}
.address-action {
    display: flex;
    background: #fff;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 0;
}
.address-action-right {
    width: 100%;
    padding-left: 15px;
}
.address-action-right-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.address-action-right p:nth-child(2) {
    font-size: 12px;
    margin-bottom: 0;
}
.address-action-right-container-right button, .grand-total-row .grand-total-row-right button {
    padding: 10px 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    cursor: pointer;
    font-weight: 700;
    background: #333;
}
.address-action-right-container-right button {
    border: 0;
    color: white;
    border-radius: 4px;
    box-shadow: none!important;
    -webkit-box-shadow: none!important;
    -moz-box-shadow: none!important;
    font-size: 10px;
}
.checkout-addresses-container-body {
    padding-top: 15px;
}
.cart-promocode {
    width: 100%;
    border: 1px dashed #ccc;
    padding: 10px;
    margin: 0 0 15px;
    border-radius: 6px;
    background: #f5f5f5;
}
.checkout-address {
    width: 100%;
    margin: 0 0 15px;
    border-radius: 6px;
    background: #f5f5f5;
    border: 1px solid #eee;
}
.address-action-right-container-left {
  width: 65%;
  padding-right: 10px;
}
.address-action-right-container-right {
  width: 35%;
}
@media screen and (max-width: 1024px) {
    .cart-product-row-right-left p:nth-child(1), .wishlist-product-row-right-left p:nth-child(1), .orders-product-row-right-left p:nth-child(1){
        font-size: 13px;
        margin-bottom: 7px !important;
    }
    .cart-product-row-right-left p:nth-child(2), .wishlist-product-row-right-left p:nth-child(2), .orders-product-row-right-left p:nth-child(2){
        font-size: 12px;
    }
    .grand-total-row .grand-total-row-right button {
        font-size: 12px;
    }
}


@media screen and (max-width: 992px) {
    .cart-product-row-right-left p:nth-child(1), .wishlist-product-row-right-left p:nth-child(1), .orders-product-row-right-left p:nth-child(1){
        font-size: 13px;
        margin-bottom: 7px !important;
    }
    .cart-product-row-right-left p:nth-child(2), .wishlist-product-row-right-left p:nth-child(2), .orders-product-row-right-left p:nth-child(2){
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    .sm-w-100{
        width:100%;
    }
    .cart-product-row-right-left p:nth-child(1), .wishlist-product-row-right-left p:nth-child(1), .orders-product-row-right-left p:nth-child(1){
        font-size: 13px;
        margin-bottom: 7px !important;
    }
    .cart-product-row-right-left p:nth-child(2), .wishlist-product-row-right-left p:nth-child(2), .orders-product-row-right-left p:nth-child(2){
        font-size: 12px;
    }
     .cart-product-row-right-left, .cart-product-row-right-right, .wishlist-product-row-right-left, .wishlist-product-row-right-right {
        width: 50%;
      }
    .cart-product-row-right-right, .wishlist-product-row-right-right {
    display: inline-block;
  }
   .cart-product-row-right-right button, .wishlist-product-row-right-right button {
    padding: 4px 12px;
    width: 100%;
    font-size: 12px;
  }
   .cart-product-row-right-right button:nth-child(1), .removefromwishlist-btn {
    margin-bottom: 10px;
  }
  .cart-product-row-right-right select, .wishlist-product-row-right-right select {
    font-size: 12px;
    width: 100%;
  }
   .cart-payment-details-section {
    margin-top: 30px;
  }
}
@media screen and (max-width: 575px) {
    .orders-product-row-right-left {
        width: 80%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-right: 25px;
    }
    .cart-product-row-right-left p:nth-child(1), .wishlist-product-row-right-left p:nth-child(1), .orders-product-row-right-left p:nth-child(1){
        font-size: 13px;
        margin-bottom: 7px !important;
    }
    .cart-product-row-right-left p:nth-child(2), .wishlist-product-row-right-left p:nth-child(2), .orders-product-row-right-left p:nth-child(2){
        font-size: 12px;
    }
    .orders-product-row-right-right {
        width: 20%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
}

.cb-container, .radio-container {
    display: block;
    position: relative;
    padding-left: 0;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}
.cb-container, .more-btn, .more-menu-btn, .radio-container {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}
.cb-container input:checked~.cb-checkmark, .radio-container input:checked~.radio-checkmark {
    background-color: #333;
}
.cb-container input:checked~.cb-checkmark:after, .more-menu-item, .radio-container input:checked~.radio-checkmark:after {
    display: block;
}
.radio-container .radio-checkmark:after {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
}
.cb-checkmark:after, .radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.cb-container .cb-checkmark:after {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
}
.cart-promocode-container .cart-promocode-container-right, .checkout-address-container .checkout-address-container-right {
    width: 90%;
}
.checkout-address-container .checkout-address-container-right label {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}
.checkout-address-container .checkout-address-container-right label p {
    margin-bottom: 0;
    font-size: 14px;
}
.checkout-address-container .checkout-address-container-right .checkout-address-details p {
    margin-bottom: 7px;
    line-height: 1.6;
    font-size: 12px;
}

.cart-promocodes-container-head, .grand-total-row, .orders-row, .pd-review-name-star {
    display: flex;
    justify-content: space-between;
}
.fw-bold, .grand-total-row .grand-total-row-left .grand-total-amount, b, strong {
    font-weight: 700;
}
.grand-total-row .grand-total-row-right button {
    border: 0;
    color: white;
    border-radius: 4px;
    box-shadow: none!important;
    -webkit-box-shadow: none!important;
    -moz-box-shadow: none!important;
    font-size: 12px;
}
.cart-product-row-right-right, .wishlist-product-row-right-right {
    display: inline-block;
} 
.cart-product-row-right-right button, .wishlist-product-row-right-right button {
    padding: 4px 12px;
    width: 100%;
    font-size: 14px;
}
.cart-product-row-right-right button:nth-child(1), .removefromwishlist-btn {
    margin-bottom: 10px;
    font-size: 12px;
}
.cart-product-row-right-right select, .wishlist-product-row-right-right select {
    font-size: 12px;
    width: 100%;
}
.order-total-amount{
    text-align: right;
}
.order-row{
    margin-bottom:30px;
    padding: 10px;
    background: #eee;
}
@media screen and (max-width: 1440px) {
    .cart-product-row-right-right button, .wishlist-product-row-right-right button {
      font-size: 12px;
    }
}
@media screen and (max-width: 1200px) {
    .cart-product-row-right-right button, .wishlist-product-row-right-right button {
      font-size: 12px;
    }
}
@media screen and (max-width: 1024px) {
   .cart-payment-details-section p.title, .payment-details-row-left {
        font-size: 12px;
    }
     .cart-shipping-addresses h4, .billing-shipping-addresses h4 {
    font-size: 14px;
  }
  .checkout-address-container .checkout-address-container-right label p {
    font-size: 14px;
  }
    .cart-product-row-right-left, .cart-product-row-right-right {
        width: 50%;
    }
    .wishlist-product-row-right-left {
        width: 80%;
    }
    .wishlist-product-row-right-right {
        width: 20%;
    }
    .cart-product-row-right-right, .wishlist-product-row-right-right{
        display: inline-block;
    }
    .cart-product-row-right-right button, .wishlist-product-row-right-right button {
        padding: 4px 12px;
        width: 100%;
        font-size: 12px;
    }
    .cart-product-row-right-right select, .wishlist-product-row-right-right select {
      font-size: 12px;
        width: 100%;
    }
    .order-total-amount{
        font-size: 16px;
    }
    .cart-payment-details-section p.title, .payment-details-row-left {
        font-size: 12px;
    }
    .address-action-right p:first-child{
        font-size: 14px;
    }
    .cart-shipping-addresses h4, .billing-shipping-addresses h4{
        font-size: 14px;
    }
    .checkout-address-container .checkout-address-container-right label p {
      font-size: 14px;
    }
    .cart-product-row-right-right button, .wishlist-product-row-right-right button {
      font-size: 12px;
    }
    .cart-product-row-right-right button:nth-child(1), .removefromwishlist-btn{
        margin-bottom: 10px;
    }
    .cart-products-container, .wishlist-products-container {
      margin-bottom: 10px !important;
    }
}
@media screen and (max-width: 992px) {
    .cart-payment-details-section p.title, .payment-details-row-left {
        font-size: 12px;
    }
     .cart-shipping-addresses h4, .billing-shipping-addresses h4 {
    font-size: 14px;
  }
  .checkout-address-container .checkout-address-container-right label p {
    font-size: 14px;
  }
    .cart-product-row-right-left {
        width: 80%;
    }
    .cart-product-row-right-right {
        width: 20%;
    }
    .wishlist-product-row-right-left {
        width: 75%;
    }
    .wishlist-product-row-right-right {
        width: 25%;
    }
    .cart-product-row-right-right, .wishlist-product-row-right-right{
        display: inline-block;
    }
    .cart-product-row-right-right button, .wishlist-product-row-right-right button {
        padding: 4px 12px;
        width: 100%;
        font-size: 12px;
    }
    .cart-product-row-right-right select, .wishlist-product-row-right-right select {
      font-size: 12px;
        width: 100%;
    }
    .order-total-amount{
        font-size: 16px;
    }
    .cart-payment-details-section p.title, .payment-details-row-left {
        font-size: 12px;
    }
    .address-action-right p:first-child{
        font-size: 14px;
    }
    .cart-shipping-addresses h4, .billing-shipping-addresses h4{
        font-size: 14px;
    }
    .checkout-address-container .checkout-address-container-right label p {
      font-size: 14px;
    }
    .cart-product-row-right-right button, .wishlist-product-row-right-right button {
      font-size: 12px;
    }
    .cart-product-row-right-right button:nth-child(1), .removefromwishlist-btn{
        margin-bottom: 10px;
    }
    .cart-products-container, .wishlist-products-container {
      margin-bottom: 10px !important;
    }
}
@media screen and (max-width: 768px) {
    .cart-payment-details-section p.title, .payment-details-row-left {
        font-size: 12px;
    }
     .cart-shipping-addresses h4, .billing-shipping-addresses h4 {
    font-size: 14px;
  }
  .checkout-address-container .checkout-address-container-right label p {
    font-size: 14px;
  }
    .cart-product-row-right-left {
        width: 70%;
    }
    .cart-product-row-right-right {
        width: 30%;
    }
    .wishlist-product-row-right-left {
        width: 60%;
    }
    .wishlist-product-row-right-right {
        width: 40%;
    }
    .cart-product-row-right-right, .wishlist-product-row-right-right{
        display: inline-block;
    }
    .cart-product-row-right-right button, .wishlist-product-row-right-right button {
        padding: 4px 12px;
        width: 100%;
        font-size: 12px;
    }
    .cart-product-row-right-right select, .wishlist-product-row-right-right select {
      font-size: 12px;
        width: 100%;
    }
    .order-total-amount{
        font-size: 16px;
    }
    .cart-payment-details-section p.title, .payment-details-row-left {
        font-size: 12px;
    }
    .address-action-right p:first-child{
        font-size: 14px;
    }
    .cart-shipping-addresses h4, .billing-shipping-addresses h4{
        font-size: 14px;
    }
    .checkout-address-container .checkout-address-container-right label p {
      font-size: 14px;
    }
    .cart-product-row-right-right button, .wishlist-product-row-right-right button {
      font-size: 12px;
    }
    .cart-product-row-right-right button:nth-child(1), .removefromwishlist-btn{
        margin-bottom: 10px;
    }
    .cart-products-container, .wishlist-products-container {
      margin-bottom: 10px !important;
    }
}
@media screen and (max-width: 575px) {
    .cart-product-row-right-left {
        width: 100%;
    }
    .cart-product-row-right-right {
        width: 100%;
    }
    .wishlist-product-row-right-left {
        width: 100%;
    }
    .wishlist-product-row-right-right {
        width: 100%;
    }
    .cart-product-row-right-right, .wishlist-product-row-right-right{
        display: inline-block;
    }
    .cart-product-row-right-right button, .wishlist-product-row-right-right button {
        padding: 4px 12px;
        width: 100%;
        font-size: 12px;
    }
    .cart-product-row-right-right select, .wishlist-product-row-right-right select {
      font-size: 12px;
        width: 100%;
    }
    .xs-w-100{
        width:100%;
    }
    .order-total-amount{
        font-size: 16px;
    }
    .cart-payment-details-section p.title, .payment-details-row-left {
        font-size: 12px;
    }
    .address-action-right p:first-child{
        font-size: 14px;
    }
    .cart-shipping-addresses h4, .billing-shipping-addresses h4{
        font-size: 14px;
    }
    .checkout-address-container .checkout-address-container-right label p {
      font-size: 14px;
    }
    .cart-product-row-right-right button, .wishlist-product-row-right-right button {
      font-size: 12px;
    }
    .cart-product-row-right-right button:nth-child(1), .removefromwishlist-btn{
        margin-bottom: 10px;
    }
    .cart-products-container, .wishlist-products-container {
      margin-bottom: 10px !important;
    }
    .profile-row-1 h2, .addresses-row-1 h2{
        font-size: 18px;
    }
}
.cart-input, .cart-input:hover, .cart-input:focus, .cart-input:active {
  width: 100%;
  padding: 5px 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: 0;
  box-shadow: none;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}
.cart-input::placeholder, .cart-input::-ms-input-placeholder{
  color: rgba(0, 0, 0, 0.1);
  font-size: 14px;
}
/* cart and wishlist page css end */