
/* Color for spinner */

.active .loader-layer.loader-teal-only {
    opacity: 1;
    -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both;
    -o-animation: fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both;
    animation: fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both;
}

.loader-teal-only{
    border-color: #009688;
}

/* Overwrite page size for small screen device - less than 322px */

@media only screen and (max-width : 320px){
    .page-content {
        padding-bottom: 10px;
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 10px;
    }

    .navbar-brand {
        padding-top: 22px;
        padding-right: 15px;
        padding-left: 15px;
        padding-bottom: 22px;
    }
}

/* Utilities */

.nailsnote-cancelled-service {
    text-decoration: line-through;
}
/* Loading Spinner
    <div class="loader"></div>
*/
.loader,
.loader:before,
.loader:after {
    background: #009688;
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    width: 1em;
    height: 4em;
}
.loader {
    color: #009688;
    text-indent: -9999em;
    margin: 88px auto;
    position: relative;
    font-size: 11px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
.loader:before,
.loader:after {
    position: absolute;
    top: 0;
    content: '';
}
.loader:before {
    left: -1.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.loader:after {
    left: 1.5em;
}
@-webkit-keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }
    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}
@keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }
    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}
