/* #region qsBasics */

button:focus {
	outline: none !important;
}

@-webkit-keyframes preLoaderAnimation {
    0%{background-position:57% 0%}
    50%{background-position:44% 100%}
    100%{background-position:57% 0%}
}
@-moz-keyframes preLoaderAnimation {
    0%{background-position:57% 0%}
    50%{background-position:44% 100%}
    100%{background-position:57% 0%}
}
@keyframes preLoaderAnimation {
    0%{background-position:57% 0%}
    50%{background-position:44% 100%}
    100%{background-position:57% 0%}
}

.select2 {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.alert p {
	margin: unset;
}

.preloader {
	position: fixed;left: 0;top: 0;width: 100%;height: 100%;text-align: center;z-index: 6001; 
	display: flex;
	background: linear-gradient(318deg, rgba(0, 0, 0, 1), rgba(255, 255, 255, 1));
    background-size: 200% 300%;

    -webkit-animation: preLoaderAnimation 5s ease infinite;
    -moz-animation: preLoaderAnimation 5s ease infinite;
    animation: preLoaderAnimation 5s ease infinite;
}
.preloader:after { 
	content: ""; height: 100%; display: inline-block; vertical-align: middle; 
}

.preloader .spinner-border {
	color: var(--primary-color) !important;
}

a:hover {
  color: var(--primary-color);
}

.text-one-color,
.uk-tab > .uk-active > a {
	color: var(--primary-color);
}

.uk-tab > .uk-active > a {
	border-color: var(--primary-color);
}

.background-one-color {
	background-color: var(--primary-color);
}

.custom-switch .custom-control-label::after {
	background-color: var(--primary-color);
}

.custom-control-input:checked ~ .custom-control-label::before {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.btn-one-color {
	color: #fff;
	border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.btn-one-color:hover {
	color: var(--primary-color);
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}

a {
  color: var(--secondary-color);
}

a:hover {
	text-decoration: none !important;
}

img[data-src][src="/files/svg-loaders/rings.svg"] { 
	padding: 50px;
}

img[data-src][src=""] { 
	border: 8px solid #f3f3f3;
  	border-top: 8px solid var(--primary-color);
  	border-radius: 50%;
  	width: 50px;
  	height: 50px;
  	animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-ellips {
  font-size: 20px; /* change size here */
  position: relative;
  width: 4em;
  height: 1em;
  margin: 10px auto;
}

.loader-ellips__dot {
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background: var(--primary-color); /* change color here */
  position: absolute;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
  left: 0;
}
.loader-ellips__dot:nth-child(3) { left: 1.5em; }
.loader-ellips__dot:nth-child(4) { left: 3em; }

@keyframes reveal {
  from { transform: scale(0.001); }
  to { transform: scale(1); }
}

@keyframes slide {
  to { transform: translateX(1.5em) }
}

.loader-ellips__dot:nth-child(1) {
  animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
  animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
  animation-name: reveal;
  animation-direction: reverse;
}

.btn-pink {
  color: #343a40;
  background-color: #ff8acc;
  border-color: #ff8acc; }
  .btn-pink:hover {
    color: #fff;
    background-color: #ff64bb;
    border-color: #ff57b6; }
  .btn-pink:focus, .btn-pink.focus {
    -webkit-box-shadow: 0 0 0 0.15rem rgba(225, 126, 183, 0.5);
            box-shadow: 0 0 0 0.15rem rgba(225, 126, 183, 0.5); }
  .btn-pink.disabled, .btn-pink:disabled {
    color: #343a40;
    background-color: #ff8acc;
    border-color: #ff8acc; }
  .btn-pink:not(:disabled):not(.disabled):active, .btn-pink:not(:disabled):not(.disabled).active,
  .show > .btn-pink.dropdown-toggle {
    color: #fff;
    background-color: #ff57b6;
    border-color: #ff4ab0; }
    .btn-pink:not(:disabled):not(.disabled):active:focus, .btn-pink:not(:disabled):not(.disabled).active:focus,
    .show > .btn-pink.dropdown-toggle:focus {
      -webkit-box-shadow: 0 0 0 0.15rem rgba(225, 126, 183, 0.5);
              box-shadow: 0 0 0 0.15rem rgba(225, 126, 183, 0.5); }

.btn-purple {
  color: #fff;
  background-color: #5b69bc;
  border-color: #5b69bc; }
  .btn-purple:hover {
    color: #fff;
    background-color: #4654ab;
    border-color: #4250a2; }
  .btn-purple:focus, .btn-purple.focus {
    -webkit-box-shadow: 0 0 0 0.15rem rgba(116, 128, 198, 0.5);
            box-shadow: 0 0 0 0.15rem rgba(116, 128, 198, 0.5); }
  .btn-purple.disabled, .btn-purple:disabled {
    color: #fff;
    background-color: #5b69bc;
    border-color: #5b69bc; }
  .btn-purple:not(:disabled):not(.disabled):active, .btn-purple:not(:disabled):not(.disabled).active,
  .show > .btn-purple.dropdown-toggle {
    color: #fff;
    background-color: #4250a2;
    border-color: #3e4b99; }
    .btn-purple:not(:disabled):not(.disabled):active:focus, .btn-purple:not(:disabled):not(.disabled).active:focus,
    .show > .btn-purple.dropdown-toggle:focus {
      -webkit-box-shadow: 0 0 0 0.15rem rgba(116, 128, 198, 0.5);
              box-shadow: 0 0 0 0.15rem rgba(116, 128, 198, 0.5); }

.btn-blue {
  color: #fff;
  background-color: #71b6f9;
  border-color: #71b6f9; }
  .btn-blue:hover {
    color: #fff;
    background-color: #4ca3f7;
    border-color: #409df7; }
  .btn-blue:focus, .btn-blue.focus {
    -webkit-box-shadow: 0 0 0 0.15rem rgba(134, 193, 250, 0.5);
            box-shadow: 0 0 0 0.15rem rgba(134, 193, 250, 0.5); }
  .btn-blue.disabled, .btn-blue:disabled {
    color: #fff;
    background-color: #71b6f9;
    border-color: #71b6f9; }
  .btn-blue:not(:disabled):not(.disabled):active, .btn-blue:not(:disabled):not(.disabled).active,
  .show > .btn-blue.dropdown-toggle {
    color: #fff;
    background-color: #409df7;
    border-color: #3497f6; }
    .btn-blue:not(:disabled):not(.disabled):active:focus, .btn-blue:not(:disabled):not(.disabled).active:focus,
    .show > .btn-blue.dropdown-toggle:focus {
      -webkit-box-shadow: 0 0 0 0.15rem rgba(134, 193, 250, 0.5);
              box-shadow: 0 0 0 0.15rem rgba(134, 193, 250, 0.5); }

.rating {
  	display: inline-block;
	position: relative;
	height: .9rem;
	line-height: .9rem;
	font-size: .9rem;
}

.rating label {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	cursor: pointer;
}

.rating label:last-child {
  	position: static;
}

.rating label:nth-child(1) {
  	z-index: 10;
}

.rating label:nth-child(2) {
  	z-index: 9;
}

.rating label:nth-child(3) {
  	z-index: 8;
}

.rating label:nth-child(4) {
  	z-index: 7;
}

.rating label:nth-child(5) {
  	z-index: 6;
}

.rating label:nth-child(6) {
  	z-index: 5;
}

.rating label:nth-child(7) {
  	z-index: 4;
}

.rating label:nth-child(8) {
  	z-index: 3;
}

.rating label:nth-child(9) {
  	z-index: 2;
}

.rating label:nth-child(10) {
  	z-index: 1;
}

.rating label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.rating label .icon {
  float: left;
  color: transparent;
}

.rating label:last-child .icon {
  color: #000;
}

.rating:not(:hover) label input:checked ~ .icon,
.rating:hover label:hover input ~ .icon {
  color: var(--primary-color);
}

.rating:not(:hover) label input:checked ~ .icon i::before,
.rating:hover label:hover input ~ .icon i::before {
  font-weight: 900;
}

.rating:not(:hover) label input:not(:checked) ~ .icon i::before,
.rating:hover label:not(:hover) input ~ .icon i::before {
  font-weight: 400;
}

.rating label input:focus:not(:checked) ~ .icon:last-child {
  color: #000;
  text-shadow: 0 0 5px var(--primary-color);
}

.product-discount {
	position: absolute;
	display: block;
	right: -20px;
	z-index: 3;
	top: -20px;
}

.product-discount div {
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	color: var(--bs-light);
}

.product-discount-header div,
.product-discount-header-right div {
	font-size: 12px;
	height: 40px;
	width: 40px;
}

.product-discount-list {
	right: unset;
	left: -20px;
}

.product-discount-header {
	right: unset;
	left: 10px;
	top: -10px;
}

.product-discount-header-right {
	right: -10px;
	top: -10px;
}

.table-col1 {
  width: 8.333333%;
}

.table-col-2 {
  width: 16.666667%;
}

.table-col-3 {
  width: 25%;
}

.table-col-4 {
  width: 33.333333%;
}

.table-col-5 {
  width: 41.666667%;
}

.table-col-6 {
  width: 50%;
}

.table-col-7 {
  width: 58.333333%;
}

.table-col-8 {
  width: 66.666667%;
}

.table-col-9 {
  width: 75%;
}

.table-col-10 {
  width: 83.333333%;
}

.table-col-11 {
  width: 91.666667%;
}

.table-col-12 {
  width: 100%;
}

/* #endregion */

/* #region Custom code */

.input-group, .form-switch {
	margin-bottom: 1rem;
}

.input-group > .input-group, .form-switch > .input-group {
	margin-bottom: 0;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-switch.col-lg-12 .form-check-input {
  margin-left: -1.5em;
}

.form-switch.col-lg-12 .form-check-label {
  margin-left: 1rem;
}

.form-switch .form-check-input:focus {
  border-color: var(--primary-color);
}

.select2-container--bootstrap-5 .select2-dropdown {
  z-index: 1060;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection, .select2-container--bootstrap-5.select2-container--open .select2-selection {
  border-color: #ced4da;
  box-shadow: unset;
}

.select2-container--bootstrap-5 .select2-dropdown {
  border-color: #ced4da;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected, .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected="true"]:not(.select2-results__option--highlighted) {
  background-color: var(--primary-color);
}

.modal-header .close {
  font-size: 18px;
  background: none;
  border: none;
}

.checkbox-entry input:checked + .content-check {
  border-color: var(--secondary-color) !important;
}

input:focus, textarea:focus, select:focus {
	outline: none !important;
  box-shadow: none !important;
  border-color: var(--primary-color) !important;
}

.slick-dots .slick-dots li {
  background-color: #fff;
}

.slick-arrow svg {
  stroke: #fff;
}

.qs-shadow {
	text-shadow: 1px 1px 5px #111;
}

.cookie_notice_bar-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 100000;
}

/* #endregion */

/* #region Responsive code */

@media (max-width: 1400px) { /* xxl - Extra Extra Large */
	
}

@media (max-width: 1200px) { /* xl - Extra Large */
	
}

@media (max-width: 992px) { /* lg - Large */
	#fb-root {
		display: none;
	}
	.submenu-transform {
		overflow-y: scroll;
	}
}

@media (max-width: 768px) { /* md - Medium */
	.logo-main img {
    max-height: 48px !important;
    position: absolute;
    top: 6px;
  }
}

@media (max-width: 600px) { /* sm - Small */ 
	
}

@media (max-width: 576px) { /* Extra small */
	
}

/* #endregion */