/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

a {
    color: inherit;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.search-box {
    max-width: 300px;
}

        

.cart-btn, .user-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #e1e1e1;
}

.social-icons a {
    display: inline-block;
    margin-left: 10px;
    font-size: 1.2rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #0d6efd;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    background-color: #0b5ed7;
    color: white;
}

/* Section titles */
.section-title {
    text-align: center;
    margin-bottom: 10px;
}

.section-title h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-box {
        margin-bottom: 15px;
    }
    
    .product-image {
        height: 150px;
    }
}





  /*-- focus --*/
        .categories {
            padding: 20px 0;
        }
        .focus-grid a {
            text-decoration:none;
        }
        .focus-grid {
            margin-top: 15px;
        }
        
        .focus-border {
            border: 1px solid #e7eaed;
            height: 100%;
            border-radius: 8px;
        }
        
        .focus-layout {
            background: #FBFBFB;
            transition: 0.3s all;
            padding: 10px;
            display: flex;
            align-items: center;
            height: 100%;
            position: relative;
        }
        
        /* Hover for available categories */
        .focus-layout:not(.unavailable):hover {
            background-color: #01a185;
        }
        
        /* Hover for unavailable categories */
        .focus-layout.unavailable:hover {
            background-color: #f8d7da;
        }
        
        .focus-image i {
            font-size: 12px;
            color: #fff;
            background: #dd0908;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            flex-shrink: 0;
        }
        
        /* Icon hover for available categories */
        .focus-layout:not(.unavailable):hover div.focus-image i {
            background: #FBFBFB;
            color: #000;
        }
        
        /* Icon hover for unavailable categories */
        .focus-layout.unavailable:hover div.focus-image i {
            background: #dc3545;
            color: #fff;
        }
        
        /* Icon colors */
        .focus-image i.fa-laptop { background:#ff9e29; }
        .focus-image i.fa-car { background:#3fb7d2; }
        .focus-image i.fa-motorcycle { background:#15c01c; }
        .focus-image i.fa-wheelchair { background:#7e3b07; }
        .focus-image i.fa-paw { background:#1963ce; }
        .focus-image i.fa-book { background:#c119ce; }
        .focus-image i.fa-asterisk { background:#7fbad8; }
        .focus-image i.fa-gamepad { background:#1ca39d; }
        .focus-image i.fa-shield { background:#f49ecf; }
        .focus-image i.fa-at { background:#070c1f; }
        .focus-image i.fa-home { background:#df8012; }
        .focus-image i.fa-pepper-hot { background:#ff4500; }
        
        .clrchg {
            color: #4C4C4C;
            font-size: 14px;
            font-weight: 500;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        /* Text hover for available categories */
        .focus-layout:not(.unavailable):hover .clrchg {
            color: #fff;
        }
        
        /* Text hover for unavailable categories */
        .focus-layout.unavailable:hover .clrchg {
            color: #721c24;
        }
        
        /* Not Available overlay */
        .not-available {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            font-weight: bold;
            font-size: 0.7rem;
            text-transform: uppercase;
            border-radius: 8px;
        }
        
        .focus-layout.unavailable:hover .not-available {
            opacity: 1;
        }
        
        /* Responsive adjustments */
        @media (min-width: 576px) {
            .focus-image i {
                font-size: 14px;
                width: 24px;
                height: 24px;
            }
            .clrchg {
                font-size: 15px;
            }
        }
        
        @media (min-width: 768px) {
            .focus-image i {
                font-size: 16px;
                width: 28px;
                height: 28px;
            }
            .clrchg {
                font-size: 16px;
            }
        }
        
        /* Navbar styles */
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .search-box {
            max-width: 250px;
        }
        .cart-btn, .user-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
/*======================================
    Product CSS
========================================*/
/* Single Product*/
.single-product {
  border: 1px solid #eee;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-top: 30px;
  -webkit-box-shadow: 0px 0px 20px #00000012;
          box-shadow: 0px 0px 20px #00000012;
  padding: 8px;
  background: #fff;
}

/* Add this to your CSS file */
.product-info .price {
    margin-bottom: 0; /* Remove default margin */
    padding-bottom: 0; /* Remove default padding */
    line-height: 1.2; /* Make text more compact */
}

/* If you still see space, try targeting the product-info div */
.single-product .product-info {
    padding-bottom: 10px; /* Reduce bottom padding */
}


.single-product .product-image {
  overflow: hidden;
  position: relative;
}

.single-product .product-image .sale-tag {
  background: #f73232;
  border-radius: 2px;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  position: absolute;
  top: 0;
  padding: 5px 10px;
  left: 0;
  z-index: 22;
}

.single-product .product-image .new-tag {
  background: #0167F3;
  border-radius: 2px;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  position: absolute;
  top: 0;
  padding: 5px 10px;
  left: 0;
  z-index: 22;
}

.single-product .product-image .button {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -60px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}

.single-product .product-image .button .btn {
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  width: 140px;
}

.single-product .product-image .button .btn i {
  font-size: 18px;
  position: relative;
  top: 2px;
}

.single-product .product-image img {
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-product:hover .product-image .button {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}

.single-product:hover .product-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.single-product .product-info {
  padding: 20px;
  background-color: #fff;
}

.single-product .product-info .category {
  color: #888;
  font-size: 13px;
  display: block;
  margin-bottom: 2px;
}

.single-product .product-info .title a {
  font-size: 20px;
  font-weight: 700;
  color: #081828;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .single-product .product-info .title a {
    font-size: 15px;
  }
}

.single-product .product-info .title a:hover {
  color: #0167F3;
}

.single-product .product-info .review {
  margin-top: 5px;
}

.single-product .product-info .review li {
  display: inline-block;
}

.single-product .product-info .review li i {
  color: #fecb00;
  font-size: 13px;
}

.single-product .product-info .review li span {
  display: inline-block;
  margin-left: 4px;
  color: #888;
  font-size: 13px;
}

.single-product .product-info .price {
  margin-top: 15px;
}

.single-product .product-info .price span {
  font-size: 17px;
  font-weight: 700;
  color: #0167F3;
  display: inline-block;
}

.single-product .product-info .price .discount-price {
  margin: 0;
  color: #aaaaaa;
  text-decoration: line-through;
  font-weight: normal;
  margin-left: 10px;
  font-size: 14px;
  display: inline-block;
}

/* End Single Product */
.trending-product {
  background-color: #f9f9f9;
}

.trending-product .section-title {
  margin-bottom: 20px;
}

/*======================================
    Home Product List CSS
========================================*/
@media (max-width: 767px) {
  .home-product-list .custom-responsive-margin {
    margin-bottom: 40px;
  }
}

.home-product-list .list-title {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
  color: #232323;
  font-size: 15px;
  font-weight: 500;
}

.home-product-list .list-title::before {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 90px;
  height: 1px;
  background-color: #0167F3;
  content: '';
}

.home-product-list .single-list {
  margin-bottom: 20px;
}

.home-product-list .single-list:last-child {
  margin: 0;
}

.home-product-list .single-list .list-image {
  width: 60px;
  padding-right: 12px;
  float: left;
  position: relative;
  top: 10px;
}

.home-product-list .single-list .list-image a {
  display: block;
  border-radius: 5px;
  overflow: hidden;
}

.home-product-list .single-list .list-image a img {
  width: 100%;
}

.home-product-list .single-list .list-info {
  display: table-cell;
  vertical-align: top;
}

.home-product-list .single-list .list-info h3 a {
  font-size: 14px;
  font-weight: 500;
  color: #081828;
}

.home-product-list .single-list .list-info h3 a:hover {
  color: #0167F3;
}

.home-product-list .single-list .list-info span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
}

.button .btn {
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 30px;
  background-color: #0167F3;
  color: #fff;
  border: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  margin-right: 7px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .button .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

@media (max-width: 767px) {
  .button .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

.button .btn i {
  display: inline-block;
  margin-right: 5px;
}

.button .btn:last-child {
  margin: 0;
}

.button .btn:hover {
  color: #fff;
  background-color: #081828;
  -webkit-box-shadow: 0px 4px 4px #0000000f;
          box-shadow: 0px 4px 4px #0000000f;
}

.button .btn-alt {
  background-color: #081828 !important;
  color: #fff !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .button .btn-alt {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

@media (max-width: 767px) {
  .button .btn-alt {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

.button .btn-alt:hover {
  background-color: #0167F3 !important;
  color: #fff !important;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}
span,
a {
  text-decoration: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}
ul.review {
    display: flex;
    align-items: center;
    gap: 0px; /* Optional: adds spacing between items */
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.review li {
    display: inline;
}
/* Mobile-specific adjustments */
    @media (max-width: 767px) {
        .review.list-inline {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            white-space: nowrap;
        }
        
        .review.list-inline .list-inline-item {
            margin-right: -2px; /* Reduce spacing between stars */
        }
        
        .review.list-inline .small {
            font-size: 0.4rem !important; /* Make text smaller */
        }
        
        .review.list-inline i {
            font-size: 0.6em; /* Slightly reduce star size */
        }
    }


/* One Click Scrool Top Button*/
.scroll-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #0167F3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: #fff !important;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius: 4px;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: #081828;
}


.footer-bottom {
    background-color: #ededed;
    padding: 20px 0;
    color: #;
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
}


.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin-top: 30px;
}

.social-icons a {
    color: #6c757d;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #007bff;
}




/*======================================
    Item Details CSS
========================================*/
.item-details {
  background-color: #f9f9f9;
}

.item-details .top-area {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 4px;
}

.item-details .product-images img {
  width: 100%;
  cursor: pointer;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  padding: 5px;
}

.item-details .product-images .images {
  display: -ms-grid;
  display: grid;
  Grid-template-columns: repeat(5, 1fr);
  Grid-gap: 1em 1em;
  Margin-top: 1em;
}

@media (max-width: 767px) {
  .item-details .product-images .images {
    Grid-template-columns: repeat(3, 1fr);
  }
}

@-webkit-keyframes fadeIn {
  to {
    Opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    Opacity: 1;
  }
}

.item-details .product-images .fade-in {
  -webkit-animation: fadeIn 0.5s ease-in 1 forwards;
          animation: fadeIn 0.5s ease-in 1 forwards;
}

.item-details .product-info {
  padding-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .item-details .product-info {
    padding: 0;
    margin-top: 30px;
  }
}

.item-details .product-info .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .item-details .product-info .title {
    font-size: 18px;
  }
}

.item-details .product-info .category {
  display: block;
  margin-bottom: 15px;
}

.item-details .product-info .category i {
  display: inline-block;
  margin-right: 5px;
  color: #888;
}

.item-details .product-info .category a {
  color: #888;
  font-weight: 400;
  display: inline-block;
  margin-left: 5px;
}

.item-details .product-info .category a:hover {
  color: #0167F3;
}

.item-details .product-info .price {
  color: #081828;
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .item-details .product-info .price {
    font-size: 20px;
  }
}

.item-details .product-info .price span {
  display: inline-block;
  margin-left: 15px;
  color: #888;
  text-decoration: line-through;
  font-size: 23px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .item-details .product-info .price span {
    font-size: 20px;
  }
}

.item-details .product-info .info-text {
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.item-details .product-info .form-group {
  margin-top: 20px;
}

.item-details .product-info .form-group.color-option .title-label {
  display: block !important;
}

.item-details .product-info .form-group.color-option .single-checkbox {
  margin-top: 8px;
  display: inline-block;
  margin-right: 5px;
}

.item-details .product-info .form-group.color-option .single-checkbox:last-child {
  margin-right: 0;
}

.item-details .product-info .form-group.color-option .single-checkbox label {
  font-size: 16px;
  margin-bottom: 0;
  position: relative;
  bottom: -2px;
}

.item-details .product-info .form-group.color-option .single-checkbox input[type="checkbox"] {
  display: none;
}

.item-details .product-info .form-group.color-option .single-checkbox input[type="checkbox"] + label span {
  border-color: #0167F3;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px -3px 0;
  border: 1px solid #d5d5d5;
}

.item-details .product-info .form-group.color-option .single-checkbox input[type="checkbox"] + label span::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
  font-size: 10px;
  line-height: 1.2;
  background-color: #0167F3;
  font-family: "Lineicons";
  content: "\ea5b";
  padding-left: 0px;
  padding-top: 3px;
  border-radius: 50%;
  margin-top: -9px;
  margin-left: -9px;
  text-align: center;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-1 input[type="checkbox"] + label span {
  border: 2px solid #081828;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-1 input[type="checkbox"] + label span::before {
  background-color: #081828;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-2 input[type="checkbox"] + label span {
  border: 2px solid #0167F3;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-2 input[type="checkbox"] + label span::before {
  background-color: #0167F3;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-3 input[type="checkbox"] + label span {
  border: 2px solid #ca0f05;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-3 input[type="checkbox"] + label span::before {
  background-color: #ca0f05;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-4 input[type="checkbox"] + label span {
  border: 2px solid #029c07;
}

.item-details .product-info .form-group.color-option .single-checkbox.checkbox-style-4 input[type="checkbox"] + label span::before {
  background-color: #029c07;
}

.item-details .product-info .form-group.color-option .single-checkbox input[type="checkbox"]:checked + label span {
  border-color: transparent;
}

.item-details .product-info .form-group.color-option .single-checkbox input[type="checkbox"]:checked + label span::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  border-radius: 50%;
  color: #fff;
}

.item-details .product-info .form-group input:focus {
  outline: 0;
}

.item-details .product-info .form-group select:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.item-details .product-info .form-group label {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
}

.item-details .product-info .form-group select.form-control {
  padding-right: 38px;
  padding-left: 15px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: 10px 10px;
}

.item-details .product-info .form-group select.form-control:not([size]):not([multiple]) {
  height: 46px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e1e1e1;
}

.item-details .product-info .quantity .inner-content {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item-details .product-info .quantity .inner-content input.text {
  width: 60px;
  height: 46px;
  border: 1px solid #e1e1e1;
  font-size: 14px;
  font-weight: 500;
  border-right: none;
  border-left: none;
}

.item-details .product-info .quantity .inner-content input.button {
  width: 35px;
  height: 46px;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  font-size: 17px;
  font-weight: 500;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.item-details .product-info .quantity .inner-content input.button.first {
  border-radius: 4px 0px 0px 4px;
  overflow: hidden;
}

.item-details .product-info .quantity .inner-content input.button.last {
  border-radius: 0px 4px 4px 0px;
  overflow: hidden;
}

.item-details .product-info .quantity .inner-content input.button:hover {
  background-color: #0167F3;
  border-color: transparent;
  color: #fff;
}

.item-details .product-info .cart-button {
  width: 100%;
}

.item-details .product-info .cart-button .btn {
  width: 100%;
  height: 46px;
  padding: 0;
}

.item-details .product-info .wish-button {
  display: inline-block;
  width: 100%;
}

@media (max-width: 767px) {
  .item-details .product-info .wish-button {
    margin-top: 12px;
  }
}

.item-details .product-info .wish-button .btn {
  display: inline-block;
  margin-right: 7px;
  border: 1px solid #eee;
  border-radius: 4px;
  color: #555;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  height: 46px;
  width: 100%;
}

.item-details .product-info .wish-button .btn:hover {
  color: #fff;
  background-color: #0167F3;
  border-color: transparent;
}

.item-details .product-info .wish-button .btn:last-child {
  margin: 0;
}

.item-details .product-info .wish-button .btn i {
  font-size: 16px;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.item-details .product-info .list-info {
  border-top: 1px solid #eee;
  margin-top: 30px;
  padding-top: 30px;
}

.item-details .product-info .list-info h4 {
  font-size: 20px;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.item-details .product-info .list-info ul li {
  display: block;
  margin-bottom: 6px;
}

.item-details .product-info .list-info ul li:last-child {
  margin: 0;
}

.item-details .product-info .list-info ul li span {
  display: inline-block;
  font-weight: 500;
  min-width: 100px;
}

.item-details .product-info .bottom-content {
  margin-top: 20px;
}

.item-details .product-info .social-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: -5px;
}

@media (max-width: 767px) {
  .item-details .product-info .social-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
  }
}

.item-details .product-info .social-share h4 {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  display: inline-block;
  margin-right: 13px;
  position: relative;
  top: 11px;
}

.item-details .product-info .social-share ul {
  display: inline-block;
  float: right;
}

@media (max-width: 767px) {
  .item-details .product-info .social-share ul {
    float: none;
  }
}

.item-details .product-info .social-share ul li {
  display: inline-block;
  margin-right: 2px;
  margin-top: 5px;
}

.item-details .product-info .social-share ul li:last-child {
  margin-right: 0;
}

.item-details .product-info .social-share ul li a {
  height: 30px;
  width: 30px;
  text-align: center;
  display: block;
  border-radius: 4px;
  border: 1px solid #eee;
  background-color: #fff;
  color: #0167F3;
  line-height: 30px;
  font-size: 12px;
}

.item-details .product-info .social-share ul li a.facebook {
  color: #3b5999;
}

.item-details .product-info .social-share ul li a.facebook:hover {
  border-color: transparent;
  background-color: #3b5999;
  color: #fff;
}

.item-details .product-info .social-share ul li a.twitter {
  color: #55acee;
}

.item-details .product-info .social-share ul li a.twitter:hover {
  border-color: transparent;
  background-color: #55acee;
  color: #fff;
}

.item-details .product-info .social-share ul li a.google {
  color: #dd4b39;
}

.item-details .product-info .social-share ul li a.google:hover {
  border-color: transparent;
  background-color: #dd4b39;
  color: #fff;
}

.item-details .product-info .social-share ul li a.linkedin {
  color: #0077B5;
}

.item-details .product-info .social-share ul li a.linkedin:hover {
  border-color: transparent;
  background-color: #0077B5;
  color: #fff;
}

.item-details .product-info .social-share ul li a.pinterest {
  color: #bd081c;
}

.item-details .product-info .social-share ul li a.pinterest:hover {
  border-color: transparent;
  background-color: #bd081c;
  color: #fff;
}

/* Product Details Info */
.product-details-info .single-block {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .product-details-info .info-body.custom-responsive-margin {
    margin-bottom: 30px;
  }
}

.product-details-info .info-body h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.product-details-info .info-body p {
  margin: 20px 0;
}

.product-details-info .info-body .features li {
  display: block;
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.product-details-info .info-body .features li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  height: 6px;
  width: 6px;
  background-color: #0167F3;
  border-radius: 6px;
}

.product-details-info .info-body .features li:last-child {
  margin: 0;
}

.product-details-info .info-body .normal-list {
  margin-bottom: 30px;
}

.product-details-info .info-body .normal-list:last-child {
  margin-bottom: 0;
}

.product-details-info .info-body .normal-list li {
  display: block;
  margin-bottom: 12px;
  position: relative;
}

.product-details-info .info-body .normal-list li span {
  font-weight: 500;
  color: #555;
}

.product-details-info .info-body .normal-list li:last-child {
  margin: 0;
}

.product-details-info .give-review h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

.product-details-info .give-review ul li {
  display: block;
  margin-bottom: 12px;
}

.product-details-info .give-review ul li span {
  color: #666;
  display: inline-block;
  margin-right: 8px;
  min-width: 80px;
}

.product-details-info .give-review ul li i {
  display: inline-block;
  color: #ffa000;
  font-size: 14px;
}

.product-details-info .give-review .review-btn {
  margin-top: 30px;
  padding: 12px 30px;
  width: 100%;
  background-color: #ffa000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.product-details-info .give-review .review-btn:hover {
  color: #fff;
  background-color: #081828;
}

.product-details-info .reviews .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

.product-details-info .reviews .single-review {
  position: relative;
  padding-left: 80px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review {
    padding-left: 60px;
  }
}

.product-details-info .reviews .single-review:last-child {
  margin-bottom: 0;
}

.product-details-info .reviews .single-review img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review img {
    height: 40px;
    width: 40px;
  }
}

.product-details-info .reviews .single-review .review-info {
  position: relative;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 25px;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review .review-info {
    padding: 20px;
  }
}

.product-details-info .reviews .single-review .review-info::before {
  position: absolute;
  top: 12px;
  right: 100%;
  width: 0;
  height: 0;
  border: solid transparent;
  content: '';
  pointer-events: none;
  margin-top: 9px;
  border-width: 10px;
  border-color: transparent;
  border-right-color: #e5e5e5;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review .review-info::before {
    top: 5px;
  }
}

.product-details-info .reviews .single-review .review-info::after {
  position: absolute;
  top: 12px;
  right: 100%;
  width: 0;
  height: 0;
  border: solid transparent;
  content: '';
  pointer-events: none;
  margin-top: 10px;
  border-width: 9px;
  border-color: transparent;
  border-right-color: #fff;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review .review-info::after {
    top: 5px;
  }
}

.product-details-info .reviews .single-review .review-info h4 {
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review .review-info h4 {
    font-size: 14px;
  }
}

.product-details-info .reviews .single-review .review-info h4 span {
  font-size: 14px;
  display: block;
  color: #888;
  margin-top: 7px;
}

.product-details-info .reviews .single-review .review-info .stars {
  margin-top: 8px;
}

.product-details-info .reviews .single-review .review-info .stars li {
  display: inline-block;
  color: #ffa000;
  font-size: 14px;
}

.product-details-info .reviews .single-review .review-info p {
  margin-top: 15px;
}

.review-modal .modal-dialog {
  max-width: 600px;
}

.review-modal .modal-header {
  padding: 25px;
}

.review-modal .modal-header h5 {
  font-size: 20px;
  font-weight: 500;
}

.review-modal .modal-body {
  padding: 25px;
}

.review-modal .modal-body .form-group {
  margin-bottom: 15px;
}

.review-modal .modal-body .form-group label {
  color: #888;
  font-size: 13px;
  margin-bottom: 5px;
  display: block;
}

.review-modal .modal-body .form-group input {
  height: 45px;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 0px 18px;
  font-size: 14px;
}

.review-modal .modal-body .form-group select {
  padding-right: 38px;
  padding-left: 15px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: 10px 10px;
  font-size: 14px;
  font-weight: 500;
}

.review-modal .modal-body .form-group select:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.review-modal .modal-body .form-group select {
  height: 45px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e1e1e1;
}

.review-modal .modal-body .form-group select:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.review-modal .modal-body .form-group textarea {
  padding: 18px;
  font-size: 14px;
}

.review-modal .modal-footer {
  padding: 25px;
}


/*======================================
   Start Shopping Cart CSS
========================================*/
.cart-list-head {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #eee;
}

.cart-list-title {
  background-color: #fff;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}

@media (max-width: 767px) {
  .cart-list-title {
    text-align: center;
  }
}

.cart-list-title p {
  color: #081828;
  font-weight: 500;
  font-size: 14px;
}

@media (max-width: 767px) {
  .cart-list-title p {
    padding: 2px 0;
  }
}

@media (max-width: 767px) {
  .cart-single-list {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .cart-single-list a img {
    width: 50%;
    margin-bottom: 10px;
  }
}

.cart-single-list .remove-item {
  color: #fff;
  background-color: #f44336;
  font-size: 8px;
  height: 20px;
  width: 20px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
}

@media (max-width: 767px) {
  .cart-single-list .remove-item {
    margin-top: 5px;
  }
}

.cart-single-list .remove-item:hover {
  color: #fff;
  background-color: #081828;
}

.cart-single-list .product-name {
  line-height: 22px;
}

.cart-single-list .product-name a {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.cart-single-list .product-des {
  display: block;
}

.cart-single-list .product-des span {
  font-size: 13px;
  font-weight: 500;
  display: block;
}

.cart-single-list .product-des span em {
  font-style: normal;
  color: #555;
}

.cart-single-list {
  padding: 30px 20px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.cart-single-list:last-child {
  border: none !important;
  border-radius: 0 0 4px 4px;
}

.cart-single-list a:hover {
  color: #0167F3;
}

.shopping-cart {
  background-color: #f9f9f9;
}

.shopping-cart .total-amount .right ul li {
  font-size: 14px;
  font-weight: 500;
  color: #081828;
  margin-bottom: 12px;
}

.shopping-cart .total-amount .right ul li span {
  display: inline-block;
  float: right;
}

.shopping-cart .total-amount .coupon {
  padding: 40px;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 4px;
  margin-top: 40px;
  display: inline-block;
}

@media (max-width: 767px) {
  .shopping-cart .total-amount .coupon {
    width: 100%;
    padding: 30px;
    margin-top: 30px;
  }
}

.shopping-cart .total-amount .coupon input {
  width: 300px;
  height: 46px;
  border: 1px solid #dddddd;
  overflow: hidden;
  border-radius: 4px;
  color: #333;
  padding: 0px 20px;
  display: inline-block;
}

@media (max-width: 767px) {
  .shopping-cart .total-amount .coupon input {
    width: 100%;
  }
}

.shopping-cart .total-amount .coupon .button {
  display: inline-block;
}

@media (max-width: 767px) {
  .shopping-cart .total-amount .coupon .button {
    display: block;
  }
}

.shopping-cart .total-amount .coupon button {
  border: none;
  height: 46px;
  display: inline-block;
  margin-left: 8px;
  position: relative;
  top: -2px;
}

@media (max-width: 767px) {
  .shopping-cart .total-amount .coupon button {
    margin: 0;
    margin-top: 10px;
    width: 100%;
  }
}

.shopping-cart .total-amount .right {
  padding: 40px;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 4px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .shopping-cart .total-amount .right {
    padding: 30px;
    margin-top: 30px;
  }
}

.shopping-cart .total-amount .right .button {
  margin-top: 30px;
}

.shopping-cart .total-amount .right .btn {
  width: 100%;
  margin-bottom: 8px;
  text-align: center;
  padding: 12px 20px;
}

.shopping-cart .total-amount .right .btn:last-child {
  margin: 0;
}

@media (max-width: 767px) {
  .shopping-cart .count-input {
    padding: 10px 65px;
  }
}

@media (max-width: 767px) {
  .shopping-cart p {
    padding: 3px 0;
  }
}

.shopping-cart select.form-control:not([size]):not([multiple]) {
  height: 46px;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  width: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shopping-cart select.form-control:not([size]):not([multiple]) {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .shopping-cart select.form-control:not([size]):not([multiple]) {
    width: 100%;
  }
}

.shopping-cart select.form-control:not([size]):not([multiple]):focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.shopping-cart select.form-control {
  padding-right: 38px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: 10px 10px;
}

.shopping-cart .form-control {
  padding: 0 18px;
  -webkit-transition: color .25s, background-color .25s, border-color .25s;
  transition: color .25s, background-color .25s, border-color .25s;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #fff;
  color: #505050;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.shopping-cart .form-control:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}


/* Bread Crumbs */
.breadcrumbs {
  position: relative;
  padding: 30px 0;
  z-index: 2;
  text-align: left;
  background-color: #fff;
  -webkit-box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.075);
          box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.075);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumbs {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .breadcrumbs {
    padding: 30px;
  }
}

.breadcrumbs .breadcrumbs-content {
  position: relative;
  text-align: left;
}

.breadcrumbs .breadcrumbs-content .page-title {
  font-size: 18px;
  color: #081828;
  font-weight: 600;
  position: relative;
  line-height: 28px;
  text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumbs .breadcrumbs-content .page-title {
    font-size: 17px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .breadcrumbs .breadcrumbs-content .page-title {
    font-size: 16px;
    text-align: center;
    line-height: 26px;
  }
}

.breadcrumbs .breadcrumbs-content .breadcrumb-nav {
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
  display: inline-block;
}

.breadcrumbs .breadcrumb-nav {
  text-align: right;
}

@media (max-width: 767px) {
  .breadcrumbs .breadcrumb-nav {
    text-align: center;
    margin-top: 15px;
  }
}

.breadcrumbs .breadcrumb-nav li {
  display: inline-block;
  position: relative;
  padding-right: 14px;
  margin-right: 14px;
  text-transform: capitalize;
}

.breadcrumbs .breadcrumb-nav li:after {
  content: "\ea62";
  font-family: lineIcons;
  font-size: 12px;
  position: absolute;
  top: 3px;
  right: -7px;
}

.breadcrumbs .breadcrumb-nav li:last-child {
  margin: 0;
  padding: 0;
}

.breadcrumbs .breadcrumb-nav li:last-child::after {
  display: none;
}

.breadcrumbs .breadcrumb-nav li,
.breadcrumbs .breadcrumb-nav li a {
  color: #888;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumbs .breadcrumb-nav li i,
.breadcrumbs .breadcrumb-nav li a i {
  font-size: 13px;
  display: inline-block;
  margin-right: 3px;
  position: relative;
  top: -1px;
}

.breadcrumbs .breadcrumb-nav li a {
  position: relative;
}

.breadcrumbs .breadcrumb-nav li a:hover {
  color: #0167F3;
}

.section {
  padding-top: 10px;
  padding-bottom: 90px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
img {
    max-width: 100%;
}


/*======================================
   Checkout CSS
========================================*/
.checkout-wrapper {
  background-color: #f9f9f9;
}

.checkout-steps-form-style-1 #accordionExample li {
  margin-bottom: 20px;
}

.checkout-steps-form-style-1 #accordionExample li:last-child {
  margin: 0;
}

.checkout-steps-form-style-1 .title {
  font-size: 15px;
  font-weight: 600;
  line-height: 40px;
  position: relative;
  cursor: pointer;
  border: 1px solid #e6e6e6;
  border-radius: 4px 4px 0 0;
  padding: 8px 25px;
  color: #0167F3;
  background-color: #fff;
}

.checkout-steps-form-style-1 .title.collapsed {
  border-radius: 4px;
  color: #081828;
}

.checkout-steps-form-style-1 .title:before {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Lineicons";
  content: "\ea5e";
  font-size: 13px;
  color: #7D7D7D;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.checkout-steps-form-style-1 .checkout-steps-form-content {
  padding: 25px;
  padding-top: 0;
  border: 1px solid #e6e6e6;
  border-top-color: transparent;
  background-color: #fff;
  border-radius: 0 0 4px 4px;
}

.checkout-steps-form-style-1 .single-form {
  margin-top: 16px;
  position: relative;
}

.checkout-steps-form-style-1 .single-form .form-input {
  position: relative;
}

@media (max-width: 767px) {
  .checkout-steps-form-style-1 .single-form .form-input {
    margin-bottom: 16px;
  }
  .checkout-steps-form-style-1 .single-form .form-input:last-child {
    margin-bottom: 0;
  }
}

.checkout-steps-form-style-1 .single-form .form-input textarea,
.checkout-steps-form-style-1 .single-form .form-input input {
  width: 100%;
  height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border: 1px solid #e6e6e6;
}

.checkout-steps-form-style-1 .single-form .form-input textarea:focus,
.checkout-steps-form-style-1 .single-form .form-input input:focus {
  border-color: #0167F3;
}

.checkout-steps-form-style-1 .form-default label {
  color: #888;
  margin-bottom: 8px;
}

.checkout-steps-form-style-1 .select-items select.form-control:not([size]):not([multiple]) {
  height: 46px;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  width: 100%;
}

.checkout-steps-form-style-1 .select-items select.form-control:not([size]):not([multiple]):focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkout-steps-form-style-1 .select-items select.form-control {
  padding-right: 38px;
  padding-left: 20px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: 10px 10px;
}

.checkout-steps-form-style-1 .single-checkbox {
  margin-top: 15px;
}

.checkout-steps-form-style-1 .single-checkbox label {
  font-size: 16px;
  margin-bottom: 0;
  position: relative;
  bottom: -2px;
}

.checkout-steps-form-style-1 .single-checkbox input[type="checkbox"] {
  display: none;
}

.checkout-steps-form-style-1 .single-checkbox input[type="checkbox"] + label span {
  border-color: #0167F3;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px -3px 0;
  border: 1px solid #d5d5d5;
}

.checkout-steps-form-style-1 .single-checkbox input[type="checkbox"] + label span::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
  font-size: 10px;
  line-height: 1.2;
  background-color: #0167F3;
  font-family: "Lineicons";
  content: "\ea5b";
  padding-left: 4px;
  padding-top: 3px;
  border-radius: 4px;
}

.checkout-steps-form-style-1 .single-checkbox .single-checkbox input[type="checkbox"] + label span {
  width: 20px;
  height: 20px;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px -3px 0;
}

.checkout-steps-form-style-1 .single-checkbox input[type="checkbox"]:checked + label span {
  border-color: transparent;
}

.checkout-steps-form-style-1 .single-checkbox input[type="checkbox"]:checked + label span::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  border-radius: 4px;
  color: #fff;
}

.checkout-steps-form-style-1 .single-checkbox p {
  display: inline;
  color: #777;
  padding-left: 5px;
}

.checkout-steps-form-style-1 .checkout-payment-option {
  margin-top: 16px;
}

.checkout-steps-form-style-1 .heading-6 {
  font-size: 14px;
  line-height: 18px;
  color: #666;
}

.checkout-steps-form-style-1 .payment-option-wrapper {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
}

.checkout-steps-form-style-1 .single-payment-option {
  width: 25%;
  margin-top: 16px;
  padding: 0 4px;
}

@media (max-width: 767px) {
  .checkout-steps-form-style-1 .single-payment-option {
    width: 100%;
  }
}

.checkout-steps-form-style-1 .single-payment-option label {
  text-align: center;
  padding: 12px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-bottom: 0;
  width: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
  border: 1px solid #eee;
}

.checkout-steps-form-style-1 .single-payment-option input[type="radio"] {
  display: none;
}

.checkout-steps-form-style-1 .single-payment-option input[type="radio"]:checked + label {
  border-color: #0167F3;
  background-color: #fff;
}

.checkout-steps-form-style-1 .single-payment-option p {
  font-size: 14px;
  font-weight: 400;
  color: #444;
}

.checkout-steps-form-style-1 .single-payment-option span {
  display: block;
}

.checkout-steps-form-style-1 .single-payment-option .price {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #444;
  margin-top: 4px;
}

.checkout-steps-form-style-1 .steps-form-btn {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .checkout-steps-form-style-1 .steps-form-btn .btn {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
  }
  .checkout-steps-form-style-1 .steps-form-btn .btn:last-child {
    margin-bottom: 0;
  }
}

.checkout-steps-form-style-1 .checkout-payment-form .single-form .form-input img {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.checkout-steps-form-style-1 .checkout-payment-form .payment-card-info .single-form {
  display: inline-block;
}

.checkout-steps-form-style-1 .checkout-payment-form .payment-card-info .single-form .form-input {
  width: 145px;
}

.checkout-steps-form-style-1 .checkout-payment-form .payment-card-info .single-form.mm-yy .form-input {
  margin-right: 15px;
}

.checkout-sidebar-coupon {
  background-color: #fff;
  padding: 25px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .checkout-sidebar-coupon {
    margin-top: 30px;
  }
}

.checkout-sidebar-coupon .single-form {
  position: relative;
}

.checkout-sidebar-coupon .single-form .button {
  position: absolute;
  right: 0;
  top: 0;
}

.checkout-sidebar-coupon .single-form .button .btn {
  height: 46px;
}

.checkout-sidebar-coupon p {
  font-size: 14px;
  line-height: 20px;
  color: #888;
  margin-bottom: 12px;
}

.checkout-sidebar-coupon input {
  width: 100%;
  height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding-right: 120px;
}

.checkout-sidebar-price-table {
  background-color: #fff;
  padding: 25px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
}

.checkout-sidebar-price-table .sub-total-price .total-price {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4px 0;
}

.checkout-sidebar-price-table .price-table-btn {
  margin-top: 20px;
}

.checkout-sidebar-price-table .title {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #081828;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
}

.checkout-sidebar-price-table .total-payable {
  padding: 8px 0;
  padding: 10px 0;
  border-top: 1px solid #e6e6e6;
  margin-top: 10px;
}

.checkout-sidebar-price-table .total-payable .payable-price {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.checkout-sidebar-banner {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  overflow: hidden;
}

.checkout-sidebar-banner a {
  width: 100%;
}

.checkout-sidebar-banner a img {
  width: 100%;
}
li {
    list-style: none;
}