/*variables*/
/*common attributes for all elements*/
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/*setting wrapper styles*/
.wrapper {
  font-family: "Rastin-Line";
  overflow-x: hidden;
  background: rgb(242, 255, 255);
  background: linear-gradient(90deg, rgb(242, 255, 255) 0%, rgb(177, 224, 249) 100%);
  /*select school staff styles*/
  /*all survey questions styles*/
  /*calendar styles*/
  /*clock styles*/
  /*back to top styles*/
}

.wrapper .select-school-staff {
  transform: translateY(-50px);
  animation: opacities 0.7s forwards;
  margin-right: 7%;
  font-size: 20px;
}

.wrapper .select-school-staff select {
  outline: none;
  border: 1px solid #005B5C;
}

.wrapper .questions {
  transform: translateY(-50px);
  animation: opacities 0.7s forwards;
  margin-right: 9%;
}

.wrapper .questions .questions-all input:checked {
  background-color: #005B5C;
}

.wrapper .questions .questions-all input {
  border: 1px solid #003B5C;
}

.wrapper .questions .questions-all label {
  font-size: 14px;
}

.wrapper .questions .submit-btn button {
  background-color: #003B5C;
  color: #FFFFFF;
  transition: all 0.3s;
}

.wrapper .questions .submit-btn button:hover {
  opacity: 0.7;
}

.wrapper .calendar .calendar-btn {
  position: fixed;
  bottom: 205px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: #FFFFFF;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 20px;
  z-index: 1000;
}

.wrapper .calendar .calendar-box {
  position: fixed;
  bottom: 213px;
  right: 105px;
  width: 200px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 15px;
  display: none;
  text-align: center;
  z-index: 999;
}

.wrapper .calendar .calendar-box .date-display {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  margin-top: 5px;
  margin-bottom: 5px;
}

.wrapper .clock #clockContainer {
  position: fixed;
  bottom: 110px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50px;
  z-index: 1000;
}

.wrapper .clock #clockContainer {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.wrapper .clock #clockContainer .clickable {
  font-size: 20px;
}

.wrapper .clock #clockModal {
  position: fixed;
  bottom: 81px;
  right: 48px;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1001;
}

.wrapper .clock #clockModal #modalContent {
  text-align: center;
  height: 30px;
}

.wrapper .clock #clockModal #modalClock {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}

.wrapper .clock .hidden {
  display: none;
}

.wrapper .arrowtop-part {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.wrapper .arrowtop-part .arrowtop {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.wrapper .arrowtop-part .arrowtop img {
  background-color: #FFFFFF;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.wrapper .arrowtop-part .arrowtop img:hover {
  opacity: 0.7;
}

/*making index responsive for 575px or less*/
@media screen and (max-width: 575px) {
  .wrapper .select-school-staff {
    margin-right: 0%;
  }

  .wrapper .questions {
    margin-right: 0%;
  }
}

/*opacity animation*/
@keyframes opacities {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=survey-style.css.map */