body {
    background-color: #eee;
    font-family: Serif,Georgia,Times,serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Serif,Georgia,Times,serif;
  font-style: normal;
  font-weight: bold;
  color: inherit;
  text-rendering: optimizeLegibility; }
  h1 small,
  h2 small,
  h3 small,
  h4 small,
  h5 small,
  h6 small {
    line-height: 0;
    color: #cacaca; }

h1 {
  font-size: 160%;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h2 {
  font-size: 140%;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h3 {
  font-size: 100%;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h4 {
  font-size: 95%;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h5 {
  font-size: 85%;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h6 {
  font-size: 80%;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

@media print, screen and (min-width: 40em) {
  h1 {
    font-size: 160%; }
  h2 {
    font-size: 140%; }
  h3 {
    font-size: 100%; }
  h4 {
    font-size: 95%; }
  h5 {
    font-size: 85%; }
  h6 {
    font-size: 80%; } }

#wrapper{
	max-width: 68rem;
    margin-left: auto;
    margin-right: auto;
	}
#header {
	background-color:#fff;
	color: #000;
	padding-top: 15px;
	font-size:90%;
}
@media only screen and (min-width: 40.063em) {
#header .columns:nth-child(n+2) {
border-left: 1px solid #eee;
min-height: 150px;
}
}
#navtop {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #fefefe;
    border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}
#content {
	background-color: #fff;
	text-align: left;
	position: relative;
	padding-top:25px;
	padding-bottom:35px;
}
#footer {
    max-width: 65rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 85%;
    padding-top: 25px;
    padding-bottom: 45px;
}
#footer p{
    color: #8d9093;
    font-size: 80%;
    margin: 0 0 1rem;
}
/*элементы прилипающего меню*/
#stickybar {
    background-color: #fefefe;
    padding-top: 5px;
    padding-bottom: 5px;
}
.sticky.is-stuck.is-at-top {
    background-color: #fefefe;
    box-shadow: 0 1px 6px 0 rgba(10, 10, 10, 0.7);
    color: #000;
}
.menu .is-active > a {
    color: #ca0000; }
  .menu .active > a {
    color: #ca0000; 
    font-weight: bold;
  }
.menu .active {
    font-weight: bold;
}
/*Обработка всплывашки про куки*/

.cookie-notice {
    position: fixed;
    bottom: -100px; 
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px;
    z-index: 9999;
    transition: bottom 0.3s ease-in-out;
}

.cookie-notice.show {
    bottom: 0;
}

.cookie-notice {
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999999999;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-notice p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-notice__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.cookie-notice__close:hover {
    opacity: 0.7;
}


.cookie-notice__buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-notice__accept {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-notice__accept:hover {
    background: #45a049;
}

@media (max-width: 768px) {
    .cookie-notice__content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cookie-notice__close {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}
/*Обработка всплывашки про куки*/