:root {
  --color-blue: #3db9d8;
  --color-dark-blue: #35506d;
  --color-yellow: #f8ad49;
  --color-light-grey: #c4cad0;
  --color-green: #4ed07d;
}
body,
html {
  overflow-x: hidden;
}
body {
  padding: 0;
  margin: 0;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
  display: block;
  width: 100%;
  position: relative;
  right: 0;
  -webkit-transition: right 0.5s ease;
  -moz-transition: right 0.5s ease;
  transition: right 0.5s ease;
  background: #fff;
}
body:after {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 999;
  padding: 20px;
  box-sizing: border-box;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.33);
  text-align: center;
  -webkit-transition: all 0.3s linear ;
  transition: all 0.3s linear ;
  content: "";
}
body.show-dark-background:after {
  visibility: visible;
  -webkit-transition: all 0.3s linear ;
  transition: all 0.3s linear ;
}
body:not(.loaded-page) .open-city-box .search_form:before,
body:not(.loaded-page) .open-city-box .select-city-box,
body:not(.loaded-page) .form-with-suggestions.search_form .results-container,
.hidden-until-loaded{
  top: -999rem !important
}
body,
html {
  padding: 0;
  margin: 0;
}
.js-teleport-link,
.nohref-link {
  cursor: pointer;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.paragraph-title{
  font-size: 1.2rem;
  font-weight: 600;
  color: #334e6f;
  margin: 27px 0 2px
}

label,
legend{
  display:block;
  margin-bottom:5px;
  font-weight:700
}
input + label{
  display: inline-block;
}
fieldset,
form {
  margin-bottom: 0;
}
input[type="checkbox"],
input[type="radio"] {
  display: inline;
  vertical-align: middle;
  margin: 3px;
}
input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"]:not(.search_location),
input[type="url"],
select,
textarea {
  padding: 13px 20px;
  outline: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  display: block;
  color: grey;
  font-size: 14px;
  line-height: 1.7;
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-light-grey);
  background: 0 0;
  box-sizing: border-box;
  color: inherit;
  border-radius: 24px;
}
input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
textarea {
  -webkit-appearance: none;
}
textarea {
  resize: none;
  height: 150px;
}
input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
select {
  height: 50px;
}
.btn-bordered,
button,
input[type="reset"],
input[type="submit"] {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  padding: 13px 30px;
  outline: 0;
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  border-radius: 24px;
  font-weight: 600;
}
.btn-bordered {
  color: var(--color-blue);
  border: 1px solid;
}
.btn-bordered {
  margin-bottom: 0;
}
.btn-bordered:hover {
  background: var(--color-blue);
  color: #fff;
}
.btn-bordered--thin {
  border: 1px solid var(--color-blue);
  border-radius: 36px;
  color: var(--color-dark-blue);
  font-size: 15px;
  line-height: 1.2;
  text-transform: none;
  padding: 6px 26px;
  font-weight: 500;
  box-sizing: border-box;
  text-align: center;
}
.btn-bordered--thin:hover {
  background-color: var(--color-blue);
  color: #fff;
}
.btn-bordered--medium {
  padding: 8px 15px;
  font-weight: 500;
  font-size: 15px;
}
  .btn-bordered--square{
    border-radius: 4px;
    border-color: #C4CAD0;
    padding: 6px 12px;
    color: var(--color-dark-blue);
    font-size: 15px;
    line-height: 1.33;
    font-weight: 400;
    cursor: pointer;
  }
  .btn-bordered--square:hover{
    border-color: var(--color-blue);
  }
.btn-bordered--active {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: #fff;
}

  .btn-bordered--green{
    border-color: #3ed376
  }
    .btn-bordered--green:hover{
      background: #3ed376
    }

.btn-more {
  padding-left: 40px;
  position: relative;
  color: #8a95a1;
  cursor: pointer;
}
.btn-more:before {
  font-family: Work Sans;
  font-weight: 500;
  text-align: left;
  font-size: 34px;
  color: var(--color-light-grey);
  line-height: 8px;
  position: absolute;
  left: -1px;
  top: 0;
  content: "...";
}
.btn-iconed {
  padding-left: 1.2em;
  position: relative;
  cursor: pointer;
}
.btn-iconed i {
  font-size: 0.95em;
  position: absolute;
  left: 0;
  top: 0.2em;
}
.more-photoes-link{
  cursor: pointer;
}
@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
    visibility: visible;
  }
  25% {
    display: block;
    opacity: 0.25;
    visibility: visible;
  }
  50% {
    display: block;
    opacity: 0.5;
    visibility: visible;
  }
  100% {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
    visibility: visible;
  }
  25% {
    display: block;
    opacity: 0.25;
    visibility: visible;
  }
  50% {
    display: block;
    opacity: 0.5;
    visibility: visible;
  }
  100% {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  25% {
    display: block;
    opacity: 0.5;
    visibility: visible;
  }
  50% {
    display: block;
    opacity: 0.25;
    visibility: visible;
  }
  100% {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  25% {
    display: block;
    opacity: 0.5;
    visibility: visible;
  }
  50% {
    display: block;
    opacity: 0.25;
    visibility: visible;
  }
  100% {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}
input[type="checkbox"] {
  display: inline-block !important;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  line-height: 0;
  outline: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -ms-box-szing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  background: #fff;
  border: 1px solid var(--color-light-grey);
  vertical-align: middle;
}
input[type="checkbox"]:before {
  content: "\2713";
  width: 18px;
  line-height: 18px;
  display: inline-block;
  text-align: center;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  font-size: 19px;
  line-height: 18px;
  text-align: center;
  z-index: 1;
  opacity: 0;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.theme_social_color_wrapper .wp-picker-input-wrap .wp-picker-clear:hover,
button:hover,
input[type="submit"]:hover {
  background: #fff;
  border-color: var(--color-light-grey);
}
[class*="span"] {
  float: left;
  min-height: 1px;
}
.link{
  cursor: pointer;
  display: inline;
  color: #28b8dc;
}
.bold-t {
  font-weight: 700;
}
.main_wrapper .sidebar-container .widget a.chosen-single,
.main_wrapper .sidebar-container .widget select {
  border-color: var(--color-light-grey) !important;
  padding-left: 20px;
  padding-right: 40px;
  height: 40px;
  border-radius: 50px;
}
.main_wrapper .sidebar-container .widget a.chosen-single:after {
  right: 18px;
}
.main_wrapper .sidebar-container .widget a.chosen-single span {
  line-height: 38px;
  font-size: 14px;
  color: #8995a2 !important;
  width: 100%;
}
.main_wrapper .sidebar-container .widget .chosen-container .chosen-drop {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) !important;
}
.main_wrapper .sidebar-container .widget .chosen-container .chosen-drop li {
  transition: color 0.3s;
}
textarea::-webkit-input-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
textarea:-moz-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
textarea::-moz-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
textarea:-ms-input-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="text"]::-webkit-input-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="text"]:-moz-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="text"]::-moz-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="text"]:-ms-input-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="email"]::-webkit-input-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="email"]:-moz-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="email"]::-moz-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="email"]:-ms-input-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="url"]::-webkit-input-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="url"]:-moz-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="url"]::-moz-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="url"]:-ms-input-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="tel"]::-webkit-input-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="tel"]:-moz-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="tel"]::-moz-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
input[type="tel"]:-ms-input-placeholder {
  color: inherit !important;
  font-family: inherit !important;
}
h5, h5 a, h5 span {
    font-size: 18px;
    line-height: 28px;
}
#container,
.container {
  --container-width: 940px;
  width: var(--container-width);
  margin-right: auto;
  margin-left: auto;
}
#container:after,
#container:before,
.container:after,
.container:before {
  display: table;
  line-height: 0;
  content: "";
}
#container:after,
.container:after {
  clear: both;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row-flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}
  .row-flex > *[class*=col] {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
  }
.row:after,
.row:before {
  display: table;
  line-height: 0;
  content: "";
}
.row:after {
  clear: both;
}
.row > [class*="span"] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.clearfix:after,
.clearfix:before {
  display: table;
  line-height: 0;
  content: "";
}
.clear,
.clearfix:after,
.page-link {
  clear: both;
}
#container,
.container {
  --container-width: 1170px;
  max-width: 100%;
  position: relative;
}
.main_content #container,
.main_content .container {
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .row .span12 {
    width:100%;
  }

  .row .span11 {
    width: 91.66666666666666%;
  }

  .row .span10 {
    width: 83.33333333333334%;
  }

  .row .span9 {
    width: 75%;
  }

  .row .span8 {
    width: 66.66666666666666%;
  }

  .row .span7 {
    width: 58.333333333333336%;
  }
  .row .span6 {
    width: 50%;
  }

  .row .span5 {
    width: 41.66666666666667%;
  }

  .row .span4 {
    width: 33.33333333333333%;
  }

  .row .span3 {
    width: 25%;
  }

  .row .span1-5 {
    width: 20%;
  }

  .row .span2 {
    width: 16.666666666666664%;
  }

  .row .span1 {
    width: 8.333333333333332%;
  }
}
@media only screen and (min-width: 768px) {
  #main_content .top-block {
    min-height: max(calc(100vh), 400px);
    padding-top: 30.5vh !important;
    position: relative;
    box-sizing: border-box;
  }
  .blocker .modal .bottom-part{
    margin-top: 8px;
  }
  .blocker .modal .bottom-part > .btn.btn-default{
    margin-bottom: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  #main_content .top-block {
    padding-top: 20vh !important;
  }
}
#main_content .top-block .top-block-bg {
  height: 100vh;
  position: absolute !important;
  top: -40px;
  background: #fff;
  z-index: -1;
}
#main_content .top-block {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}
#main_content .top-block .top-block-bg {
  width: 100vw;
  height: 100%;
  position: absolute !important;
  top: 0;
  background: #fff;
  z-index: -1;
  left: 50%;
  margin-left: -50vw;
}
@media (min-width: 1200px) {
  .row > [class*="span"] {
    float: left;
    min-height: 1px;
  }
  .row:after,
  .row:before {
    display: table;
    line-height: 0;
    content: "";
  }
  .row:after {
    clear: both;
  }
}
ul {
  margin: 0;
  padding: 0 0 20px 0;
}
::selection {
  opacity: 1;
}
::-moz-selection {
  opacity: 1;
}
address,
p {
  margin: 0 0 16px 0;
  padding: 0;
}
a,
a:focus,
a:hover {
  text-decoration: none;
  outline: 0 !important;
}
a:hover {
  color: inherit;
}
a {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
img {
  vertical-align: top;
  outline: 0 !important;
  max-width: 100%;
  height: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.a-center {
  text-align: center;
}
.a-left {
  text-align: left;
}
.a-right {
  text-align: right;
}
.dn {
  display: none;
}
.clear {
  clear: both;
  height: 0;
  font-size: 0;
}
.non-visible{
  opacity: 0;
  visibility: hidden;
}
body,
form,
iframe {
  margin: 0;
  padding: 0;
}
iframe {
  vertical-align: top;
  width: 100%;
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
}
iframe,
img,
table {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: middle;
  width: 100%;
}
table td,
table th {
  padding: 5px 10px;
  text-align: center;
}
table tbody tr,
table tfoot tr,
table thead tr {
  border: 1px solid #f2f2f2;
}
.isotope-item {
  z-index: 2;
}
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  transition-property: transform, opacity;
}
.isotope .isotope-item.no-transition,
.isotope.no-transition,
.isotope.no-transition .isotope-item {
  -webkit-transition-duration: 0;
  -moz-transition-duration: 0;
  transition-duration: 0;
}
.nivoSlider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.nivoSlider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  vertical-align: top;
}
.home .top-block {
  box-sizing: border-box;
}
.wpcf7 input[type="date"],
.wpcf7 input[type="email"],
.wpcf7 input[type="number"],
.wpcf7 input[type="password"],
.wpcf7 input[type="search"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="text"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
}
.wpcf7-display-none {
    display: none;
}
.wpcf7-form-control-wrap{
  margin-bottom: 25px;
  display: block;
}
div.wpcf7-response-output {
  margin-left: 0;
  margin-right: 0;
  padding: 0.344em 1em;
  padding-left: 50px;
  border: none;
  color: #fff;
  background-color: #255379;
  position: relative;
  z-index: 1;
}
div.wpcf7-response-output:before {
  content: "\f05a";
  position: absolute;
  top: 50%;
  left: 17px;
  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;
  font-size: 18px;
  margin-top: -9px;
}
div.wpcf7-validation-errors {
  background-color: #c24747;
}
div.wpcf7-validation-errors:before {
  content: "\f057";
}
div.wpcf7-mail-sent-ok {
  background-color: #0fa55d;
}
div.wpcf7-mail-sent-ok:before {
  content: "\f058";
}
span.wpcf7-not-valid-tip {
  padding-top: 5px;
  color: #d61d1d;
  font-weight: 400;
}
.main_wrapper {
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
body.single-job_listing .main_wrapper {
  padding-top: 0;
}
.site_wrapper {
  overflow: hidden;
  position: relative;
  z-index: 2;
  min-height: 50vh;
}
.c-header .c-header__section--middle .c-header_button_component a,
.c-header .c-header__section--middle .c-header_button_component a .theme_btn_icon {
  color: #334e6f !important;
}
.c_single_top_content_inner {
  display: table;
  width: 100%;
  background: #fff;
  border: #eee 1px solid;
  border-radius: 5px;
  padding: 19px 29px 0 29px;
  box-sizing: border-box;
}
.c_single_top_content_inner .theme_lst_left_part,
.c_single_top_content_inner .theme_lst_right_part {
  display: table-cell;
  vertical-align: bottom;
  padding-bottom: 30px;
}
.c_single_top_content_inner .theme_lst_left_part {
  width: 100%;
}
.c_single_top_content_inner .theme_lst_right_part {
  white-space: nowrap;
}
.c_single_top_content_inner .theme_lst_left_part .rev-text,
.c_single_top_content_inner .theme_lst_left_part .theme_lst_stars {
  display: inline-block;
  vertical-align: middle;
}
.c_single_top_content_inner .theme_lst_left_part .rev-text {
  color: #57626e;
  font-weight: 400;
  padding-left: 5px;
}
.theme-page-title h1,
.theme_lst_left_part h1 {
  font-weight: 700;
  color: inherit;
  letter-spacing: -0.4px;
  margin: 0 0 20px 0;
  display: block;
}
.theme_lst_left_part h1 {
  margin: 0;
}
.main_footer {
  font-size: 1em;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 50px;
}
.main_footer .footer-logo {
  width: 230px;
  height: 43px;
  display: block;
  font-size: 35px;
  font-weight: 700;
  margin-top: 7px;
  color: #fff;
  position: relative;
  background: url(../img/Logo-Horizontal-white.svg) no-repeat 0 0;
}
.main_footer .footer-logo:hover {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .top_footer .row .span3:nth-child(1) {
    width: 30%;
  }
  .top_footer .row .span3:nth-child(2) {
    width: 20%;
  }
}
@media only screen and (min-width: 992px) {
  .top_footer .row .span3:nth-child(1) {
    padding-right: 60px;
  }
}
.copyright {
  font-size: 12px;
}
.copyright p,
.pre_footer p {
  margin-bottom: 0;
}
.copyright a {
  color: inherit;
}
.main_footer .widget-title {
  font-size: 1.125em;
  line-height: inherit;
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 16px;
  font-weight: 600;
}
.main_footer .copyright .widget-title {
  padding-bottom: 0;
}
.main_footer .copyright {
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  word-wrap: break-word;
}
h1 {
  letter-spacing: -1.2px;
}
h2 {
  letter-spacing: -0.85px;
}
h3 {
  letter-spacing: -0.3px;
}
h4 {
  letter-spacing: -0.2px;
}
h6 {
  letter-spacing: -0.175px;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit !important;
}
.align-left {
  text-align: left;
}
.small-text {
  line-height: 24px;
  font-size: 16px;
}
.job_listings h1 {
  color: #fff;
  margin: 66px 0 0;
}
.job_listings .h3{
  margin-left: calc(10% + 14px);
}
.category-subtitle {
  font-size: 18px;
  line-height: 1.2;
  margin: 34px 0 36px;
  font-weight: 400;
  color: #fff;
  padding: 0 calc(20% + 50px);
  letter-spacing: 0;
}
@media (min-width: 992px) and (max-width: 1399px) {

}
@media (max-width: 991px) {
  .category-subtitle{
    padding: 0 5%;
    margin-top: 10px;
  }
}
blockquote {
  padding: 0;
  margin: 0 0 21px 0;
}
blockquote .theme_quote_content:before,
blockquote > p:first-child:before {
  margin: 2px 12px 0 3px;
  font-family: FontAwesome;
  content: "\f10d";
  display: inline-block;
  vertical-align: bottom;
}
blockquote .theme_quote_content:before {
  margin-right: 20px;
}
blockquote,
blockquote .theme_quote_content,
blockquote p {
  font-size: 23px;
  line-height: 29px;
  letter-spacing: -0.06px;
}
blockquote .theme_quote_content {
  margin-bottom: 8px;
}
.theme_quote_author,
blockquote cite {
  padding-left: 33px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  line-height: 22px;
}
.theme_quote_author:before,
blockquote cite:before {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
}
.theme_quote_author.stars {
  color: var(--color-yellow);
  padding-left: 0;
}
.theme_quote_author.stars .fa {
  margin-right: 3px;
}
.theme_quote_author.stars .fa:last-child {
  margin-right: 0;
}
.theme_quote_author.stars:before {
  display: none;
}
.main-page .vc_row.vc_row-has-fill {
  margin-left: 0;
  margin-right: 0;
}
.comments-listing-title {
  display: block;
  color: #334e6f;
  font-size: 36px;
  line-height: 1rem;
  letter-spacing: -0.06px;
  font-family: Work Sans;
  margin-bottom: 1.6rem;
  font-weight: 500;
}
.comments-listing-title i {
  margin-right: 11px;
  font-size: 2rem;
  vertical-align: middle;
}
.comments-listing-title p {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .comments-listing-title {
    font-size: 20px;
    line-height: 1.2;
    margin: 0.75rem 0 1rem;
  }
  .theme_quote_author:not(.stars){
    display: block;
    font-size: 17px;
    padding-left: 0;
    margin: 4px 0 5px;
  }
  .theme_quote_author:not(.stars):before{
    display: none;
  }
}
.comment-list-block {
  margin: 19px 0;
}
.comment-list-block .comment-block {
  background: #fff;
  border: #eee 1px solid;
  border-radius: 5px;
  padding: 22px 50px 22px;
}
.comment-link-name {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.comment-link-list {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style: none;
}
.comment-link-list .item {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  margin: 0 8px;
  padding: 0 !important;
}
.comment-link-list .item a {
  display: inline-block;
  padding: 8px 24px;
}
a.g-c-link {
  color: var(--color-blue);
  font-weight: 500;
  font-size: 32px;
}
.comment-link-list .item:before {
  display: none;
}
.comment-list-block .wpb_wrapper {
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  margin: 30px 0;
}
.comment-list-block .theme_custom_text {
  margin-top: 10px;
}
.comment-list-block .theme_custom_text a {
  color: var(--color-yellow);
  text-decoration: underline;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .comment-list-block .comment-block {
    padding: 12px 28px;
  }
  .comment-link-list .item {
    margin: 5px 11px 5px 11px;
  }
  .comment-link-list .item a {
    padding: 0;
    font-size: 21px;
  }
  .sidebar-container .working_time_widget .peak,
  .sidebar-container .working_time_widget .tomorrow {
    display: none;
  }
}
.main_footer ul li,
.main_wrapper ul li {
  padding: 0 0 5px 5px;
  list-style: none;
}
.main_footer ul li:last-child {
  padding-bottom: 0;
}
.main_footer ul li {
  padding-left: 0;
}
.main_footer ul {
  padding-left: 0;
}
.top_footer strong {
  font-weight: 600;
  font-size: 1.125em;
  line-height: inherit;
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.top_footer a {
  color: inherit;
}
.top_footer .footer-link__gold {
  color: #f5ac53;
}
.top_footer .footer-link__gold:hover {
  color: #e8c728;
}
.top_footer .footer-link__iconed i {
  color: inherit;
  padding-right: 3px;
  position: relative;
  top: 0;
  margin-left: -23px;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.top_footer #text-5 p {
  margin-bottom: 6px;
}
.top_footer #text-5 p:nth-child(3),
.top_footer #text-5 p:nth-child(5) {
  margin-top: 22px;
}
.main_wrapper ul li:before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "\2022";
  display: block;
  font-size: 25px;
  line-height: 0;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -2px;
}
.commentlist .comment_content ol > li,
.commentlist .comment_content ul > li,
.main_wrapper ol > li,
.main_wrapper ul > li {
  position: relative;
  padding: 0 0 9px 15px;
  letter-spacing: -0.2px;
  line-height: 1.1;
}
.commentlist .comment_content ol > li:last-child,
.commentlist .comment_content ul > li:last-child,
.main_wrapper ol > li:last-child,
.main_wrapper ul > li:last-child {
  padding-bottom: 0;
}
.ie_9 .icon-position-left .icon_container,
.ie_9 .icon-position-left .stat_count_wrapper,
.ie_9 .theme_module_title .carousel_arrows,
.ie_9 .theme_module_title .external_link,
.ie_9 .theme_module_title h2,
.ie_9 .theme_module_title h3 {
  display: table-cell !important;
}
.header_side_container {
  max-height: 100%;
  height: 100%;
  display: inline-block;
  white-space: nowrap;
}
.logo_container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  z-index: 1;
}
.logo_container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.main-menu > ul > li:after,
.theme_dasgboard_menu > ul > li:before,
.c-header_login_component:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
}
.main-menu ul li ul .menu-item > a,
.theme_dasgboard_menu ul li ul .menu-item > a,
.c-header_login_component .menu-item > a {
  color: inherit;
  opacity: 1;
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  display: block;
}
.c-header {
  font-size: 0;
  line-height: 0;
}
.sticky_header {
  position: fixed;
  top: 0;
  background: #000;
  width: 100%;
  z-index: 100000;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sticky_header.header_sticky_shadow {
  box-shadow: 1px 0 10px rgba(0, 0, 0, 0.1);
}
.sticky_on {
  opacity: 1;
  overflow: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
@media screen and (max-width: 600px) {
  div[id*="wpadminb"] {
    top: -46px !important;
  }
}
@media (max-width: 991px) {
  .titles-wrapper {
    margin-top: 20px;
  }
}
.toggle-inner,
.toggle-inner:after,
.toggle-inner:before {
  background-color: #fff;
}
.toggle-box {
  width: 25px;
  height: 24px;
  vertical-align: middle;
  display: inline-block;
  position: relative;
}
.toggle-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.toggle-inner,
.toggle-inner:after,
.toggle-inner:before {
  width: 25px;
  height: 0;
  border-top: 3px solid;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.toggle-inner:after,
.toggle-inner:before {
  content: "";
  display: block;
}
.toggle-inner:before {
  top: -9px;
}
.toggle-inner:after {
  bottom: -6px;
}
#map-canvas {
  width: 100%;
  position: relative;
  padding-bottom: 20%;
}
#map-canvas > div {
  width: 100%;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
}
#map-canvas img {
  max-width: none;
  max-height: none;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: none;
}
.form-wrapper label{
    color: #797979;
    font-weight: 500
}
.form-wrapper .week-day{
  position: relative;
}
  .form-wrapper .week-day > span{
    width: 100%;
    padding-left: 30px;
    box-sizing: border-box;
  }
  .form-wrapper .week-day > span input{
    padding-left: 51px;
    border-radius: 0 24px 24px 0 ;
    border-left: 0;
    box-sizing: border-box;
  }
  .form-wrapper .week-day label{
    width: 67px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    left: 0;
    top:  0;
    border-radius: 24px;
    background: var(--color-light-grey);
    color: #fff;
    text-align: center;
  }
@media only screen and (max-width: 767px) {
  #map-canvas {
    padding-bottom: 44%;
  }
}
#loading {
  background-color: rgba(255, 255, 255, 0.57) !important;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 999;
  margin-top: 0;
  top: 0;
  left: 0;
  border-radius: 0 !important;
}
.theme_preloader_full {
  z-index: 1001 !important;
}
.theme_preloader_image_on #loading-center-absolute {
  opacity: 0;
  animation: logo-appear 12s ease;
  -webkit-animation: logo-appear 12s ease;
  -webkit-animation-delay: 2s;
  animation-delay: 1s;
}
#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
}
#loading-center:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
#loading-center-absolute {
  display: inline-block;
  vertical-align: middle;
}
#loading-center-absolute .object {
  display: block;
  margin-top: 25px;
  width: 150px;
  height: 2px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
#loading-center-absolute .object:after,
#loading-center-absolute .object:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 2px solid;
  opacity: 0.2;
}
#loading-center-absolute .object:after {
  width: 50px;
  opacity: 1;
  transform: translate(-30px, 0);
  -webkit-transform: translate(-30px, 0);
  animation: loading-bar 1.4s ease;
  animation-iteration-count: infinite;
}
@keyframes loading-bar {
  0%,
  100% {
    transform: translate(-30px, 0);
  }
  50% {
    transform: translate(130px, 0);
  }
}
@-webkit-keyframes loading-bar {
  0%,
  100% {
    -webkit-transform: translate(-30px, 0);
  }
  50% {
    -webkit-transform: translate(130px, 0);
  }
}
@keyframes logo-appear {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes logo-appear {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes object_one {
  25% {
    -webkit-transform: translate(0, -40px) rotate(-180deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}
@keyframes object_one {
  25% {
    transform: translate(0, -40px) rotate(-180deg);
    -webkit-transform: translate(0, -40px) rotate(-180deg);
  }
  100% {
    transform: translate(0, 0) rotate(-180deg);
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}
@-webkit-keyframes object_two {
  25% {
    -webkit-transform: translate(40px, 0) rotate(-180deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}
@keyframes object_two {
  25% {
    transform: translate(40px, 0) rotate(-180deg);
    -webkit-transform: translate(40px, 0) rotate(-180deg);
  }
  100% {
    transform: translate(0, 0) rotate(-180deg);
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}
@-webkit-keyframes object_three {
  25% {
    -webkit-transform: translate(-40px, 0) rotate(-180deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}
@keyframes object_three {
  25% {
    transform: translate(-40px, 0) rotate(-180deg);
    -webkit-transform: translate(-40px, 0) rotate(-180deg);
  }
  100% {
    transform: translate(0, 0) rotate(-180deg);
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}
@-webkit-keyframes object_four {
  25% {
    -webkit-transform: translate(0, 40px) rotate(-180deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}
@keyframes object_four {
  25% {
    transform: translate(0, 40px) rotate(-180deg);
    -webkit-transform: translate(0, 40px) rotate(-180deg);
  }
  100% {
    transform: translate(0, 0) rotate(-180deg);
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}
.phone-block .fa {
  top: 2px;
}
.c-header {
  position: relative;
  z-index: 1000;
}
body:not(.page-template-homepage) .c-header {
  -webkit-box-shadow: 0 1px 5px 0 rgba(50, 50, 50, 0.05);
  -moz-box-shadow: 0 1px 5px 0 rgba(50, 50, 50, 0.05);
  box-shadow: 0 1px 5px 0 rgba(50, 50, 50, 0.05);
}
.c-header a {
  color: inherit;
}
.c-header.header_over_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.c-header__section-container {
  position: relative;
  -js-display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-header__section-container:after,
.c-header__section-container:before {
  display: none;
}
.c-header__section .header_side,
.c-header__section.not_empty_center_side .header_side.center {
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  height: 100%;
  position: relative;
}
.c-header__section .header_side.header_side--custom-align.header_side--left-align,
.c-header__section .header_side.left {
  text-align: left;
}
.c-header__section .header_side.header_side--custom-align.header_side--right-align,
.c-header__section .header_side.right {
  text-align: right;
}
.c-header__section .header_side.center,
.c-header__section .header_side.header_side--custom-align.header_side--center-align {
  text-align: center;
}
.c-header .header_side_container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.c-header_component {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
  padding-right: 5px;
  z-index: 1;
  white-space: normal;
}
.c-header__section .header_side.right .c-header_component {
  padding-left: 0;
  padding-right: 0;
}
.c-header_component .button_size_small,
.c-header_component p {
  margin-bottom: 0;
}
.c-header_button_component a {
  background-color: transparent !important;
}
.sticky_header .c-header__section--middle .c-header_button_component a:hover,
.sticky_header .c-header__section--middle .c-header_button_component a:hover .theme_btn_icon,
.c-header__section .c-header_button_component a:hover,
.c-header__section .c-header_button_component a:hover .theme_btn_icon {
  color: #fff !important;
}
.c-header_button_component a .theme_btn_icon {
  color: inherit;
}
.c-header_empty_space_component {
  width: 45px;
  padding: 0;
}
.c-header__section--middle .c-header__section-container {
  z-index: 2;
}
@media only screen and (max-width: 1200px) {
  .c-header .sticky_header {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .c-header.header_over_bg {
    position: relative;
  }
  .c-header_button_component a.button_size_small {
    padding: 4px 8px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 1200px) {
  .c-header_empty_space_component {
    width: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .c-header_empty_space_component {
    width: 3px;
  }
}
.header_search {
  display: inline-block;
  vertical-align: middle;
  height: auto !important;
}
.header_search:before {
  content: "";
  position: absolute;
}
.header_search__inner .search_text:-moz-placeholder {
  opacity: 0.7 !important;
}
.header_search__inner .search_text:-ms-input-placeholder {
  opacity: 0.7 !important;
}
.c-header_login_component {
  line-height: 0;
  cursor: pointer;
}
.listing-products__items .add_to_cart_inline,
.special-deal {
  margin-bottom: 15px;
  border-bottom: 1px solid #e3e5e8;
  padding-bottom: 15px;
  padding-left: 32px;
  position: relative;
  word-break: break-word;
}
.special-deal_bottom {
  max-height: 3em;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.special-deal_bottom:after {
  position: absolute;
  bottom: -44px;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 78%, #fff 89%, #fff 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(78%, #fff), color-stop(89%, #fff), color-stop(100%, #fff));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 78%, #fff 89%, #fff 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 78%, #fff 89%, #fff 100%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 78%, #fff 89%, #fff 100%);
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
  .special-deal__icon,
  .listing-products__items .add_to_cart_inline .icon{
    width: 24px;
    height: 20px;
    display: block;
    border-radius: 0;
    background: url(../img/svg-regalias-icons/Coupon.svg) no-repeat center;
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 3px;
    text-align: center;
    font-size: 13px;
    line-height: 21px;
    color: #fff;
  }
    .special-deal__icon--fa{
      background: var(--color-green);
      color: #fff;
      border-radius: 3px
    }
.special-deal_bottom--long:after {
  opacity: 1;
}
.listing-products__items .add_to_cart_inline p:last-child,
.special-deal_description p:last-child {
  margin-bottom: 0;
}
.listing-products__items .add_to_cart_inline:last-child,
.special-deal:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.special-deal_btn {
  margin-top: 5px;
}
.c-header__login-modal {
  position: fixed;
  width: 90%;
  height: 90%;
  z-index: 1000;
  top: 5%;
  left: 5%;
  text-align: center;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.c-header__login-modal.active {
  opacity: 1;
  visibility: visible;
}
.c-header__login-modal:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: relative;
  height: 100%;
}
.c-header__login-modal_container {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  padding: 30px 40px 34px;
  box-sizing: border-box;
  background: #fff;
  z-index: 2;
  text-align: left;
  max-height: 100%;
  overflow-y: auto;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  -box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: translateY(60px);
  -webkit-transform: translateY(60px);
  -moz-transform: translateY(60px);
  -ms-transform: translateY(60px);
}
.c-header__login-modal.active .c-header__login-modal_container {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
}
.c-header__login-modal .c-header__login-modal_container {
  width: 480px;
}
.c-header__login-modal h2 {
  text-align: center;
  margin-bottom: 30px;
}
.c-header__login-modal-close {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  opacity: 0.5;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.c-header__login-modal-close:after,
.c-header__login-modal-close:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 2px;
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: #2b2c30;
}
.c-header__login-modal-close:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
.c-header__login-modal-close:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
.c-header__login-modal-cover {
  content: "";
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-header__login-modal.active .c-header__login-modal-cover {
  visibility: visible;
  opacity: 1;
  cursor: url(../img/close.png), default;
}
#customer_login input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #fff inset;
}
@media (max-width: 767px) {
  #customer_login h2,
  .c-header__login-modal_container h2 {
    font-size: 24px !important;
    line-height: 32px !important;
  }
}
@media only screen and (max-width: 767px) {
  .toggle-box,
  .toggle-inner,
  .toggle-inner:after,
  .toggle-inner:before {
    width: 22px;
  }
  .blocker .modal .bottom-part {
    margin-top: 7px;
  }
  .main_wrapper .search_jobs .search-filter-wrapper {
    border: 1px solid var(--color-light-grey);
    border-radius: 30px;
  }
  .main_wrapper .search_jobs input {
    border-radius: 30px;
  }
  #type-place {
    line-height: 49px;
    height: 49px;
  }
}
.c_single_top {
  position: relative;
  margin-top: 22px;
}
.c_single_top .c_single_top_content {
  width: 100%;
  position: static;
  z-index: 12;
  color: #57626e;
}
.c_single_top_content h1 {
  max-height: 96px;
  display: block;
  color: #57626e;
  min-width: 100%;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}
.c_single_top_content h1.medium {
  max-height: none;
  font-size: 40px;
}
  .c_single_top_content h1.single-title--claimed{
    position: relative;
  }
  .c_single_top_content h1.single-title--claimed:after{
    width:  20px;
    height: 20px;
    vertical-align: middle;
    font: 14px/1 FontAwesome;
    background-color: #5c79f4;
    font-size: 10px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    color: #ffffff;
    content: "\f00c";
  }
.c_single_top_content h1.small {
  max-height: 60px;
  font-size: 30px;
}
.theme_lst_stars {
  padding: 0;
  margin: -1px 0 17px 0;
  font-size: 14px;
}
.theme_lst_meta {
  padding-left: 4px;
}
.theme_lst_meta span {
  color: #57626e;
  font-size: 16px;
  line-height: 20px;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
  letter-spacing: -0.2px;
  position: relative;
  padding-left: 18px;
}
.theme_lst_meta span.request {
  padding-left: 23px;
  text-decoration: underline;
  font-weight: 600;
}
.theme_lst_meta span #jobHourStatus {
  display: block;
  padding-left: 0;
  font-size: 12px;
  font-weight: 700;
  color: #3ed376;
  text-transform: uppercase;
}
  .theme_lst_meta span #jobHourStatus.Closed {
    color: #fd4851;
  }
.theme_lst_meta span a {
  color: #57626e;
}
.theme_lst_meta span i {
  width: 17px;
  height: 14px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 7px;
  transform: translateY(1px);
}
.c_single_breadcrumb {
  padding: 14px 0 12px 0;
  color: #8a95a1;
}
.c_single_breadcrumb,
.c_single_breadcrumb a,
.c_single_breadcrumb span {
  font-size: 12px;
  line-height: 20px;
}
.c_single_breadcrumb a,
.c_single_breadcrumb span {
  display: inline-block;
  vertical-align: middle;
}
body.assets .c_single_breadcrumb span.c_categ_divider {
  transform: translateY(1px);
  margin: 0 3px;
  background: 0 0;
}
body.assets .c_single_breadcrumb span.c_categ_divider:before {
  content: "/";
}
body.assets .c_single_breadcrumb a:hover,
body.assets .c_single_breadcrumb span.c_single_breadcrumb_posttitle {
  color: inherit;
}
.thin-content {
  color: var(--color-dark-blue);
}
.content__title {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  margin: 1.64em 0 0.8em;
}
.content__subtitle {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 0.8em;
}
.color-html-header {
  background: var(--color-blue);
  text-align: center;
  padding: 8vh 0 6vh;
  position: relative;
}
  .color-html-header.radial-rays{
    background-image: url(../img/svg-html-pages/Glow.svg);
    background-position: center;
    background-color: var(--color-yellow);
    background-size: cover
  }
.color-html-header:before {
  width: 140px;
  height: 32px;
  display: block;
  position: absolute;
  top: 40px;
  right: 25px;
  background: url(../img/svg-html-pages/AiIconText.svg) no-repeat center;
  background-size: 100%;
  content: "";
}
.color-html-header--noai:before{
  display: none;
}
.color-html-header__title {
  text-transform: uppercase;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}
.color-html-header__title--with-medal:before {
  width: 283px;
  height: 226px;
  display: block;
  margin: 0 auto 22px;
  background: url(../img/svg-category-text/NumberOneWhite.svg) no-repeat center;
  background-size: 100%;
  content: "";
}
.best-html-banner {
  width: 100%;
  height: 80px;
  border-radius: 4px;
  background: var(--color-yellow) url(../img/svg-html-pages/BestOfLine.svg) no-repeat center 20px;
  background-size: auto 48px;
  margin: 37px 0;
}
.html-question__list {
  margin-bottom: -2.9rem;
}
.html-question {
  margin-bottom: 3.4em;
}
.html-question__title:before {
  content: "— ";
}
.html-question ul {
  padding: 0 0 0 0.7em;
  margin: 1.9em 0 0.6em;
}
.html-question ul li {
  padding: 0 0 0 1.2em;
  margin-bottom: 1.05em;
  line-height: inherit;
}
.html-question ul li:last-child {
  margin-bottom: 0;
}
.html-question ul li:before {
  color: inherit !important;
  font-size: 34px;
  top: 12px;
  margin-top: 0;
}

@media (min-width: 1200px){
  .color-html-header__title{
    padding: 0 17%
  }
  .color-html-header__title--wider{
    padding: 0 13%
  }
}
@media (min-width: 992px){
  .medium-content,
  .thin-content{
    width: 660px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.33;
    color: var(--color-dark-blue);
    padding: 78px 0 0
  }
  .medium-content{
    width: 960px;
  }
    .medium-content p:not([class]),
    .thin-content p:not([class]){
      margin-bottom: 1.5em;
    }
    .medium-content p:not([class]):last-child,
    .thin-content p:not([class]):last-child{
      margin-bottom: 0
    }
}
@media (max-width: 991px){
  .content__title{
    font-size: 32px;
    margin-top: 1.84em;
  }
  .content__subtitle{
    font-size: 24px;
    margin-bottom: 1em
  }
  .medium-content,
  .thin-content{
    padding-top: 40px;
    font-size: 16px;
    line-height: 1.2
  }

}
@media (max-width: 767px){
  .color-html-header{
    padding: 63px 0 48px;
  }
    .color-html-header:before{
      width: 200px;
      height: 20px;
      background-image: url(../img/svg-html-pages/AiIconTextMobile.svg);
      top: auto;
      bottom: 15px;
      left: 50%;
      margin-left: -100px;
    }
    .color-html-header__title{
      font-size: 32px;
      padding: 0 15px;
    }
      .color-html-header__title:before{
        width:  171px;
        height: 136px;
        margin-bottom: 31px;
      }
  .best-html-banner{
    background-position: center 51%;
    background-size: 89%;
    margin: 25px 0
  }
  .html-question{
    margin-bottom: 2.6em
  }
    .html-question__answer{
      font-size: 19px;
      line-height: 1.3
    }
    .html-question ul{
      padding-left: 0.7em;
      margin: 1.3em 0 0.6em;
    }
      .html-question ul li{
        padding-left: 1.5em;
        margin-bottom: 0.8em
      }
      .html-question ul li:before{
        font-size: 32px
      }
}
.badge{
  padding: 40px;
}
  .badge__title{
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 13px;
  }
  .badge__img-wrapper{
    width:  316px;
    max-width: 100%;
    height: 231px;
    position: relative;
    background: linear-gradient(45deg,
        #e6e7e8 25%,
        rgba(255,255,255,0) 25%
        ) 0 0,
      linear-gradient(45deg,
        rgba(255,255,255,0) 75%,
        #e6e7e8 75%
        ) 0 0,
      linear-gradient(45deg,
        rgba(255,255,255,0) 75%,
        #e6e7e8 75%
        ) -8px 8px,
      linear-gradient(45deg,
        #e6e7e8 25%,
        rgba(255,255,255,0) 25%
        ) 8px -8px;
    background-size: 16px 16px;
    background-color: #EEEEEE;
  }
    .badge__img{
      max-width: 80%;
      display: block;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      visibility: hidden;
      opacity: 0
    }
    .badge__img--active{
      visibility: visible;
      opacity: 1
    }
    .badge__code {
      height: 164px;
      padding: 11px 18px;
    }
  .badge__variant-wrapper{
    margin-top: 19px;
  }
    .badge__variant{
      margin-right: 5px;
    }
  .badge__btns{
    margin-top: 10px;
    font-size: 15px;
  }
    .badge__btns > *{
      display: inline-block;
      vertical-align: middle;
    }
@media (min-width: 768px){

  .badge .col-left{  
    -ms-flex: 0 0 37.3%;
    flex: 0 0 37.3%;
    max-width: 37.3%;
    margin-top: -36px;
  }
  .badge .col-right{  
    -ms-flex: 0 0 62.7%;
    flex: 0 0 62.7%;
    max-width: 62.7%;
  }
  .badge__title{
    padding-left: 13px;
    margin-left: 37.3%;
  }
}
@media (max-width: 767px){
  .badge{
    padding: 20px;
  }
    .badge__title{
      font-weight: 500;
      line-height: 1.1;
      margin-bottom: 13px
    }
    .badge .col-left,
    .badge .col-right{  
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .badge__img-wrapper{
      height: 190px;
    }
    .badge__variant-wrapper{
      margin: 15px 0;
    }
}

.lwa{
  margin-bottom: 0 !important
}
.c_post_reviews_wrapper,
.single_job_description {
  padding: 41px 50px 26px;
}
.c_post_reviews_title {
  font-weight: 600;
}
.c_post_reviews_title + .subtitle {
  margin-bottom: 35px;
}
.c_post_reviews_wrapper {
  padding-bottom: 28px;
}
.c_post_main_content #respond {
  background: #fff;
  border: #eee 1px solid;
  border-radius: 5px;
  padding: 41px 50px 26px;
  margin: 30px 0 46px 0;
}
.comment_form_email_wrapper,
.comment_form_name_wrapper {
  width: calc(50% - 15px);
  display: inline-block;
  vertical-align: top;
}
.comment_form_name_wrapper {
  margin-right: 12px;
}
.comment_form_email_wrapper {
  margin-left: 12px;
}
.comment_form_email_wrapper,
.comment_form_name_wrapper,
.comment_form_url_wrapper {
  padding-bottom: 20px;
}
.comment_form_text_wrapper {
  padding-bottom: 40px;
}
.rating_for_not_user,
.rating_for_user {
  padding: 0 0 25px 0;
}
.c_post_main_content #respond input[type="email"],
.c_post_main_content #respond input[type="text"],
.c_post_main_content #respond textarea {
  letter-spacing: -0.2px;
  padding: 13px 28px 13px 28px;
  font-size: 14px;
  line-height: 20px;
}
.c_post_main_content #respond textarea {
  padding-top: 22px;
  padding-bottom: 22px;
}
.c_post_main_content #respond input[type="submit"] {
  margin: 0 0 7px 0;
  border-radius: 25px;
  padding: 12px 62px 14px 62px;
  letter-spacing: 1.3px;
}
#commentform p.comment-notes,
#commentform p.logged-in-as {
  display: none;
}
#comments {
  padding: 0;
  margin: 0;
}
#comments:empty {
  height: 0;
  line-height: 0;
  font-size: 0;
}
#comments #respond {
  padding-top: 35px;
}
#cancel-comment-reply-link,
.comment_info a {
  transition: color 0.3s;
  -webkit-transition: color 0.3s;
}
.comment-reply-link {
  display: inline-block;
}

.svg-tooltip {
  position: absolute;
  top: 32px;
  right: 17px;
  box-sizing: border-box;
}
  .svg-tooltip__title{
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 8px;
    cursor: pointer;
  }
  .svg-tooltip__tooltip{
    width: 375px;
    max-width: calc(100vw - 18px);
    position: absolute;
    right: 0;
    top:   calc(100% - 1px);
    padding: 11px 8px 8px;
    box-sizing: border-box;
    border-radius: 3px;
    z-index: 999;
    background: rgb(255 255 255 / 87%);
    -webkit-box-shadow: 0 -1px 13px -1px rgb(0 0 0 / 11%);
    -moz-box-shadow: 0 -1px 13px -1px rgba(0,0,0,0.11);
    box-shadow: 0 -1px 13px -1px rgb(0 0 0 / 11%);
    text-align: right;
    visibility: hidden;
    opacity: 0;
    transition: .3s opacity ease-in-out;
  }
  .svg-tooltip:hover .svg-tooltip__tooltip{
    visibility: visible;
    opacity: 1;

  }
  .svg-tooltip__tooltip .link,
  .svg-tooltip__tooltip a{
    font-size: 12px;
    text-decoration: none;
    border-bottom: 1px solid;
    position: relative;
    top: -1px;
    transition: .3s all ease-in-out;
  }
  .svg-tooltip__tooltip a:hover{
    text-decoration: none;
    border-bottom-color: rgba(40, 184, 220, 0);
    color: #28b8dc;
  }
  .svg-tooltip__plain-text{
    display: none;
  }
.menu-companies{
  margin-top: 17px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}
  .menu-companies__title{
    font-style: normal;
    text-transform: uppercase;
    font-weight: 700;
  }
  .menu-companies__item{
    margin-bottom: 8px;
  }
@media only screen and (min-width: 1500px) {
  .svg-tooltip {
    display: none;
  }
  .float-info{
    --width: 149px;
    box-sizing: border-box;
    width: var(--width);
    position: absolute;
    top: -4px;
    right: calc(var(--container-width) / 2 - 50vw + 16px);
    padding: 18px 16px;
    border-radius: 8px;
    background: #fff;
    color: var(--color-dark-blue);
  }
    .float-info__tooltip .svg-tooltip{
      display: block;
      position: relative;
      top: 0;
      left: 0;
    }
      .float-info__tooltip .svg-tooltip__tooltip{
        right: -16px;
        top: auto;
        bottom: 100%;
        background: transparent;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        padding: 0 0 24px;
      }
      .float-info__tooltip .svg-tooltip__tooltip-bg{
        padding: 11px 8px 8px;
        background: rgb(255 255 255 / 95%);
        border-radius: 8px;
      }
}
@media only screen and (max-width: 1499px) {  
  .svg-tooltip {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  .svg-tooltip{
    top:   9px;
    right: 9px;
  }
}
.svg-text-anchor {
  position: absolute;
  top: 32px;
  right: 17px;
  cursor: pointer;
}
.svg-text-anchor__icon,
.svg-text-anchor__text {
  display: inline-block;
  vertical-align: middle;
}
.svg-text-anchor__text {
  margin-right: 8px;
}
@media only screen and (max-width: 1080px) {
  .svg-text-anchor {
    display: none;
  }
}
.svg-text__wrapper {
  margin-top: 2.5rem;
}
.svg-text__wrapper .block-title {
  margin-bottom: 3rem;
}
.svg-item__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.svg-item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  padding: 0 15px;
  box-sizing: border-box;
  margin-bottom: 30px;
  position: relative;
}
.svg-item__icon {
  height: 68px;
  display: block;
  margin-bottom: 1.3rem;
  line-height: 68px;
}
.svg-item__icon img {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 1400px) {
  .svg-item {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .svg-item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 46px;
  }
  .svg-item__icon {
    width: 22%;
    height: auto;
    display: inline-block;
    vertical-align: top;
  }
  .svg-item__icon img {
    display: block;
  }
  .svg-item__text {
    width: 66%;
    display: inline-block;
    vertical-align: top;
    padding-left: 4%;
  }
}
@media only screen and (max-width: 600px) {
  .svg-item {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 46px;
  }
  .svg-item__text {
    padding-left: 8%;
  }
}
.c_rating_wrapper .comment-rating {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  transform: translateY(-2px);
}
.c_rating_wrapper.rating_for_user{
  display: none;
}
.c_rating_wrapper > div {
  letter-spacing: -0.3px;
}
.main_wrapper ul.star-rating {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
  line-height: 0;
  position: relative;
  width: 100px;
  overflow: hidden;
}
.main_wrapper ul.star-rating:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/stars_large.png) repeat-x bottom left;
  background-size: 20px 30px;
  height: 15px;
  width: 0;
}
.main_wrapper ul.star-rating.current-rated1:before {
  width: 20%;
}
.main_wrapper ul.star-rating.current-rated2:before {
  width: 40%;
}
.main_wrapper ul.star-rating.current-rated3:before {
  width: 60%;
}
.main_wrapper ul.star-rating.current-rated4:before {
  width: 80%;
}
.main_wrapper ul.star-rating.current-rated5:before {
  width: 100%;
}

.main_wrapper ul.star-rating.hovered_star1:before {
  width:20%;
}
.main_wrapper ul.star-rating.hovered_star2:before {
  width:40%;
}
.main_wrapper ul.star-rating.hovered_star3:before {
  width:60%;
}
.main_wrapper ul.star-rating.hovered_star4:before {
  width:80%;
}
.main_wrapper ul.star-rating.hovered_star5:before {
  width:100%;
}
.main_wrapper ul.star-rating li {
  width: 20px;
  height: 15px;
  display: inline-block;
  list-style: none;
  background: url(../img/stars_large.png) no-repeat 0 0;
  background-size: 20px 30px;
  padding: 0;
  margin: 0;
}
.main_wrapper ul.star-rating li a {
  width: 20px;
  height: 15px;
  display: block;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  color: transparent;
}
.star-rating li:before {
  display: none !important;
}
.head_rating_stars,
.c_comment_stars {
  width: 80px;
  height: 11px;
  display: block;
  background: url("../img/stars_small.png") top left repeat-x;
  background-size: 16px 22px;
  position: relative;
  overflow: hidden;
  margin: 5px 0 23px 0;
}
.head_rating_stars:before,
.c_comment_stars:before {
  content: "";
  height: 11px;
  display: block;
  background: url("../img/stars_small.png") bottom left repeat-x;
  background-size: 16px 22px;
  position: absolute;
  left: 0;
  top: 0;
}
.c_stars.font-stars {
  width: auto;
  height: auto;
  background: 0 0;
  position: relative;
  top: -2px;
}
.c_stars.font-stars.head_rating_stars {
  top: 0;
}
.font-stars .fa {
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
  color: var(--color-yellow);
}
.font-stars .fa:last-child {
  margin-right: 0;
}
.head_rating_stars {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.main_footer .widget + .widget,
aside > .widget + .widget {
  margin-top: 14px;
}
.widget-title {
  font-weight: 600;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
.c_widget_wrapper .widget-title {
  margin-top: -2px;
}
.widget-title:empty {
  display: none;
}
.c_widget_wrapper,
.working_time_widget {
  position: relative;
  background: #fff;
  border: #eee 1px solid;
  border-radius: 5px;
  padding: 23px 29px 19px 29px;
}
.working_time_title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 9px;
  color: var(--color-light-grey) !important;
}
.working_time_text {
  font-size: 14px;
  line-height: 20px;
}
.working_time_text .working_time_text__item {
  padding: 6px 0 6px 0;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  display: table;
  width: 100%;
}
.working_time_text .working_time_text__item .working_time_text__day,
.working_time_text .working_time_text__item .working_time_text__hours {
  display: table-cell;
  vertical-align: top;
}
.working_time_text .working_time_text__item .working_time_text__hours {
  white-space: nowrap;
}
.working_time_text .working_time_text__item .working_time_text__day {
  width: 100%;
  font-weight: 600;
}
.working_time_widget .working_clock_icon {
  display: inline-block;
  vertical-align: top;
}
.working_time_widget .working_clock_icon i {
  font-size: 22px;
  line-height: 20px;
}
.contact_widget_map {
  padding-top: 6px;
  padding-bottom: 25px;
  position: relative;
}
.contact_widget_map #map.theme_google_map {
  height: 250px;
  padding: 0 !important;
}
.contact_widget_address {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -39px;
  margin-left: -87px;
}
.contact_widget_address a {
  color: #fff !important;
  font-size: 14px;
  line-height: 16px;
  border-radius: 25px;
  text-transform: uppercase;
  position: relative;
  font-size: 14px;
  line-height: 20px;
  padding-left: 15px;
  border: #5c79f4 1px solid;
  padding-bottom: 15px;
  background-color: #5c79f4;
  color: #fff;
  padding: 15px 35px 15px 22px;
}
.contact_widget_address a:hover {
  background-color: rgba(234, 234, 234, 0.58);
  color: #5c79f4 !important;
}
.contact_widget_address i {
  padding-right: 15px;
  color: #fff !important;
  transition: all 0.4s;
}
.contact_widget_address a:hover i {
  color: #5c79f4 !important;
}
.c_single_top_content .listing-address-directions {
  max-width: 29%;
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  .c_single_top_content .listing-address-directions {
    margin-bottom: 0;
  }
}
.theme_single_thumbs {
  margin-top: 15px;
  margin-bottom: 15px;
}
.theme_single_thumbs .item-wrapper {
  margin-bottom: 15px;
}
.theme_single_thumbs .item {
  height: 120px;
  border-radius: 5px;
  background-size: cover;
  background-position: top center;
}
.theme_single_thumbs .copy {
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  color: #8995a2;
  padding-top: 7px;
  opacity: 0.7;
}
.text-right {
  text-align: right;
}
.theme_single_thumbs .copy a {
  color: inherit;
  text-align: left;
}
.theme_single_thumbs .copy a:hover {
  text-decoration: underline;
}
.c_single_top_content .claim-link {
  color: var(--color-yellow);
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
  line-height: 1.1;
  vertical-align: middle;
  margin-left: 13px;
}
.c_single_top_content .claim-link span {
  display: block;
  font-size: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact_widget_email,
.contact_widget_phone,
.contact_widget_socials {
  font-size: 14px;
  line-height: 20px;
}
.contact_widget_email,
.contact_widget_phone {
  border-bottom: #eee 1px solid;
  padding-bottom: 15px;
}
.contact_widget_address a {
  font-weight: 500;
  letter-spacing: -0.2px;
  margin: 6px 0 0 0;
  display: inline-block;
}
.contact_widget_address a i {
  margin-right: 0;
  margin-left: 9px;
}
.contact_widget_email {
  padding-top: 13px;
  padding-bottom: 16px;
}
.contact_widget_email i {
  margin-right: 5px;
  font-size: 11px;
}
.contact_widget_email {
  letter-spacing: -0.1px;
}
  .people-row{
    width: 100%;
    -webkit-box-pack: justify!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between!important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
    .people-row .item{
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
      padding: 0 15px;
      box-sizing: border-box;
      margin-bottom: 40px;
      position: relative;
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
      color: #57626e;
    }
    .people-row .item .img-wrapper{
      -webkit-border-radius: 4px;
      border-radius: 4px;
      -webkit-box-shadow: none;
      box-shadow: none;
      position: relative;
      overflow: hidden;
    }
    .people-row .item .paragraph-title{
      margin-top: 15px
    }
  @media (min-width: 992px){
    .people-row .item{
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }

  }
.sidebar .c_widget_wrapper {
  margin: 14px 0;
}
.theme_widget_box {
  position: relative;
  background: #fff;
  border: #eee 1px solid;
  border-radius: 5px;
  padding: 23px 29px 19px 29px;
}
.theme_widget img,
.theme_widget select {
  max-width: 100%;
}
.theme_widget .widget-title,
.top_footer #text-5 p {
  margin-top: 0;
  letter-spacing: -0.4px;
}
.search_form {
  position: relative;
}
.widget_posts ul.recent_posts {
  padding: 0 0 10px 0;
  margin: 0;
  display: block;
}
.custom-scroll::-webkit-scrollbar {
  width: 14px;
  height: 18px;
}
.custom-scroll::-webkit-scrollbar-thumb {
  height: 6px;
  border: 0 solid transparent;
  border-right-width: 9px;
  background-clip: padding-box;
  border-radius: 0;
  -webkit-border-radius: 0;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset -1px -1px 0 rgb(0 0 0 / 5%), inset 1px 1px 0 rgb(0 0 0 / 5%);
  box-shadow: inset -1px -1px 0 rgb(0 0 0 / 5%), inset 1px 1px 0 rgb(0 0 0 / 5%);
}
.custom-scroll::-webkit-scrollbar-track {
  margin: 15px;
}
.custom-scroll::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
.custom-scroll::-webkit-scrollbar-corner {
  background-color: transparent;
}
.custom-scroll::-webkit-resizer {
  background-color: #ff0;
}
.widget_posts ul.recent_posts::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.widget_posts ul.recent_posts::-webkit-scrollbar-button {
  background-color: #fff;
}
.widget_posts ul.recent_posts::-webkit-scrollbar-track {
  background-color: #e7eaec;
}
.widget_posts ul.recent_posts::-webkit-scrollbar-track-piece {
  background-color: #d0d0d0;
}
.widget_posts ul.recent_posts::-webkit-scrollbar-thumb {
  height: 50px;
  background-color: #868686;
  border-radius: 3px;
}
.widget_posts ul.recent_posts::-webkit-scrollbar-corner {
  background-color: purple;
}
.widget_posts ul.recent_posts::-webkit-resizer {
  background-color: #ff0;
}
.widget_posts ul.recent_posts li {
  margin: 20px 0 0 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  list-style: none;
}
.widget_posts ul.recent_posts li:before {
  display: none;
}
.widget_posts ul.recent_posts li:first-child {
  margin: 0;
}
.recent_posts_img {
  width: 80px;
  max-height: 80px;
  margin-right: 20px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
}
.recent_posts_img img {
  width: 100%;
  height: auto;
  display: block;
}
.recent_posts_content {
  display: inline-block;
  width: calc(100% - 100px);
  vertical-align: middle;
  padding-top: 0;
  transform: translateY(-3px);
}
.recent_posts_content .c_stars.font-stars {
  font-size: 11px;
}
.widget_posts .post_title {
  margin-bottom: 0;
  display: block;
  font-weight: 500;
}
.widget_posts .post_title a {
  line-height: 1.1;
  display: inline-block;
}
.recent_post_meta,
.recent_post_meta div,
.recent_post_meta span {
  font-size: 14px;
  line-height: 16px;
}
.buttons-list .filter {
  border: 0;
  background-color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #8995a2;
  text-transform: lowercase;
  padding: 4px 10px;
  border-radius: 5px;
  margin-right: 12px;
  margin-bottom: 10px;
}
.buttons-list .filter:hover {
  border-color: #c4cad0;
  background-color: #fff;
  color: #334e6f;
}
.buttons-list .filter:last-child {
  margin-right: 0;
}
.buttons-list .filter img {
  width: 17px;
  height: 16px;
  position: relative;
  top: 4px;
  margin-right: 9px;
}
.buttons-list .filter[data-filter="hasCoupon"] img {
  width: auto;
  height: 13px;
  top: 6px;
}
.buttons-list .filter.show {
  color: #fff;
  background-color: #3ed376;
}
.buttons-list .filter.show img {
  -webkit-filter: brightness(5000%);
  -moz-filter: brightness(5000%);
  -o-filter: brightness(5000%);
  filter: brightness(5000%);
}
.buttons-list {
  margin: 11px 0 36px;
  text-align: center;
}
.bottom-part-btns {
  clear: both;
  margin-bottom: 30px;
}
.bottom-part-btns:after {
  display: table;
  clear: both;
  content: "";
}
.blocker {
  background: rgba(0, 0, 0, 0.33) !important;
}
.bottom-list {
  width: 100%;
  border-radius: 5px;
  margin: 30px 0;
}
.bottom-list:last-child {
  margin-bottom: 0;
}
.bottom-list .third-block {
  width: 100%;
  font-size: 13px;
}
.single-job_listing .bottom-list .third-block {
  font-size: 14px;
}
.bottom-list .third-block > * {
  position: relative;
  z-index: 10;
  padding: 10px;
}
.bottom-list .third-block .block-title {
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 0;
  padding-bottom: 0;
}
.bottom-list .third-block ul.related {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  margin-bottom: 0;
  background: 0 0;
  border: 0;
  margin: 0;
  border-radius: 0;
  padding: 5px 15px 9px 10px;
}
.bottom-list .third-block ul.related li {
  width: auto;
  display: inline;
  vertical-align: top;
  list-style: none;
  line-height: 1.05;
  padding: 0 0 9px 0;
  padding-bottom: 4px;
  margin: 0 0 7px;
}
.bottom-list .third-block ul.related li:before {
  display: none;
}
.bottom-list .third-block ul.related li:after {
  display: inline;
  position: relative;
  top: 2px;
  font-size: 19px;
  line-height: 1;
  margin: 0;
  padding: 0 8px;
  color: var(--color-blue);
  content: "\2022";
}
.bottom-list .third-block ul.related li:last-child::after,
.bottom-list .third-block ul.related li:last-child:before {
  display: none;
}
.bottom-list:after {
  display: table;
  clear: both;
  content: "";
}
.mobile-stat {
  display: none;
}
.block__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.24;
  margin-bottom: 40px;
  color: var(--color-dark-blue);
}
.mainpage-block {
  margin: 83px 0 0;
}
.counters-block .cont_info {
  color: var(--color-dark-blue);
  font-size: 19px;
  line-height: 24px;
}
.counters-block .counter_icon_type_none .stat_count {
  color: #3cb8d8;
  font-size: 32px;
  line-height: 1.24;
  margin-bottom: 9px;
}
.counters-block .counter_icon_type_none.theme_module_counter .stat_count_wrapper {
  text-align: left;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (max-width: 1200px) {
  .counters-block .stat_count {
    font-size: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .counter_icon_type_none .stat_count_wrapper,
  .stat_count_wrapper {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .counters-block .stat_count {
    font-size: 34px;
  }
}
@media only screen and (max-width: 480px) {
  .counters-block .stat_count {
    font-size: 22px;
    line-height: 1.2;
  }
}
.logo-item__list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 0 -15px -25px;
}
.logo-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  margin-bottom: 25px;
}
.logo-item img {
  max-height: 51px;
}
@media only screen and (max-width: 1200px) {
  .logo-item img {
    max-height: 46px;
    max-width: 250px;
  }
}
@media only screen and (min-width: 992px) {
  .logo-item__list {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
}
@media only screen and (max-width: 991px) {
  .logo-item img {
    max-height: 37px;
    max-width: 250px;
  }
  .logo-item:nth-child(1) img {
    max-height: 31px;
  }
}
  .reward{
    display: block;
    padding: 17px 20px;
    background: #f5ac53;
    position: relative;
    margin: -1px -1px 32px;
    border-radius: 3px 3px 0 0;
    box-sizing: border-box;
    text-align: left;
    color: #fff;
  }
  .reward:after{
    display: table;
    clear: both;
    content: ''
  }
    .reward img{
      width: 60px;
      height: auto;
      display: inline-block;
      vertical-align: middle;
      margin-right: 13px;
      position: relative;
      margin-top: -3.5%;
      margin-bottom: -4%;
    }
    .reward .col{
      max-width: calc(100% - 94px);
      display: inline-block;
      vertical-align: middle;
    }
      .reward .one{
        font-size: 24px;
        line-height: 1.1666;
        font-weight: 700;
      }
      .reward .two{
        font-size: 15px;
        line-height: 1.33;
      }
  .reward .info-lable__parent{
    position: absolute;
    right: 11px;
    top:   12px;
  }
  .reward .info-lable__parent:hover{
  }
  .reward .info-lable__parent:hover:after{
    width:  260px;
  }
    .reward .info-lable{
      width:  20px;
      height: 20px;
      display: block;
      background: #fff;
      border-radius: 50%;
      color: #cecece;
      position: relative;
    }
.info__parent {
  position: relative;
}
    .reward .info-lable:before{
      width: 2px;
      height: 2px;
      display: block;
      position: absolute;
      left: 50%;
      margin-left: -1px;
      top: 5px;
      background: #f5ac53;
      content: '';
    }
    .reward .info-lable:after{
      width: 2px;
      height: 6px;
      display: block;
      position: absolute;
      left: 50%;
      margin-left: -1px;
      top: 9px;
      background: #f5ac53;
      content: '';
    }
  .reward .info-icon{
    position: absolute;
    right: 9px;
    top: 8px;
    font-size: 22px;
  }
.info--show-on-hover {
  width: 260px;
  height: auto;
  position: absolute;
  left: 100%;
  top: 0;
  color: #57626e;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  padding: 8px 11px;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  border-radius: 3px;
  margin-left: 16px;
  display: none;
  z-index: 999;
  background: #fff;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  display: block;
}
.info--show-on-hover .title {
  padding-right: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 1.08em;
}
.info--show-on-hover:after,
.info--show-on-hover:before {
  width: 0;
  height: 0;
  position: absolute;
  right: 100%;
  top: 4px;
  border-top: 8px solid transparent;
  border-right: 7px solid #e5e5e5;
  border-bottom: 8px solid transparent;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
  content: "";
}
.info--show-on-hover:after {
  border-right-color: #fff;
  margin-right: -2px;
}
.info--show-on-hover .close {
  position: absolute;
  top: 1px;
  right: 1px;
  color: #cecece;
  cursor: pointer;
  padding: 4px 8px;
}
.info--show-on-hover p:last-child {
  margin-bottom: 0;
}

    @media only screen and (max-width: 1200px){
      .reward{
        font-size: 36px;
        margin-bottom: 15px;
      }
    }
    @media only screen and (max-width: 991px){
      .reward{
        padding: 25px 0 25px 14px;
        font-size: 32px
      }
        .reward img{
          width: 54px;
          height: auto;
          margin: -9% 3px -9% 1.9%;
        }
      #type-place {
        height: 50px;
        line-height: 50px;
      }
      .job_search_form .results-container {
        right: 28px;
      }
      .c-header__section .header_side.middle_right{
        display: none;
      }
    .reward .info-lable__parent{
      top:   3px;
      right: 3px;
    }
      .reward .info-lable{
        transform: scale(0.7);
      }
    /* .reward .info-lable:before {
        width: 34px;
        height: 34px;
        display: block;
        position: absolute;
        left: -9px;
        margin-left: -1px;
        top: -11px;
        font-size: 14px;
        background: transparent;
        color: #fff;
        content: 'i';
        line-height: 36px;
        text-align: center;
      }
     .reward .info-lable:after{
      display: none;
     }*/
    }
    @media only screen  and (max-width: 991px) and (min-width: 768px){
      .reward{
        padding: 25px 45px 25px 14px
      }
    }
    @media only screen and (min-width: 768px){
      .info--show-on-hover .close,
      .mobile-reward{
        display: none;
      }
      .info__parent:not(.desctop-reward) > .info--show-on-hover{
        -webkit-transition:  all .3s ease-in-out;
        -moz-transition:  all .3s ease-in-out;
        transition:  all .3s ease-in-out;
      }
      .info__parent.desctop-reward > .info--show-on-hover.open,
      .info__parent:not(.desctop-reward):hover > .info--show-on-hover{
        visibility: visible;
        opacity: 1;
      }
      .mobile_theme_lst_meta{
        display: none;
      }
      .mainpage-block{
        margin-top: 60px;
      }
      .block__title{
        margin-bottom: 18px;
      }
    }
    @media only screen and (max-width: 767px){
      .reward{
        display: none;
      }
      .reward.mobile-reward{
        margin: 0 0 15px;
        padding: 9px 36px 8px 15px;
        border-radius: 4px;
        display: block;
        box-sizing: border-box;
        font-size: 37px
      }
        .reward.mobile-reward .col{
          max-width: calc(100% - 75px);
        }
        .reward.mobile-reward .one{
          font-size: 19px;
        }
      .bottom-part-btns .btns-item{
        width: auto;
        margin-bottom: 10px;
      }
      .mobile_theme_lst_meta{
        margin-bottom: 15px;
      }
      .counters-block .counter_icon_type_none .stat_count{
        font-size: 23px;
        margin-bottom: 0
      }
      .theme_module_counter .cont_info{
        font-size: 14px;
        line-height: 1.1;
      }
    }
    @media only screen and (max-width: 480px){
      .reward.mobile-reward{
        font-size: 30px
      }
    }
    @media only screen and (max-width: 370px){
      .reward.mobile-reward{
        font-size: 26px
      }
    }
@media only screen and (max-width: 991px) {
  #type-place {
    height: 50px;
    line-height: 50px;
  }
  .job_search_form .results-container {
    right: 28px;
  }
  .c-header__section .header_side.middle_right {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .info--show-on-hover .close,
  .mobile-reward {
    display: none;
  }
  .info__parent:not(.desctop-reward) > .info--show-on-hover {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .info__parent.desctop-reward > .info--show-on-hover.open,
  .info__parent:not(.desctop-reward):hover > .info--show-on-hover {
    visibility: visible;
    opacity: 1;
  }
  .mobile_theme_lst_meta {
    display: none;
  }
  .mainpage-block {
    margin-top: 60px;
  }
  .block__title {
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .mobile_theme_lst_meta {
    margin-bottom: 15px;
  }
  .counters-block .counter_icon_type_none .stat_count {
    font-size: 23px;
    margin-bottom: 0;
  }
  .theme_module_counter .cont_info {
    font-size: 14px;
    line-height: 1.1;
  }
}
.flickr_widget_wrapper {
  display: block;
  font-size: 0;
  line-height: 0;
  margin: -1px 0 0 -1px;
}
.flickr_badge_image .flickr_fadder {
  display: none;
}
.tagcloud {
  font-size: 0;
  line-height: 0;
  margin: -10px 0 0 -10px;
}
.tagcloud span,
.tagcloud a {
  border:var(--color-light-grey) 1px solid;
  display:inline-block;
  margin: 10px 0 0 10px;
  color: #8995a2;
  font-size: 14px!important;
  line-height: 20px!important;
  border-radius: 15px;
  padding: 3px 19px 5px 18px;
  letter-spacing: -0.2px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  transition: background 400ms, color 400ms, border 400ms;
}
.tagcloud a:hover {
  border-color: #28b8dc;
  background: #28b8dc;
  color: #ffffff !important;
}
.blog_post_media {
  margin-bottom: 17px;
  overflow: hidden;
  border-radius: 5px;
}
.blog_post_media > img {
  max-width: 100%;
  height: auto;
}
#main_content .h1,
#main_content .h2,
#main_content .h3,
#main_content .h4,
#main_content .h5,
#main_content .h6,
#main_content > h1,
#main_content > h2,
#main_content > h3,
#main_content > h4,
#main_content > h5,
#main_content > h6,
.blog_content .h1,
.blog_content .h2,
.blog_content .h3,
.blog_content .h4,
.blog_content .h5,
.blog_content .h6,
.blog_content h1,
.blog_content h2,
.blog_content h3,
.blog_content h4,
.blog_content h5,
.blog_content h6,
.comment_content > .h1,
.comment_content > .h2,
.comment_content > .h3,
.comment_content > .h4,
.comment_content > .h5,
.comment_content > .h6,
.comment_content > h1,
.comment_content > h2,
.comment_content > h3,
.comment_content > h4,
.comment_content > h5,
.comment_content > h6,
.wpb_text_column .h1,
.wpb_text_column .h2,
.wpb_text_column .h3,
.wpb_text_column .h4,
.wpb_text_column .h5,
.wpb_text_column .h6,
.wpb_text_column h1,
.wpb_text_column h2,
.wpb_text_column h3,
.wpb_text_column h4,
.wpb_text_column h5,
.wpb_text_column h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.wpb_text_column h1:first-child,
.wpb_text_column h2:first-child,
.wpb_text_column h3:first-child,
.wpb_text_column h4:first-child,
.wpb_text_column h5:first-child,
.wpb_text_column h6:first-child {
  margin-top: 0;
}
.learn_more,
.post_info,
.post_share > a {
  line-height: 21px;
}
.theme_module_button a.learn_more {
  margin-bottom: 0;
}
.blog_type1 .blogpost_title a span,
.learn_more span,
.theme_module_title .carousel_arrows a span {
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 1px;
  margin-left: 9px;
  position: relative;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.blog_type1 .blogpost_title a span:before,
.learn_more span:before,
.theme_module_title .carousel_arrows a span:before {
  position: absolute;
  right: 0;
  top: -4px;
  width: 6px;
  height: 6px;
  content: "";
  z-index: 5;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  border-width: 1px;
  border-style: solid;
  border-left: none;
  border-top: none;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.wrapper_404 {
  padding-top: 80px;
  padding-bottom: 48px;
}
.wrapper_404 h1 {
  font-size: 33px;
  line-height: 35px;
}
.wrapper_404 .pp_container h1{
  font-size: 48px;
    line-height: 58px;
}
.wrapper_404 .pp_container h2{
  font-size: 24px;
  line-height: 40px;
  margin-bottom: 0.5em;
}
.wrapper_404 .pp_container .post-password-form label{
  display: block;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.wrapper_404 .number_404 {
  font-size: 200px;
  line-height: 150px;
  font-weight: 400;
  margin-bottom: 32px;
}
.wrapper_404 .number_404 + h1 {
  margin-bottom: 17px;
}
.wrapper_404 .theme_404_search {
  padding-top: 28px;
  text-align: center;
}
.wrapper_404 .theme_404_search .search_form {
  max-width: 400px;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.wrapper_404 .theme_404_search .search_form .search_text {
  padding-right: 65px;
  margin-bottom: 30px;
  padding-left: 28px;
}
.wrapper_404 .theme_module_button a {
  border-radius: 30px;
  letter-spacing: 1.4px;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 40px;
}
.wrapper_404 .theme_module_button a::after {
  font-family: 'FontAwesome';
  content: '\f105';
  font-size: 18px;
  line-height: 21px;
  margin-left: 8px;
}
.page_with.c_map .main_wrapper {
  padding-bottom: 0 !important;
}
.client-opinion__wrapper {
  margin: 35px 0;
}
.client-opinion__block {
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  color: #fff !important;
  padding: 8px 27px;
  border-radius: 30px;
  font-size: 16px;
  line-height: 32px;
  position: relative;
  transition: all 0.4s;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}
.client-opinion__block b {
  font-weight: 600;
}
.client-opinion__part,
.client-opinion__result {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
  z-index: 15;
  text-align: center;
}
.client-opinion__result {
  position: absolute;
  top: 8px;
  left: 27px;
  z-index: 10;
}
.client-opinion__answer {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  border-bottom: 1px solid rgb(255 255 255 / 72%);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  line-height: 1.4;
}
.client-opinion__answer:hover {
  border-bottom-color: transparent;
}
.client-opinion__left-part .client-opinion__answer {
  margin-left: 1rem;
}
@media only screen and (min-width: 992px) {
  .client-opinion__part {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    text-align: left;
  }
  .client-opinion__right-part {
    text-align: right;
  }
}
@media only screen and (max-width: 480px) {
  .client-opinion__answer {
    border-bottom-color: transparent;
    text-decoration: underline;
  }
  .client-opinion__answer:hover {
    text-decoration: none;
  }
  .client-opinion__block {
    padding: 10px 6px;
  }
}
.widget.widget_text {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.service-cats {
  margin-top: 50px;
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left:  -15px;
}
.service-cats .item{
  flex: 0 0 auto;
  width: 25%;
  box-sizing: border-box;
  margin-bottom: 30px;
  padding-right: 15px;
  padding-left:  15px;
}
.service-cats .item .wrapper {
  display: block;
  height: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  -webkit-box-shadow: 0 10px 16px 0 rgba(58, 87, 135, 0.05);
  -moz-box-shadow: 0 10px 16px 0 rgba(58, 87, 135, 0.05);
  box-shadow: 0 10px 16px 0 rgba(58, 87, 135, 0.05);
  border: 1px solid #eee;
  background-color: #fff;
  text-align: center;
  font-size: 20px;
  padding: 73px 0;
  margin-bottom: 0;
}
.service-cats .item .wrapper .icon {
  font-size: 66px;
  color: var(--color-blue);
}
.service-cats .item .wrapper .title {
  margin-top: 18px;
}
.job_search_form .search-field-wrapper {
  position: relative;
}
#type-place {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  border-bottom-left-radius: 30px !important;
  border-top-left-radius: 30px !important;
  height: 60px;
  line-height: 60px;
  cursor: text;
  font-size: 19px;
  background: #fff;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.top-block .form .underform-text {
  width: 140px;
  text-align: right;
  color: #8a95a1;
  font-size: 12px;
  margin: 12px 0 0;
  line-height: 1.5;
  padding-right: 44px;
  box-sizing: border-box;
  background: url(../img/svg-search-form/AI.svg) no-repeat right center;
  background-size: 31px;
}
.top-block .form {
  position: relative;
}
.top-block .form + .msg_box-with-icon {
  width: 492px;
  position: absolute;
  left: 50%;
  margin-left: -235px;
  bottom: 7vh;
  box-sizing: border-box;
}
.top-block .form + .msg_box-with-icon a {
  color: #fff !important;
}
.msg_box-with-icon.for-today {
  display: block;
  border-radius: 0;
  background: #5c79f4;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  color: #fff;
}
.msg_box-with-icon.for-today .msg_box__icon {
  top: 26px;
}
@media (min-width: 768px) {
  .select-city-box .top-line .city-name{
    position: relative;
    top: -0.5px;
  }
  .sidebar-container .working_time_widget.today-widget {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-top: 0;
  }
}
@media (max-width: 767px) {
  .top-block .form + .msg_box-with-icon {
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    position: relative;
    margin-left: 0;
    line-height: 1.1;
    margin-top: 7vh;
  }
  .sidebar-container .working_time_widget:not(.today-widget) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-top: 0;
  }
}
@media only screen and (max-height: 736px) and (max-width: 500px) {
  .home #main_content .top-block {
    padding-top: 16vh !important;
  }
}
@media only screen and (max-height: 570px) and (max-width: 500px) {
  .home #main_content .top-block {
    padding-top: 14vh !important;
  }
  .top-block .form + .msg_box-with-icon {
    margin-top: 15px;
  }
  .site_wrapper #main_content .top-block h1 {
    font-size: 1.5rem !important;
  }
}
.form-with-suggestions .results-container {
  display: none;
  position: absolute;
  left: 28px;
  right: 0;
  top: 100%;
  background: #fff;
  box-shadow: none;
  border: 1px solid #f1f1f1;
  border-radius: 7px;
  margin-top: 2px;
  z-index: -1;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-animation: fade-out 0.3s linear forwards;
  animation: fade-out 0.3s linear forwards;
}
  .form-with-suggestions .results-container.open{
    opacity: 1;
    visibility: visible;
    z-index: 99999;
    display: block;
  visibility: visible;
  -webkit-animation: fade-in 0.3s linear forwards;
  animation: fade-in 0.3s linear forwards;
  }
.form-with-suggestions.search_form .results-container {
  left: 18px;
  right: 18px;
  padding: 2px 0;
  border: 1px solid #f1f1f1;
  border-radius: 7px;
  font-size: 1rem;
  white-space: normal;
  color: #777;
  line-height: 1.3;
}
  .form-with-suggestions .results-container .searchError{
    padding: 7px 17px;
  }
.form-with-suggestions .search-field.focus + .results-container,
.form-with-suggestions .search-field:active + .results-container,
.form-with-suggestions .search-field:focus + .results-container {
}
.form-with-suggestions .results-container ul {
  margin: 0;
  padding: 0;
}
.form-with-suggestions .results-container .result-item {
  display: block;
  font-size: 1.2rem;
  line-height: 0.9;
  border-color: #ccc;
  border-color: #ccc;
  color: #777;
  border-left: 3px solid #fff;
  background: #fff;
  list-style: none;
  padding: 9px 14px;
  cursor: pointer;
}
.form-with-suggestions .results-container .result-item:before {
  display: none;
}
.form-with-suggestions .results-container .result-item:hover {
  border-left-color: var(--color-blue);
  background: #fff;
  color: var(--color-blue);
}
.easy-autocomplete-container ul {
  border-top: 0;
}
.form-with-suggestions .results-container .result-text {
  padding: 5px 11px;
  text-align: left;
  line-height: 1.2;
  white-space: normal;
  font-size: 0.9rem;
  color: #777;
}
.mobile-search-placeholder {
  display: none;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .working_time_text .working_time_text__item,
  .working_time_text .working_time_text__item .working_time_text__day,
  .working_time_text .working_time_text__item .working_time_text__hours {
    display: block;
  }
}
.job-search-list {

}
.ui-widget {
  font-family: Work Sans !important;
}
.job-search-list .ui-menu{
  z-index: 9999;
  border-radius: 7px;
  margin-top: 2px;
  padding: 5px 20px;

  position: absolute !important;
  background: 0 0;
  border: 0;
}
.job-search-list .ui-menu{
  width: 100% !important;
  max-height: 321px;
  padding: 2px 0;
  margin: 0 19px 0;
  border: 0;
  overflow-y: scroll;
  position: relative !important;
  top:   0 !important;
  left:  0 !important;
  right: 0 !important;
}
.job-search-list--home .ui-menu {
  max-height: none;
  overflow-y: auto;
}
.job-search-list .ui-menu-placeholder{
  visibility: visible;
  opacity: 1 !important;
  display: block;
  z-index: 9999;
}
.job-search-list .ui-menu .ui-menu-item{
  display: block;
  font-size: 1.2rem;
  line-height: 0.9;
  list-style: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 2;
}
.job-search-list .ui-menu .ui-menu-item:before{
  display: none;
}
.job-search-list .ui-menu .ui-menu-item{
  margin-left: 0px;
}
  .job-search-list--home .ui-menu .ui-menu-item{
    display: none;
  }
  .job-search-list--home .ui-menu .ui-menu-item:nth-child(1),
  .job-search-list--home .ui-menu .ui-menu-item:nth-child(2),
  .job-search-list--home .ui-menu .ui-menu-item:nth-child(3),
  .job-search-list--home .ui-menu .ui-menu-item:nth-child(4),
  .job-search-list--home .ui-menu .ui-menu-item:nth-child(5){
    display: block;
  }
.job-search-list .ui-menu .ui-menu-item-wrapper{
  display: block;
  border: 0 !important;
  color: #777;
  border-left: 3px solid #fff !important;
  background: #fff;
  padding: 9px 14px !important;
  margin: 0 !important;
}
.job-search-list .ui-menu .ui-menu-item-wrapper:hover,
.job-search-list .ui-menu .ui-menu-item-wrapper.ui-state-active {
  border: 0 !important;
  padding: 9px 14px !important;
  color: var(--color-blue) !important;
  background: #fff !important;
  border-left: 3px solid var(--color-blue) !important;
}
  .ui-helper-hidden-accessible{
    display: none !important;
  }
#main_content ul.related {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: #eee 1px solid;
  border-radius: 5px;
  padding: 11px 15px 9px 15px;
  margin: 15px 0;
  -webkit-transition: max-height 0.3s, padding 0.3s;
  transition: max-height 0.3s, padding 0.3s;
}
.bottom-list ul.related {
  background: 0 0;
  border: 0;
  padding-bottom: 0;
}
ul.related li {
  width: auto;
  display: block;
  display: inline-block;
  vertical-align: top;
  width: calc(32% - 15px);
  padding-left: 0;
}
ul.related li:before {
  display: none;
}
ul.related > li:last-child {
  padding-bottom: 9px;
}
.mainpage-borderred__section {
  padding: 40px;
}
.link-blue__list {
  margin: 0 -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.link-blue {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.3333%;
  flex: 0 0 33.3333%;
  padding: 0 20px;
  box-sizing: border-box;
  list-style: none;
  line-height: 1.1;
  margin-bottom: 7px;
}
.link-blue:before {
  display: none;
}
.link-blue:last-child {
  padding-bottom: 9px;
}
.alphabetic__list {
  margin: 0 -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -19px;
}
.alphabetic__list .link-blue {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  padding: 0 20px;
  margin-bottom: 19px;
  box-sizing: border-box;
  position: relative;
  padding-left: 45px;
}
.alphabetic__list .link-blue a:after {
  color: #57626e !important;
  content: ",\00a0";
}
.alphabetic__list .link-blue a:last-child:after {
  content: ".";
}
.alphabetic__part-left,
.alphabetic__part-right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  padding: 0;
}
.alphabetic__first-letter {
  color: var(--color-dark-blue);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 3px;
  font-size: 17px;
  position: absolute;
  left: 20px;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .alphabetic__part-left,
  .alphabetic__part-right {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.header_side_container .job_filters {
  display: inline-block;
}
.city-name-wrapper {
  color: #334e6f;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  margin-left: 102px;
}
.city-name-wrapper .icon {
  width: 20px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  background: url(../img/Geotag.svg) no-repeat center center;
  background-position: center;
  margin-right: 0.55rem;
  background-size: auto 33px;
}
.city-name-wrapper .city-name {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  margin-right: 0.55rem;
  padding: 6px 0;
}
  .city-name-wrapper .city-name:before{
    width: 1.7rem;
    height: 100%;
    display: block;
    position: absolute;
    left: 100%;
    top:  0;
    cursor: pointer;
    z-index: 10;
    content: '';
  }
.city-name-wrapper .arrow-down {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2rem;
  position: relative;
  z-index: 5;
}
.logo-wrapper {
  width: 175px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 5px;
}
.logo-wrapper img {
  width: 100%;
  height: auto;
}
.select-city-box {
  width: calc(100% - 175px + 7px - 5.7rem);
  max-width: none;
  line-height: 1.2;
  font-size: 1rem;
  position: absolute;
  top: 10px;
  left: auto;
  right: -6.5px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.open-city-box .select-city-box {
  opacity: 1;
  visibility: visible;
}
.select-city-box .line {
  padding: 0.5rem 2.5rem;
}
.select-city-box .top-line {
  background: #f7f7f7;
  border-radius: 3px 3px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.select-city-box .top-line .city-name {
  color: #334e6f;
  font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  padding-right: 15px;
}
.select-city-box .top-line .city-name > * {
  display: inline-block;
  vertical-align: middle;
  margin-right: 9px;
  font-size: 1.2rem;
  font-weight: 500;
}
.select-city-box .top-line .city-name .arrow-down {
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}
.select-city-box .top-line .field-wrapper {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.select-city-box .top-line .easy-autocomplete {
  width: 100% !important;
}
      .c-header .easy-autocomplete.eac-bootstrap input{
        width: 100%;
        background: #fff;
        color: #334e6f ;
        box-shadow: none;
        padding: 6px 17px;
        border-color: #ccc;
        border-radius: 4px;
        border-style: solid;
        border-width: 1px;
      }
      .c-header .select-city-box .top-line input.search_location{
        width:  100%;
        height: 50px;
        border-color: #ccc;
        border-radius: 4px;
        border-style: solid;
        border-width: 1px;
        box-shadow: none;
        color: #555;
        float: none;
        padding: 6px 17px;
        -webkit-appearance: none;
        outline: 0;
        margin: 0;
        line-height: 1.7;
        font-size: 1.2rem;
        box-sizing: border-box;
      }
body.assets .easy-autocomplete-container ul li {
  padding: 0;
  background: #fff;
}
.easy-autocomplete-container ul li .eac-item {
  color: #777;
  border-left: 3px solid #fff;
  background: #fff;
  padding: 9px 7px;
}
.easy-autocomplete-container ul li:hover .eac-item {
  border-left-color: var(--color-blue);
  background: #fff;
  color: var(--color-blue);
}
.select-city-box form {
  position: relative;
}
.select-city-box .bottom-line {
  background: #fff;
  border-radius: 0 0 3px 3px;
  padding-bottom: 1rem;
  position: relative;
}
.searchMainLocationError,
.select-city-box .searchLocationError {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin-top: -1px;
  background: none repeat scroll 0 0 #fff;
  border: 1px solid #ccc;
  border-top: 1px dotted #ccc;
  z-index: 999;
  padding: 9px 14px;
  color: #777;
  background: #fff;
}
.select-city-box .bottom-line .title {
  font-size: 1rem;
  color: #999;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 6px;
}
.select-city-box .bottom-line ul {
  position: static;
  display: block;
  height: auto;
  text-align: left;
}
.select-city-box .bottom-line li {
  width: 20%;
  display: block;
  float: left;
  margin: 0.3rem 0;
  line-height: 1.2;
  font-size: 1rem;
  color: var(--color-blue);
}
.select-city-box .bottom-line li:after,
.select-city-box .bottom-line li:before {
  display: none !important;
}
.select-city-box .bottom-line li .nohref-link,
.select-city-box .bottom-line li a {
  color: #777;
  background-color: transparent !important;
}
.select-city-box .bottom-line li .nohref-link:hover,
.select-city-box .bottom-line li a:hover {
  color: var(--color-blue);
  background: 0 0 !important;
}
.select-city-box .bottom-line li .nohref-link:active {
  background: 0 0 !important;
}
.c-header .search-wrapper {
  width: 484px;
  width: 364px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 22px;
  margin-top: -4px;
}
.c-header .search-wrapper .search_form {
  position: relative;
}
.c-header .search-wrapper .search_form .search_text {
  width: 100%;
  position: static;
  display: block;
  background-color: transparent !important;
  color: #334e6f !important;
  padding-right: 38px;
  font-size: 1.2rem;
}
.c-header .search-wrapper .search_form .search_text::-moz-placeholder{
  color: #c4cad0 !important;
}
.c-header .search-wrapper .search_form .search_text:-moz-placeholder{
  color: #c4cad0 !important;
}
.c-header .search-wrapper .search_form .search_text:-ms-input-placeholder{  
  color: #c4cad0 !important;
}
.c-header .search-wrapper .search_form .search_text::placeholder {
  color: #c4cad0 !important;
}
.c-header .search-wrapper .search_form .white-fade-part {
  width: 64px;
  display: block;
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  background: rgba(255, 255, 255, 0);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, #fff 57%, #fff 100%);
  background: -webkit-gradient(left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(57%, #fff), color-stop(100%, #fff));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, #fff 57%, #fff 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, #fff 57%, #fff 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0, #fff 57%, #fff 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 57%, #fff 100%);
  z-index: 1;
  border-radius: 0 50% 50% 0;
}
.c-header .search-wrapper .search_form input:-webkit-autofill,
.c-header .search-wrapper .search_form input:-webkit-autofill:focus .c-header .search-wrapper .search_form input:-webkit-autofill,
.c-header .search-wrapper .search_form input:-webkit-autofill:hover {
  -webkit-text-fill-color: #ссс;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(0, 174, 255, 0.04) 50%, rgba(255, 255, 255, 0) 51%, rgba(0, 174, 255, 0.03) 100%);
}
.c-header .search-wrapper .search_form .search_submit {
  width: 46px;
  height: 46px;
  position: absolute;
  padding: 0;
  right: 2px;
  top: 2px;
  color: transparent;
  background: 0 0;
  z-index: 30;
  border: 0;
}
.c-header .search-wrapper .search_form:after {
  width: 50px;
  height: 50px;
  display: block;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  cursor: pointer;
  color: var(--color-blue);
  font: normal normal normal 20px/50px FontAwesome;
  content: "\f002";
}
.vc_custom_1508395071581 .wpb_content_element {
  margin-bottom: 15px !important;
}
.little-phrase {
  font-size: 0.65rem;
  color: #a5a5a5;
  line-height: 1;
  text-align: center;
  margin-top: 5px;
}
.third-line .little-phrase {
  margin-bottom: 0;
}
.blocker .modal .bottom-part .close-modal {
  display: none;
}
.requestQuoteLine {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 11px 0;
  text-align: center;
  background: #fff;
  -webkit-box-shadow: 0 -1px 30px -1px rgba(0, 0, 0, 0.31);
  -moz-box-shadow: 0 -1px 30px -1px rgba(0, 0, 0, 0.31);
  box-shadow: 0 -1px 30px -1px rgba(0, 0, 0, 0.31);
  z-index: 100000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.requestQuoteLine.show {
  visibility: visible;
  opacity: 1;
}
.requestQuoteLine .little-phrase,
.sticky-wrapper.is-sticky .little-phrase {
  margin-bottom: -3px;
}
.request-btn {
  display: inline-block;
  clear: both;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  border-radius: 7px;
  padding: 13px 30px;
  position: relative;
  margin-bottom: 0;
  border-color: #3ed376;
  background-color: #3ed376;
  border: 1px solid #3ed376;
  color: #fff;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.request-btn:active,
.request-btn:focus,
.request-btn:hover {
  border-color: var(--color-light-grey) !important;
  background-color: #fff;
  color: #3ed376 !important;
}
.no-result-box {
  width: 100%;
  max-width: 600px;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 4px;
  margin: 0 auto;
  padding: 15px 15px 15px 107px;
  position: relative;
  box-sizing: border-box;
}
.no-result-box .icon {
  width: 91px;
  height: 80px;
  position: absolute;
  left: 19px;
  top: 50%;
  margin-top: -34px;
  color: #3ed376;
  font-size: 70px;
}
.no-result-box .title {
  color: #334e6f;
  font-family: Work Sans;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  margin-top: 5px;
  margin-bottom: 6px;
}
.blocker {
  z-index: 1000000 !important;
}
.blocker .modal {
  max-width: 800px;
}
.blocker .modal-title {
  font-size: 1.9rem;
  line-height: 1.1;
  font-weight: 500;
  color: #334e6f;
  letter-spacing: -0.85px;
  font-family: Work Sans;
  margin: 0.75rem 0 0.75rem;
  text-align: center;
}
  .blocker .modal-subtitle{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #8995a2;
    text-align: center;
    margin-bottom: .75rem
  }
  .blocker .modal .form-group{
    margin-bottom: 15px;
    position: relative;
  }
  .blocker .modal .form-group input,
  .blocker .modal .form-group textarea{
    color: #8995a2
  }
  .blocker .modal label{
    font-weight: 500
  }
.blocker .modal .group-title {
  font-weight: 500;
  margin-bottom: 5px;
}
.blocker .modal .additionalBusinesses {
  margin: 0 -30px;
  padding: 0 15px;
  background: #f9f9f9;
}
.blocker .modal .additionalBusinesses .form-group{
position: relative;
margin-bottom: 15px;
}
.blocker .modal .additionalBusinesses .form-group .wrapper{
min-height: 77px;
  background: #ffffff;
  border: #eeeeee 1px solid;
  border-radius: 5px;
  padding: 15px 15px 15px 161px;
  position: relative;
}
.blocker .modal .additionalBusinesses .form-group .wrapper a{
  line-height: 1.1;
  display: block;
  margin-bottom: 4px;
  max-height: 35px;
  position: relative;
  overflow: hidden;
}
.blocker .modal .additionalBusinesses .form-group.no-padding .wrapper{
padding-left: 49px;
}
.blocker .modal .additionalBusinesses .form-control{
  position: absolute;
  top:  15px;
  left: 15px;
}
.blocker .modal .additionalBusinesses .img-wrapper {
  width: 100px;
  height: 77px;
  display: block;
  position: absolute;
  top: 15px;
  left: 49px;
  background-size: cover;
  background-position: top center;
  border-radius: 5px;
}
.blocker .modal .additionalBusinesses .form-group p{
  margin-bottom: 6px;
  line-height: 1.2;
  max-height: 41px;
  position: relative;
  overflow: hidden;
}
.blocker .modal .additionalBusinesses .form-group .fa-star{
  color: #fbb02b
}
.blocker .modal .bottom-part {
  position: relative;
}
.blocker .modal .bottom-part .right-text {
  width: 85%;
  position: absolute;
  right: 0;
  top: 4px;
  text-align: left;
  color: #8995a2;
  font-size: 12px;
  line-height: 1.2;
}
.blocker .modal #requestClientOpinion .bottom-part .right-text {
  top: 12px;
}
.blocker .modal .bottom-part .right-text a {
  color: var(--color-blue);
  text-decoration: none;
}
.blocker .modal .bottom-part .right-text .selected-plus {
  display: none;
}
.blocker .modal .bottom-part .right-text .selected-plus.show {
  display: inline;
}
.blocker .modal .bottom-part .right-text .selected-plus .multiple {
  display: none;
}
.blocker .modal .bottom-part .right-text .selected-plus .multiple.show {
  display: inline;
}
.blocker .result-err .modal-title, .blocker .result-err-limit .modal-title {
  color: #ad0000;
}
.blocker .result-ok .modal-title {
  color: #3b6;
}
.blocker .result .close-modal {
  width: 6em;
  display: inline-block;
  padding: 7px 20px;
  position: static;
  margin: 15px auto 0;
  background: #ad0000 !important;
  border: 1px solid #ad0000;
  color: #fff;
  font-size: 1.1em;
  text-indent: unset;
  height: auto;
  border-radius: 7px;
}
.blocker .result .close-modal:hover {
  border-color: #ad0000;
  background: #fff !important;
  color: #ad0000 !important;
}
.blocker .result-ok .close-modal {
  background: #3b6 !important;
  border: 1px solid #3b6;
}
.blocker .result-ok .close-modal:hover {
  border-color: #3b6;
  color: #3b6 !important;
}
.contact_widget_socials_links {
  margin-top: 15px;
}
.contact_widget_socials_links .item {
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #e60023;
  color: #e60023;
  font-weight: 500;
  border-radius: 25px;
  text-align: center;
  background-color: transparent;
  margin-right: 10px;
  font-size: 0.95rem;
  margin-bottom: 5px;
  transition: all ease 0.3s;
}
.contact_widget_socials_links .item a {
  display: inline-block;
  color: inherit !important;
  padding: 4px 10px;
  color: #e60023;
  transition: all ease 0s;
}
.contact_widget_socials_links .item:last-child {
  margin-right: 0;
}
.contact_widget_socials_links .item:hover {
  background-color: #e60023;
  color: #fff;
}
.contact_widget_socials_links .item.facebook {
  color: #4267b2;
  border-color: #4267b2;
}
.contact_widget_socials_links .item.facebook:hover {
  background-color: #4267b2;
  color: #fff;
}
.contact_widget_socials_links .item.twitter {
  color: #1da1f2;
  border-color: #1da1f2;
}
.contact_widget_socials_links .item.twitter:hover {
  background-color: #1da1f2;
  color: #fff;
}
.contact_widget_socials_links .item i {
  padding-right: 5px;
  font-size: 20px;
  position: relative;
  color: inherit !important;
  top: 2px;
}
.working_time_widget.today-widget {
  margin-bottom: 14px;
  width: 100%;
  box-sizing: border-box;
}
.working_time_text__item.today-item {
  width: 40%;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 0;
}
.working_time_text__item.today-item:first-child {
  margin-right: 11%;
}
.working_time_text__item.today-item .working_clock_icon {
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
}
.working_time_text__item.today-item .working_clock_icon i {
  font-size: 24px;
  position: relative;
  top: -3px;
  font-size: 18px;
  color: var(--color-light-grey);
  position: relative;
  top: -3px;
  display: none;
}
.working_time_text__item .working_time_text__hours {
  margin-left: 0;
}
.working_time_text__item.today-item .working_time_text__day {
  font-weight: 500;
  font-size: 14px;
  color: var(--color-light-grey);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 6px;
  display: block;
}
.working_time_text__item.today-item .working_time_status {
  font-size: 12px;
  font-weight: 600;
  color: #3ed376;
  text-transform: uppercase;
  margin-left: 0;
}
.working_time_text__item.today-item .working_time_status.Closed {
    color: #fd4851;
}
.filter-line {
  margin: 15px 0 10px;
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.working_time_text__item.today-item.peak{
  width: 100%;
  margin-top: 17px
}
  .working_time_text__hours--half{
    width: 46%;
    display: inline-block;
    vertical-align: top;
    margin-right: 5%;
  }
  .working_time_text__hours--half:last-child{
    margin-right: 0
  }
.time-item{
  display: inline-block;
  vertical-align: top;
}
  .time-item:after{
    padding-right: 4px;
    content: ','
  }
  .time-item:last-child:after{
    padding-right: 0;
    content: ''
  }
.grecaptcha-badge {
  visibility: hidden;
}
.third-block{

}
  .third-block .popular-title{
    display: inline-block;
    vertical-align: middle;
  }
  .third-block .popular-title + .popular-title--state{
    display: inline-block;
    vertical-align: middle;
    font-size: 30px;
    line-height: 40px;
    color: #334e6f;
    letter-spacing: -0.3px;
    font-family: Work Sans,Arial;
    font-weight: 500;
  }
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .header_side_container .search-wrapper {
    width: 460px;
  }
  .working_time_widget.today-widget {
    display: block;
    width: 100%;
  }
  .working_time_text__item.today-item:not(.peak) {
    max-width: 48% !important;
    display: inline-block !important;
    vertical-align: top;
    margin-bottom: 14px;
    margin-top: 0 !important;
  }
  .working_time_text__item.today-item > * {
    display: inline-block;
    vertical-align: middle;
  }
  .working_time_text__item.today-item .working_time_text__day {
    width: 85%;
  }
  .working_time_text__item.today-item .working_time_status,
  .working_time_text__item.today-item .working_time_text__hours {
    /*width: 48%;*/
    padding: 0;
  }
  .working_time_text__item.today-item .working_time_text__hours {
    width: 42%
  }
  .working_time_text__item.today-item.tomorrow .working_clock_icon i {
    visibility: visible;
    opacity: 1;
  }
}
@media only screen and (min-width: 991px) {
  .c-header .easy-autocomplete.eac-bootstrap input,
  body.assets .easy-autocomplete-container ul li {
    font-size: 1.2rem;
  }
  .easy-autocomplete-container ul li .eac-item {
    padding: 9px 14px;
  }
  .long-header-phrase {
    padding-left: 19.5%;
    padding-right: 19.5%;
    line-height: 1;
    margin: 29px 0 10px;
    font-size: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .c-header__section .header_side {
    width: 100%;
  }
  .header_side_container {
    width: 100%;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .c-header .header_side_container:before {
    display: none;
  }
  .header_side_container > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .logo-wrapper {
    width: 130px;
  }
  .c-header .search-wrapper .search_form .search_text {
    font-size: 1rem;
  }
  .select-city-box .line{
    padding-left:  2.35rem;
    padding-right: 2.35rem;
  }
    .select-city-box .top-line .city-name {
      position: relative;
      top: -1px;
      left: -0.5px;
    }
  .header_side_container .search-wrapper {
    width: 240px;
    min-width: 240px;
  }
  .city-name-wrapper .city-name,
  .select-city-box .top-line .city-name > * {
    font-size: 1.1rem;
  }
  .select-city-box {
    width: calc(100% - 175px + 7px - 3.4rem);
  }
  .select-city-box .bottom-line li {
    width: 25%;
  }
  .working_time_text__item.today-item {
    display: block;
    margin-bottom: 25px;
  }
  .working_time_text__item.today-item:last-child {
    margin-bottom: 0;
  }
  .working_time_widget.today-widget {
    display: block;
    width: 100%;
  }
  .working_time_text__item.today-item > * {
    display: inline-block;
    vertical-align: middle;
  }
  .working_time_text__item.today-item .working_time_status,
  .working_time_text__item.today-item .working_time_text__hours {
    width: 100%;
  }
  .working_time_text__item.today-item.tomorrow .working_clock_icon i {
    visibility: visible;
    opacity: 1;
  }
  .contact_widget_socials_links .item {
    width: 7em;
    margin-bottom: 9px;
  }
  .contact_widget_address {
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .contact_widget_address a {
    padding: 8px 24px 8px 9px;
  }
  .contact_widget_address i {
    padding-right: 7px;
  }
  .blocker .modal .bottom-part .right-text {
    width: 81%;
  }
  .c_single_top_content_inner .theme_lst_left_part,
  .c_single_top_content_inner .theme_lst_right_part {
    width: 100%;
    display: block;
  }
  .c_single_top_content .listing-address-directions {
    width: 40%;
    max-width: 40%;
    margin-right: 1%;
  }
  .theme_lst_meta span.request,
  .theme_lst_meta > span {
    width: 29%;
    max-width: 25.9%;
    margin-right: 1%;
  }
  .theme_lst_meta span.request {
    margin-right: 0;
  }
  .c_single_top_content_inner .theme_lst_left_part,
  .c_single_top_content_inner .theme_lst_right_part {
    padding-bottom: 13px;
  }
  .city-name-wrapper {
    margin-left: 3.5rem;
  }
  .widget-title {
    font-size: 22px;
    line-height: 1.1;
  }
  .recent_posts_img {
    width: 100%;
    margin-bottom: 4px;
    margin-right: 0;
  }
  .recent_posts_content {
    display: block;
    width: 100%;
  }
  .recent_posts_content .recent_post_meta {
    font-size: 12px;
    line-height: 1.2;
  }
  .theme_widget_box {
    padding-left: 20px;
    padding-right: 20px;
  }
  .widget_posts ul.recent_posts {
    padding-right: 6px;
  }
  #main_content ul.related {
    padding: 3px 12px 9px 10px;
    margin: 0 0 15px;
  }
  .c_post_main_content #respond input[type="email"],
  .c_post_main_content #respond input[type="text"],
  .c_post_main_content #respond textarea {
    height: 41px;
    letter-spacing: -0.2px;
    padding: 8px 22px 8px 22px;
    line-height: 1.2px;
  }
  .c_post_main_content #respond textarea {
    padding: 8px 22px 8px 22px;
    line-height: 21px;
  }
  .top_footer .row .span3:nth-child(2) {
    width: 31%;
  }
}
@media only screen and (max-width: 767px) {
  .hidden-mob{
    display: none !important;
  }
  .c_single_breadcrumb {
    display: none;
  }
  .c-header__section .header_side.middle_right {
    display: none;
  }
  .header_side_container .search-wrapper {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
  .header_over_bg .city-name-wrapper {
    color: #334e6f;
  }
  .c-header__section--middle .c-header__section-container {
    height: 49px !important;
    height: auto !important;
    padding-top: 10px;
  }
  .c-header .search-wrapper {
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
    clear: both;
    flex: unset;
    display: block;
    margin-top: 15px;
  }
  .titles-wrapper {
    margin-top: 17px;
  }
  .home .c-header .search-wrapper {
    display: none;
  }
  .home .c-header.header_over_bg {
    position: absolute;
    top: 1px;
  }
  .home .top-block {
    min-height: 0;
    padding-top: 15vh;
    padding-bottom: 11vh;
  }
  .c-header .search-wrapper .search_form:after {
    color: var(--color-blue) !important;
  }
  .no-result-box {
    padding-left: 15px;
    text-align: center;
    margin-bottom: 18px;
  }
  .no-result-box .icon {
    position: static;
    margin: 0 auto 15px;
  }
  .job_listings > .no-result-box .icon {
    position: absolute;
    margin: -30px 0 0;
    width: 40px;
    font-size: 36px;
  }
  body .c-header__section--middle {
    -webkit-transition: right 0.5s ease;
    -moz-transition: right 0.5s ease;
    transition: right 0.5s ease;
  }
  body .c-header__section--middle {
    position: relative;
  }
  body .c-header__section--middle:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.33);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 1;
    content: "";
  }
  body.show-dark-background .c-header__section--middle:after {
    visibility: visible;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  body.show-dark-background .header_side_container .logo_container:not(.logo_mobile_not_limited),
  body.show-dark-background .logo-wrapper {
  /*  visibility: hidden;
    -webkit-animation: fade-out 0.3s linear forwards;
    animation: fade-out 0.3s linear forwards;*/
  }
  .open-city-box .c-header__section-container {
    z-index: 9999999;
  }
  .open-city-box .c-header__section-container + .container {
    position: relative;
    z-index: -1;
    visibility: hidden;
  }
  .select-city-box {
    width: calc(100vw - 16px);
    max-width: none;
    height: auto;
    position: fixed;
    left: 50%;
    top: 10px;
    bottom: 10px;
    background: #fff;
    margin-left: calc(-50vw + 8px);
    border-radius: 8px;
    overflow: hidden;
    z-index: 999999;
    box-sizing: border-box;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -o-box-shadow: 0 0 10px #000;
    -ms-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
    visibility: hidden;
    display: none;
    transition: none;
    -webkit-transition: none;
    -webkit-animation: fade-out 0.3s linear forwards;
    animation: fade-out 0.3s linear forwards;
    padding-top: 10px;
  }
  .open-city-box .select-city-box {
    visibility: visible;
    display: block;
    -webkit-animation: fade-in 0.3s linear forwards;
    animation: fade-in 0.3s linear forwards;
  }
  .open-city-box .select-city-box.mini-search-box {
    height: 280px !important;
  }
  .close-box-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    display: none;
    text-indent: -9999px;
    top: 0;
    right: 0;
    cursor: pointer;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDM1NyAzNTciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDM1NyAzNTc7IiB4bWw6c3BhY2U9InByZXNlcnZlIiBjbGFzcz0iIj48Zz48Zz4KCTxnIGlkPSJjbG9zZSI+CgkJPHBvbHlnb24gcG9pbnRzPSIzNTcsMzUuNyAzMjEuMywwIDE3OC41LDE0Mi44IDM1LjcsMCAwLDM1LjcgMTQyLjgsMTc4LjUgMCwzMjEuMyAzNS43LDM1NyAxNzguNSwyMTQuMiAzMjEuMywzNTcgMzU3LDMyMS4zICAgICAyMTQuMiwxNzguNSAgICIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojMjhCOERDIiBkYXRhLW9sZF9jb2xvcj0iIzI4YjhkYyI+PC9wb2x5Z29uPgoJPC9nPgo8L2c+PC9nPiA8L3N2Zz4=)
      no-repeat center;
    background-size: 16px;
  }
  .line.btn-line {
    text-align: right;
  }
  .close-box-icon.text {
    width: 5rem;
    height: auto;
    display: block;
    position: static;
    padding: 5px 14px;
    background: var(--color-blue);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    text-indent: unset;
    line-height: 1.2;
  }
.open-search-box .c-header .search-wrapper .search_form{
  opacity: 1;
  visibility: visible;
}
  .open-search-box .search-wrapper .close-box-icon {
    display: block !important;
  }
  .open-city-box .select-city-box .close-box-icon {
    display: inline-block !important;
  }
  .select-city-box .line {
    padding: 11px 16px 0.4rem;
  }
  .select-city-box .line.top-line {
    padding-bottom: 23px;
    margin-bottom: 2vh;
    background: #fff;
    padding: 1px 0 0
  }
  body.page-template-homepage .select-city-box .line.top-line {
    padding-top: 2px;
  }
  .select-city-box .line.bottom-line {
    padding-bottom: 1rem;
    max-height: calc(100vh - 284px);
    overflow-y: scroll;
    background: 0 0;
    transition: all ease 0.3s;
  }
  .mini-search-box.select-city-box .line.bottom-line {
    max-height: 74px;
  }
  .select-city-box .top-line .city-name:before {
    display: none;
  }
  .select-city-box .top-line .city-name span:before {
    width: 20px;
    height: 27px;
    display: inline-block;
    vertical-align: middle;
    background: url(../img/Geotag.svg) no-repeat center center;
    margin-right: 11px;
    background-size: auto 33px;
    position: relative;
    top: 0;
    content: "";
  }
  .select-city-box .top-line .city-name .arrow-down {
    margin-left: 0;
    font-size: 17px;
    margin-right: 0;
  }
  .c-header .search-wrapper .search_form .search_text {
    height: 35px;
    padding: 4px 17px;
  }
  .c-header .search-wrapper .search_form .search_submit,
  .c-header .search-wrapper .search_form:after {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
  }
  .c-header_component {
    padding: 0;
  }
  .select-city-box .top-line .city-name {
    width: 100%;
    margin-bottom: 17px;
    text-align: right;
  }
  .select-city-box .top-line .field-wrapper {
    width: 100%;
    padding: 0 0;
  }
  .select-city-box .bottom-line li {
    width: 50%;
  }
  .select-city-box .bottom-line .title {
    margin-bottom: 11px;
  }
  .select-city-box .bottom-line li:nth-child(1),
  .select-city-box .bottom-line li:nth-child(2),
  .select-city-box .bottom-line li:nth-child(3),
  .select-city-box .bottom-line li:nth-child(4),
  .select-city-box .bottom-line li:nth-child(5),
  .select-city-box .bottom-line li:nth-child(6) {
    display: block;
  }
  .blocker .modal .additionalBusinesses .img-wrapper {
    cursor: pointer;
  }
  body.assets .easy-autocomplete-container ul li {
    font-size: 16px;
  }
  body.assets .easy-autocomplete-container ul li .eac-item {
    position: relative;
    font-size: 1.2rem;
  }
  body.assets .easy-autocomplete-container ul li .eac-item:after {
    height: 1px;
    display: block;
    position: absolute;
    left: 7px;
    right: 0;
    bottom: 0;
    background: #ccc;
    content: "";
  }
  body.assets .easy-autocomplete-container ul li:last-child .eac-item:after {
    display: none;
  }
  .select-city-box .top-line .city-name .name {
    max-width: calc(100% - 61px);
  }
  .header_side_container .logo_container:not(.logo_mobile_not_limited) {
    max-width: calc(100% - 61px);
    white-space: nowrap;
    margin-left: 0;
  }
  .city-name-wrapper .city-name {
    font-size: 1rem;
    white-space: normal;
    line-height: 1.1;
    margin-right: 8px;
    padding: 0;
  }
  .select-city-box .top-line .city-name > * {
    white-space: normal;
    line-height: 1.1;
    font-size: 1rem;
  }
  .city-name-wrapper .icon {
    margin-right: 11px;
  }
  .theme_single_thumbs .copy {
    margin: 0;
  }
  .bottom-list {
    margin-top: 30px;
  }
  .sidebar_right .bottom-list {
    margin-top: 14px;
  }
  .logo-wrapper {
    width: 165px;
  }
  .site_wrapper .job_listings {
    margin-bottom: 13px;
  }
  .c_search_underform {
    text-align: center;
  }
  .top-block .form .underform-text {
    width: auto;
    display: inline-block;
    height: 32px;
    line-height: 32px;
    padding: 0 0 0 28px;
    background-position: left center;
    background-size: auto 21px;
    margin-top: 0;
  }
  .top-block .form .underform-text br {
    display: none;
  }
  .requestQuoteLine {
    display: none;
  }
  .theme_single_thumbs .item-wrapper {
    width: 50%;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .bars-wrapper .vc_progress_bar {
    width: 100%;
  }
  .c_single_top_content_inner .theme_lst_left_part {
    display: block;
    background: #fff;
    border: #eee 1px solid;
    border-radius: 5px;
    padding: 17px 13px 16px;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
  .theme_lst_meta {
    padding-left: 0;
  }
  .info--show-on-hover {
    width: 250px;
    left: 0;
    margin-left: 0;
    top: 92%;
    padding: 15px;
    visibility: visible;
    opacity: 1;
    display: none;
  }
  .mobile-reward .info--show-on-hover {
    left: auto;
    right: 0;
  }
  .mobile-reward .info--show-on-hover:after,
  .mobile-reward .info--show-on-hover:before {
    right: 16px;
  }
  .info--show-on-hover:after,
  .info--show-on-hover:before {
    right: 50%;
    top: -8px;
    margin-right: -8px;
    border-right: 8px solid transparent;
    border-bottom: 7px solid #e5e5e5;
    border-left: 8px solid transparent;
    border-top: 0;
  }
  .info--show-on-hover:after {
    border-bottom-color: #fff;
    margin-top: 2px;
    margin-right: -8px;
  }
  .service-cats {
    margin-top: 25px;
  }
  .c-header__section--middle {
    padding-bottom: 11px;
  }
  .c_single_top {
    margin-top: 0;
  }
  .main_footer .widget_text .fa {
    padding-right: 3px;
    margin-left: -15px;
  }
  .select-city-box .line {
    width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .form-with-suggestions .results-container {
    right: 28px;
  }
  .form-with-suggestions .results-container .result-text {
    text-align: center;
  }
  #ui-id-2.ui-menu {
    z-index: 9999;
    background: #fff;
    border: 0;
    border-radius: 7px;
    margin-top: 2px;
    padding: 5px 0;
  }
  .job-search-list .ui-menu {
    z-index: 999999;
    background: #fff;
    border: 0;
    border-radius: 0;
    margin-top: -1px;
    padding: 5px 1px;
    border: 0;
    position: relative !important;
    -webkit-animation: fade-in 0.2s linear forwards;
    animation: fade-in 0.2s linear forwards;
  }
  /*.job-search-list .ui-menu:before {
    position: absolute;
    top: -1px;
    left: 0;
    right: 1px;
    bottom: 0;
    background: #fff;
    border-radius: 0;
    border: 1px solid #f1f1f1;
    background: none repeat scroll 0 0 #fff;
    border-top: 1px dotted #ccc;
    content: "";
  }*/
  #ui-id-2.ui-menu,
  #ui-id-2.ui-menu:before {
    display: none !important;
  }
  .job-search-list .ui-menu .ui-menu-item {
    font-size: 19.5px;
  }
  .job-search-list .ui-menu .ui-menu-item-wrapper {
    padding: 9px 7px !important;
    margin-left: 1px !important;
    background: 0 0;
  }
  #ui-id-2.ui-menu .ui-menu-item-wrapper {
    border: 0 !important;
    color: #777;
    background: 0 0 !important;
    padding: 0.3rem 0 !important;
    margin: 0 !important;
    font-size: 1rem;
    line-height: 1.2;
  }
  /*.job-search-list .ui-menu .ui-menu-item-wrapper:after {
    height: 1px;
    display: block;
    position: absolute;
    left: 7px;
    right: 0;
    bottom: 0;
    background: #e0e0e0;
    content: "";
  }*/
  .job-search-list .ui-menu .ui-menu-item:last-child .ui-menu-item-wrapper:after {
    display: none;
  }
  #ui-id-2.ui-menu .ui-menu-item-wrapper.ui-state-active {
    border: 0 !important;
    padding: 0.3rem 0 !important;
    color: var(--color-blue) !important;
    background: 0 0 !important;
  }
  .job-search-list .ui-menu .ui-menu-item-wrapper.ui-state-active,
  .job-search-list .ui-menu .ui-menu-item-wrapper:active,
  .job-search-list .ui-menu .ui-menu-item-wrapper:focus,
  .job-search-list .ui-menu .ui-menu-item-wrapper:hover {
    border-left-color: var(--color-blue) !important;
    background: 0 0 !important;
    padding: 9px 7px !important;
    color: var(--color-blue) !important;
  }
  .home.open-search-box .c-header .search-wrapper {
    display: block !important;
  }
  .mobile-search-placeholder {
    display: block;
  }
  .open-search-box .mobile-search-placeholder {
    display: none;
  }
  .open-city-box .btn-wrapper,
  .open-search-box .btn-wrapper {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    z-index: 99;
    background: #fff;
    display: block !important;
  }
  .open-search-box .close-box-icon {
    z-index: 99;
    top: -100%;
    right: 50%;
    margin-right: calc(-50vw + 15px);
    left: auto;
  }
  .open-search-box .close-box-icon.text {
    top: calc(100vh - 192px);
    right: 0;
    position: fixed;
    top: auto;
    bottom: 25px;
    right: 20px;
    margin: 0 !important;
  }
  .open-search-box .search_form .search_text {
    position: relative !important;
    z-index: 15;
  }
  .open-search-box .mini-search-box .form-with-suggestions.search_form .results-container {
    height: 92px !important;
  }
  .open-search-box .mini-search-box .form-with-suggestions.search_form .close-box-icon.text {
    position: absolute;
    top: 182px;
    bottom: auto;
  }
  .open-search-box .form-with-suggestions.search_form .close-box-icon.text:before {
    position: absolute;
    display: block;
    left: -5px;
    right: -5px;
    top: -5px;
    bottom: -5px;
    content: "";
  }
  .open-search-box .form-with-suggestions.search_form .results-container {
    max-height: calc(100vh - 295px);
    opacity: 1;
    visibility: visible !important;
    right: 0;
    left: 0;
    padding: 19px 0 0;
    border: 0;
    background: 0 0;
    -webkit-animation: unset;
    animation: unset;
    overflow: hidden;
  }
  .open-search-box .form-with-suggestions.search_form .results-container.nores {
    border: 1px solid #f1f1f1;
    background: #fff;
    border-top: 1px dotted #ccc;
    padding: 9px 10px !important;
    z-index: 99999;
    border-radius: 0 0 4px 4px;
    color: #777;
    margin-top: -1px;
    left: 0;
    right: 0;
  }
  .open-search-box.search_form  .form-with-suggestions.search_form .results-container .title {
    font-size: 1rem;
    color: #999;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 11px;
    display: block !important;
  }
  .open-search-box .form-with-suggestions.search_form .results-container .result-item {
    font-size: 1rem;
    padding: 0.3rem 0;
    border: 0;
    line-height: 1.2;
    background: 0 0;
  }
  .show-dark-background .form-with-suggestions.search_form .white-fade-part {
    opacity: 0;
  }
  .c-header .search-wrapper .search_form .white-fade-part {
    display: block;
  }
  .c-header__section .header_side.left {
    flex: 0 1 100%;
  }
  .c-header__section .header_side.left .header_side_container {
    width: 100%;
    display: block;
  }
  .header_side_container .logo_container:not(.logo_mobile_not_limited) {
    float: right;
    position: relative;
    top: 11px;
  }
  .c-header .search-wrapper .search_form .search_text {
    font-size: 1rem;
  }
  .open-search-box .c-header .search-wrapper .search_form .search_text {
    height: 50px;
    background: #fff;
    color: #777;
    box-shadow: none;
    padding: 6px 17px;
    border-color: #ccc;
    border-radius: 4px;
    font-size: 1.2rem;
  }
  body.open-city-box,
  body.open-search-box {
    position: fixed;
  }
  .easy-autocomplete-container {
    z-index: 150 !important;
  }
  .open-search-box .c-header .search-wrapper .mobile-results {
    display: block !important;
    text-align: left;
    margin-top: 0;
    transition: all ease 0.3s;
  }
  .search-wrapper .mobile-results .title {
    margin-bottom: 11px;
    font-size: 1rem;
    color: #999;
    line-height: 1.2;
    text-align: left;
  }
  .search-wrapper .mobile-results ul {
    text-align: left;
    position: static;
    padding: 0 0 20px 0;
  }
  .search-wrapper .mobile-results ul li {
    width: 50%;
    display: block;
    float: left;
    margin: 0.3rem 0;
    line-height: 1.2;
    font-size: 1rem;
    color: #777;
  }
  body.open-search-box .c-header__section--middle .c-header__section-container {
    margin-bottom: -15px;
  }
  .theme_lst_meta span #jobHourStatus {
    display: inline-block;
    margin-left: 9px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    display: none;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .blocker .modal .bottom-part .right-text {
    width: 100%;
    padding-left: 117px;
    box-sizing: border-box;
    z-index: 10;
  }
  #requestQuote .bottom-part > .btn.btn-default{
    position: relative;
    z-index: 999
  }
}
@media only screen and (max-width: 600px) {
  .select-city-box .line {
    width: 420px;
  }
  .c-header__section--middle .c-header__section-container{
/*    padding-top: 0;*/
  }
  .logo-wrapper {
    width: 38px;
    overflow: hidden;
    top: 12px;
  }
  .logo-wrapper img {
    width: 165px;
    max-width: none;
  }
  .select-city-box .top-line .city-name,
  .select-city-box .top-line .field-wrapper {
    -webkit-box-flex: unset;
    -ms-flex: none;
    flex: none;
  }
  .select-city-box .top-line .city-name {
    padding-left: 61px;
    box-sizing: border-box;
    padding-right: 0.5px;
  }
  .header_side_container .logo_container:not(.logo_mobile_not_limited) {
    width: calc(100% - 61px);
    text-align: right;
  }
  .city-name-wrapper .city-name,
  .select-city-box .top-line .city-name .name {
    max-width: calc(100% - 35px);
  }
}
@media only screen and (max-width: 480px) {
  .theme_lst_meta span.request {
    padding-left: 19px;
  }
  .c_single_top_content_inner {
    padding: 0;
    border: 0;
  }
  .c_single_top_content_inner .theme_lst_left_part .theme_lst_meta br {
    display: none;
  }
  .theme_lst_stars {
    margin-bottom: 22px;
  }
  .c_single_top_content_inner .theme_lst_stars {
    margin-bottom: 7px;
  }
  .theme_lst_left_part .desctop_theme_lst_meta > * {
    margin-bottom: 3px;
  }
  .theme_lst_left_part .desctop_theme_lst_meta > .clearfix,
  .theme_lst_left_part .desctop_theme_lst_meta > span {
    margin-bottom: 0;
  }
  .c_single_top_content_inner .theme_lst_left_part {
    padding-top: 8px;
  }
  .c_widget_wrapper,
  .working_time_widget {
    padding: 9px 13px 8px;
  }
  .site_wrapper #main_content .top-block h1 {
    font-size: 1.75rem;
  }
  .c_single_top_content_inner .theme_lst_right_part {
    margin: 15px 0 30px;
    position: relative;
    padding-bottom: 0;
  }
  .c_single_top_content .claim-link {
    position: absolute;
    right: 0;
    bottom: 2px;
    text-align: right;
  }
  .c_single_top_content .theme_lst_meta span {
    margin-right: 0;
    padding-left: 16px;
  }
  .free-cost-estimates {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .blocker {
    padding: 8px !important;
  }
  .blocker .modal {
    width: 100%;
    padding: 15px 17px;
  }
  .blocker .modal a.close-modal {
    top: 5px;
    right: 5px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDM1NyAzNTciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDM1NyAzNTc7IiB4bWw6c3BhY2U9InByZXNlcnZlIiBjbGFzcz0iIj48Zz48Zz4KCTxnIGlkPSJjbG9zZSI+CgkJPHBvbHlnb24gcG9pbnRzPSIzNTcsMzUuNyAzMjEuMywwIDE3OC41LDE0Mi44IDM1LjcsMCAwLDM1LjcgMTQyLjgsMTc4LjUgMCwzMjEuMyAzNS43LDM1NyAxNzguNSwyMTQuMiAzMjEuMywzNTcgMzU3LDMyMS4zICAgICAyMTQuMiwxNzguNSAgICIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojMjhCOERDIiBkYXRhLW9sZF9jb2xvcj0iIzI4YjhkYyI+PC9wb2x5Z29uPgoJPC9nPgo8L2c+PC9nPiA8L3N2Zz4=)
      no-repeat center;
    background-size: 16px;
  }
  .blocker .modal .additionalBusinesses {
    margin: 0 -15px;
    padding: 0;
  }
  .blocker .modal .additionalBusinesses .img-wrapper {
    width: 78px;
    height: 58px;
    left: 33px;
  }
  .blocker .modal .bottom-part .right-text {
    width: 100%;
    position: static;
    text-align: center;
  }
  .blocker .modal .bottom-part .close-modal {
    display: block;
    float: right;
    display: block;
    vertical-align: top;
    border: 1px solid var(--color-light-grey);
    padding: 9px 35px;
    line-height: 29px;
    margin: 0 0 0 -4px;
    position: relative;
    top: -1px;
    color: #8995a2;
    border-radius: 30px;
    text-indent: unset;
    background: 0 0;
    transition: all ease 0.3s;
    width: auto;
  }
  .home .top-block {
    padding-top: 20vh;
    padding-bottom: 12vh;
  }
  .select-city-box .line {
    width: 90vw;
  }
  .link-blue {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  #main_content ul.related li {
    width: calc(50% - 3px);
  }
}
@media only screen and (max-width: 767px) {
  #main_content ul.related-m-full::-webkit-scrollbar:vertical {
    width: 7px;
  }
  #main_content ul.related-m-full::-webkit-scrollbar:horizontal {
    height: 11px;
  }
  .c_single_breadcrumb + .container .top-part-wrapper > .span3.img-wrapper  {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
body .modal-spinner {
  width: 100vw;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: -1px;
  z-index: 999999;
  transform: translateY(0) translateX(0);
  padding: 12px 16px;
  border-radius: 0;
  background-color: transparent !important;
}
.modal-spinner > div {
  -webkit-animation: none !important;
  animation: none !important;
}
.theme_preloader_image_on #loading-center-absolute {
  opacity: 1;
}
.easy-autocomplete-container li:before {
  display: none !important;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .c_single_top_content .listing-address-directions {
    max-width: 33%;
    width: 33%;
  }
  .c-header .search-wrapper {
    width: 224px;
    margin-left: 1.5rem;
  }
  .city-name-wrapper {
    margin-left: 2.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .c_single_top_content h1 {
    max-height: 108px;
    line-height: 1.1;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) and (max-height: 1366px) {
  .home #main_content .top-block {
    padding-top: 34vh !important;
  }
}
@media only screen and (max-width: 500px) and (max-height: 820px) {
  .home #main_content .top-block {
    padding-top: 30vh;
  }
}
@media only screen and (max-width: 500px) and (max-height: 736px) {
  .home #main_content .top-block {
    padding-top: 27vh;
  }
}
@media only screen and (max-width: 500px) and (max-height: 570px) {
  .home #main_content .top-block {
    padding-top: 20vh;
  }
}
.hidden-until-loaded,
body:not(.loaded-page) .form-with-suggestions.search_form .results-container,
body:not(.loaded-page) .open-city-box .search_form:before,
body:not(.loaded-page) .open-city-box .select-city-box {
  top: -999rem !important;
}
@media only screen and (max-width: 370px) {
  .select-city-box .top-line .city-name .arrow-down {
    margin-right: 0;
  }
}
@media only screen and (max-width: 320px) {
  .mobile-stat {
    display: block;
    margin: 0 0 15px;
  }
  .mobile-stat table tr {
    border-color: #eaeaea;
  }
  .mobile-stat table td {
    text-align: left;
    background: #fff;
  }
  .mobile-stat table tr:nth-child(odd) td {
    background: #f5f5f5;
  }
  .mobile-stat table tr td:nth-child(even) {
    font-weight: 600;
    border-left: 1px solid #eaeaea;
  }
}