.typography{
    font-size: 16px;
}
.typography  ol li{
    list-style-type: decimal;
    font-size: 16px;
}.typography p{
    margin: 0 0 15px 0;
}

.typography table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
}

*+.typography table {
    margin-top: 20px
}

.typography table th, .typography table td {
    padding: 20px 40px
}

.typography table th {
    text-align: left
}

.typography table td {
    vertical-align: top
}

.typography table thead th {
    vertical-align: bottom
}

.typography table caption, .typography table tfoot {
    font-size: 9px;
    font-style: italic
}

.typography table caption {
    text-align: left;
    color: #fff
}

.typography table tbody tr.uk-active {
    background: #f0f0f0
}

.typography table th, .typography table td {
    padding: 10px 10px;
    border: 1px solid #bec1c3;
    background-color: #f9fafe
}

.typography table th {
    border: 1px solid #418a38;
    text-align: center
}
.typography table strong{
    font-weight: bold;
    color: #1d6600;
}
.b-button{
    background-color: hsl(103.2,52.7%,60.2%);
    font-size: 18px;
    color: white;
    display: inline-flex;
    padding: 13px 32px;
    line-height: 26px;
    box-shadow: 0 3px 0 0 hsl(13.9,77.8%,57.6%);
    margin: 0 30px 20px 9px;
    position: relative;
    text-align: center;
    justify-content: center;
}
.b-button:before{
    content: '';
    background: rgb(242,243,247);
    position: absolute;
    z-index: -1;
    top: -10px;
    bottom: -13px;
    left: -10px;
    right: -10px;
}

.b-button:hover{
    color: white;
}




@-webkit-keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}




.ticker {
    width: 100%;
    height: 30px;
    background: rgb(244 80 87 / 100%);
    font-size: 16px;
    white-space: nowrap;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.owl-carousel {
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
}

/* Слайды */
.owl-carousel .item img {
  width: 100%;
  display: block;
}

/* Стили для стрелок */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #007bff; /* синий цвет */
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

/* Левая стрелка слева за пределами слайдера */
.owl-nav .owl-prev {
  left: -40px;
}

/* Правая стрелка справа за пределами слайдера */
.owl-nav .owl-next {
  right: -40px;
}

/* Наведение на стрелки */
.owl-nav button:hover {
  background: #0056b3;
}

.owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 0 0 0;
}

.owl-carousel .owl-dots button.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: black;
}

.owl-carousel .owl-dots button.owl-dot.active {
  background: #008add;
}

@media (min-width: 1201px) {
  .owl-dots {
    display: none;
  }
}

@media (max-width: 1200px) {
  .owl-nav {
   display: none; 
  }
}
