/* Category colors */
@media (min-width: 1201px) {
  .container {
    max-width: 1440px; } }
@media (max-width: 992px) {
  .container {
    max-width: 100%; } }
html, body {
  height: 100%; }

body {
  display: flex;
  flex-direction: column;
  grid-template-rows: 1fr auto;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  background-color: #e8e7ea; }
  body.no-scroll {
    overflow: hidden; }
  body.fixed-header {
    padding-top: calc(90px + 1.5rem); }
    @media (max-width: 768px) {
      body.fixed-header {
        padding-top: calc(176px + 1.5rem); } }
    @media (max-width: 568px) {
      body.fixed-header {
        padding-top: calc(276px + 1.5rem); } }

.bg-white {
  background-color: #ffffff; }

header {
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #2869d6; }
  .fixed-header header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; }

.fixed-header-active header {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }
  .fixed-header-active header .brand img,
  .fixed-header-active header .search__input,
  .fixed-header-active header .search__btn {
    height: 34px; }

h1 {
  margin-bottom: 1rem;
  color: #333333;
  font-size: 1.25rem; }
  h1.list-title {
    font-size: 1.5rem; }

h2.list__title {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500; }
  h2.list__title a {
    color: #333333; }
    h2.list__title a:hover {
      text-decoration: none; }
  @media (max-width: 768px) {
    h2.list__title {
      margin-top: 1.75rem; } }

h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.0625rem; }
  h3.aside-title {
    margin-top: 1rem;
    margin-bottom: 0.5rem; }

.brand .brand--white,
.brand .brand--blue {
  display: none; }
.style--white .brand .brand--white {
  display: block; }
.style--white .brand .brand--default,
.style--white .brand .brand--blue {
  display: none; }
.style--blue .brand .brand--blue {
  display: block; }
.style--blue .brand .brand--default,
.style--blue .brand .brand--white {
  display: none; }
@media (max-width: 768px) {
  .brand {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem; } }

/* Search form */
.search {
  display: flex;
  border-radius: 5px;
  border: solid 5px rgba(0, 0, 0, 0.14);
  transition: border 0.3s ease-in-out; }
  .search.active {
    border-color: transparent; }
  @media (max-width: 568px) {
    .search {
      flex-direction: column; } }
  @media (max-width: 768px) {
    .search {
      margin-bottom: 1rem; } }

.search__input,
.search__btn {
  height: 48px;
  border-width: 0;
  outline: none;
  border-radius: 0; }

.search__group {
  position: relative;
  flex-grow: 1; }

.search__group:before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0.825rem;
  transform: translateY(-50%); }

.search__group--title:before {
  background-image: url("../images/search.svg"); }
.search__group--title.focus {
  z-index: 9; }

.search__group--location:before {
  background-image: url("../images/location.svg"); }

.search__input {
  width: 100%;
  padding-left: 2.5rem;
  border-width: 0; }
  .search__input:focus {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }

.search__input--title {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  box-shadow: inset -1px 0 0 0 rgba(0, 0, 0, 0.2);
  border-right: 1px solid #ffffff;
  border-left: 1px solid #ffffff; }
  .search__input--title:focus {
    border-bottom-left-radius: 0;
    border-right: 1px solid #2869d6;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2);
    border-left-color: #2869d6;
    z-index: 999; }
  @media (max-width: 568px) {
    .search__input--title {
      box-shadow: none;
      margin-bottom: 2px;
      border-radius: 3px; } }

.search__input--location {
  border-bottom-width: 0;
  box-shadow: 0 0 0 5px transparent;
  transition: box-shadow 0.1s ease-in-out;
  border-right: 1px solid #ffffff;
  border-left: 1px solid #ffffff; }
  .search__input--location:focus {
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2);
    border-left: 1px solid #2869d6;
    border-right: 1px solid #2869d6; }
  @media (max-width: 568px) {
    .search__input--location {
      box-shadow: none;
      margin-bottom: 2px;
      border-radius: 3px; } }

.search__btn {
  padding-left: 1.625rem;
  padding-right: 1.625rem;
  background-color: #ea332d;
  color: #ffffff;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  cursor: pointer; }
  @media (max-width: 568px) {
    .search__btn {
      border-radius: 3px; } }

.site-options {
  display: flex;
  font-size: 0.875rem; }
  .site-options a {
    color: #ffffff; }

.menu-toggler {
  font-size: 1.5rem;
  color: #ffffff;
  margin-left: 1.5rem; }

.dropdown-menu {
  min-width: unset;
  left: -1rem !important;
  font-size: 0.875rem; }
  .dropdown-menu .dropdown-item {
    padding-left: 1rem;
    padding-right: 1rem;
    color: #2869d6; }
    .dropdown-menu .dropdown-item:hover {
      background: none;
      color: #ea332d; }

.btn {
  height: 48px;
  padding-left: 1rem;
  padding-right: 1rem;
  outline: none;
  border-width: 0;
  border-radius: 3px;
  font-size: 0.9375rem; }
  .btn.btn--brand-primary {
    height: 38px;
    border: 2px solid #2869d6;
    background-color: #ffffff;
    font-weight: 500; }
  .btn.btn--brand-secondary {
    height: 38px;
    border: 2px solid #2869d6;
    background-color: #2869d6;
    font-weight: 500;
    color: #ffffff; }
  .btn.btn--empty {
    border: 1px solid #ffffff;
    height: 42px;
    line-height: 42px;
    padding-top: 0;
    padding-bottom: 0; }
  .btn.btn--primary {
    background-color: #ea332d;
    color: #ffffff; }
    .btn.btn--primary:focus {
      box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.14); }
  .btn svg {
    margin-right: 0.5rem; }

.content {
  flex: 1 0 auto; }

footer {
  margin-top: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #183f80;
  flex-shrink: 0; }

.partners {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  font-size: 0.875rem; }

.partners__item {
  display: inline-block;
  margin-right: 1.25rem; }
  @media (max-width: 768px) {
    .partners__item {
      display: block;
      margin-bottom: 0.5rem; } }

.partners__media {
  display: inline;
  margin-right: 0.5rem; }

.partners__link {
  color: #ffffff;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-in-out; }
  .partners__link:hover {
    color: #ffffff;
    border-color: #ffffff;
    text-decoration: none; }

.legal {
  font-size: 0.8125rem;
  color: #ffffff; }

.legal__info {
  max-width: 70%; }
  @media (max-width: 768px) {
    .legal__info {
      max-width: 100%; } }

.legal-nav {
  margin: 0;
  padding: 0;
  list-style: none; }
  @media (max-width: 768px) {
    .legal-nav {
      margin-top: 1rem; } }

.legal-nav__item {
  display: inline-block;
  margin-left: 1rem; }
  @media (max-width: 768px) {
    .legal-nav__item {
      margin-left: 0;
      margin-right: 1rem; } }

.legal-nav__link {
  color: #ffffff;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-in-out; }
  .legal-nav__link:hover {
    color: #ffffff;
    text-decoration: none;
    border-color: #ffffff; }

.list__header {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 400; }
  .list__header a {
    display: inline-block;
    margin-left: 0.625rem;
    font-size: 0.7222222222222222rem;
    border-bottom: 1px dotted #333333;
    color: #333333; }
    .list__header a:hover {
      text-decoration: none;
      border-width: 0; }

.list__item {
  position: relative;
  margin-bottom: 0.5rem;
  padding: 1.5rem;
  padding-left: 148px;
  background-color: #ffffff;
  border-radius: 3px;
  font-size: 0.875rem; }
  .list--alternative .list__item {
    border: 1px solid rgba(0, 0, 0, 0.16); }
  .list--external .list__item {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.16); }
  @media (max-width: 768px) {
    .list__item {
      padding-left: 1rem;
      padding-right: 90px; } }

.badges {
  position: absolute;
  top: 0;
  right: 1rem;
  padding: 0;
  display: flex;
  font-weight: 700;
  text-align: center; }

.badge__item {
  position: relative;
  margin-left: 0.5rem;
  padding: 0.5rem 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: #ffffff;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 50% 85%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 100% 100%, 50% 85%, 0 100%, 0 0);
  justify-content: center; }
  .badge__item.badge__item--pin {
    background-color: #2869d6; }
    @media (max-width: 768px) {
      .badge__item.badge__item--pin {
        color: #2869d6; }
        .badge__item.badge__item--pin:before {
          background-color: #2869d6; } }
  .badge__item.badge__item--recommend {
    max-width: 50px;
    background-color: #76b333;
    line-height: 1;
    font-size: 0.625rem;
    font-weight: 700; }
    @media (max-width: 768px) {
      .badge__item.badge__item--recommend {
        color: #76b333; } }
  @media (max-width: 768px) {
    .badge__item {
      padding: 0.25rem 0.25rem 0.5rem; }
      .badge__item:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #76b333;
        z-index: -1; }
      .badge__item:after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 94%;
        height: 96%;
        background-color: #ffffff;
        z-index: -1;
        clip-path: polygon(100% 0, 100% 100%, 50% 85%, 0 100%, 0 0); } }

@media (max-width: 768px) {
  .badge-wrap {
    display: block;
    text-align: center; } }

.badge--secondary {
  display: inline;
  margin-left: 0.325rem;
  padding: 0 0.325rem;
  background-color: #4a4a4a;
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  vertical-align: middle;
  border-radius: 10px;
  letter-spacing: 0; }
  .active .badge--secondary {
    background-color: #2869d6; }

.list__media {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  max-width: 100px; }
  @media (max-width: 768px) {
    .list__media {
      top: 50%;
      left: unset;
      right: 0.5rem;
      width: 70px;
      transform: translateY(-50%); }
      .list__media img {
        max-width: 100%; } }
  .list__item--free .list__media {
    width: 100px;
    padding: 4px;
    border: 1px solid #ffffff; }
  .list__media img {
    max-width: 100%; }

@media (max-width: 768px) {
  .list__item--special {
    box-shadow: inset 3px 0 0 0 #d88e16; } }
.list__media-custom,
.article-header__brand--custom {
  width: 80px;
  height: 80px;
  background-color: #EBEAED;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 80px; }
  @media (max-width: 768px) {
    .list__media-custom,
    .article-header__brand--custom {
      width: 70px;
      height: 70px;
      line-height: 70px; } }

.article-header__brand--custom {
  width: 120px;
  height: 120px;
  line-height: 120px;
  background-color: #EBEAED !important;
  border-width: 0 !important;
  font-size: 2rem; }
  .fixed .article-header__brand--custom {
    font-size: 1.5rem;
    line-height: 94px; }

.list__address {
  margin-bottom: 0.5rem; }

.list__working-hours {
  display: none;
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-size: 0.875rem !important; }
  @media (max-width: 768px) {
    .list__working-hours {
      display: block; } }

.list__external-url {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #2869d6; }
  .list__external-url svg {
    display: inline-block;
    margin-right: 0.25rem; }
  .list__external-url a {
    color: #333333;
    border-bottom: 1px dotted #2869d6; }
    .list__external-url a:hover {
      text-decoration: none;
      border-bottom-width: 0; }

.list__description {
  position: relative;
  max-height: 3.75rem;
  margin-bottom: 0.5rem;
  color: #8c8795;
  line-height: 1.25rem;
  overflow: hidden; }

.list__gallery {
  margin-left: 1.5rem;
  float: right; }
  @media (max-width: 768px) {
    .list__gallery {
      display: none; } }

.list__gallery-item {
  display: inline-block;
  margin-left: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px; }

.list__gallery-media {
  max-width: 58px;
  border-radius: 3px; }

.hashtags {
  margin: 0 0 0.5rem;
  padding: 0;
  list-style: none;
  font-size: 0.75rem; }

.hashtags__item {
  display: inline-block;
  margin-right: 0.25rem; }
  .hashtags__item.hashtags__item--trophy {
    font-weight: 700; }

.hashtags__link {
  color: #333333; }
  .hashtags__item--trophy .hashtags__link {
    color: #2869d6; }

.phone {
  margin-bottom: 0;
  font-weight: 500; }
  .phone svg path {
    fill: #8c8795; }

.media-list {
  margin: 0;
  padding: 0;
  list-style: none; }

.media-list__item {
  display: inline-block;
  margin-right: 1rem;
  font-weight: 500; }
  @media (max-width: 768px) {
    .media-list__item {
      margin-right: 0.25rem; } }

.media-list__item--google,
.media-list__item--waze {
  display: none; }
  @media (max-width: 768px) {
    .media-list__item--google,
    .media-list__item--waze {
      display: inline-block; } }

.media-list__link--waze {
  padding: 3px 6px;
  border-radius: 3px;
  background-color: #93C4D3 !important; }
  .media-list__link--waze img {
    height: 0.875rem; }

.media-list__link--google {
  padding: 0 !important;
  background-color: transparent !important; }
  .media-list__link--google img {
    height: 26px; }

.media-list__link {
  color: #333333; }
  .media-list__link svg path {
    fill: #8c8795; }
    @media (max-width: 768px) {
      .media-list__link svg path {
        fill: #ffffff; } }
  @media (max-width: 768px) {
    .media-list__link {
      display: inline-block;
      margin-bottom: 0.5rem;
      padding: 0.25rem 0.5rem;
      background-color: #2869d6;
      color: #ffffff;
      border-radius: 3px;
      font-size: 0.75rem;
      font-weight: 300;
      text-transform: uppercase; } }

@media (max-width: 768px) {
  .list__params {
    margin-right: -90px; } }

.rating svg {
  opacity: 0.3; }
  .rating svg path {
    fill: #8c8795; }
  .rating svg.rated {
    opacity: 1; }
    .rating svg.rated path {
      fill: #d88e16; }
@media (max-width: 768px) {
  .list__item .rating {
    position: absolute;
    top: 1.5rem;
    left: 1rem;
    width: 100%; } }

@media (max-width: 768px) {
  .filter {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    background-color: #e8e7ea;
    z-index: 9999; } }

.filters-toggle {
  display: none;
  width: 55px;
  border: 1px solid #ea332d;
  border-radius: 3px;
  line-height: 55px;
  font-size: 1.25rem;
  text-align: center; }
  .filters-toggle svg path {
    fill: #ea332d; }
  .filters-toggle img {
    max-height: 1rem; }
  @media (max-width: 768px) {
    .filters-toggle {
      display: block; } }

.filter__header {
  display: none;
  position: relative;
  margin: -1rem -1rem 1rem;
  background-color: #2869d6;
  color: #ffffff;
  padding: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.15rem; }
  @media (max-width: 768px) {
    .filter__header {
      display: block; } }

.filter__close {
  position: absolute;
  top: 0.825rem;
  right: 1rem;
  color: #ffffff;
  font-size: 1.5rem; }
  .filter__close:hover {
    color: #ffffff; }

.filter__title {
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #dbd9de; }

.filter__list,
.subfilter__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem; }

.filter__item,
.subfilter__item {
  position: relative; }

.filter__link {
  color: #333333; }
  .filter__link:hover {
    color: #333333; }

.filter__list {
  margin-bottom: 2rem; }

.filter__item {
  margin-bottom: 0.75rem;
  padding-right: 2rem; }

.subfilter__list {
  margin-top: 0.25rem;
  margin-right: -2rem;
  border-left: 1px solid #d4d4d4; }

.subfilter__item {
  position: relative;
  margin-bottom: 0.325rem;
  padding-left: 1rem; }
  .subfilter__item:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 1px;
    width: 0.75rem;
    background-color: #d4d4d4; }
  .subfilter__item:last-child:after {
    content: '';
    display: block;
    width: 0.75rem;
    height: 10px;
    background: #e8e7ea;
    position: absolute;
    bottom: 0;
    left: -1px; }

.filter__count {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  padding: 0.15rem 0.25rem;
  font-size: 10px;
  line-height: 10px;
  color: #ffffff;
  border-radius: 3px;
  background-color: #a9a6b2; }

.pagination {
  margin-top: 2rem; }

.page-item {
  margin: 0 0.1875rem;
  font-size: 0.875rem; }
  @media (max-width: 768px) {
    .page-item:first-child, .page-item:last-child {
      display: block; } }
  .page-item:first-child .page-link, .page-item:last-child .page-link {
    padding-left: 0.75rem;
    padding-right: 0.75rem; }
  @media (max-width: 768px) {
    .page-item {
      display: none; } }

.page-link {
  min-width: 40px;
  padding: 0.375rem 0;
  line-height: 1;
  text-align: center;
  border-radius: 3px;
  color: #333333;
  border: solid 1px rgba(0, 0, 0, 0.2); }
  .page-link:hover {
    background-color: #ffffff;
    border: solid 1px rgba(0, 0, 0, 0.2);
    color: #ea332d; }
  .page-link:focus {
    box-shadow: none; }
  .active .page-link {
    background-color: #2869d6 !important;
    border: solid 1px rgba(0, 0, 0, 0.2) !important; }

.nav-tabs {
  position: relative;
  margin-bottom: 0;
  border-bottom: 0;
  font-size: 0.875rem;
  z-index: 2; }
  .nav-tabs .nav-item {
    margin-right: 2px;
    text-transform: uppercase;
    font-weight: 600; }
    @media (max-width: 768px) {
      .nav-tabs .nav-item {
        margin-right: 0; } }
  .nav-tabs .nav-link {
    height: 100%;
    padding: 0.75rem 1.5rem;
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.15);
    color: #4a4a4a;
    letter-spacing: 0.6px;
    transition: color 0.3s ease-in-out; }
    .nav-tabs .nav-link:hover {
      border-color: rgba(0, 0, 0, 0.15);
      color: #2869d6; }
    .nav-tabs .nav-link.active {
      color: #2869d6;
      background-color: #e8e7ea;
      border-width: 0;
      box-shadow: inset -1px 0 0 0 rgba(0, 0, 0, 0.15), inset 1px 0 0 0 rgba(0, 0, 0, 0.15), inset 0 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 3px 0 0 #2869d6; }
    @media (max-width: 768px) {
      .nav-tabs .nav-link {
        padding: 0.5rem 0.875rem;
        line-height: 1.5;
        font-size: 0.8125rem; } }
    @media (max-width: 420px) {
      .nav-tabs .nav-link {
        font-size: 0.625rem; } }
  .nav-tabs.nav-tabs--border {
    border-bottom: 1px solid #D9D9D9; }

.nav-tabs-reverse .nav-link {
  background-color: transparent; }
  .nav-tabs-reverse .nav-link.active {
    background-color: #ffffff; }

.list-order {
  font-size: 0.875rem; }
  .list-order label {
    margin: 0;
    white-space: nowrap; }
  .list-order .custom-select {
    height: calc(32px - 4px) !important;
    margin-left: 0.5rem;
    padding: 0.125rem 0.5rem;
    padding-right: 2rem;
    font-size: 0.875rem; }
  @media (max-width: 992px) {
    .list-order {
      display: none !important; } }

.list-banner {
  margin-top: 1rem;
  margin-bottom: 1rem; }
  .list-banner.list-banner--text {
    text-align: center;
    font-size: 0.8125rem; }
    .list-banner.list-banner--text .ico {
      width: 14px;
      height: auto;
      margin-right: 0.25rem;
      vertical-align: middle; }
    .list-banner.list-banner--text a {
      color: #333333;
      text-decoration: underline; }
  .list-banner.list-banner--media img {
    width: 100%;
    height: 100%; }

.list-description {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem; }

.quick-links {
  border: 1px solid #d4d4d4;
  background-color: #ffffff;
  margin-bottom: 2rem;}

.quick-links__title {
  position: relative;
  margin: -1px -1px 1.5rem;
  padding: 1rem;
  background-color: #2869d6;
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }
  .quick-links__title img {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 12px;
    height: auto;
    transform: translateY(-50%); }

.quick-links__item {
  margin-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem; }

.quick-links__item-title {
  margin-bottom: 0;
  font-size: 0.8125rem; }

.quick-links__item-link {
  color: #333333; }
  .quick-links__item-link:hover {
    color: #333333; }

.quick-links__item-description {
  margin-bottom: 0;
  font-size: 0.8125rem;
  color: #8c8795; }

.print {
  display: block;
  width: 27px;
  height: 27px;
  margin-left: 1rem;
  background-color: #2869d6;
  border-radius: 3px;
  text-align: center;
  line-height: 27px; }
  .print img {
    width: auto;
    height: 16px; }

aside {
  padding-top: 52px; }

.banner {
  position: relative;
  text-align: center; }
  .banner h3 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4a4a4a;
    text-transform: uppercase; }
  .banner img, .banner iframe {
    max-width: 100%; }
  .banner iframe {
    height: 270px; }
  .banner .banner__caption {
    font-size: 0.8125rem;
    color: #8c8795; }
  .banner .banner__url {
    display: inline-block;
    margin-bottom: 2rem; }

.btn--secondary {
  height: 48px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 48px;
  border: 1px solid #ea332d;
  border-radius: 3px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #ea332d;
  background-color: transparent;
  transition: all 0.3s ease-in-out; }
  .btn--secondary:hover {
    color: #ffffff;
    text-decoration: none;
    background-color: #ea332d; }

.banner__btn {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  width: 86%;
  padding: 0.75rem 0;
  transform: translateX(-50%);
  border: 2px solid #ea332d;
  border-radius: 3px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #ea332d;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease-in-out; }
  .banner__btn:hover {
    color: #ffffff;
    text-decoration: none;
    background-color: #ea332d; }
  .banner__btn svg {
    display: inline-block;
    margin-left: 0.5rem; }

.ui-widget.ui-widget-content {
  border-top-width: 0;
  font-size: 0.875rem;
  color: #333333;
  border-color: #2869d6;
  box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.2);
  z-index: 9999; }
  .ui-widget.ui-widget-content:before, .ui-widget.ui-widget-content:after {
    content: '';
    position: absolute;
    top: 0;
    display: block;
    width: 5px;
    height: calc(100% + 6px);
    background-color: rgba(0, 0, 0, 0.2); }
  .ui-widget.ui-widget-content:before {
    left: -6px;
    border-bottom-left-radius: 3px; }
  .ui-widget.ui-widget-content:after {
    right: -6px;
    border-bottom-right-radius: 3px; }

.ui-menu .ui-menu-item-wrapper {
  padding-left: 15px;
  padding-right: 15px; }
  .ui-menu .ui-menu-item-wrapper.ui-state-active {
    background-color: #2869d6;
    color: #ffffff;
    border-width: 0;
    margin: 0; }

.ui-state-active {
  border-width: 0 1px; }

.ui-autocomplete-category {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 0.6875rem;
  text-transform: uppercase;
  color: #8c8795; }

.news-block {
  margin-top: 2rem;
  background-color: #ffffff;
  border-radius: 3px; }
  @media (max-width: 768px) {
    .news-block {
      display: none; } }

.news-block__media {
  max-width: 100%; }

.news-block__body {
  padding: 1rem 1rem 1.5rem;
  font-size: 0.8125rem; }

.news-block__title {
  font-size: inherit;
  font-weight: 700; }
  .news-block__title a {
    color: #333333; }

.news-block__lead {
  margin-bottom: 0.5rem;
  color: #8c8795; }

.news-block__follow {
  margin-bottom: 0; }
  .news-block__follow a {
    color: #8c8795;
    text-decoration: underline; }
    .news-block__follow a:hover {
      text-decoration: none; }

.article-index {
  position: relative;
  height: calc(100% - 1.5rem);
  margin-bottom: 1rem;
  padding-bottom: 1.5rem;
  background-color: #ffffff;
  /*&:after {
    content:'';
    position:absolute;
    bottom:0;right:0;
    width:0;height:0;
    border-bottom: 24px solid $color-brand;
    border-left: 24px solid transparent;
  }*/ }
  .article-index.article-index--aside {
    height: auto; }

.bg-white .article-index {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 3px; }

.article-index__link {
  display: block;
  /*height: 200px;*/
  overflow: hidden;
  margin-bottom: 1rem; }
  .article-index__link img {
    border-radius: 3px; }

.article-index__body {
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.875rem; }

.article-index__lead {
  margin-bottom: 0; }

.article-index__media {
  max-width: 100%; }

.article-index__date {
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  color: #8c8795; }

.article-index__title {
  margin-bottom: 0.75rem;
  font-size: 1rem; }
  .article-index__title a {
    color: #333333; }

.article-index__follow {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500; }
  .article-index__follow a {
    color: #2869d6; }

.article-index--secondary .article-index__title {
  font-size: 0.9375rem; }
.article-index--secondary .article-index__lead {
  color: #8c8795;
  font-size: 0.8125rem; }

.rich-text h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.0625rem; }
.rich-text ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none; }
  .rich-text ul li:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 0.75rem;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid #2869d6; }

.attachments__index {
  display: block;
  height: 100%;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 3px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #333333; }
  .attachments__index svg {
    width: auto !important;
    height: 2rem;
    display: block;
    margin: 0 auto 1rem; }
    .attachments__index svg path {
      fill: #8c8795; }
  .attachments__index .attachments__title {
    font-size: 0.8125rem; }
  .attachments__index:hover {
    text-decoration: none; }

.attachments__list {
  font-size: 0.8125rem;
  column-count: 2;
  column-gap: 30px; }
  .attachments__list li {
    margin-bottom: 0.75rem; }
    .attachments__list li:before {
      display: none !important; }
  .attachments__list a {
    color: #333333; }
    .attachments__list a svg {
      display: inline-block;
      margin-right: 0.5rem; }
      .attachments__list a svg path {
        fill: #8c8795; }
    .attachments__list a:hover {
      text-decoration: none; }

.article__keywords {
  max-height: 3.5rem;
  margin-bottom: 0.325rem;
  font-size: 0.75rem;
  overflow: hidden; }
  .article__keywords a {
    color: #333333; }

.follow-url {
  font-weight: 500;
  color: #2869d6; }
  .follow-url.follow-url--small {
    font-size: 0.75rem; }

.industries-list li {
  margin-bottom: 0.5rem;
  color: #2869d6; }
  .industries-list li:before {
    display: none !important; }
  .industries-list li svg {
    width: auto;
    height: 13px;
    margin-right: 0.325rem; }
.industries-list a {
  color: #333333; }

.highlight-box {
  padding: 1.5rem;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.8125rem; }
  .highlight-box p {
    margin: 0;
    line-height: 1.5rem; }
    .highlight-box p strong {
      display: block; }
    .highlight-box p:first-child {
      margin-bottom: 0.5rem; }

.credit-list {
  font-size: 0.8125rem; }
  .credit-list li {
    display: inline-block;
    font-weight: 700;
    margin-right: 1rem; }
    .credit-list li:before {
      display: none !important; }
  .credit-list svg {
    margin-right: 0.25rem; }
    .credit-list svg path {
      fill: #2869d6; }
  .credit-list a {
    color: #333333; }

.contacts-list {
  columns: 2;
  column-gap: 30px; }
  .contacts-list li {
    display: flex;
    flex-wrap: wrap;
    padding: 0.625rem 0;
    font-size: 0.8125rem;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #D1D1D1;
    break-inside: avoid-column; }
    .contacts-list li:before {
      display: none !important; }
    @media (max-width: 990px) {
      .contacts-list li {
        flex-flow: row wrap; } }
  .contacts-list .contacts-list__working-hours {
    width: 100%;
    padding-top: 0.25rem;
    font-size: 13px;
    color: #8a8a8a; }
  .contacts-list strong {
    /*white-space: nowrap;*/
    font-size: 0.9375rem;
    color: #4a4a4a;
    font-weight: 500; }
    .contacts-list strong svg {
      display: inline-block;
      vertical-align: middle;
      margin-right: 0.25rem; }
      .contacts-list strong svg path {
        fill: #2869d6; }
    @media (max-width: 990px) {
      .contacts-list strong {
        width: 100%; } }
  .contacts-list a {
    color: #333333; }
    .contacts-list a:hover {
      text-decoration: none; }

.gallery-thumbs .row {
  margin-left: -4px;
  margin-right: -4px; }
  .gallery-thumbs .row > .col,
  .gallery-thumbs .row > [class*="col-"] {
    padding-right: 4px;
    padding-left: 4px; }
.gallery-thumbs a {
  display: block;
  margin-bottom: 8px; }
.gallery-thumbs img {
  max-width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3); }

.working-hours {
  font-size: 0.9375rem; }
  .working-hours p {
    margin-bottom: 0.5rem; }
  .working-hours svg path {
    fill: #76b333; }

.working-hours--weekend svg path {
  fill: red; }

.trademarks .row {
  margin-left: -4px;
  margin-right: -4px; }
  .trademarks .row > .col,
  .trademarks .row > [class*="col-"] {
    padding-right: 4px;
    padding-left: 4px; }
.trademarks .trademarks__item {
  margin-bottom: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.14); }

.related-resources {
  margin: 0;
  padding: 24px;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
  list-style: none;
  font-size: 0.75rem; }
  .related-resources li {
    margin-bottom: 0.5rem; }
  .related-resources a {
    color: #333333; }
  .related-resources img {margin-right: 10px; vertical-align: text-bottom;}

.article-header {
  position: relative;
  margin-bottom: 2rem; }
  .article-header .container {
    position: relative; }
  .article-header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    padding: 1rem 0;
    width: 100%;
    z-index: 9999;
    background-color: #ffffff;
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2); }

.article-header--blank .article-header__description {
  padding-top: 1rem;
  padding-bottom: 1rem; }
.article-header--blank .article-header__brand {
  top: unset; }
.article-header--blank .article-header__media {
  display: none; }

.article-header-wrap {
  background-color: #ffffff; }

.article-header__media {
  min-height: 180px;
  margin-bottom: 1rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  background: #c6c6c6;
  background: -moz-linear-gradient(top, #c6c6c6 0%, #dce1e5 100%);
  background: -webkit-linear-gradient(top, #c6c6c6 0%, #dce1e5 100%);
  background: linear-gradient(to bottom, #c6c6c6 0%, #dce1e5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c6c6c6', endColorstr='#dce1e5',GradientType=0 ); }
  .fixed .article-header__media {
    display: none; }
  @media (max-width: 768px) {
    .article-header__media {
      display: none; } }

.article-header__brand {
  position: relative;
  top: -80px;
  width: 128px;
  height: 128px;
  margin-left: 2rem;
  margin-right: 2rem;
  background-color: #ffffff;
  border: 1px solid #D1D1D1;
  text-align: center;
  float: left; }
  .article-header__brand img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100%; }
  .fixed .article-header__brand {
    top: unset;
    width: 94px;
    height: 94px;
    left: unset;
    margin-left: 0; }
  @media (max-width: 768px) {
    .article-header__brand {
      top: unset;
      margin-right: 1rem;
      margin-left: 1rem;
      width: 94px;
      height: 94px;
      float: right; }
      .fixed .article-header__brand {
        margin-right: 0; } }

.article-header__description:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  clear: both; }
@media (max-width: 768px) {
  .article-header__description {
    margin-left: 1rem;
    padding-top: 1rem; }
    .fixed .article-header__description {
      padding-top: 0;
      margin-left: 0; } }

.article-header__title {
  max-width: 50%; }

.brand-address a {
  color: #2869d6; }
.brand-address svg path {
  fill: #8c8795; }

.brand-website svg {
  margin-left: 1rem; }
@media (max-width: 768px) {
  .brand-website {
    display: block; }
    .brand-website svg {
      margin-left: 0; } }

.brand-communication {
  margin-top: 1rem;
  margin-bottom: 0.5rem; }
  .brand-communication .btn {
    margin-right: 0.5rem; }
  .fixed .brand-communication {
    margin-top: 0.25rem; }
  @media (max-width: 768px) {
    .brand-communication .brand-communication--consultation {
      display: none; } }

.social-media-list {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 2.625rem;
  vertical-align: middle; }
  .social-media-list li {
    display: inline-block;
    margin-right: 0.5rem; }
    @media (max-width: 768px) {
      .social-media-list li {
        margin-right: 1rem; } }
  .social-media-list a {
    display: block;
    width: 21px;
    height: 21px; }
    .social-media-list a svg {
      width: 100% !important;
      height: auto; }
  @media (max-width: 768px) {
    .social-media-list {
      display: block;
      margin: 1rem 0 0;
      padding-bottom: 1rem; }
      .fixed .social-media-list {
        display: none; } }

.gallery-hero {
  position: relative;
  padding: 2rem 0;
  background-color: #ffffff; }

.gallery-hero__media {
  display: block;
  max-width: 100%;
  margin: 0 auto 1rem; }

.gallery-hero__caption {
  max-width: 768px;
  margin: 0 auto 0; }

.gallery-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.5); }

.gallery-hero__prev {
  left: 50%;
  margin-left: -50%; }

.gallery-hero__next {
  right: 50%;
  margin-right: -50%; }

.gallery-images {
  padding: 1rem 0; }

.gallery-images__url {
  display: block;
  padding: 0 2px;
  overflow: hidden; }
  .gallery-images__url img {
    max-width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    opacity: 1; }

.slick-current img {
  border: 1px solid rgba(40, 105, 214, 0.5);
  opacity: 0.5 !important; }

.review__bubble {
  position: relative;
  padding: 1rem 1.25rem;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  font-size: 0.9375rem; }
  .review__bubble p {
    margin-bottom: 0; }
  .review__bubble:before {
    content: '\00a0';
    display: block;
    position: absolute;
    bottom: -6px;
    left: 1.25rem;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    transform: rotate(45deg);
    box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.1); }

.review__meta {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: #a9a6b2; }
  .review__meta strong {
    display: inline-block;
    margin-right: 0.5rem;
    font-weight: 700; }

.purchases {
  background-color: #EBEAED;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top-width: 0; }

.purchases__item {
  padding: 1rem 1.25rem;
  overflow: hidden; }

.purchases__title {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700; }
  .purchases__title a {
    color: #333333; }

.purchases__description {
  font-size: 0.75rem; }
  .purchases__description p {
    margin-bottom: 0; }

.purchases__btn {
  min-width: 100px;
  height: 38px;
  margin-top: 0.325rem;
  line-height: 38px;
  border-radius: 3px;
  color: #ffffff;
  background-color: #1D3889;
  text-align: center;
  font-size: 0.875rem;
  transition: all 0.3s ease-in-out;
  float: right; }
  .purchases__btn:hover {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9; }

.purchases__copyright {
  padding: 1rem 1.25rem;
  font-size: 0.75rem; }
  .purchases__copyright img {
    max-height: 1.5rem;
    margin-right: 1rem;
    vertical-align: middle; }

.main-menu {
  display: none;
  z-index: 999; }
  @media (max-width: 768px) {
    .active .main-menu {
      position: fixed;
      top: 84px;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 998;
      background-color: #2869d6; } }

.main-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center; }
  .main-menu__list:hover li a {
    opacity: 0.5; }
  @media (max-width: 768px) {
    .active .main-menu__list {
      display: block; } }

.main-menu__item {
  margin-left: 2.25rem;
  white-space: nowrap;
  font-weight: 500;
  font-size: 1rem; }
  .main-menu__item a {
    transition: all 0.3s ease-in-out; }
    .main-menu__item a:hover {
      opacity: 1 !important;
      text-decoration: none; }
  @media (max-width: 768px) {
    .active .main-menu__item {
      margin-bottom: 1rem; } }

.menu-toggler .fa-times {
  display: none; }
.active .menu-toggler .fa-times {
  display: block; }
.active .menu-toggler .fa-bars {
  display: none; }

header.active .menu-switch {
  opacity: 0; }
header.active .main-menu {
  display: block; }
@media (max-width: 768px) {
  header.active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 888; } }

#map {
  pointer-events: none; }

.keywords-sm {
  font-size: 0.75rem;
  line-height: 1.7; }
  .keywords-sm h2 {
    margin-bottom: 1rem;
    font-size: 1.0625rem; }
  .keywords-sm a {
    color: #333333;
    text-decoration: none; }
    .keywords-sm a:hover {
      text-decoration: underline; }

.recommended-block {
  margin-bottom: 1.5rem;
  background-color: #ffffff;
  border: 2px solid #2869d6;
  border-radius: 3px; }
  .recommended-block h3 {
    margin: 0;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: #ffffff;
    background-color: #2869d6; }
    .recommended-block h3 a {
      color: #ffffff; }

.recommended__info {
  padding: 1rem 2rem;
  width: 540px; }
  .recommended__info h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem; }
    .recommended__info h4 a {
      color: #2869d6; }
  .recommended__info p {
    margin-bottom: 0.25rem;
    font-weight: 500;
    font-size: 0.875rem; }
    .recommended__info p a {
      color: #2869d6; }
  .recommended__info svg path {
    fill: #8c8795; }
  @media (max-width: 1200px) {
    .recommended__info {
      white-space: unset;
      width: auto; } }

.recommended__type {
  opacity: 0.6; }

.recommended__description {
  padding: 1rem 2rem;
  font-size: 0.8125rem;
  color: #8c8795; }

.recommended__media {
  padding: 1rem 2rem; }

.recommended__map {
  min-width: 196px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }
  .recommended__map a {
    display: block;
    width: 100%;
    height: 100%; }
  @media (max-width: 1200px) {
    .recommended__map {
      width: 100%;
      min-height: 116px;
      margin-left: 0 !important; } }

.recommended-wrap {
  display: flex;
  justify-content: flex-start; }
  @media (max-width: 1200px) {
    .recommended-wrap {
      flex-wrap: wrap; } }

.brand-web-screen {
  position: absolute;
  top: 50%;
  right: 3.5rem;
  transform: translateY(-50%);
  border: 10px solid #333333;
  border-radius: 5px; }
  .fixed .brand-web-screen {
    display: none; }
  .article-header--blank .brand-web-screen {
    width: 160px;
    top: 1rem;
    right: 2rem;
    transform: unset;
    border-width: 5px; }
  @media (max-width: 990px) {
    .brand-web-screen {
      display: none; } }
  @media (max-width: 1200px) {
    .brand-web-screen {
      top: 1rem;
      right: 2rem;
      transform: translateY(0);
      width: 210px;
      border-width: 5px; } }

.working-hours-expanded {
  display: none; }

.legal-status {
  margin-bottom: 1rem; }
  .legal-status strong {
    position: relative;
    display: inline-block;
    margin-right: 1rem;
    padding-left: 1.25rem;
    font-weight: 500; }
    .legal-status strong:before, .legal-status strong:after {
      position: absolute;
      content: '';
      display: inline-block;
      border-radius: 50%; }
    .legal-status strong:before {
      top: 2px;
      left: 2px;
      width: 0.75rem;
      height: 0.75rem;
      background-color: green;
      z-index: 2; }
    .legal-status strong:after {
      top: 0;
      left: 0;
      width: 1rem;
      height: 1rem;
      background-color: #ffffff;
      border: 1px solid green;
      z-index: 1; }
  .legal-status small {
    font-size: 0.625rem; }

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 9999999; }
  .overlay .contact-form {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 522px;
    padding: 1.5rem;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.3); }
    .overlay .contact-form .alert {
      display: none; }
    .overlay .contact-form legend {
      font-size: 1.0625rem;
      font-weight: 500; }
    @media (max-width: 568px) {
      .overlay .contact-form {
        min-width: unset;
        width: 94%; } }

.error .form-control {
  border-color: red; }

#recaptcha-badge {
  margin-top: 1rem; }

.google-tos {
  margin-top: 1rem;
  font-size: 0.75rem; }
  .google-tos a:hover {
    text-decoration: none; }

.cat-list-holder {
  position: relative;
  margin-top: -24px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  z-index: 1; }

.category-seperator {
  width: 100%;
  margin-left: 15px;
  margin-right: 15px; }
  @media (max-width: 768px) {
    .category-seperator {
      display: none; } }

.cat-list {
  margin: 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  list-style: none; }

.cat-list__item {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 2rem;
  font-size: 0.875rem; }
  .cat-list__item:last-child {
    margin-bottom: 0; }

.color-east-bay {
  color: #445994; }
  .color-east-bay a {
    color: #445994 !important; }

.color-blue-violet {
  color: #6d56b4; }
  .color-blue-violet a {
    color: #6d56b4 !important; }

.color-red-violet {
  color: #b82892; }
  .color-red-violet a {
    color: #b82892 !important; }

.color-carmine {
  color: #ae3441; }
  .color-carmine a {
    color: #ae3441 !important; }

.color-fun-green {
  color: #00912b; }
  .color-fun-green a {
    color: #00912b !important; }

.color-gossamer {
  color: #078f87; }
  .color-gossamer a {
    color: #078f87 !important; }

.color-calypso {
  color: #3d8095; }
  .color-calypso a {
    color: #3d8095 !important; }

.color-kimberly {
  color: #7c729d; }
  .color-kimberly a {
    color: #7c729d !important; }

.color-alpine {
  color: #aba433; }
  .color-alpine a {
    color: #aba433 !important; }

.cat-list__item--title {
  margin-bottom: 0.875rem;
  font-weight: 700;
  font-size: 1rem; }
  .cat-list__item--title svg {
    position: absolute;
    left: 0;
    width: 1.25rem;
    height: auto;
    vertical-align: middle; }

.cat-list__link {
  color: #333333; }
  .cat-list__link:hover {
    color: #2869d6;
    text-decoration: none; }

.block-title {
  font-weight: 600;
  color: #333333;
  font-size: 1.0625rem; }
  .block-title a {
    display: inline-block;
    margin-left: 0.5rem;
    color: #2869d6;
    font-size: 0.8125rem;
    font-weight: 500; }

.external-ads {
  padding: 1rem;
  border: 1px solid #ffffff; }

.external-ads__item {
  text-align: center;
  margin-bottom: 1.5rem; }
  .external-ads__item:last-child {
    margin-bottom: 0; }

.external-ads__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #8c8795; }

.news-title {
  font-size: 2rem; }

.news__body h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem; }
.news__body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.0625rem; }
.news__body img {
  max-width: 100%;
  margin-bottom: 1rem; }
.news__body p {
  margin-bottom: 1rem; }

.zipcode-finder {
  padding-right: 1rem;
  padding-left: calc(64px + 1rem);
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  background-color: #ffffff;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.15); }
  .zipcode-finder:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 15px;
    width: 64px;
    min-height: 100%;
    height: auto;
    background-color: #2869d6;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-image: url("../images/ico-zip-latvia.svg");
    background-repeat: no-repeat;
    background-position: center 1rem; }
  .zipcode-finder legend {
    font-weight: 500;
    font-size: 0.9375rem; }
    .zipcode-finder legend a {
      color: #2869d6; }
  .zipcode-finder input, .zipcode-finder button {
    height: 38px; }
    .zipcode-finder input:focus, .zipcode-finder button:focus {
      box-shadow: none;
      border-right-width: 0; }

.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
  border-bottom-color: #2869d6; }

.tooltip-inner {
  background-color: #2869d6; }

.pills__list {
  display: flex;
  margin: 0;
  padding: 1rem 0;
  list-style: none;
  font-size: 0.75rem;
  font-weight: 500; }

.pills__item {
  margin-right: 0.5rem; }

.pills__link {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  background-color: #ffffff;
  border-radius: 8px;
  color: #4a4a4a; }
  .pills__link:hover {
    text-decoration: none;
    color: #2869d6; }
  .pills__item--active .pills__link {
    background-color: #2869d6;
    color: #ffffff; }

.slick-arrow {
  position: absolute;
  top: 16px;
  height: calc(100% - 2rem);
  background-color: #ffffff;
  color: #2869d6;
  border: 1px solid #dad8dd;
  border-radius: 3px;
  cursor: pointer;
  z-index: 9; }
  .slick-arrow.slick-prev {
    left: -24px; }
  .slick-arrow.slick-next {
    right: -26px; }
  @media (max-width: 990px) {
    .slick-arrow.slick-prev {
      left: -16px; }
    .slick-arrow.slick-next {
      right: -14px; } }

/*# sourceMappingURL=main.css.map */
