@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

.cbws-wrapper{

}

.cbws-product-action button.ant-btn.ant-btn-primary.ant-btn-lg {
  background: black;
  border: 1px solid black;
  text-transform: uppercase;
  font-family: 'Roboto condensed';
  color: white;
  font-size: 16px !Important;
  padding: 9px 20px !important;
  font-weight: 500;
}

.cbws-container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.cbws-product-qty-input {
  background: #f8f8f8;
  border: 0px !important;
  padding: 14px 10px !important;
  font-family: 'Lato' !important;
  font-weight: 600 !important;
}
.cbws-sidebar{
    width: 240px;
    /* position: sticky;
    top: 150px; */
}
.cbws-widget{
    margin-bottom: 30px;
}
.cbws-widget-title {
  font-size: 18px;
  text-transform: uppercase;
  font-family: 'Roboto condensed';
  letter-spacing: 0;
  color: black;
  margin-bottom: 12px;
  font-weight: 500;
  padding-left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cbws-widget-title i{
    display: none;
}

.cbws-list ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.cbws-list ul li{
    padding: 0px;
    margin: 0px ;
}
.cbws-list ul li a{
  color: black;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 30px;
  font-family: 'Roboto condensed';
  font-weight: 500;
  padding: 5px 0px 5px 8px;
  border-left: 4px solid transparent;
}
.cbws-list ul li.current > a{
    border-left-color: #FFFC20;
}
.cbws-list ul li a:hover, .cbws-list ul li.current > a{
    color: black;
}

.cbws-list ul.subcategory-list{
	margin-left: 10px;
	display: none
}

.toggle-subcategories {
    color: black;
    transition: all 0.2s ease;
    transform: rotate(0deg);
    display: inline-block;
	cursor: pointer;
	width: 24px;
    height: 20px;
	line-height: 20px;
	text-align: center;
}

.cbws-list li.toggle-show > ul.subcategory-list{
	display: block;	
}

.cbws-list li.toggle-show > .toggle-subcategories{
	transform: rotate(180deg);
}

a.previous-orders-btn{
	background: black;
	border: 1px solid black;
	text-transform: uppercase;
	font-family: 'Roboto condensed';
	font-size: 16px;
	padding: 9px 20px;
	font-weight: 500;
	color: #ffffff;
	cursor: pointer;
}


a.previous-orders-btn:hover, 
a.previous-orders-btn.current{
	color: #fffc20;
}

.cbws-search-input {
  background: #f8f8f8;
  border: 0px !important;
  padding: 0px 20px !important;
  margin-right: 10px;
}
.cbws-search-form {
    display: flex;
}
.cbws-search-form input.cbws-search-input {
    width: calc(100% - 50px);
    outline: none !important;
}
.cbws-search-form button.cbws-search-btn {
    padding: 0;
    width: 50px;
    height: 50px;
    background: #FFFC20;
    border: none;
    color: black;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}
.cbws-area{
    width: calc(100% - 260px);
}
.cbws-products{
    position: relative;
}
.cbws-products-loader{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: rgba(0,0,0,.10);
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    font-size: 50px;
}
.cbws-products.loading .cbws-products-loader{
    display: flex;
}
.cbws-no-products {
    text-align: center;
    padding: 20px 10px;
    font-size: 18px;
    font-weight: normal;
}
.cbws-products-table{
    width: 100%;
}

.cbws-products-table tr th {
  font-family: lato;
  font-size: 16px !important;
  text-transform: none;
  font-weight: normal;
  border: none !important;
  color: black !Important;
  background: #F8F8F8;
}

.cbws-products-table tr td{
    background: none !important;
    border-color: #CFCFCF !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
}

.cbws-products-table tr th:first-child,
.cbws-products-table tr td:first-child{
    padding-left: 0px;
}

.cbws-products-table tr th:last-child,
.cbws-products-table tr td:last-child{
    padding-right: 0px;
}
.cbws-product-image-col{
    width: 120px;
    text-align: center;
}
.cbws-product-name-col{
    text-align: left;
}

.cbws-product-name-col .cbws-product-action{
    display: none;
}

.cbws-product-qty-col{
    width: 100px;
    text-align: center;
}
.cbws-product-action-col{
    width: 160px;
    text-align: center;
}

.cbws-product-name-col {
  vertical-align: middle !important;
}

.cbws-product-action {
  text-align: right;
}
.cbws-product-image{
    width: 60px;
    margin: auto;
}
.cbws-product-name{
    color: black;
    font-size: 16px;
    font-weight: 400;
}
.cbws-add-to-cart {
    padding: 10px 20px !important;
    line-height: 28px !important;
}
.cbws-add-to-cart i {
    margin-right: 5px;
    display: none;
}
.cbws-add-to-cart.loading{
    pointer-events: none;
}
.cbws-add-to-cart.loading i{
    display: inline-block;
}
.cbws-pagination{
    display: none;
    text-align: center;
    padding: 20px 10px;
}
.cbws-pagination.show{
    display: block;
}
.cbws-pagination.loading .cbws-loadmore{
    display: none;
}

.cbws-loadmore {
  font-size: 18px;
  text-transform: uppercase;
  font-family: 'Roboto condensed';
  background: yellow;
  padding: 10px 20px;
  font-weight: 500;
}
.cbws-pagination .cbws-loading{
    display: none;
}

.cbws-pagination.loading .cbws-loading{
    display: inline-block;
}

.elementor-nav-menu li.wholesale-only{
    display: none;
}

.user-role-wholesale_customer .elementor-nav-menu li.wholesale-only{
    display: block;
}

.user-role-wholesale_customer .elementor-nav-menu li:not(.wholesale-only){
    display: none;
}

.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li.menu-item.wholesale-only{
    display: none;
}

.user-role-wholesale_customer .elementor-nav-menu--layout-horizontal .elementor-nav-menu>li.menu-item.wholesale-only{
    display: flex;
}

.user-role-wholesale_customer .elementor-nav-menu--layout-horizontal .elementor-nav-menu>li.menu-item:not(.wholesale-only){
    display: none;
}
.user-role-wholesale_customer .add_gift_card_form{
    display: none;
}
@media screen and (min-width: 769px)  {
    .cbws-widget-dropdown .cbws-widget-data{
        display: block !important;
    }
}

@media screen and (max-width: 768px)  {
    .cbws-sidebar {
        width: 100%;
        position: initial;
        top: auto;
    }
    .cbws-area{
        width: 100%;
    }
    .cbws-container {
        display: block;
    }
    .cbws-product-action-col{
        display: none;
    }
    .cbws-product-name-col .cbws-product-action{
        display: block;
        text-align: left;
        margin-top: 6px;
    }
    .cbws-products-table tr th, .cbws-products-table tr td {
        padding: 12px 6px;
    }
    .cbws-products-table tr th.cbws-product-qty-col{
        font-size: 0px !important;
        width: 100px;
    }
    .cbws-widget-title{
        cursor: pointer;
    }
    .cbws-widget-title i{
        display: inline-block;
    }
    .cbws-widget-dropdown.active .cbws-widget-title i{
        transform: rotate(180deg);
    }
    .cbws-widget-dropdown .cbws-widget-data{
        display: none;
    }
    .cbws-product-action button.ant-btn.ant-btn-primary.ant-btn-lg{
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
}

.user-role-wholesale_customer .woocommerce-MyAccount-content .woocommerce-Address-title > a {
    display: none;
}