@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap");

.feedback-form-slideBlock {
  display: none;
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

.noborder {
  border: 0 !important;
}

.hidden {
  display: none;
}

.full-width {
  width: 100% !important;
}

.vishidden-box {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
}

.modal-backdrop {
  background: #fff;
}

.modal-backdrop.in {
  opacity: 0.9;
}

.modal-header {
  border-bottom: none;
}

.cabinet-wrapper {
  z-index: 20;
  position: relative;
}

.cabinet .search-cont .form-group button,
.cabinet .search-cont a.clearSearch,
#pagination .pagination-links #pagin_prev_arrow,
#pagination .pagination-links #pagin_next_arrow,
.feedback-popup-block .route .route_item i.map-icon,
.feedback-popup-block .mfp-close,
.feedback-popup-block .mfp-close:active,
.feedback-popup-block .mfp-close:hover,
.feedback-popup-block .edit_btn .icon-edit,
.feedback-popup-block .result_info .icon-saved,
.feedback-popup-block .docs .icon,
.cabinet .mainTable table.dataTable thead .sorting .icon,
.cabinet .mainTable table.dataTable thead .sorting_asc .icon,
.cabinet .mainTable table.dataTable thead .sorting_desc .icon,
.feedback-popup-block .feedback-form a .arrow-icon,
.feedback-popup-block .feedback-form a .arrow-top-icon,
.feedback-popup-block .route .route_item i.map-icon:after {
  background-image: url("/wp-content/themes/default/cabinet/images/sprite.png");
  background-repeat: no-repeat;
}

/*---------------------------------------
	2.3.Alerts Styles
-----------------------------------------*/
.alert-success,
.text-success {
  background-color: #2ac56c;
  color: #fff;
}

.alert-info,
.text-info {
  background-color: #4593e3;
  color: #fff;
}

.alert-danger,
.text-danger {
  background-color: #f06060;
  color: #fff;
}

.alert-warning,
.text-warning {
  background-color: #fcd04b;
  color: #fff;
}

/*---------------------------------------
	2.4.Button Styles
-----------------------------------------*/
.cabinet-btn {
  padding: 3px 30px;
  line-height: 30px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  transition: all 0.4s ease-in-out 0s;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  background: #259da8;
  border-radius: 50px;
}

.cabinet-btn:hover,
.cabinet-btn:focus {
  /*box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16), 0 1px 4px rgba(0, 0, 0, 0.16);*/
}

.cabinet-btn-theme {
  border: none;
}

.cabinet-btn-theme:hover,
.cabinet-btn-theme:focus {
  transition: all 0.3s ease 0s;
  outline: none;
}

.cabinet-btn-theme-two:hover,
.cabinet-btn-theme-two:focus {
  transition: all 0.3s ease 0s;
  outline: none;
}

.feedback-popup-wrapper .feedback-popup-block {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: auto;
  max-height: 95vh;
  z-index: 99999;
  border-radius: 10px;
}
.feedback-popup-wrapper--bg {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
@media (max-width: 767px) {
  .feedback-popup-wrapper .feedback-popup-block {
    top: 0;
    left: 0;
    min-height: auto !important;
    transform: none;
    max-height: 100vh;
  }
}

/**
 * ==============================================
 * Dot Pulse
 * ==============================================
 */

.loader-circl {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dot-pulse {
  position: relative;
  left: -9999px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgb(36, 154, 165);
  color: rgb(36, 154, 165);
  box-shadow: 9999px 0 0 -5px rgb(36, 154, 165);
  animation: dotPulse 1.5s infinite linear;
  animation-delay: 0.25s;
}

.dot-pulse::before,
.dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgb(36, 154, 165);
  color: rgb(36, 154, 165);
}

.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px rgb(36, 154, 165);
  animation: dotPulseBefore 1.5s infinite linear;
  animation-delay: 0s;
  left: -10px;
}

.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px rgb(36, 154, 165);
  animation: dotPulseAfter 1.5s infinite linear;
  animation-delay: 0.5s;
  left: 10px;
}

@keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px rgb(36, 154, 165);
  }
  30% {
    box-shadow: 9984px 0 0 2px rgb(36, 154, 165);
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px rgb(36, 154, 165);
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px rgb(36, 154, 165);
  }
  30% {
    box-shadow: 9999px 0 0 2px rgb(36, 154, 165);
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px rgb(36, 154, 165);
  }
}

@keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px rgb(36, 154, 165);
  }
  30% {
    box-shadow: 10014px 0 0 2px rgb(36, 154, 165);
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px rgb(36, 154, 165);
  }
}

/******PAGINATION*******/
#pagination {
  overflow: hidden;
  text-align: center;
  min-height: 105px;
}

#pagination .pagination-links {
  /* ul */
  overflow: hidden;
  padding-left: 26px;
  margin-top: 30px;
  margin-bottom: 50px;
}

#pagination .pagination-links li {
  cursor: pointer;
  border: 1px solid #fff;
  list-style: none;
  text-align: center;
  color: #828282;
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  margin: 0 5px;
}

#pagination .pagination-links li.active {
  color: white;
  background: #259da8;
  border: 1px solid #259da8;
}

#pagination .pagination-links li.active:hover {
  background: #e64539;
  border: 1px solid #e64539;
}

#pagination .pagination-links #pagin_prev_arrow {
  display: inline-block;
  width: 9px;
  height: 100%;
  background-position: -11px -66px;
}

#pagination .pagination-links #pagin_next_arrow {
  display: inline-block;
  width: 9px;
  height: 100%;
  background-position: -38px -66px;
}

*:focus {
  outline: 0;
}

/*---------------------------------------
	3.2.section
-----------------------------------------*/
.six-sec-ease-in-out {
  -webkit-transition: width 6s ease-in-out;
  -moz-transition: width 6s ease-in-out;
  -ms-transition: width 6s ease-in-out;
  -o-transition: width 6s ease-in-out;
  transition: width 6s ease-in-out;
}

#login_form {
  text-align: center;
}

#login_form label {
  text-align: left;
}

.table-item {
  border: 1px solid #e8e8e8;
  margin-bottom: 20px;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.table-item:hover {
  -webkit-box-shadow: 3px 6px 15px -2px rgba(0, 0, 0, 0.12);
  box-shadow: 3px 6px 15px -2px rgba(0, 0, 0, 0.12);
}

.docs a:hover {
  opacity: 0.7;
}

.no-href {
  text-decoration: none !important;
}

.cabinet-wrapper h1 {
  text-align: center;
  font-size: 30px;
}

/* -------------------------------
	Cabinet-login
------------------------------- */
.cabinet-login {
  margin-top: 25px;
}

.cabinet-login h1 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.cabinet-login .form-wrapper {
  margin: 0 auto;
  width: 305px;
}

.cabinet-login label {
  font-size: 14px;
}

.cabinet-login input[type="text"],
.cabinet-login input[type="password"] {
  outline: none;
  color: #000 !important;
  font-size: 14px;
  border: 1px solid rgba(37, 157, 168, 0.51);
  border-radius: 4px;
  height: 40px;
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
  line-height: 40px;
}

.cabinet-login input#pass {
  position: relative;
  float: left;
}

.cabinet-login .showhidepswd {
  width: 22px;
  height: 22px;
  display: block;
  background: url("/wp-content/themes/default/cabinet/images/sprite.png") 0px
    0px no-repeat;
  position: relative;
  float: right;
  margin-top: -29px;
  margin-right: 10px;
}

.cabinet-login .showhidepswd.eye-close {
  background-position: -4px -10px;
}

.cabinet-login .showhidepswd.eye-open {
  background-position: -38px -10px;
}

.cabinet-login .form-group {
  margin-bottom: 20px;
}
.cabinet-login .remember {
  margin-top: 20px;
  margin-bottom: 0;
}

.cabinet-login .checkbox {
  display: none;
}

.cabinet-login .checkbox-custom,
.cabinet-login .remember .label {
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
}

.cabinet-login .checkbox-custom {
  position: relative;
  width: 13px;
  height: 13px;
  border: 1px solid #64b7c7;
  border-radius: 2px;
}

.cabinet-login .remember .label {
  padding-left: 7px;
  margin: 0;
}

.cabinet-login a.lostpassword {
  line-height: 2;
  font-family: "Helvetica", sans-serif;
  color: #64b7c7;
  float: right;
  font-size: 14px;
  font-weight: 400;
}

.cabinet-login .checkbox:checked + .checkbox-custom::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: 0 0
    url("/wp-content/themes/default/cabinet/images/checkbox-custom.png")
    no-repeat;
  border-radius: 2px;
}

.cabinet-login input.btn {
  height: 35px;
  border: 1px solid #259da8;
  border-radius: 30px;
  background: #259da8;
  color: #fff;
  text-align: center;
  padding: 0 17px;
  width: 85px;
  font-size: 17px;
  font-weight: 400;
}

.cabinet-login input.btn:hover {
  border: 1px solid #da291c;
  background: #da291c;
  color: #fff;
}

.breadcrumbs .container {
  max-width: 1680px;
}
/* -------------------------------
	Cabinet
------------------------------- */

.container.cabinet {
  padding-left: 0;
  padding-right: 0;
  max-width: 1680px;
}

.cabinet {
  position: relative;
  box-shadow: 0px 0px 4px rgba(122, 122, 122, 0.25);
  border-radius: 30px;
  padding-bottom: 35px;
}

.exit_btn {
  display: block;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  margin-bottom: 35px;
  position: absolute;
  right: 60px;
  top: 25px;
  transition: all 0.5s;
  z-index: 9;
}

.exit_btn:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: -25px;
  top: -1px;
  background: url("/wp-content/themes/default/cabinet/images/sprite.png") -1px -788px
    no-repeat;
  transition: all 0.5s;
}

.exit_btn:hover {
  color: #259da8;
}

.exit_btn:hover:after {
  right: -35px;
}

.cabinet .clear {
  clear: both;
}

.cabinet .search-cont {
  padding-right: 35px;
  padding-top: 25px;
  text-align: right;
}

#search_form_submit_btn {
  background-color: transparent;
}

.cabinet .status-cont {
  margin-top: 50px;
  margin-bottom: 20px;
}

.cabinet .client-name {
  padding-top: 25px;
  padding-left: 35px;
}

.cabinet .client-name h2 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.2px;
}

.cabinet .client-name p {
  font-family: Helvetica;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 10px;
  color: #000000;
}

.cabinet .client-name p span {
  padding-left: 11px;
  letter-spacing: normal;
}

.cabinet .client-name .client_number,
.cabinet .client-name .deals {
  font-family: Helvetica;
  font-weight: normal;
  font-size: 22px;
  line-height: 25px;
  color: #259da8;
}

.cabinet .client-name .deals {
  color: #000;
  margin-top: 15px;
  display: flex;
  align-items: center;
}

.cabinet .client-name .deals span {
  margin-left: 15px;
  background: #259da8;
  height: 27px;
  width: 35px;
  border-radius: 30px;
  font-size: 20px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0.8;
  /* padding: 7px 10px 4px 7px; */
  padding: 0;
  padding-top: 2px;
  padding-right: 1px;
  margin-top: -4px;
}

.cabinet .client-name .containers {
  font-family: Helvetica;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.cabinet .client-name .containers span {
  margin-left: 10px;
  background: #259da8;
  height: 24px;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  min-width: 80px;
  text-align: center;
}

.cabinet .search-cont ::-webkit-input-placeholder {
  color: #259da8;
  font-size: 14px;
  font-weight: 100;
}

.cabinet #search_form {
  width: 100%;
  margin-top: 25px;
}

#search_form_text {
  font-size: 15px;
  max-width: 250px;
  width: 100%;
  line-height: 40px;
  vertical-align: middle;
  padding: 0 0 0 20px;
  color: #6d6c6c;
  float: right;
  border-radius: 50px;
  border: 1px solid #99a6c2;
}

.cabinet .search-cont a.clearSearch {
  display: none;
  height: 25px;
  width: 19px;
  position: absolute;
  top: 7px;
  right: 40px;
}

.cabinet .search-cont * {
  box-sizing: border-box;
}

.cabinet .search-cont .form-group {
  position: relative;
}

.cabinet .search-cont .form-group button {
  position: absolute;
  top: 7px;
  right: 6px;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  cursor: pointer;
  outline: 0;
}

.cabinet .status-cont label {
  font-weight: bold;
  color: #828282;
  display: block;
}

.cabinet .search-cont .form-group button {
  background-position: -6px -36px;
}

.cabinet .search-cont a.clearSearch {
  background-position: -37px -36px;
}

/* search_form_status */
#search_form_status {
  overflow: hidden;
  border-radius: 50px;
  border: 1px solid #259da8;
}

#search_form_status div {
  float: left;
  /*border: 1px solid #259DA8;*/
  cursor: pointer;
  width: 33.3%;
  text-align: center;
  font-size: 16px;
  line-height: 40px;
}

#search_form_status div[data-type="current"] {
  border-radius: 50px;
}

#search_form_status div[data-type="all"] {
  /*border-top-right-radius: 50px;*/
  /*border-bottom-right-radius: 50px;*/
}

#search_form_status div:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-left: unset;
}

#search_form_status div:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-right: unset;
}
#search_form_status div:nth-child(2) {
  border-radius: 0;
  border-left: 1px solid #259da8;
  border-right: 1px solid #259da8;
}

#search_form_status .active {
  background: #259da8;
  color: white;
  border-radius: 50px;
}

.cabinet .mainTable {
  margin-top: 10px;
}

.cabinet .mainTable table {
  border-radius: 30px;
  color: #565656;
  width: 100%;
}

.cabinet .mainTable table a {
  font-size: 14px;
  color: #259da8;
  text-decoration: underline;
}

.cabinet .marline-tracking-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 26px;
  max-width: 172px;
  padding: 3px 4px 3px 7px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #147f8b;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.cabinet .marline-tracking-trigger:hover,
.cabinet .marline-tracking-trigger:focus-visible {
  background: #eaf8f9;
  color: #066c78;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(28, 157, 170, 0.14);
}

.cabinet .marline-tracking-trigger__number {
  max-width: 142px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cabinet .marline-tracking-trigger__icon {
  display: inline-flex;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  opacity: 0.85;
}

.cabinet .marline-tracking-trigger__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.cabinet .marline-tracking-trigger--details {
  margin-top: -2px;
  max-width: 200px;
  vertical-align: middle;
}

.cabinet .mainTable table th,
.cabinet .mainTable table td {
  font-size: 14px;
  color: #000;
  line-height: 16px;
  vertical-align: middle;
}

.cabinet .mainTable table th {
  font-size: 12px;
  color: #fff;
}

.cabinet .mainTable table tr {
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}

.cabinet .mainTable table tr .comment {
  background: #f4fafb;
  border-radius: 20px;
  padding: 8px 4px;
  text-align: center;
}

.cabinet .mainTable table tr:hover .comment {
  background: #259da8;
  color: #fff;
}

.cabinet .mainTable table tr:hover td {
  color: #000;
  background: #fff;
}

.cabinet .mainTable table tr th:first-child {
  border-top-left-radius: 30px;
  padding-left: 15px;
}

.cabinet .mainTable table tr th:last-child {
  border-top-right-radius: 30px;
}

.cabinet .mainTable table tr td:last-child {
  padding-right: 10px;
}

.cabinet .mainTable table tr td:last-child span {
  display: block;
  min-height: 32px;
}

.cabinet .mainTable table tr .feedback-btn {
  display: none;
  height: 22px;
  background: #259da8;
  color: #fff;
  text-align: center;
  line-height: 19px;
  padding: 2px 15px 0px 15px;
  border: 1px solid #259da8;
  border-radius: 22px;
  text-decoration: none;
  position: absolute;
  right: -111px;
  margin-top: -4px;
}

.cabinet .mainTable table tr .feedback-btn:before {
  content: "";
  display: block;
  width: 110px;
  height: 40px;
  position: absolute;
  left: -25px;
  top: -10px;
}

.cabinet .mainTable table tr:hover .feedback-btn,
.cabinet .mainTable table td:hover .feedback-btn {
  display: inline-block;
}

.cabinet .mainTable table tr .feedback-btn:hover {
  background: #e64539;
  border: 1px solid #e64539;
  color: #fff;
}

.cabinet .mainTable table th {
  border-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  background: #259da8;
  font-weight: 700;
  padding: 13px 9px;
  text-align: center;
}

.cabinet .mainTable table td {
  padding: 9px 0 9px 9px;
  position: relative;
  text-align: center;
}

.cabinet .mainTable table tr:hover td {
  cursor: pointer;
  background: #fff;
}

/* Deal row colors are assigned through statuses.css_class. */
.cabinet .mainTable table tr.cabinet-status-green td {
  background-color: #c8e6c9;
}

.cabinet .mainTable table tr.cabinet-status-blue td {
  background-color: #e3f2fd;
}

.cabinet .mainTable table tr.cabinet-status-yellow td {
  background-color: #fff9c4;
}

.cabinet .mainTable table tr.cabinet-status-white td {
  background-color: #fff;
}

.cabinet .mainTable table tr.cabinet-status-green:hover td,
.cabinet .mainTable table tr.cabinet-status-blue:hover td,
.cabinet .mainTable table tr.cabinet-status-yellow:hover td {
  background-color: #fff;
}

/* Datatable Plugin CSS */
.cabinet .mainTable table.dataTable thead th,
.cabinet .mainTable table.dataTable thead td {
  /*border-bottom: 1px solid #344d86;*/
}

.cabinet .mainTable table.dataTable thead .heading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cabinet .mainTable table.dataTable thead .sorting .icon {
  display: inline-block;
  width: 15px;
  height: 20px;
  background-position: -4px -211px;
  margin-right: 5px;
}

.cabinet .mainTable table.dataTable thead .sorting_desc .icon {
  display: inline-block;
  width: 15px;
  height: 20px;
  background-position: -4px -328px;
  margin-right: 5px;
}

.cabinet .mainTable table.dataTable thead .sorting_asc .icon {
  display: inline-block;
  width: 15px;
  height: 20px;
  background-position: -4px -273px;
  margin-right: 5px;
}

.cabinet .mainTable table.dataTable.no-footer {
  border: none !important;
}

.canceled > td,
.canceled > td a {
  color: #bba1a1 !important;
  text-decoration: line-through;
}

/* Cabinet Popup */
.mfp-container .mfp-content {
  margin-top: 40px;
}

.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -moz-transform: translateY(0) perspective(600px) rotateX(0);
  -ms-transform: translateY(0) perspective(600px) rotateX(0);
  -o-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}

.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

.feedback-popup-block {
  max-width: 1230px;
  background: #fff;
  position: relative;
  padding: 40px 0 40px 0;
  margin: 0 auto;
  width: 100%;
}

.feedback-popup-block .container {
  max-width: 100% !important;
}

.feedback-popup-block .info,
.feedback-popup-block .route,
.feedback-popup-block .docs {
  padding-left: 80px;
  padding-right: 80px;
}

.feedback-popup-block .containers {
  padding-left: 0;
  padding-right: 0;
}

.feedback-popup-block h3 {
  margin-bottom: 11px;
  font-size: 16px;
  font-weight: 600;
}

.feedback-popup-block .contnumb {
  font-family: cousine, Helvetica, sans-serif;
  font-size: 15px !important;
  line-height: 19px;
  font-weight: 400;
}

.feedback-popup-block .clear {
  clear: both;
}

.feedback-popup-wrapper .mfp-close {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 19px;
  top: 19px;
  background-position: -7px -93px;
  font-size: 0;
}

.feedback-popup-block .mfp-close:active,
.feedback-popup-block .mfp-close:hover {
  background-position: -7px -93px;
  right: 19px;
  top: 19px;
}

.feedback-popup-block .info {
  margin-bottom: 30px;
}

.feedback-popup-block .info h2 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 31px;
}

.feedback-popup-block .info p {
  display: flex;
  align-items: flex-start;
}

.feedback-popup-block .info .info-fields p {
  margin: 0 0 6px;
}

.feedback-popup-block .info .info-fields p:last-child {
  margin-bottom: 0;
}

.feedback-popup-block .info h2 span {
  padding-left: 5px;
}

.feedback-popup-block .info .name,
.feedback-popup-block .info .description {
  font-size: 14px;
  line-height: 18px;
}

.feedback-popup-block .info .name {
  font-size: 14px;
  line-height: 18px;
  color: #8c8c8c;
  display: inline-block;
  min-width: 130px;
}

.feedback-popup-block .info .description {
  color: #000;
  display: inline-block;
  width: calc(100% - 130px);
}

.feedback-popup-block .info .comment,
.feedback-popup-block .info .comment:disabled {
  display: inline-block;
  background: #f4fafb;
  border-radius: 10px;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
  padding: 10px;
  width: 100%;
  border: 1px solid #f4fafb !important;
  height: 60px;
  min-height: 50px;
  margin-bottom: 10px;
}

.feedback-popup-block .info .comment:focus {
  border: 1px solid #259da8 !important;
}

.feedback-popup-block .button_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feedback-popup-block .result_info .icon-saved {
  width: 16px;
  height: 16px;
  background-position: -131px -72px;
  display: inline-block;
  margin-right: 3px;
  margin-bottom: -3px;
}

.feedback-popup-block .result_info,
.feedback-popup-block .edit_btn {
  display: block;
  float: right;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #259da8 !important;
  cursor: pointer;
}

.feedback-popup-block .edit_btn:hover {
  text-decoration: underline !important;
}

.feedback-popup-block .edit_btn .icon-edit {
  background-position: -133px -42px;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 3px;
  margin-bottom: -2px;
}

.feedback-popup-block .save_btn {
  display: block;
  height: 26px;
  padding-left: 15px;
  padding-right: 15px;
  float: right;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 25px;
  color: #fff !important;
  cursor: pointer;
  background: #259da8;
  border-radius: 40px;
  border: 1px solid #259da8;
}

.feedback-popup-block .save_btn:hover {
  color: #259da8 !important;
  cursor: pointer;
  background: #fff;
}

.feedback-popup-block .result_info {
  opacity: 0;
  transition: all 1.4s;
}
.feedback-popup-block .save_btn {
  display: none;
}

.feedback-popup-block .route {
  overflow: hidden;
  background: #f4fafb;
  padding-top: 19px;
  margin-bottom: 40px;
}
.feedback-popup-block .route__row {
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .feedback-popup-block .route__row {
    flex-wrap: wrap;
  }
}

.feedback-popup-block .route .route_item {
  position: relative;
  overflow: hidden;
  padding-left: 18px;
  padding-right: 18px;
  padding-bottom: 19px;
  width: 100%;
  flex: 1;
}
.feedback-popup-block .route .route_item.no-plan.active i:after {
  background-image: linear-gradient(
    90deg,
    #259da8,
    #259da8 40%,
    transparent 0%,
    transparent 100%
  );
  background-color: transparent;
}
.feedback-popup-block .route .route_item.plan {
  opacity: 0.4;
}
/* .feedback-popup-block .route .route_item.plan.plan--min i:after{
	display: none;
} */
.feedback-popup-block .route .max-col-width .route_item {
  max-width: 16.6%;
}
.feedback-popup-block .route .display-center .route_item {
  margin: 0 auto !important;
}

.feedback-popup-block .route .route_item:first-child {
  padding-left: 0;
  margin-left: 0;
}
.feedback-popup-block .route .route_item:last-child {
  width: 210px;
  flex: none;
}

.feedback-popup-block .route .route_item i.map-icon {
  background-position: -128px 0px;
  display: inline-block;
  width: 22px;
  height: 30px;
}

.feedback-popup-block .route .route_item i.map-icon:after {
  position: absolute;
  left: 55px;
  top: 14px;
  content: "";
  height: 1px;
  background-color: #259da8;
  background-size: 20px 1px;
  border: none;
  width: 100%;
  background-repeat: repeat;
  /* height: 1px;
	background-position: -4px -758px; */
}
.feedback-popup-block .route .route_item.plan i.map-icon:after {
  background-color: transparent !important;
  background-image: linear-gradient(
    90deg,
    #259da8,
    #259da8 40%,
    transparent 0%,
    transparent 100%
  );
}

.feedback-popup-block .route .route_item:first-child i.map-icon:after {
  left: 40px;
}

.feedback-popup-block .route .route_item:last-child i.map-icon:after {
  display: none;
}

.feedback-popup-block .route .route_item h2 {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
  margin-bottom: 0;
}

.feedback-popup-block .route .route_item p {
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 0;
}

.feedback-popup-block .route .route_item p.city {
  min-height: 42px;
}

.feedback-popup-block .route .route_item p.date {
  color: #7b7c7c;
}

.feedback-popup-block .route .route_item p.date .description {
  padding-left: 5px;
  font-weight: 600;
}

/*containers img*/
.feedback-popup-block .img_back_1 {
  background: url(/wp-content/themes/default/cabinet/images/status/1.png)
    no-repeat top 10px right 14px;
}

.feedback-popup-block .img_back_2 {
  background: url(/wp-content/themes/default/cabinet/images/status/2.png)
    no-repeat top 10px right 14px;
}

.feedback-popup-block .img_back_3 {
  background: url(/wp-content/themes/default/cabinet/images/status/3.png)
    no-repeat top 17px right 21px;
}

.feedback-popup-block .img_back_4 {
  background: url(/wp-content/themes/default/cabinet/images/status/4.png)
    no-repeat top 10px right 14px;
}

/*containers img*/

.feedback-popup-block .containers .row {
  margin-right: 0;
  margin-left: 0;
}

.feedback-popup-block .containers table {
  width: 100%;
}

.feedback-popup-block .containers table th {
  background: #f4fafb;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
  height: 28px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
}

.feedback-popup-block .containers table td {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
  padding: 10px 15px;
  text-align: center;
}

.feedback-popup-block .containers h3 {
  padding-left: 80px;
}

.feedback-popup-block table thead tr th:first-child,
.feedback-popup-block table tbody tr td:first-child {
  padding-left: 80px;
}

.feedback-popup-block table thead tr th:last-child,
.feedback-popup-block table tbody tr td:last-child {
  padding-right: 80px;
}

.feedback-popup-block .containers table tbody tr:hover td {
  background: #f4fafb;
  cursor: default;
}

.feedback-popup-block .docs {
  margin-bottom: 30px;
}

.feedback-popup-block .col-md-0-5 {
  width: 20px;
}

.feedback-popup-block .docs a {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #64b7c7;
}

/* icons */
.feedback-popup-block .docs .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-bottom: -3px !important;
}

.feedback-popup-block .docs .zip-icon {
  background-position: 1px -365px;
}
.feedback-popup-block .docs .rtf-icon,
.feedback-popup-block .docs .doc-icon,
.feedback-popup-block .docs .docx-icon {
  background-position: 1px -398px;
}
.feedback-popup-block .docs .xls-icon {
  background-position: 1px -430px;
}
.feedback-popup-block .docs .pdf-icon {
  background-position: 1px -462px;
}
.feedback-popup-block .docs .txt-icon {
  background-position: 1px -494px;
}
.feedback-popup-block .docs .jpeg-icon,
.feedback-popup-block .docs .jpg-icon {
  background-position: 1px -526px;
}
.feedback-popup-block .docs .png-icon {
  background-position: 1px -558px;
}
.feedback-popup-block .docs .undefined-icon {
  background-position: 1px -590px;
}

.feedback-popup-block .docs .docs_files div,
.feedback-popup-block .docs .docs_files a,
.feedback-popup-block .docs .docs_invoice {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  /*line-height: 16px;*/
  color: #64b7c7;
}

.feedback-popup-block .docs .docs_files div:not(.row),
.feedback-popup-block .docs .docs_files a {
  display: inline-block;
  padding-bottom: 13px;
}

.feedback-popup-block .docs .invoice_item {
  padding-bottom: 13px;
  /*min-width: 340px;*/
  display: flex;
  justify-content: space-between;
}

.feedback-popup-block .docs .invoice_item > span,
.feedback-popup-block .docs .invoice_item > a {
  display: inline-block;
  /* width: calc(100% - 235px); */
  padding-right: 5px;
}
.feedback-popup-block .docs .invoice_item > .link {
  width: calc(100% - 235px);
}

.feedback-popup-block .docs .invoice_item .sum {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
  display: inline-block;
  width: 110px;
  text-align: right;
}

.feedback-popup-block .docs .invoice_item .status {
  display: inline-block;
  width: 110px;
  text-align: right;
}

.feedback-popup-block .docs_invoice span > .icon,
.feedback-popup-block .docs .icon,
.feedback-popup-block .docs a .icon {
  display: inline-block;
  margin-right: 4px;
}

.docs_invoice .sum {
  text-align: right;
}

.feedback-popup-block .docs hr {
  size: 1px;
  margin-top: 15px;
  color: #e8e8e8;
  border: 1px solid #e8e8e8;
}

.ajax-form .row {
  margin-right: 0;
  margin-left: 0;
}

.feedback-popup-block label[data-type="good"] {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-right: 0 !important;
}

.feedback-popup-block label[data-type="satisfactorily"] {
  border-right: 0 !important;
}

.feedback-popup-block label[data-type="unsatisfactorily"] {
  border-right: 0 !important;
}

.feedback-popup-block label[data-type="poorly"] {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.feedback-form container {
  margin-top: 15px;
}

.feedback-popup-block .feedback-form .block {
  height: 25px;
  line-height: 20px;
  font-size: 14px;
  text-align: center;
  padding: 1px;
  border: 1px solid #259da8;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 0px;
}

.feedback-popup-block .feedback-form .choice {
  background: #259da8;
  color: white;
}

.feedback-popup-block .feedback-form a {
  text-decoration: none;
}

.feedback-popup-block .feedback-form a h2 {
  margin-bottom: 11px;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}

.feedback-popup-block .feedback-form a .arrow-top-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-position: -4px -711px;
  margin-left: 25px;
  margin-bottom: -2px;
  transition: all, 0.3s;
  transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.feedback-popup-block .feedback-form a .arrow-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 25px;
  margin-bottom: -2px;
  background-position: -4px -715px;
  transition: all, 0.3s;
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.feedback-popup-block .feedback-form h4 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
}

.feedback-popup-block .feedback-form .radio {
  display: none;
}

.feedback-popup-block .feedback-form .label {
  color: #259da8 !important;
  display: inline-block;
  vertical-align: middle;
  margin: 0 31px 0 5px;
}

.feedback-popup-block .feedback-form .form-group {
  margin-bottom: 17px;
}

.feedback-popup-block .feedback-form .form-group textarea {
  width: 100%;
  max-width: 495px;
  height: 44px;
  min-height: 44px;
  border: 1px solid #99a6c2;
  border-radius: 5px;
  padding: 6px 10px;
  color: #259da8;
  font-size: 13px;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: -5px;
}

.feedback-popup-block .feedback-form input[type="submit"] {
  background: #259da8;
  border: 1px solid #259da8;
  color: #fff;
  height: 31px;
  font-size: 14px;
  padding: 0 15px;
  border-radius: 31px;
  cursor: pointer;
}

.feedback-popup-block .feedback-form input[type="submit"]:hover {
  background: #e64539;
  border: 1px solid #e64539;
  color: #fff;
}

.thanks-block {
  text-align: center;
}

.thanks-block .icon-big-ok {
  display: inline-block;
  width: 19px;
  height: 15px;
  background: url("/wp-content/themes/default/cabinet/images/checkmark.svg")
    left center no-repeat;
  background-size: 100% 100%;
  margin-right: 5px;
}

.thanks-block h3 {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #075fa4;
  margin-left: -25px;
  margin-bottom: 20px;
}

.thanks-block p {
  color: #828282;
  font-size: 14px;
}

.footer .row {
  width: 100%;
}
.display-sm,
.orders-wrapper,
.cabinet .mainTable .touch_demo,
.header2 .mobile {
  display: none;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  width: 98%;
  left: 1%;
}
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  background: #f4fafb;
  border-radius: 20px;
  height: 10px;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 10px;
  background: #259da8;
  border-radius: 20px;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal
  .mCSB_dragger.mCSB_dragger_onDrag
  .mCSB_dragger_bar {
  height: 10px;
  background: #259da8;
  border-radius: 20px;
}

.scrollTopBtn {
  position: fixed;
  z-index: 99;
  bottom: 30px;
  right: 30px;
  min-height: 30px;
  display: none;
}

#items-per-page {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  margin-top: -80px;
}

.cabinet-wrapper .jq-selectbox__select {
  background: #fff;
  border: 1px solid #259da8;
  color: #259da8;
  box-shadow: none;
  border-radius: 10px;
  padding: 0 35px 0 10px;
}

.cabinet-wrapper .jq-selectbox__trigger {
  border: 0;
}

.cabinet-wrapper .jq-selectbox__dropdown {
  background: #fff;
  border: 1px solid #259da8;
  color: #259da8;
  box-shadow: none;
  border-radius: 10px;
}

.cabinet-wrapper .jq-selectbox__dropdown li:hover,
.cabinet-wrapper .jq-selectbox__dropdown .selected,
.cabinet-wrapper .jq-selectbox__dropdown .sel {
  background: #259da8;
  color: #fff;
  border-radius: 9px;
}

.cabinet-wrapper .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cabinet-wrapper .jq-selectbox__trigger-arrow {
  border: 0;
  top: 15px;
  width: 15px;
  height: 15px;
  background: url("../images/sprite.png") no-repeat;
  background-position: -5px -72px;
  transform: rotate(-90deg);
}

.cabinet-wrapper
  #items-per-page
  .jq-selectbox:hover
  .jq-selectbox__trigger-arrow,
.cabinet-wrapper #items-per-page .jq-selectbox__trigger-arrow {
  top: 10px;
}

.overflow-x-scroll {
  width: 100%;
  overflow-x: auto;
}

.cabinet-filters {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 5px;
  /* max-width: 33.333%;
	width: 100%; */
}
.cabinet-filters .jq-selectbox,
.cabinet-filters input {
  flex: 1;
  max-width: 200px;
}

input.daterangepicker-input,
.cabinet-filters .jq-selectbox__select {
  border: 1px solid #99a6c2;
  border-radius: 50px;
  height: 42px;
}

input.daterangepicker-input,
input.daterangepicker-input::placeholder,
.cabinet-filters .jq-selectbox__select,
#search_form_text,
#search_form_text::placeholder {
  font:
    16px/42px Arial,
    sans-serif;
}
input.daterangepicker-input::placeholder,
input.daterangepicker-input {
  color: #259da8;
  padding: 0 8px;
  background: #fff;
}

.daterangepicker .drp-buttons .btn {
  height: auto;
  width: auto;
  line-height: 1;
  color: #000;
  border-color: #259da8;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #259da8;
}

.header2 .header2__langs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* Response Media CSS */
@media (max-width: 1680px) {
  .container {
    max-width: calc(100% - 30px);
  }
  .container.cabinet {
    margin-left: 15px;
    margin-right: 15px;
    max-width: calc(100% - 30px);
  }
  .cabinet .mainTable table tr th:last-child,
  .cabinet .mainTable table tr td:last-child {
    min-width: 150px;
  }
}

@media (max-width: 1440px) {
  .cabinet {
    padding-bottom: 15px;
  }
  .cabinet .mainTable table.dataTable thead th,
  .cabinet .mainTable table.dataTable thead td {
    min-width: 75px;
  }
  .cabinet .mainTable {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow-x: hidden;
  }
  .cabinet .mainTable .touch_demo {
    /*display: block;*/
    position: absolute;
    width: 200px;
    left: 50%;
    margin-left: -100px;
    top: 200px;
    z-index: 5;
  }
  .header2__menu li a,
  .header1__fixed li a {
    padding-left: 7px;
    padding-right: 7px;
  }
  .header2__btn {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header2__rightbox > * {
    margin-right: 25px;
  }
  .feedback-popup-block {
    max-width: 1100px;
  }
}

@media (max-width: 1200px) {
  .header2__menu li a,
  .header1__fixed li a {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 13px;
  }
  .header2__rightbox > *:last-child {
    margin-right: 0px;
  }
}

@media (max-width: 1000px) {
  .cabinet .search-cont {
    width: 100%;
    margin-bottom: 15px;
  }

  .cabinet .status-cont {
    width: 100%;
    max-width: 100%;
  }

  .cabinet .search-cont .form-group button {
    right: 0;
  }

  .cabinet .mainTable table th,
  .cabinet .mainTable table td {
    padding: 16px 0 16px 20px;
  }

  .in {
    margin: 0 10px;
  }

  .logo {
    left: 150px;
  }

  .cabinet .mainTable table th,
  .cabinet .mainTable table td {
    padding: 2px 0 2px 12px;
    font-size: 12px;
  }

  .cabinet .mainTable table.dataTable thead .sorting {
    background-position: -7px -203px !important;
  }

  .cabinet .mainTable table.dataTable thead .sorting_desc {
    background-position: -7px -319px !important;
  }

  .cabinet .mainTable table.dataTable thead .sorting_asc {
    background-position: -7px -265px !important;
  }

  .cabinet .mainTable table tr:hover .feedback-btn,
  .cabinet .mainTable table td:hover .feedback-btn {
    display: none;
  }

  .cabinet .client-name p {
    font-size: 18px;
  }

  #search_form_status div {
    font-size: 11px;
  }
}

@media (max-width: 992px) {
  .header2 {
    background-color: #d4f9fe;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1000;
  }
  .header2 .desktop {
    display: none;
  }
  .breadcrumbs {
    margin-top: 60px;
  }
  .header2 .mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header2 .mobile .col-xs-6 {
    width: 50%;
    position: relative;
    z-index: 1001;
  }
  .header2 .mobile .col-xs-6:last-child {
  }
  .header2 .mobile .header2__open-menu,
  .header2 .mobile .header2__open-menu:before,
  .header2 .mobile .header2__open-menu * {
    transition: all 0.5s;
  }
  .header2 .mobile .header2__open-menu.active:after {
    display: none;
  }
  .header2 .mobile .header2__open-menu.active span {
    transform: rotate(-45deg);
  }
  .header2 .mobile .header2__open-menu.active:before {
    bottom: 10px;
    transform: rotate(45deg);
  }
  .header2 .mobile .header2__menu {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 60px;
    height: 100vh;
    width: 100vw;
    z-index: 999;
    background-color: #d4f9fe;
    opacity: 0;
    transition: all 0.5s;

    -webkit-transform: translateY(-110%);
    -ms-transform: translateY(-110%);
    transform: translateY(-110%);
  }
  .header2 .mobile .header2__menu.active {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  .header2 .mobile .menu {
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
  .header2 .mobile .menu li a {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  .header2 .mobile .menu_contacts {
    font-size: 20px;
    color: #000;
    text-align: center;
  }
  .header2 .mobile .menu_contacts__item span {
    padding-right: 10px;
  }
  .header2 .mobile .menu_contacts__item a {
    color: #000;
  }
  .header2 .mobile .header2__btn {
    font-size: 20px;
    max-width: 290px;
    margin: 20px auto;
  }
  .header2 .mobile .header2__langs {
    margin-top: 10px;
    text-align: center;
  }
  .header2 .mobile .header2__langs a {
    font-size: 20px;
  }
  #search_form_text {
    max-width: 200px;
  }
}

@media (max-width: 900px) {
  .feedback-popup-block .info .name {
    min-width: auto;
    padding-right: 10px;
  }
}

@media (max-width: 769px) {
  .hidden-sm {
    display: none;
  }
  .display-sm {
    display: flex;
  }
  .header2 .mobile .header2__langs {
    margin-top: 15px;
  }
  .cabinet {
    box-shadow: none;
  }
  .cabinet .client-name {
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
    max-width: 60%;
  }
  .cabinet .status-cont {
    padding-left: 0;
    padding-right: 0;
  }
  .cabinet .client-name .deals span {
    font-size: 18px;
  }
  .cabinet .client-name .containers {
    font-size: 14px;
  }
  .cabinet .client-name .containers span {
    font-size: 12px;
    min-width: 70px;
  }
  #search_form_status div {
    font-size: 12px;
  }
  .cabinet .search-cont a.clearSearch {
    top: 2px;
  }
  .cabinet .status-cont {
    margin-top: 20px;
    margin-bottom: 0px;
  }
  .cabinet #search_form {
    margin-top: 0px;
  }
  .cabinet .search-cont {
    padding-right: 0;
    padding-top: 10px;
  }
  .exit_btn {
    top: 15px;
    right: 25px;
  }
  #search_form_status div,
  #search_form_text,
  .cabinet-filters .jq-selectbox__select,
  .cabinet-filters input {
    line-height: 30px;
    height: 30px;
    padding-left: 20px;
  }

  input.daterangepicker-input,
  .cabinet-filters .jq-selectbox__select,
  #search_form_text,
  #search_form_text::placeholder {
    font:
      14px/30px Arial,
      sans-serif;
  }

  .cabinet-wrapper .jq-selectbox:hover .jq-selectbox__trigger-arrow,
  .cabinet-wrapper .jq-selectbox__trigger-arrow {
    top: 10px;
  }
  .cabinet .search-cont .form-group button {
    top: 1px;
  }
  .cabinet .mainTable .touch_demo {
    display: none;
  }
  .mainTable {
    display: none;
  }
  .orders-wrapper {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .order__item {
    background: #f4fafb;
    border-radius: 15px;
    padding: 7px 10px;
    margin-bottom: 10px;
    width: calc(50% - 5px);
    margin-right: 5px;
  }
  .order__item:nth-child(2n) {
    margin-right: 0;
    margin-left: 5px;
  }

  /* Deal card colors are assigned through statuses.css_class. */
  .order__item.cabinet-status-green {
    background-color: #c8e6c9;
  }

  .order__item.cabinet-status-blue {
    background-color: #e3f2fd;
  }

  .order__item.cabinet-status-yellow {
    background-color: #fff9c4;
  }

  .order__item.cabinet-status-white {
    background-color: #fff;
  }

  /* Mobile order item hover: white background with dark text */
  .order__item:hover {
    background-color: #fff !important;
  }

  .order__item:hover .item__row span,
  .order__item:hover .item__row {
    color: #000 !important;
  }

  .item__row {
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 5px;
  }
  .item__title span,
  .item__row span {
    display: inline-block;
    width: 70px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
  }
  .item__title a,
  .item__title span {
    font-size: 14px;
    line-height: 16px;
    color: #259da8;
    text-transform: uppercase;
  }
  .item__row.status {
    color: #259da8;
  }
  .footer .container1 {
    padding-left: 0;
    padding-right: 0;
  }
  .footer .row {
    width: auto;
  }
  .footer__address {
    margin-bottom: 25px;
  }
  .footer__address a,
  .footer__address p {
    color: #000;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    font-weight: 600;
  }
  .footer__right {
    text-align: right;
  }
  .footer__right .chatbot {
    display: flex;
    justify-content: flex-end;
  }
  .footer__left a {
    display: block;
    max-width: 70%;
    margin: 0 auto 15px auto;
  }
  .my-mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: 0;
  }
  .feedback-popup-block {
    min-height: 1270px !important;
  }
  .feedback-popup-block .mfp-close {
    width: 18px;
    height: 18px;
    position: absolute;
    left: 19px;
    top: 40px;
    background-position: -133px -103px;
    font-size: 0;
  }
  .feedback-popup-block .mfp-close:hover {
    background-position: -133px -103px;
  }
  .mfp-wrap {
    top: 0 !important;
  }
  .mfp-container {
    padding: 0 !important;
  }
  .feedback-popup-block .info h2 {
    text-align: center;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #259da8;
  }
  .feedback-popup-block .info p {
    margin-bottom: 5px;
  }
  .feedback-popup-block .info .name {
    padding-left: 0;
    padding-right: 6px;
    min-width: auto;
  }
  .feedback-popup-block .info .comment {
    padding: 0;
    background: #fff;
    border: 0 !important;
    border-radius: 0;
  }
  .feedback-popup-block .info,
  .feedback-popup-block .route,
  .feedback-popup-block .docs {
    padding-left: 15px;
    padding-right: 15px;
  }
  .feedback-popup-block .route {
    margin-bottom: 30px;
  }
  .feedback-popup-block .route .route_item:first-child,
  .feedback-popup-block .route .route_item {
    position: relative;
    overflow: hidden;
    padding-left: 80px;
    padding-right: 0px;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-bottom: 12px;
    margin-bottom: 5px;
  }
  .feedback-popup-block .route .route_item i.map-icon {
    position: absolute;
    left: 0;
  }
  .feedback-popup-block .route .route_item h2 {
    margin-bottom: 5px;
  }
  .feedback-popup-block .route .route_item p.city {
    min-height: auto;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 12px;
  }
  .feedback-popup-block .route .route_item p.date {
    font-size: 13px;
    line-height: 15px;
    color: #8c8c8c;
  }
  .feedback-popup-block .route .route_item:first-child i.map-icon:after,
  .feedback-popup-block .route .route_item i.map-icon:after {
    position: absolute;
    left: -19px;
    top: 60px;
    content: "";
    height: 1px;
    width: 60px;
    background-position: -4px -758px;
    transform: rotate(90deg);
  }
  .feedback-popup-block .containers h3 {
    padding-left: 15px;
  }
  .feedback-popup-block .containers p {
    font-family: Roboto;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 8px;
  }
  .feedback-popup-block .containers p span {
    padding-left: 15px;
    font-weight: 500;
    display: inline-block;
    width: 130px;
    padding-right: 5px;
  }
  .slick-dotted.slick-slider {
    margin-top: 80px;
  }
  .slick-dots {
    top: -75px;
    /*height: 40px;*/
    /*background: rgba(37, 157, 168, 0.05);*/
    text-align: left;
    padding-left: 15px;
    max-width: 100%;
    height: 50px;
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
  }
  .slick-dots .mCSB_container {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
  }
  .slick-dots .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    width: 100%;
    left: 0%;
  }
  .slick-dots
    .mCSB_scrollTools.mCSB_scrollTools_horizontal
    .mCSB_dragger
    .mCSB_dragger_bar,
  .slick-dots
    .mCSB_scrollTools.mCSB_scrollTools_horizontal
    .mCSB_dragger.mCSB_dragger_onDrag
    .mCSB_dragger_bar {
    border-radius: 10px;
    /*border-top-left-radius: 0;*/
    /*border-top-right-radius: 0;*/
  }
  .feedback-popup-block h3 {
    margin-bottom: 25px;
  }
  .slick-dots {
    margin-left: 15px !important;
  }
  .container-slick .slick-dots li {
    background: rgba(37, 157, 168, 0.05);
    text-align: center;
    height: 40px;
    width: 40px;
    line-height: 40px;
    margin: 0;
    display: inline-block;
  }
  .container-slick .slick-dots li button {
    background: transparent;
    /*border-radius: 4px;*/
    font-family: Roboto;
    font-size: 18px;
    color: rgba(37, 157, 168, 0.71);
    text-align: center;
    height: 40px;
    width: 40px;
    line-height: 40px;
    display: block;
    cursor: pointer;
    border: 0;
    padding: 0;
    outline: none;
  }
  .slick-dots li button:before {
    display: none;
  }
  .slick-dots li.slick-active button {
    background: #259da8;
    color: #fff;
    border-radius: 4px;
  }
  .feedback-popup-block .route .route_item {
    margin-left: 0px;
  }
  .cabinet .client-name h2 {
    font-size: 13px;
  }

  .cabinet #search_form {
    float: inherit;
    width: 100%;
  }

  .feedback-popup-block .col-md-0-5 {
    width: 0;
  }

  .feedback-popup-block .containers .row {
    border-bottom: 1px solid #e0dbdb;
    padding-bottom: 12px;
    margin-bottom: 15px;
  }

  .containers .col-md-1_5 {
    -ms-flex: 0 0 13%;
    flex: 0 0 13%;
    max-width: 13%;
  }

  .mfp-wrap {
    height: 100% !important;
  }
  .mfp-container {
    position: relative;
  }
  .mfp-content {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: calc(100% - 400px) !important;
    background: #fff;
  }
  #items-per-page {
    margin-top: -40px;
  }

  .cabinet-filters {
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .containers .col-md-1_5 {
    -ms-flex: 0 0 13%;
    flex: 0 0 13%;
    max-width: 13%;
  }
}

@media (max-width: 576px) {
  .cabinet .search-cont {
    padding-left: 0;
  }
  #search_form_text,
  .cabinet-filters,
  .cabinet-filters .jq-selectbox,
  .cabinet-filters input {
    max-width: 100%;
    width: 100%;
  }
  .order__item {
    width: 100%;
    margin-right: 0;
  }
  .order__item:nth-child(2n) {
    margin-right: 0;
    margin-left: 0;
  }

  .cabinet-filters {
    padding: 0;
    gap: 10px;
  }

  .cabinet-filters,
  .cabinet-filters .jq-selectbox,
  .cabinet-filters input {
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  .footer__address {
    margin-bottom: 0;
  }
  .footer__right .chatbot {
    justify-content: center;
  }
}

@media (max-width: 410px) {
  #search_form_status div {
    font-size: 12px;
  }

  .hide3 {
    display: none;
    width: 0;
  }
}

@media (max-width: 320px) {
}

/* -------------------------------------- */

.daterangepicker {
  -webkit-box-shadow: 0px 10px 38px 0px rgba(0, 0, 0, 0.58);
  -moz-box-shadow: 0px 10px 38px 0px rgba(0, 0, 0, 0.58);
  box-shadow: 0px 10px 38px 0px rgba(0, 0, 0, 0.58);
}
