.exam-page, .survey-page {

  .exam-content {
    display: flex;
    flex-direction: column;
    gap: 60px;


    .exam-questions {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
  }

  .exam-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: $dark_green;
    color: $white;

    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80px;
    z-index: 999;
  }

  .hidden {
    display: none !important;
  }
}

.grid-table {
  display: grid;
  grid-template-columns: 200px repeat(5, 1fr);
  grid-auto-rows: auto;
  gap: 10px;
  align-items: center;
  padding: 20px;

  .header-row-wrapper, .row-wrapper {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 200px repeat(5, 1fr);
    align-items: center;
    padding: 20px;
  }

  .row-wrapper:nth-child(even) {
    background-color: #ECECEC;
  }

  .statement-header {
    grid-column: 1 / 2;
    font-weight: bold;
  }

  .option-header {
    font-weight: bold;
    text-align: center;
  }

  .statement {
    grid-column: 1 / 2;
  }

  .option {
    text-align: center;

    .centered-radio {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }

  .gap-row {
    grid-column: 1 / -1;
    height: 20px;
  }
}

.slidecontainer {
  width: 100%; /* Width of the outside container */
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background: $grey;
  outline: none;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: $dark_green;
  cursor: pointer;
  border-color: transparent;

  &:active, &:focus {
    background: $dark_orange;
  }
}

.slider::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: $dark_green;
  cursor: pointer;
  border-color: transparent;

  &:active, &:focus {
    background: $dark_orange;
  }
}