#scc-banner {
    width: 340px;
    max-width: 340px;
    position: fixed;
    bottom: 0;
    right: 60px;
    background: #000 url('./astronaut.png') right bottom no-repeat;
    background-size: 120px;
    color: #fff;
    padding: 25px;
    z-index: 9999;
    display: none;
    font-size: 15px;

    .scc-container {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 20px;

        .scc-text {
            display: flex;
            flex-direction: column;
            gap: 5px;
            & > span {
                text-transform: uppercase;
                font-size: 16px;
                font-weight: 500;
                line-height: 120%;
                display: block;
            }
            div {
                display: flex;
                gap: 5px;
                flex-wrap: wrap;
                font-size: 14px;
                p {
                    display: block;
                    line-height: 110%;
                    span {

                    }
                    a {
                        line-height: 110%;
                        text-decoration: underline;
                        color: #fff;
                    }
                }
                
            }
        }

        .scc-actions {
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            width: 100%;

            button {
                background: #000;
                color: #fff;
                border: none;
                padding: 8px 12px;
                cursor: pointer;
                border: 1px solid #aaa;
                border-radius: 5px;
                padding: 0 15px;
                transition: 0.3s ease;
                height: 25px;
                flex-grow: 1;
                &:hover {
                    background-color: #fff;
                    color: #000;
                    border-color: #fff;
                }
            }
            a {
                flex-grow: 1;
                background: #000;
                color: #fff;
                border: none;
                padding: 8px 12px;
                cursor: pointer;
                border: 1px solid #aaa;
                border-radius: 5px;
                padding: 0 15px;
                transition: 0.3s ease;
                height: 25px;
                line-height: 25px;
                text-decoration: none;
                &:hover {
                    background-color: #fff;
                    color: #000;
                    border-color: #fff;
                }
            }
        }
    }
}