/*	---------------------------------------------------------------------------------------------------- snippet */
/*	---------------------------------------------------------------------------------------------------- ul && ol */
ul.s_ul,
ol.s_ol {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}
/*ul.s_ul ul,
ul.s_ul ol,
ol.s_ol ul,
ol.s_ol ol {
	margin-bottom: 0;
}*/
ol.s_ol {
  counter-reset: li;
}
ul.s_ul li,
ol.s_ol li {
  position: relative;
/*overflow: hidden;*/
  padding-left: 40px;
}
ul.s_ul > li:before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 8px;
  margin-left: -19px;
  position: absolute;
  background-color: #c33049;
}
ol.s_ol > li:before {
  content: counter(li) '.';
  counter-increment: li;
  position: absolute;
  top: -2px;
  margin-left: -30px;
  color: #c33049;
  font-weight: normal;
  font-family: 'adihaus_b';
  font-size: 16px;
  text-transform: uppercase;
  width: 30px;
}
ul.s_ul li:not(:first-child),
ol.s_ol li:not(:first-child) {
  margin-top: 10px;
}
/*	---------------------------------------------------------------------------------------------------- table */
table.s_table {
  width: 100%;
  border-collapse: collapse;
}
table.s_table tr:nth-of-type(odd) {
  background: #f2f3f3;
}
table.s_table th {
  font-weight: normal;
  font-family: 'adihaus_b';
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  background: #1e1e1d;
}
table.s_table td,
table.s_table th {
  padding: 10px 30px;
  text-align: left;
}
@media only screen and (min-width: 769px) {
  table.s_table td:not(:first-child),
  table.s_table th:not(:first-child) {
    border-left: 1px solid #d8d8da;
  }
}
@media only screen and (max-width: 768px) {
  .bt-wrapper.active {
    max-height: 400px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  table.s_table thead,
  table.s_table tbody tr:first-child th {
    display: none;
  }
  table.s_table tbody td {
    border: none;
    display: block;
    vertical-align: top;
    padding: 0;
  }
  table.s_table tbody td:first-child {
    border-top: 1px solid #dad9d9;
  }
  table.s_table tbody tr:last-child td:last-child {
    border-bottom: 1px solid #dad9d9;
  }
  table.s_table.s_table_dth tbody td:before {
    content: attr(data-th);
  }
  table.s_table tbody td:before {
    display: inline-block;
    font-weight: bold;
    width: 6.5em;
    padding: 10px 30px;
  }
  table.s_table tbody td.bt-hide {
    display: none;
  }
}
/*	---------------------------------------------------------------------------------------------------- p */
p.s_p {
  background-color: #f2f3f3;
  padding: 20px 30px;
  border-radius: 5px;
  font-style: italic;
}
/* ---------------------------------------------------------------------------------------------------- typical */
.t_form_bl {
  background-color: #f2f3f3;
  border-radius: 5px;
  padding: 30px;
}
.t_form_bl .section:not(:first-child) {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #fff;
}
.t_form_bl .section {
  display: flex;
}
.t_form_bl .name {
  flex: 1 15%;
  margin-top: 13px;
}
.t_form_bl .field {
  flex: 1 85%;
}
/*---------------------------------------------------------------------------------------------------- СНИППЕТ ФОТОГРАФИЙ */
.i_photo_gallery {
  background-color: #f2f3f3;
  padding: 30px;
  margin-top: 20px;
}
.i_photo_gallery h2 {
  text-align: center;
  margin: 0;
}
.i_gallery_items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 20px;
}
.i_gallery_item {
  margin-top: 20px;
  height: 100%;
}
.i_gallery_img_cont {
  display: block;
  display: flex;
  align-items: stretch;
  justify-content: center;
  cursor: pointer;
  padding-top: 71%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.i_gallery_img_cont img {
  max-width: 100%;
  height: 0;
}
.i_gallery_item_desc {
  padding: 0 20px;
  background-color: #fff;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 1340px) {
  .i_gallery_items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .i_gallery_items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 778px) {
  .i_gallery_items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .i_gallery_items {
    grid-template-columns: none;
  }
}
/*	---------------------------------------------------------------------------------------------------- Предупреждение о графике магазина */
.i_store_place_attention {
  position: relative;
  padding: 10px;
  padding-left: 20px;
  margin-right: 20px;
  border: 1px solid #ca455d;
}
.i_store_place_attention__span {
  position: absolute;
  left: 10px;
  top: 13px;
  color: #9d0a0f;
}
@media screen and (max-width: 420px) {
  .i_store_place_attention {
    margin-right: 10px;
  }
}
