body {
  color: #000;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.125rem;
  margin: 0;
}

html, body {
  scrollbar-color: rgba(2, 73, 163, 0.50) #F2F2F2;
  scrollbar-width: auto;
}

/* полоса прокрутки (скроллбар) */
::-webkit-scrollbar {
  background: #F2F2F2;
  border-radius: 25px;
  height: 1.25rem;
  width: 1.25rem;
}

/* ползунок скроллбара */
::-webkit-scrollbar-thumb {
  background: rgba(2, 73, 163, 0.50);
  border-radius: .625rem;
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(2, 73, 163, 0.80);
}

/* Стрелки */
::-webkit-scrollbar-button:vertical:start:decrement,
::-webkit-scrollbar-button:vertical:end:increment,
::-webkit-scrollbar-button:horizontal:start:decrement,
::-webkit-scrollbar-button:horizontal:end:increment {
  background: rgba(2, 73, 163, 0.50) url(../images/icons/icon-scrollbar-button-vertical-start.svg) no-repeat 50%;
  border-radius: 50%;
  height: 1.25rem;
  width: 1.25rem;
}

::-webkit-scrollbar-button:vertical:end:increment {
  background: rgba(2, 73, 163, 0.50) url(../images/icons/icon-scrollbar-button-vertical-end.svg) no-repeat 50%;
}

::-webkit-scrollbar-button:horizontal:start:decrement {
  background: rgba(2, 73, 163, 0.50) url(../images/icons/icon-scrollbar-button-horizontal-start.svg) no-repeat 50%;
}

::-webkit-scrollbar-button:horizontal:end:increment {
  background: rgba(2, 73, 163, 0.50) url(../images/icons/icon-scrollbar-button-horizontal-start.svg) no-repeat 50%;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  background: #F7F6F6;
  border: 1px solid #F7F6F6;
  border-radius: 1.25rem;
  box-shadow: 0.923px 1.846px 1.846px 0 rgba(0, 0, 0, 0.15);
  color: #6B6A6F;
  font-family: Raleway, sans-serif;
  font-weight: 400;
  font-size: .875rem;
  line-height: .875rem;
  max-width: calc(100% - .125rem);
  outline: none;
  padding: .5rem .25rem;
  text-indent: .5rem;
  width: calc(100% - .5rem);
}
input[type="hidden"] {
  display: none;
}
textarea {
  border-radius: 1.25rem;
  max-width: calc(100% - .125rem - 2rem);
  padding: .75rem;
  padding-left: 1.25rem;
  width: calc(100% - .125rem - 2rem);
}
input[type="text"].error,
input[type="number"].error,
input[type="email"].error,
input[type="tel"].error,
input[type="password"].error,
textarea.error {
  border-color: red;
  color: red;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::placeholder,
textarea::placeholder {
  color: #16243F;
}
input.error::placeholder,
textarea.error::placeholder {
  color: red;
}

input[type="radio"],
.facet-item input {
  margin: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}
input[type="radio"] + label {
  align-items: center;
  cursor: pointer;
  display: flex;
  line-height: 1rem;
  user-select: none;
}
input[type="radio"] + label:before {
  background: #fff;
  border: .125rem solid #1345A6;
  border-radius: 50%;
  box-sizing: border-box;
  content: '';
  display: inline-block;
  flex-shrink: 0;
  flex-grow: 0;
  height: 1.125rem;
  margin: 0 .5rem 0 0;
  opacity: .8;
  width: 1.125rem;
}
.js-form-type-radio:hover input + label:before {
  opacity: 1;
}
input[type="radio"]:checked + label::before {
  border: 5px solid #1345A6;
  opacity: 1;
}
.js-form-type-radio:hover input:checked + label::before {
  opacity: .8;
}

input[type="radio"]:disabled + label::before {
  background-color: #f5f5f5;
}

input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

input[type="checkbox"] + label {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: Sero Pro, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  gap: .75rem;
  line-height: 21px;
  user-select: none;
}

input[type="checkbox"] + label:before {
  background: #fff;
  border: .125rem solid rgba(2, 73, 163, 0.5);
  border-radius: 5px;
  box-sizing: border-box;
  content: '';
  display: inline-block;
  flex-shrink: 0;
  flex-grow: 0;
  height: 1.125rem;
  margin: 0;
  width: 1.125rem;
}
input[type="checkbox"] + label:hover:before {
  border-color: #0249A3;
}
input[type="checkbox"]:checked + label::before {
  background: #0249A3 url("../images/icons/icon-checkbox.svg") no-repeat center center;
  border-color: #0249A3;
}
input[type="checkbox"]:checked + label:hover::before {
  opacity: 0.8;
}
input[type="checkbox"]:disabled + label::before {
  background-color: #f5f5f5;
}

select {
  background: #F6F7FA;
  border: 1px solid rgba(19, 69, 166, 0.3);
  color: #16243F;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1rem;
  height: 44px;
  max-width: calc(100% - .125rem);
  outline: none;
  padding: 0;
  text-indent: .75rem;
  width: calc(100% - .125rem);
}

a {
  color: #000;
  font-family: Sero Pro, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1rem;
  text-decoration: none;
}
a:hover {
  color: rgba(19, 69, 166, .2);
}
a:active {
  color: #1345A6;
}
a:focus {
  color: rgba(19, 69, 166, 1);
}
a.phone {
  color: #16243F;
  font-size: 1.125rem;
  line-height: 21px;
}
a.phone:hover {
  color: #1345A6;
}
a.phone:focus {

}
.button {
  background: #0249A3;
  border: 1px solid #0249A3;
  border-radius: 1.5rem;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Sero Pro, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.5rem;
  outline: none;
  padding: .5rem 1.25rem;
  text-align: center;
}
.button:hover,
.button:focus {
  background: #fff;
  color: #0249A3;
}
.button-white {
  background: #fff;
  color: #0249A3;
}
.button-white:hover {
  background: #0249A3;
  color: #fff;
}
.button-blue-light {
  background: #2F9BF0;
  border: 1px solid #2F9BF0;
  color: #fff;
  font-size: .875rem;
  line-height: 17px;
  padding: .75rem 1.5rem;
}
.button-blue-light:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #2F9BF0;
}
.button--large {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.125rem;
  text-transform: uppercase;
}
.button--white {
  background: #fff;
  color: #16243F;
}
.button--white:hover {
  background: #fff;
  color: rgba(19, 69, 166, .8);
}
.button--white:active {
  background: #fff;
  color: rgba(19, 69, 166, 1);
}
.button--white.button--large {
}
.button--big {
  height: 60px;
  padding: 0 64px;
}

.toolbar-lining a {
  font-size: .875rem;
  padding: 1rem;
}

h1 {
  font-family: Sero Pro, sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 33px;
  margin: 0;
}

h2 {
  color: #16243F;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 2rem;
  margin: 0 0 2.5rem;
}

h3 {
  color: #16243F;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 23px;
}
h4 {
  font-family: Sero Pro, sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 25px;
  margin: 0 0 1.25rem;
}
h5 {
  font-family: Sero Pro, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 26px;
  margin: 0 0 1.5rem;
}

p {
  font-family: Sero Pro, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 21px;
  margin: 0 0 17px;
}
p:last-child {
  margin: 0;
}

strong {
  font-weight: 500;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.text-content ul {
  list-style: disc;
  margin: 0 0 1.875rem 1.875rem;
}
.text-content ol {
  list-style: decimal;
  margin: 0 0 1.875rem 1.875rem;
}
ul.list-marker {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  list-style: none;
  margin: 0 auto 2.5rem;
  max-width: 640px;
}
ul.list-marker li {
  background: url("../images/icons/icon-marker.svg") no-repeat 1.25rem 0;
  box-sizing: border-box;
  margin: 0;
  max-width: 100%;
  padding-left: 70px;
  padding-right: 1.25rem;
  width: 100%;
}
ul.list-marker .list-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 14px;
}
ul.list-marker .list-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.55;
}
.text-content ul ul,
.text-content ul ol,
.text-content ol ol,
.text-content ol ul {
  margin: .125rem 0 3px .75rem;
}
ul li,
ol li {
  margin: 0;
  padding: 0;
}
.text-content ul li {
  font-family: Sero Pro, sans-serif;
  font-size: 1rem;
  line-height: 21px;
  margin: 0 0 1rem;
}
.text-content ol li {
  font-family: Sero Pro, sans-serif;
  font-size: .875rem;
  line-height: 22px;
}
.text-content ul ul li,
.text-content ul ol li,
.text-content ol ol li,
.text-content ol ul li {
  margin: 0;
}
ul li a,
ol li a {

}
ul li a:hover,
ol li a:hover {

}
ul li li a,
ol li li a {

}
ul li li a:hover,
ol li li a:hover {

}

img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: 100%;
}
img.align-left {
  margin: 0 1.25rem 1.25rem 0;
  width: auto;
}
img.align-right {
  margin: 0 0 1.25rem 1.25rem;
  width: auto;
}
img.align-center {
  margin: 0 0 1.25rem;
  width: auto;
}

.table-scroll {
  margin: 0 0 2.5rem;
  overflow-x: scroll;
}
table {
  border-spacing: 0;
  font-family: Sero Pro, sans-serif;
  font-weight: 400;
  margin: 0 0 2.5rem;
  width: 100%;
  text-align: center;
}
.text-content table {
  text-align: left;
}
.table-scroll table,
.table-scroll table {
  margin: 0;
  min-width: 1000px;
  text-align: left;
}
table tr {}
.field--name-body table tr:nth-child(odd) {
  background: #ffffff;
}
.field--name-body table tr:nth-child(even) {
  background: #eeeeee;
}
table tr th {
  background: rgba(2, 73, 163, 0.5);
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1rem;
  padding: 1rem .25rem;
}
.field--name-body table tr th {
  background: none;
  border: solid #000000;
  border-width: 0 0 1px 0;
  color: #000000;
  font-weight: 600;
}
table tr td {
  border: 1px solid rgba(217, 217, 217, 1);
  font-size: 1rem;
  line-height: 21px;
  padding: 1.5rem .5rem;
}
table.table-mini tr td {
  padding: .5rem;
}
.field--name-body table tr td {
  border-width: 1px 0;
}
table tr td.head-title {
  font-size: .875rem;
  line-height: 18px;
}
table tr td.distance,
table tr td.price {
  text-align: center;
  width: 80px;
}
table tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}
table tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: calc(100% - 2.5rem);
  padding: 0 1.25rem;
  width: 100%;
}
.layout-container {
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select,
  textarea,
  input,
  select:focus,
  textarea:focus,
  input:focus {
    font-size: .875rem;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: calc(100% - 90px);
    padding: 0 45px;
  }

  p {
    font-size: 1rem;
    line-height: 21px;
  }

  .text-content ul li,
  .text-content ol li {
    font-size: 1rem;
    line-height: 21px;
  }

  .button {
    font-size: 1.125rem;
    padding: 1rem;
  }

  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  textarea {
    background: #fff;
    border-radius: 50px;
    box-shadow: .125rem .25rem .25rem 0 rgba(0, 0, 0, 0.15);
    font-size: .875rem;
    line-height: 1.125rem;
    padding: .625rem;
    text-indent: .5rem;
    width: calc(100% - 1.5rem);
  }
  textarea {
    border-radius: 1.25rem;
    padding-left: 1.25rem;
    width: calc(100% - 1.875rem);
  }
}
@media (min-width: 1100px) {
  .table-scroll {
    overflow: hidden;
  }
}
@media (min-width: 1150px) {
  .layout-container {
    margin: 0 auto 0 0;
    max-width: calc(100% - 384px - 2.5rem);
    padding: 0;
    width: 100%;
  }

  .path-frontpage .layout-container,
  .path-cart .layout-container,
  .path-checkout .layout-container {
    margin: 0 auto;
    max-width: calc(100% - 90px);
    padding: 0 45px;
    width: 1280px;
  }
}
@media (min-width: 1200px) {
  ul.list-marker {
    max-width: 960px;
  }
  ul.list-marker li {
    max-width: 460px;
  }
}
@media (min-width: 1440px) {
  .container {
    width: 1280px;
  }
  .path-frontpage .layout-container,
  .path-cart .layout-container,
  .path-checkout .layout-container {
    margin: 0 auto;
    max-width: calc(100% - 90px);
    padding: 0 45px;
    width: 1280px;
  }

  h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
  }
  h3 {
    font-size: 28px;
    line-height: 2.25rem;
  }
  h4 {
    font-size: 25px;
    line-height: 33px;
  }
  h5 {
    font-size: 1.25rem;
    line-height: 26px;
  }

  p {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .text-content ul li,
  .text-content ol li {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .button {
  }
  .button-blue-light {
    color: #FFF;
    font-size: 1.5rem;
    line-height: 31px;
    min-width: 416px;
  }

  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  textarea {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }


  @media screen and (-webkit-min-device-pixel-ratio: 0) {
    select,
    textarea,
    input,
    select:focus,
    textarea:focus,
    input:focus {
      font-size: 1.125rem;
      line-height: 1.5rem;
    }
  }

  .table-scroll table,
  .table-scroll table {
    min-width: 100%;
  }
}
@media (min-width: 1680px) {
  .container {
    width: 1460px;
  }
  .path-frontpage .layout-container,
  .path-cart .layout-container,
  .path-checkout .layout-container {
    margin: 0 auto;
    max-width: calc(100% - 90px);
    padding: 0 45px;
    width: 1460px;
  }

  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  textarea {
    font-size: 1.25rem;
    line-height: 1.625rem;
    padding: 1rem .625rem;
  }
  @media screen and (-webkit-min-device-pixel-ratio: 0) {
    select,
    textarea,
    input,
    select:focus,
    textarea:focus,
    input:focus {
      font-size: 1.25rem;
      line-height: 1.625rem;
    }
  }
}
@media (min-width: 1900px) {
}