body{
    --btn--bg: #002226;
    --btn--color:#FFF;
    
    --btn--hover--color: #002226;
    --btn--hover--bg:#FFF;
    }
.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;
}
.pro_detail{font-weight: normal; font-size: 16px; color: #000;}


.quantity {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .quantity .button1,.quantity .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;
  }
  
  .quantity 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;
    padding: 0 15px;
    width: 15%;
    background-color: transparent;
    box-shadow: none;
    color: var(--wd-form-color);
    vertical-align: middle;
    font-size: 14px;
    transition: border-color .5s ease;
  }

  .tab {
    width: 100%;
    overflow: hidden;
  }
  
  .tab button {
    background-color: #002f35;
    color:#FFF;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 16px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .tab button:hover {
    background-color: #002f35;
  }
  
  .tab button.active {
    background-color: #065863;
  }
  
  .tabcontent {
    color:#000;
    width: 100%;
    display: none;
    padding: 6px 12px;
    font-family: arial;
  }