.wpcf7-form-control{
  width: 100%;
  padding: 1.25rem 1.5rem;
  border-radius: 0.5rem;
}

.wpcf7-form-control.wpcf7-acceptance{
  padding: 0;
}

.wpcf7-list-item{
  margin: 0;
}
.wpcf7-list-item input[type="checkbox"]{
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
}

.wpcf7-list-item label{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.submit-button{
  background-color: white;
  color: #4a596a;
  width: auto;
  border-radius: 0.25rem;
  padding: 0.75rem 2rem 0.75rem 2rem;
  background-image: url("/wp-content/themes/hotel-mastay/assets/images/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 1.25rem 1.25rem;
  position: relative;
  &:hover{
    background-color: #536171;
    color: white;
    cursor: pointer;
  }
}

.submit-button-block{
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .submit-button-block{
    margin-top: 40px;
  }
}

.submit-button-block p{
  display: inline-flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #536171;
  &::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #536171;
    position: absolute;
    top: 0;
    left: 0;
  }
  & .wpcf7-spinner{
    position: absolute;
    bottom: -2rem;
    left: 0;
  }
}




.wpcf7-form-control-wrap{
  display: flex;
  height: 100%;
}