/* start base */
:root {
	/* colors */
	--none-color: transparent;
	--white-color: #fff;
	--dark-color: #000;
	--text-color: #0d3331;
	--bg-color: #fff;
	--primary-color: #3aa7a3;
}

.text-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}
/* end base */
/* start cookie-banner */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    max-width: 720px;
    margin: 0 auto;
    padding: 18px 20px;
    background: #ffffff;
    color: #222222;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.45;
}

.cookie-banner__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    color: #fff;
    background-color: #111;
    cursor: pointer;
    transition: opacity 0.2s linear;
}

.cookie-banner__text-link {
    display: inline;
    text-decoration: underline;
    color: var(--primary-color);
}
/* end cookie-banner */
/* start copyright */
.copyright {
    margin-bottom: 20px;
}
/* end copyright */

/* start menu-list */
.menu-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
}

.menu-list__item {
    text-align: center;
}

.menu-list__item.active .menu-list__item-link {
    color: var(--text-color);
}

.menu-list__item-link {
    font-size: 14px;
    color: var(--white-color);
    transition: color .2s linear;
}
/* end menu-list */

/* start phone */
@media (max-width: 767px) {
    /* start cookie-banner */
    .cookie-banner {
      flex-direction: column;
      align-items: flex-start;
      left: 12px;
      right: 12px;
      bottom: 12px;
    }

    .cookie-banner__buttons {
      width: 100%;
    }

    .cookie-btn {
      width: 100%;
    }
    /* end cookie-banner */
    
    /* start menu-list */
    .menu-list {
        justify-content: center;
        flex-direction: column;
    }
    /* end menu-list */
}

@media (hover:hover) {
    .cookie-btn:hover {
        opacity: 0.85;
    }
    
    .menu-list__item-link:hover {
        color: var(--text-color);
    }
}