

/* colors */
:root {
  --red-color: #E54B29;
  --error-color: #E64B2A;
  --yellow-color: #F7C514;
  --dark-color: #1B1B1B;
  --gray-color: #F2F5FA;
  --gray-button-color: #C1C0D5;
  --gray-border-color: #C1C9D5;
  --header-text-color: #0F212E;
  --half-width: 100%;
  --highlight-width: 100%;
  --full-width: 100%;
}

/* fonts */
@font-face {
    font-family: 'Reddit Sans';
    src: url('./Reddit_Sans/RedditSans-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
}
.bold {
	font-weight: 800;			/**/
}
.underline {
	text-decoration: underline;
}
.boldlarge {
	font-weight: 800;
	font-size: 26px;
	line-height: 26px;
}


/* global */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *::before, *::after {
            box-sizing: inherit;
        }


.view-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 768px;
	margin: 0 auto;
}

.page-container {
  position: relative;
  padding: 20px;
  width: 90%;
  /*max-width: 480px;/"*/
  margin: 0 auto;
}

.container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.font-common {
  font-family: 'Reddit Sans', sans-serif;
  font-style: normal;
  text-transform: uppercase;
}

.horizontal-group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.horizontal-group > .horizontal-subgroup {
  width: calc(100% - 0px);
  margin: 0 0px;
  display: inline-block;
}
.width-narrow {
  width: 100%;
}
.center-element {
  margin: 0 auto;
}

.top-margin {
	margin-top: 70px;
}
.top-margin-x {
	margin-top: 112px;
}

.bottom-margin {
	margin-bottom: 70px;
}

.left-margin {
	margin-left: 70px;
}

.vertical-group {
  display: flex;
  flex-direction: column;
  align-items: left;
  width: 100%;
}
.vertical-group > .vertical-subgroup {
  width: calc(100% - 0px);
  margin: 0 0px;
}


.overlay {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 85%;
	height: 85%;
	max-width: 500px;
	max-height: 500px;
	z-index: 10;
	border-radius: 10px;
}
.popup {
	background-color: white;
	padding: 20px;
    border-radius: 10px;
    border-color: var(--gray-border-color);
    box-shadow: 0;
}
.popup-message {
	font-weight: 800;
  	font-size: 12px;
  	line-height: 16px;
  	text-align: center;
  	color: var(--header-text-color);
  	composes: font-common;
}
.grayed-out {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent gray background */
    z-index: 5; /* Ensure the grayed-out background is below the overlay */
}

/* modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.8);
    z-index: 1;
}

.modal-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.modal-content {
	width: 100%;
	height: 70vh;
    overflow-y: auto;
    padding: 10px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    composes: font-common;
	text-align: center;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
}

/* header */

/* logo */
.logo-container {
}
.logo-container img {
  width: 230px;
  height: 101px;
}
.logo-container .text {
	align-text: left;
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	composes: font-common;
}
.menu-logo-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.menu-logo-container img {
  width: 156.47px;
  height: 68.73px;
  margin: 0 auto;
}


/* header button */
.header-button-container {
  position: absolute;
  width: 166px;
  height: 42px;
  right: 30px;
  top: 35px;
  cursor: pointer;
}
.header-button {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--yellow-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: var(--dark-color);
  text-decoration: none;
  composes: font-common;
}

/* links */
.header-text-container {
  margin-top: 10%;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 22px;
  line-height: 50px;
  text-align: left;
  display: flex;
  color: var(--header-text-color);
  justify-content: space-between;
  composes: font-common;
}
.header-yellow {
  color: var(--yellow-color);
}

.header-text-container a:link {
  color: var(--header-text-color);
  text-decoration: none; 
}
.header-text-container a:visited {
  color: var(--header-text-color);
  text-decoration: none; 
}
.header-text-container a:hover {
  color: var(--gray-color);
  text-decoration: none; 
}
.header-text-container a:active {
  color: var(--gray-color);
  text-decoration: none; 
}
.header-active {
  color: var(--gray-color);
  text-decoration: none; 
}

/* greeting group */
.greeting-group {
  margin-top: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
}
.greeting-group > .sub-greeting {
  width: calc(100% - 0px);
  margin: 0px 10px;
}
.greeting-image {
  width: 100%;
  height: 100%;
}

/* basic text block */
.text-block {
}
.text-half {
  width: var(--half-width);
}
.text-full {
	width: var(--full-width);
}
.text-highlight {
  width: var(--highlight-width);
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-block .small-heading {
  font-weight: 800;
  font-size: 14px;
  line-height: 18.18px;
  opacity: 0.5;
  color: var(--header-text-color);
  composes: font-common;
}

.text-block .title {
  font-weight: 900;
  font-size: 46px;
  line-height: 52px;
  color: var(--header-text-color);
  composes: font-common;
  margin: 15px 0px;
}
.text-block .title-small {
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  color: var(--header-text-color);
  composes: font-common;
  margin: 5px 0px;
}
.text-block .title-small-nc {
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  composes: font-common;
  margin: 5px 0px;
}
.text-block .title-highlight {
  font-weight: 900;
  font-size: 32px;
  line-height: 38px;
  color: var(--header-text-color);
  composes: font-common;
  margin: 5px 0px;
}
.text-block .text-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--header-text-color);
  composes: font-common;
  /*margin: 20px 0px;*/
}
.text-block .text-body-reveal {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--header-text-color);
  composes: font-common;
  /*margin: 20px 0px;*/
}
.text-block .text-body-small {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--header-text-color);
  composes: font-common;
  margin: 20px 0px;
}
.text-block .text-body-small-nc {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  composes: font-common;
  margin: 20px 0px;
}
.text-block .text-body-highlight {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--header-text-color);
  composes: font-common;
  margin: 20px 0px;
}
.text-block .friends-image {
	width: 100%;
	height: auto;
}

/* main buttons */
.main-button-container {
  width: 100%;
  height: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.main-button {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  line-height: 18.18px;
  text-align: center;
  color: var(--dark-color);
  text-decoration: none;
  composes: font-common;
  cursor: pointer;
}
.yellow-button {
  background: var(--yellow-color);
}
.black-button {
  background: black;
  color: var(--gray-color);
}

.disabled-button {
  background: var(--gray-button-color);
  cursor: auto;
}
.white-button {
  background: #FFFFFF;
  border: 1px solid rgba(15, 33, 46, 0.3);
}
.green-button {
  background: #32F802;
  border: 1px solid rgba(15, 33, 46, 0.3);
}

/* info boxes */
.gray-box {
	position: relative;
	background: var(--gray-color);
	border-radius: 30px;
	height: 350px;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: top;
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.gray-box.active {
  background-color: var(--header-text-color);
}
.gray-box.active > * {
	color: #FFFFFF;
}
.gray-box-image {
	width: 50px;
	height: auto;
}

/* highlights */
.highlight-image {
	width: 100%;
	height: 100%;
}
.highlight-left-margin {
	
}
.highlight-right-margin {
	
}

/* toggles */
.toggle-container {
    background-color: var(--gray-color);
    border-radius: 10px;
    min-height: 80px;
    width: var(--full-width);
    overflow: hidden;
    transition: height 0.3s ease;
    margin-top: 10px;
    margin-bottom: 10px;
}

.toggle-title {
	width: 92%;
    cursor: pointer;
    color: var(--header-text-color);
    user-select: none;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    padding-left: 10px;
    padding-right: 40px;
    composes: font-common;
}

.toggle-title::after {
    content: '';
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
    height: 13px;
    background-image: url('./angle-down.png');
    background-size: cover;
    transition: transform 0.3s ease;
}

.toggle-text {
	width: 92%;
    display: none;
    margin: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 400;
    font-size: 16px;
    composes: font-common;
}

.toggle-text.show {
    display: block;
    opacity: 1;
}

.toggle-container.active {
    min-height: 220px;
    font-weight: 800;
}

.toggle-container.active .toggle-title {
    font-weight: 800;
}

.toggle-container.active .toggle-title::after {
    background-image: url('./angle-up.png');
}

/* hide/show */
.hidden {
    display: none;
}

/* bottom call to action */
.bottom-container {
    background-color: var(--gray-color);
    border-radius: 10px;
    height: auto;
    width: var(--full-width);
    overflow: hidden;
    transition: height 0.3s ease;
    margin-top: 70px;
    margin-bottom: 10px;
    padding: 10px;
}
.bottom-image {
	/*height: 100%;*/
	width: 100%;
}

/* footer */
.footer-container {
	background-color: var(--yellow-color);
	width: 100%;
	display: flex;
	flex-direction: column;
}
.footer-page {
	width: var(--full-width);
	background-color: var(--yellow-color);
	margin: 0 auto; 
}
.footer-logo-container {
  position: relative;
  left: 0px;
  top: 16.5px;
}
.footer-logo-container img {
  width: 170px;
  height: 74.67px;
}
.footer-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 800;
  font-size: 22px;
  line-height: 50px;
  text-align: left;
  color: var(--header-text-color);
  composes: font-common;
}
.footer-text-container a:link {
  color: var(--header-text-color);
  text-decoration: none; 
}
.footer-text-container a:visited {
  color: var(--header-text-color);
  text-decoration: none; 
}
.footer-text-container a:hover {
  color: var(--gray-color);
  text-decoration: none; 
}
.footer-text-container a:active {
  color: var(--gray-color);
  text-decoration: none; 
}
.copyright-text-container {
  position: relative;
  width: 200px;
  height: 17px;
  left: 0px;
  top: calc(100% - 20px);
  font-weight: 400;
  font-size: 10px;
  line-height: 12.99px;
  text-align: left;
  display: flex;
  color: var(--header-text-color);
  justify-content: space-between;
  composes: font-common;
}
.terms-text-container {
  position: relative;
  width: 200px;
  height: 17px;
  left: calc(100% - 200px);
  top: calc(100% - 20px);
  font-weight: 400;
  font-size: 10px;
  line-height: 12.99px;
  text-align: right;
  display: flex;
  color: var(--header-text-color);
  justify-content: space-between;
  composes: font-common;
}
.terms-text-container a:link {
	color: var(--header-text-color);
	text-decoration: none;
}
.terms-text-container a:visited {
	color: var(--header-text-color);
	text-decoration: none;
}
.terms-text-container a:hover {
	color: var(--header-text-color);
	text-decoration: none;
}
.terms-text-container a:active {
	color: var(--header-text-color);
	text-decoration: none;
}

/* FAQ */

/* contact */
.contact-container {
	position: relative;
	background: var(--gray-color);
	border-radius: 30px;
	height: 600px;
	width: 85%;
	display: flex;
	flex-direction: row;
	align-items: top;
	padding: 30px;
	margin-top: 30px;
	margin-bottom: 70px;
}
.contact-email-input {
	height: 40px;
	width: 100%;
	color: var(--header-text-color);
	font-size: 14px;
	line-height: 18.8px;
	compose: font-common;
}
.contact-email-input::placeholder {
	color: gray;
}
.contact-text-input {
    box-sizing: border-box;
	height: 290px;
	width: 100%;
	left: 0px;
	color: var(--header-text-color);
	font-size: 14px;
	compose: font-common;
}
.contact-text-input::placeholder {
	color: gray;
}
.contact-success-container {
	position: relative;
	background: var(--gray-color);
	border-radius: 30px;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: top;
	padding: 30px;
	margin-top: 30px;
	margin-bottom: 70px;
}

/* check */
.screen-container {
	padding: 20px;
	width: var(--full-width);
	background-color: var(--gray-color);
	border-radius: 20px;
	box-sizing: border-box;
}
.instruction-text {
	font-size: 10px;
	line-height: 12.99px;
	font-weight: 800;
	compose: font-common;
}

.clickable-element {
	width: 45px;
	height: 45px;
	border-radius: 10px;
	border: 1px solid var(--dark-color);
	background-color: white;
	font-size: 15px;
	line-height: 45px;
	font-weight: 500px;
	text-align: center;
	cursor: pointer;
}
.clickable-element-gray {
	border: 0px;
	width: 45px;
	height: 45px;
	border-radius: 10px;
	font-size: 15px;
	line-height: 45px;
	font-weight: 500px;
	text-align: center;
	cursor: pointer;
	background-color: var(--gray-color); 
}

.clickable-element-active {
	font-weight: 800px;
	background-color: var(--yellow-color); 
}
.clickable-element-inactive {
	font-weight: 400px;
	color: var(--gray-color);
	background-color: var(--gray-border-color); 
	cursor: auto;
}
.number-selector {
	background-color: white;
	border-radius: 20px;
	width: 100%;
	padding: 10px;
}
.number-selector-title {
	margin-top: 15px;
	margin-left: 5%;
	font-size: 20px;
	font-weight: 800;
	line-height: 25.98px;
	composes: font-common;
}
.number-selector-status {
	margin-top: 15px;
}
.number-selector-neg-message {
	color: var(--red-color);
	font-size: 10px;
	font-weight: 800;
}

.error-stripe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: var(--error-color);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 1000; /* Ensure it is on top of other elements */
  display: none; /* Initially hidden */
  font-size: 13px;
  font-weight: 400;
  line-height: 16.88px;	
  composes: font-common;
}
.notification-stripe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: var(--yellow-color);
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 1000; /* Ensure it is on top of other elements */
  display: none; /* Initially hidden */
  font-size: 13px;
  font-weight: 400;
  line-height: 16.88px;	
  composes: font-common;
}

.check-results-container {
	background-color: white;
	border-radius: 20px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.kugl-image {
	width: 41.87px;
	height: 55px;
	margin: 0 auto;
}
.comb-view-container {
	background-color: var(--gray-color);
	border-radius: 10px;
	width: 260px;
	padding: 10px;
	box-sizing: border-box;
}
.comb-view-row-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.comb-view-row {
	display: flex;
	justify-content: space-between;
}
.comb-match-container {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.comb-match-group {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 72px;
}
.comb-match-background {
	background-color: var(--gray-color);
	border-radius: 10px;
	width: 72px;
	height: 74px;
	/*display: flex;
	justify-content: space-between;
	align-items: center;*/
}
.comb-comment-container {
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.3);
	padding: 10px;
	width: 50%;
	height: 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.comb-comment-text {
	font-size: 14px;
	line-height: 15px;
	font-weight: 800;
	compose: font-common;
	text-align: left;
}

/* app */
.app-container {
	border-radius: 20px;
	background-color: var(--gray-color);
	width: calc(var(--full-width) - 0px);
}
.scr-container {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
}
.scr-container .title-container {
	width: 85%;
	display: flex;
	flex-direction: column;
}
.scr-container .title-container .icon-container {
	width: 50px;
	height: auto;
}
.scr-container .title-container .title-block {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
}
.scr-container .title-container .title-block .small-heading {
	opacity: 50%;
	font-size: 12px;
	line-height: 15.59px;
	color: var(--header-text-color);
	font-weight: 800;
	composes: font-common;
}
.scr-container .title-container .title-block .large-heading {
	font-size: 24px;
	line-height: 31.17px;
	color: var(--header-text-color);
	font-weight: 900;
	composes: font-common;
}
.scr-container .navigation-forward-container {
	width: 90%;
	height: 59px;
	text-align: center;
	cursor: pointer;
}
.scr-container .navigation-forward-container .active-button {
	border-radius: 20px;
	background-color: var(--yellow-color);
	color: var(--header-text-color);
	font-size: 14px;
	line-height: 59px;
	font-weight: 800;
	composes: font-common;
}
.scr-container .navigation-forward-container .inactive-button {
	border-radius: 20px;
	background-color: var(--gray-button-color);
	color: var(--gray-color);
	cursor: auto;
}
.scr-container .navigation-backward-container {
	width: 90%;
	height: 59px;
	text-align: center;
	cursor: pointer;
}
.scr-container .navigation-backward-container .active-button {
	color: var(--header-text-color);
	font-size: 14px;
	line-height: 59px;
	font-weight: 800;
	composes: font-common;
}
.scr-container .navigation-backward-container .inactive-button {
	color: var(--gray-border-color);
	cursor: auto;
}
.progress-image {
	width: 75%;
	height: calc(75% * 15/256);
}

/* dbsel */
.dbsel-group {
	margin: 20px auto;
	width: 100%;
	display: flex;
	flex-direction: column;
}
.dbsel-container {
	border-radius: 20px;
	width: 100%;
	padding: 20px;
	background-color: white;
	cursor: pointer;
	margin-top: 20px;
}
.dbsel-container.active {
	background-color: var(--header-text-color);
}
.dbsel-container img {
	width: 50px;
	height: 50px;
}
.dbsel-container .info {
	position: absolute;
	right: 10%;
	width: 28px;
	height: 29px;
	cursor: pointer;
}
.dbsel-title {
	width: 100%;
	left: 10%;
	font-size: 26px;
	line-height: 33.77px;
	font-weight: 800;
	color: var(--header-text-color);
	composes: font-common;
}
.dbsel-title.active {
	color: var(--gray-color);
}
.dbsel-explanation {
	width: 75%;
	left: 10%;
	font-size: 14px;
	line-height: 18.18px;
	font-weight: 400;
	color: var(--header-text-color);
	composes: font-common;
}
.dbsel-explanation.active {
	color: var(--gray-color);
}

/* indication */
.indication-group {
	margin-top: 20px;
	display: flex;
}
.indication-group img {
	width: 12px;
	height: 16px;
	margin-right: 5px;
}
.indication-group .indication-text {
	font-size: 12px;
	line-height: 16px;
	font-weight: 800px;
	color: var(--header-text-color);
	composes: font-common;
}

/* numsel */
.numsel-group {
	width: 85%;
	margin: 20px auto;
	
}
.num-selector {
	background-color: white;
	border-radius: 20px;
	width: 100%;
	padding: 15px;
	margin-bottom: 20px;
}
.num-selector-title {
	font-size: 20px;
	font-weight: 800;
	line-height: 25.98px;
	composes: font-common;
}
.num-selector-subtitle {
	font-size: 14px;
	font-weight: 400;
	line-height: 18.18px;
	composes: font-common;
}

.num-selector-neg-message {
	color: var(--red-color);
	font-size: 10px;
	font-weight: 800;
}
.num-selector-status-container {
	margin: 20px auto;
	width: 85%;
	display: flex;
	justify-content: space-between;
}
.num-selector-status-element {
	width: 25%;
	padding: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.num-selector-status-text {
	height: 30px;
	font-size: 10px;
	line-height: 32px;
	font-weight: 800;
	color: var(--header-text-color);
}
.num-selector-status-value {
	width: 48px;
	height: 32px;
	background-color: white;
	border-radius: 10px;
	font-size: 15px;
	line-height: 32px;
	font-weight: 900;
	text-align: center;
	color: var(--header-text-color);
}

/* typesel */
.typesel-group {
	margin: 0px auto;
	width:  100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 20px;
}
.numsel-container .info {
	position: absolute;
	right: 10%;
	width: 28px;
	height: 29px;
	cursor: pointer;
}

.choice-container {
	background-color: white;
	max-width: 250px;
	width: 85%;
	height: 220px;
	border-radius: 20px;
	padding: 5px;
	margin-top: 20px;
}

.choice-container-disabled {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0.5;
}
.choice-container img {
	position: relative;*/
	left: 5%;*/
	width: 50px;
	height: 50px;
}
.choice-container .info {
	position: relative;
	top: 5%;
	left: 85%;
	width: 28px;
	height: 29px;
	cursor: pointer;
}
.choice-text {
	position: relative;
	font-size: 18px;
	line-height: 20px;
	font-weight: 800;
	height: 80px;
	width: 90%;
	margin: 0px auto;
	margin-top: 10px;
	composes: font-common;
}
.choice-selector-container {
	margin: 0 auto;
	margin-top: 10px;
	width: 80%;
	display: flex;
	justify-content: center;
}

.choice-element {
	width: 70px;
}
.choice-element-left {
	border: 1px solid black;
	border-radius: 10px 0px 0px 10px;
}
.choice-element-right {
	border: 1px solid black;
	border-radius: 0px 10px 10px 0px;
}
.choice-element-top {
	border: 1px solid black;
	border-radius: 10px 10px 0px 0px;
}
.choice-element-mid {
	border: 1px solid black;
	border-radius: 0px 00px 0px 0px;
}
.choice-element-bottom {
	border: 1px solid black;
	border-radius: 0px 0px 10px 10px;
}
.eurosel-choice-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}
.euro-selector {
	width: 100%;
	background: white;
	border-radius: 20px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}
.euro-explanation-container {
	width: 100%;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin-top: 10px;
	margin-bottom: 10px;
}
.euro-explanation-image {
	width: 109px;
	height: 18px;
}
.euro-explanation-text {
	font-size: 12px;
	line-height: 18px;
	font-weight: 800px;
	color: var(--header-text-color);
}
.euro-explanation-text:hover {
	color: var(--yellow-color);
}

/* levelsel */
.levelsel-group {
	margin: 10px auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.levelsel-container {
	border-radius: 20px;
	width: 85%;
	min-height: 75px;
	background-color: white;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 15px;
}
.levelsel-container.active {
	background-color: var(--header-text-color);
}
.levelsel-container img {
	border-radius: 10px;
	width: 30%;
	height: auto;
}
.levelsel-title {
	width: 20%;
	font-size: 20px;
	line-height: 26px;
	font-weight: 800;
	color: var(--header-text-color);
	composes: font-common;
	margin-left: 10px;
}
.levelsel-title.active {
	color: var(--gray-color);
}
.levelsel-explanation {
	width: 40%;
	font-size: 14px;
	line-height: 18.18px;
	font-weight: 400;
	color: var(--header-text-color);
	composes: font-common;
}
.levelsel-explanation.active {
	color: var(--gray-color);
}
.level-explanation-container {
	margin: 0px auto;
	width: 100%;
	height: 18px;
	display: flex;
	justify-content: space-between;
	cursor: pointer;
}

/* resultsel */
.resultsel-container {
	border-radius: 20px;
	padding: 20px;
	margin: 20px auto;
	width: 85%;
	background-color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.resultsel-container .active-button {
	border-radius: 20px;
	background-color: var(--yellow-color);
	color: var(--header-text-color);
	font-size: 14px;
	line-height: 40px;
	font-weight: 800;
	text-align: center;
	composes: font-common;
}
.resultsel-container .inactive-button {
	border-radius: 20px;
	background-color: var(--gray-button-color);
	color: var(--gray-color);
	cursor: auto;
}

.resultsel-container .title {
	font-size: 22px;
	line-height: 32px;
	font-weight: 900;
	color: var(--header-text-color);
	composes: font-common;
}
.resultsel-container .message {
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	text-align: left;
	color: var(--header-text-color);
	composes: font-common;
}
.resultsel-container .message {
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	text-align: left;
	color: var(--header-text-color);
	composes: font-common;
}
.resultsel-email-input {
	height: 60px;
	width: 100%;
	color: var(--header-text-color);
	font-size: 20px;
	line-height: 22px;
	compose: font-common;
	background-color: var(--gray-color);
	box-shadow: none;
	border: none;
	outline: none;
}
.resultsel-email-input::placeholder {
	color: gray;
}

/* info overlay */
.overlay-info-container {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.overlay-info-content {
    background-color: #fff;
    padding: 5px;
    border-radius: 20px;
    position: relative;
    font-size: 18px;
	line-height: 20px;
	font-weight: 400;
	overflow-y: auto;
	height: auto;
	width: 80%;
	max-width: 768px;
	margin: auto auto;
	text-align: left;
	color: var(--header-text-color);
	composes: font-common;
}

.overlay-info-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 32px;
    cursor: pointer;
}

.image-row {
	width: 95%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.image-row-img {
	width: calc(20% - 16px);
	height: auto;
}

/* info overlay */
.overlay-cookie-container {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.overlay-cookie-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    font-size: 16px;
	line-height: 18px;
	font-weight: 400;
	overflow-y: auto;
	height: auto;
	width: 60%;
	max-width: 768px;
	margin: auto auto;
	text-align: left;
	color: var(--header-text-color);
	composes: font-common;
}

.overlay-cookie-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 32px;
    cursor: pointer;
}
.overlay-cookie-active-button {
	border-radius: 20px;
	background-color: var(--yellow-color);
	color: var(--header-text-color);
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	composes: font-common;
	text-align: center;
	cursor: pointer;
}
.overlay-cookie-inactive-button {
	border-radius: 20px;
	background-color: var(--gray-button-color);
	color: var(--gray-color);
	font-size: 18px;
	line-height: 30px;
	cursor: auto;
	text-align: center;
}

.oib-text {
	text-align: right;
	font-weight: 400;
	font-size: 10px;
	line-height: 12px;
	composes: font-common;
}


.carousel-container {
  overflow: hidden;
  border: 2px solid #ccc;
  border-radius: 10px;
  position: relative;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel img {
  height: 100%;
  object-fit: contain;
  user-select: none;
}
