/*!
Theme Name: TvoeTilo
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: LICENSE
Tags: tvoetilo
*/

.flex {
  background-color: red;
  width: 60px;
  height: 60px;
}


/* .cookies{
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-color: #fffbff;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: black ;
}

.cookies > p{
  color: black !important;
} */
.cookies {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.cookies__content {
    width: 100%;
    max-width: 900px;
    background: #1e1e1e;
    color: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.cookies__text {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.cookies__link {
    color: #4da3ff;
    text-decoration: none;
    white-space: nowrap;
    transition: .2s;
}

.cookies__link:hover {
    text-decoration: underline;
}

.cookies__button {
    padding: 12px 22px;
    border: none;
    border-radius: 10px;
    background: #795548;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: .2s;
}

.cookies__button:hover {
      background-color: #b25939;
    transition: color cubic-bezier(0.075, 0.82, 0.165, 1);
}

.cookies__button:active {
    transform: scale(.98);
}

@media (max-width: 768px) {
    .cookies {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookies__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 18px;
    }

    .cookies__button {
        width: 100%;
    }
}



.footer-copyright {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-copyright__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright__nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-copyright__nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

.footer-copyright__nav a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-copyright__wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-copyright__nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}