html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.company:before {
    content: "Sugar Glider Family Xtreme Park";
}

.qr {
    width: 100%
}

.customer-input {
    margin-top: 2px; 
    width:100%;
    border-top-style: hidden;
    border-right-style: hidden;
    border-left-style: hidden;
}

.main-action-panel {
    position: absolute;
    bottom: 60px;
    width: 100%;
    left: 0;
    line-height: 60px;
}

    .main-action-panel .button-block {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: fit-content;
    }

    .main-action-panel .button-block-long {
        width: auto;
        padding: 10px 20px 10px 20px;
    }

.action-button {
    border-radius: 18px;
    border-width: 0px;
    padding:10px;
    font-size: large;
    font-weight: bold;
    box-shadow: 1px 1px 3px silver;
    width: -webkit-fill-available;
}

.active-color {
    background-color: #57B1C9;
    color: white;
}

.close-color {
    background-color: #F3888E;
    color: white;
}

.menu-panel {
}

.menu-button {
    margin: 5px;
    display: inline;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 20px;
    background-color: seashell;
}

.outside-dialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
}

.dialog {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.24), 0 8px 16px rgba(0, 0, 0, 0.48);
    left: 50%;
    top: 50%;
    min-width: 280px;
    width: 90%;
    position: absolute;
    transform: translate(-50%, -50%) translateY(0px);
    transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
}

    .dialog > div {
        padding-left: 24px;
        padding-right: 24px;
    }

.dialog-title {
    font-size: 1.40em;
    padding-top: 20px;
}

.dialog-body {
    padding-bottom: 0px;
    padding-top: 20px;
    height: 400px;
    overflow-y: auto;
}
 