

/* ── normalize <a> and <button> so all cute-button variants align horizontally ── */
.cute-button-blue,
.cute-button-green,
.cute-button-gray,
.cute-button-dark-red,
.cute-button-small-view-details,
.cute-button-small-new-details,
.cute-button-notification,
.kiosk-cute-button-blue,
.kiosk-cute-button-gray,
.queue-mngr-cute-button-blue,
.queue-mngr-cute-button-gray,
.queue-mngr-cute-button-disabled {
    vertical-align: middle;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background-image: none;
}

/*BLUE*/

.cute-button-blue {
    display: inline-block;
    padding: 0.70rem 0.50em;
    border-radius: 10rem;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 10pt !important;
    letter-spacing: 0.10rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    line-height: 20px;
    font-family: "san-francisco-regular" !important;

}

.cute-button-blue:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0cf;
    border-radius: 10rem;
    z-index: -2;
    cursor: pointer;
}
.cute-button-blue:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #7de406;/*#008fb3;*/
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
    cursor: pointer;
}
.cute-button-blue:hover {
    color: #ffffff;
}
.cute-button-blue:hover:before {
    width: 100%;
}



/* GREEN */

.cute-button-green {
    display: inline-block;
    padding: 0.70rem 0.50em;
    border-radius: 10rem;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 10pt !important;
    letter-spacing: 0.10rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    line-height: 20px;
    font-family: "san-francisco-regular" !important;

}

.cute-button-green:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #CDDC39;
    border-radius: 10rem;
    z-index: -2;
    cursor: pointer;
}
.cute-button-green:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #8BC34A;/*#008fb3;*/
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
    cursor: pointer;
}
.cute-button-green:hover {
    color: #ffffff;
}
.cute-button-green:hover:before {
    width: 100%;
}

/*KIOSK BLUE*/

.kiosk-cute-button-blue {
    border: 1px solid #ffff;
    display: inline-block;
    padding: 0.70rem 0.50em;
    border-radius: 10rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 0.10rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    min-height: 75px;
    padding-top: 20px;
    font-weight: bold;
}

.kiosk-cute-button-blue:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0cf;
    border-radius: 10rem;
    z-index: -2;
    cursor: pointer;
    vertical-align:middle !important;

}
.kiosk-cute-button-blue:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #7de406;/*#008fb3;*/
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
    cursor: pointer;
    color:#fff;

}
.kiosk-cute-button-blue:hover {
    color: #fff;
}
.kiosk-cute-button-blue:hover:before {
    width: 100%;
}




/*gray*/

.cute-button-gray {
    display: inline-block;
    padding: 0.70rem 0.50em;
    border-radius: 10rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 10pt !important;
    letter-spacing: 0.10rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    line-height: 20px;
    font-family: "san-francisco-regular" !important;
}
.cute-button-gray:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #607d8b;
    border-radius: 10rem;
    z-index: -2;
    cursor: pointer;
}
.cute-button-gray:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #F44336;
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
    cursor: pointer;
}
.cute-button-gray:focus a {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #607d8b;
    border-radius: 10rem;
    z-index: -2;
    cursor: pointer;
    outline: none !important;
}
.cute-button-gray:hover {
    color: #fff;
}
.cute-button-gray:hover:before {
    width: 100%;
}



/*kiosk-gray*/

.kiosk-cute-button-gray {
    border: 1px solid #ffff;
    display: inline-block;
    padding: 0.70rem 0.50em;
    border-radius: 10rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.5rem !important;
    letter-spacing: 0.10rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    height: 60px;
    padding-top: 20px;
    font-weight: bold;
}
.kiosk-cute-button-gray:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #607d8b;
    border-radius: 10rem;
    z-index: -2;
    cursor: pointer;

}
.kiosk-cute-button-gray:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #F44336;
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
    cursor: pointer;
}
.kiosk-cute-button-gray:focus a {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #607d8b;
    border-radius: 10rem;
    z-index: -2;
    cursor: pointer;
    outline: none !important;
}
.kiosk-cute-button-gray:hover {
    color: #fff;
}
.kiosk-cute-button-gray:hover:before {
    width: 100%;
}

/*nice dark red*/

.cute-button-dark-red {
    display: inline-block;
    padding: 0.70rem 0.50em;
    border-radius: 10rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 10pt !important;
    letter-spacing: 0.10rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    line-height: 20px;
    font-family: "san-francisco-regular" !important;
}
.cute-button-dark-red:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e91e63;
    border-radius: 10rem;
    z-index: -2;
    cursor: pointer;
}
.cute-button-dark-red:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #F44336;
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
    cursor: pointer;
}
.cute-button-dark-red:hover {
    color: #fff;
}
.cute-button-dark-red:hover:before {
    width: 100%;
}

/* ── .cute-button-red: alias of .cute-button-dark-red. The class was referenced
   in ~8 files (daily/beginning inventory, shift record, SMS contacts, gas station,
   outlet replenish) but never defined, so those delete buttons rendered as plain
   unstyled buttons. Defining it here styles them all consistently. ── */
.cute-button-red {
    vertical-align: middle;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background-image: none;
    display: inline-block;
    padding: 0.70rem 0.50em;
    border-radius: 10rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 10pt !important;
    letter-spacing: 0.10rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    line-height: 20px;
    font-family: "san-francisco-regular" !important;
}
.cute-button-red:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e91e63;
    border-radius: 10rem;
    z-index: -2;
    cursor: pointer;
}
.cute-button-red:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #F44336;
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
    cursor: pointer;
}
.cute-button-red:hover {
    color: #fff;
}
.cute-button-red:hover:before {
    width: 100%;
}



.span {
    display: block;
    margin-top: 2rem;
    font-size: 0.7rem;
    color: #777;
}
.span a {
    font-size: 0.7rem;
    color: #999;
    text-decoration: underline;
}


/*QUEUE MNGR BLUE*/

.queue-mngr-cute-button-blue {
border: 1px solid #ffff;
    display: inline-block;
    padding: 0.70rem 0.50em;
    border-radius: 10rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 0.10rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    line-height: 70px;
    font-weight: bold;
}

.queue-mngr-cute-button-blue:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0cf;
    border-radius: 10rem;
    z-index: -2;
    cursor: pointer;
    vertical-align:middle !important;

}
.queue-mngr-cute-button-blue:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #7de406;/*#008fb3;*/
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
    cursor: pointer;
    color:#fff;

}
.queue-mngr-cute-button-blue:hover {
    color: #fff;
}
.queue-mngr-cute-button-blue:hover:before {
    width: 100%;
}

/*queue-mngr-gray*/

.queue-mngr-cute-button-gray {
    border: 1px solid #ffff;
    display: inline-block;
    padding: 0.70rem 0.50em;
    border-radius: 10rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 0.10rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    font-weight: bold;
}
.queue-mngr-cute-button-gray:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #607d8b;
    border-radius: 10rem;
    z-index: -2;
    cursor: pointer;

}
.queue-mngr-cute-button-gray:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #F44336;
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
    cursor: pointer;
}
.queue-mngr-cute-button-gray:focus a {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #607d8b;
    border-radius: 10rem;
    z-index: -2;
    cursor: pointer;
    outline: none !important;
}
.queue-mngr-cute-button-gray:hover {
    color: #fff;
}
.queue-mngr-cute-button-gray:hover:before {
    width: 100%;
}

.queue-mngr-cute-button-disabled {
    border: 1px solid #607d8b;
    display: inline-block;
    padding: 0.70rem 0.50em;
    border-radius: 10rem;
    color: #bdbbbb;
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 0.10rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: default;
    line-height: 70px;
    font-weight: bold;
}

.queue-mngr-cute-button-disabled:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #9e9e9e;
    border-radius: 10rem;
    z-index: -2;
    cursor: default;

}

.queue-mngr-cute-button-disabled:hover {
    color: #bdbbbb;
}
.queue-mngr-cute-button-disabled:hover:before {
    width: 100%;
}


/*BLUE*/

.cute-button-small-view-details {
    display: inline-block;
    padding: 0.35rem .35rem;
    border-radius: 10rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 10pt !important;
    letter-spacing: 0.10rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    line-height: 20px;
    font-family: "san-francisco-regular" !important;

}

.cute-button-small-view-details:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00BCD4;
    border-radius: 10rem;
    z-index: -2;
    cursor: pointer;
}
.cute-button-small-view-details:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #7de406;/*#008fb3;*/
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
    cursor: pointer;
}
.cute-button-small-view-details:hover {
    color: #fff;
}
.cute-button-small-view-details:hover:before {
    width: 100%;
}


.cute-button-small-new-details {
    display: inline-block;
    padding: 0.35rem .35rem;
    border-radius: 10rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 10pt !important;
    letter-spacing: 0.10rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    line-height: 20px;
    font-family: "san-francisco-regular" !important;

}

.cute-button-small-new-details:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #CDDC39;
    border-radius: 10rem;
    z-index: -2;
    cursor: pointer;
}
.cute-button-small-new-details:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #8BC34A;/*#008fb3;*/
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
    cursor: pointer;
}
.cute-button-small-new-details:hover {
    color: #fff;
}
.cute-button-small-new-details:hover:before {
    width: 100%;
}




.cute-button-notification {
    display: inline-block;
    padding: 0.4em 1.25rem;
    border-radius: 5rem;
    color: #f00;
    text-transform: uppercase;
    font-size: 10pt !important;
    letter-spacing: 0.10rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    line-height: 20px;
    font-family: "san-francisco-regular" !important;
}


.cute-button-notification:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00a8e621;
    border-radius: 10rem;
    z-index: -2;
    cursor: pointer;
}

.cute-button-notification:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #7de406a3;
    transition: all 0.3s;
    border-radius: 10rem;
    z-index: -1;
    cursor: pointer;
}
