/**
 * CedCommerce
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the End User License Agreement (EULA)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * https://cedcommerce.com/license-agreement.txt
 *
 * @category    Ced
 * @package     Ced_CsMarketplace
 * @author      CedCommerce Core Team <connect@cedcommerce.com>
 * @copyright   Copyright CedCommerce (https://cedcommerce.com/)
 * @license     https://cedcommerce.com/license-agreement.txt
 */
.supp_detail{
    padding: 15px;
    border: 1px solid #dfdfdf;
    margin: 20px 0;
    border-radius: 10px;
    DISPLAY: inline-block;
    width: 100%;
}
.supp_detail h4.vendor-verify{
    margin: 0 0 15px 0px;
    font-size: 15px;
    text-transform: uppercase;
}
.supp_detail .vendor-detail{
   font-size: 13px;
    color: #000;
    line-height: 26px;
    margin-bottom: 15px;
}
.vendor-detail > div > label{
   font-weight: 500;
    min-width: 115px;
    width: 115px;
    display: inline-block;
    
    margin: 0 !important;
}
.vendor-detail > div > span{
    color:#686868;
    display: inline-block;
}
.vendor-detail-info button svg {
       width: 13px;
    height: 16px;
    float: left;
    margin-right: 5px;
}
.vendor-detail-info button span{
    float: left;
}
.vendor-detail-info .vendor-verify svg {
       width: 22px;
    height: 22px;
    float: left;
    margin-right: 5px;
    position: relative;
    top: -3px
}
.vendor-detail-info a {
   color: #222;
    font-size: 13px;
    font-weight: 500;
    float: left;
    text-decoration: none !important;
}
.vendor-detail-info {
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}
#vendor-detail{
    display: none;
}
.accordion .label span {
    padding-right: 15px;
}
.vendor-info {
    margin-bottom: 0;
    margin-top: 3px;
}
.vendor-rating{
    margin: 0 !important;
    float: left;
}
.accordion .label {
     position: relative;
    font-size: 15px;
    color: black;
    cursor: pointer;
    display: inline-block;
    text-align: right;
    float: right;
}
.accordion .label::before {
    color: black;
    position: absolute;
    top: 3px;
    right: 0px;
    font-size: 12px;
    content: "\f3d0";
    font-family: 'mbicon' !important;
}
.accordion .containers.active .label::before {
  transform: rotate(180deg);
    top: 2px;
}
.accordion .content {
  position: relative;
  background: white;
  height: 0;
  font-size: 20px;
  text-align: justify;
  display: none;
  overflow: hidden;
  transition: 0.5s;
  width: 100%;
}
.accordion hr {
  width: 100;
  margin-left: 0;
  border: 1px solid grey;
}
.accordion .containers.active .content {
  height: 100%;
  display: block;
}
.vendor_detail_wrapper{
    display: flex;
    justify-content: space-between;
}
.vendor-detail > div{
    display: inline-block;
    width: 100%;
}
.vendor_detail_wrapper .vendor-detail{
    flex: 0 0 calc(100% - 115px);
    margin-right: 15px;
}
.vendor_detail_wrapper .company_logo{
    flex: 0 0 100px;
}

.vendor_detail_wrapper .company_logo img{ 
    width: 100%;
    max-width: 100%;
}
@media only screen and (max-width: 480px){
    .vendor_detail_wrapper{
        flex-wrap: wrap;
    }
    .vendor-detail-info a{
        font-size: 12px;
    }
    .vendor_detail_wrapper .vendor-detail{
        flex: 0 0 100%;
        margin-right: 0;
        order: 2;
    }
    .vendor_detail_wrapper .company_logo {
        flex: 0 0 100%;
        order: 1;
        margin-bottom: 10px;
    }
    .vendor-detail-info button{
        
        padding: 7px 5px;
    }
    .vendor-detail-info button svg{
        width: 12px;
    }
}
