/* Hide HTML5 Up and Down arrows. */
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;
}

.pag_page {
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}

.pag_page .arrow {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D6A36A;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.pag_page .arrow.disable {
  background-color: #D8D8D8;
  cursor: not-allowed;
}

.pag_page .arrow::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: 8px;
  left: 9px;
}

.pag_page .arrow.next::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 7px;
}

.pag_page input {
  width: 37px;
  height: 32px;
  border: 1px solid #D8D8D8;
  color: #0B3162;
  text-align: center;
  margin: 0 5px;
  padding: 0 2px;
}

.pagin_nr_style {
  margin: 0 12px;
}

.pagin_nr_style .select_wrap {
  margin-bottom: 0;
}

.pagin_nr_style .select_wrap .select_head {
  min-width: 45px;
  border: 1px solid #D8D8D8;
  color: #0B3162;
  padding-left: 8px;
  padding-right: 20px;
}

.pagin_nr_style .select_wrap .arrow {
  width: 13px;
  right: 5px;
}

.pagin_nr_style .select_wrap .arrow::before, .pagin_nr_style .select_wrap .arrow::after {
  width: 8px;
}

.pagin_nr_style .select_wrap .fake_select {
  padding-left: 8px;
  padding-right: 8px;
}

@media screen and (max-width: 767px) {
  .pagin_nr_style .select_wrap .cur_select {
    padding-right: 10px;
  }
  .pagin_nr_style .select_wrap .fake_select {
    top: inherit;
    bottom: 100%;
  }
}

.autoresults_wrap .single_result_wrap {
  width: 49%;
}

.autoresults_wrap .single_result_wrap.active {
  width: 100%;
}

.autoresults_wrap .single_result_wrap.active .result.short {
  width: 49%;
}

.autoresults_wrap .result {
  position: relative;
  background-color: #DFEBFC;
  width: 100%;
  padding: 12px 24px 12px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 4px 0;
}

.autoresults_wrap .result.short {
  cursor: pointer;
}

.autoresults_wrap .x_icon {
  position: absolute;
  right: 6px;
  top: 18px;
  width: 15px;
  height: 15px;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.autoresults_wrap .x_icon.active {
  opacity: 1;
}

.autoresults_wrap .x_icon::before, .autoresults_wrap .x_icon::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15px;
  height: 2px;
  background-color: #D43838;
  border-radius: 5px;
}

.autoresults_wrap .x_icon::before {
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.autoresults_wrap .x_icon::after {
  right: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.autoresults_wrap .bold {
  font-weight: 600;
  padding-right: 7px;
}

.autoresults_wrap .del_icon {
  position: absolute;
  right: 0;
  top: 50%;
  width: auto;
  padding: 11px;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
}

.autoresults_wrap .del_icon .del {
  width: 15px;
  display: block;
}

.autocomplete_wrap {
  position: relative;
}

.autocomplete_wrap .select_wrap .fake_select {
  top: 100%;
}

.autocomplete_wrap .select_wrap .arrow {
  top: 70%;
}

.autocomplete_wrap.results {
  margin-bottom: 14px;
}

.autocomplete_wrap.results .select_wrap {
  margin-bottom: 0;
}

.autocomplete_wrap.results label {
  margin-bottom: 0;
}

.txt_wrap textarea {
  height: 96px;
}

textarea {
  display: block;
  width: 100%;
  height: 200px;
  resize: none;
  border: 1px solid #707070;
  border-radius: 3px;
  font-size: 14px;
  letter-spacing: 0.035em;
  padding: 11px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

textarea:focus {
  border: 1px solid #D6A36A;
}

textarea:focus.green {
  border-color: #D6A36A;
}

textarea.green {
  border-color: #38D485;
}

textarea::-webkit-input-placeholder {
  color: #9D9D9D;
  opacity: 1;
}

textarea::-moz-placeholder {
  color: #9D9D9D;
  opacity: 1;
}

textarea:-moz-placeholder {
  color: #9D9D9D;
  opacity: 1;
}

textarea:-ms-input-placeholder {
  color: #9D9D9D;
  opacity: 1;
}

.btn_w_in {
  width: 100%;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  box-pack: justify;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}

.btn_w_in .input_wrap {
  width: calc(100% - 110px);
  padding-right: 10px;
}

.btn_w_in button {
  margin-top: 8px;
}

.btn_w_in .col_full {
  width: 100%;
}

.btn_w_in.sm {
  margin-bottom: 10px;
}

.btn_w_in.sm .input_wrap {
  width: calc(100% - 25px);
  margin-bottom: 0;
}

.input_wrap {
  margin-bottom: 14px;
}

.input_wrap.wbtn {
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}

.input_wrap.wbtn label {
  width: calc(100% - 35px);
}

.input_wrap.wbtn .btn_sm_round {
  margin-top: 24px;
  margin-left: 10px;
}

.input_wrap .valid_err {
  padding: 5px 0 0;
}

.input_wrap.nomargin label {
  margin: 0;
}

.single_input_date {
  margin-bottom: 8px;
  font-weight: bold;
  color: #0B3162;
  line-height: 1.7;
}

.single_input_date .btn_clear {
  cursor: pointer;
}

label {
  display: block;
  font-weight: bold;
  color: #0B3162;
  line-height: 1.7;
}

.input_txt {
  font-weight: bold;
  color: #0B3162;
  line-height: 1.7;
  display: block;
}

.input_txt .red {
  color: #D43838;
}

.input_txt.lg {
  font-size: 20px;
}

.heading_input {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.035em;
  line-height: 1;
  color: #D6A36A;
  padding-bottom: 10px;
  margin: 0;
  font-size: 14px;
}

input {
  width: 100%;
  height: 32px;
  border: 1px solid #707070;
  border-radius: 3px;
  font-size: 14px;
  letter-spacing: 0.035em;
  padding: 0 11px;
  color: #212121;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

input:focus {
  border: 1px solid #D6A36A;
}

input:focus.green {
  border-color: #D6A36A;
}

input.input_long_text {
  font-size: 0.7em;
  padding: 0 5px;
}

input.error, input.ng-error {
  border: 1px solid #D43838;
}

input.lg_input {
  font-size: 20px;
  height: 50px;
}

input.green {
  border-color: #38D485;
}

input::-webkit-input-placeholder {
  color: #9D9D9D;
  opacity: 1;
}

input::-moz-placeholder {
  color: #9D9D9D;
  opacity: 1;
}

input:-moz-placeholder {
  color: #9D9D9D;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: #9D9D9D;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .input_txt.lg {
    font-size: 18px;
  }
  input.lg_input {
    font-size: 15px;
    height: 40px;
  }
}

input[disabled] {
  background-color: #fff;
  border: 1px solid #E9E9E9;
}

.search_wrap {
  position: relative;
  min-width: 40px;
}

.search_wrap .btn_searach {
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  border: none;
  height: 100%;
  cursor: pointer;
  min-width: 40px;
  padding-top: 2px;
}

.search_wrap .search_input_wrap {
  overflow: hidden;
  width: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  margin-left: auto;
  border-radius: 20px;
  max-width: 100%;
}

.search_wrap .search_input_wrap.active {
  width: 255px;
}

.search_wrap .search_input {
  width: 100%;
  height: 36px;
  border-radius: 20px;
  background-color: #EEEEEE;
  padding: 0 40px 0 17px;
  font-size: 13px;
  color: #7A7A7A;
  border: none;
}

.search_wrap .search_input::-webkit-input-placeholder {
  color: #7A7A7A;
  opacity: 1;
}

.search_wrap .search_input::-moz-placeholder {
  color: #7A7A7A;
  opacity: 1;
}

.search_wrap .search_input:-moz-placeholder {
  color: #7A7A7A;
  opacity: 1;
}

.search_wrap .search_input:-ms-input-placeholder {
  color: #7A7A7A;
  opacity: 1;
}

.checkbox_wrap {
  font-size: 14px;
}

.checkbox_wrap label {
  cursor: pointer;
}

.checkbox_wrap .name_checkbox {
  display: inline-block;
  position: relative;
  padding-left: 25px;
}

.checkbox_wrap .name_checkbox::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #D6A36A;
  border-radius: 3px;
}

.checkbox_wrap .name_checkbox::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 6px;
  border-top: 2px solid #06234B;
  border-left: 2px solid #06234B;
  width: 8px;
  height: 10px;
  -webkit-transform: rotate(-140deg);
  transform: rotate(-140deg);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
}

.checkbox_wrap input[type="checkbox"] {
  display: none;
}

.checkbox_wrap input[type="checkbox"]:checked + .name_checkbox::after {
  opacity: 1;
}

.checkbox_wrap.green_checkbox .name_checkbox::before {
  top: 7px;
  width: 12px;
  height: 12px;
  border: 1px solid #707070;
}

.checkbox_wrap.green_checkbox .name_checkbox::after {
  border-top: 2px solid #38D485;
  border-left: 2px solid #38D485;
  width: 7px;
  height: 11px;
  left: 3px;
  top: 5px;
  -webkit-transform: roate(-145deg);
  transform: roate(-145deg);
}

.checkbox_wrap.single_check .name_checkbox {
  padding: 0;
  width: 15px;
  height: 15px;
}

.checkbox_wrap.single_check .name_checkbox::before {
  top: 0;
}

.checkbox_wrap.single_check .name_checkbox::after {
  top: 1px;
}

.checkbox_wrap.single_check label {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .checkbox_wrap {
    font-size: 13px;
  }
}

.select_wrap {
  position: relative;
  margin-bottom: 14px;
}

.select_wrap .select_head {
  position: relative;
  width: 100%;
  height: 32px;
  border: 1px solid #707070;
  border-radius: 3px;
  font-size: 14px;
  letter-spacing: 0.035em;
  padding: 0 11px;
  color: #212121;
  font-weight: normal;
  line-height: 30px;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.select_wrap .select_head.ng-error {
  border: 1px solid #D43838;
}

.select_wrap .txt_select_head {
  position: relative;
  font-size: 12px;
  font-weight: bold;
  height: 20px;
  line-height: 18px;
  padding-right: 20px;
  cursor: pointer;
}

.select_wrap .txt_select_head .arrow {
  right: 0;
  top: 47%;
  width: 13px;
}

.select_wrap .txt_select_head .arrow::before, .select_wrap .txt_select_head .arrow::after {
  width: 8px;
}

.select_wrap .cur_select {
  cursor: pointer;
  padding-right: 24px;
}

.select_wrap .cur_select.szkic {
  color: #794A2E;
}

.select_wrap .cur_select.nieoplacona {
  color: #06234B;
}

.select_wrap .cur_select.oplacona {
  color: #38D485;
}

.select_wrap .placeholder {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select_wrap .arrow {
  position: absolute;
  right: 11px;
  top: 50%;
  width: 16px;
  height: 10px;
}

.select_wrap .arrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 2px;
  border-radius: 30%;
  background-color: #212121;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.select_wrap .arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 2px;
  border-radius: 30%;
  background-color: #212121;
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.select_wrap .fake_select {
  position: absolute;
  top: 100%;
  width: 100%;
  border-radius: 3px;
  margin: 0;
  padding: 15px 25px 0;
  max-height: 230px;
  overflow: auto;
  z-index: 103;
  background-color: #fff;
  list-style: none;
  -webkit-box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.24);
          box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  scrollbar-width: thin;
}

.select_wrap .fake_select:not(.right_pos) {
  left: 0;
}

.select_wrap .fake_select.right_pos {
  right: 0;
}

.select_wrap .fake_select li {
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  color: #0B3162;
  font-size: 13px;
  line-height: 1.84615;
  font-weight: 600;
  margin-bottom: 3px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (min-width: 1025px) {
  .select_wrap .fake_select li:hover {
    color: #38D485;
  }
}

.select_wrap .fake_select li.active {
  color: #38D485;
}

.select_wrap .fake_select li:last-child {
  margin-bottom: 14px;
}

.select_wrap .fake_select a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.select_wrap .fake_select.menu_invoice {
  top: 0;
}

.select_wrap .fake_select.top {
  top: inherit;
  bottom: 33px;
}

.select_wrap input {
  padding-right: 35px;
}

.select_wrap.sbtnr {
  margin: 0;
}

.select_wrap.sbtnr .btn_select_wrap {
  position: relative;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #DEDEDE;
  cursor: pointer;
}

.select_wrap.sbtnr .btn_select {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  box-pack: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  box-lines: single;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.select_wrap.sbtnr .btn_select .arrow {
  width: 4px;
  height: 4px;
  background-color: #0B3162;
  border-radius: 50%;
  position: relative;
  right: 0;
  top: 1px;
  display: block;
}

.select_wrap.sbtnr .btn_select .arrow::before, .select_wrap.sbtnr .btn_select .arrow::after {
  width: 4px;
  height: 4px;
  background-color: #0B3162;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
}

.select_wrap.sbtnr .btn_select .arrow::before {
  top: -5px;
}

.select_wrap.sbtnr .btn_select .arrow::after {
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.select_wrap.sbtnr .fake_select {
  min-width: 135px;
  padding: 12px 12px 0;
  right: 0;
  left: inherit;
  top: 12px;
  border: 1px solid #D8D8D8;
  max-block-size: 400px;
}

.select_wrap.sbtnr .fake_select.right {
  left: 0;
  right: inherit;
}

.select_wrap.sbtnr .fake_select li {
  letter-spacing: 0;
  margin-bottom: 0;
}

.select_wrap.sbtnr .fake_select li span {
  display: block;
  padding: 2px 0 5px;
}

.select_wrap.sbtnr .fake_select li:last-child {
  margin-bottom: 13px;
}

.select_wrap.sbtnr .fake_select.menu_invoice {
  top: 12px;
  right: 135px;
  min-width: 220px;
}

.select_wrap.sbtnr .fake_select.menu_invoice.active {
  opacity: 1;
  pointer-events: all;
}

@media screen and (min-width: 1025px) {
  .select_wrap.sbtnr:hover .btn_select {
    z-index: 101;
  }
  .select_wrap.sbtnr:hover .arrow::before {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .select_wrap.sbtnr:hover .arrow::after {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .select_wrap.sbtnr:hover .fake_select:not(.menu_invoice) {
    opacity: 1;
    pointer-events: all;
  }
}

.select_wrap.sbtnr.active .btn_select {
  z-index: 101;
}

.select_wrap.active .arrow::before {
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
}

.select_wrap.active .arrow::after {
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

.select_wrap.active .fake_select:not(.menu_invoice) {
  opacity: 1;
  pointer-events: all;
}

@-moz-document url-prefix() {
  .select_wrap.sbtnr .btn_select .arrow {
    right: 1px;
  }
}

@media screen and (max-width: 767px) {
  input {
    font-size: 13px;
  }
  .select_wrap {
    margin-bottom: 9px;
  }
  .select_wrap .select_head {
    font-size: 13px;
  }
  .select_wrap .fake_select {
    padding-left: 10px;
    padding-right: 10px;
  }
  textarea {
    font-size: 13px;
    padding: 5px 11px;
  }
  .txt_wrap textarea {
    height: 80px;
  }
  .input_wrap {
    margin-bottom: 9px;
  }
  .btn_w_in button {
    margin-top: 13px;
  }
  .autoresults_wrap .single_result_wrap {
    width: 48%;
  }
  .autoresults_wrap .result {
    padding: 8px 8px 6px 8px;
  }
  .autoresults_wrap .result.short {
    padding-right: 22px;
  }
  .autoresults_wrap .result.full {
    padding-right: 40px;
  }
  .autoresults_wrap .del_icon .del {
    width: 12px;
  }
  .autoresults_wrap .x_icon {
    top: 14px;
  }
  .checkbox_wrap.green_checkbox .name_checkbox::before {
    top: 5px;
  }
  .checkbox_wrap.green_checkbox .name_checkbox::after {
    top: 4px;
  }
}

.login_info .info_txt {
  text-align: right;
  font-size: 11px;
  font-style: italic;
  color: #D6A36A;
  padding-top: 7px;
}

.login_info .input_fake {
  width: 100%;
  height: 31px;
  border: 1px solid #E9E9E9;
  border-radius: 3px;
  background-color: #FDFAF3;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  letter-spacing: 0.035em;
}

.input_w_icon {
  position: relative;
}

.input_w_icon input {
  padding-right: 35px;
}

.input_w_icon .data_icon {
  position: absolute;
  right: 11px;
  top: 7px;
  width: 18px;
  z-index: 1;
  pointer-events: none;
}

.file_wrap {
  width: 100%;
  position: relative;
  margin-bottom: 14px;
}

.file_wrap input {
  display: none;
}

.file_wrap .input_file {
  width: 100%;
  height: 32px;
  border: 1px solid #707070;
  border-radius: 3px;
  color: #9D9D9D;
  padding: 0 11px;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}

.file_wrap .input_file span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: normal;
}

.file_wrap .input_txt {
  width: 100%;
}

.file_wrap label {
  width: 100%;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  margin-bottom: 0;
}

.file_wrap.wbtn .input_file {
  width: calc(100% - 35px);
}

.file_wrap.wbtn .btn_sm_round {
  margin-left: 10px;
}

.file_wrap.wbtn_lg .input_file {
  width: calc(100% - 123px);
  margin-right: 15px;
}

.file_wrap .login_info {
  width: 100%;
}

.file_wrap .logo_preview_wrap {
  width: 100%;
  margin: 10px 0;
}

.file_wrap .logo_preview {
  width: 90px;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fields_heading {
  margin-bottom: 50px;
}

.type_wrap .title_14 {
  margin-bottom: 4px;
}

.type_wrap .btn_page {
  margin-top: 20px;
}

.type_wrap .select_wrap {
  margin-bottom: 20px;
}

.type_wrap .btn_round {
  margin-top: 10px;
}

.single_field .drag_index {
  padding-top: 3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #C4C4C4;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  box-pack: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  font-weight: 500;
}

.single_field .edit_field_wrap {
  padding: 50px 0px 50px 30px;
}

.acf_field {
  padding-top: 20px;
}

.acf_wysiwyg .fr-box.fr-basic .fr-element {
  min-height: 400px;
}

.acf_true_false label {
  display: inline-block;
  width: auto;
  cursor: pointer;
}

.acf_true_false .fake_checkbox {
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
}

.acf_true_false .fake_checkbox::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #D6A36A;
}

.acf_true_false .fake_checkbox::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 5px;
  border-top: 2px solid #06234B;
  border-left: 2px solid #06234B;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
}

.acf_true_false input[type="checkbox"] {
  display: none;
}

.acf_true_false input[type="checkbox"]:checked + .fake_checkbox::after {
  opacity: 1;
}

.acf_select .acf_select_options_wrap {
  padding: 20px 0;
}

.acf_select .acf_options_select {
  padding-bottom: 25px;
}

.acf_map input {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.acf_map .acf_map_wrap {
  display: block;
  border: 1px solid #707070;
  border-top: none;
  border-radius: 3px;
  overflow: hidden;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.acf_colorpicker .color_picker_wrap {
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}

.acf_colorpicker input {
  width: 120px;
  margin-top: 5px;
}

.acf_colorpicker .bg_color {
  height: 40px;
  width: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100%;
  border: 1px solid #dadada;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14);
  margin-left: 20px;
}

.acf_repeater .table {
  padding-top: 0;
  padding-bottom: 0;
}

.acf_repeater .btn_page {
  margin-top: 40px;
}
/*# sourceMappingURL=acf.css.map */