:root {
  --headerFontFamily: 'Roboto', sans-serif;
  --headerFontSize: 28px;
  --headerFontWeight: 900;
  --headerFontStyle: normal;
  --headerFontColor: #000000;
  --headerBackgroundColor: #AFD8F2;
  --headerBorderRadius: 4px;
  --tabFontFamily: 'Roboto', sans-serif;
  --tabFontSize: 16px;
  --tabFontWeight: normal;
  --tabFontStyle: normal;
  --tabFontColor: #000000;
  --tabBackgroundColor: #AFD8F2;
  --tabBorderRadius: 8px;
  --bodyFontFamily: 'Roboto', sans-serif;

}



body {
  /*   background-image: linear-gradient(180deg, #316483 0%, #a3cef0 90%) !important; */
  /*  background-color: #336699; */
  background-color: #AFD8F2;
  overflow-x: hidden;
  margin: 0;
  /* Reset margin */
  padding: 0;
  /* Reset padding */
}

#timerContainer {
  width: 3em;
  height: 40px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  /* background-color: #AFD8F2; */
  align-items: center;
  color: #363651;
  font-weight: 900;
  font-size: 24px;
  box-shadow: none;
  /* border: 1px solid; */
  /* border-color: #332727ba; */
  /* border-radius: 10px; */
  /* margin-bottom: 5px; */
  /* background-image: url(https://geti-static-images.s3.ap-southeast-2.amazonaws.com/digital_timer.svg); */
  background-size: cover;
  background-position: center;
  font-family: 'Roboto', sans-serif;
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}


.notification-bar {
  width: 100%;
  background-color: yellow;
  color: blue;
  text-align: left;
  padding: 10px 20px;
  position: relative;
  display: flex;
  align-items: center;
}

.notification-icon {
  margin-right: 10px;
}

.notification-bar button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: blue;
  font-size: 20px;
  cursor: pointer;
}

/* Media query for smaller devices */
@media (max-width: 767px) {
  body {
    /*    overflow-y: scroll; /* Allow vertical scrolling for smaller devices */
    overflow-y: auto;
    overflow-x: hidden;
  }
}

p,
h1,
h2,
h3,
h4 {
  font-family: var(--bodyFontFamily);
}

.header-btn {
  background-color: #41729F;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  margin-left: 3%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: medium;
  transition: background-color 0.3s ease;
}

.topheader {
  justify-content: space-between;
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
  background-color: #AFD8F2;
  padding: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
#topButtonContainer.topheader {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 0px;
  padding: 2px;
  min-height: 50px;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px !important;
  display: flex;
  justify-content: space-between;
}

#topButtonContainer.headerBtn {
  margin-left: 5%;
  margin-right: 5%;
}

.header-btn
.finishTest{
  background-color: #41729F;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 1%;
  cursor: pointer;
  margin-left: 2%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: medium;
  transition: background-color 0.3s ease;
}

.getiBtn {
  background-color: #41729F;
  color: white;
  border: none;
  border-radius: 25px;
  margin: 5%;
  padding: 6px 10px;
  min-width: 80px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: medium;
  transition: background-color 0.3s ease;
}

.header-btn.getiBtn:hover {
  background-color: #ffffff;
  color: black;
  border: solid;
  border-color: #41729F;
}


.time-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.time-alert .modal-content {
  background-color: #fff;
  border-radius: 5px;
  max-width: 400px;
  max-height: 60%;
  overflow: auto;
}

.time-alert .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
  background-color: #41729F;
  color: #ffffff;
  margin-bottom: 2px;
}

.time-alert .modal-title {
  margin: 0;
  font-size: 1.25rem;
}

.time-alert .modal-close {
  cursor: pointer;
  font-size: 1.25rem;
}

.time-alert .modal-body {
  margin-top: 20px;
  margin-bottom: 20px;
}

.time-alert .modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}  

.time-alert .modal-footer button {
  margin-left: 10px;
}

.time-alert .modal-footer button {
  border: none;
  background-color: transparent;
  color: #232f3e;
}

.time-alert .modal-footer button:hover {
  background-color: #41729F;
  color: #ffffff;
}




.time-alert .modal-body {
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 20px;
	/* Add padding around the modal body */
}

@media screen and (max-width: 600px) {
  .time-alert .modal-content {
    width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #timerContainer {
		font-size: 18px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	}
}

.terms-container {
  margin-top: 1%;
  font-size: medium;
  text-align: center;
  line-height: 1.5;
}
/* Media query for smaller devices */
@media only screen and (max-width: 767px) {
.terms-container {
  margin-top: 2%; /* Adjust margin top */
  font-size: medium; /* Reset font size */
  line-height: 1.5; /* Reset line height */
}

}
.body-container{
  width: 100%;
}

.startTest {
  background-color: #41729F; /* Changed background color */
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: medium;
  transition: background-color 0.3s ease;
  width: 130px; /* Adjust width as needed */
  margin: 0 auto; /* Center horizontally */
  margin-top: 10px; /* Add some top margin */
  padding: 10px 15px; /* Added padding */
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
}

.startTest:hover {
  background-color: #ffffff;
  color: black;
  border: solid;
  border-color: #41729F;
}


/* Growl Notification Styles */
.growl {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #A367AB;
  color: white;
  padding: 15px;
  border-radius: 8px;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
}

.growl.show {
  display: block;
  animation: fadeOut 5s forwards;
  /* Total duration adjusted to 3s */
}

@keyframes fadeOut {

  0%,
  66% {
      /* Delay the start of fading out to around 2s */
      opacity: 1;
  }

  100% {
      opacity: 0;
      visibility: hidden;
  }
}




@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Koulen&family=Lato&family=Nunito&family=Playfair+Display:ital@1&family=Prata&family=Raleway:ital,wght@1,100&family=Roboto&family=Roboto+Condensed&family=Teko&display=swap');

.btn-top {
  font-family: Roboto, sans-serif;
  font-weight: 0;
  font-size: 14px;
  color: #fff;
  background-color: #41729F;
  padding: 7px 20px;
  border: 2px solid #41729F;
  box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
  border-radius: 50px;
  transition: 1000ms;
  transform: translateY(0);
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}

.btn-top:hover{

transition : 1000ms;
padding: 10px 50px;
transform : translateY(-0px);
background-color: #fff;
color: #41729F;
border: solid 2px #41729F;
}

.form-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e6eef33d;
  border-radius: var(--headerBorderRadius);
  font-family: var(--headerFontFamily);
  font-style: var(--headerFontStyle);
  font-weight: 900;
  font-size: large;
  color: var(--headerFontColor);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

#confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.confetti {
  position: absolute;
  border-radius: 0; /* Change this to 0 to make rectangles */
  animation-fill-mode: forwards;
}

@keyframes fall {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0;
  }
}