/* Colors */
:root  {
	--bs-dark-rgb: 10, 15, 32;
	--amk-blue-light: #9399b6;
	--amk-blue-mid: #303f71;
	--amk-blue-dark: #161f3d;
	--amk-blue-grey: #393E51;
	--amk-orange: #eb5500;
	--amk-orange-dark: #ca4900;
	--amk-orange-light: #ff7629;
	--amk-green: #009707;
	--amk-bg-light: #20325f;
    --amk-bg-dark: #172341;
    --amk-bg-darkest: #0e142c;
	--amk-grey-dark: #1a1a1a;
	--amk-grey: #313131;
	--amk-grey-light: #999999;
	--amk-bg-alt: #fffbf6;
	--amk-bg-alt-light: #F2EFEB;
	--amk-bg-alt-dark: #f7ddcd;
	--amk-yellow: rgb(255,193,7);
	--amk-btn-primary: #4B989E;
	--amk-btn-primary-hov: #2D7A80;
	--amk-btn-primary-dis: #aab8b9;
	--amk-btn-secondary: #FF6600;
	--amk-btn-secondary-hov: #D77200;
	--amk-btn-secondary-dis: #c4b29d;
    --amk-red: #c50000;
    --amk-red-dark: #970000;
    --amk-red-light: #d33737;
	--amk-subheaders: var(--amk-bg-darkest);
	--amk-yellow: #FFB903;
}

::selection {
	background: #ccc;
	color: var(--amk-grey-dark);
}

/* Base */
body {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
    font-weight: 300;
    line-height: 1.72em;
}

@media screen and (max-width: 600px) {
	body {
		font-size: 16px;
		line-height: 1.625em;
	}
}
	
/* Buttons */
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--amk-btn-primary);
    --bs-btn-border-color: var(--amk-btn-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--amk-btn-primary-hov);
    --bs-btn-hover-border-color: var(--amk-btn-primary-hov);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--amk-btn-primary-hov);
    --bs-btn-active-border-color: var(--amk-btn-primary-hov);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--amk-btn-primary-dis);
    --bs-btn-disabled-border-color: var(--amk-btn-primary-dis);
	font-weight: 600;
}

.btn {
	padding: .5em;
}

.btn-secondary {
    --bs-btn-bg: var(--amk-btn-secondary);	
	--bs-btn-color: #fff;
	--bs-btn-border-color: var(--amk-btn-secondary);
    --bs-btn-hover-color:  #fff;
    --bs-btn-hover-bg: var(--amk-btn-secondary-hov);
	--bs-btn-hover-border-color: var(--amk-btn-secondary-hov);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--amk-btn-secondary-dis);
	--bs-btn-active-border-color: var(--amk-btn-secondary-dis);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--amk-btn-secondary-dis);
    --bs-btn-disabled-border-color: var(--amk-btn-secondary-dis);
}

.btn-tertiary {
    --bs-btn-bg: transparent;	
	--bs-btn-color: #999;
	font-weight: 300;
	--bs-btn-border-color: transparent;
    --bs-btn-hover-color: #666;
    --bs-btn-hover-bg: transparent;
	--bs-btn-hover-border-color: transparent;
    --bs-btn-active-color: #666;
    --bs-btn-active-bg: transparent;
	--bs-btn-active-border-color: transparent;
}

.btn-disabled {
	background-color: #f5f5f5 !important;
}

/* Text */
h1 {
	font-size: calc(1.65rem + 1.4vw);
}
h2 {
	font-size: calc(1.4rem + .95vw);
}

strong {
	font-weight: 600;
}

a {
	color: var(--amk-btn-primary-hov);
}

.lead {
	line-height: 1.5em;
}

.checkmarks {
    font-size: 1.1em;
}

h1,
h2,
h3,
h4,
h5, 
.navbar-brand, 
.sticker,
#usps-home {
    font-family: "Merriweather";
    font-weight: 900;
    line-height: 1.11em;
    letter-spacing: -0.56px;
}

#usps-home {
	font-size: 1.25rem;
}

h2, h3, h4, h5, h6, #usps-home {
	color: var(--amk-subheaders);
}

.bg-darkest, .bg-dark, .bg-gradient, .bg-cta {
	--amk-subheaders: white;
}

/* Forms */

label {
	font-weight: 500;
}

.hero label { 
	font-size: .875em;
}

.form-control {
	border-radius: .75em;
	padding: .875em;
}

.form-control:focus {
    border-color: var(--bs-border-color);
    box-shadow: 0 0 0 .25rem rgba(0, 0, 0, .02);
}

input.form-control::placeholder {
	color: #a5a5a5;
}

input.form-control:-internal-autofill-selected {
    background-color: black!important;
    background: black!important;
}

#readmorecollapse, #readmorecollapse2 {
    display: none;
}

#readmorelink, #readmorelink2 {
    color: inherit;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
	font-size: .875em;
}

/* Colors */
.text-yellow {
	color: var(--amk-yellow);
}
.text-green {
	color: green;
}
.text-grey-light {
	color: var(--amk-grey-light);
}

.text-red {
	color: var(--amk-red);
}

.text-orange {
	color: var(--amk-orange);
}
.text-orange-dark {
	color: var(--amk-orange-dark);
}
.text-orange-light {
	color: var(--amk-orange-light);
}

.text-blue {
	color: var(--amk-blue);
}
.text-blue-dark {
	color: var(--amk-blue-dark);
}
.text-blue-light {
	color: var(--amk-blue-light);
}
.text-alt {
	color: var (--amk-btn-secondary);
}

.text-yellow {
	color: var (--amk-yellow);
}

.text-highlight {
	
}

/* Cookie Script Check Box */

.cookiecheckbox input {
	display:none;
}

.cookiecheckbox label {
	font-weight: bold;
	color: #999;
}

.cookiecheckbox input:checked + label, .cookiecheckbox label:hover {
	color: green;
}

/* Backgrounds */
.bg-dark {
	background-color: var(--amk-bg-dark)!important;
	color: white;
}

.bg-darkest {
	background: var(--amk-bg-darkest);
	color: white;
}

.bg-gradient {
	background: var(--amk-bg-dark);
	background: linear-gradient(180deg, var(--amk-bg-light) 0%, var(--amk-bg-dark) 100%)!important;
	color: white;
}

.bg-light {
	background-color: var(--amk-bg-light)!important;
}

.bg-alt {
	background: var(--amk-bg-alt);
}

.bg-cta {
	background: var(--amk-bg-darkest);
	color: white;
    align-items: center;
    background-size: cover;
    background-position: right center;
}

.bg-alt.border-top, .bg-alt.border-bottom {
	--bs-border-color: var(--amk-alt-dark);
}

/* Utilities */

.seperator {
	width: 1px; 
	background: #00000030; 
	height: 20px; 
	margin: 0 .5rem;
}

.box-shadow {	
    box-shadow: -3px 3px 10px 0px #0000007d;
}

ul.checkmarks {
	padding-left: 0rem;
}

ul.checkmarks li {
	display: block;
}

@media screen and (max-width: 767px) {
	.fixed-bottom-sm {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1030;
	}
}

@media screen and (min-width: 768px) {
	.w-50-sm {
		width: 50%!important;
	}
}

.bg-alt .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-bg-type: var(--amk-bg-alt);
}

/* Header */
.navbar-brand {
	font-size: 1.25em;
}

header a {
    color: inherit;
    text-decoration: none;
}

/* Navbar Test*/
.active>.page-link, .page-link.active {
    color: #f2efeb;
    background-color: var(--amk-bg-light);
}

.pagination {
	font-size: .875em;
    --bs-pagination-bg: var(--amk-bg-dark);
    --bs-pagination-color: #fff;
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--amk-bg-dark);
    --bs-pagination-active-border-color: var(--bs-border-color);
    --bs-pagination-disabled-color: rgb(255 255 255 / 33%);
    --bs-pagination-disabled-bg: var(--amk-bg-darkest);
}

.page-link {
	font-size: .875em;
}

.pagination-sm {
    --bs-pagination-padding-y: 0rem;
}

/* Hero */

.hero .card {
	border-radius: 1em;
	border: none;
}

.hero-image {
	position: relative;
}

.sticker {
    background-color: var(--amk-btn-secondary);
    border-radius: .5em;
    padding: calc(.5em + .5vw);
    position: absolute;
    z-index: 1;
    font-size: calc(1em + .33vw);
	top: 15%;
}

.sticker {
    border-radius: 0;
    transform: rotate(-15deg);
    background: white;
    border: 2px solid var(--amk-red);
    color: black;
}

.sticker.sticker-top-0 {
	top: 0%;
}
.sticker.sticker-top-5 {
	top: 5%;
}
.sticker.sticker-right-0 {
	right: 0%;
}
.sticker.sticker-right-5 {
	right: 5%;
}

.emphasis {
	color: var(--amk-red);
}

@media screen and (max-width: 600px) {
	#home .sticker {
		top: 5%;
	}
}

@media screen and (max-width: 600px) {
	#upsell .sticker {
		font-size: 1em;
	}
}

.checkmarks .fa-check {
	color: green;
}

	/* Order card */
	.price {
		font-size: 1.75em;
		font-weight: 700;
		color: var(--amk-btn-secondary);
	}

	.price .discount {
		font-size: .75em;
		font-weight: 500;
		color: var(--amk-grey-light);
		text-decoration: line-through;
		line-height: 1em;
		vertical-align: middle;
		margin-left: .5em;
	}
	
	.discount-banner.btn {
		cursor: initial;
	}
	.discount-banner.btn.btn-secondary {
		--bs-btn-border-color: var(--amk-btn-secondary);
		--bs-btn-hover-bg: var(--amk-btn-secondary);
		--bs-btn-hover-border-color: var(--amk-btn-secondary);
		--bs-btn-active-bg: var(--amk-btn-secondary);
		--bs-btn-active-border-color: var(--amk-btn-secondary);
		--bs-btn-disabled-bg: var(--amk-btn-secondary);
		--bs-btn-disabled-border-color: var(--amk-btn-secondary);
	}
	
.diameter {
    position: absolute;
    bottom: 10%;
    left: 0%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #FFFFFF;
    font-size: .6em;
	font-family: "Merriweather";
}

@media (min-width: 991px) {
	.diameter {
        left: 0%;
        bottom: 20%;
	}
}

@media (min-width: 578px) and (max-width: 990px) {
	.diameter {
        left: 5%;
        bottom: 15%;
	}
}

@media (max-width: 576px) {
	.diameter {
        left: 5%;
		font-size: .7em;
	}
}

/* Shine */
	/* Basic */

	.hero-wrapper {
	  position: relative;
	  max-width: 767px;
	  width: 100%;
	  mask-repeat: no-repeat;
	  mask-size: 100%;
	  mask-mode: alpha;
	}
	 
	.hero-wrapper img {
	  width: 100%;
	  height: auto;
	}
	 
	.shine-wrapper::before {
	  content: '';
	  position: absolute;
	  top: 0px;
	  left: 0px;
	  width: 100%;
	  height: 100%;
	  background: linear-gradient(
		120deg,
		rgba(0, 0, 0, .75) 0%,
		rgba(0, 0, 0, .75) 20%,
		rgba(15, 15, 15, .75) 39%,
		rgba(50, 50, 50, .75) 50%,
		rgba(15, 15, 15, .75) 60%,
		rgba(0, 0, 0, .75) 80%,
		rgba(0, 0, 0, .75) 100%
	  );
	  mix-blend-mode: plus-lighter;
	  animation: shine 6s ease-in-out 1s infinite alternate;
	  background-size: 300%;
	  background-position: left;
	  z-index: 2;
	}
	 
	@keyframes shine {
	  to {
		background-position: right;
	  }
	}
	
/* Tables */
	.specificaties.table-dark {
		--bs-table-bg: transparent;
		--bs-table-striped-bg: #ffffff2b;
	}

	/* Specificaties */

	.specificaties tr td:last-of-type {
		text-align: end;
	}
	.specificaties tr td:first-of-type {
		font-weight: bold;
	}

/* Shopping Cart */
.dropdown-menu {
	width: max-content;
	padding: 1rem;
}

.dropdown-toggle::after {
	display: none;
}

@media screen and (max-width: 768px) {
	.dropdown-menu {
		width: 320px;
	}
}

.totaalprijs {
	padding: .5rem 0;
}

/* Testimonial */

#testimonial-carousel .slick-track {
	display: flex;
}
#testimonial-carousel .slick-slide {
	margin: 0 calc(var(--bs-gutter-x) / 2);
	height: auto;
}

#testimonial .card {
	background: var(--amk-bg-alt-light);
	border-radius: var(--bs-border-radius-xl);
	border: 0;
	height: 100%;
}

#testimonial .card p {
	font-style: oblique;
	color: var(--amk-blue-grey);
}

.initials {
  background: var(--amk-bg-light);
  color: #fff;
  width: 75px;
  height: 75px;
  font-size: 1.5rem;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  text-align: center;
  display: flex;
}

.slick-arrow {
    position: absolute;
    z-index: 1;
    transition: ease-in-out .2s;
    top: 50%;
    margin-top: 0;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--amk-bg-dark);
    color: white;
	font-size: 0px;
}

.slick-prev {
    left: 0%;
    transform: translate(-50%, -50%);
}

.slick-next {
    right: 0%;
    transform: translate(50%, -50%);
}

@media screen and (max-width: 600px) {
	.slick-prev {
		transform: translate(0%, -50%);
	}

	.slick-next {
		right: 0%;
		transform: translate(0%, -50%);
	}
}

.slick-next::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    font-size: 1.3rem;
    position: absolute;
    left: 5%;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.slick-prev::before {
    content: '\f053';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    font-size: 1.3rem;
    position: absolute;
    right: 5%;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

/* Footer */

#copyright span {
	opacity: 0.8;
}
	
#copyright a {
    color: inherit;
    text-decoration: none;
	opacity: 0.8;
}

#copyright a:hover {
	opacity: 1;
}

/* Checkout Test */
	/* Checkout page - start */

	.korting-checkmarks label {
		font-size: .875em;
		line-height: 1.5em;
		font-weight: inherit;
	}
	.korting, .korting2 {
		font-size: .875em;
	}

	.hero #overzicht {
		padding: 24px;
		background-color: #FFFFFF;
		color: var(--dark-blue);
		border-radius: 16px;
	}

	/* 

	.overzichtwinkelwagen #bestellingselectie .totaalprijs {
		border-bottom: none;
	} */


	#bestellingselectie .nietgekozen,
	#bestellingselectie .gekozen,
	#bestellingselectie .korting,
	.totaalprijs {
		border-top: 1px solid #eaeaea;
		padding: 8px 0;
	}

	#bestellingselectie div:first-of-type {
		border-top: unset;
	}

	.winkelwagenafbeelding {
		width: 9%;
		display: inline-block;
		vertical-align: top;
	}

	.winkelwagenafbeelding img {
		max-width: 60px;
		width: 100%;
		vertical-align: top;
		padding-right: 2px;
		padding-bottom: 2px;
	}

	.winkelwagenitemomschrijving {
		display: inline-block;
		width: 71%;
	}

	.overzichtwinkelwagen #bestellingselectie .winkelwagenitemprijs {
		margin-right: 0px;
		display: inline-block;
		width: 16%;
		text-align: right;
		padding-left: 2px;
		vertical-align: top;
		padding-right: 2px;
	}

	.overzichtwinkelwagen #bestellingselectie .edititem {
		width: 5%;
	}

	@media screen and (min-width: 769px) {

		.winkelwagenafbeelding {
			width: 7%;
		}

		.winkelwagenitemomschrijving {
			width: 71%;
		}

		.overzichtwinkelwagen #bestellingselectie .winkelwagenitemprijs {
			width: 14%;
			padding-left: 0px;
			padding-right: 3px;
		}
	}

	@media screen and (min-width: 993px) {
		.winkelwagenafbeelding {
			width: 7%;
		}

		.winkelwagenitemomschrijving {
			width: 77%;
		}

		.overzichtwinkelwagen #bestellingselectie .winkelwagenitemprijs {
			width: 13%;
			padding-left: 0px;
			padding-right: 3px;
		}

	}

	@media screen and (max-width: 991px) {
		#bedankt .overzichtwinkelwagen #bestellingselectie .winkelwagenitemprijs {
			width: 24%;
			padding-left: 0px;
			padding-right: 0px;
		}
	}

	.additem {
		display: block;
		font-size: 28px;
	}

	.gekozen,
	.nietgekozen,
	.korting {
		display: block;
		position: relative;
	}

	.extraomschrijving {
		font-size: small;
		color: #4a4a4a;
	}

	.totaalprijs .winkelwagenitemomschrijving {
		text-align: right;
		padding-right: 20px;
	}

	#bestellingselectie .modal {
		background-color: rgba(0, 0, 0, 0.5);
		background-color: #0000005e;
	}

	#bestellingselectie .modal-title {
		color: #fff;
		font-weight: 600;
	}

	#bestellingselectie .modal-content {
		background-color: #193475;
		background: -o-radial-gradient(circle, rgb(67 99 173) 0%, rgb(25 52 117) 100%);
		background: radial-gradient(circle, rgb(67 99 173) 0%, rgb(25 52 117) 100%);
	}

	#bestellingselectie .close {
		color: #fff;
	}

	.modal-cart {
		max-width: 650px;
	}

	.modal-title {
		font-size: 1.3em;
	}

	.close {
		opacity: 1;
		font-size: x-large;
	}

	.inputerror .form-control {
		border-color: red;
	}

	.nietgekozen,
	.nietgekozen a,
	.nietgekozen a:not(.button) {
		color: #a5a5a5;
		text-decoration: none;
	}
	.additem a,
	.additem a i:not(.button) {
		color: green;
		font-size: .875em;
	}

	.nietgekozen small {
		color: #454545;
	}

	.error {
		color: red;
	}

	.totaalbreak {
		border: none !important;
	}

	.btn-img {
		background: none;
		border: none;
		padding: 0;
		margin: 0;
	}

	.btn-img:hover,
	.btn-img:active,
	.btn-img:focus {
		border: none;
		outline: none;
	}

	#banklabel::after {
		content: url(../images/betalen-met-ideal-logo-sm.png);
		margin-left: 10px;
		margin-top: 3px;
	}

	#zekerheden ul {
		list-style: none;
		padding-left: 20px;
	}

	#zekerheden ul li {
		margin-bottom: .5em;
	}

	#zekerheden ul li .fa.fa-check {
		margin-left: -20px;
	}

	#StartPayment {
		width: 100%;
		margin-top: 1em;
		border-radius: 10px;
	}

	.korting-checkmarks {
		margin: 1em 0 .25rem 0;
	}

	.korting2 {
		color: #454545;
		margin: 0.25rem 0;
		padding: 0.5rem !important;
		border: 1px solid #eaeaea;
		background: #f5f5f5;
		margin-bottom: 0.5rem;
	}

	.korting2 .winkelwagenafbeelding {
		display: none;
	}

	.korting2 .winkelwagenitemomschrijving {
		width: 81%;
	}
	

/*
https://projects.lukehaas.me/css-loaders/
*/
.geslotenoverlay{
	height: 100%;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.4); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
	display: flex;
    justify-content: center;
    align-items: center;
}
.imggesloten {
	margin-top: auto;
	z-index: 1;
	-ms-transform: rotate(-25deg); /* IE 9 */
	-webkit-transform: rotate(-25deg); /* Chrome, Safari, Opera */
	transform: rotate(-25deg);
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
}
.loaderoverlay{
	height: 100%;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.4); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
}
.loader {
  margin: 100px auto;
  top: 40%;
  font-size: 25px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@-webkit-keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
@keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
