﻿.error {
  display: block;
  text-align: center;
  color: #ff5a4d;
  font-size: 12px;
  font-weight: 400;
}

.error2 {
  display: block;
  margin-top: 10px;
  text-align: center;
  color: #ff5a4d;
  font-size: 15px;
  font-weight: 400;
}

input.small, select.small, textarea.small {
  height: 25px;
  padding: 3px 2px;
  font-size: 12px;
  margin: 0;
}

label.small {
  font-size: 12px
}

textarea {
  resize: none;
}

div.notes {
  border: 1px solid #e1e6eb;
  margin-bottom: 10px;
  width: 100%;
}

.notes textarea {
  border-style: none;
  margin-bottom: 0
}

.notes span {
  display: block;
  width: 100%;
  max-height: 200px;
  overflow: auto;
  background-color: #e1e6eb;
}

span.input_disabled {
  display: inline-block;
  font-family: "proxima-nova", "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  background-color: #e1e6eb;
  border: 1px solid #313b3f;
  border-radius: 2px;
  color: #83909a;
  height: 45px;
  margin: 0 0 15px;
  padding: 10px;
  -webkit-transition: border 0.4s ease;
  transition: border 0.4s ease;
  width: 100%;
  cursor: not-allowed
}

span.label {
  display: inline-block;
  font-family: "proxima-nova", "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  color: #83909a;
  margin: 0 0 15px;
  width: 100%;
}

.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown_content {
  visibility: hidden;
  position: absolute;
  left: -10px;
  width: 245px;
  padding-left: 10px;
  background: #fff;
  border: 1px solid #e1e6eb;
  overflow: hidden;
  z-index: 1;
  max-height: 0;
  transition: max-height 0.2s ease-out
}

  .dropdown_content a {
    display: block;
    line-height: 30px;
  }

.dropdown_avatar_content {
  visibility: hidden;
  position: absolute;
  top: 30px;
  right: 0;
  width: 150px;
  background: #fff;
  border: 1px solid #e1e6eb;
  overflow: hidden;
  z-index: 1;
  max-height: 0;
  transition: max-height 0.2s ease-out
}

  .dropdown_avatar_content a {
    display: block;
    line-height: 30px;
    padding: 0 10px;
  }

    .dropdown_avatar_content a.logout {
      border-top: 1px solid #e1e6eb;
    }

.dropdown:hover .dropdown_content, .dropdown:hover .dropdown_avatar_content {
  visibility: visible;
  max-height: 400px;
}

.accordion {
  border-bottom: 1px solid #E1E6EB
}

.accordion-item {
  color: #1b2431;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 0 10px 10px;
  margin-bottom: 0;
  border-top: 1px solid #e1e6eb;
  cursor: pointer
}

.accordion-panel {
  padding: 0;
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out
}

.accordion-panel-item {
  font-size: 14px;
  font-weight: 100;
  padding: 5px 0 5px 10px;
  margin-bottom: 0;
  cursor: pointer
}

  .accordion-item:hover, .accordion-panel-item:hover {
    opacity: 0.5
  }

  .accordion-item span, .accordion-panel-item span {
    float: right;
    color: #737e86;
    font-size: 13px;
    font-weight: 100
  }

.accordion-item span {
  margin-right: 2px
}

.accordion-panel-item span {
  margin-right: 25px
}

.accordion-panel-item-2 span {
  margin-right: 10px
}

.accordion-item i {
  float: right;
  width: 25px;
  text-align: left
}

.accordion-item-active {
  color: #5ca9fb;
  border-left: 3px solid #5ca9fb;
  background-color: #e6f2fe;
  padding-left: 7px
}

  .accordion-item-active span {
    color: #5ca9fb
  }

th a {
  font-weight: 600;
  color: #1b2431
}

td.problem {
  border-left-width: 3px
}

td.late-dispatch {
  color: #ff5a4d;
  border-left-style: solid;
  border-left-color: #ff5a4d;
  background-color: #ffe7e6
}

td.late-delivery {
  color: #f9b65a;
  border-left-style: solid;
  border-color: #f9b65a;
  background-color: #fef4e6
}

td.missing-document, td.invalid-document, td.terminal-storage {
  color: #5d62cf;
  border-left-style: solid;
  border-color: #5d62cf;
  background-color: #ebecf9
}

td.problem-type {
  color: #ff5a4d;
  background-color: #ffe7e6
}

.label-inline label {
  font-weight: normal;
  display: inline;
  text-transform: none
}

.label-inline.bold label {
  font-weight: 700
}

.label-inline td {
  padding: 5px 10px
}

.label-button {
  display: inline-block;
  padding: 15px 0
}

.link-active {
  font-family: "proxima-nova", "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #47d78d
}

.link-inactive {
  font-family: "proxima-nova", "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ff5a4d
}

.link-outofservice {
  font-family: "proxima-nova", "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #808080
}

.modal_overlay {
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  z-index: 1000000;
}

.modal_window {
  visibility: hidden;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 95%;
  max-width: 95%;
  -webkit-box-shadow: 0 0 20px #1d282e;
  box-shadow: 0 0 20px #1d282e;
  opacity: 0;
  -webkit-transition: all 0.65s ease-in-out;
  transition: all 0.65s ease-in-out;
  z-index: 1000001;
}

.modal_window_relative {
  visibility: hidden;
  margin: 0;
  padding: 0;
  position: absolute;
  max-height: 95%;
  max-width: 95%;
  -webkit-box-shadow: 0 0 20px #1d282e;
  box-shadow: 0 0 20px #1d282e;
  opacity: 0;
  -webkit-transition: all 0.65s ease-in-out;
  transition: all 0.65s ease-in-out;
  z-index: 1000001;
}

.modal-active, .modal-active .modal_window, .modal-active .modal_window_relative {
  visibility: visible;
  opacity: 1;
}

.modal_header {
  padding: 0 15px;
  height: 45px;
  line-height: 45px;
  background-color: #5d758d;
  border: 1px solid #5d758d;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.modal_title {
  color: #fff;
}

.modal_close {
  float: right;
  font-size: 30px;
  color: #fff;
}

.modal_content {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: calc(100% - 45px);
  background-color: #fff;
  border: 1px solid #e1e6eb;
  border-top-style: none;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.modal_frame {
  width: 100%;
  height: calc(100% - 4px);
  border-style: none;
  overflow: auto;
}

.modal_actions_1, .modal_actions_2, .modal_actions_3, .modal_actions_4 {
  margin: 20px 0 0;
}

  .modal_actions_1::after, .modal_actions_2::after, .modal_actions_3::after, .modal_actions_4::after {
    clear: both;
    content: "";
    display: block;
  }

  .modal_actions_1 .action_item {
    width: 100%;
  }

  .modal_actions_2 .action_item {
    float: left;
    display: block;
    margin-right: 8.57143%;
    width: 45.71429%;
  }

  .modal_actions_3 .action_item {
    float: left;
    display: block;
    margin-right: 3.63636%;
    width: 30.90909%;
  }

  .modal_actions_4 .action_item {
    float: left;
    display: block;
    margin-right: 2.7027%;
    width: 22.97297%
  }

    .modal_actions_2 .action_item:last-child, .modal_actions_3 .action_item:last-child, .modal_actions_4 .action_item:last-child {
      margin-right: 0;
    }

#popup {
  padding: 15px 15px;
}

.status_active, .status_inactive, .status_suspended {
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
}

  .status_active label::after {
    position: absolute;
    bottom: -5px;
    margin-left: 10%;
    background-color: #47d78d;
    content: " ";
    display: block;
    height: 3px;
    -webkit-transition: width 0.5s ease;
    transition: width 0.5s ease;
    width: 0;
  }

  .status_inactive label::after {
    position: absolute;
    bottom: -5px;
    margin-left: 10%;
    background-color: #ff5a4d;
    content: " ";
    display: block;
    height: 3px;
    -webkit-transition: width 0.5s ease;
    transition: width 0.5s ease;
    width: 0
  }

  .status_suspended label::after {
    position: absolute;
    bottom: -5px;
    margin-left: 10%;
    background-color: #fb8948;
    content: " ";
    display: block;
    height: 3px;
    -webkit-transition: width 0.5s ease;
    transition: width 0.5s ease;
    width: 0;
  }

  .status_active input:checked + label::after, .status_inactive input:checked + label::after, .status_suspended input:checked + label::after {
    width: 80%;
  }

/*.status_active label hr, .status_inactive label hr, .status_suspended label hr {
    margin: 15px auto;
    border-style: none;
  }

  .status_active input:checked + label hr {
    border-bottom: 4px solid #47d78d;
  }

  .status_inactive input:checked + label hr {
    border-bottom: 4px solid #ff5a4d;
  }

  .status_suspended input:checked + label hr {
    border-bottom: 4px solid #fb8948;
  }*/

.alert_overlay {
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  z-index: 1000002;
}

.alert_window {
  visibility: hidden;
  margin: 0;
  padding: 50px 50px 25px 50px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 95%;
  min-width: 400px;
  background-color: #fff;
  border: 1px solid #e1e6eb;
  border-radius: 3px 3px;
  -webkit-box-shadow: 0 0 20px #1d282e;
  box-shadow: 0 0 20px #1d282e;
  opacity: 0;
  -webkit-transition: all 0.65s ease-in-out;
  transition: all 0.65s ease-in-out;
  overflow: auto;
  z-index: 1000003;
}

.alert-active, .alert-active .alert_window {
  visibility: visible;
  opacity: 1;
}

.alert_actions_1, .alert_actions_2, .alert_actions_3 {
  margin: 50px 0 0;
}

  .alert_actions_1 .action_item {
    width: 100%;
  }

  .alert_actions_2 .action_item {
    float: left;
    display: block;
    margin-left: 8.57143%;
    width: 45.71429%;
  }

    .alert_actions_2 .action_item:first-child {
      margin-left: 0;
    }

.alert_actions_3 {
  display: flex;
  justify-content: space-between;
}

  .alert_actions_3 .action_item {
    flex-basis: 50%;
    flex-grow: 1;
    flex-shrink: 1;
    margin-left: 20px;
  }

    .alert_actions_3 .action_item:first-child {
      margin-left: 0;
    }

.message {
  display: none;
  padding: 0 15px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 15px 0 rgba(45,45,45,0.2);
  box-shadow: 0 2px 15px 0 rgba(45,45,45,0.2);
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: animate-message;
  animation-name: animate-alert;
  cursor: pointer;
  z-index: 1000005;
}

.message_info {
  background-color: #5d758d;
  border: 1px solid #5d758d;
}

.message_success {
  background-color: #47d78d;
  border: 1px solid #47d78d;
}

.message_error {
  background-color: #ff5a4d;
  border: 1px solid #ff5a4d;
}

.message_helpdesk {
  background-color: #5ca9fb;
  border: 1px solid #5ca9fb;
  min-height: 45px;
  height: auto;
  line-height: inherit;
  padding: 10px;
  align-items: start;
}

.message_helpdesk_red {
  background-color: #ff5a4d;
  border: 1px solid #ff5a4d;
  min-height: 45px;
  height: auto;
  line-height: inherit;
  padding: 10px;
  align-items: start;
}

.message_icon_helpdesk {
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 20px;
  color: #fff;
}

.message_content_helpdesk {
  flex-basis: 1%;
  flex-grow: 1;
  flex-shrink: 1;
  margin: 0 10px;
  overflow-x: hidden;
}

.message_close {
  float: right;
  font-size: 30px;
  color: #fff;
}

.message_close_helpdesk {
  flex-grow: 0;
  flex-shrink: 0;
  line-height: 20px;
  font-size: 30px;
  color: #fff;
}

@-webkit-keyframes animate-message {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes animate-message {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.progress_overlay {
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  z-index: 1000004;
}

.progress_window {
  visibility: hidden;
  margin: 0;
  padding: 35px 60px 51px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /*background-color: #fff;
  border: 1px solid #e1e6eb;
  border-radius: 3px 3px;
  -webkit-box-shadow: 0 0 20px #1d282e;
  box-shadow: 0 0 20px #1d282e;*/
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  z-index: 1000005;
}

.progress-active, .progress-active .progress_window {
  visibility: visible;
  opacity: 1;
}

.image_gallery_window {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  background-color: #fff;
  display: none;
  opacity: 0;
  z-index: 1000010;
}

.image_gallery-active {
  display: flex;
  opacity: 1;
}

.zoom_image_container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

  .zoom_image_container div.nav {
    position: absolute;
    top: calc(50% - 20px);
    background: rgba(0,0,0, 0.2);
    padding: 5px;
    cursor: pointer;
    z-index: 1;
  }

    .zoom_image_container div.nav:hover {
      background: rgba(0,0,0, 0.1);
    }

.zoom_image_item {
  display: none;
  text-align: center;
  width: 100%;
  height: 100%;
}

  .zoom_image_item.active {
    display: block;
  }

  .zoom_image_item img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
  }

.zoom_thumbnail_container {
  padding: 10px 0;
  white-space: nowrap;
  overflow-x: auto;
}

  .zoom_thumbnail_container:last-child {
    margin-right: 0;
  }

.zoom_thumbnail_item {
  display: inline-block;
  margin-right: 10px;
  height: 90px;
  line-height: 90px;
}

  .zoom_thumbnail_item img {
    height: 90px;
    opacity: 0.6;
    cursor: pointer;
    vertical-align: middle;
  }

    .zoom_thumbnail_item img:hover, .zoom_thumbnail_item.active img {
      opacity: 1;
    }

.zoom_image_nav {
  text-align: center;
  line-height: 30px;
  margin-top: 20px;
}

  .zoom_image_nav:last-child {
    margin-right: 0;
  }

  .zoom_image_nav a, .zoom_image_nav span {
    display: inline-block;
    margin-right: 10px;
  }

    .zoom_image_nav a i {
      cursor: pointer;
    }

@media screen and (min-width: 720px) {
  .search.flow {
    padding: 20px 0
  }

  .columns_flow_2m {
    float: left;
    display: block;
    margin-left: 20px;
    margin-right: 20px;
    width: calc((100% - 80px) / 2)
  }

  .columns_flow_3m {
    float: left;
    display: block;
    margin-left: 20px;
    margin-right: 20px;
    width: calc((100% - 120px) / 3)
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .search.flow {
    padding: 20px 0
  }

  .columns_flow_2l {
    float: left;
    display: block;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(50% - 41px)
  }

  .columns_flow_3l {
    float: left;
    display: block;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(33.33333% - 41px)
  }

  .columns_flow_4l {
    float: left;
    display: block;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(25% - 41px)
  }

  .columns_flow_5l {
    float: left;
    display: block;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(20% - 41px)
  }

  .columns_flow_6l {
    float: left;
    display: block;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(16.66666% - 41px)
  }

  .columns_flow_8l {
    float: left;
    display: block;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(13% - 32px)
  }
}

.columns_flow {
  float: left;
  display: block;
  margin-left: 20px;
  margin-right: 20px;
}

.columns_flow_right {
  float: right;
  display: block;
  margin-left: 20px;
  margin-right: 20px;
}

.search_trigger {
  line-height: 50px;
  font-size: 22px;
  color: #1b2431
}

.tooltip_trigger {
  position: relative;
  display: inline-block
}

.tooltip_window, .tooltip_window_bottom_right, .tooltip_window_bottom_right2, .tooltip_window_top_right2 {
  visibility: hidden;
  position: absolute;
  top: 100%;
  padding: 5px 5px;
  background: #fff;
  border: 1px solid #e1e6eb;
  border-radius: 3px 3px;
  -webkit-box-shadow: 0 0 20px #e1e6eb;
  box-shadow: 0 0 20px #e1e6eb;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 1;
}

.tooltip_window_bottom_left {
  visibility: hidden;
  position: absolute;
  top: 100%;
  padding: 5px 5px;
  background: #fff;
  border: 1px solid #e1e6eb;
  border-radius: 3px 3px;
  -webkit-box-shadow: 0 0 20px #e1e6eb;
  box-shadow: 0 0 20px #e1e6eb;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 1;
  right: 0;
}

.tooltip_window_top_right2 {
  visibility: hidden;
  position: absolute;
  top: -25px;
  padding: 5px 5px;
  background: #fff;
  border: 1px solid #e1e6eb;
  border-radius: 3px 3px;
  -webkit-box-shadow: 0 0 20px #e1e6eb;
  box-shadow: 0 0 20px #e1e6eb;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 1;
}

.tooltip_window {
  left: 0;
}

.tooltip_window_bottom_right {
  right: 0;
}

.tooltip_window_bottom_right2 {
  visibility: hidden;
  position: absolute;
  top: 100%;
  padding: 5px 5px;
  background: #fff;
  border: 1px solid #e1e6eb;
  border-radius: 3px 3px;
  -webkit-box-shadow: 0 0 20px #e1e6eb;
  box-shadow: 0 0 20px #e1e6eb;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 1;
  left: 0;
}

.tooltip_window_top_right2 {
  visibility: hidden;
  position: absolute;
  top: -25px;
  padding: 5px 5px;
  background: #fff;
  border: 1px solid #e1e6eb;
  border-radius: 3px 3px;
  -webkit-box-shadow: 0 0 20px #e1e6eb;
  box-shadow: 0 0 20px #e1e6eb;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 1;
  left: 0;
}

  .tooltip_window::after, .tooltip_window_bottom_right::after {
    content: " ";
    position: absolute;
    bottom: 100%;
    left: 10px;
    /*left: 50%;
    margin-left: -5px;*/
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #1d282e transparent;
  }

  .tooltip_window_bottom_right::after {
    left: 100%;
    margin-left: -20px;
  }

.tooltip_window_right {
  visibility: hidden;
  position: absolute;
  left: 100%;
  top: -5px;
  padding: 5px 5px;
  background: #fff;
  border: 1px solid #e1e6eb;
  border-radius: 3px 3px;
  -webkit-box-shadow: 0 0 20px #e1e6eb;
  box-shadow: 0 0 20px #e1e6eb;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 1;
}

  .tooltip_window_right:not(.no_arrow)::after {
    content: " ";
    position: absolute;
    right: 100%;
    top: 10px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #1d282e transparent transparent;
  }

.tooltip_trigger:hover .tooltip_window, .tooltip_trigger:hover .tooltip_window_right, .tooltip_trigger:hover .tooltip_window_bottom_left, .tooltip_trigger:hover .tooltip_window_bottom_right2, .tooltip_trigger:hover .tooltip_window_top_right2 {
  visibility: visible;
  opacity: 1
}

table.info td {
  padding: 5px 10px !important;
  white-space: nowrap
}

table.info2 td {
  padding: 0 0 10px
}

table.info2 tr td:first-child {
  font-weight: bold;
  white-space: nowrap
}

table.info2 tr td:not(:first-child) {
  padding-left: 30px
}

.color_red {
  color: #ff5a4d
}

.color_green {
  color: #47d78d
}

.color_blue {
  color: #5CA9FB
}

.background_red {
  background-color: #ff0000
}

.background_grey {
  background-color: #e1e6eb
}

td.background_red {
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: #ff5a4d;
  background-color: #ffe7e6
}

td.background_green {
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: #47d78d;
  background-color: #eafaf2
}

td.background_blue {
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: #5ca9fb;
  background-color: #e6f2fe
}

td.background_yellow {
  border-left-width: 3px;
  border-left-style: solid;
  border-color: #f9b65a;
  background-color: #fef4e6
}

td.background_purple {
  border-left-width: 3px;
  border-left-style: solid;
  border-color: #5d62cf;
  background-color: #ebecf9
}

tr.first {
  background-color: #fff !important
}

tr.second {
  background-color: #f5f7f9 !important
}

table.list > tbody > tr:hover {
  background: #80808088 !important
}

.icon_18 {
  font-size: 18px;
  vertical-align: middle;
  cursor: default
}

.icon_32 {
  font-size: 32px;
  vertical-align: middle;
  cursor: default
}

.icon_stack_18 {
  font-size: 9px;
  vertical-align: middle;
  cursor: default
}

.icon_stack_24 {
  font-size: 12px;
  vertical-align: middle;
  cursor: default
}

.columns-right-0 {
  margin-right: 0 !important;
}

.columns-right-1 {
  margin-right: 1% !important;
}

.left-nav-2 {
  margin-left: 200px;
  width: 200px;
  height: auto;
  position: static;
  float: left;
  background-color: #fbfcff;
}

.app-content-2 {
  margin-left: 0;
  width: calc(100% - 400px);
}

table.list2 thead tr th, table.list2 tbody tr td {
  font-size: 15px;
  padding: 10px 10px
}

table.price > thead > tr {
  border-bottom-style: none
}

  table.price > thead > tr > th {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }

table.price > tbody > tr > td {
  border: 1px solid #e1e6eb
}

  table.price > thead > tr > th:first-child, table.price > tbody > tr > td:first-child {
    border-left-style: none
  }

  table.price > thead > tr > th:last-child, table.price > tbody > tr > td:last-child {
    border-right-style: none
  }

tr.total {
  font-weight: bold;
  background-color: #fff
}

table.auctions, table.auctions_unit, table.auctions_invoice {
  width: 100%
}

  table.auctions tr > th, table.auctions_invoice tr > th {
    border-collapse: collapse;
    border: 1px solid #fff;
    border-bottom: 1px solid #e1e6eb;
    padding: 2px 5px;
    font-weight: 600;
    font-size: 12px;
    text-align: left
  }

  table.auctions tr > td, table.auctions_invoice tr > td {
    border-collapse: collapse;
    border: 1px solid #e1e6eb;
    padding: 2px 5px;
    font-size: 12px
  }

    table.auctions tr > th:first-child, table.auctions tr > td:first-child, table.auctions_invoice tr > th:first-child, table.auctions_invoice tr > td:first-child {
      border-left-style: none
    }

    table.auctions tr > th:last-child, table.auctions tr > td:last-child, table.auctions_invoice tr > th:last-child, table.auctions_invoice tr > td:last-child {
      border-right-style: none
    }

  table.auctions_unit tr > th {
    border-style: none;
    padding: 0 5px;
    font-weight: 600;
    font-size: 12px
  }

  table.auctions_unit tr > td {
    border-style: none;
    padding: 0 5px;
    font-size: 12px
  }

.tab__item2 {
  font-family: "proxima-nova", "Roboto", sans-serif;
  font-style: normal;
  font-weight: 700;
  background-color: #fff;
  border: 2px solid;
  border-color: #5d758d;
  border-radius: 20px;
  color: #5d758d;
  display: inline-block;
  height: 40px;
  line-height: 36px;
  padding: 0 30px;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  -webkit-appearance: none;
  cursor: pointer
}

  .tab__item2:not(:last-child) {
    margin-right: 20px
  }

  .tab__item2.is-active {
    background-color: #5d758d;
    color: #fff
  }

[type='button']:disabled, [type='submit']:disabled {
  opacity: 0.5;
  cursor: not-allowed
}

#footer {
  z-index: 2;
  float: right;
  margin: 70px 20px 10px 0;
  padding: 0 8px 1px 8px;
  font-size: 17px;
  line-height: 19px;
  color: #fff;
  background: #83909a;
  white-space: nowrap;
}

  #footer a {
    padding: 0 4px;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    text-decoration: none;
  }

    #footer a:hover {
      opacity: 1;
      text-decoration: underline;
      cursor: pointer;
    }

.columns-height {
  height: 60px;
}

.bold, .bold label {
  font-weight: 700;
}

.chip__avatar_small {
  width: 18px;
  height: 18px;
}

  .chip__avatar_small span {
    margin-top: 0;
    font-size: 11px;
    font-weight: 700;
  }

.hidden {
  display: none;
}

.topbar {
  position: fixed;
  -webkit-backface-visibility: hidden;
  top: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px 0 rgba(205,216,221,0.3);
  box-shadow: 0 2px 10px 0 rgba(205,216,221,0.3);
  padding: 0;
  /*width: 100%;*/
  width: 100vw;
  height: 70px;
  display: flex;
  flex-grow: 1;
  z-index: 1001;
}

.topbar__logo {
  min-width: 200px;
  background-color: #ff3e00;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

  .topbar__logo > img {
    width: 130px;
  }

.topbar__menu {
  width: 100%;
  flex-basis: 100%;
  margin-right: 15px;
  display: flex;
  flex-wrap: wrap;
}

  .topbar__menu > li {
    position: relative;
    display: inline-block;
    margin: 25px 15px 0 15px;
  }

    .topbar__menu > li > a {
      font-size: 15px;
      color: #737e86;
      display: inline-block;
      line-height: 0;
      font-weight: 700;
    }

      .topbar__menu > li > a::after {
        position: absolute;
        bottom: 0;
        background-color: #5ca9fb;
        content: " ";
        display: block;
        height: 3px;
        -webkit-transition: width 0.5s ease;
        transition: width 0.5s ease;
        width: 0;
      }

      .topbar__menu > li > a.active {
        color: #5ca9fb;
        font-weight: 400;
      }

        .topbar__menu > li > a.active::after {
          width: 100%;
        }

.topbar__submenu {
  align-self: center;
  margin-right: 30px;
  position: relative;
  cursor: pointer;
}

.topbar__submenu__dropdown {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  right: 0;
  background: #fff;
  border: 1px solid #e1e6eb;
  height: 0;
  opacity: 0;
  transition: all 0.2s ease-out;
}

  .topbar__submenu__dropdown.show {
    visibility: visible;
    opacity: 1;
    height: auto;
  }

  .topbar__submenu__dropdown > li {
    float: none;
  }

  .topbar__submenu__dropdown a {
    font-size: 15px;
    color: #737e86;
    line-height: 30px;
    font-weight: 700;
    display: block;
    padding: 0 10px;
    white-space: nowrap;
  }

  .topbar__submenu__dropdown > li > a.active {
    color: #5ca9fb;
    font-weight: 400;
  }

.topbar__back {
  margin-right: 30px;
  line-height: 1;
  align-self: center;
  font-weight: 700;
}

.chip__container.dropdown {
  margin: 0;
  height: 40px;
  align-self: center;
  width: auto;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

  .chip__container.dropdown .chip__avatar {
    float: none;
  }


.first_choice {
  background-color: #8ee99e !important;
}

.second_choice {
  background-color: #e7ffd8 !important;
}

.other_choice {
  background-color: #e1e6eb !important;
}

.no_choice {
  background-color: #fff !important;
}

.select2-results__options li {
  padding: 7px;
  margin: 0
}

.highlighted--gray .select2-results__option--highlighted[aria-selected] {
  background-color: #ddd !important;
  color: initial !important
}

.small .select2-results__options li {
  font-size: 12px;
  padding: 2px;
  margin: 0
}

.small.select2-selection--single {
  padding: 0;
  font-size: 12px !important;
  height: 21px !important
}

  .small.select2-selection--single .select2-selection__rendered {
    line-height: 17px !important;
    padding: 2px 20px 2px 2px !important;
    text-align: left
  }

input[type="text"].options_selection {
  background-image: url(../images/icons/icons-functional/icon-select.svg);
  background-position: 98%;
  background-repeat: no-repeat;
  padding-right: 20px !important;
}

.options_selection::placeholder {
  color: #000 !important;
  font-style: normal !important;
}

.options {
  padding: 5px 5px;
  visibility: hidden;
  z-index: 1000;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e1e6eb;
  height: 0;
  opacity: 0;
  transition: all 0.2s ease-out;
}

  .options.show {
    visibility: visible;
    opacity: 1;
    height: auto;
  }

  .options > label, .options2 > label {
    display: block;
  }

  .options > ul > li {
    padding: 0 0 1px 1px;
    background-color: #fff;
  }

    .options > ul > li > label {
      color: #000;
    }

    .options > ul > li.selected {
      background-color: #1e90ff;
    }

      .options > ul > li.selected > label {
        color: #fff;
      }

  .options > span {
    width: 100%;
    padding: 0 0 1px 1px;
    background-color: #fff;
    color: #000;
  }

    .options > span.selected {
      background-color: #1e90ff;
    }

      .options > span.selected > label {
        color: #fff;
      }
