/* ////////// GENERAL ////////// */
p
{
	font-family: quasimoda, sans-serif;
	font-weight: 300;
	font-style: normal;
	line-height: 150%;
}

.fsblue 
{
	background-color: #3d84ff;
}

.fs-cart-open
{
	animation: opencart 0.4s ease-in-out 0s 1 forwards;
}

.fs-cart-close
{
	animation: closecart 0.4s ease-in-out 0s 1 forwards;
}

.fs-add-letter
{
	animation: addletter 0.4s ease-in-out 0s 1 forwards;
}

.fs-remove-letter
{
	animation: removeletter 0.4s ease-in-out 0s 1 forwards;
}

.fs-promo-banner
{
	width: 100%;
	height: 50px;
	background-color: white;
	text-align: center;
	line-height: 50px;
}

.fs-promo-banner a
{
	color: black;
	text-decoration: none;
	font-style: italic;
	font-size: 20px;
}

.fs-hr 
{
	width: 100%;
	margin: 10px 0px;
}

.fs-nomargin
{
	margin: 0 auto !important;
}

.fs-divider
{
	width: 90%;
	margin: 0px auto;
	height: 50px;

	animation: growwidth 1s ease-in-out 0s 1 forwards;

	background-color: #000;
	background-image: url("../img/fs-imgs/gplay.png");
}

/* ////////// PRODUCT GRID ////////// */
#fs-shop-container
{
	margin: 50px auto;
}

#fs-product-grid
{
	width: 100%;
	min-height: 500px;
	margin: 0px auto;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-flow: row wrap;
}

.fs-product-grid
{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-flow: row wrap;
}

.fs-grid-title
{
	margin: 25px auto;
	text-align: center;
}

#fs-product-grid-header
{
	text-align: center;
	width: 100%;
	margin: 0 auto;
	margin-bottom: 50px;
}

.fs-grid-sort-select
{
	background-color: black;
	border: 1px solid white;
	padding: 10px;
	color: white;
	font-size: 12px;
	width: 175px;
	letter-spacing: 5px;

	border-radius: 0px;
}

.fs-grid-sort-select option
{
	font-size: 12px;
	padding: 5px;
	letter-spacing: 2px;
	border-radius: 0px;
}

.fs-product-cell
{
	width: 400px;
	height: 500px;
	margin: 75px 50px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-flow: column nowrap;
}

.fs-product-cell-title
{
	font-size: 24px;
	cursor: pointer;
	margin: 5px auto !important;
}

.fs-product-cell img
{
	width: 350px;
	height: 350px;
	margin: 0 auto;
	overflow: hidden;
	cursor: pointer;
}

.fs-product-cell p
{
	margin: 5px auto;
}

.fs-product-cell-pc
{
	width: 100%;
	margin-bottom: 15px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.fs-grid-addtocart, .fs-grid-outofstock
{
	width: 300px;
  	margin: 0 auto;
	height: 40px;
	color: white;
	background-color: black;
	border: 1px solid white;
	font-size: 18px;
}

.fs-variant-select
{
  width: 300px;
  margin: 0 auto;
  height: 50px;
  padding: 5px 0px;
  color: white;
  background-color: #000;
  text-align: center;
  border: 1px solid #FFF;
  border-bottom: 0px;
  font-family: univia-pro, sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
}

/* MINI GRID */
.fs-product-cell-mini
{
	width: 200px;
	height: 375px;
	margin: 25px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-flow: column nowrap;
}

.fs-product-cell-mini img
{
	width: 200px;
	margin: 0 auto;
	overflow: hidden;
	cursor: pointer;
}

.fs-product-cell-mini p
{
	margin: 5px auto;
}

.fs-product-cell-mini > .fs-product-cell-title
{
	font-size: 20px !important;
	cursor: pointer;
	margin: 5px auto !important;
}

.fs-product-cell-mini > .fs-product-cell-pc
{
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.fs-product-cell-mini > .fs-grid-addtocart, .fs-product-cell-mini > .fs-grid-outofstock
{
	width: 200px;
  	margin: 0 auto;
	height: 40px;
	color: white;
	background-color: black;
	border: 1px solid white;
	font-size: 16px;
}

.fs-product-cell-mini > .fs-variant-select
{
  width: 200px;
  margin: 0 auto;
  height: 40px;
  padding: 5px 0px;
  color: white;
  background-color: #000;
  text-align: center;
  border: 1px solid #FFF;
  border-bottom: 0px;
  font-family: univia-pro, sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
}

.fs-variant-select option
{
	text-align: center;
}

.fs-product-bkg
{
	
}

@media only screen and (min-width: 1200px)
{
	.fs-product-grid
	{
		justify-content: flex-start;
	}
}

/* ////////// CART ////////// */
#fs-cart-container, #fs-contact-container
{
	z-index: 9999;
	position: fixed;
	top: 0px;
	right: -500px;
	width: 470px;
	height: 0px;
	overflow: hidden;
	background-color: white;
	color: black;
	border-right: 0px;
	transition: all 0.4s ease-in-out;
	padding: 15px;
}

#fs-cart-inside, #fs-contact-inside
{
	position: relative;
	text-align: center;
	padding: 15px;
	margin-top: 25px;
}

#fs-contact-inside p, #fs-contact-inside h2
{
	color: black;
}

.fs-contact-input-container
{
	margin: 50px auto;
	width: 80%;
	text-align: center;
}

.fs-contact-input
{
	display: block;
	width: 300px;
	height: 40px;
	padding: 5px;
	border: 1px solid #3d84ff;
	margin: 5px auto;
	color: black;
	font-size: 16px;
}

.fs-contact-textarea
{
 width: 300px;
 color: black;
 font-size: 16px;
 border: 1px solid #3d84ff;
 padding: 5px;
}

.fs-contact-submit
{
	width: 312px;
	height: 40px;
	padding: 5px;
	background-color: #3d84ff;
	color: white;
	border: 0;
}

.fs-success-check
{
	display: inline;
    animation: success-anim 1.0s ease-in 0s 1 normal forwards;
    -webkit-animation: success-anim 1.0s ease-in 0s 1 normal forwards;
}

.fs-cartimg-container
{
	position: relative;
}

.fs-cartimg-container img 
{
	display: inline;
}

.fs-cartimg-anim-container
{
	width: 64px;
	height: 64px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.fs-cart-anim1
{
	background-color: grey;
	width: 28px;
	height: 4px;
	margin: 3px auto;
	display: block;
	position: relative;
	left: 5px;
	top: 15px;

	animation: cartanim 1s ease-in-out 0s infinite;
}

.fs-cart-anim2
{
	background-color: grey;
	width: 28px;
	height: 4px;
	margin: 3px auto;
	display: block;
	position: relative;
	left: 5px;
	top: 15px;

	animation: cartanim2 1s ease-in-out 0.25s infinite;
}

#fs-cartitem-container
{
	height: fit-content;
	overflow-y: scroll;
	overflow-x: hidden;
	margin-top: 25px;
}

#fs-cart-inside h1
{
	margin: 50px auto;
	color: black;
}

#fs-cart-inside hr
{
	background-color: #D6D6D6 !important;
}

.fs-close-cart, .fs-close-contact
{
	position: absolute;
	left: 20px;
	top: 15px;
	color: red;
	cursor: pointer;
}

.fs-cart-empty
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	text-align: center;

	display: flex;
	justify-content: center;
	align-items: center;
}

.fs-letter:nth-child(1)
{
	color: black;
	font-style: italic;
	margin: 0 5px;
	animation: letteranim 2s 0s infinite forwards ease-in-out;
}

.fs-letter:nth-child(2)
{
	color: black;
	font-style: italic;
	margin: 0 5px;
	animation: letteranim 2s 0.2s infinite forwards ease-in-out;
}

.fs-letter:nth-child(3)
{
	color: black;
	font-style: italic;
	margin: 0 5px;
	animation: letteranim 2s 0.4s infinite forwards ease-in-out;
}

.fs-letter:nth-child(4) 
{
	color: black;
	font-style: italic;
	margin: 0 5px;
	animation: letteranim 2s 0.6s infinite forwards ease-in-out;
}

.fs-letter:nth-child(5)
{
	color: black;
	font-style: italic;
	margin: 0 5px;
	animation: letteranim 2s 0.8s infinite forwards ease-in-out;
}

.fs-cartitem
{
	margin: 25px auto;
	position: relative;
	width: 90%;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 3px 20px 0 rgba(0,0,0,0.19);
	border-radius: 5px;
}

.fs-remove-cartitem
{
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
	font-size: 18px;
	color: black;
}

.fs-cartitem-inside
{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 15px;
}

.fs-cartitem-img
{
	position: relative;	
	overflow: hidden;
}

.fs-cartitem-quant
{
	color: black;
	position: absolute;
	right: 0px;
	top: 0px;
	font-size: 14px;

	margin: 0;
	padding: 2px;
	width: 16px;
	height: 16px;
	background-color: white;
}

.fs-quant-insuf
{
	animation: faderedtoblack 1s ease-in-out forwards;
}

.fs-cartitem-info
{
	margin-left: 25px;
	text-align: left;
}

.fs-cartitem-info h3
{
	margin: 10px 0px;
	color: black;
	font-size: 20px;
	font-weight: normal;
}

.fs-cartitem-detail
{
	font-size: 16px;
	opacity: 0.75;
	font-style: italic;
	margin: 10px 0px;
	color: grey;
}

.fs-cartitem-price
{
	margin: 10px 0px;
	color: black;
	font-size: 18px;
}

.fs-cartitem-saleprice
{
	display: inline-block;
	margin: 5px !important;
	color: red;
	font-size: 18px;
}

.fs-cartitem-fullprice
{
	display: inline-block;
	margin: 5px !important;
	text-decoration: line-through;
	color: black;
	font-size: 18px;
}

.fs-cartitem-normalprice
{
	display: inline-block;
	margin: 5px !important;
	color: black;
	font-size: 18px;
}

#fs-cart-checkout-container
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
}

#fs-cart-checkout-container h1
{
	color: grey;
	letter-spacing: 2px;
	font-size: 24px;
	margin: 25px auto;
}

#fs-cart-checkout-container button
{
	width: 100%;
	height: 50px;
	border: 0;
	background-color: #3d84ff;
}

.fs-continue-shopping, .fs-close-container
{
	display: block;
	border: 0;
	padding: 15px;
	background-color: #3d84ff;
	color: white;
	margin: 0 auto;
}

/* PRODUCT PAGE */
#fs-productpage
{
	width: 100%;
	min-height: 500px;
	padding: 50px 0px;
}

#fs-productpage-split
{
	width: 95%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}


.fs-productpage-bkg
{
	background-color: #000;
	background-image: url("../img/fs-imgs/gplay.png");
}

.fs-productpage-bkg img
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: -1;
}

#fs-productpage-imgs
{
	text-align: center;
	margin: 25px auto;
	margin-bottom: 0px;
	width: 90%;

	animation: swipelefttomid 0.5s ease-in-out 0s 1 forwards;
}

.fs-productpage-mainimg
{
	width: 100%;
}

#fs-productpage-info
{
	text-align: center;
	margin: 0 auto;
	padding: 50px 25px;
	width: calc(90% - 50px);

	animation: swiperighttomid 0.5s ease-in-out 0s 1 forwards;
}

#fs-productpage-info h1
{
	font-size: 32px;
	margin: 5px 0px;
	margin-top: 0px;
}

#fs-productpage-info h2
{
	font-size: 24px;
	color: grey;
	font-style: italic;
	margin: 5px 0px;
}

#fs-productpage-info p
{
	word-wrap: normal;
	font-size: 18px;
	text-align: left;
}

#fs-productpage-desc
{
	font-size: 16px !important;
}

#fs-productpage-thumbnail-container
{
	margin: 0px auto;
	width: 100%;

	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.fs-productpage-variants
{
	width: 250px;
	height: 40px;
	padding: 5px 0px;
	margin: 0 auto;
	display: block;
	color: white;
	background-color: #000;
	text-align: center;
	border: 1px solid #FFF;
	font-family: univia-pro, sans-serif;
	font-weight: 300;
	font-style: italic;
	font-size: 16px;
}

.fs-productpage-variants option
{
	font-size: 16px;
}

.fs-productpage-pc
{
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.fs-productpage-altpics
{
	transition: all 0.2s ease-in-out;
	display: block;
	flex-grow: 1;
	margin: 0 5px;
}

.fs-productpage-altpics:hover
{
	transform: scale(1.25);
}

.fs-productpage-outofstock
{
	width: 250px;
	height: 40px;
	padding: 5px 0px;
	margin: 0 auto;
	display: block;
	color: white;
	background-color: red;
	margin: 10px auto;
	margin-bottom: 50px;

	font-size: 16px;
}

.fs-productpage-addtocart
{
	width: 250px;
	height: 40px;
	padding: 5px 0px;
	display: block;
	color: white;
	background-color: black;
	margin: 10px auto;
	margin-bottom: 50px;
	border: 1px solid white;

	font-size: 16px;
}

.fs-productpage-error
{
	text-align: center;
	margin: 100px auto;
}

#fs-productpage-related
{
	width: 100%;
	text-align: center;
	margin: 0px;
}

#fs-productpage-related hr
{
	width: 100%;
	margin: 0 auto;
}

@media only screen and (min-width: 1200px)
{
	#fs-productpage-split
	{
		width: 90%;
		margin: 0 auto;
		justify-content: space-between;
		flex-direction: row;
	}

	#fs-productpage-imgs
	{
		width: 50%;
		margin: 0px;
	}

	#fs-productpage-info
	{
		text-align: left;
		width: 50%;
		padding: 0;
		padding-left: 25px;
	}

	.fs-productpage-pc
	{
		text-align: left;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	.fs-productpage-variants
	{
		margin: 0;
	}

	.fs-productpage-outofstock, .fs-productpage-addtocart
	{
		margin: 10px 0px;
		margin-bottom: 50px;
	}

	#fs-productpage-related
	{
		width: 100%;
		text-align: left;
		margin: 50px auto;
	}

	#fs-productpage-related hr
	{
		width: 400px;
		margin: 0;
	}
}

.fs-text-effect-container
{
	width: 100%;
	text-align: center;
}

.fs-text-effect
{
	width: 500px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;

	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.fs-effect-char
{
	text-align: center;
	margin: 0px 10px;
}

.fs-effect-char p
{
	color: white;
	font-size: 48px;
	text-align: center;
}

/* ------------ FS CALENDAR ---------- */
#fs-calendar-container
{
	width: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 50px auto;
	text-align: center;
}

#calendar-table
{
  width: fit-content;
  margin: 30px auto;
  margin-bottom: 30px;
  border-collapse: collapse;
  border: 2px solid #3d84ff;

  background-color: white;
  color: black;
}

#calendar-table caption
{
  font-size: 32px;
  margin: 5px;
}

#calendar-table th 
{
  text-align: center;
  color: #949494;
}

#calendar-table .header-row
{
  height: 75px !important;
}

#calendar-table tr
{
  border: solid #BEBEBE;
  border-width: 1px 0;
}

#calendar-table td
{
  width: 50px;
  height: 60px;
  aspect-ratio: 1/1;
  border-right: 1px solid #BEBEBE;
  padding: 0;
  margin: 0;
  vertical-align: top;
  text-align: left;
}

.calendar-cell
{
  width: 50px;
  height: 60px;
  cursor: pointer;
}

.calendar-cell:hover
{
  -webkit-box-shadow: 0 2px 4px 0 rgba(61,132,255,0.2), 0 1px 5px 0 rgba(61,132,255,0.19);
  -moz-box-shadow: 0 2px 4px 0 rgba(61,132,255,0.2), 0 1px 5px 0 rgba(61,132,255,0.19);
  box-shadow: 0 8px 16px 0 rgba(61,132,255,0.2), 0 6px 20px 0 rgba(61,132,255,0.19);
}

.calendar-cell-selected
{
  width: 48px;
  height: 58px;
  border: 1px solid #3d84ff;
   -webkit-box-shadow: 0 2px 4px 0 rgba(61,132,255,0.2), 0 1px 5px 0 rgba(61,132,255,0.19);
   -moz-box-shadow: 0 2px 4px 0 rgba(61,132,255,0.2), 0 1px 5px 0 rgba(61,132,255,0.19);
   box-shadow: 0 8px 16px 0 rgba(61,132,255,0.2), 0 6px 20px 0 rgba(61,132,255,0.19);

}

.blockedout
{
  background-color: #ccc !important;
  color: white !important;
}

.unavailable
{
  background-color: #bbb !important;
  cursor: default !important;
}

.unavailable:hover 
{
  box-shadow: none !important; 
}

#calendar-table tr:first-child {
  border-top: none;
}
#calendar-table tr:last-child {
  border-bottom: none;
}

.calendar-prev, .calendar-next
{
  margin: 0 20px;
  opacity: 0.5;
  cursor: pointer;
}

.event-example
{
  width: 150px;
  opacity: 0.75;
  color: white;
  padding: 10px;
  margin: 5px 0px;
}

.event-example p
{
  margin: 0px;
  font-weight: 400;
  font-size: 16px;
}

.event-list
{
  height: calc(100% - 25px);
  overflow-y: auto;
  overflow-x: hidden;

  width: 100%;

  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}

.calendar-event
{
  width: 20px;
  height: 20px;
}

.calendar-cell p
{
  text-align: center;
  color: green;
}

#event
{
  text-align: left;
  opacity: 0.75;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 1px;
  padding: 0px;
  font-size: 0px;
  color: white;
  overflow: hidden;
  white-space: nowrap;
}

#daynumber
{
  position: relative;
  text-align: center;
  top: 0px;
  left: 0px;
  width: 15px;
  height: 15px;
  font-size: 10px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.today
{
  color: #3d84ff;
  font-size: 18px;
  font-weight: bold;
  color: black;
}

.nottoday
{
	color: black;
}

.dailyevents
{
  text-align: center;
}

.timeline-container
{
  width: 90%;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  text-align: left;
}

.timeline-event
{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0.75;
  cursor: pointer;
}

.timeline-cell
{
  padding: 15px;

}

.timeline-table
{
  border-collapse: collapse;
  background-color: #eee;
  table-layout: auto;
  width: 100%;
}

.timeline-table tr
{
  cursor: pointer;
  border-bottom: 1px solid #ddd;
}

.timeline-table td
{
  border: 0;
  padding: 15px;
}

.service-select
{
	color: black !important;
	padding: 10px;
}

.service-select option
{
	color: black !important;
}

.timeframe-btn
{
	display: block;
	padding: 10px;
	border-radius: 5px;
	background-color: white;
	color: black;
	margin: 5px auto;
	border: 1px solid black;
}

.timeframe-btn:hover
{
	background-color: #3d84ff;
}

.service-select-inner
{
	margin: 30px auto;
	padding:5px;
}

.timeslot-container-outer
{
	margin: 15px auto;
	padding:5px;
}

@media only screen and (min-width: 1280px)
{
	#fs-calendar-container
	{
		align-items: center;
		justify-content: space-around;
		flex-direction: row;
	}

  #calendar-table td
  {
    width: 80px;
    height: 80px;
    aspect-ratio: 1/1;
  }

  .calendar-cell
  {
    width: 90px;
    height: 90px;
  }

  .calendar-cell-selected
  {
    width: 88px;
    height: 88px;
  }

  #daynumber
  {
    width: 20px;
    height: 20px;
  }


  #event
  {
    text-align: left;
    opacity: 0.75;
    width: 100%;
    margin: 1px auto;
    padding: 1px;
    font-size: 10px;
    border-radius: 0px;
  }

  .event-list
  {
    height: calc(100% - 25px);
    overflow-y: auto;
    overflow-x: hidden;

    width: 100%;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .calendar-event
  {
    width: 100%;
    height: fit-content;
  }

  .timeline-container
  {
    width: 50%;
  }

  .service-select-inner
	{
		margin: 50px auto;
		padding:10px;
	}

	.timeslot-container-outer
	{
		margin: 25px auto;
		padding:10px;
	}
}

@media only screen and (min-width: 1450px)
{
  #calendar-table
  {
    width: fit-content;
    margin: 50px auto;
    margin-bottom: 50px;
  }

  #calendar-table tr
  {
    border: solid #808080;
    border-width: 1px 0;
  }

  #calendar-table td
  {
    width: 125px;
    height: 125px;
    aspect-ratio: 1/1;
  }

  .calendar-cell
  {
    width: 125px;
    height: 125px;
  }

  .calendar-cell-selected
  {
    width: 123px;
    height: 123px;
  }

  #daynumber
  {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }

    #event
    {
      padding: 2px;
      font-size: 12px;
    }
}


/* COOKIES */
#fs-acceptcookies-msg
{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;

	width: 400px;
	padding: 25px;

	background-color: white;
	border-radius: 25px;
}

#fs-acceptcookies-msg p
{
	color: black !important;
}

#fs-acceptcookies-msg a
{
	font-size: 14px;
	color: black !important;
	opacity: 0.5;
}

#fs-acceptcookies-msg button
{
	border: 0;
	padding: 5px;
	background-color: black;
	color: white;
	display: block;
	margin: 10px auto;
}

/* 404 */
.fs-404-container
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.fs-404-container h1
{
	font-size: 48px;
	letter-spacing: 5px; 
	font-style:italic;
	margin: 0 auto;
}

.fs-404-container img
{
	width: 384px;
}

.fs-console-container 
{
  width: 100%;
  text-align:center;
  color:white;
  vertical-align: top;
  margin-top: 30px;
}

.fs-console-container span
{
	font-size: 22px !important;
}

.fs-console-underscore 
{
  display:inline-block;
  position:relative;
  top:0px;
  left:1px;
}

.fs-hidden404 {opacity:0;}
.fs-full404 { opacity: 1;}

#loading-ring, #loading-ring-specific
{
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 64px;
  height: 64px;
  z-index: 9;
  margin: 0;
}

.lds-ring, .lds-ring-dark
{
  display: inline-block;
  position: relative;
  top: calc(50% - 32px);
  width: 64px;
  height: 64px;
}

.lds-ring div, .lds-ring-dark div
{
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #FFF;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #FFF transparent transparent transparent;
}

.lds-ring-dark div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 51px;
	height: 51px;
	margin: 6px;
	border: 6px solid #00263b;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #00263b transparent transparent transparent;
  }

.lds-ring div:nth-child(1), .lds-ring-dark div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2), .lds-ring-dark div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3), .lds-ring-dark div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

/* SCROLLBARS */


#fs-cartitem-container::-webkit-scrollbar {
	width: 12px;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
  }

  /* Track */
  #fs-cartitem-container::-webkit-scrollbar-track {
	background: transparent;
  }

  /* Handle */
  #fs-cartitem-container::-webkit-scrollbar-thumb {
	background: #141414;
	border-radius: 6px;
  }
  


 /* ANIMATIONS */
 
@keyframes opencart 
{
	0% {
		right: -500px;
	}
	100% {
		right: 0px;
	}
}

@keyframes closecart
{
	0% {
		right: 0px;
	}
	100% {
		right: -500px;
	}
}


 /* ANIMATIONS */
 @keyframes removeletter 
 {
	 0% {
		 transform: scale(1.0,1.0) rotate(0deg);
	 }
	 100% {
		 transform: scale(0,0) rotate(180deg);
	 }
 }

  /* ANIMATIONS */
  @keyframes addletter 
  {
	  0% {
		  transform: scale(0,0) rotate(180deg);
		  text-shadow: 2px 2px black;
	  }
	  100% {
		  transform: scale(1.0,1.0) rotate(0deg);
		  text-shadow: 2px 2px grey;
	  }
  }

  @keyframes letteranim 
  {
	  0% {
		  transform: translateY(0px);
	  }
	  20% {
		transform: translateY(-30px);
	  }
	  40% {
		transform: translateY(0px);
	  }
	  100% {
		transform: translateY(0px);
	  }
  }

  @keyframes cartanim
{
	0% {
		width: 28px;
	}
	50% {
		width: 18px;
	}
	100% {
		width: 28px;
	}
}

@keyframes cartanim2
{
	0% {
		width: 22px;
	}
	50% {
		width: 12px;
	}
	100% {
		width: 22px;
	}
}

@keyframes success-anim {
    0% {
      transform: rotate(0deg) scale(0.5,0.5);
    }
    50% {
        transform: rotate(180deg) scale(1.2,1.2);
    }
    100% {
        transform: rotate(360deg) scale(1.0,1.0);
    }
  }

  @keyframes swipelefttomid 
  {
	  0% {
		  transform: translateX(-4000px);
	  }
	  100% {
		transform: translateX(0px);
	  }
  }

  @keyframes swiperighttomid 
  {
	  0% {
		  transform: translateX(4000px);
	  }
	  100% {
		transform: translateX(0px);
	  }
  }

  @keyframes faderedtoblack
  {
	  0% {
		  color: red;
	  }
	  100% {
		color: black;
	  }
  }

  @keyframes growwidth
  {
	  0% {
		  width: 0%;
	  }
	  100% {
		width: 90%;
	  }
  }

