/* .mw-enquete {
  grid-column: span 3;
  grid-row: span 4;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-radius: 5px;
}

.mw-enquete h3 {
  font-family: Poppins-ExtraBold;
  font-size: 18px;
  opacity: 0.8;
  color: white;
}

.mw-enquete h2 {
  font-family: Poppins-Bold;
  font-size: 18px;
  line-height: 22px;
  color: white;
}

.mw-enquete form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
}

.mw-enquete form  label{
  display: flex;
  gap: 10px;
}

.mw-enquete form span{
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 18px;
  color: white;
}

.mw-enquete-resultado {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.mw-enquete-resultado h4 {
  font-family: Poppins-Regular;
  font-size: 14px;
  text-decoration: underline;
  color: white;
}

.mw-enquete-resultado button {
  padding: 10px 35px;
  background-color: #D51C17;
  font-family: Poppins-Bold;
  font-size: 14px;
  color: white;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .mw-enquete h3 {
    font-size: 14px;
  }

  .mw-enquete h2 {
    font-size: 16px;
  }

  .mw-enquete form label {
    font-size: 12px;
  }

  .mw-enquete-resultado h4 {
    font-size: 12px
  }

  .mw-enquete-resultado button {
    font-size: 12px;
  }
} */


.mw-enquete {
  margin-bottom: 40px;
}

.mw-poll {
  grid-column: span 3;
  grid-row: span 4;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-radius: 5px;
}
.mw-survey-result {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mw-poll-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
}

.mw-poll-chapeu {
  color: #bd0cf2;
  font-size: 13px;
  line-height: 17px;
  font-family: "NunitoSans-ExtraBold";
  text-transform: uppercase;
}

.mw-poll-title {
  font-family: Poppins-ExtraBold !important;
  font-size: 18px;
  opacity: 0.8;
  color: white !important;
}

.mw-poll-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
  max-height: 245px;
  overflow-y: scroll;
}

.mw-poll-form::-webkit-scrollbar-track {
  background:#efefef;
}

.mw-poll-form::-webkit-scrollbar {
  width: 6px;
  height: 1px;
}

.mw-poll-form::-webkit-scrollbar-thumb {
  border-radius: 8px 8px 8px 8px;
  background: #D51C17;
}

.mw-poll-form strong{
  font-family: Poppins-ExtraBold !important;
  font-size: 18px;
  opacity: 0.9;
  color: white !important;
}

.mw-poll-form span {
  font-family: Poppins-Regular !important;
  font-size: 14px;
  line-height: 18px;
  color: white !important;
}

.mw-poll-form label{
  font-family: Poppins-Regular !important;
  font-size: 14px;
  line-height: 18px;
  color: white !important;
}

.mw-poll-button-box {
  display: flex;
  justify-content: space-between;
}

.mw-poll-button {
  padding: 10px 35px;
  background-color: #D51C17 !important;
  font-family: Poppins-Bold !important;
  font-size: 14px;
  color: white !important;
  border-radius: 20px;
  cursor: pointer;
}

.mw-survey-result-option{
  font-family: Poppins-ExtraBold;
  font-weight: bold;
  color: white;
  opacity: 0.9;
}

@media (max-width:1024px){
  .mw-poll {
    grid-column: span 3;
    grid-row: span 3;
  }
  .mw-poll-button-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
}
.mw-poll-title {
  font-size: 22px;
  line-height: 26px;
}
.mw-poll-form {
  gap: 15px;
}
}