*, *:before, *:after {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

html, body {
  font-family: proxima-nova, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 15px;
  background-color: #fff;
  color: #363636;
}

/* ::selection      { color:#fff; background: rgba(0,99,164,0.75); }
::-moz-selection { color:#fff; background: rgba(0,99,164,0.75); } */

.color-cmlc-red {
    color: #AF2E2E 
}

.feather {
  height: 1rem;
  margin-top: -4px;
  pointer-events: none;
  vertical-align: middle;
  width: 1em;
}

.light-shadow {
  box-shadow: 0 3px 10px rgba(33,34,37,0.08);
}

.dark-shadow {
  box-shadow: 0 2px 6px rgba(33,34,37,0.10);
}

/* File Timestamp */
.file-name {
  margin-left: 5px;
}
.file-spacer {
  min-width: 10px;
  width: 10px
}
.meeting-document {
    width: 100%
}
.document.fade-link svg {
    width: 1rem;
    min-width: 15px
}
.document.fade-link:link:not(.btn),
.document.fade-link:visited:not(.btn) {
    /* File Timestamp */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fade-link:link:not(.btn),
.fade-link:visited:not(.btn) {
  color: inherit!important;
  background-color: transparent!important;
  text-decoration: none!important;
  border-radius: 0;
  padding: 0;
  -webkit-transition: all 200ms ease-out 0s;
  transition: all 0.20s ease-out 0s;
}

.fade-link:hover:not(.btn),
.fade-link:active:not(.btn) {
    color: inherit !important;
    opacity: 0.7;
    background-color: transparent;
    cursor: pointer;
}

.no-link-style:link, .no-link-style:visited, .no-link-style:hover, .no-link-style:active {
  color: inherit!important;
  background: none!important;
  text-decoration: none!important;
  border-bottom: none!important;
  border-radius: 0!important;
  text-shadow: none!important;
  padding: 0!important;
  opacity: 1!important;

  -webkit-transition: none;
  transition: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #333;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 1rem;
}

p {
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.custom-toast {
    position: fixed; 
    top: 15px; 
    right: 15px; 
    z-index: 1500; 
    min-width: 200px;
    border: none;
}

/* \main style */


/* \\nav */

nav.navbar {
  /* position: absolute; */
  min-height: 62px;
  z-index: 99;
  width: 100%;
  background-color: rgba(0,0,0,0.55);
}

@media (max-width: 767px) {
  nav.navbar {
    background-color: rgba(0,0,0,0.8);
  }
}

.app-title {
  color: #fff;
  text-transform: none;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 2px;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255,255,255,0.8);
}

.navbar-dark .navbar-nav .nav-link .feather {
  height: 1.4rem;
  margin-top: -4px;
  pointer-events: none;
  vertical-align: middle;
  width: 1.4em;
}

/* //nav */


/* \\header */

header {
  position: relative;
  background-image: url('../images/structure/header-image.jpg');
  background-position: center;
  background-size: cover;
  margin-top: -62px;
  padding-top: 62px;
}

@media (max-width: 767px) {
  header {
    margin-top: 0;
    padding-top: 0;
  }
}

header h2 {
  text-transform: none;
}

header .d-flex {
  position: relative;
  min-height: 138px;
}

header .d-flex .pill-group {
  max-width: 380px;
}

/* //header */


/* \\main */

main {
  min-height: 380px; /* compatible with browsers that don't like calc() */
  min-height: calc(100vh - 532px);
}
.hidden{
    visibility: hidden;
}

.card-title {
  text-transform: none;
  padding: 0.25rem 0.85rem;
  margin: -1rem;
}

.card-title .feather {
  height: 1.25rem;
  width: 1.25rem;
}

.file-container {
  position: relative;
  min-height: 195px;
  width: 320px;
  background-color: #fff;
  border: 1px solid #E2E2E2;
  border-radius: 5px;
  /* overflow: hidden; */
  margin: 10px 0;
  padding: 1rem 1rem 0.66rem;
}

@media (max-width: 480px) {
  .file-container {
    width: 100%;
  }
  .custom-toast {
    position: fixed;
    top: auto;
    bottom: 15px;
    right: auto;
    margin-left: auto;
    margin-right: auto;
    z-index: 1500;
    width: 90%;
  }
}

.file-container h4 {
  color: #fff;
  background-color: #545454;
  border-radius: 5px 5px 0 0;
  margin-bottom: 0;
}

.file-container.recent h4 {
  color: #fff;
  background-color: #AF2E2E;
}

.file-container.recent::after {
  content: 'Most Recent';
  position: absolute;
  z-index: 1;
  top: -10px;
  right: -8px;
  color: #fff;
  background-color: #212225;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  padding: 0.25em 0.4em;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(33,34,37,0.05);
}

.file-container .ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-container p {
  position: relative;
}

.document-container .meeting-document::after {
    position: absolute;
    bottom: 2px;
    left: 13px;
    font-size: 7px;
    height: 9px;
    width: 9px;
    text-align: center;
    color: #fff;
    background-color: #AF2E2E;
    border-radius: 100%;
}

.document-container .d-flex:nth-child(1) .meeting-document::after    { content: '1'; }
.document-container .d-flex:nth-child(2) .meeting-document::after    { content: '2'; }
.document-container .d-flex:nth-child(3) .meeting-document::after    { content: '3'; }
.document-container .d-flex:nth-child(4) .meeting-document::after    { content: '4'; }
.document-container .d-flex:nth-child(5) .meeting-document::after    { content: '5'; }
.document-container .d-flex:nth-child(6) .meeting-document::after    { content: '6'; }
.document-container .d-flex:nth-child(7) .meeting-document::after    { content: '7'; }
.document-container .d-flex:nth-child(8) .meeting-document::after    { content: '8'; }
.document-container .d-flex:nth-child(9) .meeting-document::after    { content: '9'; }
.document-container .d-flex:nth-child(10) .meeting-document::after   { content: '10'; }
.document-container .d-flex:nth-child(n+11) .meeting-document::after { content: '+'; }

.document-container .meeting-document:nth-child(1)::after    { content: '1'; }
.document-container .meeting-document:nth-child(2)::after    { content: '2'; }
.document-container .meeting-document:nth-child(3)::after    { content: '3'; }
.document-container .meeting-document:nth-child(4)::after    { content: '4'; }
.document-container .meeting-document:nth-child(5)::after    { content: '5'; }
.document-container .meeting-document:nth-child(6)::after    { content: '6'; }
.document-container .meeting-document:nth-child(7)::after    { content: '7'; }
.document-container .meeting-document:nth-child(8)::after    { content: '8'; }
.document-container .meeting-document:nth-child(9)::after    { content: '9'; }
.document-container .meeting-document:nth-child(10)::after   { content: '10'; }
.document-container .meeting-document:nth-child(n+11)::after { content: '+'; }
.document-container .meeting-agenda-container p::after {content : '';}
.document-container {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 150px;
    margin: 0 -1rem -0.5rem -1rem;
    padding-bottom: 5px;
}

.document-container::-webkit-scrollbar {
    width: 10px;
    background: none;
}

/* Track */
.document-container::-webkit-scrollbar-track {
    background: #dfdfdf;
    border-radius: 6px;
}

/* Handle */
.document-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

/* Handle on hover */
.document-container::-webkit-scrollbar-thumb:hover {
    background: #555;
    cursor: pointer;
}

.meeting-agenda-container {
  background-color: #E2E2E2;
  padding: 0.25rem 0 0.33rem 1rem;
  margin-left: -15px;
  margin-right: -15px;
}

.meeting-agenda-container small {
  color: #656565;
}

.meeting-agenda-container .document {
    padding-right: 1rem;
}

.meeting-document {
    padding: 0.25rem 1rem 0rem;
}

@media(max-width: 480px){
    .document-container {
        max-height: none;
        margin: 0 -1rem 0.5rem -1rem;
    }
}

/* //main */


/* \\login */

.login-container {
  position: relative;
  width: 320px;
  background-color: #fff;
  border: 1px solid #E2E2E2;
  border-radius: 5px;
  overflow: hidden;
  margin-top: -110px;
  padding: 1rem;
}

@media (max-width: 480px) {
  .login-container {
    width: 100%;
  }
}

.login-container h3 {
  color: #fff;
  background-color: #545454;
  margin-bottom: 1rem;
}

/* //login */


/* \\meeting history */

.meeting-history-container .file-container {
  width: 44%;
}

@media (max-width: 991px) {
  .meeting-history-container .file-container {
    /* width: 60%; */
  }
}

@media (max-width: 767px) {
  .meeting-history-container .file-container {
    width: 100%;
  }
  .document-container {
    max-height: none;
    margin: 0 -1rem 0.5rem -1rem;
  }

  }

/* //meeting history */


/* \\admin */

.admin-nav h5 {
  border-radius: 5px;
  font-weight: 400;
  text-transform: none;
}

.admin-nav .selected {
  color: #fff;
  background-color: #545454;
}

.calendar {
  display: none;
}

.add-meeting-btn {
  display: flex;
  justify-content: space-between;
  min-width: 320px;
}

.scheduled-meeting {
  display: flex;
  justify-content: space-between;
  min-width: 320px;
  background-color: #ECECEC;
  border-radius: 5px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.5rem;
}



.scheduled-meeting p {
  margin-bottom: 0;
}

/* //admin */


/* \\footer */

footer {
  position: relative;
  background-color: #171717;
  color: #fff;
  margin: 0 auto;
  padding: 80px 8%;
}

@media (max-width: 767px) {
  footer .container {
    max-width: 220px;
  }
}

footer h5 {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 3px;
  font-weight: 400;
}

.back-to-top-link {
  color: #363636;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 0.66rem;
  text-align: center;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.back-to-top-link::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -8px; bottom: -12px; left: -11px; right: -9px;
  background-color: rgba(255,255,255,1);
  border-radius: 100%;
}

.back-to-top-link a {
  position: relative;
  z-index: 66;
}

.back-to-top-link .feather {
  height: 1.66rem;
  width:  1.66rem;
}

.footer-lead-link {
  padding: 0 18px!important;
}

footer p {
  font-size: 13px;
}

.social-container:hover a {
  opacity: 0.4;
}

.social-container a.fade-link:hover {
  opacity: 1;
  cursor: pointer;
}

/* //footer */


/* \\utility */

.padding-adjust {
  padding-left: 5rem;
  padding-right: 5rem;
}

@media (min-width: 1299px) {
  .padding-adjust {
    padding-left: -0rem;
    padding-right: -0rem;
  }
}

@media (max-width: 767px) {
  .padding-adjust {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.title-divider {
  height: 1px;
  width: 40px;
  background-color: #AF2E2E;
}

.table-striped tbody tr:nth-of-type(even) {
  background-color: rgba(0, 0, 0, 0.033);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0);
}

.columns2 {
  columns: 180px 2;
}

/* //utility */


/* \\splide override */
.splide.hide-navigation .splide__arrows {
    display: none !important;
    visibility: hidden !important
}
.splide.hide-navigation .splide__pagination {
    display: none !important;
    visibility: hidden !important
}

@media (min-width: 1299px) {
  .splide {
    margin-left: -5rem;
    margin-right: -5rem;
  }
}

@media (max-width: 767px) {
  .splide {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.splide__pagination__page.is-active {
  transform: scale(1.12);
  background: #545454;
}

.splide__pagination {
  bottom: -1.75rem!important;
}

.splide__track::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0; bottom: 0; left: 0;
  width: 80px;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0));
}

.splide__track::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0; bottom: 0; right: 0;
  width: 80px;
  background: linear-gradient(270deg, rgba(255,255,255,1), rgba(255,255,255,0));
}

@media (max-width: 767px) {
  .splide__track::before, .splide__track::after {
    width: 2rem;
    opacity: 0.7;
  }
}
@media (max-width: 467px) {
    .fade-link:link:not(.btn),
    .fade-link:visited:not(.btn) {
        display: unset
    }
    .file-date {
        display: none
    }
}

/* //splide override */


/* \\picker override */

.flatpickr-days > .dayContainer {
  padding: 5px;
}

.flatpickr-day.has-meeting {
  background: #ECECEC;
  background-color: #ECECEC;
}

.flatpickr-day.selected {
  border-radius: 5px;
  background: #AF2E2E !important;
  border-color: #AF2E2E !important;
}

.flatpickr-day.selected:hover {
  background: #8d1b1b;
  border-color: #8d1b1b;
}


/* //picker override */


/* \\buttons */

.btn {
  border-radius: 6px;
  font-weight: 600;
}

.btn-light {
  color: #545454;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.btn-resources {
  background-color: #fff;
  border-color: #E2E2E2;
  font-weight: 300;
}

.btn-sm {
  font-size: 0.8rem;
}

.fixed-toolbar button:disabled,
.fixed-toolbar button:disabled span {
    color: lightgray;
}

.btn-image {
    max-height: 20px
}

/* //buttons */


/* \\modal */

.modal-content {
  border-radius: 7px!important;
}
.modal-footer {
  border-top: none;
}

.modal-body h4 {
  color: #fff;
  background-color: #545454;
  border-radius: 5px 5px 0 0;
  margin-bottom: 0;
}

.file-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background: #ECECEC;
  margin: 5px 0px;
  padding: 0px 5px;
  border-radius: 5px;
}

.file-row > span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.file-row > svg {
  flex-shrink: 0;
}

.file-upload-label {
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  border: 2px #9C9C9C dashed;
  width: 100%;
  position: relative;
}

.file-input-hidden {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
}

/* //modal */


/* /main style */