/* Header */

mark {
    color: var(--light-hex);
    font-size: 90%;
    font-weight: bold;
    background: var(--secondary-80-rgba);
    padding: 0.25rem;
}

.line {
    background: var(--primary-hex);
}

.smlpadding {
    padding: 0.25rem !important;
    margin: 0.5rem 0;
    display: inline-flex;
}

.nopadding {
    padding: 0 !important;
}

.nomargin {
    margin: 0 !important;
}

.smlmargin {
    margin: 0.25rem !important;
    display: inline-flex;
}

#preview {
    width: auto;
    height: auto;
    border: 1px solid var(--primary-hex);
    padding: 2rem;
    overflow-y: auto;
    white-space: pre-line;
}


abbr[data-title] {
  position: relative;
}

abbr[data-title]:hover::after,
abbr[data-title]:focus::after {
  content: attr(data-title);
  position: relative;
  float: right;
  right: 1dvw;
  bottom: 6rem;
  width: auto;
  white-space: nowrap;
  background: var(--dark-80-rgba);
  color: var(--light-80-rgba);
  border-radius: 0.25rem;
  box-shadow: 1px 1px 5px 0 var(--dark-20-rgba);
  font-size: small;
  padding: 0.5rem;
}

/* Sizes */

xsmall {
    font-size: 75%;
    text-transform: uppercase;
}

xxsmall {
    font-size: 45%;
    text-transform: uppercase;
}

/* Styles */

.padding {
    padding: 1dvw !important;
}

.text-white, .text-white a {
    color: var(--light-hex);
}

/* Shopping */

.overlay.icon {
    line-height: normal;
    vertical-align: middle;
    height: 150px;
    width: 100%;
    background: transparent;
}

.overlay.icon:before {
    display: block;
    position: absolute;
    font-size: calc(100% + 2vw);
    top: calc(100% / 3);
    height: auto;
    width: -webkit-fill-available;
    color: var(--primary-hex);
    z-index: 10;
}

/* .overlay.icon:hover:before {
    background: var(--light-20-rgba);
    background: linear-gradient(180deg, var(--light-20-rgba) 0%, var(--light-hex) 50%, transparent 100%);
    color: var(--primary-80-rgba);
    text-shadow: 0 0.12rem var(--light-20-rgba), 0 0.2rem 0.8rem var(--dark-20-rgba);
    transition: all 0.25s ease-in-out;
} */

.tags {
    position: relative;
    display: grid;
    padding: 0.5rem;
    z-index: 5;
    margin: 1dvw auto 0.5rem auto;
    background: var(--primary-40-rgba);
    border-radius: 0.25rem;
}

.price-tag {
    opacity: 1;
    position: relative;
    margin-top: 0rem;
}

.add-to-cart {
    max-width: calc(100% - 1dvw);
    margin: auto auto 0.5rem auto;
    display: block !important;
}

/*Label Divs */

label > div {
    display: inline;
}

label > input { 
    visibility: hidden;
    position: absolute;
}

label > input + div {
    cursor: pointer;
    padding: 25px;
}

label > input:checked + div { 
    background-color: var(--secondary-hex);
    border: 1px solid var(--primary-hex);
}

/* Sizes */

xsmall {
    font-size: 75%;
    text-transform: uppercase;
}

xxsmall {
    font-size: 45%;
    text-transform: uppercase;
}

fade {
    opacity: 0.4;
}

/* Styles */

button, .btn, .button, .alert, .error, .success, .info {
    display: inline-block;
    padding: 0.25rem;
    margin: 0.25rem auto 1dvw;
    text-shadow: 0 1px 0 var(--light-20-rgba); 
    border: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -moz-transition: all 0.25s ease-in-out;
	-webkit-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.alert, .error, .success, .info {
    width: 100%;
    padding: 1dvw;
}

button.alert, button.error, button.success, button.info,
.button.alert, .button.error, .button.success, .button.info {
    width: auto;
    display: inline-block;
}

.alert {
  color: var(--light-hex) !important;
  background-color: var(--alert-hex) !important;
}

.error {
  color: var(--light-hex) !important;
  background-color: var(--error-hex) !important;
}

.success {
  color: var(--light-hex) !important;
  background-color: var(--success-hex) !important;
}

.info {
  color: var(--light-hex) !important;
  background-color: var(--info-hex) !important;
}

.full {
    width: 100% !important;
}

.pinned {
  position: absolute;
  display: table;
  top: 0;
  z-index: 1;
  margin: auto;
  width: 100%;
  background: var(--success-hex);
  color: var(--light-hex);
  padding: 0.12rem;
  font-variant: all-small-caps;
}

/* Form */

form {
	margin: 0 0 2rem 0;
}

	form > :last-child {
		margin-bottom: 0;
	}

	form > .fields {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		width: calc(100% + 3rem);
		margin: -1.5rem 0 2rem -1.5rem;
	}

		form > .fields > .field {
			-moz-flex-grow: 0;
			-webkit-flex-grow: 0;
			-ms-flex-grow: 0;
			flex-grow: 0;
			-moz-flex-shrink: 0;
			-webkit-flex-shrink: 0;
			-ms-flex-shrink: 0;
			flex-shrink: 0;
			padding: 1.5rem 0 0 1.5rem;
			width: calc(100% - 1.5rem);
		}

			form > .fields > .field.half {
				width: calc(50% - 0.75rem);
			}

			form > .fields > .field.third {
				width: calc(100%/3 - 0.5rem);
			}

			form > .fields > .field.quarter {
				width: calc(25% - 0.375rem);
			}

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

		form > .fields {
			width: calc(100% + 3rem);
			margin: -1.5rem 0 2rem -1.5rem;
		}

			form > .fields > .field {
				padding: 1.5rem 0 0 1.5rem;
				width: calc(100% - 1.5rem);
			}

				form > .fields > .field.half {
					width: calc(100% - 1.5rem);
				}

				form > .fields > .field.third {
					width: calc(100% - 1.5rem);
				}

				form > .fields > .field.quarter {
					width: calc(100% - 1.5rem);
				}

	}

label {
	display: block;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0 0 0.75rem 0;
}

/* Tooltip */

.tooltip, .hovertip {
  position: absolute;
  z-index: 9999;
  display: block;
  width: auto;
  max-width: 422px;
  line-height: 1.4;
  visibility: visible;
  margin: auto;
}

.tooltip.top, .hovertip.top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltip.right, .hovertip.right {
  padding: 0 5px;
  margin-left: 3px;
}

.tooltip.bottom, .hovertip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.tooltip.left, .hovertip.left {
  padding: 0 5px;
  margin-left: -3px;
}

.tooltip-inner, .hovertip-inner {
  position: relative;
  z-index: 9999 !important;
  max-width: auto;
  padding: 0.5rem;
  color: var(--light-hex);
  text-align: center;
  text-decoration: none;
  background-color: var(--primary-hex);
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.tooltip-arrow, .hovertip-arrow {
  position: absolute;
  z-index: 9999;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow, .hovertip.top, .hovertip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-top-color: var(--primary-hex);
  border-width: 5px 5px 0;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-right-color: var(--primary-hex);
  border-width: 5px 5px 5px 0;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-left-color: var(--primary-hex);
  border-width: 5px 0 5px 5px;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-bottom-color: var(--primary-hex);
  border-width: 0 5px 5px;
}

/* Scroll */

.options-wrapper {
	position: relative;
	max-width: 100%;
	height: inherit;
	margin: 1dvw auto;
	overflow-x: hidden;
	overflow-y: hidden;
}

.options {
	width: fit-content;
	height: fit-content;
	margin: auto;
	background: transparent;
	box-sizing: border-box;
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}
	
.item {
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
}

.paddle {
    background: var(--dark-20-rgba);
	position: absolute;
	top: 0;
	bottom: 0;
	width: fit-content;
	height: fit-content;
	margin: auto 0;
}

.paddle:hover {
    background: var(--dark-80-rgba);
    transition: all 0.25s ease-in-out;
}

.left-paddle {
	left: 0;
}

.right-paddle {
	right: 0;
}

.hidden {
	display: none !important;
}

/* Loading */

.progress-bar.hidden, .lds-dual-ring.hidden { 
display: none;
}

.progress-bar {
    background-color: #12CC1A;
    height: 20px;
    color: #eff1f2;
    width: 0%;
    -webkit-transition: width 0.25s;
    -moz-transition: width 0.25s;
    transition: width 0.25s;
}

.progress-div {
    border: #0FA015 1px solid;
    text-align: center;
}

.lds-dual-ring {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-bottom: 2rem;
}

.lds-dual-ring:after {
  content: " ";
  display: inline-block;
  width: 34px;
  height: 34px;
  margin: 5% auto;
  border-radius: 50%;
  border: 6px solid #12CC1A;
  border-color: #12CC1A transparent #12CC1A transparent;
  animation: lds-dual-ring 10.25s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Displays */

.display {
    border-radius: 100%;
    display: inline-block;
    vertical-align: middle;
}

.margin {
    margin: 1dvw;
}

.scroll-box {
    max-height: 420px;
    overflow: auto;
    padding: 0 1dvw;
    vertical-align: top;
}

.border-left {
    border-left: 0.25rem double var(--primary-hex);
    padding-left: 1dvw;
}

/* Product Display */

.badge {
    position: absolute !important;
    z-index: 2;
    left: 0;
    top: 1dvw;
    text-transform: uppercase;
    background: var(--error-hex);
    color: var(--light-hex);
    padding: 0.25rem 1dvw;
    width: max-content;
}

.category {
    display: block;
    text-transform: uppercase;
    color: var(--primary-hex);
    margin: 0.5rem auto 0.5rem auto;
}

.product-details {
    display: block !important;
    color: var(--primary-40-rgba);
}

.product-bottom-details {
    overflow: hidden;
    padding: 0.5rem 0.5rem 0 0.5rem;
}

.price {
    width: calc(100% - 1dvw);
    padding: 0.5rem;
    margin: 0.25rem;
}

.product-links {
    display: grid;
    padding: 0rem 1dvw 1dvw;
    grid-gap: 0.5rem;
    width: 100%;
    vertical-align: middle;
}

.product-links > .button {
    width: 100%;
    padding: 0.5rem;
    margin: 0;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-1-9 4:10:43
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation kenburns-top
 * ----------------------------------------
 */
@-webkit-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(0.8) translateY(0);
            transform: scale(0.8) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
@keyframes kenburns-top {
  0% {
    -webkit-transform: scale(0.8) translateY(0);
            transform: scale(0.8) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}

/* Stars */

.star-rate,
.star-rate * {
	transition: 0.3s ease all;
}

.star-rate {
	display: inline-block;
	position: relative;
	width: 100%;
	margin-top: 2rem;
	text-align: center;
	font-size: large;
	color: gold;
}

/* radio */
#radio input.star-check[type="radio"] {
	opacity: 0;
	z-index: 99;
}
.star-rate#radio,
.star-rate#radio > .stars {
	display: flex;
	justify-content: space-between;
}
.star-rate#radio > .stars {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
}

/* radio-2 */
#radio-2 input.star-check[type="radio"] {
	display: none;
}
.star-rate#radio-2 > .stars {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 100%;
}

/* radio */
.star-check:nth-of-type(1):hover ~ .stars [data-star-value="1"],
.star-check:nth-of-type(2):hover ~ .stars [data-star-value="1"],
.star-check:nth-of-type(2):hover ~ .stars [data-star-value="2"],
.star-check:nth-of-type(3):hover ~ .stars [data-star-value="1"],
.star-check:nth-of-type(3):hover ~ .stars [data-star-value="2"],
.star-check:nth-of-type(3):hover ~ .stars [data-star-value="3"],
.star-check:nth-of-type(4):hover ~ .stars [data-star-value="1"],
.star-check:nth-of-type(4):hover ~ .stars [data-star-value="2"],
.star-check:nth-of-type(4):hover ~ .stars [data-star-value="3"],
.star-check:nth-of-type(4):hover ~ .stars [data-star-value="4"],
.star-check:nth-of-type(5):hover ~ .stars [data-star-value="1"],
.star-check:nth-of-type(5):hover ~ .stars [data-star-value="2"],
.star-check:nth-of-type(5):hover ~ .stars [data-star-value="3"],
.star-check:nth-of-type(5):hover ~ .stars [data-star-value="4"],
.star-check:nth-of-type(5):hover ~ .stars [data-star-value="5"] {
	color: var(--primary-hex);
}

/* checking */
.star-check:nth-of-type(1):checked ~ .stars [data-star-value="1"],
.star-check:nth-of-type(2):checked ~ .stars [data-star-value="1"],
.star-check:nth-of-type(2):checked ~ .stars [data-star-value="2"],
.star-check:nth-of-type(3):checked ~ .stars [data-star-value="1"],
.star-check:nth-of-type(3):checked ~ .stars [data-star-value="2"],
.star-check:nth-of-type(3):checked ~ .stars [data-star-value="3"],
.star-check:nth-of-type(4):checked ~ .stars [data-star-value="1"],
.star-check:nth-of-type(4):checked ~ .stars [data-star-value="2"],
.star-check:nth-of-type(4):checked ~ .stars [data-star-value="3"],
.star-check:nth-of-type(4):checked ~ .stars [data-star-value="4"],
.star-check:nth-of-type(5):checked ~ .stars [data-star-value="1"],
.star-check:nth-of-type(5):checked ~ .stars [data-star-value="2"],
.star-check:nth-of-type(5):checked ~ .stars [data-star-value="3"],
.star-check:nth-of-type(5):checked ~ .stars [data-star-value="4"],
.star-check:nth-of-type(5):checked ~ .stars [data-star-value="5"] {
	color: var(--gold);
}

/* range */
.star-rate#range > .stars {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: space-between;
	z-index: 9;
}
.star-rate#range .star-range {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 99;
}

.star-range[value="1"] ~ .stars [data-star-value="1"],
.star-range[value="2"] ~ .stars [data-star-value="1"],
.star-range[value="2"] ~ .stars [data-star-value="2"],
.star-range[value="3"] ~ .stars [data-star-value="1"],
.star-range[value="3"] ~ .stars [data-star-value="2"],
.star-range[value="3"] ~ .stars [data-star-value="3"],
.star-range[value="4"] ~ .stars [data-star-value="1"],
.star-range[value="4"] ~ .stars [data-star-value="2"],
.star-range[value="4"] ~ .stars [data-star-value="3"],
.star-range[value="4"] ~ .stars [data-star-value="4"],
.star-range[value="5"] ~ .stars [data-star-value="1"],
.star-range[value="5"] ~ .stars [data-star-value="2"],
.star-range[value="5"] ~ .stars [data-star-value="3"],
.star-range[value="5"] ~ .stars [data-star-value="4"],
.star-range[value="5"] ~ .stars [data-star-value="5"] {
	color: var(--primary-hex);
}

/* firework */
.star-range[value="1"] ~ .stars [data-star-value="1"]::after,
.star-range[value="2"] ~ .stars [data-star-value="1"]::after,
.star-range[value="2"] ~ .stars [data-star-value="2"]::after,
.star-range[value="3"] ~ .stars [data-star-value="1"]::after,
.star-range[value="3"] ~ .stars [data-star-value="2"]::after,
.star-range[value="3"] ~ .stars [data-star-value="3"]::after,
.star-range[value="4"] ~ .stars [data-star-value="1"]::after,
.star-range[value="4"] ~ .stars [data-star-value="2"]::after,
.star-range[value="4"] ~ .stars [data-star-value="3"]::after,
.star-range[value="4"] ~ .stars [data-star-value="4"]::after,
.star-range[value="5"] ~ .stars [data-star-value="1"]::after,
.star-range[value="5"] ~ .stars [data-star-value="2"]::after,
.star-range[value="5"] ~ .stars [data-star-value="3"]::after,
.star-range[value="5"] ~ .stars [data-star-value="4"]::after,
.star-range[value="5"] ~ .stars [data-star-value="5"]::after,
.star-check:nth-of-type(1):checked ~ .stars [data-star-value="1"]::after,
.star-check:nth-of-type(2):checked ~ .stars [data-star-value="1"]::after,
.star-check:nth-of-type(2):checked ~ .stars [data-star-value="2"]::after,
.star-check:nth-of-type(3):checked ~ .stars [data-star-value="1"]::after,
.star-check:nth-of-type(3):checked ~ .stars [data-star-value="2"]::after,
.star-check:nth-of-type(3):checked ~ .stars [data-star-value="3"]::after,
.star-check:nth-of-type(4):checked ~ .stars [data-star-value="1"]::after,
.star-check:nth-of-type(4):checked ~ .stars [data-star-value="2"]::after,
.star-check:nth-of-type(4):checked ~ .stars [data-star-value="3"]::after,
.star-check:nth-of-type(4):checked ~ .stars [data-star-value="4"]::after,
.star-check:nth-of-type(5):checked ~ .stars [data-star-value="1"]::after,
.star-check:nth-of-type(5):checked ~ .stars [data-star-value="2"]::after,
.star-check:nth-of-type(5):checked ~ .stars [data-star-value="3"]::after,
.star-check:nth-of-type(5):checked ~ .stars [data-star-value="4"]::after,
.star-check:nth-of-type(5):checked ~ .stars [data-star-value="5"]::after {
	animation: firework 0.5s ease both 0.1s;
}

.stars [data-star-value] {
	color: #000;
	position: relative;
	cursor: pointer;
	display: grid;
	align-items: center;
	width: fit-content;
	transition: color 0.3s ease;
}
.stars [data-star-value]::after {
	content: "";
	position: absolute;
	min-width: 8px;
	min-height: 8px;
	width: 50%;
	height: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
}
@keyframes firework {
	0% {
		opacity: 1;
		box-shadow: 0 0 0 -2px #e6c356, 0 0 0 -2px #e6c356,
			0 0 0 -2px #e6c356, 0 0 0 -2px #e6c356, 0 0 0 -2px #e6c356,
			0 0 0 -2px #e6c356;
	}
	30% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		box-shadow: 0 -15px 0 0px #e6c356, 14px -8px 0 0px #e6c356,
			14px 8px 0 0px #e6c356, 0 15px 0 0px #e6c356,
			-14px 8px 0 0px #e6c356, -14px -8px 0 0px #e6c356;
	}
}