* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
html {
    height: 100%;
}
body {
    height: 100%;
    margin: 0;
    background-color: white
}
body.image1 {
    background-color: #d9e3e6; 
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center;
}

body.image2 {
    opacity: 0;
    background-image: url('../../public/images/image4.jpg'); 
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center;
}
div.passport {
    background-image: url('../../public/images/passport.jpg');
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center;
    min-height: 150px;
}
.z-md {
    z-index:1;
}
.z-lg {
    z-index:4;
}
a:link {
    text-decoration: none;
    color: white;
}

a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 8px;
    cursor: pointer;
}
a:active {
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 8px;
}
.container{
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}
.container-nav {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}

.bgrd-default {
    background-color: white
}
.col-default{
    color: white;
} 
.bgrd-dark
{
    background-color:black;
} 
.col-dark {
    color: black;
}
.bgrd-primary{
   background-color: rgb(18, 18, 107);
}

.col-primary{
    color: rgb(18, 18, 107);
}
.col-danger {
    color: rgb(202, 29, 29)
}
.bgrd-gray {
    background-color: rgb(240, 240, 240)
}
.bgrd-success,
.btn-success
 {
    background-color: green;
}
.bgrd-warning,
.btn-warning
{
    background-color: yellow;
}
.btn {
    color: black;
    background-color: lightgray;
}
.btn-danger {
    background-color:red
}
.row::after {
    content: "";
    clear: both;
    display: table;
}
.nav > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.nav > ul > li {
    float: left;
    padding-right: 50px; 
}
.nav > ul > li > .active {
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 8px;
    cursor: pointer;
}
.nav > ul > li > a {
    font-size: 20px;
}
li a {
    display: block;
    color: white;
    text-align: center;
    padding: 15px 0 0 0;
}
.nav-items {
    display: flex;
    flex-direction: row;
    color: white;
    padding: 15px;
    text-align: center;
}
.addNew > label > a {
    color: white;
}
.tranHis > label > a {
    color: rgb(18, 18, 107);
}
.txt-ssm {
    font-size: 10px;
}
.txt-sm {
    font-size: 15px;
}
.txt-md {
    font-size: 20px;
}
.txt-lg {
    font-size: 40px;
}
.col-1 { width: 8.33%;}
.col-2 { width: 16.66%;}
.col-3 { width: 25%;}
.col-4 { width: 33.33%;}
.col-5 { width: 41.66%;}
.col-6 { width: 50%;}
.col-7 { width: 58.33%;}
.col-8 { width: 66.66%;}
.col-9 { width: 75%;}
.col-10 { width: 83.33%;}
.col-11 { width: 91.66%;}
.col-12 { width: 100%;}
[class*="col-"] {
    float: left;
    padding: 0.1px;
    text-align: center;
}
@media only screen and (max-width: 720px) {
    /* For mobile phones: */
    [class*="col-"] {
        width: 100%;
        padding:  0.1px;
        text-align: center;
    }
}
.bg_slideshow, .bg_slideshow_items {
    width: 100%;
    height: 100%;
}
.bg_slideshow_items {
    position:relative;
    margin: 0;
    padding: 0;
    display: inline-block;
    list-style: none;
}
.bg_slideshow_items > .item {
    position: absolute;
    display: flex;
    flex-direction: column;
    width:100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
}

.bg_slideshow_items > .image1 {
    opacity: 0;
    animation: bg_slideshow_ani 15s 10s ease-in infinite;
    -webkit-animation: bg_slideshow_ani 15s 10s ease-in infinite;
    background-image: url('../../public/images/image7.jpg');
}

.bg_slideshow_items > .image2 {
    opacity: 0;
    animation: bg_slideshow_ani 15s 5s ease-in infinite;
    -webkit-animation: bg_slideshow_ani 15s 5s ease-in infinite;
    background-image: url('../../public/images/image2.jpg')
}

.bg_slideshow_items > .image3 {
    animation: bg_slideshow_ani 15s 0s linear infinite;
    -webkit-animation: bg_slideshow_ani 15s 0s linear infinite;
    background-image: url('../../public/images/image1.jpg');
}

@keyframes bg_slideshow_ani {
    0% {opacity: 1;}
    33.33% {opacity: 1;}
    35% {opacity: 0;}
    100% {opacity: 0;}
}

.bg_slideshow_items > .item > .slideshow_caption {
    position: relative;
    bottom: -15%;
    width: 70vw;
    margin: 0 auto;
    z-index: 5;
    padding: 20px 0 20px 0;
    color: white;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    animation: slideshow_caption 5s 0s linear infinite;
    -webkit-animation: slideshow_caption 5s 0s linear infinite;
}

.bg_slideshow_items > .item > .slideshow_caption > button {
    padding: 15px;
    border-radius: 10px;
    color: white;
    background-color: rgb(18, 18, 107);
    text-align: center;
    font-size: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    box-sizing: border-box;
}
@keyframes slideshow_caption {
    0%   {opacity: 0; bottom: -30%;}
    30% {opacity: 1.0; bottom: -15%;}
}

@-webkit-keyframes slideshow_caption {
    0%   {opacity: 0; bottom: -30%;}
    30% {opacity: 1.0; bottom: -15%;}
}

.center_block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.absolute {
    position: absolute;
}
.relative {
    position: relative;
}
.fixed {
    position: fixed;
}
.height-lg {
    height: 100%;
}

.width-lg {
    width: 100%;
}

.width-md {
    width: 75%;
    margin: 0 auto;
}

.width-sm {
    width: 30%;
    margin: 0 auto;
}
form {
    padding: 20px;
}
.form-items-group {
    margin-bottom: 15px;
    text-align: left;
    font-size: 15px;
    color: rgb(18, 18, 107);
}
.form-item {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 8px;
    font-size: 15px;
    border: 1px solid black;
    border-radius: 4px;
}
.card-primary {
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),  0 0 8px rgba(102, 175, 233, .6);
    width: 100%;
    background-color: rgb(240, 240, 240);
    min-height: 400px;
    max-height: 550px;
    margin: 0% auto;
    padding: 20px;
    overflow: auto;
}

.login > .card-primary, 
.signup > .card-primary,
.register > .card-primary
 {
    background-color: white;
}
.card {
    height: 100vh;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),  0 0 8px rgba(102, 175, 233, .6);
    background-color: rgb(240, 240, 240);
    margin: 0 auto;
}
.card-main {
    margin: 5% auto;
    width:100%;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),  0 0 8px rgba(102, 175, 233, .6);
    height: 70vh;
    background-color: rgb(240, 240, 240);
}
.btn-default {
    width: 100%;
    background-color: rgb(18, 18, 107);
    box-shadow: 1px 1px 2px 2px rgba(102, 233, 135, 0.6);
    color: white;
    padding: 6px;
    font-size: 20px;
    border-radius: 4px;
}

.btn-default:hover {
    box-shadow: 1px 1px 2px 3px rgba(102, 233, 135, 0.6);
    cursor: pointer;
}

.btn-primary
{
    background-color:rgb(18, 18, 107);
    padding: 10px;
    font-size: 20px;
    color: white;
}
.hidden {
    display: none;
}
.visible {
    display: block;
}
.form-inline { 
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;
    align-items: center;
  }
  .panel-sm  {
      width: 100%;
      height: 30px;
      padding: 15px;
  }
  .panel-md {
      width:100%;
      height: 60px;
      padding: 15px;
  }
  .panel-lg {
    width:100%;
    height: 100px;
    padding: 15px 0px;
}
  .pd-default {
      padding: 10px;
  }
  .center {
      text-align: center;
      margin: 0 auto;
  }
  .shadow {
      box-shadow: 0 2px 4px rgba(0,0,0,0.24);
  }
  .undline-pri {
      border-bottom: 1px solid blue;
  }
  .undline-default {
      border-bottom: 1px solid black;
  }
  .undline-pri-hov:hover {
    border-bottom: 1px solid blue;
    cursor: pointer;
  }
  .pointer {
      cursor: pointer;
  }
  .ls-vert {
      display: flex;
      flex-direction: column;
      border: 2px solid white;
  }
  .lf-align {
      text-align: left;
  }

  .rt-align {
      text-align: right;
  }
  .ct-align {
      text-align: center;
  }
  .nav-vert > ul, .nav-vert-resp > ul  {
      list-style-type: none;
      margin: 0;
      padding: 15px;
  }

  .nav-vert > ul > li, .nav-vert-resp > ul > li{
    background-color: rgb(18, 18, 107);
  }
  .nav-vert > ul > li >  a, .nav-vert-resp > ul > li >  a {
      display: block;
      color: white;
      text-align: left;
      padding: 15px;
      font-size: 15px;
      margin: 8px;
  }
  .ul-no {
      list-style-type: none;
      margin: 0;
      padding: 15px;
  }

  .ul-no > li:hover {
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.24);
  }
  .mg-default {
      margin: 15px;
  }

  .material-icons.md {
      font-size: 16px;
  }
  .material-icons.lg {
    font-size: 17px;
}
  .material-icons.pad {
      padding-right: 10px;
  }
  .material-icons.md:hover {
      cursor: pointer;
      font-size: 17px;
}
.container.modal {
    position: absolute;
    top: 30%; 
    left: 0%;
}
.logo {
    font-size: 25px;
}
.logo > a {
    color: white;
}

.no-pad {
    padding: 0;
}

.dropbtn {
    background-color: aquamarine;
    color: black;
    padding: 0px;
    font-size: 15px;
    border: none;
    cursor: pointer;
}
.dropbtn:hover, .dropbtn:focus {
    background-color: #274839
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    left: -250%;
    background-color: #f1f1f1;
    min-width: 50px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index:1
}
.dropdown-content label {
    text-align: left;
    display: block;
    color: black;
    padding: 12px;
    text-decoration: none;
}
.dropdown-content label:hover {
    background-color: rgb(18, 18, 107);
    color: white;
}

.show {
    display: block;
}
@media only screen and (max-width: 720px) {
    /* For mobile phones: */
    .bg_slideshow_items > .item > .slideshow_caption {
        bottom: -35%;
        animation: slideshow_caption 5s 0s linear infinite;
        -webkit-animation: slideshow_caption 5s 0s linear infinite;
    }
    
    @keyframes slideshow_caption {
        0%   {opacity: 0; bottom: -50%;}
        30% {opacity: 1.0; bottom: -35%;}
    }
    
    @-webkit-keyframes slideshow_caption {
        0%   {opacity: 0; bottom: -50%;}
        30% {opacity: 1.0; bottom: -35%;}
    }

    .bg_slideshow_items > .item > .slideshow_caption > p {
        font-size: 25px;
        text-align: center;
    }
    
    .bg_slideshow_items > .item > .slideshow_caption > button {
        font-size: 18px;
        padding: 12px;
    }
    .nav-resp-vert, .nav-dash-cont, .nav-cont {
        display: none;
    }
    .nav-resp {
        padding : 12px;
        background-color: rgb(18, 18, 107);
        display:block;
    }
    .nav-resp > div > label > a {
        color: white;
    }
    .nav-resp-items, .nav-vert-resp, .nav-vert {
        width: 70vw;
    }
    .nav-resp > .col-10 {
        width: 80%;
    }
    .hide:hover {
        cursor: pointer;
    }
    .nav-resp > .col-2{
        width: 20%;
    }
    .logo {
        text-align: left;
    }
    .login-resp > .col-6 {
        width: 50%;
        font-size: 20px;
        padding: 10px;
    }
    .modalRow > .col-6 {
        width: 50%
    }
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .bg_slideshow_items > .item > .slideshow_caption {
        bottom: -35%;
        animation: slideshow_caption 5s 0s linear infinite;
        -webkit-animation: slideshow_caption 5s 0s linear infinite;
    }
    
    @keyframes slideshow_caption {
        0%   {opacity: 0; bottom: -50%;}
        30% {opacity: 1.0; bottom: -35%;}
    }
    
    @-webkit-keyframes slideshow_caption {
        0%   {opacity: 0; bottom: -50%;}
        30% {opacity: 1.0; bottom: -35%;}
    }

    .bg_slideshow_items > .item > .slideshow_caption > p {
        font-size: 25px;
        text-align: center;
    }
    
    .bg_slideshow_items > .item > .slideshow_caption > button {
        font-size: 18px;
        padding: 12px;
    }
    .nav-resp-vert, .nav-dash-cont, .nav-cont {
        display: none;
    }
    .nav-resp {
        padding : 12px;
        background-color: rgb(18, 18, 107);
        display:block;
    }
    .nav-resp > div > label > a {
        color: white;
    }
    .nav-resp-items, .nav-vert-resp, .nav-vert {
        width: 70vw;
    }
    .nav-resp > .col-10 {
        width: 80%;
    }
    .hide:hover {
        cursor: pointer;
    }
    .nav-resp > .col-2{
        width: 20%;
    }
    .logo {
        text-align: left;
    }
    .login-resp > .col-6 {
        width: 50%;
        font-size: 20px;
        padding: 10px;
    }
    .login-main > .col-4 {
        width: 100%;
    }
    .main-resp {
        width: 100%;
    }
}

@media only screen and (max-width: 950px) {
    .nav-cont > .col-5{
        width: 20%;
    }
    .nav-cont > .col-6{
        width: 70%;
    }
    .nav-cont > .col-1{
        width: 10%;
    }
}