.color-panel {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    padding: 5px;
}

.color-button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    overflow: hidden;
}


.popup-background {
    position:fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;

    z-index: 30;
}

.popup-background-default {
    background-color: rgba(233, 233, 233, 0.486);
}

.popup-background-dark-default {
    background-color: rgba(136, 136, 136, 0.486);
}

.popup-background-red {
    background-color: rgba(255, 2, 2, 0.486);
}

.popup-background-dark-red {
    background-color: rgba(182, 0, 0, 0.486);
}

.popup-background-blue {
    background-color: rgba(0, 115, 247, 0.486);
}

.popup-background-dark-blue {
    background-color: rgba(3, 35, 214, 0.486);
}

.popup-background-green {
    background-color: rgba(76, 255, 91, 0.486);
}

.popup-background-dark-green {
    background-color: rgba(0, 141, 35, 0.486);
}

.popup-background-yellow {
    background-color: rgba(252, 255, 75, 0.486);
}

.popup-background-dark-yellow {
    background-color: rgba(170, 167, 0, 0.486);
}

.popup-background-orange {
    background-color: rgba(255, 157, 45, 0.486);
}

.popup-background-dark-orange {
    background-color: rgba(182, 82, 0, 0.486);
}

.popup-background-purple {
    background-color: rgba(182, 72, 255, 0.486);
}

.popup-background-dark-purple {
    background-color: rgba(125, 0, 141, 0.486);
}

.popup-background-pink {
    background-color: rgba(249, 87, 255, 0.486);
}

.popup-background-dark-pink {
    background-color: rgba(176, 0, 182, 0.486);
}


/* Imported from Up Slider */

.slider-top-bar {
    width: 100%;
    height: 30px;
    display: flex;
}

.slider-top-bar-buffer {
    height: 100%;
    flex: 1;
}

.red-button-container {
    width: 30px;
    height: 30px;

    transition: background-color 0.3s;
}

.red-button-container button img {
    width: 30px;
    height: 30px;
}

.red-button-container button {
    width:30px;
    height:30px;
    background-color: transparent;
    border: none;
    padding: 0;
}

.red-button-container:hover {
    background-color: red;
}


/* Button to activate popup */

.act-search {
    position: fixed;
    /* bottom: 10px; */
    right: 20%;
    border: black 2px solid;
    z-index: 10;
}

@media (max-width: 768px) {
    .act-search {
        bottom: 50px;
        right: 5%;
    }
}

@media (min-width: 769px) {
    .act-search {
        bottom: 75px;
    }
}