body{
    --btn--bg: #0068cc;
    --btn--color:#FFF;
    
    --btn--hover--color: #0068cc;
    --btn--hover--bg:#FFF;
    }

 
    

    
    .btn-custom{background: var(--btn--bg) ; color: var(--btn--color); font-size: 16px; font-weight: 600;}
    .btn-custom:hover{background: var(--btn--hover--bg) ; color: var(--btn--hover--color); font-size: 16px;}
    .basket-btns{ padding: 10px 15px;}


.w-pt40{margin-top: 40px;}
.option-box {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}
.p-3{
    padding: 1rem!important;
}

.option-box p{font-size: 14px; color:darkgrey; margin: 0;}
.option-box h6{font-size: 24px; margin-bottom: 10px;}

.color-style p{color: #000; font-size: 16px;}
.color-style input[type=radio] {
    appearance: none;
    padding: 10px;
    width: 100%;
    height: 40px;
    border-radius:10%;
}
    
.color-style input[type=radio]:checked {
    border: 1px solid #000;
 }

 .size-style p{color: #000; font-size: 16px; margin-top: 15px;}
 .size-style input[type=radio] {
    display: none;
    
 }
 .size-style label{
    background-color: gainsboro;
    color: #000;
    font-size: 14px;
    width: 100%;
    padding: 4px 4px;
    border-radius:10%;
 }
 .color-style input[type=radio]:checked label {
    border: 1px solid #000;
 }
 .mtb-10{margin-bottom:5px;}
.nav-tabs .nav-link{
	    color: #000;
    background: #eee;
	margin: 0 5px 0px 0;
	 }
	 .carousel-dark .carousel-caption {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
}


.quantity1 {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .quantity1 .button1,.quantity1 .button2 {
    background-color:  var(--btn--bg);
    color:  var(--btn--color);
    border: none;
    cursor: pointer;
    font-size: 20px;
    width: 30px;
    height: auto;
    text-align: center;
    transition: background-color 0.2s;
  }
  
  .quantity1 button:hover {
    background-color:  var(--btn--bg);
    color:  var(--btn--hover--bg);
  }
  
  .input-box {
    width: 40px;
    text-align: center;
    border: none;
    padding: 8px 10px;
    font-size: 16px;
    outline: none;
  }
  
  /* Hide the number input spin buttons */
  .input-box::-webkit-inner-spin-button,
  .input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  .input-box[type="number"] {
    -moz-appearance: textfield;
  }