/*@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,700&subset=latin-ext');*/
/*@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:300,400,700&subset=latin-ext');
*/
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap&subset=latin-ext');

:root {
  --main-g: rgb(133, 255, 177);
  --main-lg: rgb(239,239,239);
}

html,body {
  min-height: 100vh;
}

body, body * {
  font-family: 'Roboto',Helvetica,Arial,sans-serif;
}

/* --------------------------------------------------------------- NAVBAR --- */

nav.navbar {
  background: #fff;
}

.navbar-brand img {
  max-height: 35px;
}

.navbar-nav {
  align-items: center;
}

.date-container {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 2rem;
}

.session-ticker {
  font-size: 12px;
}

  .session-ticker > span {
    font-family: 'Source Code Pro', monospace;
    font-weight: 700;
  }
  
 .menu {
  
 }
 
  .menu-item {
    /*width: 100%;
    height: 2.4rem;
    padding: .3rem 15px;
    border-top: 1px solid rgb(221,221,221);
    border-left: 1px solid rgb(221,221,221);
    border-right: 1px solid rgb(221,221,221);
    box-sizing: border-box;*/
  }
  
    .menu-item:last-of-type {
      /*border-bottom: 1px solid rgb(221,221,221);*/
    }
    
  .menu-item-group {
    background: rgb(242,242,242);
  }
  
  .menu-item.list-group-item {
    position: relative;
  }
  
  .menu-item.list-group-item em {
    margin: 3px 0 0 5px;
    padding: 1px 3px;
    font-size: 9px;
    font-style: normal;
    color: rgb(160,160,160);
    background: rgb(242,242,242);
    border-radius: 5px;
    display: inline-block;
  }
  
.img-responsive {
  max-width: 100%;
  height: auto;
}
    
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 1.2rem;
  font-style: italic;
}
::-moz-placeholder { /* Firefox 19+ */
  font-size: 1.2rem;
  font-style: italic;
}
:-ms-input-placeholder { /* IE 10+ */
  font-size: 1.2rem;
  font-style: italic;
}
:-moz-placeholder { /* Firefox 18- */
  font-size: 1.2rem;
  font-style: italic;
}
.req::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgb(190,50,30);
}
.req::-moz-placeholder { /* Firefox 19+ */
  color: rgb(190,50,30);
}
.req:-ms-input-placeholder { /* IE 10+ */
  color: rgb(190,50,30);
}
.req:-moz-placeholder { /* Firefox 18- */
  color: rgb(190,50,30);
}

.main-bg {
  width: 30px;
  height: 100vh;
  background: var(--main-g);
  position: fixed;
  left: 0;
  top: 0;
  z-index: -2;
}

.main h2 {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgb(221,221,221);
}

.row-form {
  margin-top: 2rem;
}

.mce-panel {
  border: 1px solid #ced4da;
  border-radius: .25rem;
}

#actions-wrapper {
  height: 3rem;
  padding-left: 0;
  padding-right: 0;
  background: linear-gradient(180deg, rgb(192,192,192) 66.6667%, rgb(250,250,250) 33.3333%);
}

  #actions-wrapper a {
    height: 3rem;
    margin: 0;
    text-decoration: none;
    /*background: rgb(192,192,192);*/
    display: block;
    float: left;
  }
  
    #actions-wrapper a span {
      height: 2rem;
      padding-top: .2rem;
      padding-left: 15px;
      padding-right: 15px;
      color: #fff;
      display: block;
      float: none;
      border-right: 1px solid rgb(160,160,160);
    }
    
    #actions-wrapper a.active span, #actions-wrapper a:hover span {
      background: rgb(160,160,160);
    }
  
    #actions-wrapper a.active {
      /*background: rgb(192,192,192);*/
      background-image: url(img/arrow-dn.svg);
      background-repeat: no-repeat;
      background-size: 2rem 1rem;
      background-position: bottom center;
    }

.text-info-list:before {
  display: block;
  float: none;
  clear: both;
}
.text-info-list {
  font-size: .7rem;
}
    
table.listing {
  width: 100%;
  border-collapse: collapse;
  border-radius: .25rem !important;
}

  table.listing thead {
    min-height: 2rem;
    background: rgb(192,192,192);
  }
  
    table.listing thead * {
      color: #fff;
    }
    
      table.listing > thead > tr > th {
        padding: 12px 2px 6px 2px;
        color: rgb(96,96,96);
        text-align: left;
      }
      
      table.listing > tbody > tr {
        border-bottom: 1px solid rgb(221,221,221);
      }
      
      table.listing > tbody > tr:nth-child(odd) {
        background: rgba(221,221,221,.5);
      }
      
      table.listing > tbody > tr > td {
        padding: 8px 2px 12px 2px;
        word-break: break-all;
      }
      
        table.listing > tbody > tr > td > a {
          font-size: .85rem;
          color: rgb(32,32,32);
        }
      
      table.listing tr:hover {
        background: rgba(0,150,219,.2) !important;
      }
      
      table.listing td:nth-child(odd) {
        background: rgba(221,221,221,.3);
      }
      
      table.listing img {
        margin: 0 2px;
      }
      
#list-pages > a.btn {
  min-width: 36px;
  margin-left: 10px;
  padding-left: 0;
  padding-right: 0;
  color: rgb(18,18,18);
  font-weight: 300;
  display: inline-block;
}

  #list-pages > a.btn.btn-info {
    background: var(--main-g);
  }
  
  #list-pages > a.btn.btn-secondary {
    background: var(--main-lg);
  }

.textarea-normal {
  /*width: 95%;*/
  height: 30rem;
}

.textarea-medium {
  height: 250px;
}

.textarea-small {
  height: 150px;
}

.container-inner {
  width: calc(100% + 30px);
  margin-top: 2rem;
  margin-left: -15px;
  margin-right: -15px;
  padding-top: .25rem;
  padding-bottom: 2rem;
  padding-left: 15px;
  padding-right: 15px;
  background: rgb(242,242,242);
  border-radius: .25rem;
}

.content-main .fas {
  color: rgb(192,192,192);
}

.foot {
  height: 3rem;
  padding-top: .5rem;
  border-top: 1px solid rgb(64,64,64);
  background: rgb(242,242,242);
}

  .foot * {
    font-size: 11px;
  }

.undertop {
  margin-top: 75px;
}

.fromtop {
  position: absolute;
  top: 20%;
  z-index: 1100;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}

.bootstrap-select button {
  padding-top: 8px;
}

.iframe-btn {
  min-width: 3rem;
  padding-left: 0;
  padding-right: 0;
}

.mini-btn {
  min-width: 3rem;
  padding-left: 0;
  padding-right: 0;
}

.menu-item-group {
  background: none;
  border-top: 1px solid var(--main-lg);
}

div.list-group-item {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 14px;
  border-left: none !important;
  border-right: none !important;
  box-shadow: none;
  display: flex;
  align-items: center;
}

  div.list-group-item > div {
    padding-right: 5px;
    font-size: 31px;
    font-weight: 100;
  }
  
  div.list-group-item > a {
    margin-left: 22px;
    font-weight: 300;
    display: inline-block;
  }
  
  div.list-group-item > a.active {
    /*color: var(--main-g);*/
  }
  
    div.list-group-item > a.active:after {
      content: '';
      width: 100%;
      height: 11px;
      margin-top: -14px;
      background: var(--main-g);
      display: block;
    }

.btn {
  border-radius: 18px;
}

.breadcrumb {
  background-color: var(--main-lg);
}

.btn.btn-primary {
  font-weight: 300;
  color: rgb(16,16,16);
  background-color: var(--main-lg);
  transition: none;
}

.btn.btn-primary.active {
  background-color: var(--main-g);
}

.shadow-sm {
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.06), 0 3px 4px 0 rgba(0, 0, 0, 0.04), 0 1px 5px 0 rgba(0, 0, 0, 0.08) !important;
}

.submit-list {
  padding-right: 0;
  border: none;
  background: none;
  position: absolute;
  right: 20px;
  top: 5px;
  z-index: 3;
}

  .submit-list i {
    font-size: 21px;
  }
  
.search-tooltip {
  width: calc(100% - 30px);
  padding: 10px;
  font-size: 12px;
  background: #fff;
  border: 1px solid var(--main-g);
  border-radius: 16px;
  position: absolute;
  left: 15px;
  top: 100%;
  display: none;
}


@media only screen and (max-width: 760px) {
    table { 
          width: 100%; 
    }
    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr { 
        display: block; 
    }
    
    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    tr { border: 1px solid #ccc; }
    
    td { 
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee; 
        position: relative;
        padding-left: 30% !important; 
    }
    
    td:before { 
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 25%; 
        padding-right: .5rem; 
        white-space: nowrap;
        /* Label the data */
        content: attr(data-column);
        color: #3498db;
    }
}

.container-main {
  margin-bottom: 120px;
}

.foot {
  position: absolute;
  bottom: 0;
}

.form-text {
  font-size: .6rem;
}