@charset "UTF-8";
/* line 1, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* line 10, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 50px;
}

/* Hide the browser's default checkbox */
/* line 24, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
/* line 32, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox .checkmark {
  position: absolute;
  left: 50%;
  height: 26px;
  width: 26px;
  border-radius: 3px;
  border: 2px solid rgba(47, 72, 88, 0.38);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -6px;
}

/* On mouse-over, add a grey background color */
/* line 46, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox:hover input ~ .checkmark {
  background-color: transparent;
}

/* line 49, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox:hover input:checked ~ .checkmark {
  background-color: transparent;
  border: 2px solid #00674c;
}

/* line 53, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox input:checked ~ .checktxt {
  color: rgba(47, 72, 88, 0.8) !important;
}

/* line 56, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.egency_it .container-checkbox input:checked ~ .checktxt {
  color: #00674c !important;
}

/* When the checkbox is checked, add a blue background */
/* line 60, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox input:checked ~ .checkmark {
  background-color: transparent;
  border: 2px solid #00674c;
}

/* Create the checkmark/indicator (hidden when not checked) */
/* line 65, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox .checkmark:after {
  position: absolute;
}

/* Show the checkmark when checked */
/* line 69, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox input:checked ~ .checkmark:after {
  content: "";
  display: block;
  border: solid #00674c;
  border-width: 0 2px 2px 0;
}

/* Style the checkmark/indicator */
/* line 76, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox .checkmark:after {
  left: 8px;
  top: 3px;
  width: 5px;
  height: 13px;
  border: solid #ccc;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/**BTN TOGGLE*/
/* line 88, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.switch {
  display: block;
}

/* line 91, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.switch {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 85px;
  height: 20px;
  padding: 3px;
  background-color: white;
  border-radius: 18px;
  -webkit-box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  background-image: -webkit-linear-gradient(top, #eee, white 25px);
  background-image: -moz-linear-gradient(top, #eee, white 25px);
  background-image: -o-linear-gradient(top, #eee, white 25px);
  background-image: linear-gradient(to bottom, #eee, white 25px);
}

/* line 108, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* line 114, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 10px;
  text-transform: uppercase;
  background: #606060;
  border-radius: inherit;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  -webkit-transition-property: opacity background;
  -moz-transition-property: opacity background;
  -o-transition-property: opacity background;
  transition-property: opacity background;
}

/* line 132, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.switch-label:before, .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

/* line 141, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #fff;
}

/* line 145, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
}

/* line 151, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.switch-input:checked ~ .switch-label {
  background: #2abd24;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}

/* line 155, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}

/* line 157, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.switch-input:checked ~ .switch-label:after {
  opacity: 1;
}

/* line 160, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.switch-handle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  background-image: -webkit-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -moz-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -o-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(40%, white), to(#f0f0f0));
  background-image: linear-gradient(to bottom, white 40%, #f0f0f0);
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}

/* line 179, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.switch-handle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  background: #f9f9f9;
  border-radius: 6px;
  -webkit-box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
  background-image: -webkit-linear-gradient(top, #eee, white);
  background-image: -moz-linear-gradient(top, #eee, white);
  background-image: -o-linear-gradient(top, #eee, white);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(white));
  background-image: linear-gradient(to bottom, #eee, white);
}

/* line 196, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.switch-input:checked ~ .switch-handle {
  left: 62px;
  -webkit-box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* line 201, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.switch-green > .switch-input:checked ~ .switch-label {
  background: #4fb845;
}

/**MODAL REG***/
/* line 205, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_reg .modal-content {
  background: #e2e2e2;
  border: none;
  border-radius: 20px;
}

/* line 209, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_reg .modal-content .modal-body {
  padding: 35px 40px;
}

@media screen and (max-width: 480px) {
  /* line 212, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .modal_reg .modal-content .modal-body {
    padding: 35px 15px;
  }
}
/* line 215, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_reg h3 {
  font-size: 20px;
  color: rgba(0, 103, 76, 0.87);
  margin-bottom: 45px;
}

@media screen and (max-width: 480px) {
  /* line 220, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .modal_reg h3 {
    display: none;
  }
}
/* line 223, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_reg .lb_frm {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
  display: block;
  margin-bottom: 10px;
}

@media screen and (max-width: 480px) {
  /* line 229, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .modal_reg .lb_frm {
    color: rgba(255, 255, 255, 0.6);
  }
}
@media screen and (max-width: 480px) {
  /* line 233, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .modal_reg .frm_modal_mb {
    background: #8ca837;
    padding: 5px 6px;
    border-radius: 4px;
  }

  /* line 237, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .modal_reg .frm_modal_mb .tlt_model {
    color: #fff;
  }

  /* line 239, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .modal_reg .frm_modal_mb .modal_checkbox:after {
    background: #8ca837;
  }
}
/* line 242, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_reg.modal_rs h3 {
  display: block;
}

@media (min-width: 576px) {
  /* line 246, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .modal-dialog {
    max-width: 412px;
    margin: 1.75rem auto;
  }
}
/**END MODAL REG***/
/* line 251, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.inp_gr {
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.16);
  position: relative;
}

/* line 257, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.inp_gr .inp_txt {
  height: 56px;
  border: none;
  background: none;
  padding: 0 44px 0 20px;
  width: 100%;
  overflow-y: auto;
}

/* line 264, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.inp_gr .inp_txt:focus {
  outline: none;
}

/* line 267, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.inp_name {
  background: url(/assets/ic-agency-420ea82002f88b78997ab2e8becf3255217b279552bb1b9b483b7dfee2dd7cca.png) no-repeat 98% center #fff;
}

/* line 269, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.inp_name .inp_txt::-webkit-input-placeholder {
  color: rgba(47, 72, 88, 0.8);
  font-weight: bold;
}

/* line 272, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.inp_name .inp_txt:-ms-input-placeholder {
  color: rgba(47, 72, 88, 0.8);
  font-weight: bold;
}

/* line 275, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.inp_name .inp_txt::-ms-input-placeholder {
  color: rgba(47, 72, 88, 0.8);
  font-weight: bold;
}

/* line 278, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.inp_name .inp_txt::placeholder {
  color: rgba(47, 72, 88, 0.8);
  font-weight: bold;
}

/* line 282, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.inp_email {
  background: url(/assets/ic-email-513397adf0e7a5a254cabc5ca214e215e22bfaeb311b9316c294b68e558675ba.png) no-repeat 98% center #fff;
}

/* line 285, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_checkbox {
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.16);
  position: relative;
}

/* line 291, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_checkbox:after {
  content: "";
  position: absolute;
  top: 0;
  right: 50px;
  height: 105%;
  width: 5px;
  background: #e2e2e2;
}

/* line 299, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_checkbox .container-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 56px;
  padding: 0 15px;
  width: 100%;
  color: rgba(47, 72, 88, 0.8);
  font-size: 16px;
  margin-bottom: 5px;
}

/* line 312, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_checkbox .container-checkbox .checktxt {
  color: rgba(47, 72, 88, 0.38);
}

/* line 314, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_checkbox .container-checkbox .checkmark {
  left: auto;
  right: 0;
  top: 15px;
}

/* line 319, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.tlt_model {
  color: rgba(47, 72, 88, 0.8);
  font-size: 16px;
  padding-left: 15px;
}

/* line 324, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.custom-control-label::before {
  border: rgba(0, 103, 76, 0.87) solid 2px;
  border-radius: 0 !important;
}

/* line 328, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: rgba(0, 103, 76, 0.87);
  background-color: rgba(0, 103, 76, 0.87);
}

/* line 333, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.frm_gr {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

/* line 338, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.frm_gr .frm_gr_lb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 175px;
  flex: 0 0 175px;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.87);
  margin-bottom: 0;
}

/* line 345, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.frm_gr input {
  border-color: #707070;
  border-radius: 8px;
  height: 48px;
}

/* line 349, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.frm_gr input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
  font-size: 16px;
}

/* line 352, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.frm_gr input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
  font-size: 16px;
}

/* line 355, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.frm_gr input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
  font-size: 16px;
}

/* line 358, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.frm_gr input::placeholder {
  color: rgba(0, 0, 0, 0.38);
  font-size: 16px;
}

/* line 361, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.frm_gr .dropdown {
  width: 100%;
}

/* line 363, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.frm_gr .dropdown .btn_ct_sl {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 480px) {
  /* line 367, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .frm_gr .dropdown .btn_ct_sl {
    font-size: 14px;
  }
}
/* line 369, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.frm_gr .dropdown .dropdown_sl {
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 0;
  height: auto;
  top: 10px !important;
}

@media screen and (max-width: 480px) {
  /* line 377, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .frm_gr .dropdown .dropdown_sl {
    font-size: 14px;
  }
}
@media screen and (max-width: 380px) {
  /* line 380, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .frm_gr .dropdown .dropdown_sl {
    font-size: 11px;
  }
}
/* line 382, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.frm_gr .dropdown .dropdown_sl::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  border-width: 0px 11px 11px;
  border-style: solid;
  border-color: #ffffff transparent;
  display: block;
  width: 0;
}

/* line 392, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.frm_gr .dropdown .dropdown_sl a {
  border-bottom: 1px solid #d7d7d7;
  color: rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* line 396, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.frm_gr .dropdown .dropdown_sl a:last-child {
  border: none;
}

/* line 399, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.box_gr_tlt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 22px;
}

/* line 404, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.box_gr_tlt .box_gr_hd {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.38);
  line-height: 21px;
  margin-bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* line 412, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.box_gr_tlt .box_gr_hd:first-child {
  padding-left: 25px;
}

/* line 414, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.box_gr_tlt .box_gr_hd:nth-child(3), .box_gr_tlt .box_gr_hd:nth-child(4) {
  text-align: center;
}

/* line 417, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.box_gr_item {
  background: #fefefe;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
  padding: 10px 0;
  height: 64px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* line 429, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.box_gr_item .gr_item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
}

/* line 435, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.box_gr_item .gr_item:first-child {
  padding-left: 25px;
}

/* line 437, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.box_gr_item .gr_item:nth-child(3), .box_gr_item .gr_item:nth-child(4) {
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
}

/* line 440, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.box_gr_item .gr_item input {
  border: 1px solid #707070;
  color: rgba(0, 0, 0, 0.87);
  height: 43px;
  width: 87px;
  text-align: center;
}

/* line 447, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.inp_table_gr {
  border: 1px solid #707070;
  color: rgba(0, 0, 0, 0.87);
  height: 44px;
  width: 80px;
  text-align: center;
  background: none;
  display: inline-block;
  line-height: 44px;
}

/* line 456, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.inp_table_gr:disabled {
  background: none;
  border: 1px solid #707070;
  color: rgba(0, 0, 0, 0.87);
}

/*******TABS SCROLL CSS********/
/* line 462, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tabs-fixed-container,
.scrtabs-tab-container {
  height: auto !important;
}

@media screen and (min-width: 991px) {
  /* line 467, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .nav_tabs_ed {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 991px) {
  /* line 475, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .nav_tabs_ed {
    background: #00674c;
  }
}
/* line 478, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_tabs_ed .nav-link {
  font-size: 20px;
  border-radius: 30px;
  height: 48px;
  background: #686868;
  display: block;
  -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: border-radius none;
  -o-transition: border-radius none;
  transition: border-radius none;
  margin: 0 6px;
  -webkit-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
  color: #fff;
}

/* line 500, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_tabs_ed .nav-link span {
  opacity: 1;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  /* line 504, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .nav_tabs_ed .nav-link span {
    opacity: 1;
    color: #fff;
  }
}
@media screen and (max-width: 991px) {
  /* line 508, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .nav_tabs_ed .nav-link {
    width: auto;
    background: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    font-size: 14px;
    text-transform: uppercase;
  }

  /* line 517, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .nav_tabs_ed .nav-link.active {
    -webkit-box-shadow: inset 0 -4px 0 #fff;
    box-shadow: inset 0 -4px 0 #fff;
    border-radius: 0 !important;
  }
}
/* line 522, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_tabs_ed .nav-link.active {
  width: auto;
  border-radius: 24px;
  text-indent: 0;
  background: #00674c;
}

/* line 527, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_tabs_ed .nav-link.active span {
  opacity: 1;
}

/*******END TABS SCROLL CSS********/
/* line 531, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.show_mb {
  display: none !important;
}

@media screen and (max-width: 991px) {
  /* line 534, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .show_mb {
    display: block !important;
  }
}
/* line 537, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.btn_gr_all {
  margin-top: 72px;
}

@media screen and (max-width: 991px) {
  /* line 540, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .btn_gr_all {
    margin-top: 48px;
    padding: 0;
  }
}
/* line 543, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.btn_gr_all .btn_primary,
.btn_gr_all .btn_secondary {
  max-width: 340px;
  width: 100%;
}
@media screen and (min-width: 991px) {
  /* line 548, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .btn_gr_all .btn_primary .btn_gr_all .btn_primary,
  .btn_gr_all .btn_primary .btn_gr_all .btn_secondary,
  .btn_gr_all .btn_secondary .btn_gr_all .btn_primary,
  .btn_gr_all .btn_secondary .btn_gr_all .btn_secondary {
    margin: 0 6px;
  }
}

@media screen and (max-width: 991px) {
  /* line 553, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .btn_gr_all .btn_primary,
  .btn_gr_all .btn_secondary {
    max-width: inherit;
    display: block;
  }
}
/* line 558, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.item_boxshadow {
  border: none;
  background: #fff;
  -webkit-box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.16);
  height: 40px;
  border-radius: 4px;
  padding: 0 12px;
  width: 100%;
}

/* line 568, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.color_xd {
  color: rgba(0, 0, 0, 0.6);
}

/* line 571, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.color_red {
  color: #800e0e !important;
}

/* line 574, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_checkbox {
  margin-bottom: 0;
}

/* line 576, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_checkbox th {
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: normal;
  white-space: nowrap;
  border-bottom: none !important;
}

/* line 582, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_checkbox thead th {
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: normal;
}

/* line 586, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_checkbox tbody > tr {
  background: #fefefe;
}

/* line 588, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_checkbox tbody > tr.selected {
  background: #8ca837;
}

/* line 590, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_checkbox tbody > tr.selected td {
  color: #fff;
}

/* line 592, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_checkbox tbody > tr > td {
  border-top: 4px solid #0d6790;
  height: 64px;
  vertical-align: middle;
  white-space: nowrap;
}

/* line 597, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_checkbox .container-checkbox .checkmark {
  border-radius: 0;
  background: #fff !important;
}

/* line 601, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.tablefixedhead .box-theadtable {
  overflow: hidden;
}

/* line 604, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.tablefixedhead .box-tbodytable {
  max-height: 320px;
  overflow: auto;
  position: relative;
}

/* line 609, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.tlt_gr_lr {
  text-align: center;
  position: relative;
}

/* line 612, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.tlt_gr_lr::before {
  content: "";
  width: 100%;
  left: 0;
  height: 2px;
  background: rgba(0, 103, 76, 0.87);
  position: absolute;
  top: 50%;
  z-index: -1;
}

/* line 621, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.tlt_gr_lr .tlt_gr_txt {
  font-size: 48px;
  color: rgba(0, 103, 76, 0.87);
  margin-bottom: 0;
  background: #d9e8e4;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 32px;
  line-height: normal;
}

/* line 632, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page {
  /** code update **/
}

/* line 634, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .tablefixedhead .box-tbodytable {
  max-height: calc(100vh - 224px);
}

/* line 636, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .tablefixedhead .table-visit-status-fl tr th,
.visit-status-intro-page .tablefixedhead .table-visit-status-fl tr td {
  max-width: 100px;
  min-width: 100px;
  text-align: center;
}

/* line 641, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .tablefixedhead .table-visit-status-fl tr th:nth-child(1),
.visit-status-intro-page .tablefixedhead .table-visit-status-fl tr td:nth-child(1) {
  max-width: 200px;
  min-width: 200px;
}

/* line 645, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .tablefixedhead .table-visit-status-fl tr td:nth-child(1) {
  text-align: left;
}

/* line 647, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .tablefixedhead .table-visit-status-fl tr th span {
  font-size: 24px;
}

/* line 649, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .item-status ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* line 656, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .item-status ul li {
  padding: 0 4px;
}

/* line 658, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .item-status img {
  max-height: 13px;
}

/* line 660, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/* line 666, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .boxtableleft {
  width: 410px;
}

/* line 668, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .boxtableleft .box-theadtable .div-th {
  width: 100%;
}

/* line 670, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .boxtableleft .box-tbodytable01 {
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
  z-index: 1;
}

/* line 675, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .boxtableleft .box-tbodytable01 .div-tbody .div-tr .div-td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 45px;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.87);
  height: 70px !important;
}

@media screen and (max-width: 991px) {
  /* line 687, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .visit-status-intro-page .grouptwotablefixedhead .boxtableleft .box-tbodytable01 .div-tbody .div-tr .div-td {
    height: 42px !important;
    font-size: 12px;
    padding-left: 15px;
  }
}
/* line 691, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .boxtablescroll {
  min-width: 100px;
  width: 100%;
}

/* line 694, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .boxtablescroll .box-theadtable {
  overflow: hidden;
}

/* line 696, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .boxtablescroll .box-theadtable .div-tr .div-th:first-of-type {
  border-left: none;
}

/* line 698, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .boxtablescroll .box-theadtable .div-tr .div-th span {
  display: block;
}

/* line 700, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .boxtablescroll .box-tbodytable {
  overflow-x: auto;
  overflow-y: scroll;
  position: relative;
  z-index: 2;
}

/* line 705, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .boxtablescroll .box-tbodytable .div-tr .div-td {
  min-width: 160px;
}

/* line 707, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .boxtablescroll .box-tbodytable .div-tr .div-td:first-of-type {
  border-left: none;
}

/* line 709, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .table-box-Schedule .div-thead .div-tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 70px !important;
}

@media screen and (max-width: 991px) {
  /* line 717, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .visit-status-intro-page .grouptwotablefixedhead .table-box-Schedule .div-thead .div-tr {
    height: 42px !important;
  }
}
/* line 719, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .table-box-Schedule .div-thead .div-tr .div-th {
  background: transparent;
  color: rgba(0, 0, 0, 0.38);
  padding: 5px 3px;
  min-width: 160px;
  text-align: center;
  font-weight: normal;
  vertical-align: middle;
  word-break: break-all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 22px;
}

@media screen and (max-width: 991px) {
  /* line 739, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .visit-status-intro-page .grouptwotablefixedhead .table-box-Schedule .div-thead .div-tr .div-th {
    font-size: 14px;
    min-width: 110px;
    padding-left: 12px;
  }
}
/* line 743, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .table-box-Schedule .div-tbody .div-tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 70px !important;
}

@media screen and (max-width: 991px) {
  /* line 751, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .visit-status-intro-page .grouptwotablefixedhead .table-box-Schedule .div-tbody .div-tr {
    height: 42px !important;
  }
}
/* line 753, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .table-box-Schedule .div-tbody .div-tr:nth-child(2n + 1) .div-td {
  background: #fff;
}

/* line 755, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .table-box-Schedule .div-tbody .div-tr:nth-child(2n) .div-td {
  background: #f9f9f9;
}

@media screen and (max-width: 991px) {
  /* line 758, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .visit-status-intro-page .grouptwotablefixedhead .table-box-Schedule .div-tbody .div-tr:nth-child(2n) .div-td {
    background: #fff;
  }
}
/* line 760, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.visit-status-intro-page .grouptwotablefixedhead .table-box-Schedule .div-tbody .div-tr .div-td {
  min-width: 160px;
  width: 100%;
  border-top: 15px solid #f5f5f5;
  padding: 5px 3px;
}

@media screen and (max-width: 991px) {
  /* line 766, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .visit-status-intro-page .grouptwotablefixedhead .table-box-Schedule .div-tbody .div-tr .div-td {
    border-top-width: 5px;
    min-width: 110px;
    padding-left: 12px;
  }
}
/* line 771, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.box-intro {
  text-align: center;
}

/* line 774, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.txt_value {
  font-size: 19px;
  color: rgba(0, 0, 0, 0.38);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* line 785, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.label_table {
  min-width: 80px;
  min-height: 40px;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.87);
  text-align: center;
  line-height: 40px;
}

/* line 795, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.label_table.lb_blue {
  background: rgba(0, 103, 76, 0.87);
}

/* line 797, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.label_table.lb_red {
  background: rgba(128, 14, 14, 0.87);
}

/* line 800, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.border_t_n {
  border-top: none !important;
}

/* line 803, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_cal .nav-item:nth-child(1) .nav-link {
  bottom: 20%;
  right: 51%;
}

/* line 807, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_cal .nav-item:nth-child(2) .nav-link {
  bottom: 26%;
  right: 13%;
}

/* line 811, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_cal .nav-item:nth-child(3) .nav-link {
  top: 31%;
  right: 13%;
}

/* line 815, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_cal .nav-item:nth-child(4) .nav-link {
  bottom: 20%;
  left: 12.5%;
}

/* line 819, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_cal .nav-item:nth-child(5) .nav-link {
  top: 40%;
  left: 16%;
}

/* line 823, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_cal .nav-item:nth-child(6) .nav-link {
  bottom: 11%;
  right: 13%;
}

/* line 827, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_cal .nav-item:nth-child(7) .nav-link {
  top: 20%;
  right: 13%;
}

/* line 831, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_cal .nav-item:nth-child(8) .nav-link {
  bottom: 20%;
  left: 33%;
}

/* line 835, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-item:nth-child(1) .nav-link {
  bottom: 5%;
  left: 14%;
}

/* line 839, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-item:nth-child(2) .nav-link {
  bottom: 5%;
  right: 55%;
}

/* line 843, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-item:nth-child(3) .nav-link {
  bottom: 5%;
  right: 20%;
}

/* line 847, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-item:nth-child(4) .nav-link {
  bottom: 20%;
  right: 4%;
}

/* line 851, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-item:nth-child(5) .nav-link {
  top: 52%;
  left: 2%;
}

/* line 855, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-item:nth-child(6) .nav-link {
  top: 46%;
  left: 19.5%;
}

/* line 859, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-item:nth-child(7) .nav-link {
  top: 51%;
  left: 28%;
}

/* line 863, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-item:nth-child(8) .nav-link {
  top: 51%;
  left: 39%;
}

/* line 867, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-item:nth-child(9) .nav-link {
  top: 51%;
  right: 35.6%;
}

/* line 871, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-item:nth-child(10) .nav-link {
  top: 52%;
  right: 24%;
}

/* line 875, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-item:nth-child(11) .nav-link {
  top: 35%;
  left: 5%;
}

/* line 879, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-item:nth-child(12) .nav-link {
  top: 22%;
  left: 20%;
}

/* line 883, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-item:nth-child(13) .nav-link {
  top: 24%;
  left: 37%;
}

/* line 887, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-item:nth-child(14) .nav-link {
  top: -3%;
  left: 20%;
}

/* line 891, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-item:nth-child(15) .nav-link {
  top: 13%;
  left: 49.5%;
}

/* line 895, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_mix .nav-item:nth-child(1) .nav-link {
  bottom: 33%;
  left: 28%;
}

/* line 899, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_mix .nav-item:nth-child(2) .nav-link {
  bottom: 33%;
  left: 3%;
}

/* line 903, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_mix .nav-item:nth-child(3) .nav-link {
  bottom: 33%;
  right: 38%;
}

/* line 907, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_mix .nav-item:nth-child(4) .nav-link {
  top: 41%;
  left: 33%;
}

/* line 911, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_mix .nav-item:nth-child(5) .nav-link {
  bottom: 47%;
  left: 2%;
}

/* line 915, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_mix .nav-item:nth-child(6) .nav-link {
  top: 25%;
  right: 8%;
}

/* line 919, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_mix .nav-item:nth-child(7) .nav-link {
  top: 26%;
  right: 42.5%;
}

/* line 923, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_mix .nav-item:nth-child(8) .nav-link {
  top: 27%;
  left: 20%;
}

/* line 927, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_mix .nav-item:nth-child(9) .nav-link {
  top: 23%;
  left: 32%;
}

/* line 931, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_mix .nav-item:nth-child(10) .nav-link {
  bottom: 38%;
  left: 41%;
}

/* line 935, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1 .nav-item:nth-child(1) .nav-link {
  bottom: 16%;
  left: 29%;
}

/* line 939, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1 .nav-item:nth-child(2) .nav-link {
  bottom: 13.5%;
  right: 35%;
}

/* line 943, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1 .nav-item:nth-child(3) .nav-link {
  top: 53%;
  left: 34%;
}

/* line 947, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1 .nav-item:nth-child(4) .nav-link {
  top: 53%;
  left: 20%;
}

/* line 951, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1 .nav-item:nth-child(5) .nav-link {
  bottom: 38%;
  right: 24.8%;
}

/* line 955, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1 .nav-item:nth-child(6) .nav-link {
  bottom: 38%;
  right: 38.8%;
}

/* line 959, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1 .nav-item:nth-child(7) .nav-link {
  top: 32%;
  right: 41.5%;
}

/* line 963, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1 .nav-item:nth-child(8) .nav-link {
  top: 32%;
  left: 23%;
}

/* line 967, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1 .nav-item:nth-child(9) .nav-link {
  top: 46%;
  left: 41%;
}

/* line 971, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1 .nav-item:nth-child(10) .nav-link {
  top: 28%;
  left: 32%;
}

/* line 975, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1 .nav-item:nth-child(11) .nav-link {
  bottom: 12%;
  left: 38%;
}

/* line 979, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1 .nav-item:nth-child(12) .nav-link {
  bottom: 27%;
  right: 35%;
}

/* line 983, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1_mix .nav-item:nth-child(1) .nav-link {
  bottom: 32%;
  left: 27%;
}

/* line 987, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1_mix .nav-item:nth-child(2) .nav-link {
  bottom: 30.5%;
  left: 1%;
}

/* line 991, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1_mix .nav-item:nth-child(3) .nav-link {
  top: 65%;
  right: 39%;
}

/* line 995, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1_mix .nav-item:nth-child(4) .nav-link {
  top: 44%;
  left: 32%;
}

/* line 999, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1_mix .nav-item:nth-child(5) .nav-link {
  top: 43%;
  left: 17.8%;
}

/* line 1003, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1_mix .nav-item:nth-child(6) .nav-link {
  bottom: 45%;
  left: 1%;
}

/* line 1007, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1_mix .nav-item:nth-child(7) .nav-link {
  top: 44%;
  right: 25.5%;
}

/* line 1011, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1_mix .nav-item:nth-child(8) .nav-link {
  top: 44%;
  left: 55%;
}

/* line 1015, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1_mix .nav-item:nth-child(9) .nav-link {
  top: 26%;
  left: 54%;
}

/* line 1019, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1_mix .nav-item:nth-child(10) .nav-link {
  top: 26%;
  left: 20%;
}

/* line 1023, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1_mix .nav-item:nth-child(11) .nav-link {
  bottom: 40%;
  right: 38%;
}

/* line 1027, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1_mix .nav-item:nth-child(12) .nav-link {
  top: 38%;
  left: 39%;
}

/* line 1031, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1_mix .nav-item:nth-child(13) .nav-link {
  top: 23%;
  left: 30%;
}

/* line 1035, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb1_mix .nav-item:nth-child(14) .nav-link {
  bottom: 28%;
  left: 36%;
}

/* line 1039, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(1) .nav-link {
  bottom: 29%;
  left: 28%;
}

/* line 1043, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(2) .nav-link {
  bottom: 10%;
  left: 0.2%;
}

/* line 1047, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(3) .nav-link {
  bottom: 28%;
  right: 36.5%;
}

/* line 1051, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(4) .nav-link {
  top: 41%;
  left: 35%;
}

/* line 1055, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(5) .nav-link {
  top: 47%;
  left: 15%;
}

/* line 1059, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(6) .nav-link {
  bottom: 45%;
  right: 25.8%;
}

/* line 1063, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(7) .nav-link {
  top: 43%;
  right: 40.5%;
}

/* line 1067, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(8) .nav-link {
  top: 20%;
  left: 56%;
}

/* line 1071, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(9) .nav-link {
  top: 23%;
  left: 20%;
}

/* line 1075, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(10) .nav-link {
  top: 37%;
  left: 57%;
}

/* line 1079, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(11) .nav-link {
  top: 33%;
  left: 23%;
}

/* line 1083, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(12) .nav-link {
  top: 37%;
  left: 39%;
}

/* line 1087, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(13) .nav-link {
  top: 21%;
  left: 29%;
}

/* line 1091, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(14) .nav-link {
  bottom: 26%;
  left: 36%;
}

/* line 1095, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(15) .nav-link {
  top: 53%;
  right: 36%;
}

/* line 1099, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_recusorb2 .nav-item:nth-child(16) .nav-link {
  bottom: 50%;
  left: 0.2%;
}

/* line 1103, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_1_3 .nav-item:nth-child(1) .nav-link {
  bottom: 12%;
  left: 28%;
}

/* line 1107, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_1_3 .nav-item:nth-child(2) .nav-link {
  bottom: 9%;
  right: 37%;
}

/* line 1111, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_1_3 .nav-item:nth-child(3) .nav-link {
  top: 34%;
  right: 8%;
}

/* line 1115, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_1_3 .nav-item:nth-child(4) .nav-link {
  top: 36%;
  left: 55%;
}

/* line 1119, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_1_3 .nav-item:nth-child(5) .nav-link {
  top: 35%;
  left: 22%;
}

/* line 1123, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_1_3 .nav-item:nth-child(6) .nav-link {
  top: 32%;
  left: 31.5%;
}

/* line 1127, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_consorb_1_3 .nav-item:nth-child(7) .nav-link {
  bottom: 11%;
  left: 37%;
}

/*CSS Navbar offcanvas*/
@-webkit-keyframes topbar-x {
  0% {
    top: 0px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  45% {
    top: 6px;
    -webkit-transform: rotate(145deg);
    transform: rotate(145deg);
  }
  75% {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  100% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
@keyframes topbar-x {
  0% {
    top: 0px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  45% {
    top: 6px;
    -webkit-transform: rotate(145deg);
    transform: rotate(145deg);
  }
  75% {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  100% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
@-webkit-keyframes topbar-back {
  0% {
    top: 6px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  45% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  75% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  100% {
    top: 0px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes topbar-back {
  0% {
    top: 6px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  45% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  75% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  100% {
    top: 0px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes bottombar-x {
  0% {
    bottom: 0px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  45% {
    bottom: 6px;
    -webkit-transform: rotate(-145deg);
    transform: rotate(-145deg);
  }
  75% {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  100% {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}
@keyframes bottombar-x {
  0% {
    bottom: 0px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  45% {
    bottom: 6px;
    -webkit-transform: rotate(-145deg);
    transform: rotate(-145deg);
  }
  75% {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  100% {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}
@-webkit-keyframes bottombar-back {
  0% {
    bottom: 6px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  45% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  75% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    bottom: 0px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes bottombar-back {
  0% {
    bottom: 6px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  45% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  75% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    bottom: 0px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
/* line 1259, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.navbar-offcanvas .navbar-toggler .icon-bar {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
}

/* line 1267, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.navbar-icon {
  border: none;
}

/* line 1269, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.navbar-icon:focus {
  outline: none;
}

/* line 1272, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.navbar-offcanvas .navbar-toggler .icon-bar + .icon-bar {
  margin-top: 4px;
}

/* line 1275, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.navbar-offcanvas .navbar-toggler .icon-bar.bar1 {
  top: 0;
  outline: 1px solid transparent;
  -webkit-animation: topbar-back 500ms 0s;
  animation: topbar-back 500ms 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/* line 1283, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.navbar-offcanvas .navbar-toggler .icon-bar.bar2 {
  outline: 1px solid transparent;
  opacity: 1;
}

/* line 1287, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.navbar-offcanvas .navbar-toggler .icon-bar.bar3 {
  bottom: 0;
  outline: 1px solid transparent;
  -webkit-animation: bottombar-back 500ms 0s;
  animation: bottombar-back 500ms 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/* line 1295, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.navbar-offcanvas .navbar-toggler.toggled .icon-bar.bar1 {
  top: 6px;
  -webkit-animation: topbar-x 500ms 0s;
  animation: topbar-x 500ms 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/* line 1302, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.navbar-offcanvas .navbar-toggler.toggled .icon-bar.bar2 {
  opacity: 0;
}

/* line 1305, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.navbar-offcanvas .navbar-toggler.toggled .icon-bar.bar3 {
  bottom: 6px;
  -webkit-animation: bottombar-x 500ms 0s;
  animation: bottombar-x 500ms 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 991px) {
  /* line 1313, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .navbar-offcanvas .navbar-collapse.collapse,
  .navbar-offcanvas .navbar-collapse.collapse.in,
  .navbar-offcanvas .navbar-collapse.collapsing {
    display: none !important;
  }
}
/* line 1318, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav-open .navbar-collapse {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

/* line 1322, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav-open .navbar > .container-fluid {
  -webkit-transform: translate3d(-424px, 0, 0);
  transform: translate3d(-424px, 0, 0);
}

/* line 1326, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#overlay {
  position: fixed;
  top: 0;
  left: auto;
  right: 290px;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow-x: hidden;
  z-index: 1029;
}

@media (min-width: 992px) {
  /* line 1338, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #overlay {
    right: calc(424px - 10px);
  }
}
/* line 1341, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#wrapper {
  -webkit-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
  -o-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
  transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
}

@media screen and (max-width: 991px) {
  /* line 1347, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .navbar_rps {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    padding: 4% 15px;
    background: url(/assets/bg_login_mb-5780d26a306aa417bd3fa6f1ee4b2a7c850e93601807f7443f43c0d069054823.svg) no-repeat;
    background-size: cover;
    visibility: visible;
    overflow-y: visible;
    -webkit-transform: translate3d(424px, 0, 0);
    transform: translate3d(424px, 0, 0);
    -webkit-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
    -o-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
    transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
    z-index: 1032;
  }

  /* line 1365, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .navbar_rps > .navbar-nav {
    width: 100%;
    height: 100vh;
    padding-top: 150px;
  }
}
/* line 1370, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.navbar_rps .nav_logout_mb {
  display: none !important;
}

@media screen and (max-width: 991px) {
  /* line 1373, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .navbar_rps .nav_logout_mb {
    display: block !important;
  }
}
/* line 1376, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav-open #wrapper {
  -webkit-transform: translate3d(-290px, 0, 0);
  transform: translate3d(-290px, 0, 0);
}

/* line 1380, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav-open .navbar-collapse {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

/* line 1384, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav-open .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.38);
  font-size: 20px;
  text-transform: uppercase;
}

/* line 1389, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav-open .navbar-nav .active .nav-link {
  color: rgba(255, 255, 255, 0.87);
  font-weight: bold;
  text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.87);
}

/*End CSS Navbar offcanvas*/
@media screen and (min-width: 991px) {
  /* line 1396, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .img_mobile_pu {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  /* line 1400, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .img_dekstop_pu {
    display: none !important;
  }
}
/* line 1403, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_cal .modal-dialog {
  max-width: 1140px !important;
}

@media screen and (max-width: 991px) {
  /* line 1407, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .nav_scrollpy_all {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
  }

  /* line 1414, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .nav_scrollpy_all .nav-item {
    background: #017453;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-radius: 10px;
    margin: 2px 2px;
    -webkit-box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.16);
  }

  /* line 1422, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .nav_scrollpy_all .nav-item a {
    color: #fff !important;
    text-align: center;
  }
}
@media screen and (max-width: 380px) {
  /* line 1427, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .nav_scrollpy_all .nav-item {
    border-radius: 4px;
  }

  /* line 1429, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .nav_scrollpy_all .nav-item .nav-link {
    width: 24px;
    height: 24px;
    border-radius: 0;
    padding: 0;
  }
}
/* line 1435, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bg_cl_a {
  background: #90EE90 !important;
}

/* line 1438, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bg_cl_ap {
  background: #99ff32 !important;
}

/* line 1441, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bg_cl_b {
  background: #dbdb00 !important;
}

/* line 1444, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bg_cl_cp {
  background: #669900 !important;
}

/* line 1447, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bg_cl_cp1 {
  background: #90ee90 !important;
}

/* line 1450, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bg_cl_d {
  background: #FFA07A !important;
}

/* line 1453, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bg_cl_d {
  background: #FFA07A !important;
}

/* line 1456, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bg_cl_e {
  background: #febf02 !important;
}

/* line 1459, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bg_cl_f {
  background: #FFA07A !important;
}

/* line 1462, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bg_cl_g {
  background: #ADD8E6 !important;
}

/* line 1465, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bg_cl_s {
  background: #99C0CC !important;
}

/* line 1468, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bg_none {
  background: none !important;
}

/* line 1471, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bg_cl_h {
  background: #FF6347 !important;
}

/* line 1474, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bg_cl_air {
  background: #A6D179 !important;
}

@media screen and (max-width: 991px) {
  /* line 1478, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .cal_btnmb {
    background: #00674c;
    text-align: center;
    margin-bottom: 0;
    line-height: normal;
    position: relative;
    font-weight: normal;
  }

  /* line 1485, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .cal_btnmb::before {
    content: "\f104";
    font: normal normal normal 14px/1 FontAwesome;
    right: 26px;
    position: absolute;
    top: 14px;
    color: #fff;
    font-size: 20px;
    -webkit-transition: all 350ms;
    -o-transition: all 350ms;
    transition: all 350ms;
  }

  /* line 1496, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .cal_btnmb a {
    color: #fff;
    font-size: 14px;
    line-height: 45px;
    display: block;
  }
}
/* line 1502, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.active_acr .cal_btnmb::before {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/* line 1507, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it .abg_item.bg_none {
  margin: 10px 0 !important;
}

/* line 1509, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it .abg_item.bg_none .abg_tlt {
  margin-bottom: 10px;
}

/* line 1512, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_item_sm {
  border-radius: 12px;
  padding: 10px 10px;
  margin-top: 10px;
}

@media screen and (max-width: 480px) {
  /* line 1517, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .abg_item_sm {
    padding: 5px;
    border-radius: 4px;
  }
}
/* line 1521, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.mt-27 {
  margin-top: 27px;
}

/* line 1524, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.fs-18 {
  font-size: 18px;
}

/* line 1527, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.glyphicon {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 1535, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.glyphicon.glyphicon-chevron-left:after {
  content: "\f053";
}

/* line 1538, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.glyphicon.glyphicon-chevron-right:after {
  content: "\f054";
}

/* line 1541, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.gr_popup_mb {
  position: fixed;
  right: 2%;
  bottom: 5%;
  z-index: 10;
  padding: 6px 10px !important;
}

/* line 1548, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_tabs_nv .card {
  border: none;
  border-radius: 0;
  margin-top: 8px;
}

/* line 1552, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_tabs_nv .card .card-header {
  padding: 0;
  background: #00674c;
  text-align: center;
  margin-bottom: 0;
  line-height: normal;
  position: relative;
  font-weight: normal;
  border-radius: 0;
}

/* line 1561, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_tabs_nv .card .card-header a {
  display: block;
  color: #fff;
  font-size: 14px;
  padding: 13px 8px;
  position: relative;
}

/* line 1567, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_tabs_nv .card .card-header a::after {
  content: "\f104";
  font: normal normal normal 14px/1 FontAwesome;
  right: 26px;
  position: absolute;
  top: 14px;
  color: #fff;
  font-size: 20px;
  -webkit-transition: all 350ms;
  -o-transition: all 350ms;
  transition: all 350ms;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/* line 1581, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_tabs_nv .card .card-header a.collapsed::after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* line 1585, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_tabs_nv .card .card-body {
  padding: 12px 0;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

@media screen and (min-width: 991px) {
  /* line 1592, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_tabs_nv .nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* line 1596, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_tabs_nv .card {
    border: none;
  }

  /* line 1598, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_tabs_nv .card .card-header {
    display: none;
  }

  /* line 1600, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_tabs_nv .card .collapse {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  /* line 1604, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_tabs_nv .tab-content > .tab-pane {
    display: block !important;
    opacity: 1;
  }
}
/* line 1608, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.tab-content-ed .card {
  background: none;
}

@media screen and (max-width: 991px) {
  /* line 1612, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_tabs_ct .container {
    max-width: inherit;
  }
}
/* line 1615, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.color_green {
  color: #00674c !important;
}

/* line 1618, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: normal;
}

@media (min-width: 1200px) {
  /* line 1624, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .container {
    max-width: 1170px;
    padding: 0;
  }
}
/* line 1628, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
img {
  max-width: 100%;
}

/* line 1631, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
a {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

/* line 1635, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
a:hover {
  text-decoration: none;
}

/* line 1638, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
input :focus,
button :focus {
  outline: none;
}

/* line 1642, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.btn_primary {
  display: inline-block;
  color: rgba(255, 255, 255, 0.87);
  font-size: 14px;
  background: #0d6790;
  padding: 15px 25px;
  -webkit-box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.38);
  box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.38);
  border-radius: 4px;
  border: none;
}

/* line 1652, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.btn_primary:hover {
  color: #fff;
}

@media screen and (max-width: 991px) {
  /* line 1655, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .btn_primary {
    padding: 6px 25px;
    margin: 0 0 5px 0;
  }
}
/* line 1659, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.btn_secondary {
  display: inline-block;
  color: rgba(255, 255, 255, 0.87);
  font-size: 14px;
  background: #6e7571;
  padding: 15px 25px;
  -webkit-box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.38);
  box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.38);
  border-radius: 4px;
  border: none;
}

/* line 1669, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.btn_secondary:hover {
  color: #fff;
}

@media screen and (max-width: 991px) {
  /* line 1672, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .btn_secondary {
    padding: 6px 25px;
    margin: 0 0 5px 0;
  }
}
/* line 1676, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_btn {
  padding: 0 22px;
  margin-top: 45px;
}

/* line 1679, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_btn .btn_primary {
  padding: 12px 25px;
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

/* line 1684, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_btn .btn_primary.btn_wt {
  background: #707070;
}

/* line 1687, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.box_gr {
  background: #f5f5f5;
  padding: 30px 15px;
  border-radius: 10px;
}

/******CSS MAIN*******/
/* line 1693, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main {
  background: rgba(0, 103, 76, 0.15);
  min-height: 100vh;
  padding-bottom: 50px;
}

@media screen and (max-width: 480px) {
  /* line 1698, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main {
    padding-bottom: 20px;
  }

  /* line 1700, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main > .container {
    padding: 0;
  }
}
/* line 1703, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_search {
  padding-top: 40px;
}

@media screen and (max-width: 991px) {
  /* line 1706, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_search {
    padding-top: 15px;
  }
}
/* line 1708, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_search .search_w {
  background: #fff;
  border-radius: 35px;
  max-width: 1010px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
  border: 1px solid #707070;
}

@media screen and (max-width: 991px) {
  /* line 1718, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_search .search_w {
    border-radius: 4px;
    padding: 0 20px;
  }
}
/* line 1721, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_search .search_w input {
  width: 100%;
  border: none;
  background: none;
  height: 64px;
  font-size: 20px;
  font-weight: bold;
  color: #00674c;
}

@media screen and (max-width: 991px) {
  /* line 1730, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_search .search_w input {
    font-size: 14px;
    height: 56px;
    font-weight: normal;
  }
}
/* line 1734, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_search .search_w input:focus {
  outline: none;
  color: #00674c;
}

/* line 1737, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_search .search_w input::-webkit-input-placeholder {
  color: rgba(0, 103, 76, 0.38);
}

/* line 1739, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_search .search_w input:-ms-input-placeholder {
  color: rgba(0, 103, 76, 0.38);
}

/* line 1741, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_search .search_w input::-ms-input-placeholder {
  color: rgba(0, 103, 76, 0.38);
}

/* line 1743, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_search .search_w input::placeholder {
  color: rgba(0, 103, 76, 0.38);
}

/* line 1745, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_search .search_w:focus input {
  color: #00674c !important;
}

/* line 1747, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_search .search_w .search_btn {
  position: absolute;
  border: none;
  background: #fff;
  font-size: 35px;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0 20px;
  border-radius: 0 35px 35px 0;
}

@media screen and (max-width: 991px) {
  /* line 1758, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_search .search_w .search_btn {
    font-size: 24px;
  }
}
/* line 1760, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_search .search_w .search_btn i {
  color: rgba(0, 103, 76, 0.38);
}

/* line 1762, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_search .search_w .search_btn:focus {
  outline: none;
}

/* line 1765, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency {
  margin-top: 52px;
}

@media screen and (max-width: 991px) {
  /* line 1768, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency {
    margin-top: 15px;
  }
}
/* line 1770, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_box {
  background: #f4f4f4;
  padding: 30px 15px;
  border-radius: 10px;
}

@media screen and (max-width: 991px) {
  /* line 1775, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box {
    background: none;
    padding: 0;
  }
}
/* line 1778, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_box .egency_tlt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* line 1786, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_box .egency_tlt .egency_tlt_hd {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.3);
  line-height: 21px;
  margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
  /* line 1792, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_tlt .egency_tlt_hd {
    font-size: 9px;
    color: rgba(0, 0, 0, 0.8);
  }
}
/* line 1795, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_box .egency_tlt .egency_tlt_hd:not(:first-child):not(:last-child) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

@media screen and (max-width: 991px) {
  /* line 1801, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_tlt .egency_tlt_hd:not(:first-child):not(:last-child) {
    display: none;
  }
}
/* line 1803, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_box .egency_tlt .egency_tlt_hd:first-child {
  max-width: 52px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 991px) {
  /* line 1808, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_tlt .egency_tlt_hd:first-child {
    max-width: 50px;
  }
}
/* line 1810, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_box .egency_tlt .egency_tlt_hd:nth-child(2) {
  text-align: left !important;
}

@media screen and (min-width: 991px) {
  /* line 1813, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_tlt .egency_tlt_hd:nth-child(2) {
    max-width: 167px;
    min-width: 167px;
  }
}
/* line 1816, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_box .egency_tlt .egency_tlt_hd:nth-child(6) {
  max-width: 97px !important;
}

@media screen and (max-width: 991px) {
  /* line 1819, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_tlt {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
/* line 1823, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_box .egency_it {
  background: #fefefe;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
  padding: 10px 0;
}

@media screen and (max-width: 991px) {
  /* line 1832, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it {
    display: block;
    padding: 0;
    background: none;
  }

  /* line 1836, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it.active_acr .egency_acc:after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  /* line 1840, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it.active_acr .egency_acc .egency_acc_txt span {
    display: block !important;
  }
}
/* line 1842, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_box .egency_it .egency_acc {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 219px;
  flex: 0 0 219px;
  padding-left: 52px;
  position: relative;
}

@media screen and (min-width: 991px) {
  /* line 1849, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_acc {
    max-width: 219px;
  }
}
@media screen and (max-width: 991px) {
  /* line 1852, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_acc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #00674c;
    height: 51px;
    padding: 5px 10px 5px 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
  }

  /* line 1868, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it.active_acr .egency_acc {
    height: auto;
  }

  /* line 1871, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_acc:after {
    content: "\f104";
    position: absolute;
    right: 10px;
    font: normal normal normal 18px/1 FontAwesome;
    color: rgba(255, 255, 255, 0.38);
    -webkit-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
  }
}
/* line 1880, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_box .egency_it .egency_acc .egency_acc_check {
  position: absolute;
  left: 0px !important;
  top: 50% !important;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 991px) {
  /* line 1888, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_acc .egency_acc_check {
    left: 3px;
    top: 15px;
  }

  /* line 1891, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_acc .egency_acc_check .container-checkbox .checkmark {
    border-color: #fff;
  }

  /* line 1893, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_acc .egency_acc_check .container-checkbox input:checked ~ .checkmark:after {
    border-color: #fff;
  }
}
/* line 1895, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_box .egency_it .egency_acc .egency_acc_hd {
  font-size: 16px;
  color: #000000;
  margin-bottom: 6px;
  word-break: break-all;
}

@media screen and (max-width: 991px) {
  /* line 1901, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_acc .egency_acc_hd {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.87);
    padding-right: 15px;
  }
}
@media screen and (min-width: 991px) {
  /* line 1908, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_acc .egency_acc_txt {
    pointer-events: none;
  }
}
/* line 1910, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_box .egency_it .egency_acc .egency_acc_txt span {
  color: rgba(0, 0, 0, 0.38);
  display: block;
  width: 100%;
  word-break: break-all;
}

@media screen and (max-width: 991px) {
  /* line 1916, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_acc .egency_acc_txt span {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
    display: none;
    padding-left: 15px;
    position: relative;
  }

  /* line 1922, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_acc .egency_acc_txt span::before {
    content: "";
    height: 13px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    top: 0;
  }

  /* line 1930, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_acc .egency_acc_txt span::after {
    content: "";
    width: 13px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    top: 13px;
  }
}
/* line 1938, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_box .egency_it .egency_act {
  width: 100%;
  padding-right: 10px;
}

@media screen and (min-width: 991px) {
  /* line 1942, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_act {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 991px) {
  /* line 1953, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_act {
    background: #8ca837;
    width: calc(100% - 26px);
    margin: 0 auto;
    border-radius: 0 0 4px 4px;
    display: none;
    padding: 8px 10px 15px;
  }

  /* line 1960, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_act .container-checkbox {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    padding: 0 22px;
    color: rgba(47, 72, 88, 0.8);
    font-size: 16px;
    margin-bottom: 5px;
    background: #fff;
    border-radius: 4px;
  }

  /* line 1975, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_act .container-checkbox .checktxt {
    color: rgba(47, 72, 88, 0.38);
  }

  /* line 1977, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_act .container-checkbox .checkmark {
    left: auto;
    right: 0;
    top: 7px;
  }
}
/* line 1981, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_box .egency_it .egency_act .agency_act_it {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

@media screen and (min-width: 991px) {
  /* line 1987, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_act .agency_act_it:nth-child(4) {
    max-width: 100px;
  }
}
@media screen and (min-width: 991px) {
  /* line 1990, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_act .agency_act_it:last-child {
    min-width: 190px;
  }
}
@media screen and (max-width: 991px) {
  /* line 1993, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_act .agency_act_it .btn_primary {
    padding: 10px;
    display: block;
    margin-top: 15px !important;
  }

  /* line 1997, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_act .agency_act_it .switch {
    width: 216px;
    height: 28px;
  }

  /* line 2000, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_act .agency_act_it .switch .switch-input:checked ~ .switch-handle {
    left: 103px;
  }

  /* line 2002, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_act .agency_act_it .switch .switch-label {
    height: 22px;
  }

  /* line 2004, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_act .agency_act_it .switch .switch-label::after {
    left: 30px;
  }

  /* line 2006, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_act .agency_act_it .switch .switch-label::before {
    right: 30px;
  }

  /* line 2008, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_act .agency_act_it .switch .switch-handle {
    top: 5px;
    width: 50%;
    opacity: 0.6;
  }
}
/* line 2012, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_box .egency_it .egency_act .agency_act_it .checktxt {
  display: none;
}

@media screen and (max-width: 991px) {
  /* line 2015, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .egency_it .egency_act .agency_act_it .checktxt {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  /* line 2018, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_box .w_pagination {
    display: block;
  }
}
/* line 2020, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_gr_btn {
  margin-top: 48px;
}

@media screen and (max-width: 480px) {
  /* line 2023, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_gr_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/* line 2027, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#main .main_agency .agency_gr_btn .btn_rs {
  min-width: 170px;
  text-align: center;
  margin: 0 8px !important;
}

@media screen and (max-width: 480px) {
  /* line 2032, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .main_agency .agency_gr_btn .btn_rs {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: inherit;
  }
}
@media screen and (min-width: 991px) {
  /* line 2038, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #main .calculation_w .calculation_img_w {
    width: 76%;
    margin: 0 auto;
  }
}
/* line 2042, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_pagination {
  margin-top: 60px;
}

/* line 2044, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_pagination .pagination {
  margin-bottom: 0;
}

/* line 2046, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_pagination .pagination .page-item:not(:first-child):not(:last-child) .page-link {
  background: #707070;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
}

/* line 2051, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_pagination .pagination .page-item:not(:first-child):not(:last-child) .page-link:hover {
  background: #1f7862;
}

/* line 2053, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_pagination .pagination .page-item .page-link {
  margin: 0 5px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  width: 35px;
  height: 35px;
  border: none !important;
}

/* line 2069, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_pagination .pagination .page-item.active .page-link {
  background: #1f7862 !important;
}

/* line 2071, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_pagination .pagination .page_prev .page-link,
.w_pagination .pagination .page_next .page-link {
  border: none;
  font-size: 30px;
}

/* line 2075, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_pagination .pagination .page_prev .page-link:focus:hover,
.w_pagination .pagination .page_next .page-link:focus:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/******END CSS MAIN*******/
/******CSS Calculation*******/
/* line 2082, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_img_w {
  position: relative;
  -webkit-transition: all 350ms;
  -o-transition: all 350ms;
  transition: all 350ms;
}

/* line 2087, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_img_w img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* line 2091, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_img_w .nav .nav-item .nav-link {
  color: rgba(47, 72, 88, 0.87);
  font-size: 30px;
  position: absolute;
}

/* line 2095, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_img_w .nav .nav-item .nav-link:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

@media screen and (max-width: 991px) {
  /* line 2100, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_img_w .nav .nav-item .nav-link {
    position: static !important;
    font-size: 14px;
  }
}
/* line 2104, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w {
  padding-top: 38px;
}

@media screen and (max-width: 991px) {
  /* line 2107, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w {
    padding-top: 0;
  }

  /* line 2109, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w > .btn_gr_all {
    padding: 0 10px;
  }
}
/* line 2111, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_img {
  background: #f1f1f1;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 0;
}

@media screen and (max-width: 991px) {
  /* line 2125, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_img {
    background: none;
  }
}
/* line 2127, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_img > .abg_it {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* line 2131, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_img > .abg_it:nth-child(1) {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/* line 2138, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_img > .abg_it:nth-child(3) {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 991px) {
  /* line 2143, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_img > .abg_it {
    display: none;
  }
}
/* line 2145, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_img > .abg_it .abg_item {
  max-width: 360px;
}

/* line 2147, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_slt {
  margin: 32px auto 0;
}

@media screen and (max-width: 991px) {
  /* line 2150, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_slt {
    margin: 0 auto;
  }
}
/* line 2152, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_slt .cal_date {
  max-width: 722px;
  width: 100%;
  margin: 0 auto;
}

/* line 2156, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_slt .cal_catefory {
  max-width: 722px;
  width: 100%;
  margin: 27px auto 0;
}

@media screen and (max-width: 991px) {
  /* line 2161, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_slt .cal_catefory {
    margin-top: 8px;
  }
}
/* line 2163, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_slt .cal_button {
  text-align: center;
  padding-top: 33px;
}

@media screen and (max-width: 991px) {
  /* line 2167, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_slt .cal_button {
    padding-top: 15px;
  }
}
/* line 2169, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_slt .cal_button a {
  max-width: 240px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 991px) {
  /* line 2174, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_slt .cal_select {
    background: #8ca837;
    padding: 15px 12px;
    border-radius: 0 0 4px 4px;
    display: none;
    color: #fff;
  }

  /* line 2180, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_slt .cal_select .frm_gr .frm_gr_lb {
    font-size: 14px;
    color: #fff;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 68px;
    flex: 0 0 68px;
  }

  /* line 2186, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_slt .cal_select .frm_gr .frm_gr_lb .hidden_mb {
    display: none;
  }

  /* line 2188, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_slt .cal_select .frm_gr .form-control {
    height: 32px;
    border-radius: 4px;
    font-size: 14px;
    color: #00674c;
  }

  /* line 2193, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_slt .cal_select .frm_gr .form-control::-webkit-input-placeholder {
    font-size: 14px;
  }

  /* line 2195, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_slt .cal_select .frm_gr .form-control:-ms-input-placeholder {
    font-size: 14px;
  }

  /* line 2197, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_slt .cal_select .frm_gr .form-control::-ms-input-placeholder {
    font-size: 14px;
  }

  /* line 2199, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_slt .cal_select .frm_gr .form-control::placeholder {
    font-size: 14px;
  }

  /* line 2201, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_slt .cal_select .frm_gr .item_boxshadow.btn_ct_sl {
    height: 32px;
  }
}
/* line 2203, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_slt .cal_select .row {
  /* margin: 0; */
}

/* line 2205, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_slt .cal_select .row .col-12,
.calculation_w .calculation_slt .cal_select .row .col {
  /* padding: 0; */
}

/* line 2209, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results {
  padding-top: 44px;
}

@media screen and (max-width: 991px) {
  /* line 2212, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results {
    padding-top: 15px;
  }

  /* line 2214, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .container-checkbox .checkmark {
    width: 18px;
    height: 18px;
  }

  /* line 2217, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .container-checkbox .checkmark:after {
    left: 5px;
    top: 0px;
  }
}
/* line 2220, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results {
  border-radius: 16px;
  padding: 10px 15px;
  background: #0d6790;
}

@media screen and (max-width: 991px) {
  /* line 2225, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results {
    display: none;
    margin-top: 15px;
    border-radius: 4px;
  }

  /* line 2229, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results label {
    margin-bottom: 0;
  }

  /* line 2231, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results .container-checkbox {
    width: 35px;
    margin-bottom: 7px;
  }
}
/* line 2234, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results th,
.calculation_w .calculation_results .table_results td {
  word-break: break-word;
  white-space: normal;
}

@media screen and (max-width: 991px) {
  /* line 2239, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results th,
  .calculation_w .calculation_results .table_results td {
    font-size: 12px;
    height: auto;
  }
}
/* line 2243, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results th:nth-child(1),
.calculation_w .calculation_results .table_results td:nth-child(1) {
  min-width: 110px;
  max-width: 110px;
}

@media screen and (max-width: 991px) {
  /* line 2248, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results th:nth-child(1),
  .calculation_w .calculation_results .table_results td:nth-child(1) {
    min-width: inherit;
    max-width: inherit;
    padding-left: 0;
  }
}
/* line 2253, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results th:nth-child(2),
.calculation_w .calculation_results .table_results td:nth-child(2) {
  min-width: 110px;
  max-width: 110px;
}

@media screen and (max-width: 991px) {
  /* line 2258, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results th:nth-child(2),
  .calculation_w .calculation_results .table_results td:nth-child(2) {
    min-width: 110px;
    max-width: 110px;
    padding-left: 0;
  }
}
@media screen and (max-width: 480px) {
  /* line 2264, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results th:nth-child(2),
  .calculation_w .calculation_results .table_results td:nth-child(2) {
    min-width: 100px;
    max-width: 100px;
  }
}
/* line 2268, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results th:nth-child(3),
.calculation_w .calculation_results .table_results td:nth-child(3) {
  min-width: 110px;
  max-width: 110px;
}

@media screen and (max-width: 991px) {
  /* line 2273, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results th:nth-child(3),
  .calculation_w .calculation_results .table_results td:nth-child(3) {
    min-width: 110px;
    max-width: 110px;
    padding-left: 0;
  }
}
/* line 2278, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results th:nth-child(4),
.calculation_w .calculation_results .table_results td:nth-child(4) {
  min-width: 110px;
  max-width: 110px;
}

@media screen and (max-width: 991px) {
  /* line 2283, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results th:nth-child(4),
  .calculation_w .calculation_results .table_results td:nth-child(4) {
    min-width: 110px;
    max-width: 110px;
    padding-left: 0;
  }
}
/* line 2288, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results th:nth-child(5),
.calculation_w .calculation_results .table_results td:nth-child(5) {
  min-width: 110px;
  max-width: 110px;
}

@media screen and (max-width: 991px) {
  /* line 2293, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results th:nth-child(5),
  .calculation_w .calculation_results .table_results td:nth-child(5) {
    min-width: 110px;
    max-width: 110px;
    padding-left: 0;
  }
}
/* line 2298, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results th:nth-child(6),
.calculation_w .calculation_results .table_results td:nth-child(6) {
  min-width: 110px;
  max-width: 110px;
}

@media screen and (max-width: 991px) {
  /* line 2303, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results th:nth-child(6),
  .calculation_w .calculation_results .table_results td:nth-child(6) {
    min-width: 110px;
    max-width: 110px;
    padding-left: 0;
  }
}
/* line 2308, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results th:nth-child(7),
.calculation_w .calculation_results .table_results td:nth-child(7) {
  min-width: 110px;
  max-width: 110px;
}

@media screen and (max-width: 991px) {
  /* line 2313, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results th:nth-child(7),
  .calculation_w .calculation_results .table_results td:nth-child(7) {
    min-width: 110px;
    max-width: 110px;
    padding-left: 0;
  }
}
/* line 2318, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results_ed {
  max-width: 758px;
  width: 100%;
  margin: 0 auto;
}

/* line 2323, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_results_bg {
  background: #0d6790;
  padding: 12px 10px;
  color: #fff;
  font-size: 16px;
  border-radius: 3px;
}

@media screen and (max-width: 991px) {
  /* line 2331, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .table_results_bg {
    font-size: 14px;
  }

  /* line 2334, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results_ed {
    display: none;
    font-size: 14px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  /* line 2339, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .table_results_bg {
    font-size: 12px;
  }

  /* line 2342, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results_ed {
    font-size: 12px;
  }
}
@media screen and (max-width: 340px) {
  /* line 2345, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results_ed {
    font-size: 10px;
  }
}
/* line 2347, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results_ed h3 {
  font-size: 22px;
}

@media screen and (max-width: 991px) {
  /* line 2350, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results_ed h3 {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  /* line 2353, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results_ed h3 {
    font-size: 12px;
  }
}
/* line 2355, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results_ed table {
  color: #fff;
  margin-bottom: 0;
}

/* line 2358, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results_ed table thead th,
.calculation_w .calculation_results .table_results_ed table thead td {
  border-top-width: 2px;
  border-bottom: none;
  text-align: center;
}

/* line 2363, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results_ed table thead th:nth-child(1),
.calculation_w .calculation_results .table_results_ed table thead td:nth-child(1) {
  width: 44%;
}

@media screen and (max-width: 480px) {
  /* line 2367, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results_ed table thead th:nth-child(1),
  .calculation_w .calculation_results .table_results_ed table thead td:nth-child(1) {
    width: 50%;
  }
}
/* line 2370, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results_ed table thead th:nth-child(2),
.calculation_w .calculation_results .table_results_ed table thead td:nth-child(2) {
  width: 30%;
}

/* line 2373, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results_ed table thead th:nth-child(3),
.calculation_w .calculation_results .table_results_ed table thead td:nth-child(3) {
  width: 30%;
}

/* line 2376, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .table_results_ed table td {
  text-align: center;
}

@media screen and (max-width: 480px) {
  /* line 2379, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .table_results_ed table td {
    padding: 8px 4px;
  }
}
/* line 2381, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .chart_results {
  padding-top: 48px;
}

@media screen and (max-width: 991px) {
  /* line 2384, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .chart_results {
    display: none;
  }
}
/* line 2386, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_results .box-tbodytable {
  height: 320px;
}

@media screen and (max-width: 991px) {
  /* line 2389, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_results .box-tbodytable {
    height: 188px;
  }
}
/* line 2391, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_tabs {
  padding-top: 48px;
}

/* line 2393, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_tabs .tab_ct_ed {
  margin-bottom: 175px;
}

@media screen and (max-width: 991px) {
  /* line 2396, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_tabs .tab_ct_ed {
    margin-bottom: 0;
    background: #8ca837;
    padding: 20px 0;
  }

  /* line 2400, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_tabs .tab_ct_ed .box_gr_tlt {
    display: none;
  }

  /* line 2402, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_tabs .tab_ct_ed .box_gr_item {
    background: none;
    height: auto;
    padding: 5px 0;
  }

  /* line 2406, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_tabs .tab_ct_ed .box_gr_item:last-child {
    margin-bottom: 0;
  }

  /* line 2408, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_tabs .tab_ct_ed .box_gr_item .gr_item {
    color: #fff;
    font-size: 12px;
  }

  /* line 2411, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_tabs .tab_ct_ed .box_gr_item .gr_item:first-child {
    padding-left: 12px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
    max-width: 150px;
    word-break: break-word;
  }
}
@media screen and (max-width: 991px) {
  /* line 2419, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_tabs {
    padding-top: 8px;
  }

  /* line 2421, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_tabs .scrtabs-tab-scroll-arrow {
    height: 48px;
    background: #00674c;
    border: none;
  }

  /* line 2425, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_tabs > .box_gr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0;
  }

  /* line 2434, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_tabs .box_gr_item .gr_item input {
    height: 36px;
  }
}
@media screen and (max-width: 991px) and (max-width: 480px) {
  /* line 2437, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_w .calculation_tabs .box_gr_item .gr_item input {
    width: 60px;
    border-radius: 4px;
  }
}
/******END CSS Calculation*******/
/******CSS Offer*******/
/* line 2443, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .offer_container {
  max-width: 1694px;
  width: 100%;
  margin: 0 auto;
  padding-top: 40px;
}

@media screen and (max-width: 991px) {
  /* line 2449, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_w .offer_container {
    padding: 40px 10px 10px;
  }
}
@media screen and (max-width: 480px) {
  /* line 2452, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_w .offer_container {
    padding: 25px 10px 10px;
  }
}
/* line 2454, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .offer_container .offer_tabs_nv {
  margin-top: 30px;
}

/* line 2456, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .offer_container .offer_tabs_ct textarea {
  height: 450px;
}

/* line 2458, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .offer_container .offer_tabs_ct textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

/* line 2460, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .offer_container .offer_tabs_ct textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

/* line 2462, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .offer_container .offer_tabs_ct textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

/* line 2464, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .offer_container .offer_tabs_ct textarea::placeholder {
  color: rgba(0, 0, 0, 0.38);
}

@media screen and (max-width: 991px) {
  /* line 2467, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_w .offer_container .offer_tabs_ct textarea {
    height: 150px;
  }
}
/* line 2469, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .offer_container .offer_print {
  padding-top: 45px;
}

/* line 2471, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .offer_container .offer_print .tlt_gr_lr .tlt_gr_txt {
  font-size: 20px;
  color: #fff;
  height: 64px;
  background: #0d6790;
  max-width: 353px;
  width: 100%;
  line-height: 64px;
  border-radius: 4px;
}

@media screen and (max-width: 991px) {
  /* line 2481, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_w .offer_container .offer_print .tlt_gr_lr .tlt_gr_txt {
    padding: 10px;
    height: auto;
    line-height: normal;
    font-size: 14px;
  }
}
/* line 2487, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed .grouptwotablefixedhead .boxtableleft {
  min-width: 410px;
  max-width: 410px;
}

@media screen and (max-width: 991px) {
  /* line 2491, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_w .visit_ed .grouptwotablefixedhead .boxtableleft {
    min-width: 150px;
    max-width: 150px;
    -webkit-box-shadow: 4px 1px 4px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 4px 1px 4px 1px rgba(0, 0, 0, 0.3);
  }
}
/* line 2497, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed .box-theadtable .div-tr .div-th {
  width: 280px;
}

/* line 2500, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed .div-th.div-th-ed {
  text-align: left;
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: end !important;
  padding-left: 45px !important;
}

@media screen and (max-width: 991px) {
  /* line 2507, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_w .visit_ed .div-th.div-th-ed {
    padding-left: 15px !important;
  }
}
/* line 2510, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .box-intro,
.offer_w .visit_ed1 .text-center {
  text-align: left !important;
}

/* line 2514, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .inp_table_gr {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.38);
}

/* line 2518, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .grouptwotablefixedhead .boxtableleft {
  min-width: 270px;
  max-width: 270px;
}

@media screen and (max-width: 991px) {
  /* line 2522, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_w .visit_ed1 .grouptwotablefixedhead .boxtableleft {
    min-width: 150px;
    max-width: 150px;
    -webkit-box-shadow: 4px 1px 4px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 4px 1px 4px 1px rgba(0, 0, 0, 0.3);
  }
}
@media screen and (min-width: 1199px) {
  /* line 2528, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_w .visit_ed1 .grouptwotablefixedhead .boxtableleft .box-tbodytable01 {
    max-height: inherit !important;
  }
}
@media screen and (min-width: 1199px) {
  /* line 2532, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_w .visit_ed1 .grouptwotablefixedhead .boxtablescroll .box-tbodytable {
    max-height: inherit !important;
  }
}
/* line 2535, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .grouptwotablefixedhead .boxtablescroll .box-tbodytable .div-tbody .div-tr:nth-child(1) .div-td {
  border-top: none !important;
}

/* line 2538, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .grouptwotablefixedhead .boxtablescroll .box-tbodytable .div-tbody .div-tr:nth-child(2) .div-td {
  border-top: none !important;
}

/* line 2541, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .grouptwotablefixedhead .boxtablescroll .box-tbodytable .div-tbody .div-tr:nth-child(3) .div-td {
  border-top: none !important;
}

/* line 2544, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .grouptwotablefixedhead .boxtablescroll .box-tbodytable .div-tbody .div-tr:nth-child(4) .div-td {
  border-top: none !important;
}

/* line 2547, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .grouptwotablefixedhead .boxtablescroll .box-tbodytable .div-tbody .div-tr:nth-child(5) .div-td {
  border-top: none !important;
}

/* line 2550, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .div-th.div-th-ed {
  text-align: left;
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: end !important;
  padding-left: 13px !important;
}

@media screen and (min-width: 1199px) {
  /* line 2558, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_w .visit_ed1 .box-tbodytable01 .div-tbody .div-tr {
    height: 70px !important;
  }
}
/* line 2561, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .box-tbodytable01 .div-tbody .div-tr .div-td {
  padding-left: 13px !important;
}

/* line 2564, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .div-thead .div-tr .div-th {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}

/* line 2571, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .div-thead .div-tr .div-th:last-child {
  min-width: 260px;
  max-width: 260px;
}

/* line 2575, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .boxtablescroll .div-tbody .div-tr .div-td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left !important;
}

/* line 2580, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .boxtablescroll .div-tbody .div-tr .div-td:last-child {
  min-width: 260px;
  max-width: 260px;
}

/* line 2584, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .boxtablescroll .nav .nav-item .nav-link {
  color: rgba(47, 72, 88, 0.87);
  font-size: 21px;
  position: absolute;
}

/* line 2589, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .boxtablescroll .nav .nav-item:nth-child(1) .nav-link {
  bottom: 20%;
  right: 51%;
}

/* line 2593, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .boxtablescroll .nav .nav-item:nth-child(2) .nav-link {
  bottom: 26%;
  right: 13%;
}

/* line 2597, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .boxtablescroll .nav .nav-item:nth-child(3) .nav-link {
  top: 31%;
  right: 13%;
}

/* line 2601, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .boxtablescroll .nav .nav-item:nth-child(4) .nav-link {
  bottom: 20%;
  left: 12.5%;
}

/* line 2605, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .boxtablescroll .nav .nav-item:nth-child(5) .nav-link {
  top: 40%;
  left: 16%;
}

/* line 2609, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .boxtablescroll .nav .nav-item:nth-child(6) .nav-link {
  bottom: 11%;
  right: 13%;
}

/* line 2613, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .boxtablescroll .nav .nav-item:nth-child(7) .nav-link {
  top: 20%;
  right: 13%;
}

/* line 2617, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .visit_ed1 .boxtablescroll .nav .nav-item:nth-child(8) .nav-link {
  bottom: 20%;
  left: 33%;
}

/* line 2621, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .calculation_slt {
  max-width: 722px;
  width: 100%;
  margin: 32px auto 0;
}

/* line 2625, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .calculation_slt .cal_catefory {
  margin-top: 27px;
}

/* line 2627, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .calculation_slt .cal_button {
  text-align: center;
  padding-top: 33px;
}

/* line 2630, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .calculation_slt .cal_button a {
  max-width: 240px;
  width: 100%;
  text-align: center;
}

/* line 2635, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .calculation_results {
  padding-top: 44px;
}

/* line 2637, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .calculation_results .table_results {
  border-radius: 16px;
  padding: 10px 15px;
  background: #0d6790;
}

/* line 2641, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .calculation_results .chart_results {
  padding-top: 48px;
}

/* line 2644, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .calculation_tabs {
  padding-top: 48px;
}

/* line 2646, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.offer_w .calculation_tabs .tab_ct_ed {
  margin-bottom: 175px;
}

@media screen and (max-width: 991px) {
  /* line 2650, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_w .tlt_gr_lr::before {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  /* line 2654, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_w .inp_table_gr {
    height: 28px;
    font-size: 12px !important;
    width: 48px;
  }

  /* line 2658, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_w .label_table {
    min-width: 52px;
    min-height: inherit;
    font-size: 12px;
    line-height: normal;
    padding: 5px;
  }

  /* line 2664, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_w .txt_value {
    font-size: 12px;
  }
}
@media screen and (min-width: 1199px) {
  /* line 2668, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .modal_cal .modal-dialog {
    max-width: 1140px;
  }
}
/* line 2671, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_offer {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 65px;
}

@media screen and (max-width: 991px) {
  /* line 2677, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .nav_offer {
    display: none;
  }
}
/* line 2679, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_offer .nav-link {
  height: 64px;
  border-radius: 32px;
  color: rgba(0, 103, 76, 0.87);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  font-size: 24px;
  margin: 0 4px;
  background: #fff;
}

/* line 2693, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_offer .nav-link.active {
  background: rgba(0, 103, 76, 0.87);
  color: #fff;
}

@media screen and (max-width: 1520px) {
  /* line 2697, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .nav_offer .nav-link {
    font-size: 16px;
  }
}
/******END CSS Offer*******/
/******CSS Unit*******/
/* line 2702, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.unit_w .calculation_img {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* line 2707, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.unit_w .calculation_img > .abg_it:nth-child(1) .abg_item {
  width: 23%;
  margin: 10px 1%;
  max-width: inherit;
}

@media screen and (min-width: 991px) {
  /* line 2713, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .unit_w .calculation_img_w > .nav .nav-link {
    height: 34px;
    width: 34px;
    border: 1px solid rgba(47, 72, 88, 0.87);
    border-radius: 50%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }
}
/* line 2730, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

/* line 2735, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it .abg_item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 12px;
  padding: 20px 10px 10px;
  margin: 10px 15px;
}

/* line 2742, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it .abg_item:nth-child(1) {
  background: #90ee90;
}

/* line 2744, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it .abg_item:nth-child(2) {
  background: #ffffe0;
}

/* line 2746, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it .abg_item:nth-child(3) {
  background: #add8e6;
}

/* line 2748, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it .abg_item .abg_tlt {
  color: rgba(0, 0, 0, 0.87);
  font-size: 17px;
  font-weight: normal;
  margin-bottom: 25px;
}

/* line 2753, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it .abg_item .abg_group_inp {
  margin-bottom: 5px;
}

/* line 2755, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it .d-flex {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* line 2759, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it .d-flex > :nth-child(1) {
  width: 100px;
  text-align: right;
  color: rgba(0, 0, 0, 0.87);
}

/* line 2763, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it .d-flex > :nth-child(2) {
  width: 100px;
}

/* line 2765, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it .d-flex > :nth-child(3) {
  width: 100px;
  color: rgba(0, 0, 0, 0.87);
}

/* line 2768, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it .d-flex span {
  padding: 0 10px;
  font-size: 17px;
}

/* line 2771, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it .inp_table_gr {
  background: #fff;
  height: 27px;
  line-height: inherit;
}

/* line 2775, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_it .inp_table_gr:disabled {
  background: #a7a7a7;
  border-color: #707070;
  color: rgba(0, 0, 0, 0.38);
}

@media screen and (max-width: 991px) {
  /* line 2781, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .tab_has {
    padding: 0 12px;
  }

  /* line 2783, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .tab_has .abg_it {
    border: 1px solid rgba(0, 0, 0, 0.87);
  }

  /* line 2785, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .tab_has .box_gr_tlt {
    margin-bottom: 0;
  }

  /* line 2787, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .tab_has .box_gr_tlt .box_gr_hd {
    background: #8ca837;
    display: inline-block;
    padding-left: 0;
    font-size: 12px;
    text-transform: capitalize;
    position: relative;
    bottom: -11px;
    left: 15px;
    padding: 0 10px;
    color: rgba(0, 0, 0, 0.87);
  }
}
/* line 2799, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.tab_has .abg_it .inp_table_gr {
  background: #fff;
  height: 64px;
  line-height: inherit;
  border-color: #707070;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.6);
  width: 100%;
}

@media screen and (max-width: 991px) {
  /* line 2808, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .tab_has .abg_it .inp_table_gr {
    height: 23px;
    font-size: 14px;
    border-radius: 4px;
  }
}
/* line 2812, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.tab_has .abg_it .inp_table_gr:disabled {
  background: #a7a7a7;
  border-color: #707070;
  color: rgba(0, 0, 0, 0.38);
}

/* line 2817, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.tab_has .abg_it .abg_item {
  background: none;
}

/* line 2819, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.tab_has .abg_it .abg_item .abg_group_inp .d-flex > :nth-child(2) {
  width: 345px;
}

@media screen and (max-width: 991px) {
  /* line 2822, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .tab_has .abg_it .abg_item .abg_group_inp .d-flex > :nth-child(2) {
    width: auto;
  }
}
/* line 2824, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.tab_has .abg_it .abg_item .abg_group_inp .d-flex span {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 991px) {
  /* line 2828, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .tab_has .abg_it .abg_item .abg_group_inp .d-flex span {
    font-size: 14px;
  }
}
/* line 2830, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.tab_has .abg_it .abg_item .abg_group_inp .abg_edtxt span {
  font-size: 14px;
  height: 20px;
  line-height: 20px;
  margin-top: 6px;
}

@media screen and (max-width: 991px) {
  /* line 2837, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .tab_has .box_gr_tlt {
    display: block !important;
  }
}
/* line 2840, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_edtxt span {
  height: 64px;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.6);
  display: inline-block;
  line-height: 64px;
}

/******END CSS Unit*******/
/******CSS Air*******/
/* line 2849, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.air_w .calculation_img {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 991px) {
  /* line 2855, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .air_w .calculation_img {
    padding: 50px 15px;
  }
}
/* line 2857, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.air_w .calculation_img .abg_it {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* line 2863, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.air_w .calculation_img .abg_it .abg_item {
  background: #a6d179;
  width: 31.333%;
  margin: 10px 1%;
  -webkit-box-flex: inherit;
  -ms-flex: inherit;
  flex: inherit;
}

/* line 2870, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.air_w .calculation_img .abg_it .d-flex > :nth-child(1) {
  min-width: 175px;
  text-align: left;
}

/* line 2873, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.air_w .calculation_img .air_col_l table:last-child {
  margin-bottom: 0;
}

/* line 2875, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.air_w .calculation_img .calculation_img_w {
  padding: 0 15px;
  width: 100% !important;
}

@media screen and (max-width: 1199px) {
  /* line 2879, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .air_w .calculation_img > .abg_it {
    display: none !important;
  }
}
/* line 2882, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.air_w .air_col_l table,
.air_w .air_col_r table {
  color: rgba(47, 72, 88, 0.87);
  font-size: 16px;
  font-weight: 400;
}

/* line 2887, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.air_w .air_col_l table td,
.air_w .air_col_r table td {
  border-color: rgba(47, 72, 88, 0.87);
}

/* line 2891, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.nav_air .nav-link {
  height: 41px;
  width: 41px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 991px) {
  /* line 2905, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .nav_air .nav-link {
    border: 1px solid rgba(47, 72, 88, 0.87);
    background: #fff;
  }
}
/* line 2909, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal .calculation_w .calculation_img {
  background: none;
}

/* line 2912, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.btn_offed_cal {
  padding-top: 20px;
}

@media screen and (max-width: 991px) {
  /* line 2915, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .btn_offed_cal {
    padding-top: 0;
  }
}
/* line 2917, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.btn_offed_cal .btn_primary {
  max-width: 694px;
  width: 100%;
  text-transform: uppercase;
}

/******END CSS Air*******/
/* line 2923, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_container {
  max-width: 998px;
  width: 100%;
  margin: 40px auto 0;
  background: #fff url(/assets/bg-preview-b208bfc6f60901049711d20c81af20c3be4956e06cebf27fcfe017bf6455396f.svg) no-repeat right top;
  background-size: cover;
  padding: 32px 20px 70px 20px;
  border: 1px solid #707070;
}

@media screen and (max-width: 991px) {
  /* line 2932, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container {
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  /* line 2935, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container {
    padding: 5px;
    margin-top: 23px;
  }
}
/* line 2938, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_container .prev_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* line 2945, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_container .prev_header .prev_logo {
  padding-left: 32px;
}

@media screen and (max-width: 991px) {
  /* line 2948, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_logo {
    padding-left: 0;
  }
}
@media screen and (min-width: 991px) {
  /* line 2951, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_logo img {
    height: 68px;
  }
}
@media screen and (max-width: 991px) {
  /* line 2954, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_logo img {
    height: 40px;
  }
}
@media screen and (max-width: 380px) {
  /* line 2957, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_logo img {
    height: 26px;
  }
}
/* line 2959, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_container .prev_header .prev_logo h2 {
  font-size: 31px;
  font-weight: bold;
  margin-top: 20px;
}

@media screen and (max-width: 991px) {
  /* line 2964, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_logo h2 {
    margin-top: 5px;
    font-size: 19px;
  }
}
@media screen and (max-width: 380px) {
  /* line 2968, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_logo h2 {
    font-size: 12px;
  }
}
/* line 2970, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_container .prev_header .prev_logo h3 {
  font-size: 20px;
}

@media screen and (max-width: 991px) {
  /* line 2973, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_logo h3 {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  /* line 2976, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_logo h3 {
    font-size: 10px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 380px) {
  /* line 2980, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_logo h3 {
    font-size: 8px;
    margin-bottom: 0;
  }
}
/* line 2983, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_container .prev_header .prev_logo a {
  display: block;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.87);
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  /* line 2989, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_logo a {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  /* line 2992, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_logo a {
    font-size: 10px;
  }
}
@media screen and (max-width: 380px) {
  /* line 2995, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_logo a {
    font-size: 8px;
  }
}
@media screen and (min-width: 767px) {
  /* line 2998, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_date {
    padding-right: 12px;
  }
}
/* line 3000, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_container .prev_header .prev_date h2 {
  font-size: 41px;
  font-weight: normal;
}

@media screen and (max-width: 991px) {
  /* line 3004, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_date h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  /* line 3007, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_date h2 {
    font-size: 21px;
  }
}
@media screen and (max-width: 480px) {
  /* line 3010, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_date h2 {
    font-size: 12px;
  }
}
/* line 3012, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_container .prev_header .prev_date .well {
  border: 1px solid #707070;
  max-width: 332px;
  width: 100%;
  background: #f5f5f5;
}

@media screen and (min-width: 767px) {
  /* line 3018, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_date .well {
    margin-right: 20px;
    margin-top: 25px;
  }
}
@media screen and (max-width: 380px) {
  /* line 3022, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_date .well {
    max-width: 127px;
  }
}
/* line 3024, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_container .prev_header .prev_date .well table {
  margin-bottom: 0;
}

/* line 3026, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_container .prev_header .prev_date .well table td {
  border: none;
  padding: 2px 10px 2px 10px;
  font-size: 22px;
  color: rgba(0, 0, 0, 0.87);
}

@media screen and (max-width: 767px) {
  /* line 3032, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_date .well table td {
    padding: 2px 5px;
    font-size: 10px;
  }
}
@media screen and (max-width: 380px) {
  /* line 3036, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_container .prev_header .prev_date .well table td {
    font-size: 8px;
  }
}
/* line 3039, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_frm fieldset {
  border: 1px solid #707070;
  border-radius: 8px;
  max-width: 420px;
  width: auto;
  margin: 0 auto;
}

/* line 3045, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_frm fieldset legend {
  margin: 0 auto;
  background: #fff;
  padding: 0 10px;
  color: rgba(47, 72, 88, 0.87);
}

@media screen and (max-width: 380px) {
  /* line 3051, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_frm fieldset legend {
    font-size: 12px;
  }
}
/* line 3054, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_frm table td {
  font-size: 25px;
  color: rgba(47, 72, 88, 0.87);
  border: none;
  padding: 8px 0.75rem;
}

@media screen and (max-width: 767px) {
  /* line 3060, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_frm table td {
    font-size: 18px;
  }
}
@media screen and (max-width: 380px) {
  /* line 3063, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_frm table td {
    font-size: 12px;
    padding: 2px 0.75rem;
  }
}
/* line 3067, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_email .modal-dialog {
  max-width: 800px;
}

/* line 3070, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.modal_email .btn_gr_all {
  margin-top: 20px;
}

/* line 3073, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bottom {
  margin-top: 20px;
}

/* line 3076, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#button_delete_project {
  margin-left: 250px;
}

@media screen and (max-width: 991px) {
  /* line 3081, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #button_delete_project {
    margin-left: 0px;
  }
}
/* line 3086, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.btn_danger {
  background-color: #FF6347;
}

/* line 3090, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_item_185 {
  max-width: 185px !important;
}

@media screen and (min-width: 991px) {
  /* line 3094, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .hidden_pt .nav-link {
    width: auto !important;
    background: none !important;
    border: none !important;
    font-size: 20px !important;
  }

  /* line 3099, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .hidden_pt .nav-link span {
    display: inline-block;
    background: #fff;
    padding: 0 5px;
    margin: 0 3px;
    border-radius: 2px;
    -webkit-box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.16);
  }
}
@media screen and (max-width: 991px) {
  /* line 3109, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .hidden_pt {
    display: none;
  }
}
/* line 3112, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_btngr a {
  max-width: 353px;
  display: block;
  margin: 10px auto 0 !important;
}

/* line 3117, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_unit {
  padding: 50px 0 20px 0;
}

@media screen and (max-width: 991px) {
  /* line 3120, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_unit {
    padding: 10px 0;
  }
}
/* line 3122, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_unit .calculation_img {
  padding-top: 0 !important;
}

/* line 3124, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_unit .calculation_img .calculation_img_w {
  position: relative !important;
  margin: 0 auto;
}

@media screen and (min-width: 991px) {
  /* line 3128, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_unit .calculation_img .calculation_img_w {
    width: 74% !important;
  }
}
/* line 3130, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_unit .calculation_img .abg_it {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* line 3134, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_unit .calculation_img .abg_it:nth-child(1) {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/* line 3138, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_unit .calculation_img .abg_it:nth-child(3) {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* line 3145, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_unit .calculation_img .abg_it:nth-child(3) .abg_item:nth-child(1) {
  max-width: 297px;
}

/* line 3147, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_unit .calculation_img .abg_it:nth-child(3) .abg_item.abg_item_edb {
  max-width: 422px;
}

@media screen and (max-width: 991px) {
  /* line 3150, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_unit .calculation_img .abg_it:nth-child(3) .abg_item.abg_item_edb {
    max-width: 325px;
  }
}
@media screen and (max-width: 480px) {
  /* line 3153, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_unit .calculation_img .abg_it:nth-child(3) .abg_item {
    max-width: 48% !important;
  }
}
/* line 3155, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_unit .calculation_img .abg_it .abg_item {
  max-width: 24%;
  padding: 10px;
  margin: 0;
}

@media screen and (max-width: 480px) {
  /* line 3160, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_unit .calculation_img .abg_it .abg_item {
    padding: 5px 2px;
    border-radius: 4px;
  }
}
/* line 3163, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_unit .calculation_img .abg_it .abg_item .ts_preview .ts_txt {
  font-size: 25px;
  color: #fff;
  line-height: normal;
}

@media screen and (max-width: 991px) {
  /* line 3168, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_unit .calculation_img .abg_it .abg_item .ts_preview .ts_txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  /* line 3171, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_unit .calculation_img .abg_it .abg_item .ts_preview .ts_txt {
    font-size: 10px;
  }
}
/* line 3173, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_unit .calculation_img .abg_it .abg_item .abg_tlt {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

@media screen and (max-width: 991px) {
  /* line 3179, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_unit .calculation_img .abg_it .abg_item .abg_tlt {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  /* line 3182, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_unit .calculation_img .abg_it .abg_item .abg_tlt {
    font-size: 9px;
    margin-bottom: 0px;
  }
}
/* line 3185, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_unit .calculation_img .abg_it .abg_item.bg_none {
  margin: 0 !important;
  padding: 0 !important;
}

/* line 3188, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_unit .calculation_img_w .nav-link {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  font-size: 19px !important;
}

@media screen and (min-width: 991px) {
  /* line 3204, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_unit .calculation_img_w .nav-link {
    border: 1px solid rgba(47, 72, 88, 0.87);
    background: #fff;
  }
}
@media screen and (max-width: 991px) {
  /* line 3208, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_unit .nav_scrollpy_all {
    display: none;
  }
}
/* line 3210, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_unit .consorb_1_3_w .abg_it:nth-child(1) .abg_item {
  max-width: 31%;
}

/* line 3212, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_unit .bg_cl_b {
  -webkit-transform: translateY(0) !important;
  -ms-transform: translateY(0) !important;
  transform: translateY(0) !important;
}

/* line 3217, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_btngr {
  margin-top: 75px;
}

@media screen and (max-width: 480px) {
  /* line 3220, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_btngr {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1199px) {
  /* line 3226, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .calculation_img.fixed .calculation_img_w {
    background: #fff;
    z-index: 20;
    top: 0;
    width: 100%;
    max-width: 1170px;
    -webkit-box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
  }
}
@media screen and (max-width: 991px) {
  /* line 3237, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_tlt .tlt_gr_lr::before {
    display: none;
  }

  /* line 3239, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_tlt .tlt_gr_lr .tlt_gr_txt {
    font-size: 32px;
    color: rgba(0, 0, 0, 0.38);
    font-weight: normal;
  }
}
@media screen and (max-width: 991px) and (max-width: 480px) {
  /* line 3244, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .offer_tlt .tlt_gr_lr .tlt_gr_txt {
    font-size: 22px;
  }
}
/* line 3247, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox-ed {
  margin-bottom: 0;
  padding-left: 50px;
}

/* line 3250, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox-ed .checktxt {
  display: block !important;
  font-weight: bold;
}

/* line 3253, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox-ed .checkmark {
  top: 0;
}

/* line 3256, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.txt_rcm {
  font-size: 16px;
  color: #800e0e;
  font-weight: normal;
  text-align: center;
  width: 100%;
}

/* line 3262, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.txt_rcm span {
  color: #800e0e !important;
}

/* line 3265, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.txt_tml, .txt_dry_air_needed_moisture_content {
  font-size: 16px;
  color: #800e0e;
  font-weight: normal;
  text-align: center;
  width: 100%;
}

/* line 3271, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.txt_rcm span {
  color: #800e0e !important;
}

/* line 3274, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.gr_unt .input-group-text {
  border-color: transparent;
  background: transparent;
}

/* line 3278, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.gr_unt input.form-control {
  border-color: #fff;
  border-radius: 8px !important;
}

@media screen and (max-width: 991px) {
  /* line 3283, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .gr_unt .input-group-text {
    padding: 3px;
  }

  /* line 3285, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .gr_unt .form-control {
    border-radius: 4px 0 0 4px !important;
  }
}
@media screen and (max-width: 991px) {
  /* line 3289, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .gr_rcm .frm_gr_lb,
  .gr_unt .frm_gr_lb {
    max-width: 125px;
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 125px !important;
    flex: 0 0 125px !important;
  }
}
@media screen and (max-width: 480px) {
  /* line 3297, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .gr_rcm .frm_gr_lb,
  .gr_unt .frm_gr_lb {
    width: 100%;
  }

  /* line 3300, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .gr_rcm .input-group,
  .gr_unt .input-group {
    max-width: 219px;
  }

  /* line 3303, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .gr_rcm .input-group input,
  .gr_unt .input-group input {
    text-align: center;
    color: #800e0e !important;
  }

  /* line 3307, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .gr_rcm .input-group .input-group-append,
  .gr_unt .input-group .input-group-append {
    margin-left: 12px;
  }

  /* line 3310, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .gr_rcm .input-group .input-group-append .input-group-text,
  .gr_unt .input-group .input-group-append .input-group-text {
    color: #fff !important;
  }
}
/* line 3314, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_item_edb .d-flex .ts_preview {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* line 3318, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.abg_item_edb .d-flex .ts_preview span {
  font-size: 25px;
  padding: 0;
}

@media screen and (max-width: 991px) {
  /* line 3322, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .abg_item_edb .d-flex .ts_preview span {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  /* line 3325, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .abg_item_edb .d-flex .ts_preview span {
    font-size: 10px;
  }
}
/* line 3328, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.consorb_1_3_w .abg_it:nth-child(1) {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* line 3332, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.page-item_ed .page-link {
  background: none !important;
  color: #707070 !important;
  font-size: 44px !important;
}

/* line 3337, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_pagination .page-link {
  color: #1f7862;
}

/* line 3340, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox:hover input:checked ~ .checkmark {
  border-color: #00674c;
}

/* line 3342, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox:hover input:checked ~ .checkmark:after {
  content: "";
  border-color: #00674c;
}

/* line 3346, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox input:checked ~ .checkmark {
  border-color: #00674c;
}

/* line 3348, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.container-checkbox input:checked ~ .checkmark:after {
  content: "";
  border-color: #00674c;
}

/* line 3352, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.egency_tlt_hd_btn .btn-group button:nth-child(1)::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 1px;
  background: rgba(0, 0, 0, 0.3);
  right: 0;
  top: 10%;
}

/* line 3361, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.txt_area {
  margin-top: 50px;
  color: #fff;
}

/* line 3365, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_slt .frm_gr input.form-control {
  color: #00674c;
}

@media screen and (max-width: 991px) {
  /* line 3369, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .tab_ct_ed .box_gr_item .gr_item:last-child {
    padding: 0 10px;
  }

  /* line 3371, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .tab_ct_ed .box_gr_item .gr_item:last-child > span {
    min-width: 60px;
    max-width: 136px;
    background: #fff;
    display: block;
    height: 36px;
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 36px;
    background: #a7a7a7;
    border: 1px solid #707070;
    margin: 0 auto;
  }

  /* line 3383, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .tab_ct_ed .box_gr_item .gr_item:last-child > input {
    min-width: 60px;
    max-width: 136px;
    width: 100%;
    border-radius: 4px;
  }
}
/* line 3389, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.none_click {
  pointer-events: none;
}

/* line 3392, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_air .calculation_img.fixed {
  padding-top: 0;
}

/* line 3394, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_air .calculation_img.fixed .calculation_img_w {
  position: relative;
}

/* line 3397, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_air .abg_it {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* line 3401, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_air .abg_it .abg_item {
  margin: 0;
  max-width: 32%;
  padding: 1.2%;
  border-radius: 3px;
}

/* line 3406, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_air .abg_it .abg_item .abg_tlt {
  font-size: 16px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.87);
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  /* line 3412, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .abg_item .abg_tlt {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  /* line 3416, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .abg_item .abg_tlt {
    margin-bottom: 10px;
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  /* line 3420, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .abg_item .abg_tlt {
    margin-bottom: 8px;
    font-size: 10px;
  }
}
@media screen and (max-width: 380px) {
  /* line 3424, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .abg_item .abg_tlt {
    margin-bottom: 6px;
    font-size: 6px;
  }
}
/* line 3427, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_air .abg_it .d-flex {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

/* line 3431, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_air .abg_it .d-flex > span:nth-child(1) {
  min-width: 50%;
  max-width: 50%;
  text-align: left;
  padding: 0;
}

@media screen and (max-width: 480px) {
  /* line 3437, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .d-flex > span:nth-child(1) {
    min-width: 55%;
    max-width: 55%;
  }
}
@media screen and (max-width: 767px) {
  /* line 3441, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .d-flex > span:nth-child(2) {
    padding-left: 0;
  }
}
/* line 3443, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_air .abg_it .d-flex span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 16px;
}

@media screen and (max-width: 991px) {
  /* line 3449, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .d-flex span {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  /* line 3452, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_a.prev_air .calculation_img.fixed {
    padding-top: 0;
  }

  /* line 3454, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .calculation_img.fixed .calculation_img_w {
    position: relative;
  }

  /* line 3457, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  /* line 3461, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .abg_item {
    margin: 0;
    max-width: 32%;
    padding: 1.2%;
    border-radius: 3px;
  }

  /* line 3466, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .abg_item .abg_tlt {
    font-size: 16px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 991px) {
  /* line 3472, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .abg_item .abg_tlt {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  /* line 3476, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .abg_item .abg_tlt {
    margin-bottom: 10px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  /* line 3480, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .abg_item .abg_tlt {
    margin-bottom: 8px;
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) and (max-width: 380px) {
  /* line 3484, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .abg_item .abg_tlt {
    margin-bottom: 6px;
    font-size: 6px;
  }
}
@media screen and (max-width: 767px) {
  /* line 3487, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .d-flex {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  /* line 3491, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .d-flex > span:nth-child(1) {
    min-width: 50%;
    max-width: 50%;
    text-align: left;
    padding: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  /* line 3497, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .d-flex > span:nth-child(1) {
    min-width: 55%;
    max-width: 55%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  /* line 3501, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .d-flex > span:nth-child(2) {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  /* line 3503, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .d-flex span {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) and (max-width: 991px) {
  /* line 3509, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .d-flex span {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  /* line 3512, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .d-flex span {
    font-size: 8px;
    padding: 0 5px;
  }
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  /* line 3516, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .d-flex span {
    font-size: 6px;
    padding: 0 2px;
  }
}
@media screen and (max-width: 767px) {
  /* line 3520, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .inp_table_gr {
    width: 56px;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  /* line 3524, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .inp_table_gr {
    width: 40px;
    height: 15px;
    font-size: 8px !important;
  }
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  /* line 3529, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .inp_table_gr {
    width: 23px;
    height: 10px;
    font-size: 6px !important;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  /* line 3535, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .mt-5 {
    margin-top: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  /* line 3538, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .none_fixed .calculation_img.fixed {
    padding-top: 0;
  }

  /* line 3540, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .none_fixed .calculation_img.fixed .calculation_img_w {
    position: relative;
  }

  /* line 3543, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd .table_right {
    max-width: 444px;
    width: 46%;
    margin-left: 2%;
  }

  /* line 3548, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table {
    margin-bottom: 0;
    font-size: 16px;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 991px) {
  /* line 3553, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  /* line 3556, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  /* line 3559, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table {
    font-size: 8px;
  }
}
@media screen and (max-width: 767px) and (max-width: 380px) {
  /* line 3562, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table {
    font-size: 6px;
  }
}
@media screen and (max-width: 767px) {
  /* line 3564, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table tr td {
    border-color: #fff;
    line-height: normal;
    vertical-align: middle;
  }

  /* line 3569, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table tr td:not(:first-child) {
    text-align: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 991px) {
  /* line 3572, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table tr td {
    padding: 5px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  /* line 3575, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table tr td {
    padding: 4px;
  }
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  /* line 3578, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table tr td {
    padding: 3px;
  }
}
@media screen and (max-width: 767px) {
  /* line 3581, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .table_right_b {
    background: #febf02;
    padding: 5px;
    border-radius: 3px;
  }

  /* line 3586, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .table_right_c {
    background: #98bf6f;
    padding: 5px;
    margin-top: 30px;
    border-radius: 3px;
    margin-top: 10%;
  }

  /* line 3593, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .table_right_tlt {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    display: block;
  }
}
@media screen and (max-width: 767px) and (max-width: 991px) {
  /* line 3599, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .table_right_tlt {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  /* line 3602, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .table_right_tlt {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) and (max-width: 991px) {
  /* line 3606, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc .nav_scrollpy_all {
    display: none;
  }
}
@media screen and (max-width: 767px) and (max-width: 991px) {
  /* line 3610, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .none_scrollpy .nav_scrollpy_all {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  /* line 3613, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .recusorb1-mix_w .bg_cl_b {
    -webkit-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    transform: translateY(-30%);
  }

  /* line 3618, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .consorb_mix_w .bg_cl_b {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) and (max-width: 1199px) {
  /* line 3623, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .consorb_mix_w .bg_cl_b {
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    transform: translateY(-40%);
  }
}
@media screen and (max-width: 767px) {
  /* line 3628, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .consorb_1_3_w .bg_cl_b {
    -webkit-transform: translateY(-13%);
    -ms-transform: translateY(-13%);
    transform: translateY(-13%);
  }

  /* line 3633, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .recusorb1_w .bg_cl_b {
    -webkit-transform: translateY(-5%);
    -ms-transform: translateY(-5%);
    transform: translateY(-5%);
  }

  /* line 3638, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .recusorb2_w .bg_cl_b {
    -webkit-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    transform: translateY(-30%);
  }

  /* line 3642, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  ir .abg_it .d-flex span {
    font-size: 8px;
    padding: 0 5px;
  }
}
@media screen and (max-width: 480px) {
  /* line 3646, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .abg_it .d-flex span {
    font-size: 6px;
    padding: 0 2px;
  }
}
/* line 3650, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_air .inp_table_gr {
  width: 56px;
  font-size: 15px;
}

@media screen and (max-width: 767px) {
  /* line 3654, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .inp_table_gr {
    width: 40px;
    height: 15px;
    font-size: 8px !important;
  }
}
@media screen and (max-width: 480px) {
  /* line 3659, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .inp_table_gr {
    width: 23px;
    height: 10px;
    font-size: 6px !important;
  }
}
@media screen and (max-width: 767px) {
  /* line 3665, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_air .mt-5 {
    margin-top: 0.5rem !important;
  }
}
/* line 3668, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.none_fixed .calculation_img.fixed {
  padding-top: 0;
}

/* line 3670, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.none_fixed .calculation_img.fixed .calculation_img_w {
  position: relative;
}

/* line 3673, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_left {
  width: 52%;
}

/* line 3676, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_left_ed {
  background: #2b6bbd;
  padding: 5px;
  border-radius: 3px;
}

/* line 3681, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_left table {
  color: #fff;
  margin-bottom: 0;
}

/* line 3685, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_calc_hd .table_right {
  max-width: 444px;
  width: 46%;
  margin-left: 2%;
}

/* line 3690, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_calc_hd table {
  margin-bottom: 0;
  font-size: 16px;
  color: #fff;
}

@media screen and (max-width: 991px) {
  /* line 3695, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  /* line 3698, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table {
    font-size: 10px;
  }
}
@media screen and (max-width: 480px) {
  /* line 3701, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table {
    font-size: 8px;
  }
}
@media screen and (max-width: 380px) {
  /* line 3704, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table {
    font-size: 6px;
  }
}
/* line 3706, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_calc_hd table tr td {
  border-color: #fff;
  line-height: normal;
  vertical-align: middle;
  background: transparent !important;
}

/* line 3711, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.prev_calc_hd table tr td:not(:first-child) {
  text-align: center;
}

@media screen and (max-width: 991px) {
  /* line 3714, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table tr td {
    padding: 5px;
  }
}
@media screen and (max-width: 767px) {
  /* line 3717, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table tr td {
    padding: 4px;
  }
}
@media screen and (max-width: 480px) {
  /* line 3720, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc_hd table tr td {
    padding: 3px;
  }
}
/* line 3723, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_right_b {
  background: #febf02;
  padding: 5px;
  border-radius: 3px;
}

/* line 3727, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_right_b table, .table_left_ed table {
  margin-bottom: 0;
  font-size: 16px;
  color: #fff;
}

/* line 3732, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_right_c {
  background: #98bf6f;
  padding: 5px;
  margin-top: 30px;
  border-radius: 3px;
  margin-top: 10%;
}

/* line 3739, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.table_right_tlt {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  display: block;
}

@media screen and (max-width: 991px) {
  /* line 3745, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .table_right_tlt {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  /* line 3748, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .table_right_tlt {
    font-size: 10px;
  }
}
@media screen and (max-width: 991px) {
  /* line 3752, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .prev_calc .nav_scrollpy_all {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  /* line 3756, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .none_scrollpy .nav_scrollpy_all {
    display: none;
  }
}
/* line 3759, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.recusorb1-mix_w .bg_cl_b {
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
}

/* line 3764, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.consorb_mix_w .bg_cl_b {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 1199px) {
  /* line 3769, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .consorb_mix_w .bg_cl_b {
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    transform: translateY(-40%);
  }
}
/* line 3774, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.consorb_1_3_w .bg_cl_b {
  -webkit-transform: translateY(-13%);
  -ms-transform: translateY(-13%);
  transform: translateY(-13%);
}

/* line 3779, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.recusorb1_w .bg_cl_b {
  -webkit-transform: translateY(-5%);
  -ms-transform: translateY(-5%);
  transform: translateY(-5%);
}

/* line 3784, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.recusorb2_w .bg_cl_b {
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
}

/* line 3789, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.navtabs-prev {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* line 3793, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.navtabs-prev .nav-link {
  padding: 0;
  font-size: 20px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background: #686868;
  display: block;
  -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: border-radius none;
  -o-transition: border-radius none;
  transition: border-radius none;
  margin: 0 6px;
  -webkit-transition: all 0s;
  -o-transition: all 0s;
  color: #fff;
}

/* line 3819, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.navtabs-prev .nav-link.active {
  background: #00674c;
}

/* line 3822, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w-tabscroll {
  max-width: 600px;
  width: 100%;
  margin: 30px auto 0;
  overflow: hidden;
  height: 48px;
}

@media screen and (max-width: 991px) {
  /* line 3829, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w-tabscroll {
    margin-top: 0;
    max-width: inherit;
  }
}
@media screen and (max-width: 991px) {
  /* line 3834, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w-btn-total {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-top: 20px;
  }
}
/* line 3840, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.btnPrevious,
.btnNext {
  font-size: 22px;
  color: #fff;
  position: relative;
  border-radius: 0;
  background: #abd09d;
  width: 130px;
  text-align: center;
  text-transform: uppercase;
  margin: 0 10px;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  /* line 3853, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .btnPrevious,
  .btnNext {
    width: 120px;
  }
}
/* line 3857, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.btnPrevious::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-right: 20px solid #abd09d;
  border-top: 23.5px solid transparent;
  border-bottom: 23.5px solid transparent;
  left: -21px;
  top: 0;
}

/* line 3868, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.btnNext::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid #abd09d;
  border-top: 23.5px solid transparent;
  border-bottom: 23.5px solid transparent;
  right: -21px;
  top: 0;
}

/* line 3879, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.js-total-tabs {
  font-size: 18px;
  font-weight: bold;
  color: #525252;
}

/* line 3885, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.custom-control-label-ed.custom-control-label::before {
  border: rgba(0, 103, 76, 0.87) solid 2px;
  border-radius: 50% !important;
}

/* line 3889, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
fieldset.scheduler-border {
  border: 1px groove #ddd;
  padding: 0 0.4em 1.4em;
  margin: 0 0 1.5em 0 !important;
  -webkit-box-shadow: 0px 0px 0px 0px #000;
  box-shadow: 0px 0px 0px 0px #000;
}

@media screen and (max-width: 991px) {
  /* line 3896, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  fieldset.scheduler-border {
    font-size: 14px;
    color: #fff;
    border: 1px solid #fff;
  }
}
/* line 3901, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
legend.scheduler-border {
  text-align: left;
  width: auto;
  padding: 0 10px;
  border-bottom: none;
  font-size: 16px;
  margin: 0 auto 8px;
  color: rgba(0, 0, 0, 0.87);
}

@media screen and (max-width: 991px) {
  /* line 3910, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  legend.scheduler-border {
    font-size: 14px;
    color: #fff;
  }
}
/* line 3916, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#header {
  background: url(/assets/bg-header-0fee83f0dfef4a17fb942f79fdc3fbca9a2b43206251de3d31300773e6f16141.jpg) repeat-x;
  position: relative;
}

/* line 3919, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#header .header_pw {
  position: absolute;
  right: 4%;
  height: 100%;
  top: 0;
}

@media screen and (max-width: 1400px) {
  /* line 3925, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #header .header_pw {
    right: 0;
  }
}
@media screen and (max-width: 991px) {
  /* line 3928, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #header .header_pw {
    display: none;
  }
}
/* line 3930, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#header .header_pw a {
  color: #fff;
  height: 100%;
  width: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #2e2e2e;
  border-top: none;
  border-bottom: none;
}

/* line 3946, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#header .header_pw a i {
  font-size: 1.5rem;
}

/* line 3948, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#header .container .bg-light {
  background: none !important;
}

@media screen and (max-width: 991px) {
  /* line 3951, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #header .container .bg-light {
    padding-left: 0;
    padding-right: 0;
  }
}
/* line 3954, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#header .container .bg-light .navbar-brand {
  margin-bottom: 0;
}

/* line 3956, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#header .container .bg-light .navbar-brand img {
  height: 44px;
}

/* line 3958, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#header .container .bg-light #navbar_rps .navbar-nav {
  width: 100%;
}

/* line 3960, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#header .container .bg-light #navbar_rps .navbar-nav .nav-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

/* line 3965, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#header .container .bg-light #navbar_rps .navbar-nav .nav-item.active a {
  color: rgba(255, 255, 255, 0.87);
  text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.87);
  position: relative;
}

/* line 3969, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#header .container .bg-light #navbar_rps .navbar-nav .nav-item.active a::before {
  -webkit-box-shadow: inset 0px -15px 15px 0px #044c39;
  box-shadow: inset 0px -15px 15px 0px #044c39;
  content: "";
  width: 100%;
  height: 70px;
  position: absolute;
  bottom: -12px;
  left: 0;
}

@media screen and (max-width: 1199px) {
  /* line 3979, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #header .container .bg-light #navbar_rps .navbar-nav .nav-item.active a::before {
    bottom: -15px;
  }
}
/* line 3981, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#header .container .bg-light #navbar_rps .navbar-nav .nav-item a {
  color: rgba(255, 255, 255, 0.37);
  font-size: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.37);
}

@media screen and (max-width: 1199px) {
  /* line 3986, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  #header .container .bg-light #navbar_rps .navbar-nav .nav-item a {
    font-size: 14px;
  }
}
/* line 3988, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#header .container .bg-light #navbar_rps .navbar-nav .nav-item a:hover {
  color: rgba(255, 255, 255, 0.87);
  text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.87);
}

/* line 3991, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#header .container .bg-light #navbar_rps .navbar-nav .nav-item:last-child a {
  border: none;
}

/* line 3994, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login {
  background: url(/assets/bg-login-a8eb09dcc559aef68063e898d1b08d2c363290b94b2059380ae6d6665be5d119.jpg) no-repeat top right;
  min-height: 100vh;
  background-size: cover;
}

@media screen and (max-width: 991px) {
  /* line 3999, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  /* line 4007, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login {
    background: url(/assets/bg_login_mb-5780d26a306aa417bd3fa6f1ee4b2a7c850e93601807f7443f43c0d069054823.svg);
    background-size: cover;
  }
}
/* line 4010, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm {
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
  padding-top: 85px;
}

@media screen and (max-width: 991px) {
  /* line 4016, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm {
    padding-top: 0;
  }
}
/* line 4018, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_logo h1 {
  margin: 0;
}

/* line 4020, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_logo h1 img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

@media screen and (max-width: 991px) {
  /* line 4025, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_logo h1 img {
    height: 96px;
  }
}
@media screen and (max-width: 480px) {
  /* line 4028, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_logo h1 img {
    height: 46px;
  }
}
/* line 4030, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box {
  margin-top: 80px;
  padding: 32px 73px 75px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  /* line 4035, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box {
    margin-top: 25%;
  }
}
@media screen and (min-width: 480px) {
  /* line 4038, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box {
    background: #fff;
    border-radius: 16px;
    -webkit-box-shadow: 0 5px 6px 1px rgba(0, 0, 0, 0.16);
    box-shadow: 0 5px 6px 1px rgba(0, 0, 0, 0.16);
  }
}
@media screen and (max-width: 480px) {
  /* line 4044, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box {
    padding: 0 11%;
  }
}
/* line 4046, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box h2 {
  font-size: 32px;
  font-weight: bold;
  color: #00674C;
  margin-bottom: 24px;
}

@media screen and (max-width: 480px) {
  /* line 4052, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box h2 {
    display: none;
  }
}
/* line 4054, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box .lb_login {
  font-size: 14px;
  color: rgba(0, 103, 76, 0.87);
  display: block;
  margin-bottom: 15px;
}

@media screen and (max-width: 480px) {
  /* line 4060, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .lb_login {
    color: rgba(255, 255, 255, 0.6);
  }
}
/* line 4062, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box .inp_center {
  margin-bottom: 15px;
}

/* line 4064, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box .inp_center .inp_ct {
  text-align: center;
  border: none;
  -webkit-box-shadow: inset 0 -1px 0 #ddd;
  box-shadow: inset 0 -1px 0 #ddd;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  -o-transition: box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
  height: 32px;
  color: #00674C;
  display: block;
  width: 100%;
  font-size: 16px;
}

/* line 4079, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box .inp_center .inp_ct:focus {
  outline: none;
  -webkit-box-shadow: inset 0 -2px 0 #0d6790;
  box-shadow: inset 0 -2px 0 #0d6790;
}

/* line 4083, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box .inp_center .inp_ct::-webkit-input-placeholder {
  color: rgba(0, 103, 76, 0.38);
}

/* line 4085, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box .inp_center .inp_ct:-ms-input-placeholder {
  color: rgba(0, 103, 76, 0.38);
}

/* line 4087, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box .inp_center .inp_ct::-ms-input-placeholder {
  color: rgba(0, 103, 76, 0.38);
}

/* line 4089, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box .inp_center .inp_ct::placeholder {
  color: rgba(0, 103, 76, 0.38);
}

@media screen and (max-width: 480px) {
  /* line 4092, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .inp_center .inp_ct {
    background: none;
    -webkit-box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.87);
  }

  /* line 4097, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .inp_center .inp_ct:focus {
    -webkit-box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.87);
    box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.87);
  }

  /* line 4100, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .inp_center .inp_ct::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  /* line 4102, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .inp_center .inp_ct:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  /* line 4104, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .inp_center .inp_ct::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  /* line 4106, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .inp_center .inp_ct::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
}
/* line 4108, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box .inp_center .inp_error {
  -webkit-box-shadow: inset 0 -2px 0 rgba(203, 41, 41, 0.38);
  box-shadow: inset 0 -2px 0 rgba(203, 41, 41, 0.38);
}

/* line 4111, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box .inp_center .inp_error::-webkit-input-placeholder {
  color: rgba(203, 41, 41, 0.38);
}

/* line 4113, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box .inp_center .inp_error:-ms-input-placeholder {
  color: rgba(203, 41, 41, 0.38);
}

/* line 4115, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box .inp_center .inp_error::-ms-input-placeholder {
  color: rgba(203, 41, 41, 0.38);
}

/* line 4117, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box .inp_center .inp_error::placeholder {
  color: rgba(203, 41, 41, 0.38);
}

/* line 4119, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box .inp_center .inp_error:focus {
  color: #00674C;
}

@media screen and (max-width: 480px) {
  /* line 4122, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .inp_center .inp_error {
    -webkit-box-shadow: inset 0 -2px 0 #9b7373;
    box-shadow: inset 0 -2px 0 #9b7373;
  }

  /* line 4125, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .inp_center .inp_error::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  /* line 4127, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .inp_center .inp_error:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  /* line 4129, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .inp_center .inp_error::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  /* line 4131, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .inp_center .inp_error::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  /* line 4133, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .inp_center .inp_error:focus {
    color: rgba(255, 255, 255, 0.87);
  }
}
/* line 4135, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_login .login_frm .login_box .login_checkb {
  margin-bottom: 30px;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(0, 103, 76, 0.8);
}

@media screen and (max-width: 480px) {
  /* line 4141, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .login_checkb {
    color: rgba(255, 255, 255, 0.87);
    margin-bottom: 20%;
  }

  /* line 4144, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .login_checkb .custom-control-label::before {
    background: none;
    border-color: #fff;
  }
}
@media screen and (max-width: 480px) {
  /* line 4148, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w_login .login_frm .login_box .btn_login a {
    background: #fff;
    color: #00674C;
  }
}
/* line 4152, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_intro {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: url(/assets/bg-login-a8eb09dcc559aef68063e898d1b08d2c363290b94b2059380ae6d6665be5d119.jpg) no-repeat 75% top;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
}

/* line 4170, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w_intro img {
  height: 46px;
}

/* line 4173, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.sr-only, .bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after, .bootstrap-datetimepicker-widget .btn[data-action="clear"]::after, .bootstrap-datetimepicker-widget .btn[data-action="today"]::after, .bootstrap-datetimepicker-widget .picker-switch::after, .bootstrap-datetimepicker-widget table th.prev::after, .bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*!
 * Datetimepicker for Bootstrap 3
 * ! version : 4.7.14
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */
/* line 4188, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget {
  list-style: none;
}

/* line 4190, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget.dropdown-menu {
  margin: 2px 0;
  padding: 4px;
  width: 19em;
}

@media (min-width: 576px) {
  /* line 4195, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 768px) {
  /* line 4198, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 992px) {
  /* line 4201, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
/* line 4203, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget.dropdown-menu:before, .bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: '';
  display: inline-block;
  position: absolute;
}

/* line 4207, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}

/* line 4214, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}

/* line 4220, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}

/* line 4227, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}

/* line 4233, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
  left: auto;
  right: 6px;
}

/* line 4236, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
  left: auto;
  right: 7px;
}

/* line 4239, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}

/* line 4241, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}

/* line 4243, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget a[data-action]:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 4246, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}

/* line 4251, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}

/* line 4253, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
  content: "Increment Hours";
}

/* line 4255, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
  content: "Increment Minutes";
}

/* line 4257, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
  content: "Decrement Hours";
}

/* line 4259, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
  content: "Decrement Minutes";
}

/* line 4261, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
  content: "Show Hours";
}

/* line 4263, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
  content: "Show Minutes";
}

/* line 4265, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
  content: "Toggle AM/PM";
}

/* line 4267, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
  content: "Clear the picker";
}

/* line 4269, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
  content: "Set the date to today";
}

/* line 4271, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}

/* line 4273, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget .picker-switch::after {
  content: "Toggle Date and Time Screens";
}

/* line 4275, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}

/* line 4281, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget .picker-switch td span, .bootstrap-datetimepicker-widget .picker-switch td i {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}

/* line 4285, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}

/* line 4288, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 0.25rem;
  padding: 0.5em;
}

/* line 4293, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

/* line 4297, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}

/* line 4299, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table th.disabled, .bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #dee2e6;
  cursor: not-allowed;
}

/* line 4303, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table th.prev::after {
  content: "Previous Month";
}

/* line 4305, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table th.next::after {
  content: "Next Month";
}

/* line 4307, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}

/* line 4309, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #f8f9fa;
}

/* line 4311, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}

/* line 4315, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td.cw {
  font-size: .8em;
  height: 20px;
  line-height: 20px;
  color: #dee2e6;
}

/* line 4320, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

/* line 4324, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover {
  background: #f8f9fa;
  cursor: pointer;
}

/* line 4327, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td.old, .bootstrap-datetimepicker-widget table td.new {
  color: #dee2e6;
}

/* line 4329, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}

/* line 4331, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td.today:before {
  content: '';
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #dee2e6;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}

/* line 4341, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #dee2e6;
  color: #007bff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 4345, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}

/* line 4347, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td.disabled, .bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #dee2e6;
  cursor: not-allowed;
}

/* line 4351, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td span, .bootstrap-datetimepicker-widget table td i {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 0.25rem;
}

/* line 4359, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td span:hover, .bootstrap-datetimepicker-widget table td i:hover {
  background: #f8f9fa;
}

/* line 4361, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td span.active, .bootstrap-datetimepicker-widget table td i.active {
  background-color: #dee2e6;
  color: #007bff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 4365, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td span.old, .bootstrap-datetimepicker-widget table td i.old {
  color: #dee2e6;
}

/* line 4367, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget table td span.disabled, .bootstrap-datetimepicker-widget table td span.disabled:hover, .bootstrap-datetimepicker-widget table td i.disabled, .bootstrap-datetimepicker-widget table td i.disabled:hover {
  background: none;
  color: #dee2e6;
  cursor: not-allowed;
}

/* line 4371, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}

/* line 4375, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.input-group.date .input-group-addon {
  cursor: pointer;
}

/* line 4378, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tab-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 4382, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tab-container {
  height: 42px;
}

/* line 4384, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tab-container .tab-content {
  clear: left;
}

/* line 4387, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tab-container.scrtabs-bootstrap4 .scrtabs-tabs-movable-container > .navbar-nav {
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}

/* line 4393, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tabs-fixed-container {
  float: left;
  height: 42px;
  overflow: hidden;
  width: 100%;
}

/* line 4399, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tabs-movable-container {
  position: relative;
}

/* line 4401, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tabs-movable-container .tab-content {
  display: none;
}

/* line 4404, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tab-container.scrtabs-rtl .scrtabs-tabs-movable-container > ul.nav-tabs {
  padding-right: 0;
}

/* line 4407, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tab-scroll-arrow {
  border: 1px solid #dddddd;
  border-top: none;
  color: #428bca;
  display: none;
  float: left;
  font-size: 12px;
  height: 42px;
  margin-bottom: -1px;
  padding-left: 2px;
  padding-top: 13px;
  width: 20px;
}

/* line 4419, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tab-scroll-arrow:hover {
  background-color: #eeeeee;
}

/* line 4422, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tab-scroll-arrow,
.scrtabs-tab-scroll-arrow .scrtabs-click-target {
  cursor: pointer;
}

/* line 4426, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tab-scroll-arrow.scrtabs-with-click-target {
  cursor: default;
}

/* line 4429, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tab-scroll-arrow.scrtabs-disable,
.scrtabs-tab-scroll-arrow.scrtabs-disable .scrtabs-click-target {
  color: #ddd;
  cursor: default;
}

/* line 4434, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tab-scroll-arrow.scrtabs-disable:hover {
  background-color: initial;
}

/* line 4437, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tabs-fixed-container ul.nav-tabs > li {
  white-space: nowrap;
}

/* line 4442, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w-tabscroll {
  max-width: 600px;
  width: 100%;
  margin: 30px auto 0;
  overflow: hidden;
  height: 48px;
}

@media screen and (max-width: 991px) {
  /* line 4449, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w-tabscroll {
    margin-top: 0;
    max-width: inherit;
  }
}
/* line 4453, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_tabs .scrtabs-tab-scroll-arrow {
  height: 48px;
  width: 32px;
  padding: 0;
  border: none;
}

/* line 4459, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scrtabs-tab-scroll-arrow.scrtabs-disable, .scrtabs-tab-scroll-arrow.scrtabs-disable .scrtabs-click-target {
  color: #ddd;
  cursor: default;
}

/* line 4463, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_tabs .scrtabs-tab-scroll-arrow .fa {
  height: 32px;
  width: 32px;
  text-align: center;
  line-height: 32px;
  background: #00674c;
  color: #fff;
  border-radius: 50%;
  margin-top: 9px;
}

/* line 4474, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.calculation_w .calculation_tabs .scrtabs-tab-scroll-arrow .fa {
  height: 32px;
  width: 32px;
  text-align: center;
  line-height: 32px;
  background: #00674c;
  color: #fff;
  border-radius: 50%;
  margin-top: 9px;
}

@media screen and (max-width: 991px) {
  /* line 4486, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w-btn-total {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-top: 20px;
  }
}
/* line 4492, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.btnPrevious,
.btnNext {
  font-size: 22px;
  color: #fff;
  position: relative;
  border-radius: 0;
  background: #abd09d;
  width: 130px;
  text-align: center;
  text-transform: uppercase;
  margin: 0 10px;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  /* line 4505, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .btnPrevious,
  .btnNext {
    width: 120px;
  }
}
/* line 4509, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.btnPrevious::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-right: 20px solid #abd09d;
  border-top: 23.5px solid transparent;
  border-bottom: 23.5px solid transparent;
  left: -21px;
  top: 0;
}

/* line 4520, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.btnNext::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid #abd09d;
  border-top: 23.5px solid transparent;
  border-bottom: 23.5px solid transparent;
  right: -21px;
  top: 0;
}

/* line 4531, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.w-tabscroll-ed {
  max-width: 600px;
  width: 100%;
  margin: 30px auto 0;
}

@media screen and (max-width: 991px) {
  /* line 4537, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .w-tabscroll-ed {
    margin-top: 0;
    max-width: inherit;
  }
}
/* line 4541, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.css-autow .nav-link {
  line-height: 29px;
  width: auto;
  border-radius: 24px;
  text-indent: 0;
  background: #686868;
  font-size: 20px;
  color: #fff;
}

/* line 4549, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.css-autow .nav-link.active {
  background: #00674c;
}

/* line 4552, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.css-autow .owl-nav {
  position: absolute;
  top: 0;
  width: 100%;
  margin: 0 !important;
  height: 46px;
}

/* line 4558, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.css-autow .owl-nav button {
  height: 32px;
  width: 32px;
  text-align: center;
  line-height: 26px !important;
  background: #00674c !important;
  color: #fff !important;
  border-radius: 50% !important;
  margin: 0 !important;
  opacity: 1 !important;
  top: 8px;
  position: absolute;
}

/* line 4570, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.css-autow .owl-nav button span {
  opacity: 1 !important;
  font-size: 30px;
}

/* line 4573, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.css-autow .owl-nav .owl-prev {
  left: -36px;
}

/* line 4575, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.css-autow .owl-nav .owl-next {
  right: -36px;
}

/*
 *  Owl Carousel - Core
 */
/* line 4586, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

/* line 4593, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

/* line 4599, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 4606, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

/* line 4611, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/* line 4619, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* line 4626, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

/* line 4629, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

/* line 4632, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 4641, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

/* line 4649, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel.owl-loaded {
  display: block;
}

/* line 4651, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

/* line 4654, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel.owl-hidden {
  opacity: 0;
}

/* line 4656, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

/* line 4658, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 4665, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

/* line 4669, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel.owl-rtl {
  direction: rtl;
}

/* line 4671, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
/* line 4675, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
/* line 4681, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 4687, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-animated-in {
  z-index: 0;
}

/* line 4690, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-animated-out {
  z-index: 1;
}

/* line 4693, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
/* line 4712, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
/* line 4720, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

/* line 4725, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 4730, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

/* line 4732, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
/* line 4739, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

/* line 4744, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  -o-transition: transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

/* line 4762, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

/* line 4767, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

/* line 4771, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 4781, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
/* line 4790, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

/* line 4794, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

/* line 4803, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

/* line 4807, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

/* line 4811, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

/* line 4814, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

/* line 4817, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

/* line 4821, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

/* line 4832, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/* Slider */
/* line 4837, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

/* line 4856, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* line 4866, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-list:focus {
  outline: none;
}

/* line 4870, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

/* line 4876, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 4886, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 4896, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

/* line 4903, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-track:after {
  clear: both;
}

/* line 4907, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-loading .slick-track {
  visibility: hidden;
}

/* line 4912, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

/* line 4920, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
[dir='rtl'] .slick-slide {
  float: right;
}

/* line 4924, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-slide img {
  display: block;
}

/* line 4928, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-slide.slick-loading img {
  display: none;
}

/* line 4932, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-slide.dragging img {
  pointer-events: none;
}

/* line 4936, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-initialized .slick-slide {
  display: block;
}

/* line 4940, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-loading .slick-slide {
  visibility: hidden;
}

/* line 4944, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* line 4952, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* line 4959, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-loading .slick-list {
  background: #fff url(/assets/ajax-loader-e7b44c86b050fca766a96ddac2d0932af0126da6f2305280342d909168dcce6b.gif) center center no-repeat;
}

/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url(/assets/slick-06d80cf01250132fd1068701108453feee68854b750d22c344ffc0de395e1dcb.eot);
  src: url(/assets/slick-06d80cf01250132fd1068701108453feee68854b750d22c344ffc0de395e1dcb.eot?#iefix) format("embedded-opentype"), url(/assets/slick-26726bac4060abb1226e6ceebc1336e84930fe7a7af1b3895a109d067f5b5dcc.woff) format("woff"), url(/assets/slick-37bc99cfdbbc046193a26396787374d00e7b10d3a758a36045c07bd8886360d2.ttf) format("truetype"), url(/assets/slick-12459f221a0b787bf1eaebf2e4c48fca2bd9f8493f71256c3043e7a0c7e932f6.svg#slick) format("svg");
}
/* Arrows */
/* line 4975, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

/* line 5000, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

/* line 5009, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

/* line 5016, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

/* line 5022, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 5036, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-prev {
  left: -25px;
}

/* line 5040, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

/* line 5045, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-prev:before {
  content: '←';
}

/* line 5049, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
[dir='rtl'] .slick-prev:before {
  content: '→';
}

/* line 5054, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-next {
  right: -25px;
}

/* line 5058, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

/* line 5063, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-next:before {
  content: '→';
}

/* line 5067, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
[dir='rtl'] .slick-next:before {
  content: '←';
}

/* Dots */
/* line 5073, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

/* line 5078, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

/* line 5093, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

/* line 5106, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

/* line 5124, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

/* line 5129, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

/* line 5134, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 5156, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}

/* line 5162, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.css-autow .item {
  padding: 0 5px;
}
/* line 5165, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.css-autow .slick-prev:before,
.css-autow .slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: 1;
  color: #1c674c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 5178, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.mw_120 {
  min-width: 120px;
  max-width: 120px;
}

@media screen and (max-width: 991px) {
  /* line 5184, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .css-autow .item {
    padding: 0;
  }

  /* line 5187, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .css-autow .nav-link {
    border-radius: 0;
    background: #00674c;
    font-size: 14px;
  }

  /* line 5192, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .css-autow .nav-link.active {
    box-shadow: inset 0 -2px 0 #fff;
    font-weight: 500;
  }

  /* line 5196, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .css-autow .slick-prev {
    left: 0;
    z-index: 10;
  }

  /* line 5200, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .css-autow .slick-prev::after {
    content: "";
    position: absolute;
    left: 0;
    height: 37px;
    background: #00674c;
    width: 21px;
    z-index: -1;
    top: -9px;
  }

  /* line 5210, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .css-autow .slick-next {
    right: 0;
    z-index: 10;
  }

  /* line 5214, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .css-autow .slick-next::after {
    content: "";
    position: absolute;
    right: 0;
    height: 37px;
    background: #00674c;
    width: 21px;
    z-index: -1;
    top: -9px;
  }

  /* line 5224, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
  .css-autow .slick-prev:before, .css-autow .slick-next:before {
    color: #fff;
  }
}
/* line 5229, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.project_name_of_print {
  word-break: break-all;
}

/* line 5233, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
.scroll_unit {
  height: 60vh !important;
  overflow-y: scroll;
}

/* line 5238, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#bonus_start_calculation {
  text-align: center;
  margin: 0 auto;
  padding-top: 20px;
}

/* line 5243, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#bonus_unit_selection_start_calculation {
  max-width: 240px;
  width: 100%;
}

/* line 5248, /root/dev/d_support/src/app/assets/stylesheets/style.scss */
#button_delete_project {
  background-color: #ff6347;
}
