body {
  --main-hue: 207deg;
  --main-sat: 50%;
  --main-lum: 50%;
	--header-height: 280px;
	--footer-height: 240px;
  overflow-x: hidden;
}

html {
  min-height: 100vh;
  font-family: "Inter";
}

.main {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: row;
	font-family: 'Inter';
	background: hsl(var(--main-hue), calc(var(--main-sat) - 40%), calc(var(--main-lum) + 44%));
}

.main-content {
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
	background: hsl(var(--main-hue), calc(var(--main-sat) - 45%), calc(var(--main-lum) + 44%));
  /* padding: 30px; */
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
  box-sizing: border-box;
}

.container {
  width: auto;
  margin: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  background-color: white;
}

.container .container-section {
  width: 100%;
  padding: clamp(2px, 1.8vw, 20px) clamp(2px, 1.8vw, 14px);
}

.popup .container {
  padding: 0px 5px;
}

.popup .container .container-section {
  max-height: 70vh;
  overflow: auto;
}

.container .container-section-loading {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  background: #000;
  backdrop-filter: blur(2px);
}

.container .container-head {
  padding: 30px 25px;
  padding-bottom: 0px;
  text-align: left;
  font-size: 22px;
  font-weight: 300;
  font-family: "Roboto";
  border-radius: 4px 4px 0px 0px;
}

.container .container-footer {
  padding: 18px 23px;
  text-align: left;
  font-size: 22px;
  font-weight: 300;
  background-color: hsl(0deg 0% 98%) !important;
  font-family: "Roboto";
  /* border-top: 1px solid #e8eaf3; */
  border-radius: 0px 0px 4px 4px;
}

.container .section-head {
  font-weight: 400;
  color: hsl(var(--main-hue), calc(var(--main-sat) - 30%), var(--main-lum));
  font-size: 18px;
  border-bottom: 3px solid hsl(var(--main-hue), calc(var(--main-sat) - 40%), calc(var(--main-lum) + 44%));
  margin-bottom: 8px;
  border-radius: 0px;
  padding: 0px 0px 8px 0px;
}

.side-wrapper {
  scrollbar-width: 0;
}


/*==================================== BUTTON ====================================*/

.line {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid #000;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.04);
}


a {
  text-decoration: none;
}

img {
  object-fit: cover;
}
