@import url('https://fonts.googleapis.com/css2?family=Gruppo&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css");
html,

body {
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: white;
}

.form-signin {
  max-width: 330px;
  padding: 15px;
 
}

.form-signin .form-floating:focus-within {
  z-index: 2;
  
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  margin-bottom: 20px; 
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  
}
.Customer-link {
  font-family: 'Gruppo', cursive;
  /* font-family: 'Roboto', sans-serif; */
  /* font-family: 'Spartan', sans-serif; */
  /* font-family: 'Train One', cursive; */

  font-weight: 100;
  font-size:1.6em;
  color:white;
  background-color: rgb(204, 28, 28); 
  text-shadow: 1px 1px grey;
  letter-spacing: .2rem;
  box-shadow: 5px 5px 10px 5px grey;
  width: 300px;
  text-align: center;
  margin-bottom: 20px;
}
.image {
  z-index: 100; 
  /*position: fixed;*/
  box-shadow: 5px 5px 10px 5px grey;
  position: relative; 
  /* repeat-x; */
}


@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.box {
  background-color: white;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0% 20px; /* Added a percentage value for top/bottom padding to keep the wrapper inside of the parent */
  transform: skewY(-20deg);
}

.box > .wrapper {
  transform: skewY(20deg);
}

.Container {
  position: relative;
  width: 100%;
  background-color: white;
  min-height: 100vh;
  overflow: hidden;
}

.Container::before {
  content: '';
  position: absolute;
  height: calc( 100vh * 2.1 );
  width: 1800px;
  top: -10%;
  right: 65%;
  background-image: linear-gradient(-45deg, #1266F1 0%, #FFFFFF 70%); 
  transform: translateY(-50%);
  border-radius:50%;
  box-shadow: 5px 5px 10px 5px grey;
} 

.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 10px;
  width: 100%;
  box-shadow: 0px 0px 15px #cccccc;
  padding: 10px 10px;
  height: 110px;
  color: #fff;

  line-height: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  background: #292929;
  z-index: 120;
  cursor: pointer;
  border-radius: 3px;
}
#cookie-consent p{
  text-align: center;
  font-size: 15px;
  color: #4e4e4e;
}
#cookie-consent button{
  height: 20px;
  width: 104px;
  color: #fff;
  font-size: 12px;
  line-height: 10px;
  border-radius: 3px;
  border: 1px solid green;
  background-color: green;
  
}
.allow-button {
  width: 100%;
  border: navajowhite;
  background: #097fb7;
  padding: 5px;
  border-radius: 10px;
  color: white;
}
/* Start of Loading Spinner */
.loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	/* background: #081A51; */
	text-align: center;
	width: fit-content;
	height: fit-content;
	padding: 30px;
	z-index: 10000;
	/* border-radius: 10px;
	box-shadow: 0 0 30px rgba(0, 0, 0, .1); */
}

.loader .spinner-border {
	width: 40px;
	height: 40px;
}

.loader-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, .5);
	z-index: 9999;
} 
/* End of Loading Spinner */