@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900|Rubik:300,400,500,700,900');
body {
 font-family: 'Roboto','Arial',sans-serif;
 font-size: 14px;
 font-weight: 400;
 background: #FFFFFF;
 color: #000000;
}
.breadcrumb {
    background: #fff;
}
a {
    color: #505762;
    text-decoration: none;
}
a:hover {
    color: #505762;
    text-decoration: none;
}


   /* When the radio button is checked, add a green background */
    input[type=radio] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 50%;
        width: 1rem;
        height: 1rem;
        transition: 0.2s all linear;
        position: relative;
        top: 4px;
    }

    input[type=radio]:checked {
       background: #008053;
   }

   input[type="radio"]:focus {
    outline: 0px;
}

[type=radio]:checked::after {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}
[type=radio]::after {
    content: "";
    color: transparent;
    display: block;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    border: 0;
    background-color: transparent;
    background-size: contain;
    box-shadow: inset 0 0 0 1px #ccd3d8;
}

/* Basic styling */

[type=checkbox] {
  width: 1rem;
  height: 1rem;
  color: #008053;
  vertical-align: middle;
  -webkit-appearance: none;
  background: none;
  border: 0;
  outline: 0;
  flex-grow: 0;
  border-radius: 50%;
  background-color: #FFFFFF;
  transition: background 300ms;
  cursor: pointer;
}


/* Pseudo element for check styling */

[type=checkbox]::before {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}


/* Checked */

[type=checkbox]:checked {
  background-color: currentcolor;
}

[type=checkbox]:checked::before {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}


/* Disabled */

[type=checkbox]:disabled {
  background-color: #CCD3D8;
  opacity: 0.84;
  cursor: not-allowed;
}


/* IE */

[type=checkbox]::-ms-check {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}

[type=checkbox]:checked::-ms-check {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}
label.cart-label {
    font-size: 12px;
    color: #3c3c3c;
}
.cart-tite {
    color: #342d2d;
    font-size: 17px;
}
.cart-p {
    color: #4f5058;
}
.side{
    padding: 20px;
}
.left-header .breadcrumb {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #6c6868;
    border-bottom: 1px solid #ddd;
}
.breadcrumb .active
{
    color: #000;
}
.success-box
{
    padding: 10px;
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    margin-top: 30px;
    margin-bottom: 20px;
}

.left-side
{
 border-right: 0.2px solid #e5e7eb;
}
.right-side{
    background-color: #f3f4f6;
}
.row.cart-split {
    min-height: 100vh;
}
.cart-input {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 14px;
}
input.cart-input:focus{
    border:1px solid #0065b5;
}
textarea.cart-input:focus {
    border:1px solid #0065b5;
}

.cart-input:focus {
    color: #495057;
    background-color: #fff;
    border-color: #c9cdd1;
    outline: 0;
    box-shadow: none;
}
.hidden
{
    display: none;
}
.bill_business.show
{
    display: flex;
}


@media screen and (min-width: 800px) {
.cart-product {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 15px;
  }
}
@media screen and (max-width: 800px) {
  .cart-product {
    display: grid;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 15px;
  }
}

.product-info{
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}
.product-info .product-img
{
    width: 80px;
}

ul#pills-tab {
    background: #f3f4f6;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #000000;
    border-radius: 33px;
}
a.nav-link:hover {
    border-radius: 0.25rem;
    border-radius: 33px;
    color: #fff;
    background-color: #000000;
}
li.nav-item:hover {
    border-radius: 33px;
}

.btn-cart {
    background: #008053;
    color: #fff;
    font-size: large;
    border-radius: 4px;
}
.cart-fixed {
    position: fixed;
    z-index: 1030;
}
.variant-yes {
    font-size: 12px;
    font-weight: 600;
    color: #0a0101;
}
a.cart-delete {
    color: #fff;
    background: #222;
    padding: 3px;
    border-radius: 33px;
}
img.cart-img {
    border-radius: 33px;
    height: 50px;
    width: 50px;
    border: 2px solid #d9d9d9;
}
.cart-product-lft {
    float: right!important;
    display: flex;
    gap: 16px;
}


.cart-products-white {
    top: 20px;
    z-index: inherit;
    position: sticky;
}
input.cart-coupon {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0px;
    padding: 6px;
    outline: none;
}
input.cart-coupon:focus{
    border:1px solid #000000;
}
button.btn.btn-coupon {
    background: #000;
    color: #fff;
    padding: 4px;
    border-radius: 0px;
}
button.adjust-quantity {
    background: #fff;
    border: none;
    outline: none;
    color: #748194;
    margin: 0;
    border-radius: 3px;
}
select.adjust-specific-quantity {
    border: none;
    margin: 0;
    outline: none;
    color: #505762;
}
.product-actions {
    border: 1px solid #ddd;
    border-radius: 3px;
}
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}
.cart-footer {
    font-size: 0.75rem;
    color: #585858;
    font-weight: normal;
}
input.btn.btn-cart:hover {
    background: #000;
    color: #fff;
}
.cart-tite-two {
    color: #342d2d;
    font-size: 17px;
    font-weight: 600;
}
label.cart-select-pay {
    background: #f9f9f9;
    border: 1px solid #ddd;
    display: flex;
    border-radius: 8px;
}
h3.cart-select-title {
    font-size: 20px;
    font-weight: 400;
    margin-right: 10px;
}
.select-ibans {
    background: #f3f4f6;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.cart-suct {
    padding: 40px;
    border: 1px solid #ddd;
    text-align: center;
}
button.remove-coupon-code {
    float: right;
    background: #df1d1d;
    color: #fff;
    border-radius: 30px;
    height: 30px;
    width: 30px;
    border: none;
    outline: none;
}
.cart-modal {
    border-radius: 0px;
    border: 1px solid #ddd;
}
.cart-modal-title {
    background: #f3f4f6;
}
.cart-modal-footer {
    background: #f3f4f6;
}
button.btn-footer-modal {
    background: #fff;
    outline: none;
    border: 1px solid #ddd;
}
button.close {
    border: none;
    outline: none;
}

.accordion__item__header {
    background-color: #ffffff;
    padding: 15px;
    cursor: pointer;
    position: relative;
    color: #0e0e0e;
    font-family: Arial;
    font-weight: 400;
    font-size: 20px;
    border-bottom: 1px solid #ddd;
}
.accordion__item__header::before {
    height: 15px;
    width: 15px;
    content: "";
    position: absolute;
    right: 15px;
    top: 15px;
    transition: 0.5s all;
    transform: rotate(45deg);
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
}
.accordion__item__header.active {
    background-color: #ffffff;
    color: #000;
    transition: 0.4s;
}
.accordion__item__header.active::before {
    transform: rotate(-135deg);
    top: 23px;
}
.accordion__item__content {
    overflow-y: hidden;
    padding: 0;
    display: none;
    background: #f3f4f6;
    padding: 10px;
    border-radius: 6px;
    margin: 10px;
}
.price-mobile {
    float: right;
    margin-right: 10%;
}