/** * * * */ .tiny-consent { position: fixed; left: 0; bottom: 0; overflow: hidden; background: #171717; width: 100%; height: auto; display: none; color: white; &__inner { padding: 2em; } &__header { position: relative; } &__close { position: absolute; top: 0; right: 0; } &__cookies { margin: 0; padding: 0; } &__cookie { display: none; position: relative; margin-bottom: 1.5em; &-title { display: inline-block; margin-right: 10px; font-weight: bold; } &-content { max-width: 80%; p { line-height: 1.5; } } &-decision { position: absolute; right: 0; bottom: 0; text-align: right; .tiny-consent__button { margin-left: 0.8em; } } &-footer { ul { list-style: none; padding: 0; margin: -0.8em 0 0.8em 0; li { display: inline-block; margin-right: 1em; font-size: 80%; span { display: inline-block; margin-right: .5em; font-weight: bold; } } } } } .button { background: black; border: 2px solid white; padding: .5em 1.8em; color: white; font-size: 0.9rem; &--active { color: black; background: white; } &:hover { cursor: pointer; color: black; background: white; } &:disabled { cursor: not-allowed; background: #7d7d7d; color: #cecece; border-color: #cecece; } } } .show { display: block !important; }