/*--- Main styles ---*/

* {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.imageBlock {
	max-width: 100%;
    display: block;
    height: auto;
	border-radius: 4px;
}

li.image img {
	display: none;
}
/*--Loader--*/

#cartLoader{
  position:fixed;
  display:none;
  top:0;
  right:0;
  bottom:0;
  left:0;
  z-index:999;
}
.lds-dual-ring {
  display: block;
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width: 64px;
  height: 64px;
  z-index:999;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #555;
  border-color: #555 transparent #555 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*End*/



/*--Backgrounds--*/

.bg1{
	background: linear-gradient(#17b500, #00880e);
}

.bg2{
	background: #232323;
}

.bg3{
	background: #e5ebf4;
}

.bg4{
	background: #fafafa;
}

.bg5 {
	background: #e4ebf5;
}

.bg_icons {
	background: #dee6f4;
}

.bg_catalog {
	background: #99a8bd;
}

.bg_secondary_color {
	background: #ffe600;
}


/*End*/


/*--Content--*/

.main_container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 10px;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex_row {
	display: inline-flex;
	width: max-content;
}

.flex_column {
	display: flex;
	flex-direction: column;
}

.space_between {
	justify-content: space-between;
}
.space_evenly {
	justify-content: space-evenly;
}

.none,
.menuHidden {
	display: none;
}

.overflow_hidden {
	overflow: hidden;
}
.grid {
	display: grid;
}

.modTitle {
	font-size: 26px;
	font-weight: 700;
}

.pageHeader {
	margin: 0 0 45px;
}

@media (max-width: 920px) {
	.pageHeader {
		text-align: center;
		margin-bottom: 25px;
	}
}

.pageTitle {
	font-size: 32px;
    font-weight: 700;
}
/*End*/


/*--Fields--*/

select, input, textarea, button {
	padding: 10px;
	border: 1px solid #dedede;
	outline: none;
	max-width: 100%;
	font-size: 12px;
	border-radius: 4px;
}

.invalid, .fielderror {
	border: 1px solid #e91f36;
}
/*End*/



/*-- Text --*/

.color1{
	color: #ffe600;
}

.color2{
	color: #fff;
}

.color3 {
	color: #25354d;
}

.color4 {
	color: #142338;
}
.color_available{
	color: #51cd4b;
}

.color_not_available {
	color: #ff2b2b;
}

/*End*/


/*--SVG--*/

svg {
	width: 23px;
	height: 25px;
}

.path_color {
	fill: #fff;
}

.path_color1 {
	fill: #fff;
}

.path_color_close {
	fill: #333;
    stroke: #333;
}

.path_color2 {
	fill: transparent;
	stroke: #fff;
}

.path_color3,
.path_bg {
	fill: #ff3d3d;
}
.path_color4 {
	fill: #142338;
}

/*End*/


/*--- Scroll ---*/

.scroll,
.shopFilterH .sf_block_params,
.navbar1_menu_fix > ul li ul {
	padding: 0 20px 0 0;
    overflow: hidden;
    overflow-y: auto;
}
::-webkit-scrollbar-button,
.shopFilterH .sf_block_params::-webkit-scrollbar-button,
.navbar1_menu_fix .odsubcat-2::-webkit-scrollbar-button{
	width:0px;
	height:0px
}
::-webkit-scrollbar-track,
.shopFilterH .sf_block_params::-webkit-scrollbar-track {
	width:3px;
	height:3px
}

::-webkit-resizer,
.shopFilterH .sf_block_params::-webkit-resizer{
  width:3px;
  height:0px
}
::-webkit-scrollbar{
  width: 3px;
  height: 3px;
}
::-webkit-scrollbar-thumb{
	background-color: #142338;
}
.scroll::-webkit-scrollbar-thumb:hover{
}

.scroll::-webkit-scrollbar,
.sf_block_params::-webkit-scrollbar{
	width: 3px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
}
.shopFilterH .sf_block_params::-webkit-scrollbar-thumb {
	background-color: transparent;
	transition: .3s;
}
.shopFilterH .sf_block_params:hover::-webkit-scrollbar-thumb {
	background-color: #142338;
}


/*End*/


/* Checkboxes */

.checkbox,
.checkbox_inside input {
	position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 5px 0 0 10px;
}
.checkbox + label,
.checkbox_text {
	position: relative;
	padding: 0 0 0 25px;
	margin: 0 20px 20px 0;
	cursor: pointer;
}
.checkbox + label:before,
.checkbox_text:before {
	content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 14px;
    height: 14px;
    background: transparent;
    border: 1px solid #404d60;
    border-radius: 50%;
    transition: .2s;
    z-index: 1;
}
.checkbox:checked + label:before,
.checkbox_inside input:checked + .checkbox_text:before {
	background: #404d60;
} 
.checkbox:checked + label:after,
.checkbox_inside input:checked + .checkbox_text:after {
	content: '\f00c';
	font-family: "Font Awesome 5 free";
	font-size: 8px;
	position: absolute;
	top: 6px;
	left: 5px;
	color: #fff;
	z-index: 2;
}

.checkbox:focus + label:before,
.checkbox_inside input:focus + .checkbox_text:before {
	
}

/*End*/


/* Radio */
.radio,
.radio_inside input  {
	position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 10px 0 0 7px;
}
.radio + label,
.radio_text {
	position: relative;
    cursor: pointer;
    min-width: 55px;
    height: 30px;
    line-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fafafa;
    padding: 5px 18px;
    border-radius: 4px;
}
.input_type_radio {
	position: relative;
	display: inline-flex;
	margin: 0 20px 10px 0;
	transition: .3s;
}
.input_type_radio:before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 30px;
}

.input_type_radio:before .radio:checked{
	background: #161717;
}


.radio:checked + label > span{
	color: #fff;
}
.radio:checked + label {
	background: #ef7230;
}

.radio:checked + label:before,
.radio_inside input:checked + .radio_text:before {
	background: #d2dde4;
}

.radio:focus + label:before,
.radio_inside input:focus + .radio_text:before {
	border: 2px solid #d2dde4;
}
.radio_attr_label {
	color: #424242;
}

/*End*/


/* Buttons */

.btn_small {
	position: relative;
	cursor: pointer;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	font-size: 12px;
	border-radius: 4px;
}
.btn_medium {
	position: relative;
	cursor: pointer;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border-radius: 4px;
}

.btn_large {
	position: relative;
	cursor: pointer;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	border-radius: 4px;
}


.btn_bg_first {
	background:#00a046;
	color:#fff;
	transition:.3s;
}


.btn_bg_first:hover {
	background:#00a046;
	color:#fff;
}

.btn_bg2 {
	background: #dedede;
	font-size: 14px;
	color: #000;
	transition:.3s;
}

.btn_bg2:hover {
	color: #000;
}

.btn_bg3 {
	background: #dcd9d9;
	color: #424242;
	font-size: 14px;
	transition:.3s;
}

.btn_bg3:hover {
	color: #ffe600;
}


/* --- Sidebar hidden fixed --- */
.sidebar_hidden_left {
	position: fixed;
	top: 0;
	left: -100%;
	min-width: 200px;
	height: 100vh;
	background: #fff;
	z-index: 100;
	transition: .3s;	
}

.sidebar_hidden_left.show {
	left: 0;
}
.sidebar_hidden_right {
	position: fixed;
	top: 0;
	right: -100%;
	min-width: 200px;
	height: 100vh;
	background: #fff;
	z-index: 100;
	transition: .3s;	
}
.sidebar_hidden_right.show {
	right: 0;
}

/*End*/

/*--- Description ---*/
.description img{
	max-width:100%;
	height:auto;
	display:block;
}
.description {
	max-width: 100%;
	overflow-x: auto;
	
}
.description, .description p{
	font-family:arial;
	line-height:130%;
	font-weight:400;
}
.description::-webkit-scrollbar-button {
	width:3px;
	height:0px
}
.description::-webkit-scrollbar-track {
	height: 3px;
}
.description::-webkit-scrollbar-thumb {
	background-color: #142338;
}

.description::-webkit-resizer {
	width:3px;
	height:0px
}
.description::-webkit-scrollbar{
	width: 3px;
	height: 3px;
}


.description h1,
.description h1 span {
	font-size: 26px;
	font-weight: 600;
	margin:20px 0;
}

.description h2,
.description h2 span {
	font-size: 24px;
	font-weight: 600;
	margin:20px 0;
}

.description h3,
.description h3 span {
	font-size: 22px;
	font-weight: 600;
	margin: 15px 0;
}

.description h4,
.description h4 span {
	font-size: 20px;
	font-weight: 600;
	margin:15px 0;
}

.description h5,
.description h5 span {
	font-size: 18px;
	font-weight: 600;
	margin:10px 0;
}

.description h6,
.description h6 span {
	font-size: 16px;
	font-weight: 600;
	margin:10px 0;
}

.description table {
	display: block;
    position: relative;
    height: auto!important;
    width: max-content!important;
	border-collapse: collapse;
	border: 1px solid #dedede;
}
.description caption {
	text-align: left;
    padding-left: 40px;
}
.description td {
	border-bottom: none;
	padding: 10px;
}
.description tr > td:first-child {
	border-left: none;
}
.description tr > td:last-child {
	border-right: none;
}

.description ol li{
	list-style: decimal;
}
.description ul li{
	position: relative;
}

.description ul li:before {
	content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef7230;
    top: 50%;
    left: -15px;
}

.description ul, 
.description ol,
.description li {
	padding: 0 0 0 10px;
    margin: 10px;
}
/*End*/

