[data-background] {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}


::selection {
  color: #ffffff;
  background-color: var(--default-red);
}
::-moz-selection {
  color: #ffffff;
  background-color: $default_red;
}
:-moz-placeholder {
  text-transform: capitalize;
}
::-moz-placeholder {
  text-transform: capitalize;
}
:-ms-input-placeholder {
  text-transform: capitalize;
}
::-webkit-input-placeholder {
  text-transform: capitalize;
}


a, button {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
a, button:hover {
	text-decoration: none;
}
a, button:focus {
	outline: none;
}
button {
	margin: 0px;
	padding: 0px;
	border: none;
	background: none;
}
button:focus {
	outline: none;
}
hr {
	height: 1px;
	border: none;
	display: block;
	margin: 30px 0px 30px 0px;
	background-color: #e8e8e8;
}


.form_item {
	display:flex;
	flex-direction: row !important;
	margin-bottom: 25px;
}
.form_item input {
	
	height: 50px;
	width:100%;
	padding: 0px 20px;
	border-radius: 5px;
	background-color: #333;
	border:1px solid #444;
	caret-color: white;
	color: var(--default-white);
	font-size: 16px;
	font-weight: 400;
	font-family: 'Montserrat';

}
.form_item input::placeholder {
	color: #555;
	opacity: 1;
}
.form_item input::-ms-input-placeholder {
	color: #555;
}
.form_item textarea {
	
	min-height: 130px;
    padding: 12px 20px 20px 20px;
	width: 100%;
	background-color: #333;
	border:1px solid #444;
	caret-color: white;
	color:white;

}
.form_item input:focus {
	border-color:#555;
}
.form_item textarea:focus {
	outline: 1px solid #555 !important;
	border:1px solid #555;
}


.checkbox_item input {
    float: left;
    width: 25px;
    height: 25px;
    outline: none;
    cursor: pointer;
    appearance: none;
    margin-right: 18px;
    position: relative;
    border: 2px solid #CCC;
    transition: var(--default-transition);
}
.checkbox_item input:before {
	top: 50%;
	left: 50%;
	opacity: 0;
	color: #ffffff;
	font-size: 14px;
	content: '\f00c';
	font-weight: 400;
	position: absolute;
	transition: var(--default-transition);
	transform: translate(-50%, -50%);
	font-family: 'Font Awesome 5 Pro';
}
.checkbox_item input:checked {
	border-color: var(--default-red);
	background-color: var(--default-red);
}
.checkbox_item input:checked:before {
	opacity: 1;
}
.checkbox_item label {
	margin: 0px;
	/*cursor: pointer;*/
}


.quantity_input {
  height: 55px;
  padding: 0px 11px;
  text-align: center;
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  border: 2px solid #444;
  background-color: transparent;
}
.quantity_input input {
    width: 120px;
    border: none;
    padding: 0px;
    font-size: 18px;
    font-weight: 600;
	color: var(--default-white);
    text-align: center;
	background-color: transparent;
 }
.quantity_input input:focus {
	border-radius: 5px;
	outline: 1px solid #555;
}
.quantity_input span {
	width: 30px;
	margin: 0px;
	height: 30px;
    color: #000;
    line-height: 1;
    cursor: pointer;
    font-size: 24px;
    margin: 0px 10px;
    transition: var(--default-transition);
	align-items: center;
	display: inline-flex;
	justify-content: center;
	background-color: #e9e9e9;
    
  }
.quantity_input span:hover {
    color: var(--default-red);
}


.quantity_input_transparent {
  height: 55px;
  padding: 0px 0px;
  text-align: center;
  align-items: center;
  border-radius: 20px;
  display: inline-flex;
  justify-content: center;
  border: 0px solid var(--default-white);
  background-color: transparent;
}
.quantity_input_transparent input {
    width: 50px;
    border: none;
    padding: 0px;
    outline: none;
    font-size: 20px;
    font-weight: 600;
	color: var(--default-white);
    text-align: center;
	background-color: transparent;
	
}
.quantity_input_transparent input:focus {
	outline: 0px;
}
.quantity_input_transparent span {
	width: 30px;
	margin: 0px;
	height: 30px;
	color: #999;
	line-height: 1.1;
	cursor: pointer;
	font-size: 24px;
	margin: 0px 10px 0px 10px;
	transition: var(--default-transition);
	display: inline-block;
	border: 2px solid #999;
	border-radius: 6px;
}
.quantity_input_transparent span:hover {
	color: var(--default-blue);
	border: 2px solid var(--default-blue);
}


.container {
  max-width: 1200px;
}
.tab-content>.tab-pane {
	opacity: 0;
	height: 0px;
	visibility: hidden;
	display: block;
}
.tab-content>.active {
	opacity: 1;
	height: auto;
	visibility: visible;
}


.collapse_dropdown {
	top: 100%;
	right: 60px;
	/*left: 0px;*/
	margin-top: 10px;
	min-width: 340px;
	max-width: 400px;
	position: absolute;
	background-color: #373737;
	box-shadow: 0px 10px 33.25px 1.75px #111;
	z-index: 5;
	border: 1px solid #474747;
	border-radius: 15px;
}
.collapse_dropdown hr {
	height:2px;
	background: #474747;
	margin:25px 20px 25px 20px;
}
.collapse_dropdown .profile_info {
	width:100%;
	padding: 20px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #444;
	overflow-wrap: break-word;
	display: inline-flex;
	word-break: break-word;
}
.collapse_dropdown .profile_info .user_thumbnail {
	width: 33px;
	margin-top: 2px;
	margin-left: 2px;
	margin-right: 15px;
	/*border-radius: 100%;*/
}
.collapse_dropdown .profile_info .user_thumbnail img {
	width: 33px;
	height: 33px;
}
.collapse_dropdown .profile_info .user_name {
	font-family: 'Montserrat';
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 2px;
	color: var(--default-white);
}
.collapse_dropdown .profile_info .user_title {
	display: block;
	line-height: 1;
	font-family: 'Montserrat';
	font-size: 14px;
	font-weight: 400;
	color: var(--default-white);
}
.collapse_dropdown .settings_options {
	padding: 10px 0px;
}
.collapse_dropdown .settings_options >li {
	  line-height: 1;
}
.collapse_dropdown .settings_options >li>a {
	display: block;
	padding: 15px 25px;
	font-family: 'Montserrat';
	font-size: 17px;
	font-weight: 500;
	color: var(--default-white);
}
.collapse_dropdown .settings_options >li>a i {
	margin-right: 10px;
	color: var(--default-white);
	font-size: 20px;
}
.collapse_dropdown .settings_options >li>a i:before {
	vertical-align:-10%;
}
.collapse_dropdown .settings_options >li>button {
	display: block;
	font-size: 17px;
	padding: 15px 25px;
	color: var(--default-white);
	width: 100%;
    text-align: left;
}
.collapse_dropdown .settings_options >li>button i {
	margin-right: 10px;
	color: var(--default-white);
	font-size: 20px;
}
.collapse_dropdown .settings_options >li>button i:before {
	vertical-align:-10%;
}
.collapse_dropdown .settings_options >li:hover>a {
  color: var(--default-white);
  background-color: #444;
}
.collapse_dropdown .settings_options >li:hover>button {
  color: var(--default-white);
  background-color: #444;
}
.collapse_dropdown .footer {
	
	margin-top:30px;

}
.collapse_dropdown .footer_text {
	
	color:var(--default-white);
	text-decoration:underline;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Montserrat';
	width: 100%;

}
.collapse_dropdown .footer_text:hover {
	
	color:#FFF;
	text-decoration:underline !important;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Montserrat';

}


.button_dropdown {
	top: 100%;
	right: 0px;
	margin-top: 10px;
	min-width: 320px;
	max-width: 400px;
	position: absolute;
	background-color: #373737;
	box-shadow: 0px 10px 33.25px 1.75px #111;
	z-index: 5;
	border: 1px solid #555;
	border-radius: 15px;
}
.button_dropdown .settings_options {
	padding: 20px 0px;
}
.button_dropdown .settings_options >li {
	  line-height: 1;
}
.button_dropdown .settings_options >li>a {
	display: block;
	padding: 15px 25px;
	font-family: 'Montserrat';
	font-size: 15px;
	font-weight: 500;
	color: var(--default-white);
}
.button_dropdown .settings_options >li>a i {
	margin-left: 5px;
	margin-right: 20px;
	color: var(--default-white);
	font-size: 15px;
}
.button_dropdown .settings_options >li>button {
	display: block;
	font-size: 17px;
	padding: 15px 25px;
	color: var(--default-white);
	width: 100%;
    text-align: left;
}
.button_dropdown .settings_options >li>button i {
	margin-right: 10px;
	color: var(--default-white);
	font-size: 20px;
}
.button_dropdown .settings_options >li:hover>a {
  color: var(--default-white);
  background-color: #444;
}
.button_dropdown .settings_options >li:hover>button {
  color: var(--default-white);
  background-color: #444;
}


.carousel_nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel_nav button {
    width: 50px;
    height: 50px;
    color: #999999;
    font-size: 24px;
    border-radius: 4px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    background-color: #e8e8e8;
}
.carousel_nav button:not(:last-child) {
	margin-right: 8px;
}
.carousel_nav button:hover {
	color: #ffffff;
	background-color: $default_red;
}
.carousel_nav button .align_right {
    justify-content: flex-end;
}


.slide_count_wrap {
  display: flex;
  align-items: center;
}
.slide_count_wrap span {
	line-height: 1;
	font-size: 20px;
	position: relative;
	display: inline-block;
}
.slide_count_wrap span:not(:last-child):after {
	content: '/';
	margin: 0px 6px;
	display: inline-block;
}


.ul_li,
.ul_li_right,
.ul_li_center {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  >li {
    float: left;
    list-style: none;
    display: inline-block;
  }
}
.ul_li {
  justify-content: flex-start;
}
.ul_li_center {
  justify-content: center;
}
.ul_li_right {
  justify-content: flex-end;
}
.ul_li_block {
  margin: 0px;
  padding: 0px;
  display: block;
  >li {
    display: block;
    list-style: none;
  }
}


.rating_star>li {
	color: #FDCC0D;
	line-height: 1;
	font-size: 12px;
}
.rating_star>li:not(:last-child) {
	margin-right: 2px;
}


.product_label li {
	height: 24px;
	color: #ffffff;
	line-height: 1;
	font-size: 14px;
	font-weight: 700;
	padding: 0px 10px;
	align-items: center;
	display: inline-flex;
	justify-content: center;
}
.product_label li:not(:last-child) {
	margin-right: 3px;
}


.product_action_btns li:not(:last-child) {
	margin-right: 8px;
}
.product_action_btns a {
	width: 50px;
	height: 50px;
	display: flex;
	font-size: 16px;
	text-align: center;
	align-items: center;
	border-radius: 100%;
	color: $default_black;
	justify-content: center;
	background-color: #ffffff;
	box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.07);
}
.product_action_btns a:hover {
	color: #ffffff;
	transform: translateY(-5px);
	background-color: $default_red;
}


.post_meta>li {
	font-size: 14px;
	position: relative;
}
.post_meta>li:not(:last-child) {
	margin-right: 23px;
	padding-right: 23px;
}
.post_meta>li:after {
	top: 50%;
	width: 2px;
	right: -1px;
	content: '';
	height: 14px;
	position: absolute;
	background-color: #6c6c6c;
	transform: translateY(-50%);
}
.post_meta>li:last-child:after {
	display: none;
}
.post_meta a {
	color: #555555;
}
.post_meta a:hover {
	color: $default_red;
}
.post_admin {
	align-items: center;
	display: inline-flex;
}
.admin_thumbnail {
	width: 30px;
	height: 30px;
	overflow: hidden;
	margin-right: 8px;
	border-radius: 100%;
	display: inline-block;
}


.pagination_nav {
  margin: -3px;
  margin-top: 27px;
}
.pagination_nav li {
	padding: 3px;
}
.pagination_nav li:not(:last-child) {}
.pagination_nav li:first-child {
	margin-right: 12px;
}
.pagination_nav li:last-child {
	margin-left: 12px;
}
.pagination_nav li:first-child a {
	padding: 10px 15px;
}
.pagination_nav li:last-child a {
	padding: 10px 15px;
}
.pagination_nav a {
	height: 44px;
	padding: 10px;
	display: flex;
	color: #252525;
	min-width: 44px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 3px;
	align-items: center;
	justify-content: center;
}
.pagination_nav li:hover a {
	color: #ffffff;
	background-color: $default_red;
}
.pagination_nav li .active a {
	color: #ffffff;
	background-color: $default_red;
}


.circle_social_links li:not(:last-child) {
	margin-right: 8px;
}
.circle_social_links a {
	width: 45px;
	height: 45px;
	color: #000000;
	align-items: center;
	text-align: center;
	border-radius: 100%;
	display: inline-flex;
	justify-content: center;
	background-color: #fafafa;
}


.countdown_timer strong {
	display: block;
	color: #151515;
	line-height: 1;
	font-size: 18px;
	font-weight: 700;
}
.countdown_timer span {
	display: block;
	color: #151515;
	line-height: 1;
	font-size: 18px;
	font-weight: 700;
}
.countdown_timer .primary_counter li {
	text-align: center;
}
.countdown_timer .primary_counter li:not(:last-child) {
	margin-right: 30px;
	padding-right: 30px;
}
.countdown_timer .primary_counter li strong {
	position: relative;
}
.countdown_timer .primary_counter li strong:after {
	top: 50%;
	right: -30px;
	content: ':';
	position: absolute;
	transform: translateY(-50%);
}
.countdown_timer .primary_counter li strong:last-child strong:after {
	display: none;
}


.timein_box {
	text-align: center;
	text-transform: uppercase;
}
.timein_box li:not(:last-child) {
	margin-right: 24px;
}
.timein_box strong {
	height: 60px;
	min-width: 60px;
	line-height: 60px;
	padding: 0px 10px;
	margin-bottom: 10px;
	background-color: #f3f3f3;
}
.timein_box .content_inbox li {
	padding: 15px;
	background-color: #f7faff;
}
.timein_box .content_inbox li:not(:last-child) {
	margin-right: 10px;
}


#thetop {
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  position: absolute;
}
#preloader {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1005;
  position: fixed;
  overflow: visible;
  // background: #ffffff url('../images/preloader.gif') no-repeat center center;
}


.backtotop {
	right: 15px;
	width: 50px;
	height: 50px;
	z-index: 999;
	bottom: 50px;
	display: none;
	font-size: 16px;
	position: fixed;
	border-radius: 100%;
	box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.15);
}
.backtotop .scroll {
	z-index: 1;
	width: 100%;
	height: 100%;
	display: flex;
	color: #ffffff;
	position: relative;
	align-items: center;
	justify-content: center;
}
.backtotop .bg_products_red {
	box-shadow: 0px 10px 30px 1px rgba(237, 29, 36, 0.15);
}
.deco_wrap {
	z-index: 1;
	position: relative;
}
.deco_wrap .deco_image {
	z-index: -1;
	position: absolute;
}
.has_overlay {
	z-index: 1;
	position: relative;
}
.has_overlay .overlay {
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: -1;
	position: absolute;
}
.gray_line {
	height: 1px;
	background-color: #dddddd;
}


a, button {
  transition: var(--default-transition);
}


.zoom-image {
  position: relative;
}
.zoom-image img {
  cursor: none;
  border-radius: 5px;
  box-shadow: 0 18px 5px -15px rgba(0, 0, 0, .5);
}
.hover-image {
  position: absolute;
  left: 0 !important;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  transform: translate(-50%, -20%);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


@keyframes updown {
  // animation: updown 1s infinite alternate;
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes rightleft {
  // animation: rightleft 1s infinite alternate;
  0% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(-15px);
  }
}


@media (max-width: 480px) {
	
	.collapse_dropdown {
		right: 10px;}
	.cart_sidebar.active {
		left:0px;}
	.cart_sidebar {
		width:400px;
		height:100%;}
	.ul_li_right {
		justify-content: center;
	}
}


@media (max-width: 376px) {
	
	.cart_sidebar {
		width:375px}
	
}


@media (max-width: 321px) {
	
	.cart_sidebar {
		width:320px}
	
}

