.ac-form-wrapper {
  width: 100%;
  display: block;
  margin:auto;
}
.ac-form-wrapper .form {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ac-form-wrapper .form .ac-row-form-1 {
  display: flex;
    width: 93vw;
    margin: 1rem 0 1rem;
    justify-content: space-between;
    align-items: center;
}
.ac-form-wrapper .form input, .ac-form-wrapper .form select {
  background-color: #fff;
  height: 2.5rem;
  width: 19%;
  color:#231F20;
  font-size: 1.4rem;
  direction: rtl;
  border: 0;
  padding-right: 0;
  text-align: center;
  font-family: 'AlmoniNeueRegularAAA-Regular';
  box-shadow: inset 0.1rem 0.1rem 4px rgba(0, 0, 0, 0.5);
}
::-webkit-input-placeholder, select::-webkit-input-placeholder {
 /* Chrome/Opera/Safari */
 color:#231F20;
 font-family: 'AlmoniNeueRegularAAA-Regular';
}
::-moz-placeholder, select::-moz-placeholder {
 /* Firefox 19+ */
 color:#231F20;
 font-family: 'AlmoniNeueRegularAAA-Regular';
}
:-ms-input-placeholder, select:-ms-input-placeholder {
 /* IE 10+ */
 color: #000;
 font-family: 'AlmoniNeueRegularAAA-Regular';
}
:-moz-placeholder, select:-moz-placeholder {
 /* Firefox 18- */
 color:#231F20;
 font-family: 'AlmoniNeueRegularAAA-Regular';
}
.ac-form-wrapper .ac-button-wrapper {
  width: 70%;
}
.ac-form-wrapper button {
  width: 100%;
  color: #000;
  font-size: 1.3rem;
}
.ac-form-wrapper label {
  display: none;
}

.ac-form-wrapper .checkbox-container{
  height: 2.5rem;
    width: 19%;
}

/* Hide the browser's default checkbox */
.ac-form-wrapper .ac-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.ac-form-wrapper .checkmark {
  position: relative;
  top: 0;
  right: 0;
  background-color: #fff;
  height: 1.5rem;
  border: 0.15rem solid #000;
  margin-left: 1rem;
  width: 2.5rem;

}

/* On mouse-over, add a grey background color */
.ac-form-wrapper .ac-checkbox:hover input ~ .checkmark {
  background-color: #ccc;

}

/* When the checkbox is checked, add a blue background */
.ac-form-wrapper .ac-checkbox input:checked ~ .checkmark {
  background-color: #fff;
  width: 2.5rem;

  height: 1.5rem;
}

/* Create the checkmark/indicator (hidden when not checked) */
.ac-form-wrapper .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.ac-form-wrapper .ac-checkbox input:checked ~ .checkmark:after {
  display: block;
  content: "\2713";
  color: red;
  width: 2.5rem;
  height: 1.5rem;
  font-size: 1.5rem;

}

/* Style the checkmark/indicator */
.ac-form-wrapper .ac-checkbox .checkmark:after {
  left: 23%;
  top: 48%;
    transform: translate(-62%, -38%);
}
.ac-form-wrapper label.ac-checkbox{
  display: flex ;
      position: relative;
      justify-content: flex-start;
      flex-direction: row-reverse;
      align-items: center;
      width: 100%;
      height: 100%;
      color: #231F20;
      font-size: 1.2rem;
      line-height: 0.9;
      font-weight: 600;
}
.ac-form-wrapper .send {
  font-family: 'AlmoniNeueDL40AAA-U-Bold';
  background-color: #000;
  width: 19%;
    color: #fff;
    border: 0.15rem solid #000;
    font-weight: 900;
    padding: 0.2rem 0rem;
    margin: 0;
    transition: background-color 0.5s, color 0.5s;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    height: 2.5rem;
}
.ac-form-wrapper .send .ac-svg-arrow{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.75rem;
  margin-right: 0.5rem;
}
.ac-form-wrapper .send:hover{
  background-color: #fff;
  color:#F78E1E;
}
.ac-form-wrapper .send:hover .ac-svg-arrow path{
  fill:#F78E1E 
}
/* End Section Opening */
@media (max-width: 1000px) {
  .ac-form-wrapper .form {
    flex-direction: column-reverse;
  }

.ac-form-wrapper .form .ac-row-form-1 {
  width: 90vw;
  margin: 1.5rem 0 0rem;
  flex-direction: column;
}
.ac-form-wrapper .form input, .ac-form-wrapper .form select {
  background-color: #fff;
  width: 100%;
  color: #231F20;
  font-size: 1.9rem;
  direction: rtl;
  border: 0;
  padding-right: 0;
  text-align: center;
  height: 3.9rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.ac-form-wrapper .send {
  width: 65%;
  font-size: 2.5rem;
  height: 3.9rem;
  margin-bottom: 12vw;
  margin-right: 0;
  margin-left: auto;
  background-color: #544641;
  border:0.15rem solid #544641;
}
.ac-form-wrapper .send .ac-svg-arrow {
  width: 1rem;
  margin-right: 3.5rem;
}
.ac-form-wrapper .checkbox-container {
  height: 3.5rem;
  width: 100%;
  margin-top: -2vw;
}
.ac-form-wrapper label.ac-checkbox {
  flex-direction: row-reverse;
  font-size: 1.36rem;
}
.ac-form-wrapper .ac-checkbox input:checked ~ .checkmark,
.ac-form-wrapper .ac-checkbox input:checked ~ .checkmark:after {
  height: 2.5rem;
  font-size: 2.5rem;
}
.ac-form-wrapper .ac-checkbox .checkmark:after {
  left: 50%;
}
  
}
@media (max-width: 650px) {
}
