input:not([type=submit]):not([type=file]):not([type=checkbox]):not([type=radio]):not([type=range]):not([class="numInput flatpickr-hour"]):not([class="numInput cur-year"]):not([class="numInput flatpickr-minute"]),
textarea {
  border-radius: 10px;
  border: 1px solid #757575;
  /*height: @input-box-height;
    line-height: @input-text-lineheight;*/
  outline: 0;
  padding: 0.8rem;
}
input:not([type=submit]):not([type=file]):not([type=checkbox]):not([type=radio]):not([type=range]):not([class="numInput flatpickr-hour"]):not([class="numInput cur-year"]):not([class="numInput flatpickr-minute"]):read-only,
textarea:read-only {
  background: #f8f6f4;
  cursor: not-allowed;
}
input:not([type=submit]):not([type=file]):not([type=checkbox]):not([type=radio]):not([type=range]):focus,
textarea:focus {
  border-radius: 4px;
  height: 44px;
  line-height: 20px;
  outline: 0;
  padding: 0.8rem;
}
.inputRemoveBorder input {
  background-color: red;
  border-radius: none;
  border: none;
}
textarea {
  resize: none;
  overflow: auto;
}
textarea:focus {
  height: calc(44px*2);
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
select {
  border-radius: 10px;
  border: 1px solid #757575;
  outline: 0;
  /*height: @input-box-height;
    line-height: @input-text-lineheight;*/
  padding: 0.8rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background: url(/images/arrow-down.png);
  background-position: right 20px center;
  background-size: 15px;
  background-repeat: no-repeat;
}
#language-dropdown {
  border: 0;
  color: white;
  /*background: url(/images/arrow-down-white.png);*/
  background: #222;
  background-size: 15px;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: 170px;
  padding: 0.8rem;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
}
.select2 {
  border-radius: 4px;
  height: 44px;
  outline: 0;
  border: 0;
  line-height: 20px;
  max-width: 70%;
}
.guest-search {
  border-radius: 4px;
  height: 44px;
  line-height: 20px;
  outline: 0;
  padding: 0.8rem;
  border: 1px solid #575757;
  transition: 0.1s all ease-in;
}
.guest-search:focus {
  border: 1px solid #00A09B;
}
.select2-container {
  max-width: 70%;
}
.select2-container .select2-selection.select2-selection--single {
  border: 1px solid #dadbdc;
  border-radius: 4px;
  padding: 0.8rem;
  height: 44px;
  line-height: 20px;
}
.select2-container .select2-selection.select2-selection--single:focus {
  /*border: 1px solid @dualog-teal;*/
}
.select2-container .select2-selection.select2-selection--single .select2-selection__rendered {
  line-height: initial;
}
.select2-container .select2-selection.select2-selection--single .select2-selection__arrow {
  top: 8px;
  color: #282828;
}
.select2-container .select2-selection.select2-selection--single .select2-selection__arrow b {
  border-color: #282828 transparent transparent transparent;
  border-width: 6px 6px 0 6px;
  border-radius: 2px;
  margin-left: -22px;
}
.select2-container.select2-container--default .select2-dropdown {
  margin-top: 5px;
  border-radius: 4px;
  border: 1px solid #dadbdc;
  border-top: 1px solid #575757;
}
.select2-container.select2-container--default .select2-dropdown .select2-search {
  padding: 0;
}
.select2-container.select2-container--default .select2-dropdown .select2-search__field {
  border: 0;
  border-bottom: 1px solid #575757;
}
.select2-container.select2-container--default .select2-dropdown .select2-results ul li {
  padding: 0.8rem;
}
.select2-container.select2-container--default .select2-dropdown .select2-results ul li.select2-results__option--highlighted[aria-selected] {
  background-color: #dcf3f1;
  color: #282828;
}
.select2-container--open .select2-selection.select2-selection--single,
.select2-container--focus .select2-selection.select2-selection--single {
  border: 1px solid #00A09B;
}
.search-container,
.date-range-picker-container {
  position: relative;
  display: inline-block;
}
.search-container .search-icon,
.date-range-picker-container .search-icon,
.search-container .calendar-icon,
.date-range-picker-container .calendar-icon {
  position: absolute;
  right: 18px;
  top: 15%;
  font-size: 22px;
}
.date-range-picker-container {
  width: 70%;
  min-width: 150px;
}
.date-range-picker-container #date-range-picker {
  width: 100%;
}
@media screen and (max-width: 400px) {
  .date-range-picker-container {
    width: 100%;
  }
}
.styled-checkbox {
  position: absolute;
  opacity: 0;
  height: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  line-height: 0;
  width: 0;
}
.styled-checkbox ~ label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.styled-checkbox ~ label:before {
  content: '';
  margin-right: 20px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: white;
  border: 1px solid #575757;
}
.styled-checkbox:hover ~ label:before {
  background: #f8f6f4;
  border: 1px solid #282828;
}
.styled-checkbox:focus ~ label:before {
  border: 1px solid #282828;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked ~ label:before {
  border: 1px solid #282828;
  background: #282828;
}
.styled-checkbox:disabled ~ label {
  color: #b8b8b8;
  cursor: auto;
}
.styled-checkbox:disabled ~ label:before {
  box-shadow: none;
  background: #ddd;
}
.styled-checkbox:checked ~ label:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}
