#cookie-consent {
    background-color: #f5f5f5;
    padding: 10px;
    text-align: center;
    z-index: 50;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

#cookie-consent.cookie-consent_desktop {
    width: 320px;
    height: 135px;
    flex-direction: column;
    padding: 16px;
    position: fixed;
    left: 10px;
    bottom: 10px;
    box-shadow: 0px 0px 16px 0px #00000029;
}

#cookie-consent p {
    margin: 0;
    display: inline-block;
    color: #222;
    font-family: Roboto, Arial;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    text-align: left;
}

#cookie-consent.cookie-consent_mobile p {
    font-size: 12px;
    line-height: 15px;
}

#cookie-consent > p > a.cookie-link,
#cookie-consent > p > a.recomender-link {
  color: #FF5200;
  text-decoration: none;
}

#cookie-consent button {
    background-color: #FF5200;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: Roboto, Arial;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

#cookie-consent.cookie-consent_mobile button {
    padding: 4px 12px;
}

#cookie-consent.cookie-consent_desktop button {
    width: 100%;
    padding: 8px 16px;
}