.row-space-between {
  justify-content: space-between;
}
.landing-voting-image {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.gap-16 {
  gap: 32px;
}
.flex-1 {
  flex: 1;
}

.ant-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.landing-voting-button {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 20px 0;
  height: 50px;
  font-family: 'FranklinGothicDemi';
  padding-left: 12px;
  padding-right: 12px;
  min-width: 50%;
}
.mt-title-voting-form {
  margin-top: 35px;
  margin-bottom: 20px;
}
#vote-container{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
  width: 82%;
}
.padding-card{
  padding:16px;
}
/* modal */

body.modal-open {
    overflow: hidden;
  }

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
  
    display: flex;
    justify-content: center;
    align-items: center;
  
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 20;
  }
  
  .modal.show {
    opacity: 1;
    pointer-events: auto;
  }
  
  .modal-content {
    background: #fff;
    padding: 24px 80px;
    
    transform: scale(0.9);
    transition: transform 0.25s ease;
    width: 45%;
    overflow-y: auto;
    max-height: 95vh;
  }
  
  .modal.show .modal-content {
    transform: scale(1);
  }
  

/* Close button */
.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
    background-color: #dddddd;
    width: 33px;
    height: 33px;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 50%;

}
.close-icon {
    width: 18px;
    height: 18px;
}

.modal-body {
    margin-top: 16px;
}
.voting-button{
  margin: 20px 0 35px 0;
}

.voting-close-button{
  margin: 20px 0 72px 0;
  background-color: #cccccc;
  color: #000000;
}

.voting-go-to-design-btn{
  margin-top: 30px;
  background-color: #000000;
  color: #ffffff;
}
.voting.landing-subtitle{
  margin-bottom: 24px;
  line-height: normal;
}

.voting-confirm-title{
  margin-top: 60px;
  margin-bottom: 20px;
}
#group-checkbox-voting{
  position: relative;
  margin-right: 8px;
}

/*  */
@media (max-width: 768px) {
}

@media (min-width: 769px) {

  .landing-title.title-voting-form{
      font-size: 43px;
      line-height: 48px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .modal-content {
    width: 80%;
    padding: 16px 24px;
  }
  .mt-title-voting-form {
    margin-top: 30px;
  }
  .title-voting-form {
    font-size: 36px;
    line-height: 40px;
  }
}

@media (max-width: 480px) {
  .landing-voting-button {
      width: 100%;
  }
  .modal-content {
      width: 90%;
      padding: 16px 24px;
  }
  #vote-container{
    width: 100%;
    margin: 0;
  }
  .padding-card{
    padding: 0 0 16px 0;
  }
  .mt-title-voting-form {
    margin-top: 25px;
  }
  .title-voting-form {
    font-size: 28px;
    line-height: 32px;
  }
}