﻿/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


.reservation {
    position: fixed;
    padding: 10px;
    font-weight: 600;
    -webkit-animation: pulsing 1.5s infinite linear;
    -moz-animation: pulsing 1.5s infinite linear;
    -ms-animation: pulsing 1.5s infinite linear;
    animation: pulsing 1.5s infinite linear;
    transition: all 300ms ease-in-out;
    box-shadow: 0 0 0 0 var(--sideButton_bcolor1);
    border-radius: 10px;
    border: none;
}

    .reservation pre {
        margin: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
        direction: rtl;
        height: 100%;
        white-space: pre-wrap;
    }

    .reservation p {
        margin: 0px
    }


/* Animation */

@-webkit-keyframes pulsing {
    to {
        box-shadow: 0 0 0 15px transparent;
    }
}

@-moz-keyframes pulsing {
    to {
        box-shadow: 0 0 0 15px transparent;
    }
}

@-ms-keyframes pulsing {
    to {
        box-shadow: 0 0 0 15px transparent;
    }
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 12px transparent;
    }
}

