.modal_anim {
  position: relative;
  z-index: 1000;
}

.loader {
  position: fixed;
  width: calc(100% - 300px);
  height: 100vh;
  top: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  cursor: wait;
}

.loader.noLogin {
  top: 160px;
  width: 100%;
}

@media screen and (max-width: 1440px) and (min-width: 1025px) {
  .loader {
    width: calc(100% - 250px);
  }
  .loader.noLogin {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .loader {
    width: 100%;
    height: calc(100vh - 70px);
    top: 70px;
  }
  .loader.noLogin {
    height: calc(100vh - 160px);
  }
}

@media screen and (max-width: 767px) {
  .loader.noLogin {
    top: 70px;
    height: calc(100vh - 70px);
  }
}

.search_cont {
  width: 100%;
  padding: 3px 0 10px;
}

.search_cont .serach_wrap {
  width: calc(100% - 40px);
  min-height: 134px;
  border: 1px solid #D8D8D8;
  border-radius: 3px;
  padding: 16px 20px 16px;
}

.search_cont .input_wrap {
  padding: 0 5px;
}

.search_cont .input_txt {
  margin-bottom: 8px;
}

.serach_btn {
  position: relative;
  width: 40px;
  height: 100%;
  min-height: 134px;
  background-color: #38D485;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.serach_btn .serach_btn_txt {
  position: absolute;
  min-width: 134px;
  height: 40px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  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;
  color: #fff;
  bottom: 46px;
  right: -48px;
}

.serach_btn .icon {
  display: block;
  width: 15px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: 16px;
}

@media screen and (max-width: 1024px) {
  .search_info {
    color: #7B7B7B;
    font-size: 14px;
    line-height: 1.5;
    padding-top: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .search_info h3 {
    font-size: 1em;
    margin: 0;
    font-weight: bold;
  }
}

@media screen and (max-width: 767px) {
  .search_cont {
    width: calc(100% + 40px);
    margin-left: -20px;
    border: 1px solid #D8D8D8;
    border-left: none;
    border-right: none;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    box-align: start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-align: start;
    -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;
    padding: 18px 0 20px;
    margin-top: 6px;
    margin-bottom: 5px;
  }
  .search_cont .serach_wrap {
    border: none;
    width: 100%;
    padding-top: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
  .search_cont .input_wrap {
    margin-bottom: 3px;
  }
  .serach_btn {
    width: auto;
    height: 40px;
    display: inline-block;
    min-height: inherit;
    margin-top: 20px;
  }
  .serach_btn .serach_btn_txt {
    position: static;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    height: 100%;
  }
}

.content {
  padding-top: 77px;
  padding-bottom: 77px;
  width: calc(100% - 300px);
  margin: 0 0 0 auto;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

.content.fade_in {
  opacity: 1;
}

.content.msg_content {
  padding-top: 102px;
  padding-bottom: 165px;
}

@media screen and (max-width: 1440px) and (min-width: 1025px) {
  .content {
    width: calc(100% - 250px);
  }
}

@media screen and (max-width: 1024px) {
  .content {
    width: 100%;
    margin: 70px 0 0;
    padding-top: 70px;
  }
}

@media screen and (max-width: 767px) {
  .content.msg_content {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.login_page input {
  height: 40px;
}

.form_wrapper {
  position: relative;
  border: 1px solid #D8D8D8;
  border-radius: 9px;
  max-width: 505px;
  width: 100%;
  background-color: #fff;
  z-index: 1;
  padding: 50px 40px 50px 50px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.form_wrapper.error {
  border: 1px solid #D43838;
}

.form_wrapper .title_32 {
  margin-bottom: 37px;
}

.form_wrapper .title_30 {
  margin-bottom: 25px;
}

.form_wrapper .input_wrap {
  margin-bottom: 26px;
}

.form_wrapper .input_wrap .input_txt .red {
  color: #D43838;
}

.form_wrapper .input_wrap.bot {
  margin-bottom: 0;
}

.form_wrapper .btns_wrap {
  margin-top: 39px;
}

.form_wrapper .btn_page {
  min-width: 158px;
}

.form_wrapper .checkbox_list {
  padding-right: 24px;
}

.form_wrapper .checkbox_wrap label {
  line-height: 1.45455;
  margin-bottom: 0;
}

.form_wrapper .checkbox_wrap .name_checkbox:not(.login) {
  font-size: 11px;
  font-weight: 300;
  color: #212121;
  line-height: 1.45455;
  padding-left: 20px;
  letter-spacing: 0.045em;
}

.form_wrapper .checkbox_wrap .name_checkbox:not(.login)::before {
  width: 12px;
  height: 12px;
  border: 1px solid #707070;
  top: 2px;
}

.form_wrapper .checkbox_wrap .name_checkbox:not(.login)::after {
  border-top: 2px solid #38D485;
  border-left: 2px solid #38D485;
  width: 7px;
  height: 11px;
  left: 3px;
  top: 1px;
  -webkit-transform: roate(-145deg);
  transform: roate(-145deg);
}

.form_wrapper .forgot_btn {
  padding-top: 4px;
}

.form_wrapper .valid_err {
  padding: 20px 0 0;
}

@media screen and (max-width: 767px) {
  .form_wrapper {
    padding: 22px 20px 12px;
  }
  .form_wrapper .title_32 {
    font-size: 20px;
    margin-bottom: 22px;
  }
  .form_wrapper .input_wrap {
    margin-bottom: 7px;
  }
  .form_wrapper .input_wrap input {
    height: 35px;
    font-size: 12px;
  }
  .form_wrapper .input_txt {
    margin-bottom: 4px;
  }
  .form_wrapper .btn_page {
    min-width: 110px;
    font-size: 12px;
    padding: 0 10px;
    letter-spacing: 0.045em;
  }
  .form_wrapper .btns_wrap {
    margin-top: 16px;
  }
  .form_wrapper .title_30 {
    font-size: 20px;
  }
  .form_wrapper .checkbox_list {
    padding-top: 21px;
  }
}

.btn_invoice {
  cursor: pointer;
}

.btn_delete, .btn_down {
  padding: 10px 5px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  margin: 0;
}

.btn_delete .btn_sm_round, .btn_down .btn_sm_round {
  background-color: #fff;
  width: 30px;
  height: 30px;
  -webkit-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.1);
}

.btn_down {
  color: #38D485;
}

.clear_btn {
  padding: 5px 0 10px;
  color: #38D485;
  font-size: 13px;
  font-style: italic;
  cursor: pointer;
}

.btn_w_icon {
  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;
  cursor: pointer;
  margin: 0 0 10px;
}

.btn_w_icon .btn_txt {
  font-size: 11px;
  font-weight: bold;
  color: #000;
  padding-left: 10px;
  text-transform: uppercase;
}

.btn_sm_round {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #38D485;
  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;
}

.btn_sm_round.delete {
  background-color: #D43838;
}

.btn_sm_round.delete::before, .btn_sm_round.delete::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: #fff;
  top: 50%;
}

.btn_sm_round.delete::before {
  left: 7px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.btn_sm_round.delete::after {
  right: 7px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.btn_sm_round.add::before, .btn_sm_round.add::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: #fff;
  top: 50%;
}

.btn_sm_round.add::before {
  left: 7px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn_sm_round.add::after {
  right: 7px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.btn_sm_round.arrow::before, .btn_sm_round.arrow::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: #fff;
  top: 56%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.btn_sm_round.arrow::before {
  left: 4px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.btn_sm_round.arrow::after {
  right: 4px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.btn_sm_round.arrow.active::before, .btn_sm_round.arrow.active::after {
  top: 52%;
}

.btn_sm_round.arrow.active::before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.btn_sm_round.arrow.active::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.btn_sm_round.blue {
  background-color: #3874D4;
}

.btn_sm_round.red {
  background-color: #D43838;
}

.btn_sm_round.blueM {
  background-color: #0B3162;
}

.btn_sm_round.white {
  background-color: #fff;
}

.btn_sm_round .icon {
  width: 12px;
}

.btn_sm_round .icon.red {
  width: 10px;
  -webkit-filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(400%) contrast(2);
  filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);
}

.fpas_wrap {
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  box-pack: end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: end;
}

.fpas_wrap.pp {
  padding-top: 20px;
}

.fpas_wrap.pp_1 {
  padding-top: 10px;
}

.forgot_btn {
  color: #0B3162;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.045em;
  font-weight: 600;
  cursor: pointer;
}

.btn_login {
  min-width: 210px;
  height: 50px;
  padding: 0 20px;
  background-color: #38D485;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}

.btn_grp {
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.btn_grp > div, .btn_grp > button {
  margin-right: 15px;
}

.btn_grp > div:last-child, .btn_grp > button:last-child {
  margin-right: 0;
}

.log_out {
  min-width: 124px;
  min-height: 32px;
  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;
  padding: 0 20px;
  border-radius: 19px;
  border: 1px solid #fff;
  cursor: pointer;
  background-color: #06234B;
  color: #fff;
  font-weight: normal;
  font-size: 13px;
  padding-bottom: 1px;
}

@media screen and (max-width: 1024px) {
  .btn_invoice, .btn_delete, .btn_down, .clear_btn, .btn_w_icon, .btn_sm_round, .forgot_btn, .btn_login, .btn_grp, .log_out, .btn_page, .del_btn, .btn_round, .btn_icon {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}

@media screen and (max-width: 767px) {
  .log_out {
    min-width: 100px;
    min-height: 25px;
    font-size: 12px;
  }
  .btn_login {
    min-width: 150px;
    height: 35px;
    font-size: 12px;
    letter-spacing: 0.045em;
    padding: 0 15px;
  }
  .forgot_btn {
    font-size: 11px;
    letter-spacing: 0.045em;
  }
}

@media screen and (max-width: 320px) {
  .btn_login {
    min-width: 115px;
  }
}

.step_btn {
  width: 50px;
  height: 50px;
  background-color: #38D485;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: lighter;
  border-radius: 3px;
}

.step_btn.lg {
  width: 70px;
  height: 70px;
  font-size: 30px;
}

.step_btn_prev {
  padding: 0 20px;
  min-width: 180px;
  height: 50px;
  font-size: 20px;
  color: #fff;
  background-color: #D43838;
  cursor: pointer;
  text-align: center;
  border: none;
  border-radius: 3px;
}

.step_btn_prev.orange {
  background-color: #D6A36A;
}

@media screen and (max-width: 767px) {
  .step_btn {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
  .step_btn.lg {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .step_btn_prev {
    min-width: 120px;
    height: 35px;
    font-size: 13px;
  }
}

.btn_page {
  display: inline-block;
  width: auto;
  min-width: 144px;
  min-height: 32px;
  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;
  padding: 0 20px;
  border-radius: 19px;
  border: none;
  cursor: pointer;
  background-color: #06234B;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.045em;
  line-height: 1;
  font-weight: normal;
  margin: 10px 0;
}

.btn_page.border {
  border: 1px solid #fff;
}

.btn_page.white {
  background-color: #fff;
  color: #0B3162;
  border: 1px solid #D8D8D8;
}

.btn_page.green {
  background-color: #38D485;
  border: 1px solid #38D485;
}

.btn_page.red {
  background-color: #D43838;
}

.btn_page.border_25 {
  border-radius: 25px;
}

.btn_page.blue_border {
  background-color: #fff;
  border: 1px solid #3874D4;
  color: #3874D4;
}

.btn_page .fa {
  font-size: 17px;
  padding-left: 8px;
}

.del_btn {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: #D43838;
  border-radius: 50%;
  cursor: pointer;
}

.del_btn::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 12px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.del_btn::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 9px;
  width: 12px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.del_btn.white {
  background-color: #fff;
}

.del_btn.white::before, .del_btn.white::after {
  background-color: #D43838;
}

.btn_round {
  position: relative;
  width: auto;
  min-width: 77px;
  height: 20px;
  padding: 0 9px;
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 0;
  color: #fff;
  border-radius: 19px;
  cursor: pointer;
  border: none;
  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-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.btn_round > span {
  width: 100%;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.btn_round.green {
  background-color: #38D485;
}

.btn_round.blue {
  background-color: #06234B;
}

.btn_round.brown {
  background-color: #794A2E;
}

.btn_round.red {
  background-color: #D43838;
}

.btn_round.blueL {
  background-color: #3874D4;
}

.btn_round.gold {
  background-color: #D6A36A;
}

.btn_round.large {
  height: 25px;
  min-width: 106px;
}

.btn_round.szkic {
  background-color: #794A2E;
}

.btn_round.nieoplacona {
  background-color: #06234B;
}

.btn_round.oplacona, .btn_round.zaksiegowane {
  background-color: #38D485;
}

.btn_round.niepelna {
  background-color: #D43838;
}

.btn_round.oczekuje {
  background-color: #D6A36A;
}

.btn_round .btn_info {
  position: absolute;
  width: 18px;
  height: 18px;
  right: -6px;
  top: -9px;
}

.btn_round .btn_info .alert {
  position: relative;
  background-color: #D43838;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  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-size: 12px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  z-index: 2;
}

.btn_round .btn_info .alert_info {
  position: absolute;
  display: block;
  opacity: 0;
  pointer-events: none;
  min-width: 122px;
  background-color: #fff;
  padding: 6px 8px 7px;
  right: 2px;
  bottom: 9px;
  border: 1px solid #D8D8D8;
  font-size: 12px;
  font-weight: 600;
  color: #0B3162;
  z-index: 1;
  line-height: 1.25;
  border-radius: 5px;
  -webkit-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.24);
          box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.24);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.btn_round .btn_info.active {
  z-index: 10;
}

.btn_round .btn_info.active .alert_info {
  opacity: 1;
}

button.btn_icon {
  background-color: transparent;
  border: none;
  padding: 0;
}

.btn_icon {
  font-size: 11px;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 12px;
  letter-spacing: 0.035em;
  cursor: pointer;
  text-align: center;
  max-width: 62px;
}

.btn_icon.big {
  max-width: 86px;
}

.btn_icon .round {
  position: relative;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  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;
  margin: 0 auto;
}

.btn_icon .text_wrap {
  display: block;
  margin-top: 8px;
}

.btn_icon .fa {
  font-size: 16px;
  color: #fff;
}

.btn_icon .icon {
  width: 19px;
}

.btn_icon.add .round {
  background-color: #38D485;
}

.btn_icon.add .round::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 12px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.btn_icon.add .round::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  left: 50%;
  top: 50%;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btn_icon.green .round {
  background-color: #38D485;
}

.btn_icon.add_ico .round {
  background-color: #38D485;
}

.btn_icon.add_ico .icon {
  width: 12px;
}

.btn_icon.edit .round {
  background-color: #3874D4;
}

.btn_icon.edit .fa {
  margin-left: 4px;
  margin-top: 2px;
}

.btn_icon.delete .round {
  background-color: #D43838;
}

.btn_icon.delete .round::before, .btn_icon.delete .round::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 12px;
  left: 50%;
  top: 50%;
  background-color: #fff;
}

.btn_icon.delete .round::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn_icon.delete .round::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn_icon.search .round {
  background-color: #C4C4C4;
}

.btn_icon.search .icon {
  width: 15px;
}

.btn_icon.print .round {
  background-color: #0B3162;
}

.btn_icon.change_stats .icon {
  width: 13px;
  margin-left: 2px;
}

.btn_icon.send .icon {
  width: 26px;
}

.btn_icon.correct .icon {
  margin-left: 3px;
}

.btn_icon.blue .round {
  background-color: #0B3162;
}

.btn_icon.gold .round {
  background-color: #D6A36A;
}

.btn_icon.blueL .round {
  background-color: #3874D4;
}

.btn_icon.arch .round {
  background-color: #D6A36A;
}

.btn_icon.arch .fa {
  font-size: 19px;
}

.btn_icon .menu_list {
  color: #0B3162;
  position: absolute;
  right: 100%;
  top: 100%;
  min-width: 250px;
  width: 100%;
  border-radius: 3px;
  margin: 0;
  padding: 15px 25px 0;
  max-height: 230px;
  overflow: auto;
  z-index: 100;
  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;
}

.btn_icon .menu_list.right {
  left: 100%;
  right: inherit;
}

.btn_icon .menu_list.right li {
  text-align: right;
}

.btn_icon .menu_list.top {
  top: 0;
}

.btn_icon .menu_list li {
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  font-size: 13px;
  line-height: 1.84615;
  font-weight: 600;
  -webkit-transition: -webkit-transform 0s ease-in-out 0.3s, opacity 0.3s ease-in-out 0s;
  -webkit-transition: opacity 0.3s ease-in-out 0s, -webkit-transform 0s ease-in-out 0.3s;
  transition: opacity 0.3s ease-in-out 0s, -webkit-transform 0s ease-in-out 0.3s;
  transition: transform 0s ease-in-out 0.3s, opacity 0.3s ease-in-out 0s;
  transition: transform 0s ease-in-out 0.3s, opacity 0.3s ease-in-out 0s, -webkit-transform 0s ease-in-out 0.3s;
  text-align: left;
  text-transform: none;
  opacity: 0;
  -webkit-transform: translateX(25px);
  transform: translateX(25px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.btn_icon .menu_list li:last-child {
  margin-bottom: 14px;
}

.btn_icon .menu_list a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding: 3px 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

@media screen and (min-width: 1025px) {
  .btn_icon .menu_list a:hover {
    color: #38D485;
  }
}

.btn_icon.btn_w_submenu {
  position: relative;
  padding-left: 10px;
}

@media screen and (min-width: 1025px) {
  .btn_icon.btn_w_submenu:hover .menu_list {
    opacity: 1;
    pointer-events: all;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li {
    -webkit-transition: -webkit-transform 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0s;
    -webkit-transition: opacity 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    transition: opacity 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    transition: transform 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0s;
    transition: transform 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(1) {
    -webkit-transition-delay: 0.39s;
    transition-delay: 0.39s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(2) {
    -webkit-transition-delay: 0.48s;
    transition-delay: 0.48s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(3) {
    -webkit-transition-delay: 0.57s;
    transition-delay: 0.57s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(4) {
    -webkit-transition-delay: 0.66s;
    transition-delay: 0.66s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(5) {
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(6) {
    -webkit-transition-delay: 0.84s;
    transition-delay: 0.84s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(7) {
    -webkit-transition-delay: 0.93s;
    transition-delay: 0.93s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(8) {
    -webkit-transition-delay: 1.02s;
    transition-delay: 1.02s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(9) {
    -webkit-transition-delay: 1.11s;
    transition-delay: 1.11s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(10) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(11) {
    -webkit-transition-delay: 1.29s;
    transition-delay: 1.29s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(12) {
    -webkit-transition-delay: 1.38s;
    transition-delay: 1.38s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(13) {
    -webkit-transition-delay: 1.47s;
    transition-delay: 1.47s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(14) {
    -webkit-transition-delay: 1.56s;
    transition-delay: 1.56s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(15) {
    -webkit-transition-delay: 1.65s;
    transition-delay: 1.65s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(16) {
    -webkit-transition-delay: 1.74s;
    transition-delay: 1.74s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(17) {
    -webkit-transition-delay: 1.83s;
    transition-delay: 1.83s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(18) {
    -webkit-transition-delay: 1.92s;
    transition-delay: 1.92s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(19) {
    -webkit-transition-delay: 2.01s;
    transition-delay: 2.01s;
  }
  .btn_icon.btn_w_submenu:hover .menu_list li:nth-child(20) {
    -webkit-transition-delay: 2.1s;
    transition-delay: 2.1s;
  }
}

@media screen and (max-width: 1024px) {
  .btn_icon.btn_w_submenu.active .menu_list {
    opacity: 1;
    pointer-events: all;
  }
  .btn_icon.btn_w_submenu.active .menu_list li {
    -webkit-transition: -webkit-transform 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0s;
    -webkit-transition: opacity 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    transition: opacity 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    transition: transform 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0s;
    transition: transform 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(1) {
    -webkit-transition-delay: 0.39s;
    transition-delay: 0.39s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(2) {
    -webkit-transition-delay: 0.48s;
    transition-delay: 0.48s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(3) {
    -webkit-transition-delay: 0.57s;
    transition-delay: 0.57s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(4) {
    -webkit-transition-delay: 0.66s;
    transition-delay: 0.66s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(5) {
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(6) {
    -webkit-transition-delay: 0.84s;
    transition-delay: 0.84s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(7) {
    -webkit-transition-delay: 0.93s;
    transition-delay: 0.93s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(8) {
    -webkit-transition-delay: 1.02s;
    transition-delay: 1.02s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(9) {
    -webkit-transition-delay: 1.11s;
    transition-delay: 1.11s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(10) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(11) {
    -webkit-transition-delay: 1.29s;
    transition-delay: 1.29s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(12) {
    -webkit-transition-delay: 1.38s;
    transition-delay: 1.38s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(13) {
    -webkit-transition-delay: 1.47s;
    transition-delay: 1.47s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(14) {
    -webkit-transition-delay: 1.56s;
    transition-delay: 1.56s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(15) {
    -webkit-transition-delay: 1.65s;
    transition-delay: 1.65s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(16) {
    -webkit-transition-delay: 1.74s;
    transition-delay: 1.74s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(17) {
    -webkit-transition-delay: 1.83s;
    transition-delay: 1.83s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(18) {
    -webkit-transition-delay: 1.92s;
    transition-delay: 1.92s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(19) {
    -webkit-transition-delay: 2.01s;
    transition-delay: 2.01s;
  }
  .btn_icon.btn_w_submenu.active .menu_list li:nth-child(20) {
    -webkit-transition-delay: 2.1s;
    transition-delay: 2.1s;
  }
}

@media screen and (max-width: 767px) {
  .btn_icon {
    font-size: 10px;
  }
  .btn_icon .round {
    width: 36px;
    height: 36px;
  }
  .btn_icon .text_wrap {
    margin-top: 5px;
  }
  .btn_icon .menu_list {
    right: inherit;
    left: 0;
  }
  .btn_icon .menu_list.right {
    right: 0;
    left: inherit;
  }
  .btn_icon.btn_w_submenu {
    padding-left: 0;
  }
}

.title_40 {
  font-size: 40px;
  letter-spacing: 0.035em;
  font-weight: 600;
  margin: 0;
}

.title_40.green {
  color: #38D485;
}

.title_40.blue {
  color: #0B3162;
}

.title_30 {
  font-size: 30px;
  letter-spacing: 0.035em;
  line-height: 1.2;
  margin: 0;
  font-weight: 600;
}

.title_30.gold {
  color: #D6A36A;
}

.title_30 .gray {
  color: #D8D8D8;
}

.title_30 span {
  display: block;
}

.title_30.bold {
  font-weight: bold;
}

.title_30.blue {
  color: #0B3162;
}

.title_32 {
  font-size: 32px;
  letter-spacing: 0.035em;
  line-height: 1.125;
  margin: 0;
  font-weight: 600;
}

.title_32.gold {
  color: #D6A36A;
}

.title_32 .gray {
  color: #D8D8D8;
}

.title_32 span {
  display: block;
}

.title_32.bold {
  font-weight: bold;
}

.title_32.blue {
  color: #0B3162;
}

.title_28 {
  font-size: 28px;
  letter-spacing: 0.035em;
  font-weight: 600;
  margin: 0;
}

.title_28.blue {
  color: #0B3162;
}

.title_28.bold {
  font-weight: bold;
}

.title_28.green {
  color: #38D485;
}

.title_28.red {
  color: #D43838;
}

.title_28 .gold {
  color: #D6A36A;
}

.title_28 .blue {
  color: #0B3162;
}

.title_28 .up {
  text-transform: uppercase;
}

.title_28 .blue {
  color: #0B3162;
}

.title_28.normal {
  font-weight: normal;
}

.title_22 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
}

.title_22.white {
  color: #fff;
}

.title_19 {
  font-size: 19px;
  font-weight: bold;
  margin: 0;
}

.title_19.blue {
  color: #0B3162;
}

.title_19.normal {
  font-weight: 300;
}

.title_14 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.title_14.gold {
  color: #D6A36A;
}

.title_14.bold {
  font-weight: bold;
}

.title_14.blue {
  color: #0B3162;
}

.title_12 {
  font-size: 12px;
  color: #000;
  font-weight: bold;
  margin: 0;
}

.form_header {
  position: relative;
  border-bottom: 2px solid #E9E9E9;
  padding-bottom: 4px;
  margin: 19px 0 18px;
  text-transform: uppercase;
  line-height: 1.5;
}

.form_header.nmt {
  margin-top: 0;
}

.form_header.noborder {
  border: none;
}

@media screen and (max-width: 767px) {
  .title_28 {
    font-size: 20px;
  }
  .title_19 {
    font-size: 16px;
  }
  .form_header {
    margin: 15px 0 10px;
  }
}

.table {
  width: 100%;
  padding: 40px 0;
}

.table .t-head {
  font-weight: bold;
  color: #0B3162;
}

.table .t-head .row {
  padding: 7px 20px 7px 15px;
}

.table .t-head > .row {
  border-bottom: 1px solid #D8D8D8;
}

.table .t-head > .row .row {
  padding: 0;
}

.table .t-head > .row .pad {
  padding: 5px 10px;
}

.table .t-head .title {
  width: calc(100% - 30px);
  cursor: pointer;
}

.table .t-content {
  color: #000;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.table .t-content > .row {
  background-color: #fff;
  border-bottom: 1px solid #D8D8D8;
}

.table .t-content > .row:nth-child(2n) {
  background-color: rgba(252, 243, 225, 0.38);
}

.table .t-content > .row.alert {
  background-color: #D43838;
  color: #FFF;
}

.table .t-content > .row .row {
  padding: 0;
}

.table .t-content > .row .pad {
  padding: 5px 10px;
}

.table .t-content .row {
  padding: 7px 20px 5px 15px;
  min-height: 62px;
}

.table .t-content .title {
  font-weight: 600;
}

.table .pad {
  padding: 5px 10px;
}

.table .pad-right {
  padding: 5px 10px 5px 0;
}

.table .checkbox_wrap {
  margin-right: 5px;
  margin-top: 4px;
}

.table .col-check {
  width: 3%;
}

.table .col-sel {
  position: relative;
  width: 3%;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  box-pack: end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: end;
}

.table .col-name {
  width: 19%;
}

.table .col-address {
  width: 30%;
}

.table .col-nip, .table .col-tel {
  width: 15%;
}

.table .col-small {
  width: 10%;
}

.table .col-email {
  width: 15%;
}

.table .arrows {
  position: relative;
  width: 15px;
  height: 12px;
  margin-right: 10px;
}

.table .arrows .arrow {
  position: absolute;
  width: 10px;
  height: 12px;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.table .arrows .arrow::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #D8D8D8;
}

.table .arrows .arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #D8D8D8;
  border-left: 2px solid #D8D8D8;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.table .arrows .arrow.arrow_up {
  right: 0;
  left: inherit;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.table .arrows.sort .arrow_up {
  opacity: 0;
}

.table .arrows.sort.up .arrow_up {
  opacity: 1;
}

.table .arrows.sort.up .arrow_down {
  opacity: 0;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .table .col-sel, .table .col-check {
    width: 5%;
  }
  .table .t-head .title {
    width: 100%;
  }
  .table .col-name, .table .col-address, .table .col-nip, .table .col-tel, .table .col-email {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .table {
    padding: 21px 0 30px;
  }
  .table .t-content .row {
    padding-left: 0;
    padding-right: 0;
  }
  .table .t-content .row:last-child .select_wrap.sbtnr .fake_select {
    top: inherit;
    bottom: 12px;
  }
  .table .t-content > .row .pad {
    padding: 5px 4px;
  }
  .table .t-head .row {
    padding-left: 0;
    padding-right: 0;
  }
  .table .t-head .title {
    width: 100%;
  }
  .table .t-head > .row .pad {
    padding: 5px 4px;
  }
  .table .btn_stat {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    min-width: 8px;
    padding: 0;
  }
  .table .col-check {
    width: 8%;
    min-width: 15px;
  }
  .table .col_status {
    width: 7%;
    min-width: 16px;
  }
  .table .col-sel {
    width: 8%;
  }
  .table .col-name, .table .col-address, .table .col-nip, .table .col-tel, .table .col-email {
    width: 100%;
  }
}

.avatar_cont {
  position: relative;
}

.avatar_cont .avt_wrap {
  position: relative;
  width: 125px;
  height: 125px;
  border: 1px solid #707070;
  border-radius: 5px;
  display: block;
}

.avatar_cont .avt_bg {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 5px;
  display: block;
}

.avatar_cont input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.avatar_cont .add_btn {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #38D485;
  border-radius: 50%;
  cursor: pointer;
  top: 7px;
  right: 7px;
  z-index: 10;
  display: block;
}

.avatar_cont .add_btn::before, .avatar_cont .add_btn::after {
  content: '';
  position: absolute;
  background-color: #fff;
  border-radius: 20%;
}

.avatar_cont .add_btn::before {
  width: 14px;
  height: 2px;
  left: 3px;
  top: 10px;
}

.avatar_cont .add_btn::after {
  width: 2px;
  height: 14px;
  top: 4px;
  left: 9px;
}

@media screen and (max-width: 1024px) {
  .avatar_cont .avt_wrap {
    width: 92px;
    height: 92px;
  }
  .avatar_cont .del_btn {
    width: 18px;
    height: 18px;
  }
  .avatar_cont .del_btn::before, .avatar_cont .del_btn::after {
    width: 9px;
    top: 8px;
  }
  .avatar_cont .del_btn::before {
    left: 4px;
  }
  .avatar_cont .del_btn::after {
    right: 5px;
  }
}

.valid_err {
  color: #D43838;
  padding: 15px 0;
  font-weight: normal;
}

.valid_err.bot {
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .valid_err {
    padding-top: 5px;
    padding-bottom: 9px;
  }
}

.modal_sec_anim {
  pointer-events: none;
}

.modal_sec_anim .modal_cont .modal_wrap {
  -webkit-transform: translateX(100vw);
  transform: translateX(100vw);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.modal_sec_anim .modal_cont .overlay {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0.4s;
  transition: all 0.4s ease-in-out 0.4s;
}

.modal_sec_anim.active {
  pointer-events: all;
}

.modal_sec_anim.active .modal_cont .modal_wrap {
  -webkit-transform: translateX(0vw);
  transform: translateX(0vw);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.modal_sec_anim.active .modal_cont .overlay {
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.modal_cont {
  position: fixed;
  right: 0;
  top: 0;
  width: calc(100% - 300px);
  height: 100%;
  z-index: 1000;
  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;
}

.modal_cont .loader {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.modal_cont .overlay {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(216, 216, 216, 0.69);
}

.modal_cont .modal_wrap {
  position: relative;
  z-index: 10;
  max-width: 610px;
  height: 80%;
  width: 90%;
  padding: 20 11px;
  border-radius: 9px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  padding-top: 86px;
}

.modal_cont .modal_wrap.small {
  max-width: 406px;
  height: 78%;
}

.modal_cont .modal_wrap.lg {
  max-width: 660px;
}

.modal_cont .modal_wrap.auto_height {
  height: auto;
}

.modal_cont .modal_wrap .bg_modal {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 485px;
  pointer-events: none;
  overflow: hidden;
}

.modal_cont .modal_wrap .bg_modal img {
  position: absolute;
  height: 100%;
  width: auto;
  bottom: -76px;
  left: -119px;
}

.modal_cont .modal_content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 39px 84px 0;
}

.modal_cont .modal_content.small {
  padding: 24px 50px 0;
}

.modal_cont .modal_content_scr {
  position: relative;
  width: 100%;
  padding: 39px 84px 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 1;
}

.modal_cont .modal_content_scr.active {
  opacity: 0;
}

.modal_cont .modal_content_scr.small {
  padding: 24px 50px 0;
}

.modal_cont .head_modal_wrap {
  position: absolute;
  background-color: #38D485;
  padding: 20px 50px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 100%;
  min-height: 86px;
  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;
  top: 0;
  left: 0;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}

.modal_cont .head_modal_wrap.noflex {
  display: block;
}

.modal_cont .head_modal_wrap .btn_icon {
  position: absolute;
  right: -15px;
  top: -13px;
}

.modal_cont .modal_alert {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 600px;
  min-height: 230px;
  background-color: #fff;
  border: 1px solid #38D485;
  border-radius: 9px;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal_cont .modal_alert .head_modal_wrap {
  position: relative;
}

.modal_cont .modal_alert.delete {
  border: 1px solid #D43838;
}

.modal_cont .modal_alert.delete .head_modal_wrap {
  background-color: #D43838;
}

.modal_cont .modal_alert p {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
}

.modal_cont .modal_alert .modal_alert_content {
  padding: 0 0 40px;
}

.modal_cont .modal_alert .modal_alert_content.btns {
  padding: 50px 30px;
}

.modal_cont .modal_alert .modal_alert_content.input {
  padding: 30px 30px 40px;
}

.modal_cont .modal_alert .modal_alert_content .m_bot {
  margin-bottom: 20px;
}

.modal_cont .modal_alert button {
  margin: 0 30px;
}

.modal_cont .modal_alert .list_invoice {
  width: 100%;
  margin-bottom: 40px;
  padding: 30px 30px 0;
  max-height: 350px;
  overflow: auto;
}

.modal_cont .alert_info {
  font-size: 16px;
  font-weight: 500;
}

.modal_cont .alert_desc {
  padding: 20px 30px;
}

.modal_cont .send_outcome_wrap {
  width: 100%;
  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;
  padding: 19px 0 40px;
}

.modal_cont .send_outcome_wrap button {
  margin: 0 10px;
}

.modal_cont .file_wrap .input_file {
  width: 60%;
  margin-right: 15px;
}

.modal_cont .file_wrap .btn_round {
  width: calc(40% - 15px);
  min-width: inherit;
}

.modal_cont .ps__thumb-y {
  background-color: rgba(6, 35, 75, 0.9);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.modal_cont .ps__rail-y:hover > .ps__thumb-y, .modal_cont .ps__rail-y:focus > .ps__thumb-y, .modal_cont .ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #06234B;
}

.modal_cont .list {
  padding: 0 0 40px;
  list-style: none;
  margin: 0;
  font-size: 16px;
}

.modal_cont .list > li {
  padding: 10px 0;
}

.modal_cont .list .header_list {
  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;
}

.modal_cont .list .data_icon {
  margin-right: 10px;
}

.modal_cont .sub_list {
  padding: 0 0 0 30px;
  margin: 0;
  list-style-type: disc;
}

.modal_cont .sub_list li {
  padding: 5px 0 10px;
}

.modal_cont.limitModal .title_32 {
  margin-bottom: 20px;
}

.modal_cont.limitModal .title_19 {
  margin-bottom: 35px;
}

@media screen and (min-width: 1025px) and (max-height: 800px) {
  .modal_cont .modal_wrap .bg_modal {
    height: 380px;
  }
}

@media screen and (max-width: 767px) {
  .send_outcome_wrap button {
    min-width: inherit;
    width: 45%;
    margin: 0 5px;
  }
}

@-moz-document url-prefix() {
  .modal_cont .ps__thumb-y {
    border-radius: 0;
  }
}

.gus_modal {
  position: relative;
  padding-bottom: 30px;
}

.gus_modal p {
  margin: 0;
  padding-left: 10px;
  font-weight: 600;
}

.gus_modal .row {
  margin-bottom: 10px;
}

.gus_modal button {
  margin-top: 20px;
}

.gus_modal .del_btn {
  position: absolute;
  right: -20px;
  top: 0;
  z-index: 1;
}

@media screen and (max-width: 1440px) and (min-width: 1025px) {
  .modal_cont {
    width: calc(100% - 250px);
  }
}

@media screen and (max-width: 1024px) {
  .modal_cont {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .modal_cont {
    top: 70px;
    height: calc(100% - 70px);
  }
  .modal_cont .modal_wrap {
    width: calc(100% - 20px);
    height: calc(100% - 40px);
    padding-top: 56px;
  }
  .modal_cont .modal_wrap.small {
    height: calc(100% - 40px);
  }
  .modal_cont .modal_wrap .bg_modal {
    height: 390px;
  }
  .modal_cont .head_modal_wrap {
    padding: 16px;
    min-height: 56px;
  }
  .modal_cont .head_modal_wrap .btn_icon {
    right: -12px;
    top: -11px;
  }
  .modal_cont .head_modal_wrap .btn_icon .round {
    width: 32px;
    height: 32px;
  }
  .modal_cont .head_modal_wrap .title_22 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .modal_cont .modal_content {
    padding: 21px 20px 0;
  }
  .modal_cont .modal_content_scr {
    padding: 21px 20px 0;
  }
  .modal_cont .modal_content_scr.small {
    padding-left: 20px;
    padding-right: 20px;
  }
  .modal_cont .title_22 {
    font-size: 20px;
  }
  .modal_cont .checkbox_wrap {
    margin-bottom: 12px;
  }
  .modal_cont .input_wrap {
    margin-bottom: 12px;
  }
  .modal_cont .form_header {
    margin: 0;
    padding-bottom: 7px;
    padding-top: 8px;
  }
  .modal_cont .modal_alert {
    width: calc(100% - 20px);
    min-height: 180px;
  }
  .modal_cont .modal_alert .title_22 {
    font-size: 17px;
  }
  .modal_cont .modal_alert .list_invoice {
    margin-bottom: 20px;
    padding-top: 20px;
  }
  .modal_cont .modal_alert p {
    font-size: 14px;
  }
  .modal_cont .modal_alert button {
    margin: 0 5px;
    height: 40px;
    min-width: 100px;
  }
  .modal_cont .list {
    font-size: 14px;
  }
  .modal_cont .list .header_list {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) and (max-height: 635px) {
  .modal_cont .modal_wrap .bg_modal {
    height: 280px;
  }
  .modal_cont .modal_wrap .bg_modal img {
    bottom: -47px;
    left: -77px;
  }
}

table {
  width: 100%;
}

.table_wrap {
  padding-top: 50px;
  padding-bottom: 10px;
}

.table_wrap .select_wrap {
  margin: 0;
}

.table_wrap .select_wrap input {
  padding-right: 10px;
}

.table_wrap .select_wrap .fake_select {
  min-width: 230px;
}

table, th, td {
  border: 1px solid #D8D8D8;
  border-collapse: collapse;
}

table thead {
  background-color: rgba(252, 243, 225, 0.38);
  font-weight: bold;
  color: #0B3162;
}

table th, table td {
  height: 50px;
  vertical-align: center;
  padding: 10px 5px;
}

table tbody tr {
  background-color: #fff;
}

table tbody tr:nth-child(2n) {
  background-color: rgba(241, 241, 241, 0.38);
}

table tr:last-child td, table tr:last-child input {
  font-weight: bold;
  color: #0B3162;
}

table tr:last-child td:nth-child(2) {
  width: auto;
  text-transform: uppercase;
  text-align: right;
}

table input {
  padding: 0 4px;
}

table .modal_mobile {
  display: none;
}

table .del_btn {
  margin: auto;
}

table.inovice_pro th:nth-child(1), table.inovice_pro td:nth-child(1) {
  text-align: center;
}

table.inovice_pro th:nth-child(2), table.inovice_pro td:nth-child(2) {
  width: 18%;
  text-align: left;
}

table.inovice_pro th:nth-child(3), table.inovice_pro th:nth-child(6), table.inovice_pro th:nth-child(7), table.inovice_pro th:nth-child(8), table.inovice_pro th:nth-child(9), table.inovice_pro th:nth-child(10), table.inovice_pro th:nth-child(11), table.inovice_pro td:nth-child(3), table.inovice_pro td:nth-child(6), table.inovice_pro td:nth-child(7), table.inovice_pro td:nth-child(8), table.inovice_pro td:nth-child(9), table.inovice_pro td:nth-child(10), table.inovice_pro td:nth-child(11) {
  width: 8%;
}

table.inovice_pro th:nth-child(12), table.inovice_pro td:nth-child(12) {
  width: 8%;
}

table.inovice_pro th:nth-child(1), table.inovice_pro th:nth-child(13), table.inovice_pro td:nth-child(1), table.inovice_pro td:nth-child(13) {
  width: 3%;
}

table.inovice_pro th:nth-child(4), table.inovice_pro th:nth-child(5), table.inovice_pro td:nth-child(4), table.inovice_pro td:nth-child(5) {
  width: 6%;
}

table.inovice_pro.correct_table_wrap th:nth-child(1), table.inovice_pro.correct_table_wrap td:nth-child(1) {
  text-align: left;
  width: 19%;
}

table.inovice_pro.correct_table_wrap th:nth-child(2), table.inovice_pro.correct_table_wrap td:nth-child(2) {
  width: 8%;
}

table.inovice_pro.correct_table_wrap th:nth-child(3), table.inovice_pro.correct_table_wrap td:nth-child(3) {
  width: 5%;
  text-align: center;
}

table.inovice_pro.correct_table_wrap th:nth-child(4), table.inovice_pro.correct_table_wrap th:nth-child(5), table.inovice_pro.correct_table_wrap td:nth-child(4), table.inovice_pro.correct_table_wrap td:nth-child(5) {
  width: 6%;
}

table.inovice_pro.correct_table_wrap th:nth-child(6), table.inovice_pro.correct_table_wrap td:nth-child(6) {
  width: 9%;
}

table.inovice_pro.correct_table_wrap td {
  text-align: right;
}

table.inovice_pro.correct_table_wrap tr:last-child td:nth-child(2) {
  text-align: right;
}

table.inovice_pro.vat_m th:nth-child(1), table.inovice_pro.vat_m td:nth-child(1) {
  width: 3%;
}

table.inovice_pro.vat_m th:nth-child(2), table.inovice_pro.vat_m td:nth-child(2) {
  width: 25%;
}

table.inovice_pro.vat_m th:nth-child(3), table.inovice_pro.vat_m th:nth-child(4), table.inovice_pro.vat_m th:nth-child(5), table.inovice_pro.vat_m th:nth-child(6), table.inovice_pro.vat_m th:nth-child(7), table.inovice_pro.vat_m th:nth-child(8), table.inovice_pro.vat_m td:nth-child(3), table.inovice_pro.vat_m td:nth-child(4), table.inovice_pro.vat_m td:nth-child(5), table.inovice_pro.vat_m td:nth-child(6), table.inovice_pro.vat_m td:nth-child(7), table.inovice_pro.vat_m td:nth-child(8) {
  width: 12%;
}

@media screen and (max-width: 1024px) {
  .sum_info {
    padding-top: 21px;
  }
  .sum_info .single_item {
    display: -moz-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    color: #171717;
  }
  .sum_info .single_item > div {
    width: 50%;
    text-align: right;
  }
  .sum_info .single_item.bold {
    font-weight: bold;
    margin-bottom: 5px;
  }
  .sum_info .single_item.brutt {
    margin-bottom: 14px;
  }
  .sum_info .single_item .font_14 {
    font-size: 14px;
  }
}

.inv_adv .table_wrap {
  padding-top: 0;
}

.inv_adv table th, .inv_adv table td {
  width: 14.5%;
  text-align: right;
}

.inv_adv table th:nth-child(1), .inv_adv table td:nth-child(1) {
  width: 39%;
  text-align: left;
}

.inv_adv table th:last-child, .inv_adv table td:last-child {
  width: 3%;
}

.inv_adv table td, .inv_adv table tr:last-child td {
  font-size: 13px;
  color: #171717;
  font-weight: 600;
}

.inv_adv table td:first-child, .inv_adv table tr:last-child td:first-child {
  color: #0B3162;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .inv_adv .form_header {
    border-bottom: 2px solid #E9E9E9;
    margin-bottom: 0;
  }
  .inv_adv table thead {
    display: none;
  }
  .inv_adv table th, .inv_adv table td {
    width: 45%;
    text-align: right;
  }
  .inv_adv table th:nth-child(1), .inv_adv table td:nth-child(1) {
    width: 45%;
    text-align: left;
  }
  .inv_adv table th:last-child, .inv_adv table td:last-child {
    width: 10%;
  }
  .inv_adv table .nr {
    margin-bottom: 3px;
  }
  .inv_adv table .date {
    color: #171717;
  }
  .inv_adv table .brut, .inv_adv table .date {
    font-weight: 400;
  }
}

.info_modal_valid {
  padding-bottom: 40px;
  font-size: 1.1rem;
  color: #D43838;
  font-weight: 500;
  width: 100%;
  overflow: hidden;
}

.outc_form_edit {
  width: 304px;
}

.outc_imgs_wrap {
  width: calc(100% - 304px);
  padding-left: 40px;
}

.outc_imgs_wrap .outc_single_img {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.outc_imgs_wrap .outc_single_img.toDelete .btn_delete, .outc_imgs_wrap .outc_single_img.toDelete .img_fq {
  display: none;
}

.outc_imgs_wrap .btns_img_wrap {
  position: absolute;
  right: 0;
  top: 0;
  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;
  max-width: 100%;
}

.outc_imgs_wrap .btn_delete, .outc_imgs_wrap .btn_down {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  pointer-events: none;
  z-index: 2;
}

.outc_imgs_wrap .img_fq {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #C4C4C4;
  border: 1px solid #C4C4C4;
  border-radius: 5px;
}

.outc_imgs_wrap .img_fq::after {
  content: '';
  display: block;
  padding-top: 100%;
}

.outc_imgs_wrap .img_fq::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  pointer-events: none;
}

@media screen and (min-width: 1025px) {
  .outc_imgs_wrap .img_fq:hover .btn_delete, .outc_imgs_wrap .img_fq:hover .btn_down {
    -webkit-transform: scale(1);
    transform: scale(1);
    pointer-events: all;
  }
  .outc_imgs_wrap .img_fq:hover::before {
    opacity: 1;
  }
}

.outc_imgs_wrap .title_outc_img {
  font-weight: bold;
  line-height: 1.7;
  color: #06234B;
  margin: 0 0 10px;
}

.outc_imgs_wrap .back_data {
  border: none;
  background-color: transparent;
  padding: 10px 0;
  color: #3874D4;
  cursor: pointer;
}

@media screen and (min-width: 1025px) {
  .outc_imgs_wrap .back_data:hover {
    text-decoration: underline;
  }
}

.outc_imgs_wrap .pdf_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-block;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 77px;
}

@media screen and (max-width: 1024px) {
  .outc_imgs_wrap .btn_delete, .outc_imgs_wrap .btn_down {
    pointer-events: all;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .outc_imgs_wrap .btn_delete .btn_sm_round, .outc_imgs_wrap .btn_down .btn_sm_round {
    width: 35px;
    height: 35px;
  }
}

@media screen and (max-width: 767px) {
  .outc_imgs_wrap {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
  .outc_imgs_wrap .pdf_icon {
    width: 120px;
  }
}

.alert_info {
  color: #D43838;
  font-style: italic;
  font-weight: 600;
  padding: 0 0 10px;
}

.small_loader {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  background-color: #fff;
  border-top-left-radius: 6px;
  -webkit-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.24);
          box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.24);
  padding: 25px 25px 15px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  font-size: 14px;
  max-width: 340px;
}

.small_loader .fa {
  font-size: 20px;
  padding-right: 7px;
}

.small_loader.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.small_loader.error {
  border-top: 1px solid #D43838;
  border-left: 1px solid #D43838;
  font-style: italic;
  color: #D43838;
}

.small_loader.start_save {
  border-top: 1px solid #06234B;
  border-left: 1px solid #06234B;
  color: #06234B;
  font-weight: 400;
}

.small_loader.autosave {
  color: #38D485;
  border-top: 1px solid #38D485;
  border-left: 1px solid #38D485;
  font-weight: 400;
}

.toggle_height {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.7s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.7s cubic-bezier(0, 1, 0, 1);
}

.toggle_height.active {
  max-height: 1000px;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.errors {
  color: #D43838;
  font-style: italic;
  padding: 10px 0;
}

.errors.notop {
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  .menu_top .btn_icon {
    margin: 0 5px;
  }
}

.fixed_add_inv {
  position: fixed;
  padding: 10px;
  bottom: 0;
  right: 0;
  z-index: 9999;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transform: translateX(300px);
  transform: translateX(300px);
}

.fixed_add_inv .btn_icon .round {
  -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);
}

.fixed_add_inv.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.take_photo {
  text-align: center;
  padding-top: 20px;
}

.take_photo h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.take_photo .btn_icon {
  margin: 0 auto;
}

.take_photo .btn_icon .round {
  width: 40px;
  height: 40px;
}

.msg_wrap {
  margin-bottom: 15px;
}

.msg_wrap .msg_box {
  background-color: #fff;
  border: 1px solid #E9E9E9;
  width: 100%;
  letter-spacing: 0.035em;
  padding: 11px;
  color: #212121;
  font-weight: 500;
  border-radius: 3px;
}

.msg_wrap .msg_box.textarea {
  font-weight: 300;
}

.attachments {
  width: calc(100% + 10px);
  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;
  margin-left: -5px;
  padding-top: 10px;
}

.attachments .single_atach {
  width: 50px;
  margin: 5px;
}

.attachments .atach_btn {
  position: relative;
  width: 100%;
  height: 50px;
  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;
  background-color: #fff;
  border: 1px solid #E9E9E9;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  color: #06234B;
  font-size: 22px;
  border-radius: 50%;
}

@media screen and (min-width: 1025px) {
  .attachments .atach_btn:hover {
    background-color: #06234B;
    border: 1px solid #06234B;
  }
  .attachments .atach_btn:hover .fa {
    color: #fff;
  }
  .attachments .atach_btn:hover .tolltip_wrap {
    opacity: 1;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

.attachments .fa {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  display: block;
  color: #06234B;
}

.attachments .tolltip_wrap {
  position: absolute;
  left: 90%;
  top: 50%;
  -webkit-transform: translate(-10%, -50%);
  transform: translate(-10%, -50%);
  opacity: 0;
  pointer-events: none;
  background-color: #fff;
  color: #06234B;
  border-radius: 12px;
  font-size: 12px;
  padding: 10px 15px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  display: block;
  white-space: nowrap;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 10;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 1024px) {
  .attachments {
    width: 100%;
    margin-left: 0;
  }
  .attachments .single_atach {
    width: 100%;
    margin: 0 0 7px;
  }
  .attachments .atach_btn {
    border: none;
    border-radius: 0;
    -webkit-box-pack: start;
    box-pack: start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: start;
    height: auto;
    font-size: 13px;
  }
  .attachments .fa {
    font-size: 13px;
    border-radius: 50%;
    padding: 5px;
    border: 1px solid #E9E9E9;
    width: 23px;
    height: 23px;
  }
  .attachments .atach_txt {
    width: calc(100% - 23px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-left: 10px;
  }
}

.single_atachment {
  position: relative;
  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-bottom: 7px;
  padding-left: 20px;
}

.single_atachment::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 2px;
  background-color: #06234B;
}

.single_atachment span {
  position: relative;
  max-width: calc(100% - 24px);
  padding-right: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-top: 4px;
  font-size: 13px;
}

.page_404_wrap {
  padding: 0;
}

.page_404 {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 70px 0;
}

.page_404 .bcg_wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position-y: 225px;
  width: 100%;
  height: 100%;
}

.page_404 .container {
  position: relative;
  z-index: 1;
}

.page_404 .title_40 {
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  .page_404 {
    min-height: calc(100vh - 70px);
  }
  .page_404 .bcg_wrap {
    background-position-x: right;
  }
}

.list_of_file {
  padding: 10px 0;
  margin: 0;
  list-style: none;
}

.list_of_file li {
  position: relative;
  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 0 0 15px;
  margin-bottom: 5px;
  font-size: 12px;
}

.list_of_file li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 2px;
  background-color: #06234B;
  margin-top: -1px;
}

.list_of_file li span {
  width: calc(100% - 40px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 10px;
}

.list_of_file li button {
  padding: 0;
}

.tooltip_wrap {
  position: relative;
}

.tooltip_wrap::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 35px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.tooltip_wrap .tooltip_btn {
  position: relative;
  color: #D6A36A;
  width: 27px;
  height: 27px;
  padding-top: 1px;
  border: 1px solid #D6A36A;
  border-radius: 50%;
  cursor: pointer;
  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;
  z-index: 1;
}

.tooltip_wrap .tooltip_msg {
  color: #fff;
  font-size: 12px;
  position: absolute;
  background-color: #D6A36A;
  left: 50%;
  top: calc(100% + 7px);
  -webkit-transform: translateY(20px) translateX(-50%);
  transform: translateY(20px) translateX(-50%);
  width: 300px;
  padding: 20px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.tooltip_wrap .tooltip_msg::after {
  content: " ";
  position: absolute;
  left: 50%;
  bottom: 100%;
  /* To the right of the tooltip */
  margin-left: -7px;
  border-width: 7px;
  border-style: solid;
  border-color: transparent transparent #D6A36A transparent;
}

@media screen and (min-width: 1025px) {
  .tooltip_wrap:hover .tooltip_msg {
    opacity: 1;
    -webkit-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
    pointer-events: auto;
  }
}

.tooltip_wrap.active .tooltip_msg {
  opacity: 1;
  -webkit-transform: translateY(0) translateX(-50%);
  transform: translateY(0) translateX(-50%);
  pointer-events: auto;
}

@media screen and (max-width: 1024px) {
  .tooltip_wrap .tooltip_msg {
    left: inherit;
    right: -4px;
    top: calc(100% + 11px);
    -webkit-transform: translateY(20px) translateX(0);
    transform: translateY(20px) translateX(0);
  }
  .tooltip_wrap .tooltip_msg::after {
    left: inherit;
    right: 10px;
    margin-left: 0;
  }
  .tooltip_wrap.active .tooltip_msg {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }
}

.row.has_tooltip {
  margin-bottom: 14px;
}

.row.has_tooltip .input_wrap {
  width: calc(100% - 37px);
  margin: 0;
}

.row.has_tooltip .tooltip_wrap.w_input {
  margin-bottom: 3px;
}

.row.has_tooltip .tooltip_wrap.w_input_lg {
  margin-bottom: 11px;
}

.row.has_tooltip .checkbox_wrap {
  width: auto;
  margin-bottom: 0;
  padding-right: 10px;
  max-width: calc(100% - 27px);
}

@media screen and (max-width: 767px) {
  .row.has_tooltip {
    -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;
  }
  .row.has_tooltip .tooltip_wrap.w_input_lg {
    margin-bottom: 7px;
  }
  .row.has_tooltip .checkbox_wrap.green_checkbox .name_checkbox {
    font-size: 11px;
  }
  .row.has_tooltip .checkbox_wrap.green_checkbox .name_checkbox::before {
    top: 4px;
  }
  .row.has_tooltip .checkbox_wrap.green_checkbox .name_checkbox::after {
    top: 3px;
  }
}
/*# sourceMappingURL=parts.css.map */