#reset-button {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    position: fixed;
    width: 4%;
    max-width: 60px;
    min-width: 48px;
    max-height: 60px;
    min-height: 48px;
    right: 108px;
    bottom: 35px;
    transition: transform 200ms, opacity 500ms, visibility 500ms;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1), 0 2px 32px rgba(0, 0, 0, 0.1);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #002237;
}

#reset-button:active {
    transform: scale(0.9);
}

#refresh-icon {
    color: #ffffff;
    position: absolute;
    font-size: 30px;
}

@media screen and (max-width: 480px), screen and (max-height: 420px) {
    #reset-button {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        top: 5px;
        right: 48px;
        max-width: 48px;
        min-width: 48px;
        max-height: 48px;
        min-height: 48px;
        transition: transform 200ms, opacity 500ms, visibility 500ms;
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
        box-shadow: none;
        background-color: transparent;
    }
}
