@font-face {
    font-family: "abel-regular";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/abel-regular.ttf") format("truetype");
}
@font-face {
    font-family: "abel-regular";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/abel-regular.ttf") format("truetype");
}

html, body {
    font-family: "abel-regular";
    background-color: #f7f7f7;
    color: #000;
    height: 100%;
}

/* a common button style */
.bis-button {
    background-color: #3b80d6;
    color: #f7f7f7;
    box-shadow: none;
    border: none
}

.bis-button:hover {
    background-color: #0453a4;
}

.bis-button:disabled {
    background-color: #6ca2e3; /* light */
}

.bis-button:focus {
    background-color: #0453a4;  /* darkest */
}

.bis-button:active {
    background-color: #3b80d6;  /* dark */
    box-shadow: none
}

.bis-icon {
    width: 100px;
    height: 100px;
    content:url("../images/bisIcon.png");
    animation: bis-rotation 2s linear;
}

.bis-header {
    background-color: #3b80d6 !important;
}

.bis-footer {
    background-color: #6ca2e3 !important;
}

/* ---------------------------------------------------
Continuous rotation, like for icon/logo.
----------------------------------------------------- */
.bis-rotate {
  animation: bis-rotation 16s infinite linear;
}

@keyframes bis-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ---------------------------------------------------
signin.html, register.html, and verify.html 
----------------------------------------------------- */
.signin-form-body {
    background: url(../images/bc-home-top.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    min-height: 100%;  /* Fallback for browsers that do NOT support vh unit */
    min-height: 100vh; /* These two lines are counted as one :-)       */
    display: flex;
    align-items: center;
}
.signin-form {
    width: 340px;
    font-size: 15px;
}
.signin-form form {
    background-color: #f7f7f7;
    color: #000;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
    padding: 30px;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
    width: 200px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background-color: #6ca2e3; 
    color: #fff;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -200px;
}

#sidebar .sidebar-header {
    background-color: #3b80d6;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
    color: #6ca2e3;
    background-color: #fff;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background-color: #3b80d6;
}

#sidebar a[data-toggle="collapse"] {
    position: relative;
}

.sidebar-dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

#sidebar .sidebar-submenu {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    color: #fff;
    background-color: #3b80d6;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    min-height: 100%;
    height: 100%;
}

#content {
    width: calc(100% - 200px);
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
    min-height: 100%;
    height: 100%;
}

#content.active {
    width: 100%;
}

#page-content {
    padding: 10px;
    /*min-height: 100%;*/
    /*height: 100%;*/
}

.page-content-bg {
    background: url(../images/bc-home-top.jpg) no-repeat center center fixed;
    background-size: cover;
    min-height: 100%;  /* Fallback for browsers that do NOT support vh unit */
    min-height: 100vh; /* These two lines are counted as one :-)       */
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -200px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 200px);
    }
}

/* misc */

a {
    color: inherit;
}
a:hover,
a:focus {
    color: #0453a4;  /* darkest */
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #6ca2e3;
    margin: 10px 0;
}

#updates {
    list-style: none;
    margin-top: 5px;
    padding: 0;
}

#updates li {
    margin: 3px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f7f7f7;
    padding: 5px;
}

