*, 
*:focus {
    outline: none !important;
}

/* Fixed Bar */
.fixed-bar {
    position: fixed;
    padding: 16px 0;
    background: #FFCE04;
    margin: 0 auto;
    width: 100%;
    z-index: 1000;
}

.fixed-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fixed-bar .container::after {
    display: none;
}

.fixed-bar p {
    margin: 0;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.fixed-bar a {
    color: #000;
    text-decoration: underline;
}

.fixed-bar button {
    padding: 8px 16px;
    background: #000;
    color: #fff;
    border-radius: 100px;
    border: 0;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    max-width: max-content;
}

@media (max-width: 767.98px) {
    .fixed-bar .container {
        flex-direction: column;
        text-align: center;
    }
}
/* END Fixed Bar */