.form-control {
    border-radius: unset !important;
    /* height: calc(1.5em + 0.75rem + 2px); */
    padding: 0.5rem 0.75rem !important;
    margin: 10px 0;
}

.form-floating .form-control {
    padding: 1.5rem 0.75rem 0.25rem 0.75rem !important;
}
.form-floating>.form-control, .form-floating>.form-select {
     height: unset !important;
     line-height: unset !important;
}

input::placeholder {
    font-weight: 500;
    padding-left: .5rem;
    font-size: 17px
}

/* input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
} */

.checkmark:lang(en) {
    left: 0;
}

.checkmark:lang(ar) {
    right: 0;
}

.checkmark {
    position: absolute;
    top: 4px;
    height: 17px;
    width: 17px;
    background-color: #fff;
    border: 1px solid #ced4da;
}

input:checked ~ .checkmark {
    background-color: #A0BD3F
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none
}

input:checked ~ .checkmark:after {
    display: block
}

.checkmark:after {
    left: 5px;
    top: 0;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.checkbox:lang(en) {
    padding-left: 33px
}

.checkbox:lang(ar) {
    padding-right: 33px
}
input[type=checkbox] + label {
    display: block;
    margin: 0.1em;
    cursor: pointer;
    padding: 0.2em;
   }
  
  input[type=checkbox] {
    display: none;
  }
  
  input[type=checkbox] + label:before {
    content: "\2714";
    border: 0.1em solid #000;
    border-radius: 0.2em;
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    margin-bottom: 0.4em;
    padding-left: 0.2em;
    padding-right: 0.1em;
    padding-bottom: 0.2em;
    margin-right: 0.6em;
    margin-left: 0.6em;
    vertical-align: bottom;
    color: transparent;
    transition: .2s;
  }
  
  input[type=checkbox] + label:active:before {
    transform: scale(0);
  }
  
  input[type=checkbox]:checked + label:before {
    background-color: var(--dgreen);
    border-color:  var(--dgreen);
    color: #fff;
  }
  
  input[type=checkbox]:disabled + label:before {
    transform: scale(1);
    border-color: #aaa;
  }
  
  input[type=checkbox]:checked:disabled + label:before {
    transform: scale(1);
    background-color:  var(--dgreen);
    border-color:  var(--dgreen);
  }
/*.checkbox {*/
/*    font-size: 23px;*/
/*}*/

.form-group {
    margin-bottom: 1rem;
    position: relative;
}

.select_box {
    position: relative;
}

.select_box:after {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 13px solid #A0BD3F;
    position: absolute;
    top: 50px;
    content: "";
    z-index: 98;
}

.select_box:lang(en):after {
    right: 15px;
}

.select_box:lang(ar):after {
    left: 15px;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000
}

.form-control:focus {
    color: #878787 !important;
    border-color: #ced4da !important;
    box-shadow: unset !important
}

/*.float-label {*/
/*    position: absolute;*/
/*    background: #fff;*/
/*}*/

/*.float-label:lang(ar) {*/
/*    top: -12px;*/
/*    right: 10px;*/
/*}*/

/*.float-label:lang(en) {*/
/*    top: -10px;*/
/*    left: 10px;*/
/*}*/

@media (min-width: 992px) and (max-width: 1200px) {
    select {
        background-position: calc(102% - 20px) calc(.8em + 2px), calc(105% - 20px) calc(.8em + 2px), calc(100% - 2.5em) .5em
    }
}

@media (max-width: 992px) {
    select {
        background-position: calc(101% - 20px) calc(.8em + 2px), calc(105% - 20px) calc(.8em + 2px), calc(100% - 2.5em) .5em
    }
}

@media (max-width: 768px) {
    select {
        background-image: unset
    }
}

@media (max-width: 576px) {
    .checkbox {
        font-size: 20px;
        padding-left: 25px
    }

    .checkmark {
        height: 15px;
        width: 15px
    }
}
 
 

 
 