body {
    /* min-height: 100vh; */
    background-color: #000000;
}

#app {
    /*margin-top: 25px;*/
    margin-bottom: 75px;
    /*padding-right: 25px;
    padding-left: 25px;*/
}

#app-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(180deg, rgba(28, 28, 28, 1) 0%, rgba(70, 70, 70, 1) 100%);
}
#app-background.image {
    background-image: url('/images/app-background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.loading {
    background-image: url('/images/logo-blue.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 150px;
    height: 150px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.css-loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.view-container {
    /*margin-top: 50px;*/
    padding-right: 25px;
    padding-left: 25px;
}

a.simple-link {
    text-decoration: underline;
    color: #FFFFFF;
}
a.simple-link:hover {
    color: #2AABE2;
}

/* ALERTS & INFO POPOVERS */
#app-alert {
    position: fixed;
    top: -110%;
    left: 25px;
    width: calc(100vw - 50px);
    color: #FFFFFF;
    background-color: #1976d2;
    text-align: center;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
    padding: 15px;
    z-index: 9;
}
#app-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    z-index: 8;
}
#app-alert-overlay.hide {
    display: none;
}
@keyframes showalert {
    from {
        top: -110%;
    } to {
        top: 50%;
        transform: translateY(-50%);
    }
}
@keyframes hidealert {
    from {
        top: 50%;
        transform: translateY(-50%);
    } to {
        top: -110%;
    }
}

#app-info {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw - 50px);
    color: #FFFFFF;
    background-color: #000000;
    text-align: center;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.9);
    padding: 30px 15px 15px 15px;
    z-index: 9;
    opacity: 0;
}
#app-info.hide {
    top: -110%;
}
#app-info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(61, 61, 61, 0.80);
    z-index: 8;
}
#app-info-overlay.hide {
    display: none;
}
#app-info img {
    width: 75px;
    margin-bottom: 30px;
}
#app-info #app-info-message {
    margin-bottom: 50px;
}
#app-info .app-info-close {
    color: #2AABE2;
    cursor: pointer;
    width: 100%;
    padding: 15px 0px;
    font-size: 14px;
    font-weight: 600;
}

@keyframes showinfo {
    from {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes hideinfo {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    80% {
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
}

/* NAVBAR */
.navbar {
    width: 100%;
    display: flex;
    justify-content: baseline;
    position: fixed;
    bottom: 0;
    text-align: center;
    background-color: #333333;
    padding: 15px 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.6);
}
.navbar .navitem {
    cursor: pointer;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1;
    width: 33%;
}
.navbar .navitem svg path {
    fill: #ffffff;
}
.navbar .navitem.active svg path {
    fill: #1976d2;
}
.navbar .navitem .icon {

}
.navbar .navitem .text {
    font-size: 12px;
    font-weight: 400;
}
.navbar .navitem.active .text {
    font-size: 14px;
}

/* SIGN UP BAR */
.sign-up-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    text-align: center;
    background-color: #333333;
    padding: 15px 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.6);
    z-index: 999;
}
.sign-up-bar .step {
    width: 15px;
    height: 15px;
    border: 2px solid #666666;
    margin: 0 5px 0 5px;
    border-radius: 100%;
    background-color: #666666;
}
.sign-up-bar .step.current {
    background-color: #2AABE2;
    border: 5px solid #333333;
    outline: 2px solid #2AABE2;
    margin: 0 8px 0 5px;
}
.sign-up-bar .step.complete {
    background-color: #2AABE2;
    border-color: #2AABE2;
    color: #ffffff;
    content: "\2713";
}
.sign-up-bar .step.complete:after {
    content: "\2713";
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    font-size: 10px;
}
.sign-up-bar .step + div {
    color: #666666;
}
.sign-up-bar .step.complete + div {
    color: #2AABE2;
}




button, input[type=submit] {
    display: block;
    width: 100%;
    border: none !important;
}
input[type=submit] {
    color: #ffffff;
    background-color: #2AABE2;
}
button[disabled], input[type=submit][disabled] {
    background-color: #666666;
    color: #333333;
    cursor: unset;
}

.top-logo {
    display: block;
    margin-top: 25px;
    margin-bottom: 25px;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

a.reset-password {
    font-size: 11px;
    color: #FFFFFF;
    display: inline-block;
    width: 100%;
    text-align: right;
    margin-bottom: 15px;
}
a.reset-password:hover {
    color: #2AABE2;
}

.card {
    width: 100%;
    background: linear-gradient(to bottom,
            #000000,
            #000000 50px,
            #333333 0%,
            #333333);
    padding: 15px 25px 25px 25px;
    margin-bottom: 15px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}
.card .icon {
    display: inline-block;
    color: #222222;
    margin-bottom: 25px;
}
.card .icon img {
    width: 73px;
    height: 73px;
}
.card h4 {
    text-transform: none;
    margin-bottom: 25px;
}
.card .small-icon {
    max-height: 25px;
}
.card p {
    font-size: 14px;
    padding-right: 35px;
    padding-left: 35px;
    margin-bottom: 15px;
}
.card .edit-button {
    position: absolute;
    top: 30px;
    left: 60%;
    display: inline-block;
    padding: 6px 8px 0px 8px;
    cursor: pointer;
}
.card .edit-button span {
    font-size: 20px;
    pointer-events: none;
}
.card .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    font-size: 10px;
}
.card .badge:after {
    color: #222222;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.card .badge.red {
    background-color: red;
}
.card .badge.red:after {
    content: '\0021';
}
.card .badge.green {
    background-color: green;
}
.card .badge.green:after {
    content: '\2713';
}

.view-header {
    background-color: #000000;
    height: 55px;
}
.view-header .back-button-container {
    padding: 13px 15px 10px 18px;
    z-index: 9;
}
.view-header .back-button-container .back-button {
    cursor: pointer;
}
.view-header .back-button-container .back-button span {
    font-size: 30px;
    pointer-events: none;
}
.view-header-icon-container {
    margin-top: -30px;
    margin-bottom: 35px;
}
.view-header-icon-container .view-header-icon {
    margin: -25px auto 0 auto;
    display: inline-block;
    color: #222222;
    padding: 15px 15px 5px 15px;
}

.icon-cal {
    position: absolute;
    top: 15px;
    right: 5px;
    width: 25px;
    height: 25px;
    background-image: url('/images/icons/icon-calendar.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

/* ZOHO CHAT WINDOW */
.zsiq_floatmain {
    width: 25% !important;
}
.zsiq_float {
    display: none !important;
}
.zsiq_float.show-chat {
    display: inline-block !important;
}
.zsiq_theme1 .zsiq_flt_rel {
    background-color: transparent !important;
}
.zsiq_theme1:hover .zsiq_flt_rel {
    box-shadow: none !important;
}
.siq_bR {
    bottom: 4px !important;
}
.zsiq_theme1 div.zsiq_cnt {
    display: none !important;
}
.zsiq_custommain,
.zsiq_floatmain,
.zsiq_theme1 .zsiq_cnt,
.zsiq_theme2 .zsiq_flt_rel {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    animation: none !important;
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
}