.actions-buttons-container-left {
    position: fixed;
    left: 32px;
    bottom: 42px;
    display: flex;
    flex-direction: row;
    z-index: 1000;
}

.actions-buttons-container-right {
    position: fixed;
    right: 32px;
    bottom: 42px;
    display: flex;
    flex-direction: row;
    z-index: 1000;
}

.action-button, .action-button-solid, .action-button-sm {
    background-color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    color: #000000;
    border-radius: 50px;
    box-shadow: 0px 0px 8px 0 #00000033, 0px 0px 8px 0 #00000033;
    transition: 0.3s;
    margin-left: 8px;
    margin-right: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    outline: none;
}

.action-button-lg {
    width: 135px !important;
}

.action-button-auto {
    width: auto !important;
    padding: 0 22px 0 22px;
}

.action-button-yellow {
    background-color: #ffee80;
}

.action-button-forest {
    background-color: #004141;
}

.action-button-gray {
    background-color: #dddddd;
}

.action-button-pink {
    background-color: #fc2b6b;
}

.action-button-mint {
    background-color: #8ce699;
}

.action-button-red {
    background-color: red;
}
.action-button-red:hover{
    background-color: #fc2b6b;
}

.action-button-ocean {
    background-color: #bce1de;
}

.action-button-ocean:hover {
    background-color: #99d3d8;
}

.action-button:disabled{
    background-color: #dddddd !important;
    color: #ffffff !important;
}

.action-button:focus, .action-button-solid:focus {
    border: none;
    outline: none;
}

.action-button .action-button-label {
    display: none;
}

.action-button-sm .action-button-label {
    display: none;
}

.action-button:hover {
    text-decoration: none;
    width: max-content;
    padding: 0 16px;
    color: inherit;
}

.action-button-sm:hover {
    width: 135px;
}

.action-button:hover .action-button-label {
    display: inline;
}

.action-button-sm:hover .action-button-label {
    display: inline;
}


@media (min-width: 1566px) {
    .action-button, .action-button-solid, .action-button-sm {
        width: 60px;
        height: 60px;
    }
}
