#drop_file_zone {
    background-color: #2196f31c;
    border: #2196F3 2px dashed;
    width: 100%;
    height: 150px;
    padding: 8px;
    font-size: 18px;
}
#drag_upload_file {
    width:50%;
    margin:0 auto;
}
#drag_upload_file p {
    text-align: center;
}
#drag_upload_file #selectfile {
    display: none;
}

body {
    margin:0;
    padding:0;  
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:100vh;
    
}

main {
    flex:1 0 auto;
    font-weight: 400;
}

.footer {
    background:crimson;
}

.mycheckbox{
    display:none;
}

.modal-dialog{
    width: 700px;
}

table td {
    font-weight: 400;
}
/*
.btn {
    padding: 0px;
    font-size: 20px;
    width:30px;
    height: 30px;
    border-radius:0px;
    margin: 0px;

}*/

.navbar .dropdown-menu a {
    padding-left: 5px;
    padding: 0px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: .8rem;
    font-weight: 300;
    color: #000;
}

.card, .navbar, .pagination .page-item.active .page-link {
     box-shadow: 0 0px 0px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}

.navbar-dark .navbar-brand {
    color: #000000;
}

.navbar.navbar-dark .breadcrumb .nav-item .nav-link, .navbar.navbar-dark .navbar-nav .nav-item .nav-link {
    color: #000000;
    transition: .35s;
}

.missing {
    position: relative;
    left: -11px;
    top: -7px;
    text-align: left;
    z-index: 3;
    color: red;
    font-weight: 600;
}



/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbarSuccess {
    visibility: hidden;/*hidden; /* Hidden by default. Visible on click */
    min-width: 400px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #00C851; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    right: 20px; /* Center the snackbar */
    top: 80px; /* 30px from the bottom */
  }

 
  /* Show the snackbar when clicking on a button (class added with JavaScript) */
  #snackbarSuccess.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein_top 0.5s, fadeout_top 0.5s 2.5s;
    animation: fadein_top 0.5s, fadeout_top 0.5s 2.5s;
  }


/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbarError {
    visibility: hidden;/*hidden; /* Hidden by default. Visible on click */
    min-width: 400px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #f73838; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    right: 20px; /* Center the snackbar */
    top: 40px; /* 30px from the bottom */
  }

 
  /* Show the snackbar when clicking on a button (class added with JavaScript) */
  #snackbarError.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein_top 0.5s, fadeout_top 0.5s 2.5s;
    animation: fadein_top 0.5s, fadeout_top 0.5s 2.5s;
  }

  /* Animations to fade the snackbar in and out */
  @-webkit-keyframes fadein_top {
    from {top: 0; opacity: 0;}
    to {top: 40px; opacity: 1;}
  }
  
  @keyframes fadein_top {
    from {top: 0; opacity: 0;}
    to {top: 40px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout_top {
    from {top: 40px; opacity: 1;}
    to {top: 0; opacity: 0;}
  }
  
  @keyframes fadeout_top {
    from {top: 40px; opacity: 1;}
    to {top: 0; opacity: 0;}
  }


/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    top: 40px; /* 30px from the bottom */
  }
  
  /* Show the snackbar when clicking on a button (class added with JavaScript) */
  #snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  /* Animations to fade the snackbar in and out */
  @-webkit-keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 40px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 40px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {top: 40px; opacity: 1;}
    to {top: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {top: 40px; opacity: 1;}
    to {top: 0; opacity: 0;}
  }

  .md-form .validate {
    margin-bottom: 1.0rem;
}

.md-form {
  position: relative;
  margin-top: 2.0rem; 
  /* margin-bottom: 1.5rem;*/
}


.dropdown-submenu {
  position: relative;
}

.dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: .8em;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}