a{text-decoration: none!important;}
input[type=date]::-webkit-datetime-edit-year-field:not([aria-valuenow]),
input[type=date]::-webkit-datetime-edit-month-field:not([aria-valuenow]),
input[type=date]::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}
input[type=text], input[type=date], input[type=number], select{padding: 3px 8px!important;height: 30px!important;font-size: 14px!important;margin-top: 0px!important;}
.control-label{padding-bottom: 0px!important;padding-top: 5px!important;}

.save-btn{
  border-radius:50px;
  border:0px;
  box-shadow:0px 2px 7px 0px #aaa;
  /*padding: 15px 11px;*/
  font-weight: 600;
  font-size: 12px!important;
  height: 50px!important;
  line-height: 18px;
  width: 50px!important;
  text-align: center;
}
.clear-input{position: absolute;right: 3px;top: 10px;}
.clear-input.clear{font-weight: 600;}
.bb-1{border-bottom: 1px solid #ddd;}
.toolbtn{
  border: 1px solid; 
  border-radius:100%;
  cursor: pointer;
}
.red {
  border: 1px solid #e63900!important;
}

.form-errors{
  border-radius: 8px;
  margin: 10px 25px 45px 25px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.6);
}

.form-errors ul.has-errors{
  padding:10px 15px;
  border:1px solid #a94442;
  border-radius:8px;
}

.form-errors li {
  list-style: none;
  font-size: 16px;
}

.navbar-dark .dropdown-item.active, .navbar-dark .dropdown-item:active {
  background-color: #343a40;
}

.products-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.products-wrapper .card{
  width: 275px;
  margin: 6px;
}

.products-wrapper .card .card-img-top{
  height: 200px;
  width: auto;
  object-fit: contain;
}

.list-price {
  color: #888;
  font-size: 12px;
  text-decoration: line-through;
}

.products-wrapper .card-title a {
  color: #000;
}

.products-wrapper .card-title a:hover {
  color: #888;
  text-decoration: none;
}

.product-details-body{
  margin: 18px 0;
  padding: 12px;
  border: 1px solid #eee;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

.product-details-price{
  color: crimson;
}

.product-details-label{
  font-weight: bold;
}

.product-details-slideshow .carousel-control-prev-icon,
.product-details-slideshow .carousel-control-next-icon{
  background: unset;
  color: #101820;
  font-size: 32px;
  text-shadow: 0px 0px 3px #fff;
}

.back-to-results{
  color: #101820;
  font-size: 14px;
}

.back-to-results:hover, .back-to-results:active{
  color: #000;
}

.shopping-cart-item {
  display: flex;
  border: 1px solid #f5f5f5;
  border-radius: 6px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  padding: 12px;
  margin: 18px 0px
}

.shopping-cart-item-name {
  color: #101820;
  font-size: 18px;
  margin: 0px 18px;
  display: flex;
  align-items: center;
  flex-grow: 3;
  flex-wrap: wrap;
  align-content: center;
}

.shopping-cart-item-name a {
  color: #101820;
  width: 100%;
}

.shopping-cart-item-name p {
  margin: 12px 0 0 0;
  font-size: 13px;
  color: #555;
}

.shopping-cart-item-img img{
  height: 150px;
  width: 150px;
  object-fit: contain;
  margin-right: 18px;
}

.shopping-cart-item-qty{
  display: flex;
  align-items: center;
  flex-grow: 1;
  margin: 0px 18px;
}

.shopping-cart-item-qty label {
  margin-right: 18px;
  margin-bottom: 0;
  color: #555;
}

.shopping-cart-item-qty input {
  width: 36px;
  margin: 0px 12px;
}

.shopping-cart-item-price{
  font-size: 18px;
  color: #101820;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}

.shopping-cart-item-price div{
  width: 100%;
}

.shopping-cart-item-price .shipping{
  color: #555;
  font-size: 12px
}

.shopping-cart-summary {
  padding: 18px;
  border: 1px solid #f5f5f5;
  border-radius: 8px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  margin-top: 18px;
}

.cart-line-item {
  display: flex;
  align-content: center;
  justify-content: space-between;
  margin: 12px 0;
}

.cart-line-item.grand-total {
  font-size: 16px;
  font-weight: bold;
}

.remove-item {
  font-size: 12px;
  color: crimson;
  cursor: pointer;
  margin-top: 12px;
}

.remove-item:hover {
  color: #ff0000;
}

/**
 * The CSS shown here will not be introduced in the Quickstart guide, but shows
 * how you can use CSS to style your Element's container.
 */
.StripeElement {
  box-sizing: border-box;

  height: 40px;

  padding: 10px 12px;

  border: 1px solid transparent;
  border-radius: 4px;
  background-color: white;

  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

.cart-preview-item{
  display: flex;
  border: 1px solid #f5f5f5;
  border-radius: 6px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  padding: 12px;
  margin: 18px 0px;
}

.cart-preview-item-img img {
  height: 75px;
  width: 75px;
  object-fit: contain;
  margin-right: 18px;
}

.cart-preview-item-info p{
  font-size: 12px;
  margin-bottom: 6px;
}

.cart-preview-item-info p:nth-child(1){
  font-size: 15px;
  font-weight: bold;
}

li.nav-item.nav-cart {
  position: relative;
}

li.nav-item.nav-cart .nav-badge{
  position: absolute;
  top: -2px;
  right: -5px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 10px;
  display: inline-block;
  border: 2px solid #343a40;
  border-radius: 50%;
  padding: 4px;
  background-color: #ff3300;
}

.two-column-wrapper{
  position: relative;
}

.filters-wrapper{
  margin-left: -15px;
  width: 300px;
  background-color: #fbfbfb;
  border-right: 1px solid #eaeaea;
  overflow-x: hidden;
  position: absolute;
  top: -48px;
  bottom: 0px;
  left: -265px;
  padding: 60px 50px 18px 18px;
  transition: left 0.2s ease, padding 0.2s ease;
  z-index: 2;
}

.two-column-wrapper.open .filters-wrapper{
  left: 0px;
  padding-right: 18px;
}

.two-column-wrapper #expand-filters{
  position: absolute;
  top: -40px;
  left: -13px;
  width: 30px;
  height: 30px;
  font-size: 18px;
  text-align: center;
  border-radius: 50%;
  background-color: #17a2b8;
  color: #fff;
  z-index: 3;
  transition: left 0.2s ease;
}

.two-column-wrapper.open #expand-filters{
  left: 250px;
}

.two-column-wrapper #expand-filters:hover{
  cursor: pointer;
}

.two-column-wrapper .products-wrapper{
  padding: 28px;
  padding-left: 40px;
  transition: padding 0.2s ease;
}

.two-column-wrapper.open .products-wrapper {
  padding-left: 340px
}



   h1,h2,h3,h4,h5,h6,p{font-weight: 600;color: #495057!important;}

   .removedate{display: none;}
   .showdate{display: block;}
.form-input .input-items {
    position: relative;
}
.form-input .input-items input, .form-input .input-items textarea {
    width: 100%;
    height: 44px;
    border: 1px solid #a4a4a4;
    padding-left: 44px;
    padding-right: 12px;
    position: relative;
    font-size: 16px;
    color: #6c6c6c;
}
.form-input .input-items i {
    position: absolute;
    top: 11px;
    left: 13px;
    font-size: 20px;
    z-index: 9;
    color: #6c6c6c;
}

/*my accordion*/
#accordion_box{border-right: 1px solid #eee;}

#accordion_box:hover{background: #f9f9f9; transition: 0.4s;border-bottom: 1px solid rgba(110, 110, 150, 0.2);border-radius: 4px;transition: 0.4s;}
.accordion_icon:after {
    content: "\1F447"; /* Unicode character for "minus" sign (-) */
    font-size: 15px;
    color: #aaa!important;
    float: right;
    /*text-shadow: 0px 1px 1px rgba(20,50,200,0.4);*/
    margin-left: 5px;
    margin-top: 10px;   
}

.accordion_icon.active:after {
    content: '\1F446'; /* Unicode character for "plus" sign (+) */
    font-size: 15px;    
    color: #ffaaaa!important;
}

/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
   background-color: #343a40;
   color: #f1f1f1;
   cursor: pointer;
   padding: 16px;
   width: 100%;
   text-align: left;
   border: none;
   outline: none;
   transition: 0.4s;
   font-weight: bold;
   font-size: 16px;
   font-variant: small-caps;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active, button.accordion:hover {
   background-color: #323c45;
}

/* Style the accordion panel. Note: hidden by default */
div.panel {
   padding: 0 18px;
   background-color: white;
   display: block!important;
}

/* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */
div.panel.show {
   display: block;
}
div.panel {
    padding: 10px 18px;
    background-color: white;
    /*max-height: 0;*/
    overflow: hidden;
    transition: 0.6s ease-in-out;
    /*opacity: 0;*/
    margin-bottom: 10px;
}

div.panel.show {
    opacity: 0;
    max-height: 0px; /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
}
button.accordion:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
    font-size: 13px;
    color: #fff!important;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
}

.bg_tb_hd {
    background: #2b5876!important;
  }

.basic_tx_color {color:rgba(26, 66, 131, 1.0) ;}
.tx_color_danger {color:#d92550;}
.bg_color_danger {background-color:#d92550!important;color: #fff!important;}


