.mw-poll {
  grid-column: span 4;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  background-color: #fff;
  padding: 20px 30px;
  box-shadow: 0px 10px 30px #00000005;
  border: 2px solid #e5e5e5;
  border-radius: 20px;
}
.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 {
  color: #4a4a4a;
  font-size: 25px;
  line-height: 29px;
  font-family: "NunitoSans-Black";
}

.mw-poll-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  max-height: 175px;
}

.mw-poll-form::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}

.mw-poll-form::-webkit-scrollbar-track {
  background: #ffffff;
}

.mw-poll-form::-webkit-scrollbar-thumb {
    background-color: #e5e5e5;
    border-radius: 10px;
    border: 3px solid #e5e5e5;
}

.mw-poll-form span {
  font-size: 15px;
  color: #9e9a99;
  line-height: 19px;
  font-family: "NunitoSans-Bold";
  padding-left: 10px;
}

.mw-poll-button-box {
  display: flex;
  justify-content: space-between;
}

.mw-poll-button {
  box-shadow: 0px 10px 20px #00529e1a;
  border-radius: 36px;
  padding: 15px 25px;
  background-color: #bd0cf2;
  color: #fff;
  font-family: "NunitoSans-ExtraBold";
  cursor: pointer;
  text-transform: uppercase;
}

.mw-poll-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}



.mw-poll-links a img{
  width: 30px;
  height: 30px;
}
@media (max-width:1024px){
  .mw-poll {
    grid-column: span 2;
  }
  .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;
}
}