/*faq CSS*/
.faq-container br ,.loading-spin{
    display: none;
}
.faq-container details{
  margin-bottom: 15px;
  background-color: white;
  padding: 5px 10px;
  box-shadow: 0 4px 8px 0 rgba(55,92,192,.08),0 0 1px 0 rgba(18,32,73,.08);
}
.faq-container summary{
	display: list-item;
  font-weight: bold;
  font-size: 18px;
}
.faq-container summary:hover{
  cursor: pointer;
}


/*Readmore CSS*/
.product-footer-showmore {
    width: 100%;
    padding-top: 50px;
    margin-top: -50px;
    text-align: center;
    background: transparent;
    background: -moz-linear-gradient(top,rgba(255,255,255,0) 0%,rgba(255,255,255,0.91) 50%,#fff 55%);
    background: -webkit-gradient(left top,left bottom,color-stop(0%,rgba(255,255,255,0)),color-stop(50%,rgba(255,255,255,0.91)),color-stop(55%,#fff));
    background: -webkit-linear-gradient(top,rgba(255,255,255,0) 0%,rgba(255,255,255,0.91) 50%,#fff 55%);
    background: -o-linear-gradient(top,rgba(255,255,255,0) 0%,rgba(255,255,255,0.91) 50%,#fff 55%);
    background: -ms-linear-gradient(top,rgba(255,255,255,0) 0%,rgba(255,255,255,0.91) 50%,#fff 55%);
    background: linear-gradient(to bottom,rgba(255,255,255,0) 0%,rgba(255,255,255,0.91) 50%,#fff 55%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#ffffff',GradientType=0);
    display: block;
    margin-bottom: 0;
}
.button_readmore {
    width: 100%;
    max-width: 335px;
    height: 34px;
    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;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    background: #ffffff;
    font-weight: bold;
    color: var(--primary-color);;
    text-decoration: none!important;
    cursor: pointer;
    border-radius: 1rem;
    -webkit-box-shadow: rgba(60, 64, 67, 0.1) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    box-shadow: rgba(60, 64, 67, 0.1) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.button_readmore i {
    margin-left: 10px !important;
}

details.product_specs{
  margin: 0 0 10px;
  background-color: #f9fafb;
  border-radius: 5px;
}
details.product_specs>article{
  padding: 10px;
}
details.product_specs td{
    border:none;
}

details.product_specs > summary {
    display: flex;
  justify-content: space-between;
  position: relative;
  background-color: #2f80ed;
  color:#fff;
  font-weight:700;
  padding: 10px;
  border-radius: 5px;
 transition:transform .3s,border .3s,background .3s,box-shadow .3s,opacity .3s,color .3s;
}
details.product_specs[open] summary {
     border-radius: 5px 5px 0 0;
}


details.product_specs summary::after {
  content: '';
  content: "+";
  transition: 0.2s;
  font-size: 2rem;
  line-height: .9;

}

details.product_specs[open] > summary::after {
  content: "-";
  transform: rotate(-180deg);
}
details.product_specs summary table td{
    max-width:50%;
}
