/*=== HEADER ===*/
#header {
    height: 100px;
}
.sign-in-box a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}
.sign-in-box a i {
	font-size: 40px;
	margin-left: 8px;
}
.header-wrapper {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 120;
    background: #fff;
    box-shadow: 5px 10px 10px rgba(0,0,0,0.031);
    padding: 18px 0 17px 350px;
    height: 100px;
}
.header-wrapper .container {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo, .logo img {
    display: block;
}
.page-title {
    font: 24px/1 'KlinicSlab-Bold';
    text-transform: uppercase;
    color: #BF1920;
    padding-right: 15px;
    margin-right: auto;
}
.profile-box{
    display: flex;
    align-items: center;
}
.profile {
    display: flex;
    align-items: center;
}
.profile .profile-name {
    font-size: 20px;
    margin-right: 20px;
    white-space: nowrap;
}
.profile-avatar{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}
.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #C2C2C2;
    background-attachment: scroll;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar-placeholder:after {
    content: '\f007';
    font: bold 30px/1 Font Awesome\ 5 Pro;
    color: #fff;
}
.with-image.avatar-placeholder:after {
	display: none;
}
.profile-links {
    display: flex;
}
.profile-links .profile-cart,
.profile-links .profile-notif{
    font-size: 30px;
    position: relative;
    margin-right: 30px;
}
.profile-links .profile-cart.active:after,
.profile-links .profile-notif.active:after,
.profile-menu.active-items:after{
    content: '';
    width: 13px;
    height: 13px;
    background: #BF1920;
    border-radius: 50%;
    position: absolute;
    right: -1px;
    top: 5px;
    z-index: 1;
}
.profile-links .profile-cart.active:after {
    right: -4px;
}
.profile-menu.active-items:after{
    display: none;
}
.profile-menu-inner{
/*     padding-right: 35px; */
    cursor: pointer;
}
/*
.profile-menu-inner:after{
    content: '\f078';
    font: normal 17px/1 Font Awesome\ 5 Pro;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
*/
.profile-menu .sub-menu {
    width: 260px;
    padding: 25px 30px;
    position: absolute;
    top: 100%;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    box-shadow: 5px 10px 10px rgba(0,0,0,0.031);
    background: #fff;
    left: auto;
    right: -30px;
    text-align: right;
}
.profile-menu .sub-menu li:not(:last-child) {
    margin-bottom: 12px;
}
.profile-menu .sub-menu li a {
    display: block;
    font-size: 18px;
}
.profile-menu .sub-menu li.active a,
.profile-menu .sub-menu li a:hover {
    color: #BF1920;
}
.profile-menu.sub-open .sub-menu{
    opacity: 1;
    visibility: visible;
}
/*
.profile-menu.sub-open .profile-menu-inner:after{
    content: '\f077';
}
*/
/* Cart Panel */
.cart-panel .close-btn {
    display: none;
}
.cart-panel {
    position: fixed;
    top: 100px;
    right: 0;
    bottom: 0;
    width: 0;
    color: #fff;
    background-color: #231F20;
    overflow: hidden;
    overflow-y: auto;
    z-index: 100;
}
body.show-cart .cart-panel {
    width: 365px;
}
.cart-panel .cart-inner {
    position: relative;
    min-width: 365px;
    height: 100%;
    padding: 40px 25px 0 30px;
    text-align: left;
}
.cart-panel .cart-inner > .flexbox {
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100%;
}
.cart-panel .cart-inner > .flexbox > div{
    width: 100%;
}
.cart-top {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-bottom: 2px solid #F8F8F8;
    padding:  0 15px 22px 15px;
    margin-bottom: 10px;
}
.cart-top h3 {
    margin-bottom: 0;
}
.cart-top .cart-btn {
    font-size: 30px;
}
.cart-items table {
    width: 100%;
}
.cart-items th {
    font-size: 20px;
    font-weight: bold;
}
.cart-items th, 
.cart-items td {
    border-bottom: 1px solid #F8F8F8;
    padding: 8px 15px;
}
.cart-items th:first-child {
    text-align: left;
}
.cart-items td {
    padding: 22px 15px;
    font-size: 18px;
    line-height: 1.4;
}
.cart-items th:last-child,
.cart-items td:last-child {
    width: 50px;
    padding-left: 0;
}
.cart-panel .cart-bottom {
    margin-top: auto;
    padding: 40px 0 45px;
}
.cart-panel .cart-bottom .btn {
    display: block;
    max-width: 290px;
    margin: 0 auto;
}
/*=== SIGN IN PAGE ===*/

/* Remove after proper implementation functionalyty for Login  */
.signin-page #header,
.signin-page #dashboard-menu {
    display: none;
}
/* === */
.side-banner {
    width: calc(50% - 170px);
    background-image: url('../images/banners/banner-signin.jpg')
}
.side-content {
    width: calc(50% + 170px);
    padding: 50px 120px 50px 40px;
}
.side-content.centered {
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-content .inner-box {
    width: 100%;
    max-width: 680px;
}
#sign-in-page .side-content {
	padding: 30px 120px 50px 40px;
}
.side-header .logo {
    max-width: 246px;
    margin: 0 auto 45px;
}
#sign-in-page .side-header .logo {
	margin: 0 auto 25px;
}
#sign-in-page #main-password {
	position: relative;
	z-index: 0;
}
#sign-in-page #main-password input {
	background: transparent;
}
#sign-in-page #main-password .button_strength {
	float: right;
}
#sign-in-page #main-password .strength_meter {
	position: absolute;
	width: 100%;
	height: 50px;
	top: 45px;
	left: 0;
	z-index: -1;
}
#sign-in-page #main-password .strength_meter > div {
	position: absolute;
	width: auto;
	font-size: 14px;
	text-align: left;
	top: 102%;
	left: 0;
}
#sign-in-page .password2 {
	padding-top: 14px;
}
[class*="highslide"] .popup {
	padding: 30px;
	background: #FFF;
}
[class*="highslide"] .popup h2 {
	padding-bottom: 18px;
	color: #ed3237;
}
.form-wrapper {
    padding: 0;
    font-size: 20px;
}
.form-wrapper label {
    display: block;
    margin-bottom: 18px;
    color: #231F20;
}
.form-wrapper input[type=text],
.form-wrapper input[type=email],
.form-wrapper input[type=search],
.form-wrapper input[type=password] {
    background: #F2F4F6 ;
    color: #231F20;
    width: 100%;
}
.form-wrapper input[type]:-webkit-autofill,
.form-wrapper input[type]:-webkit-autofill:hover,
.form-wrapper input[type]:-webkit-autofill:focus,
.form-wrapper input[type]:-webkit-autofill:active {
    -webkit-text-fill-color: #231F20;
}
.form-wrapper .form-row:not(:last-child) {
    margin-bottom: 50px;
}
.form-wrapper .btn-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 100px;
}
#sign-in-page .form-wrapper .btn-row {
	margin-top: 40px;
}
.form-wrapper .btn-row .btn {
    margin-left: 45px;
}
.form-wrapper input[type=submit] {
    min-width: 240px;
}
#header #cart-btn {
	position: relative;
}
#header #cart-btn span:not(:empty) {
	border-radius: 50%;
	background: #ed3237;
	font-size: 12px;
	color: #fff;
	position: absolute;
	height: 20px;
	width: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	top: -2px;
	right: -10px;
}
/*=== DASHBOARD PAGE ===*/

/* Dashboard Menu */
.dashboard-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    width: 350px;
    background: #f8f8f8;
    box-shadow: 5px 10px 10px rgba(0,0,0,0.027);
    z-index: 130;
}
.dashboard-menu .logo {
    max-width: 202px;
    margin: 0 0 80px 60px;
}
.dashboard-menu .inner-box {
    min-width: 350px;
    padding: 60px 30px 30px 0;
    position: relative;
    position: absolute;
    width: 100%;
    top: 0;
    overflow-y: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.dashboard-menu i {
    font-size: 40px;
    min-width: 45px;
    margin-right: 20px;
}
.dashboard-menu a {
    font-size: 20px;
}
.dashboard-menu .nav-menu {
    margin-bottom: 20px;
}
.dashboard-menu .nav-menu > li {
    margin-bottom: 15px;
}
.dashboard-menu .nav-menu > li.active > a,
.dashboard-menu .nav-menu > li a:hover,
.dashboard-footer a:hover {
    background: #fff;
    color: #231F20;
}
.dashboard-menu .nav-menu > li.active  a {
    color: #231F20;
}
.dashboard-menu .nav-menu > li.active a i,
.dashboard-menu .nav-menu > li a:hover i,
.dashboard-footer a:hover i,
.dashboard-menu .nav-menu .sub-menu > li.active a,
.dashboard-menu .nav-menu .sub-menu > li a:hover {
    color: #BF1920;
}
.dashboard-menu .nav-menu > li > a,
.dashboard-footer a {
    display: flex;
    align-items: center;
    padding: 20px 0 20px 60px;
    border-radius: 0px 20px 20px 0px;
}
.dashboard-menu .sub-menu {
    transition: none;
    padding-left: 115px;
    display: none;
}
.dashboard-menu .nav-menu > li.active .sub-menu {
    display: block;
}
.dashboard-menu .sub-menu li {
    margin-top: 10px;
}
.dashboard-footer {
    margin-top: auto;
}
a.menu-btn,
a.close-menu-btn {
    display: none;
    font-size: 40px !important;
    color: #707070 !important;
    position: fixed;
    top: 50%;
    left: 15px;
}
a.close-menu-btn {
    position: absolute;
    top: 260px;
    z-index: 10;
}
/* Main Content */
.dashboard-content {
    padding: 30px 0 65px 350px;
    background: #F2F2F2;
    min-height: 100%;
}
.dashboard-content > .flexbox {
    flex-wrap: nowrap;
}
.dashboard-main {
    flex-grow: 1;
    max-width: 1300px;
}
.dashboard-main.md {
    max-width: 1095px;
}
.dashboard-main.md:only-child {
	max-width: 100%;
}
.dashboard-main.md-cart {
    max-width: 1135px;
}
/* Sidebar */
.dashboard-sidebar {
    width: 385px;
    padding-left: 45px;
    flex-shrink: 0;
    flex-grow: 0;
}
.dashboard-sidebar h2 {
    margin-bottom: 30px;
}
.dashboard-sidebar .btn {
    display: block;
}
.dashboard-sidebar-top .btn {
    margin-bottom: 30px;
}
.sidebar-inner {
    background: #fff;
    border-radius: 10px;
    padding: 20px 25px 25px;
}
.order-box {
    border-bottom: 1px solid rgba(112,112,112,0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.order-box li:not(:last-child) {
    margin-bottom: 4px;
}
.order-box .order-title {
    font-size: 18px;
    font-weight: bold;
    color: #231F20;
}
.order-box i {
    margin-right: 5px;
}
.order-box .order-status {
    font-weight: bold;
    color: #BF1920;
}
.order-box .order-status.complete,
.order-box .order-status.completed {
    color: #1FBF19;
}
.order-box li:last-child > span {
    white-space: nowrap;
}
/* Filter */
.filter-panel {
    margin-bottom: 35px;
}
.filter-row {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.filter-row:first-child {
    margin-bottom: 20px;
}
.filter-row .filter-cell {
    flex-grow: 1;
    padding-right: 35px;
}
.filter-row .filter-cell.w-260 {
    width: 260px;
    flex-grow: 0;
}
.filter-row .filter-cell.w-300 {
    width: 300px;
    flex-grow: 0;
}
.filter-row .filter-cell.w-full {
    padding: 0;
    flex-grow: 0;
    flex-shrink: 0;
}
a.clear-link {
    text-decoration: underline;
}
.filter-panel input[type="text"] {
    width: 100%;
}
.filter-panel .select2-container {
    width: 100% !important;
}
.search-box {
    position: relative;
}
.search-box > .fa-search {
    font-size: 30px;
    font-weight: 300;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.search-box input[type=text] {
   padding-left: 70px;
}
/* Filter Views*/
.filter-views {
    display: flex;
}
.filter-view-sep {
    display: none;
}
.filter-views .select2-container {
    min-width: 160px;
}
.select2-container .select2-selection--single.custom-select-md {
    background: none;
    border: 2px solid #707070;
}
.select2-container .select2-selection--single.custom-select-md .select2-selection__rendered {
    font-size: 16px;
    line-height: 38px;
    padding-right: 40px;
}
.select2-container .select2-selection--single.custom-select-md .select2-selection__arrow {
    width: 45px;
}
.select2-container .select2-selection--single.custom-select-md .select2-selection__arrow:after {
    font-size: 13px;
    font-weight: bold;
}
.select2-dropdown.dropdown-md {
    border: 2px solid #707070;
    border-top: none;
}
.select2-dropdown.dropdown-md .select2-results__option {
    font-size: 16px;
}
.filter-views-group {
    display: flex;
    margin-left: 10px;
    height: 42px;
    overflow: hidden;
}
.filter-views-group a {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #707070;
    border-right: none;
    width: 42px;
}
.filter-views-group a:first-child {
    border-radius: 10px 0 0 10px;
}
.filter-views-group a:last-child {
    border-radius: 0 10px 10px 0;
    border-right: 2px solid #707070;
}
.filter-views-group a.active {
    background: #BF1920;
    border-color: #BF1920;
    color: #fff;
    border-left: transparent;
}
.filter-views-group a.active + a {
    border-left: transparent;
}
.pagination-box {
    font-size: 20px;
}
.pagination-box .active {
    color: #BF1920;
}
.pagination-box a.disabled {
    display: none;
}
.pagination-box .prev-items,
.pagination-box .next-items {
    font: 300 20px Font Awesome\ 5 Pro;
    display: inline-block;
    vertical-align: baseline;
}
.pagination-box .prev-items {
    margin-right: 5px;
}
.pagination-box .next-items {
    margin-left: 5px;
}
.pagination-box .prev-items:after {
    content: '\f060';
}
.pagination-box .next-items:after {
    content: '\f061';
}


.pagination {
    font-size: 20px;
}
.pagination .active {
    color: #BF1920;
}
.pagination ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: transparent;
}
.pagination li {
  float: left;
}

.pagination li a {
  display: block;
  text-align: center;
  padding: 2px;
  text-decoration: none;
}

.pagination li a:hover {
  background-color: #111111;
}

/* Products Section */
.product-grid-row {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.product-grid-row.product-view {
    margin-top: 55px;
}
.product-grid + .product-grid-row,
.product-list + .product-grid-row {
    margin: 35px 0 0;
}
.product-grid-row .pagination-box {
    margin-left: auto;
}
.product-grid .product-box {
    width: calc(25% - 30px);
    min-height: 340px;
}
.product-grid .product-box:nth-child(n + 5) {
    margin-top: 40px;
}
.product-grid .product-box:not(:nth-child(4n)){
    margin-right: 40px;
}
.product-box {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-box .new-tag {
	display: inline-block;
	padding: 4px 18px;
	background-color: #ed3237;
	color: #fff;
	font-size: 16px;
	position: absolute;
	z-index: 1;
	top: 22px;
	left: 0;
	border-radius: 0 8px 8px 0px;
}
.product-box .out-of-stock {
	display: inline-block;
	padding: 4px 18px;
	background-color: #ed3237;
	color: #fff;
	font-size: 16px;
	position: absolute;
	z-index: 1;
	top: 22px;
	left: 0;
	border-radius: 0 8px 8px 0px;
}
.product-box .img-box {
    height: 160px;
}
.product-box .product-label {
    font-size: 21px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0px 10px 10px 0px;
    background: #BF1920;
    color: #fff;
    position: absolute;
    min-width: 80px;
    top: 20px;
    padding: 2px 13px;
}
.product-box .product-details {
    padding: 30px 15px 0;
}
.product-box h3 {
    color: #BF1920;
    margin-bottom: 5px;
    min-height: 46px;
}
.product-box .btn-product {
    display: block;
    padding: 12px 15px;
    margin-top: auto;
    color: #231F20;
    position: relative;
}
.product-box .btn-product:before {
    content: '';
    width: calc(100% - 30px);
    height: 1px;
    position: absolute;
    left: 15px;
    top: 0;
    background: rgba(112,112,112,0.1);
}
.product-box:hover .btn-product {
    color: #BF1920;
    font-weight: bold;
}
.product-list .product-box {
	width: 100%;
	min-height: 110px;
	flex-direction: row;
	border-radius: 0;
	align-items: center;
}
.product-list .product-box + .product-box {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 2px solid #e2e2e2
}
.product-list .img-box {
	height: 85px;
	width: 82px;
}
.product-list .product-box .new-tag {
	order: 3;
	position: static;
	height: 32px;
	border-radius:8px;
}
.product-list .product-box .out-of-stock {
	order: 3;
	position: static;
	height: 32px;
	border-radius:8px;
}
.product-list .product-box .product-details {
	padding: 10px 15px 0;
	text-align: left;
}
.product-list .product-box h3 {
	min-height: 0;
}
.product-list .product-box h3 + p {
	font-size: 16px;
}
.product-list .product-box .btn-product {
	order: 4;
	margin: 0;
	font-size: 16px;
	color: #231f20;
	height: auto;
	width: auto;
	padding: 13px 30px 14px;
	min-width: 0;
	line-height: 1.08;
	display: inline-block;
	vertical-align: middle;
	font-family: 'OpenSans';
	white-space: nowrap;
	border: 2px solid #231f20;
	cursor: pointer;
	border-radius: 10px;
	text-align: center;
	margin-left: auto;
}
.product-list .product-box .btn-product:before{
	content: "\f0fc";
	font-weight: 300;
	font-family:"Font Awesome 5 Pro";
	display: inline-block;
	position: static;
	width: auto;
	height: auto;
	margin-right: 6px;
}
.product-list .product-box:hover .btn-product,
.product-list .product-box .btn-product:hover {
	font-weight: normal;
	background-color: #bf1920;
	color: #FFF;
	border-color: #bf1920;
}
/* Table Content */
.table-wrapper {
    border-radius: 10px;
    overflow: hidden;
}
.table-info {
    font-size: 20px;
    background: #fff;
}
.table-info tbody {
/*
    border-left: 40px solid #fff;
    border-right: 40px solid #fff;
*/
}
.table-info th {
    background: #707070;
    color: #fff;
    font-weight: bold;
    padding: 14px 20px;
    height: 82px;
    vertical-align: middle;
}
.table-info td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(112,112,112,0.1);
}
.table-info tr th:first-child,
.table-info tr td:first-child {
    padding-left: 30px;
}
.table-info tr td:first-child {
    padding-left: 20px;
}
.table-info .w-230 {
    width: 230px;
}
.table-info .w-270 {
    width: 270px;
}
.table-info .w-350 {
    width: 350px;
}
.table-info .w-50 {
    width: 50px;
}
.table-info .w-160 {
    width: 160px;
}
.table-info .w-420 {
   width: 420px;
}
.table-info .w-70 {
    width: 70px;
}
.table-info .w-100 {
    width: 100px;
}
.table-info.sm-text tbody td {
	font-size: 16px;
        vertical-align: middle;
}
.table-cell-name {
    color: #231F20;
}
.table-cell-address {
    max-width: 200px;
}
.table-pagination {
    display: flex;
    justify-content: center;
    background: #fff;
    padding: 17px 40px;
}
/*--- orders ---*/
.table-info .table-cell-date {
    width: 220px;
}
.table-info .table-cell-client {
    /* width: 350px; */
}
.table-info .table-cell-status {
    width: 190px;
}



/*=== PRODUCT DETAILS PAGE ===*/
.product-wrapper {
    padding: 90px 0 0 110px;
}
.product-wrapper .img-box {
    height: 620px;
    max-width: 595px;
}
.product-wrapper .flexbox > div {
    width: 50%;
}
.product-wrapper  h1 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 15px;
}
.product-item-details {
    padding: 35px 0 0 140px;
}
.product-item-details p {
    max-width: 460px;
}
.product-item-details ul {
    font-size: 18px;
    margin-bottom: 25px;
}
.product-item-details ul li {
    margin-bottom: 10px;
}
.product-item-details ul span {
    margin-right: 15px;
}
.product-item-price {
    font-size: 24px;
    font-weight: bold;
    color: #BF1920;
    margin-bottom: 20px;
}
.product-item-availability {
    color: #231F20;
    font-size: 20px;
    line-height: 70px;
    background: #fff;
    border-radius: 10px;
    max-width: 345px;
    padding: 0 15px;
    text-align: center;
    margin-bottom: 45px;
}
.product-item-bottom {
    display: flex;
}
.product-item-bottom .quantity-counter {
    margin-right: 20px;
}
/*=== CART PAGE ===*/
.cart-table {
    font-size: 18px;
}
.cart-row {
    display: flex;
    align-items: flex-start;
    width: 100%;
}
.cart-cell {
    flex-grow: 1;
    padding-right: 30px;
}
.cart-header .cart-cell {
    font: 24px/1 'KlinicSlab-Bold';
    text-transform: uppercase;
    color: #BF1920;
    padding-top: 5px;
}
.cart-row.cart-header .cart-cell:last-child {
    width: 126px;
    flex-grow: 0;
    flex-shrink: 0;
}
.cart-group {
    position: relative;
    border-bottom: 2px solid rgba(112,112,112,0.2);
    padding-right: 40px;
}
.cart-group,
.cart-header {
    padding-right: 40px;
}
.cart-item {
    margin-bottom: 40px;
}
.cart-item .cart-cell:first-child {
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 40px;
}
.cart-header .cart-cell:nth-child(2),
.cart-item .cart-cell:nth-child(3) {
    width: 250px;
    flex-shrink: 0;
    flex-grow: 0;
}
.cart-item .cart-cell:nth-child(4) {
    width: 105px;
    flex-grow: 0;
    flex-shrink: 0;
    padding-top: 5px;
}
.cart-item .cart-cell:last-child {
    padding-right: 0;
    flex-grow: 0;
    flex-shrink: 0;
    width: 21px;
}
.cart-item .img-box {
    display: block;
    width: 180px;
    height: 185px;
}
.cart-item-location .cart-cell {
    padding: 38px 0 28px;
}
.cart-item-location  i {
    margin-right: 5px;
}
.cart-item  h3 {
    color: #BF1920;
    margin-bottom: 30px;
}
.cart-item-details li {
    margin-bottom: 5px;
}
.cart-item-details li:last-child {
    margin-bottom: 0;
}
.cart-item-details span {
    color: #231F20;
}
.cart-item-details span {
    font-size: 20px;
}
.cart-item-details .cart-item-param {
    margin: 15px 0;
}
.cart-item-price {
    font-size: 20px;
    font-weight: bold;
    color: #231F20;
}
.cart-item-remove {
    font-size: 24px;
}
.cart-item-remove:not(th):hover {
    color: #BF1920;
}
.cart-submit {
    position: relative;
}
.cart-submit .btn {
    width: 100%;
    max-width: 290px;
    position: absolute;
    right: 0;
    transform: translateY(calc(-100% - 40px));
}
.product-popup-open > .site {
	filter: blur(4px);
}
.product-popup-container {
	position: fixed;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
	top:0;
	left:0;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease 0.3s; 
}
.product-popup-open .product-popup-container {
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease 0s;
}
.product-popup {
	display: block;
	position: absolute;
	top:50%;
	left: 50%;
	transform: scale(0.5) translate(-50%, -50%);
	height: auto;
	width: calc(100% - 60px);
	max-width: 600px;
	background: #fff;
	box-shadow: 0 0 6px 2px rgba(0,0,0,0.4);
	padding: 40px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease 0s;
}
.product-popup-open .product-popup {
	transform: scale(1) translate(-50%, -50%);
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease 0.3s;
}
.product-popup header {
	font-family: 'KlinicSlab-Bold';
	color: #ed3237;
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.select2-container--default .select2-selection--single {
	background-color: #ebebeb;
}
.select2-results__option--highlighted {
	background: #bf1920 !important;
	color: #fff !important;
}
.select2-results__option:empty {
	display: none;
}
.product-popup .fa-times {
	position: absolute;
	right: 20px;
	top: 14px;
	font-size: 24px;
	z-index: 99;
	cursor: pointer;
}
#add-btn {
	position: relative;
	margin-top: 24px;
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;
}
#display-order .filter-views {
	align-items: center;
}
#display-order .sort-small-grid {
	display: none !important;
}
[name="productSearch"] {
	background: #ebebeb;
}
.paging-container {
	display: flex;
	justify-content: center;
}
* + .paging-container {
	margin: 40px 0 0 0;
}
.paging-container + * {
	margin: 0px 0 40px 0;
}
.pagination,
.pagination > ul,
.pagination > ul > li,
.pagination > ul > li > *,
.pagination > div {
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.pagination {
	border-radius: 10px;
	overflow: hidden;
	border: 2px solid #707070;
}
/*
.pagination > ul {
	
	border-radius: 0 10px 10px 0;
	overflow: hidden;
}
*/
.pagination > div:empty {
	display: none;
}
.pagination > ul > li,
.pagination > div {
	width: 42px;
	align-items: flex-end;
	border: 2px solid #707070;
	border-right: none;
}
.pagination > ul > li > *,
.pagination > div > * {
	width: 100%;
	height: 100%;
	padding: 0 !important;
}
.pagination > div > * {
	display: flex;
	justify-content: center;
	align-items: center;
}
.pagination > ul > li:last-child{
	border-radius: 0 10px 10px 0;
}
.pagination > ul > li > *.active,
.pagination > div > strong {
	background-color: #bf1920;
	color: #fff;
	height: 42px;
	position: relative;
	top:2px;
	border-right: 2px solid #bf1920;
	font-weight: bold;
}
.pagination > ul > li:first-child,
.pagination > div:first-child,
.pagination > div:empty + div {
	border-left: none;
}
.pagination li a:hover,
.pagination > div > a:hover {
	background-color: #c2c2c2;
}
.pagination [title="Previous"],
.pagination [title="Next"] {
	font-size: 0;
}
.pagination [title="Previous"]:before {
	content: "\f104";
	font-family:"Font Awesome 5 Pro";
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
}
.pagination [title="Next"]:before {
	content: "\f105";
	font-family:"Font Awesome 5 Pro";
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
}
/*=== Orders Page ===*/
.dark {
    color: #BF1920 !important;
}
.edit-order-div {
    float: right;
    margin: 25px 0;
}
.select2-search input {
	height: 50px;
	padding:4px 8px !important;
}
#locations-list tbody tr:hover {
	cursor: pointer;
	background-color: #ebebeb;
}
#locations-list tbody tr:hover > td {
	border-bottom-color: transparent;
}
#location-info {
	padding-top: 40px;
	margin-bottom: 50px;
}
#location-info > header { 
	font: 20px/1 'KlinicSlab-Bold';
	color: #BF1920;
	text-transform: uppercase;
	padding-bottom: 40px;
	display: block;
}
.location-details {
	display: flex;
	color: #707070;
}
.location-details * {
	color: #707070 !important;
}
.location-details > div + div {
	padding-left: 50px;
}
.list-items img {
	max-width: 50px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 16px;
	cursor: pointer;
}
.pp_description {
	padding-left: 10px;
}
.no-prod * {
	color: #bf1920;
	font-size: 24px;
}
.notifications {
	display: block;
	width: 100%;
	max-width: 400px;
	height: 100vh;
	position: fixed;
	top:0;
	right: 0;
	z-index: 999;
	background: #ebebeb;
	border-radius: 10px 0 0 10px;
	box-shadow: -2px 3px 8px -1px rgba(0,0,0,0.5);
	transform: translateX(105%);
	transition: all 0.3s ease 0s;
	overflow: hidden;
}
.notifications h2 {
	font-size: 24px;
	color: #BF1920;
	padding-bottom: 12px;
}
.notifications * + h2 {
	padding-top: 34px;
}
.notifications h3 {
	font-size: 16px;
	margin: 0;
	text-transform: none;
	font-family: 'OpenSans' !important;
	font-weight: bold;
}
.notice-list.alerts li:hover h3 {
	color: #bf1920;
}
.notice-list {
	display: block;
	padding: 0 28px 0 0px;
}
.notice-list li p {
	font-size: 12px;
}
.notice-list li {
	position: relative;
	cursor: pointer;
}
.notice-list li + li {
	margin-top: 24px;
}
.notice-list li:after{
	content: "\f111";
	font-family:"Font Awesome 5 Pro";
	display: inline-block;
	font-weight: 700;
	font-size: 10px;
	position: absolute;
	right: -15px;
	top:50%;
	transform: translateY(-50%);
	color: #bf1920;
}
.notice-list li.read:after {
	font-weight: 400;
}
.notifications.show {
	transform: translateX(0);
}
.notifications > .alert-close {
	display: inline-block;
	font-size: 28px;
	position: absolute;
	top: 10px;
	right: 14px;
}
.notifications > div {
	padding: 56px 26px 26px 26px;
	overflow: auto;
	height: 100%;
}
.notice-list h3 + div {
	padding-top: 6px;
}
.notice-list .dot {
	font-size: 6px;
	margin: 0 4px;
	transform: translateY(-2px);
}
.line {
	display: block;
	width: 100%;
	background: #231F20;
	height: 2px;
	border-radius: 2px;
	margin: 4px 0 22px;
}
.alert-date {
	font-size: 10px;
	color: #373435;
	opacity: 0.7;
	padding: 0 0 3px 0;
	text-transform: uppercase;
}
.return + .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 40px;
	font-size: 16px;
}
.return + .select2 {
	margin-top: -7px;
	margin-right: 6px;
	width: 140px !important;
}
.cart-item-notes {
    padding-top: 25px;
}
.cart-item-notes li {
    margin-bottom: 5px;
}
.cart-item-notes li:last-child {
    margin-bottom: 0;
}
.cart-item-notes span {
    color: #231F20;
}
.cart-item-notes span {
    font-size: 20px;
}
.cart-item-notes .cart-item-param {
    margin: 15px 0;
}
.edit-item-notes {
    resize: vertical;
    width: 100%;
}
.item-gallery-wrapper .main-photo img,
.item-gallery img {
    max-height: 100%;
}
.item-gallery-wrapper {
    text-align: center;
}
.item-gallery-wrapper .main-photo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 490px;
    cursor: pointer;
}
.item-gallery-wrapper .main-photo .play-btn {
    width: 146px;
    height: 146px;
    line-height: 134px;
    padding-left: 10px;
    font-size: 60px;
    box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.4);
	text-shadow: 2px 2px 2px rgba(0,0,0,0.4);
}
.item-gallery-wrapper .main-photo .play-btn:hover {
	color: #f6921e;
}
.additional-images {
	margin: 30px auto;
}
.item-gallery {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.item-gallery a {
    position: relative;
    width: 94px;
    height: 94px;
    margin: 0 5px;
}
.remember-checkbox {
    padding:0 25px 0 0;
}
#sign-in-submit {
    min-width: 100px;
}