/* COLORS */
:root {
    --primary: #395b9b;
    --secondary: #bd2626;
	--text: #000;
    --text-lt: #5e5e5e;
    --bs-primary: #395b9b;
    --bs-secondary: #bd2626;
}
::selection {
    color: #fff;
    background: var(--primary);
}
.bg-primary {
    background-color: var(--primary) !important;
}
.bg-secondary {
    background-color: var(--secondary) !important;
}
.bg_orange {
    background-color: #f27519 !important;   
}
.bg-lt-gray {
    background-color: #f2f3f5;
}
.bg-black {
    background-color: #323232;
}

.cl-white {
    color: #fff;
}


/*  FONTS 
**  ROBOTO REGULAR & BOLD
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@font-face {
    font-family: "Robofan";
    src: url("Robofan_Free.otf") format("truetype");
  }
@font-face {
    font-family: "Robofan Free";
    src: url("Robofan_Free.otf") format("truetype");
}
body {
    font-family: 'Roboto', sans-serif;
    font-size: 0.96em;
}

/* CONTAINER BIGGER THAN 1600 */
@media (min-width:1600px) {
    .container, 
    .container-lg, 
    .container-md, 
    .container-sm, 
    .container-xl, 
    .container-xxl {
        max-width: 1546.4px;
    }
    .my-xxxl-0 {
        margin-top: 0!important;
        margin-bottom: 0!important;
    }
}


@media (min-width:2000px) {
    .container, 
    .container-lg, 
    .container-md, 
    .container-sm, 
    .container-xl, 
    .container-xxl {
        max-width: 1920px;
    }
    .my-xxxl-0 {
        margin-top: 0!important;
        margin-bottom: 0!important;
    }
}

/* ANCHOR LINKS NO UNDERLINE  */
a {
    text-decoration: none;
}

/* HELPER CLASSES */
@media (min-width:1200px) {
    .auto-xl-col {
        flex: 1 0 0;
        width: auto;
    }
    .hide-xl {
        display:none;
    }
}
.f-22 {
    font-size: 22px;
}
.d-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}


/**** HEADER ****/
@keyframes fadein {
    from {
        transform: translateY(-100%);

    }
    to {transform: translateY(0);}
}
header {
    background-color: #fff;
    z-index: 9999;
    position: relative;
}


/* TOP LINE - TOP BAR */
#top_line_container {
	background: #e2e7f3 repeat-x left top;
    color: var(--text-lt);
}
#top_line_call {
    color: var(--primary);
    font-weight: 700;
}
#top_line_call img {
    margin-top: -2px;
}
#top_line .navbar-toggler-icon {
    width: auto;
    height: auto;
    font-size: 24px;
    color: var(--text-lt);
    transform: rotate(90deg);
}
#top_line_container a {
    color: var(--text-lt);
    text-decoration: none;
}
#top_line_container a:hover {
    text-decoration: underline;
}
#top_line .vertical-bar {
    margin: 0 10px;
}
#top_line .navbar-toggler:focus {
    box-shadow: none;
}
#top_line_container .navbar-collapse.show {
    box-shadow: 0 30px 14px 0px #00000047;
}
@media (max-width:1399px) {
    #top_line_container {
        font-size: 13.5px;
    }
    #top_line_container .vertical-bar {
        margin: 0 7px;
    }
}

@media (max-width:1199px) {
    #top_line_container .navbar-collapse {
        position: absolute;
        top: 50px;
        left: 0px;
        z-index: 1;
        background: #e2e7f3 repeat-x left top;
        width: 100%;
        border-top: 1px solid grey;
    }
    #top_line_container .navbar-nav {
        padding: 10px 0;
    }
    #top_line_container .vertical-bar {
        display: none;
    }
    #top_line_container .nav-item {
        padding: 5px 10px;
    }

/*===================
* STICKY HEADER
*====================*/
    header.sticky-active {
        position: fixed;
        top: 0;
        animation: fadein .5s;
        display: flex;
        flex-direction: column;
        max-height: calc(100vh + 45px);
        width:100%;
        background: transparent;
    }
    .sticky-active #center_line_container {
        background: white;
    }
    
    .sticky-hide {
        overflow: hidden !important;
        max-height: 1000;
    }
    .sticky-active .sticky-hide {
        max-height: max-content;
        visibility: visible;
		display:none;
    }
    .sticky-active #logo_cont {
        flex-basis: 30%;
        flex-grow: 1;
        margin-right: 5px;
    }
    .sticky-active #logo_cont img {
        margin-top: 4px;
    }
    .sticky-active .inner_center_line {
        padding-top: 0 !important;
        padding-bottom: 8px !important;
    }
    .sticky-active #searching {
        margin-top: 3px !important;
    }
    .sticky-active #right_container_icons {
        order: inherit;
        margin-left: 5px;
        margin-right: 5px;
    }
    .sticky-active #gologin {
        margin-right: 0 !important;
    }
    .sticky-active .call-icon {
        display: block;
    }
    .sticky-active .menu-cart {
        margin-right: 0 !important;
        margin-left: 18px !important;
    }
    .sticky-active #carter {
        width: 60px;
    }
    .sticky-active #backetman2 {
        display: none;
    }
    .sticky-active #menu1 {
        padding: 4px 10px !important;
    }
    .sticky-active .message-icon {
        display: none;
    }

    /* Search  */
    .sticky-active #searching {
        position: relative;
    }

    .sticky-active #show_results {
        left: 0;
        right: 0;
    }
}

@media (min-width:1200px) {
    #top_line_container .container,
    #top_line_container .row,
    #top_line_container .navbar-nav {
        /*margin:0 !important;
        padding:0 !important;*/
    }
}

@media (max-width: 424px) {
    #top_line_container .navbar-collapse {
        top: 56px;
    }
    #top_line_container .top-line-left-item {
        width: 100%;
        padding: 5px 0;
    }
    #top_line_container #top_line_call {
        padding-top: 0;
    }
}


/* CENTER LINE HEADER */
@media (max-width:991px) {
    #center_line_container > .container > .row > .col {
        flex-wrap: wrap;
    }
}
#logo_cont img{
    max-width: 380px;
}
@media (max-width: 767px) {
    #logo_cont {
        flex: 1;
    }
    #logo_cont img {
        max-width: 290px;
    }
    #searching {
        order: 10;
        flex-basis: 100%;
        flex-grow: 1;
    }
}
@media (max-width:528px) {
    #logo_cont {
        flex: max-content;
    }
    #logo_cont img {
        max-width: 100%;
    }
    #searching {
        flex-basis: auto;
    }
}
@media (max-width: 400px) {
    #searching {
        width: 100%;
    }
}

/* ALGOLIA SEARCH  */
#searchxxx {
    display: flex;
    width: 100%;
    border-bottom: 2px solid #bebec0;
    border-radius: 10px;
    border-left: 2px solid #bebec0;
}
#searchbox {
    padding-left: 15px;
    margin-top: 3px;
}
@media (max-width: 400px) {
    #searchbox {
        padding-left: 10px;
        margin-top: 0;
    }
}
#searchbox span{
    display: none;
}
#searchright {
    display: flex;
    align-items: center;
    margin-bottom: -2px;
}
.ais-SearchBox input:focus {
    outline-width: 0;
    outline: none;
}
.ais-SearchBox input {
    font-size: 20px;
    color: #5e5e5e;
    border: 0;
    background-color: #fff;
    outline-width: 0;
    outline: none;
    height: 35px;
    min-width: 350px;
}
#searchbox {
    min-width: 350px;
}
@media (max-width:1600px) {
    .ais-SearchBox input {
        min-width: 300px;
    }
    #searchbox {
        min-width: 300px;
    }
}
@media (max-width:1400px) {
    .ais-SearchBox input {
        min-width: 260px;
        font-size: 18px;
    }
    #searchbox {
        min-width: 260px;
    }
}
@media (max-width:767px) {
    #searchbox {
        width: 100%;
    }
}
@media (max-width:400px) {
    .ais-SearchBox input {
        min-width: 0;
        max-width: 100%;
        width: 90%;
        font-size: 14px;
    }
    #searchbox {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width:350px) {
    .ais-SearchBox input {
        font-size: 14px;
    }
 }
#show_results {
    position: absolute;
    left: 0;
    right: 0;
    background:rgb(0 0 0 / 50%);
    top: 138px;
    height: 100vh;
    z-index: 999;
    font-size: 16px;
	top: calc(100% - 52px);
	max-height: calc(100vh - 100% + 52px);
	overflow-y: auto;
	z-index: 10;
}
    .panels-container {
        flex-wrap: wrap;
    }
#show_results .container {
    background: white;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
#show_results .search-h2 {
    font-size: 18px;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 10px;
}
@media (max-width:1199px) {
    #show_results .search-h2 {
        margin-top: 6px;
        font-size: 16px;
        margin-bottom: 2px;
    }
}
#show_results .ais-RefinementList-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
#show_results .ais-RefinementList-item {
    line-height: 1.3em;
}
#show_results .ais-RefinementList-label {
    position: relative;
    display: block;
}
#show_results .ais-RefinementList-labelText {
    padding-right: 25px;
}
#show_results .ais-RefinementList-count {
    position: absolute;
    right: 0;
}
#show_results .left-panel {
    border-right: 1px solid #cecece;
}
@media (max-width: 767px) {
    #show_results .left-panel {
        border-right: none;
        order: 2;
        flex-basis: 100%;
    }
}
#show_results .right-panel {
    flex-grow: 1;
    flex-basis: 76%;
}
#show_results .ais-Stats {
    margin-top: -20px;
}
#stats2 {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
}
@media (max-width:340px) {
    #stats2 {
        font-size: 18px;
    }
}
#show_results .ais-Hits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (max-width:1199px) {
    #show_results .ais-Hits-item:nth-child(n+5) {
        display: none;
    }
	
	
}
@media (max-width:528px) {
    #show_results .ais-Hits-item:nth-child(n+3) {
        display: none;
    }
	
	.hit-brand{
		display: none;
	}
	
	.hit-code{
		display: none;
	}
	
	.hit-name{
		font-size:14px !important;
	}
	
	.prod_left{
		max-width: 80px !important; 
		min-width: 80px !important;
	}
}
#show_results .prod_left {
    max-width: 110px;
    min-width: 110px;
    box-shadow: 1px 1px 5px 5px #ededed;
    margin-right: 20px;
    display: flex;
    align-items: center;
}
#show_results .prod_each {
    display: flex;
    margin-top: 20px;
}
@media (max-width:1199px) {
    #show_results .prod_each {
        margin-top: 10px;
    }
}
#show_results .prod_right {
    line-height: 1.3em;
}
#show_results .hit-name a {
    color: var(--text);
    font-weight: 700;
}
#submitterx {
    background-color: #4ec277;
    color: white;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    padding: 10px;
    margin: 0;
    border-radius: 10px;
    cursor: pointer;
}
#stats23 {
    margin: 50px 10%;
}
@media (max-width:1199px) {
    #stats23 {
        margin: 36px 0 10px;
    }
    #submitterx {
        font-size: 20px;
    }
}
@media (max-width:528px) {
    #submitterx {        
        font-size: 16px;
    }
}

#searchbut,
.acloser_div {
    cursor: pointer;
}
@media (max-width: 767px) {
    #searchbut img {
        height: 36px;
    }
}
#current-refinements {
    display: none;
}

/* RIGHT CONTAINER ICONS */
@media (max-width:767px) {
    #right_container_icons img {
        width: 24px;
    }
}
@media (max-width:528px) {
    #right_container_icons {
        order: 2;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    #gologin {
        margin-right: 15px !important;
    }
}
.call-icon {
    display: none;
}


/* MENU CART  */
#carter {
    border: 2px solid var(--primary);
    color: var( --primary);
    border-radius: 40px;
    width: 178px;
    min-height: 50px;    
    position: relative;
    font-size: 21px;
    display: flex;
    align-items: center;
}
@media (max-width: 1200px) {
    #carter {
        width: 150px;
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    #carter {
        width: 135px;
        font-size: 16px;
    }
    #carter img {
        width: 24px;
    }
}
@media (max-width: 528px) {
    .menu-cart {
        margin-right: 0;
        margin-left: 14px !important;
    }
    #carter {
        min-height: 40px;
    }  
    #carter img {
        width: 22px;
    }
}

#backetman1 {
    background-color: #ffcc01;
    position: absolute;
    border-radius: 50%;
    left: -16px;
    width: 32px;
    line-height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
} 



/* BOTTOM LINE HEADER  */
#bottom_line_container {
    background: url(/images/headernew/menu_bar_blue.png) repeat-x left top;
    background-size: 100% 100%;
}
#menu1 {
    color: white;
    font-size: 22px;
    padding: 10px;
    min-width: max-content;;
}
@media only screen and (max-width:400px){#menu1{font-size: 20px;}}
#menu_burger_icon {
    font-size: 24px;
    transform: rotate(90deg);
    display: inline-block;
    font-weight: 700;
    margin-left: 5px;
    cursor: pointer;
}
#menu1_text {
    cursor: pointer;
}

/* CENTER PAGE HEADER  */
.center_page {
    background-color: #e9eaec;
}

.center_page .header_per_info_image {
    margin-right: 12px;
    text-align: center;
}

@media screen and (max-width: 990px) {
  .servicesx{
	  flex-wrap: nowrap;
	  overflow-x:scroll;
  }
  
  .pd_grid_scroll{
	  flex-wrap: nowrap;
	  overflow-x:scroll;
  }
}
	

@media (max-width:1400px) {
    .center_page .header_per_info_image {
        min-width: 32px;
    }
}

.center_page .header_per_info_text1 {
    color: var(--primary);
    font-size: 15px;
    font-weight: 900;
}
@media (max-width: 767px) {
    .center_page .header_per_info_text1 {
        font-size: 14px;
        line-height: 16px;
    }
}

.center_page .header_per_info_text2 {
    font-size: 13px;
    line-height: 15px;
    color: var(--text);
}

@media (min-width:1400px) and (max-width:1599px) {
    .center_page .header_per_info_text2 {
        min-height: 46px;
    }
}

.center_page .header_per_info_text2.search {
    font-size: 12px;
}


/* BOTTOM LINE HEADER MENU  */
#topper {
    position: absolute;
    bottom: 0;
    top: 0; /*52px*/
    left: 0;
    right: 0;
    background: rgb(0 0 0 / 50%);
    height: 100vh;
    z-index: 999;
}
@media (max-width:1199px) {
    #topper {
        position: fixed;
        top:0;
        left: 0;
        right: 0;
        bottom: 0;
    }
}
#close-menu {
    cursor: pointer;
}
#topper .container {
    background: white;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.link_go_back {
    display: none;
}

@media (max-width:1199px) {
    #topper .container {
        max-width: 100%;
        display: flex;
        border-radius: 0;
        padding: 0;
    }
    #per-cat-container {
        flex-basis: 20%;
        margin: 0 !important;
        overflow-y: scroll;
        /* height: calc(92vh - 42px); */
		/*height: calc(100vh - 42px);*/
        padding: 0 10px;
    }
    #second_categories-container {
        flex-basis: 80%;
        margin: 0 !important;
        flex-grow: 1;
    }
}
@media (max-width:991px) {
    #per-cat-container {
        flex-basis: 25%;
    }
}
@media (max-width:767px) {
    #per-cat-container {
        flex-basis: 40%;
    } 
}
@media (max-width:576px) {
    #per-cat-container {
        /*flex-basis: 60px;*/
		flex-basis: 100%;
        overflow-x: hidden;
        display: block;
        padding-bottom: 12px;
    } 
    #second_categories-container {
        display:none;
    }
    .link_go_back {
        display: block;
    }
}

.per_cat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    text-align: center;
    color: var(--primary);
    font-weight: 400;
    border-bottom: 5px solid #fff;
    line-height: 1.3em;
    padding: 10px 4px;
    font-size: 15px;
}
@media (min-width:1200px) {
   .per_cat {
        width:7.14%;
    }
}
@media (max-width:1399px) {
    .per_cat {
        font-size: 14px;
    }
    .per_cat > img {
        width: 50px;
    }
    
    .per_cat a > img {
        width: 50px;
    }
}
@media (max-width:1199px) {
    .per_cat {
        flex-direction: row;
        justify-content: start;
        text-align: left;
    }
    .per_cat > img {
        width: 36px;
        margin-right: 8px;
    }

    .per_cat a > img {
        width: 36px;
        margin-right: 8px;
    }
}
@media (max-width:576px) {
    .per_cat {
        max-height: 30px;/* max-height: 50px;*/
        max-width: 100%; /* max-width: 35px;*/
		padding:0px 4px;
        border:0;        
        background: url('/images/headernew/arrow_sm_rgt.png') no-repeat right;
        background-size: 8px 8px;
    }
    .per_cat > img {
        margin-right: 20px;
        margin-left: -4px;
    }
	.per_cat > img {
        width: 25px;
        margin-right: 8px;
    }

    .per_cat a > img {
        margin-right: 20px;
        margin-left: -4px;
    }
	.per_cat a > img {
        width: 25px;
        margin-right: 8px;
    }

    .link_go_back p {
        margin:0;
        padding:0;
        text-align:center;
        font-weight:bold;
        font-size:1.5em;
        background: url('/images/headernew/arrow_lg_lft.png') no-repeat left;
        background-size: 12px 12px;
    }

    .empty-space {
        min-height:400px;
    }
}
.per_cat:hover {
    font-weight: bold;
}
.menu_totalx {
    line-height: 1.2em;
}
.menu_titlex {
    font-weight: 700;
}
.menu_title_allx a {
    color: #4c76cc;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
}
.menu_contentx a {
    font-weight: 400 !important;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
}
.menu_titlex a {
    text-decoration: none;
    color: var(--text);
}
.greenary a {
    color: green;
}
.second_category {
    border-top: 1px solid #bbbbbb;
    background-color: #f6f6f6;
    padding: 20px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
.second_category_left {
    height: 500px;
    overflow-y: scroll;
    padding-right: 200px;
}
@media (max-width:1199px) {
    .second_category_left {
        height: calc(100vh - 63px);
    }
}
@media (max-width:767px) {
    .second_category_left {
        padding-right: 0;
        overflow-x: hidden;
    }
}



#content_gaming{
	background:#000 ;
}
@media (min-width: 1200px) {
	#content_gaming .second_category_left{
		background:#000 url('/images/headernew/back12gm.jpg') no-repeat;
		background-position:right;
	}
}


#content_gaming .menu_titlex{ 				
	color:#ff0000 !important;
	font-size:16px !important;
}

#content_gaming .menu_titlex a{ 				
	color:#ff0000 !important;
	font-size:16px !important;
}

#content_gaming .subcatx a{ 				
	color:#fff !important;
	font-size:16px !important;
}

#content_gaming .menu_title_allx a{ 				
	color:#fff !important;
	font-size:16px !important;
}


#content_gaming .second_category_left{
	overflow-y :unset !important;
	border-bottom:0px !important;
	
}

#content_gaming .second_category_right{
	
border:0px !important
}

.cbx2 {
    height: 20px;
}
.cbx3 {
    height: 30px;
}
.hint {
    position: absolute;
    right: 16%;
    bottom: 30px;
    width: fit-content;
    z-index: 10;
}
@media (max-width:1199px) {
    .hint {
        top: calc(100vh - 258px);
        bottom: auto;
    }
}
@media (max-width:991px) {
    .hint {
        top: calc(100vh - 220px);
        right: 0;
    }
    .hint img {
        max-width: 200px;
    }
}
.menu_totalx a:hover {
    font-weight: 700 !important;
    color: var(--primary);
}
.bf_newestxx {
    font-size: 18px;
    background-color: #141414;
    padding: 10px 5%;
    color: #fff;
    cursor: pointer;
    text-align: center;
}
.bg_xmas_red {
    background-color: #d22426;
}
.fosi14 {
    font-size: 14px;
}
.fosi22 {
    font-size: 22px;
}
@media (max-width:1399px) {
    .bf_newestxx .fosi14 {
        line-height: 18px !important;
        display: block;
    }
}
.second_category_right {
    position: relative;
}
.second_category_right_banner {
    text-align: center;
    margin-top: 10px;
}
.second_category_right_banner > a > img {
    width: 100%;
}
.second_category_right_social {
    position: absolute;
    bottom: 20px;
    right: 15px;
    font-size: 16px;
}
@media (max-width:1599px) {
    .second_category_right_social {
        font-size: 15px;
    }
}
.second_category_right_social_title {
    margin-bottom: 10px;
    text-align: right;
}
.flri {
    float: right !important;
}
.flri-radius {
    border-radius: 10px 0px 5px 30px;
    padding: 10px 20px;
}
.fb1:hover {
    background: url(/images/headernew/fb_2.png);
}
.fb1 {
    background: url(/images/headernew/fb_1.png);
    float: left;
    width: 23px;
    height: 37px;
    margin-right: 10px;
}
.in1:hover {
    background: url(/images/headernew/inst_2.png);
}
.in1 {
    background: url(/images/headernew/inst_1.png);
    float: left;
    width: 41px;
    height: 37px;
}


/*===login header===*/
#right_container_icons img {
	width: 28px;
	height: auto;
	vertical-align: middle;
	margin: 0 3px;
}
#blue_header_bar_right > * {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	color: white;
	width: max-content;
	/*max-width: 100%;*/
	justify-content: flex-end;
}
/*
#blue_header_bar_right {
	display: flex;
	padding: 0;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	font-size: small;
}*/
#blue_header_bar_right .blue_header_bar_right_line {
	height: 23px;
	width: 1px;
	background: white;
	margin: 0 5px;
	position: relative;
	align-self: flex-start;
}
#blue_header_bar_right img {
	max-height: 25px;
	vertical-align: middle;
	display: inline-block;
	padding: 0;
}

.menu1-bg > .container > .row {
	justify-content: space-between;
	flex-direction: column-reverse;
	padding: 0 15px;
}
#blue_header_bar_right {
	display: flex;
	padding: 0;
    padding-top: 15px;
	flex-direction: row;
	justify-content: flex-end;
	align-items: baseline;
	/*width: 100%;*/
	font-size: small;
	/*margin-bottom: -40px;*/
	flex-wrap: nowrap;
}
.img-cont.col.cl-8 {
	padding: 0;
}
@media only screen and (max-width:800px){
    #blue_header_bar_right .blue_header_bar_right_line {display: none;}
    #blue_header_bar_right {flex-direction: column;align-items:flex-end;}
}
#wholesome img, #wholesome svg {
	max-width: 100%;
}
.main_divx_left {	display: none; }
#top_line2 * {
	color: black !important;
	font-size: small;
	text-decoration: none;
	padding: 3px 0 3px 7px;
	display: inline-block;
}
.bg_blus {
	background-color: #395b9b;
	padding-top: 10px;
	padding-bottom: 10px;
}
#right_container{justify-content: flex-end;flex:1;}
#right_container_icons{padding-bottom: 6px;}

@media only screen and (max-width:800px){
    #wholesome .qv_close img {width:2em;}
}

@media only screen and (max-width:400px){
    #wholesome .qv_close img {width:1.5em;}
    #right_container {
        flex-wrap: wrap-reverse;
    }
    .sticky-active #logo_cont {flex-basis: 1%;
	margin-right:0px;}
    .menu1-bg > .container > .row {padding: 0 10px;}
    .hint{display: none;}
}

@media only screen and (max-width:466px){
    .flri-radius {
        border-radius: 0;
        padding: 10px 20px;
        text-align: center;
    }
}

.bodymodal 
{
  height: 100vh;
  overflow-y: hidden;
  width: 100%;
}


.modal-overlay {
	z-index: 10000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display:none;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}



@media screen and (max-width: 992px) {
  #submition{
	  
	background-color: #f2f3f5;
	position: fixed;
	top: 0px;
	right: -20rem;
	z-index: 10001;
	width: 100%;
	overflow: scroll;
	height: 100%;
	max-width: 20rem;
	display:none;
	cursor:pointer;

  }
}

#filtra_button {
	 position: fixed;
	 bottom: 150px;
	 right: 0px;
	 width: 75px;
	 border-radius:10px 0px 0px 10px;
	 text-align:center;
	 padding:10px;
	 z-index:9999;
	 cursor:pointer;
	 color:#aaaaaa;
	 
}

		
.ck-buttony {
    margin:4px;
    background-color:#ffe45f;
    display:inline-block;
	cursor:pointer;
	 color:#000;
	 border-radius:20px !important;
	 font-size:15px;
}

.ck-buttony:hover {
    background:#6bd9f1;
	color:#fff;	 
	cursor:pointer;
}

.ck-buttony label {
    float:left;
}

.ck-buttony label span {
    text-align:center;
    padding:3px 0px;
    display:block;
	cursor:pointer;
	
	padding:5px 20px;
}

.ck-buttony label input {
    position:absolute;
    top:-20px;
	cursor:pointer;
}

.ck-buttony input:checked + span {
    background-color:#f75f30;
    color:#fff;
	border-radius:20px !important;
}




.ck-buttony2 {
    margin:4px;
    background-color:#24130b;
    display:inline-block;
	cursor:pointer;
	 color:#fff;
	 border-radius:20px !important;
	 font-size:15px;
}

.ck-buttony2:hover {
    background:#cbb794;
	color:#fff;	 
	cursor:pointer;
}

.ck-buttony2 label {
    float:left;
}

.ck-buttony2 label span {
    text-align:center;
    padding:3px 0px;
    display:block;
	cursor:pointer;
	
	padding:5px 20px;
}

.ck-buttony2 label input {
    position:absolute;
    top:-20px;
	cursor:pointer;
}

.ck-buttony2 input:checked + span {
    background-color:#cbb794;
    color:#fff;
	border-radius:20px !important;
}

.displaynx{
	display:none;
}

.bg_blue2{
	background-color:#0096d6 !important;
}

.bg_fff{
	background-color:#fff !important;
}

.bg_555{
	background-color:#555 !important;
}

.mark, mark {
     padding: 0em !important; 
    background-color: #ffff00 !important;
}

.statusx0{
	background-color:#fff;height:5px;width:30%;margin-left: 35%;border-radius: 0px 0px 10px 10px;
}

.statusx1{
	background-color:#bfc9f5;height:5px;width:30%;margin-left: 35%;border-radius: 0px 0px 10px 10px;
}

.statusx2{
	background-color:#a9e1ed;height:5px;width:30%;margin-left: 35%;border-radius: 0px 0px 10px 10px;
}

.statusx3{
	background-color:#e1d0af;height:5px;width:30%;margin-left: 35%;border-radius: 0px 0px 10px 10px;
}

.statusx4{
	background-color:#180033;height:5px;width:30%;margin-left: 35%;border-radius: 0px 0px 10px 10px;
}



.cl-white{	
	color:#fff  !important;
}

.bf-gold{	
	color:#38a095;
}

.bg_bf_black{
	background-color:#000 !important;
}

.bg_rc_red{
	background-color:#ff3716 !important;
}

.bfbasket{
	background-color:#000 !important;
	color:#fff !important;
}

.rcbasket{
	background-color:red !important;
	color:#fff !important;
}



#wholesomexxx .pd_spec_title{
	color:#000 !important
}

#wholesomexxx .pd_spec_value{
	color:#000 !important
}

#wholesomexxx a{
	color:#000 !important
}