/*----------------------
Get integer from unit size
/// @param {Unit} $n - Initial Unit
-----------------------*/

/*----------------------
Replace `$search` with `$replace` in `$string`
-----------------------*/

/*----------------------
Responsive breakpoints
-----------------------*/

/*----------------------
Rem font unit with px fallback and optional line height
-----------------------*/

/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
*/

.cc--full-width {
	width: 100%;
	display: block;
}

.cc-admin {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.cc-admin * {
	line-height: inherit;
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

.cc--hide {
	display: none;
}

.cc-search-box {
	width: 100%;
	border-radius: 8px;
	background: white;
	border: 1px solid #EEEEEE;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 16px;
}

.cc-search-box__container {
	position: relative;
}

.cc-search-box .cc__input {
	width: 100%;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: transparent;
	font-weight: normal;
	color: #212121;
	border-radius: 8px;
	border: none;
	font-size: 16px;
	padding: 21px 50px 22px 26px;
}

.cc-search-box .cc__input::-webkit-input-placeholder {
	color: #757575;
	font-weight: normal;
}

.cc-search-box .cc__input::-moz-placeholder {
	color: #757575;
	font-weight: normal;
}

.cc-search-box .cc__input:-ms-input-placeholder {
	color: #757575;
	font-weight: normal;
}

.cc-search-box .cc__input::-ms-input-placeholder {
	color: #757575;
	font-weight: normal;
}

.cc-search-box .cc__input::placeholder {
	color: #757575;
	font-weight: normal;
}

.cc-search-box .cc__input:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
	border-color: #757575;
}

.cc-search-box .cc__input[readonly] {
	border: 1px solid #BDBDBD;
}

.cc-search-box .cc__input[readonly]:focus {
	border: 1px solid #BDBDBD;
}

.cc-search-box .cc__input[disabled] {
	cursor: not-allowed;
	opacity: 0.6;
}

.cc-search-box .cc__input[disabled]:focus {
	border: 1px solid #E0E0E0;
}

.cc-search-box__icon {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 26px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	outline: none;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	line-height: inherit;
	cursor: pointer;
	padding: 0;
	border: none;
	background-color: transparent;
	pointer-events: none;
	color: rgba(33, 33, 33, 0.5);
	font-size: 16px;
}

.cc-search-box__reset {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 26px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.cc-search-box__reset .cc__reset-button {
	display: block;
	outline: none;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	line-height: inherit;
	cursor: pointer;
	padding: 0;
	border: none;
	background-color: transparent;
	color: rgba(33, 33, 33, 0.5);
	font-size: 16px;
	-webkit-transition: color 0.2s ease;
	-o-transition: color 0.2s ease;
	transition: color 0.2s ease;
}

.cc-search-box__reset .cc__reset-button:hover {
	color: #212121;
}

.cc-search-results {
	position: relative;
}

.cc-search-results:before {
	content: '';
	position: absolute;
	z-index: 3;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.15s ease;
	-o-transition: opacity 0.15s ease;
	transition: opacity 0.15s ease;
}

.cc-search-results:after {
	content: '';
	position: absolute;
	z-index: 4;
	top: 10%;
	left: 50%;
	margin-left: -15px;
	border: 3px solid white;
	border-radius: 50%;
	border-top: 3px solid #B41E44;
	width: 30px;
	height: 30px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.15s ease;
	-o-transition: opacity 0.15s ease;
	transition: opacity 0.15s ease;
}

.cc-search-results.cc--loading {
	pointer-events: none;
	opacity: 0.7;
}

.cc-search-results.cc--loading:before,
.cc-search-results.cc--loading:after {
	opacity: 1;
}

.cc-search-results__none {
	width: 100%;
	background-color: white;
	padding: 50px 20px;
	border-radius: 8px;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.cc-search-results__none .cc__icon {
	margin-bottom: 20px;
}

.cc-search-results__none .cc__text {
	text-align: center;
	font-size: 20px;
}

.cc-search-results__list {
	list-style: none;
	margin: 0 -5px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.cc-search-results__item {
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 12px;
	background-color: white;
	border-radius: 8px;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.2s ease;
	transition: -webkit-transform 0.2s ease;
	-o-transition: transform 0.2s ease;
	transition: transform 0.2s ease;
	transition: transform 0.2s ease, -webkit-transform 0.2s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.cc-search-results__item:hover {
	-webkit-transform: scale(1.03);
	transform: scale(1.03);
}

.cc-search-results__item .cc__link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #212121;
	padding: 25px 20px;
}

.cc-search-results__item .cc__flag {
	position: absolute;
	z-index: 2;
	right: 17px;
	top: 17px;
	width: 16px;
	height: 16px;
}

.cc-search-results__item .cc__flag img {
	display: block;
	width: 100%;
	height: 100%;
}

.cc-search-results__item .cc__image {
	height: 104px;
	margin-bottom: 15px;
}

.cc-search-results__item .cc__image img {
	display: block;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
	width: 100%;
	height: 100%;
}

.cc-search-results__item .cc__title {
	color: #212121;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 5px;
}

.cc-search-results__item .cc__meta {
	font-size: 14px;
	text-align: center;
	color: #757575;
}

.cc-search-results__item .cc__meta-line:not(:last-child) {
	margin-bottom: 2px;
}

/* Safari */

.cc-footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 12px 16px;
	background-color: white;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
}

.cc-footer__stats {
	font-size: 16px;
	color: #9E9E9E;
}

.cc-footer__stats b {
	color: #212121;
}

.cc-pagination {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.cc-pagination__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	margin-left: -4px;
	margin-right: -4px;
}

.cc-pagination__list li {
	margin: 0 4px;
}

.cc-pagination__list li .page-numbers {
	text-decoration: none;
	color: #212121;
	font-weight: bold;
	min-width: 32px;
	height: 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 8px;
	cursor: pointer;
	padding: 0 10px;
	-webkit-transition: color 0.2s ease, background-color 0.2s ease;
	-o-transition: color 0.2s ease, background-color 0.2s ease;
	transition: color 0.2s ease, background-color 0.2s ease;
	background-color: #EEEEEE;
}

.cc-pagination__list li .page-numbers:hover {
	color: #B41E44;
	text-decoration: none;
}

.cc-pagination__list li .page-numbers.current {
	background-color: #B41E44;
	color: white;
}

.cc-admin {
	margin-left: 0;
	margin-right: 10px;
}

.cc-admin__title {
	padding: 0 !important;
}

.cc-admin__blocked {
	padding-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

.cc-admin__blocked:before {
	content: '';
	position: absolute;
	z-index: 3;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.15s ease;
	-o-transition: opacity 0.15s ease;
	transition: opacity 0.15s ease;
}

.cc-admin__blocked:after {
	content: '';
	position: absolute;
	z-index: 4;
	top: 10%;
	left: 50%;
	margin-left: -15px;
	border: 3px solid white;
	border-radius: 50%;
	border-top: 3px solid #B41E44;
	width: 30px;
	height: 30px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.15s ease;
	-o-transition: opacity 0.15s ease;
	transition: opacity 0.15s ease;
}

.cc-admin__blocked.cc--loading {
	pointer-events: none;
	opacity: 0.7;
}

.cc-admin__blocked.cc--loading:before,
.cc-admin__blocked.cc--loading:after {
	opacity: 1;
}

.cc-admin__blocked-products {
	width: 60%;
	padding-right: 20px;
}

.cc-admin__blocked-list {
	width: 40%;
	-ms-flex-item-align: start;
	align-self: flex-start;
}

.cc-admin__blocked-list-none {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	padding: 20px 10px;
}

.cc-admin__blocked-list-none .cc__text {
	margin-top: 15px;
	font-weight: bold;
}

.cc-admin__blocked-list-title {
	width: 100%;
	border-radius: 8px;
	background: white;
	border: 1px solid #EEEEEE;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 16px;
	padding: 5px 15px;
	height: 52px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-size: 18px;
	font-weight: bold;
}

.cc-admin .cc__link {
	padding: 15px;
}

.cc-admin .cc__meta {
	margin-top: 20px;
}

.cc-admin .cc__input {
	padding: 10px 50px 10px 26px;
}

.cc-admin .cc-product-action-button {
	display: block;
	outline: none;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	line-height: inherit;
	cursor: pointer;
	padding: 10px;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #B41E44;
	border-radius: 0;
	color: white;
	font-size: 14px;
	font-weight: bold;
	opacity: 1;
	-webkit-transition: background-color 0.2s ease, opacity 0.2s ease;
	-o-transition: background-color 0.2s ease, opacity 0.2s ease;
	transition: background-color 0.2s ease, opacity 0.2s ease;
	width: 100%;
}

.cc-admin .cc-product-action-button:hover {
	background-color: #881733;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.cc-admin .cc-product-action-button.cc--hide {
	display: none;
}

.cc-admin .cc__save-button {
	display: block;
	outline: none;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	line-height: inherit;
	cursor: pointer;
	padding: 10px 20px;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #B41E44;
	border-radius: 0;
	color: white;
	font-size: 14px;
	font-weight: bold;
	opacity: 1;
	-webkit-transition: background-color 0.2s ease, opacity 0.2s ease;
	-o-transition: background-color 0.2s ease, opacity 0.2s ease;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

.cc-admin .cc__save-button:hover {
	background-color: #881733;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.cc-search-results__list .js-blocked-remove {
	display: none;
	background-color: #212121;
}

.cc-search-results__item.cc--blocked {
	background-color: #9E9E9E;
}

.cc-search-results__item.cc--blocked .js-blocked-add {
	display: none;
}

.cc-search-results__item.cc--blocked .js-blocked-remove {
	display: block;
}

@media only screen and (min-width: 751px) and (max-width: 900px) {

.cc-search-results__item {
	width: calc(50% - 10px);
}

.cc-search-results__item.cc--blocked-item {
	width: calc(50% - 10px);
}

}

@media only screen and (min-width: 901px) {

.cc-search-results__item {
	width: calc(33.33333% - 10px);
}

.cc-search-results__item.cc--blocked-item {
	width: calc(50% - 10px);
}

}

@media only screen and (max-width: 900px) {

.cc-footer {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.cc-footer__stats {
	display: none;
}

}

@media only screen and (max-width: 750px) {

.cc-search-results__item {
	width: 100%;
}

.cc-pagination__list li .next,
.cc-pagination__list li .prev {
	display: none;
}

.cc-search-results__item.cc--blocked-item {
	width: 100%;
}

}

@-webkit-keyframes spin {

0% {
	-webkit-transform: rotate(0deg);
}

100% {
	-webkit-transform: rotate(360deg);
}

}

@keyframes spin {

0% {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}

}

