﻿body {
    padding-top: 56px;
    font-family: 'Roboto', sans-serif;
}

@media (min-width: 768px) {
    body {
        padding-top: 0;
    }
}

main {
    position:absolute;
}

.card {
    border-radius:20px;
}

.sidebar {
    position: fixed;
    top: 56px;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
    width: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

    .sidebar.show {
        transform: translateX(0);
    }

@media (min-width: 768px) {
    .sidebar {
        position: sticky;
        top: 0;
        width: 200px;
        transform: none;
    }
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto;
}

.content {
    padding: 20px;
}

@media (min-width: 768px) {
    .content {
        margin-left: 200px;
    }
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
}
.no-underline {
    text-decoration: none !important;
}

.login-container {
    height: 80vh;
}

.passcode-input {
    text-align: center;
    font-size: 25px!important;
}

.dot-image {
    width: 200px;
    position: fixed;
    bottom: 0;
    left: 0;
}
.loader {
    top:0;
    bottom:0;
    left:0;
    right:0;
    background: #000000;
    position: fixed;
    opacity:0.8;
    z-index: 10000;
   
}
.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    height: 150px;
    background: transparent;
    border: 3px solid #3c3c3c;
    border-radius: 50%;
    text-align: center;
    line-height: 150px;
    font-family: sans-serif;
    font-size: 20px;
    color: #0C3348;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #0C3348;
    box-shadow: 0 0 20px rgba(0,0,0,.5);
}

a {
    color: #1B7AAD !important;
    font-weight:700;
}
.btn-primary {
    background: #155E8C !important;
    border-color: #155E8C !important;
}
.text-primary {
    color: #1B7AAD !important;
}

.ring:before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #0C3348;
    border-right: 3px solid #0C3348;
    border-radius: 50%;
    animation: animateC 2s linear infinite;
}

.ring span {
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    width: 50%;
    height: 4px;
    background: transparent;
    transform-origin: left;
    animation: animate 2s linear infinite;
}

.ring span:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0C3348;
    top: -6px;
    right: -8px;
    box-shadow: 0 0 20px #0C3348;
}

@keyframes animateC {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}