#punch-buttons-wrapper {
    background-color: #233a67;
    width: 100%;
    height: 100%;
    padding: 32px;
    max-width: calc(100% - 64px);
    max-height: 200px;
    display: inline-flex;
    gap: 32px;

}



.punch-button {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.punch-button .container {
    background-color: white;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 200px;
    border-radius: 12px;
    position: relative;
    margin: 0;
    margin-left: auto;
}

.punch-button .container.right {
    margin-left: unset;
    margin-right: auto;
}

.punch-button .container .content {
    padding: 32px;
    text-align: center;
    height: calc(100% - 64px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.punch-button .container .content h2 {
    margin: 0;
    margin-bottom: 16px;
    line-height: 1;
}

.punch-button .container .content button {
    background-color: #9b1218;
    height: 100%;
    max-height: 72px;
    border-radius: 100px;
    padding: 0;
    position: relative;
    border-color: #353535;
    border-style: solid;
    border-width: 4px;
    aspect-ratio: 1/1;
    min-width: 56px;
}

.punch-button .container .content button .button-cap {
    background-color: #e52c2a;
    border-radius: 100px;
    position: absolute;
    top: -10px;
    border-color: #353535;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;

}

.punch-button .container .content button:active .button-cap {
    top: 0;
}

.punch-button.disabled .container .content button .button-cap {
    top: 0;
    background-color: #9b1218;
}

.punch-button .container .content button .button-cap .button-cooldown {
    display: none;
}

.punch-button.disabled .container .content button .button-cap .button-cooldown {
    display: block;
    color: #e52c2a;
}

.rivit {
    background-color: #212733;
    max-width: 16px;
    max-height: 16px;
    border-radius: 16px;
    width: 16px;
    height: 16px;
}

.rivit.top-left {
    position: absolute;
    top: 16px;
    left: 16px;
}

.rivit.top-right {
    position: absolute;
    top: 16px;
    right: 16px;
}

.rivit.bottom-left {
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.rivit.bottom-right {
    position: absolute;
    bottom: 16px;
    right: 16px;
}

@media screen and (max-device-width:500px) {
    /* #punch-buttons-wrapper {
        max-height: 400px;
    }

    .punch-button .container {
        max-width: 400px;
    }

    .punch-button .container .content button {
        max-width: 150px;
        max-height: 150px;
        border-width: 8px;
    } */

    .punch-button .container .content h2 {
        font-size: 0.8em;
        margin: 8px;
    }
}