body {
  color: #000;
  font-family: Geologica, 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%;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  background: #fff;
  box-shadow: none;
  border: 1px solid #BDBDBD;
  border-radius: .5rem;
  box-sizing: border-box;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .15px;
  line-height: 1.25rem;
  max-width: 100%;
  outline: none;
  padding: .5rem .25rem;
  text-indent: .5rem;
  width: 100%;
}
input[type="hidden"] {
  display: none;
}

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

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

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: 1px solid #BDBDBD;
  border-radius: 50%;
  box-sizing: border-box;
  content: '';
  display: inline-block;
  flex-shrink: 0;
  flex-grow: 0;
  height: 1.5rem;
  margin: 0 .5rem 0 0;
  opacity: .8;
  width: 1.5rem;
}
.js-form-type-radio:hover input + label:before {
  opacity: 1;
}
input[type="radio"]:checked + label::before {
  border: 7px solid #E3000F;
  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;
  flex-wrap: wrap;
  font-size: 1rem;
  font-weight: 400;
  gap: .75rem;
  line-height: 21px;
  user-select: none;
}

input[type="checkbox"] + label:before {
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: .25rem;
  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: #E0E0E0;
}
input[type="checkbox"]:checked + label::before {
  background: url("../images/icons/icon-checkbox.svg") no-repeat center center;
  border-color: #E0E0E0;
}
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: #03953C;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1rem;
  text-decoration: none;
}
a:hover {
  color: #006327;
}
a:active {
  color: #02e683;
}
a:focus {
  color: #02e683;
}
a.phone {
  color: #16243F;
  font-size: 1.125rem;
  line-height: 21px;
}
a.phone:hover {
  color: #1345A6;
}
a.phone:focus {

}
.button {
  background: #03953C;
  border: 1px solid #03953C;
  border-radius: 1.5rem;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.5rem;
  padding: .5rem 1.25rem;
  text-align: center;
}
.button:hover,
.button:focus {
  background: #fff;
  color: #03953C;
}
.button-white {
  background: #fff;
  color: #03953C;
}
.button-white:hover {
  background: #03953C;
  color: #fff;
}
.button.button-orange {
  background: #FFC107;
  border: 1px solid #FFC107;
  box-shadow: 0 4px 12px 0 #F99D154D;
  color: #fff;
}
.button.button-orange:hover {
  background: #FF5722;
  border: 1px solid #FF5722;
  box-shadow: 0 4px 12px 0 #FF57224D;
  color: #fff;
}

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

h1 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 0;
  text-transform: uppercase;
}

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-size: 19px;
  font-weight: 500;
  line-height: 25px;
  margin: 0 0 1.25rem;
}
h5 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 26px;
  margin: 0 0 1.5rem;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin: 0 0 1rem;
}
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-size: 1rem;
  line-height: 21px;
  margin: 0 0 1rem;
}
.text-content ol li {
  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%;
}
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;
}

.btn-custom {
  background: #00dc7d;
  border-radius: 20px;
  color: #fff;
  display: block;
  line-height: 1.2em;
  padding: 9px 15px;
  text-align: center;
  transition: all .3s;
}
.btn-custom:hover {
  background: #02e683;
}
.btn-custom--red {
  background: #f3004e;
}
.btn-custom--red:hover {
  background: #ff1d66;
}

table {
  border-spacing: 0;
  font-weight: 400;
  text-align: center;
  width: 100%;
}
.field-field-par-text table,
.field-body table {
  margin: 0 0 2.5rem;
  text-align: left;
}
table tr {}
.field-body table tr:nth-child(odd) {
  background: #ffffff;
}
.field-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-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-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;
}

.table {
  overflow: hidden;
  border: 1px solid #03953C;
  border-radius: 24px;
}
.table__item {
  overflow: hidden;
  padding: 0 24px;
  border-bottom: 1px solid #03953C;
  background-color: #fff;
}
.table__item:last-child {
  border-bottom: none;
}
.table__item.opened {
  height: 100%;
}
.table__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 0;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #2d2d32;
}
.table__label span {
  margin-right: auto;
  text-transform: uppercase;
  font-weight: 700;
}
.table__label svg {
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: 7px;
  fill: #2364af;
  margin-left: 16px;
}
.table__item.opened .table__label svg {
  transform: rotate(-180deg);
}
.table__container {
  height: 0;
  transition: all 0.2s;
}
.table__item.opened .table__container::before {
  content: "";
  display: block;
  height: 1px;
  background-color: #03953C;
  margin-left: -24px;
  margin-right: -24px;
}

.container {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 1.25rem;
  width: 100%;
}
.layout-container {
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  max-width: 100%;
  padding: 0;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .table__item {
    padding: 0 32px;
  }
  .table__label {
    padding: 24px 0;
  }
  .table__item.opened .table__container::before {
    margin-left: -32px;
    margin-right: -32px;
  }
}
@media (min-width: 1024px) {
  .table__label {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1280px) {
  h1 {
    font-size: 3.125rem;
    line-height: 3.75rem;
  }
}
