
  body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
  }

  .navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  main {
    flex: 1 0 auto;
    padding-bottom: 32px;
    padding-top: 70px;
  }

  .switch label input[type=checkbox]:checked+.lever {
  background-color: #b9f6ca ;
}

.switch label input[type=checkbox]:checked+.lever:after {
  background-color: #4caf50;
}

  .mood-button {
    margin: 0;
    width: 170px;
    height: 170px;
    padding: 10px 12px !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: center;
    color: #fff !important;
  }

  .mood-button span,
  .mood-button .light,
  .mood-button .mdi {
    color: #fff !important;
    display: block;
    width: 100%;
  }

.mood-button .mdi {
  font-size: 58px;
  line-height: .9;
}

#moodButtons .heading {
  margin-bottom: 16px;
}

#moodButtons .btnContainer,
#inDifferent .btnContainer {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin: 0 auto;
}

#moodButtons .btnContainer > [class*="col"],
#inDifferent .btnContainer > [class*="col"] {
  width: auto !important;
  flex: 0 0 auto;
  padding: 0 !important;
}

#moodButtons .btnContainer .center-align,
#inDifferent .btnContainer .center-align {
  text-align: center !important;
}

.review-button {
  width: 450px;
  max-width: 100%;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-button img {
  display: block;
}

.review-text {
  font-size: 20px;
}

.review-icon {
  font-size: 30px;
}

#feedbackForm .card {
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #dfe3eb;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(21, 34, 64, 0.08);
}

#feedbackForm > .row:nth-of-type(2) {
  display: flex;
  justify-content: center;
}

#feedbackForm > .row:nth-of-type(2) > [class*="col"] {
  width: 100% !important;
  max-width: 820px;
  margin: 0 auto !important;
  flex: 0 0 auto;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

#feedbackForm .card,
#feedbackForm .card-content,
#feedbackForm .card-action {
  width: 100%;
}

#feedbackForm .card-action {
  background: #f7f8fb;
  border-top: 1px solid #e6e9f0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

#feedbackForm .card-content .row {
  margin-left: 0;
  margin-right: 0;
}

#feedbackForm #comments.col,
#feedbackForm #comments {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#feedbackForm textarea.materialize-textarea {
  background: #f7f8fb;
  border: 1px solid #d6dbe6 !important;
  border-radius: 8px;
  padding: 12px 14px;
  min-height: 140px;
  box-sizing: border-box;
}

#feedbackForm textarea.materialize-textarea:focus {
  border-color: #e30613 !important;
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
}

.submit-button,
.submit-button:hover,
.submit-button:focus,
.submit-button:active,
.submit-button .mdi {
  color: #fff !important;
}

.copyright {
  font-size: 10px
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


@media only screen and (max-width: 768px) {
  #mob_flex {
    width: 100%;
  }

  .mood-button {
    width: 150px;
    height: 150px;
  }

  #moodButtons .btnContainer,
  #inDifferent .btnContainer {
    gap: 12px;
  }
}