main.sass {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to left top, #0a64a0 10%, #0087e4);
    font-family: "Nunito", sans-serif;
    /* background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite; */
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.sass .scaffold {
    position: relative;
    width: 90vw;
    height: 90vh;
    margin: auto;
    top: 5vh;
    border-radius: 10px;
    overflow: hidden;
    animation: vanish 2s ease forwards;
}

@keyframes vanish {
    0% {
        transform: scale(0.9);
        opacity: .0;
    }
    100% {
        transform: scale(1.0);
        opacity: 1;
    }
}

.scaffold .hero,
.scaffold .page {
    height: 100%;
}

.scaffold .hero {
    width: 65%;
    position: relative;
    padding: 80px 50px;
    background: url(../assets/images/laboratory.jpg);
    background-size: cover;
}

.scaffold .hero::after {
    display: none;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(
        -45deg, 
        rgba(0,0,0,.7),
        rgba(0,0,0,.1)
    );
}

.scaffold .hero img {
    position: relative;
    width: 160px;
    border-radius: 100px;
    padding: 10px;
    background: #0087e4;
}

.scaffold .hero h2 {
    position: relative;
    font-weight: bold;
    margin-top: 18vh;
    color: #fff;
    text-shadow: 3px 3px 3px rgba(0,0,0,.3);
}

.scaffold .hero sup {
    font-size: 18px;
}

.scaffold .hero span {
    position: relative;
    display: block;
    width: 60%;
    color: #fff;
    text-shadow: 3px 0px 3px rgba(0,0,0,.3);
    font-size: 13.5px;
    margin-top: 10px;
    padding: 5px;
}

.scaffold .page {
    width: 40%;
    position: absolute;
    top: 0;
    right: 0;
    padding: 80px;
    background: #fff;
}

.scaffold .page h2 {
    height: 30px;
    font-weight: bold;
    font-size: 18px;
}

.scaffold .page .logo {
    width: 25px;
    background: #0087e4;
    border-radius: 100px;
    padding: 5px;
}

.scaffold .overlay {
    position: absolute;
    top: 0;
    height: 100%;
    background: rgba(0,0,0,.4);
    width: 100%;
    left: 0;
    border-radius: 10px;
}

.page .banner {
    width: 100%;
    height: 90px;
    border-radius: 10px;
    color: #fff;
    background: #0087e4;
    padding: 15px;
    font-size: 12px;
    margin-bottom: 30px;
}

.page .portal {
    position: relative;
}

.page .portal a {
    text-decoration: none;
}

.page .portal .card {
    display: block;
    position: relative;
    width: 100%;
    height: 50px;
    padding: 15px;
    font-size: 10.5px;
    margin-bottom: 20px;
    border: none;
    background: #eee;
    cursor: pointer;
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,.1);
    border-left: 2px solid #0087e4;
    transition: 0.2s ease-in-out;
}

.page footer {
    text-align: center;
    margin-top: 30px;
}

.page footer span {
    display: block;
    font-size: 10px;
    margin-top: 10px;
    color: #999;
    letter-spacing: .5px;
}

.page .portal .card:hover {
    color: #fff;
    background: #0087e45c;
    margin-top: -5px;
}

.portal .card span {
    float: right;
}

.portal .card .stat {
    display: inline-block;
    width: 50px;
    height: 13px;
    color: #fff;
    margin-top: 5px;
    text-align: center;
    font-size: 8px;
    border-radius: 100px;
}

.portal .card #online {
    background: #090;
}

.portal .card #offline {
    background: #f90;
}

section.auth {
    position: relative;
}

.auth .splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url(../assets/images/login.png);
    background-size: cover; 
    background-attachement: fixed;
}

.auth .splash::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.2);
}

.auth .login {
    position: relative;
    opacity: .0;
    margin: auto;
    margin-top: 20vh;
    margin-bottom: 50px;
    width: 450px;
    height: auto;
    background: transparent;
    padding: 30px 50px;
    box-shadow: 0px 15px 20px 0px rgba(0,0,0,.2);
    border-radius: 0px;
    z-index: 1;
    overflow: hidden;
    animation: reveal 1s ease-in-out forwards;
}

.auth .login::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.5);
    z-index: -1;
}

@keyframes reveal {
    0% {
        opacity: .0;
        top: -50px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

.auth .login .logo {
    display: block;
    margin: auto;
    margin-bottom: 20px;
    width: 150px;
    background: #0087e4;
    padding: 10px;
    border-radius: 100px;
}

.auth .login-title {
    text-align: center;
    display: block;
    font-size: 18px;
    margin-bottom: 30px;
}

.login-title span {
    display: block;
    margin-top: 10px;
    color: grey;
    font-size: 12px;
    text-align: center;
}

.login-title hr {
    margin: auto;
    border-color: #0087e4;
    border-width: 3px;
    border-radius: 100px;
    margin-top: 10px;
}

.auth .sub {
    font-size: 14px;
    padding-bottom: 10px;
}

.auth .input-group {
    height: 40px;
    margin-bottom: 5px;
}

.auth .input-group input,
.auth .input-group select {
    width: 100%;
    height: 100%;
    font-size: 10px;
    border: 1px solid #eee !important;
    padding: 10px;
    padding-left: 30px;
    border-radius: 5px;
}

.input-group i {
    position: absolute;
    z-index: 10;
    top: 12px;
    left: 10px;
    font-size: small;
}

.auth .ctrl-button {
    margin-top: 10px;
}

.auth .hint {
    color: #c30;
    margin-bottom: 20px;
    font-size: 10px;
}

.ctrl-button * {
    font-size: 10px !important;
}

.auth .login label {
    cursor: pointer;
    display: inline;
    font-size: small;
}

.auth .login button {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    color: #fff;
    background: #0087e4;
    margin-top: 10px;
    font-family: Montserrat-Bold;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth .login footer {
    text-align: center;
    margin-top: 10px;
    font-size: 10px;
}

.login footer span {
    font-size: 10px;
    color: #0087e4;
}

.callout * {
    font-size: 12px !important;
}

.dataTables_empty {
    display: table-cell !important;
}

.loader {
    top: 40%;
    border-radius: 100px;
    width: 100px;
    margin-left: 3%;
}

.img-thumbnail {
    height: 130px !important;
}

.user-panel img {
    width: 30px;
    height: 30px;
    margin-top: 10px;
}

.topbar {
    border: 1px solid #89898a;
    border-radius: 5px;
    padding: 20px 0;
}

.topbar b {
    display: block;
    margin-bottom: 5px;
}

.topbar img {
    position: absolute;
    width: 80px;
    right: 15px;
    top: 0px;
    border-radius: 10px;
}

.topbar small {
    font-size: 14px;
}

.chat-bubble {
    position: fixed;
    bottom: 90px;
    right: 12px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    color: #161d31;
    background: #fff;
    border: none;
    padding: 10px;
    text-align: center;
    font-size: 25px;
    transition: 0.2s ease-in-out;
}

.chat-bubble:hover {
    color: #fff;
    background: #161d31;
}

.nav-sidebar .balloon {
    position: absolute;
    right: 10px;
    top: 12px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #ea5455 ;
    border-radius: 100px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}

.nav-item .dropdown-item {
    width: 100%;
    white-space: nowrap !important;
}

select.form-control {
    font-size: 12px;
}

.sweet-alert h2, .h2 {
    font-size: 20px !important;
}

#sub {
    position: relative;
    height: auto;
    background: #f9f5ff;

    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#sub header {
    display: none;
    height: 60px;
    width: 100%;
    background: #0087e4;
    padding: 20px;
    margin-bottom: 100px;
}

#sub header .logo {
    width: 100px;
}

#sub main {
    padding: 0px 50px;
}

#sub main .title {
    width: 500px;
    text-align: center;
    margin: auto;
    font-size: 12px;
    color: #666;
    margin-bottom: 100px;
    letter-spacing: 1px;
}

#sub main .title img {
    width: 150px;
    background: #0087e4;
    padding: 10px;
    border-radius: 50px;
    margin-top: 100px;
    margin-bottom: 20px;
}

#sub main .title h2 {
    color: #000;
    font-weight: bold;
    letter-spacing: normal;
}

#sub main .pricing {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#sub main .pricing .card {
    display: block !important;
    width: 300px;
    height: 400px;
    color: #000;
    background: #fff;
    margin: 10px;
    box-shadow: 2px 30px 29px -28px rgba(137, 137, 143, 0.75);
    border: none;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    overflow: hidden;
}

.pricing .card.custom {
    width: 500px !important;
    height: auto !important;
    margin-top: 50px !important;
}

.pricing .card.selected {
    color: #fff !important;
    background: #0087e4 !important;
    z-index: 1;
    padding-top: 65px !important;
    width: 320px !important;
    height: 450px !important;
    margin-top: -15px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
}

.pricing .card.custom form {
    margin: 40px 0 0 0;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.pricing .card.custom p {
    display: inline-block;
    position: relative;
    width: 150px;
    height: 30px;
    background: #f9f5ff;
    margin-bottom: 10px;
    border-radius: 100px;
    overflow: hidden;
}

.pricing .card.custom p span {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    padding: 7px;
    font-weight: bold;
    font-size: 10px;
    text-align: left;
}

.pricing .card.custom input {
    width: 150px;
    height: 100%;
    font-size: small;
    border: none;
    padding-left: 60px;
    background: transparent;
}

.pricing .card span {
    font-size: small;
    margin-bottom: 10px;
    color: inherit !important;
}

.pricing .card .tile {
    position: absolute;
    top: 30px;
    left: -40px;
    background: orange;
    width: 170px;
    height: 30px;
    font-size: 10px;
    padding: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transform: rotate(-45deg);
    box-shadow: 0px 2px 1px 0px rgba(0,0,0,.2);
}

.pricing .card h2 {
    font-size: 25px;
    font-weight: bold;
    color: inherit !important;
}

.pricing .card h2 sub {
    font-size: small;
    font-weight: normal;
}

.pricing .card select.m {
    width: 40%;
    height: 30px;
    border: none;
    border-bottom: 1px solid #ccc;
    text-align: center;
    font-size: 10px;
    box-shadow: none;
    outline: none;
    letter-spacing: .5px;
    margin-top: 10px;
}

.pricing .card .detail {
    height: 23vh;
    margin-top: 50px;
    text-align: center;
    font-size: 12px;
    letter-spacing: .5px;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.pricing .card .detail li {
    list-style: none;
    margin-bottom: 15px;
}

.pricing .card button {
    width: 200px;
    height: 40px;
    margin: auto;
    border-radius: 5px;
    border: 1px solid #fff;
    color: #fff;
    background: #0087e4;
    cursor: pointer;
    font-size: 12px;
    transition: 0.2s ease-in-out;
}

.pricing .card:hover button {
    color: #0087e4 !important;
    border-color: #0087e4;
    background: #fff !important;
}

.card.selected button {
    color: #0087e4;
    background: #fff;
}

.pricing .selected:hover button {
    color: #fff !important;
    border-color: #fff;
    background: #0087e4 !important;
}

#sub footer {
    width: 320px;
    text-align: center;
    margin: auto;
    font-size: 10px;
    padding: 50px 0;
}

.toast-message {
    font-size: small;
}

.license {
    height: 40px;
    background: #161d31;
    color: #ea5455;
    border-bottom: 1px solid #283046;
    padding: 10px 10px;
    padding-left: 275px;
    transition: 0.4s ease;
}

.license marquee {
    display: inline-block;
    width: calc(100% - 200px);
}

.license nav {
    float: right;
    width: 147px;
    height: 25px;
    color: #fff;
    background: #283046;
    font-size: 10px;
    margin-top: -3px;
    margin-right: 25px;
    font-weight: bold;
}

.license button {
    border: none;
    height: 25px;
    border-radius: 2px;
    font-size: 11.5px;
    font-weight: normal;
    width: 85px;
    color: #fff;
    background: #3f843f;
    padding: 0;
    margin-right: 5px;
}

.license .healthy {
    background: #3f843f;
}

.license .warning {
    background: #d3a10a;
}

.license .danger {
    background: #ea5455;
}

.sidebar-collapse .license {
    padding-left: 100px;
}

@media only screen and (max-width: 800px) {
    .sass {
        height: auto !important;
    }

    .sass .scaffold {
        height: auto;
        top: 0;
        overflow: auto;
    }

    .auth .login {
        width: 90%;
        padding: 20px;
    }

    .scaffold .hero,
    .scaffold .page {
        position: relative;
        width: 100%;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .scaffold .hero {
        height: 160px;
        margin-top: 20px;
    }

    .scaffold .hero img {
        width: 120px;
    }

    .scaffold .hero h2 {
        display: none;
        margin-top: 20px;
        margin-bottom: 0;
        font-size: 18px;
    }

    .scaffold .hero span {
        width: 100%;
        margin: 30px 0;
        font-size: 12px;
    }

    .scaffold .page {
        padding-top: 40px;
    }

    .auth .login .logo {
        width: 120px;
    }

    .float-sm-0 {
        display: block;
        float: none !important;
    }

    #sub main {
        padding: 20px !important;
    }

    #sub main .title {
        width: 100% !important;
        font-size: 10px;
        letter-spacing: normal;
        margin-bottom: 20px;
    }

    #sub main .pricing .card {
        padding: 20px;
        height: auto !important;
    }

    #sub main .title img {
        margin-top: 50px;
    }

    #sub footer {
        padding: 50px 0 20px 0;
    }

    .pricing .card.custom p {
        width: 100px;
    }

    .pricing .card.selected {
        margin: 0 -10px 0 -10px !important;

    }

    .license,
    .sidebar-collapse .license {
        padding-left: 25px;
    }
    
}