/* Main style file. Override general styles here. Specific module or page type
styles, often have their on css files, which are called only if necessary. */

/*
* =============================
* === Base ===
* =============================
*/

html,
body {
  position: absolute;
  top: 0;
  width: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
}


/* Edit buttons */


.bd {
  min-height: 500px
}

.content article {
 /*  padding-top: 5rem; */
}

.edit_mode {
  background-color: #9d142d;
  color: white;
}

.edit_heading {
  font-weight: bold;
}

.edit-admin {
  font-weight: 600;
  font-size: 14px !important;
  text-shadow: none !important;
}

.edit-admin-abs-left {
  position: absolute;
  bottom: 0;
  left: 50px;
}

.edit-admin a {
  text-decoration: underline;
}

.edit-admin-alt a {
  color: white;
}

.edit-admin-alt a:hover {
  color: black;
}

.edit-admin-br {
    position: absolute;
  right: 0;
  bottom: 0;
}

/*  Collapse styles */
.collapse-arrow {
  display: flex;
  align-items: center;
  font-size: 25px;
  padding-left: 15px;
  cursor: pointer;
  flex-grow: 1;
  justify-content: center;
}

/* Alert */
#myAlert, #alert-error {
  position: fixed;
  right: 0;
  left: 0;
  margin-left: auto;
  width: 350px;
  margin-right: auto;
  z-index: 10000000;
  bottom: 30px;
  display: flex;
  align-items: center;
  padding: 5px 15px;
  font-weight: 600;
  color: white;
  border-radius: 4px;
}

#myAlert {
  background-color: green;
}

#alert-error {
  background-color: red;
}

.alert-fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.alert-fade.in {
  opacity: 1;
}

/* wysiwyg table styles */
.wysiwyg table {
  width: 100% !important;
  height: auto !important;
}

.wysiwyg table {
  width: 100%;
  margin-bottom: 1.6rem;
  background-color: transparent;
}

.wysiwyg table td, .wysiwyg table th {
  padding: 15px 0;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

@media (max-width: 768px) {
  .wysiwyg table tr, .wysiwyg table td {
    width: 100% !important;
    height: auto !important;
    display: block;
  }
}
@media (min-width: 768px) {
  .wysiwyg table td, .wysiwyg table th {
      padding: 15px;
  }
}

/*
* =============================
* === A Few Overrides ===
* =============================
*/

strong {
  font-weight: bold;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: blue;
  text-decoration: none;
}

.navbar-wrapper {
  position: relative;
}

.navbar-expand-lg {
  flex-flow: column nowrap;
  padding: 0 !important;
}

.navbar .navbar-collapse {
  display: none !important;
}
.nav>li {
    position: initial;
}

.breadcrumb {
  background-color: transparent;
  padding: .75rem 0;
  margin: 0;
}

.ui-tooltip {
  -webkit-transform: none;
  transform: none;
  transition: none;
  display: flex;
  justify-content: flex-end;
  z-index: 100000000000000000000000000000;
}

.ui-tooltip-content {
  font-size: 12px;
  background-color: #dedede;
  border-radius: 4px;
  color: white;
  line-height: 1.5;
  font-weight: 600;
  padding: 10px;
  width: 300px; 
}

.bs-tooltip-auto[x-placement^=left] .arrow, .bs-tooltip-left .arrow {
    right: 2px;
}

/*
* =============================
* === Editing UI ===
* =============================
*/

.editable-image {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 30px;
  color: #3f8dc0;
  cursor: pointer;
  background-color: white;
  z-index: 1000;
  padding: 5px;
  border-radius: 5px;
}

.editable-image:hover {
  color: white;
  background-color: #3f8dc0;
}

.editable-data {
  background-color: #0080008f;
  border: none;
  padding: 5px;
  width: 100%;
  color: white !important;
}

#editor-control {
  left: 0px;
  position: fixed;
  margin: 15px;
  z-index: 1030;
}

#editor-logout {
  background-color: red;
  color: white;
  width: 125px !important;
  height: 48px;
  border-radius: 0;
}

#editor-logout:hover {
  color: red;
  background-color: white;
}

#editor-logout div {
  display: flex;
  align-items: center;
  justify-content: center;
}

#save-data-settings {
  background-color: green;
  color: white;
  width: 125px !important;
  height: 48px;
  border-radius: 0;
}

#save-data-button {
  cursor: pointer;
  transition-property: transform;
  transition-duration: .1s;
  transition-timing-function: ease-in; 
  display: flex;
  align-items: center;
  justify-content: center;
}

#save-data-settings h6, #editor-logout h6 {
  font-weight: bold;
}

#save-data-settings:hover {
  color: green;
  background-color: white;
}

.editable-data:focus, .editable-data:hover {
  border: 2px solid #3bb2ff;
}

.box-selector-container {
  display: flex;
}

.box-selector {
  padding: 10px;
  margin-right: 10px;
  border: 1px solid #2980b9;
  transition: background-color 0.5s ease;
  transition: color 0.5s ease;
  font-weight: 400;
  cursor: pointer;
}

.box-selected {
  background-color: #2980b9;
  color: white;
}

/*
* =============================
* === Settings Bar ===
* =============================
*/

#settings {
  position: fixed;
  right: -17px;
  padding-right: 17px;
  top: 0;
  width: 400px;
  background-color: #f9fafb;
  height: 100vh;
  z-index: 1040;
  display: none;
} 

#add-section-button, #add-post-button {
  display: none;
}

.settings-top-bar, .settings-nav .row > div  {
  height: 70px;
}

.settings-top-bar .row, .settings-nav .row, .settings-bottom-bar .row {
  height: 98%;
  margin: 0;
  webkit-box-shadow: 0 0 0 1px rgba(63,63,68,0.05), 0 1px 3px 0 rgba(63,63,68,0.15);
  box-shadow: 0 0 0 1px rgba(63,63,68,0.05), 0 1px 3px 0 rgba(63,63,68,0.15);
}

.settings-bottom-bar {
  bottom: 0;
  position: absolute;
  width: 100%;
  padding-right: 17px;
  height: 70px;
}

.delete-container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.delete-page-section {
  color: red;
}

#save-settings {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2980b9;
  color: white;
  width: 100%;
  height: 50px;
  border-radius: 0;
}

#save-settings #save-button {
  align-items: center;
  top: 0;
  bottom: 0;
  position: absolute;
  justify-content: center;
  display: flex;
}

#save-settings:hover {
  background-color: #e6e6e6;
  color: #2980b9;
}

.settings-nav .settings-nav-col {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color:  #e6e6e6;
  webkit-box-shadow: 0 0 0 1px rgba(63,63,68,0.05), 0 1px 3px 0 rgba(63,63,68,0.15);
  box-shadow: 0 0 0 1px rgba(63,63,68,0.05), 0 1px 3px 0 rgba(63,63,68,0.15);
}

.settings-nav-col.active {
  background-color: white;
}

#settings h6 {
   font-weight: 400;
   font-size: 1em;
}
#close-settings {
  padding: 10px !important;
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

#close-settings:hover {
  background-color: #e6e6e6;
}

#open-settings {
  background-color: #2980b9;
  margin: 15px;
  border-radius: 50%;
  position: fixed;
  right: 0;
  z-index: 1030;
  opacity: .9;
  cursor: pointer;
  transition-property: transform;
  transition-duration: .1s;
  transition-timing-function: ease-in;
}

#toggle-edit {
  background-color: #2980b9;
  margin: 15px;
  border-radius: 50%;
  position: fixed;
  left: 0;
  z-index: 10000;
  opacity: .9;
  cursor: pointer;
  transition-property: transform;
  transition-duration: .1s;
  transition-timing-function: ease-in;
}

#open-settings:hover, #open-settings:active {
  background-color: #e6e6e6;
}

#open-settings:hover,  #toggle-edit:hover {
  display: inline-block;
  transform: rotate(-15deg);
}

#open-settings i, #toggle-edit i {
  color: white;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  font-size: 30px;
  width: 48px;
  height: 48px;
  transition-property: transform;
  transition-duration: .1s;
  transition-timing-function: ease-in;
}

#toggle-edit i {
  font-size: 25px;
}

#open-settings i:hover, #open-settings i:active {
  text-decoration: none;
  color: #2980b9;
}

.settings-main, .settings-page-sections {
  overflow-y: auto;
  height: calc(100% - 210px);
}

.settings-page-sections {
  display: none;
}

.settings-section, .page-section {
  min-height: 60px;
  background-color: #f9fafb;
  -webkit-box-shadow: 0 0 0 1px rgba(63,63,68,0.05), 0 1px 3px 0 rgba(63,63,68,0.15);
  box-shadow: 0 0 0 1px rgba(63,63,68,0.05), 0 1px 3px 0 rgba(63,63,68,0.15);
  width: 100%;
  display: flex;
  align-items: center;
  padding: 25px;
  cursor: pointer;
}

.settings-section .settings-section-left {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.settings-section .settings-section-right {
  flex-grow: 1;
  justify-content: flex-end;
}

.page-section {
  min-height: 80px;
}

.settings-section:hover, .page-section:hover {
  background-color: #f4f4f4;
}

.page-section p {
  margin-bottom: 0;
}

.glyphicon-move {
  cursor: move;
  cursor: -webkit-grabbing;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
}

#settings i, #save-data-button i, #editor-logout i {
  padding-right: 15px;
  font-size: 22px;
}

#nav-sections i {
  padding-right: 0;
  padding-left: 5px;
}

.settings-section-expandable {
  background-color: #f9fafb;
  -webkit-box-shadow: 0 0 0 1px rgba(63,63,68,0.05), 0 1px 3px 0 rgba(63,63,68,0.15);
  box-shadow: 0 0 0 1px rgba(63,63,68,0.05), 0 1px 3px 0 rgba(63,63,68,0.15);
  padding: 25px;
  display: none;
}

.settings-section-expandable p {
  margin-bottom: 0.4rem;
}

.settings-section-expandable .input, .editable-setting  .ce-element {
    width: 100%;
  -webkit-writing-mode: horizontal-tb !important;
  text-rendering: auto;
  /* color: #777; */
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  -webkit-appearance: textfield;
  background-color: white;
  -webkit-rtl-ordering: logical;
  cursor: text;
  margin: 0em;
  font: 400 13.3333px Arial;
  padding: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: #ebebed;
  border-image: initial;
}

/*
* =============================
* === Add Page Section Modal ==
* =============================
*/

.add-page-section {
  padding-left: 0;
}

.add-page-section li {
  list-style: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  margin-bottom: 10px;
  padding: 10px;
  cursor: pointer;
}

.add-page-section li:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

/*
* =============================
* === Common Utilities ===
* =============================
*/

.--letter-spacing {
  letter-spacing: 10px;
}

.--line-left {
  height: 1px;
  width: 50px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: -60px;
}

.--line-right {
  height: 1px;
  width: 50px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: -50px;
}

.--line-right-nopadding {
  right: -60px !important;
}

.header-slim {
  /*min-height: 300px;*/
  min-height: 180px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.header-slim h1 {
  margin: 0;  
}

.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }

/* Read More Button */

.arrow {
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  -o-transition:all 0.3s;
  -moz-transition:all 0.3s;
}

.arrow .arrow-mask {
  position:relative;
  top:-33px;left:-33px;
  border:21px solid transparent;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  -o-transition:all 0.3s;
  -moz-transition:all 0.3s;
}

.arrow:hover {cursor:pointer;border-color:transparent;border-width:0;}
.arrow:hover .arrow-mask {left:-15px;top:-29px;}

.read-more p { padding-top: 0.4rem; }

/* Call To Action Button */
.action-button {
  font-weight: bold;
  border-radius: 3px;
  padding: 0 10px;
}

/*
* =============================
* === Loader Animation ===
* =============================
*/

.loader-15 {
  display: none;
  background: currentcolor;
  position: relative;
  -webkit-animation: loader-15 1s ease-in-out infinite;
          animation: loader-15 1s ease-in-out infinite;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  width: .25em;
  height: .5em;
  margin: 0 .5em;
}
.loader-15:after, .loader-15:before {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background: inherit;
  -webkit-animation: inherit;
          animation: inherit;
}
.loader-15:before {
  right: .5em;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.loader-15:after {
  left: .5em;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes loader-15 {
  0%,
	100% {
    box-shadow: 0 0 0 currentcolor, 0 0 0 currentcolor;
  }
  50% {
    box-shadow: 0 -.25em 0 currentcolor, 0 .25em 0 currentcolor;
  }
}

@keyframes loader-15 {
  0%,
	100% {
    box-shadow: 0 0 0 currentcolor, 0 0 0 currentcolor;
  }
  50% {
    box-shadow: 0 -.25em 0 currentcolor, 0 .25em 0 currentcolor;
  }
}

/*
* =============================
* === Nav Top ===
* =============================
*/

/* leave for JS scroll function */
.navbar.scrolled {}

.navbar * {
  box-sizing:border-box;
  /* transition:all 0.3s;
  -webkit-transition:all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s; */
}


.navbar-nav {
  float: right;
  margin: 0;
}

.navbar-brand {
  height: 100%;
  width: 100%;
}

.navbar-brand img {
  height: 100px;
  transition-duration: 0.5s;
  transition-property: all;
  margin: auto;
}

.navbar {
  padding: 0rem 1.6rem;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1020;
  transition:background-color 200ms linear; 
  border-radius: 0;
}

.nav a {
  font-weight: bold;
  padding: 10px 12px !important; /* JW */
}


.navbar-collapse {
  padding-top: 70px;
  padding-bottom: 30px !important; 
}

.navbar-collapse-scrolled {
  padding-bottom: 0px !important;
}

.nav-social {
  position: absolute;
  display: none;
  top: 0;
  right: 0;
  margin-right: 30px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
}

.nav-social-items {
  width: 100%;
  display: flex;
  align-items: center;
}

.nav-social-items a {
  font-size: 24px;
  color: white;
  padding: 0 0.75rem;
  font-weight: normal;
}

.members {
  text-align: center;
  display: flex;
  align-items: center;
  min-width: 200px;
  padding: 0 0.75rem;
}

.members p {
  font-weight: bold;
  margin: auto;
  margin-top: 0.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/*
* =============================
* === Mobile Menu ===
* =============================
*/

.side-menu * {
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.mobile-toggler {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 40px;
  width: 70px;
  display: flex;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}

.mobile-toggler p {
  margin: auto;
  text-align: center;
  font-weight: bold;
}

.side-menu {
  position: fixed;
  padding-top: 90px;
  padding-left: 30px;
  right: 0;
  width: 300px;
  background-color: white;
  display: none;
  z-index: 1;
  height: 100%;
  transition: visibility 0s ease 0s, opacity 0.5s linear 0s;
  overflow: hidden;
}

#back {
  position: absolute;
  padding: 0 15px;
  top: -20px;
  font-size: 14px;
  font-weight: 500;
  transform: translateX(100%);
  opacity: 0;
}

.side-menu .nav {
  float: left;
  width: 100%;
  position: relative;
}

.side-menu li {
  transition: transform 0.5s, opacity 2s;
  opacity: 1;
  display: flex;
  align-items: center;
}

.side-menu li a {
  z-index: 2;
  cursor: pointer;
  display: block;
}

/**** Sub Menus ****/

.sub-menu { 
  display: none;
  position: absolute;
  top: 0;
  padding-left: 0;
  width: 90%;
}

.targetMenu {
  z-index: 10;
}

.divider {
  height: 1px;
  padding: 0 !important;
  background-color: black;
  margin-left: 15px;
}

.sub-menu li {
  transform: translateX(150%);
  /* opacity: 1; */
  padding: 10px 0;
  list-style: none;
}

.sub-menu a {
  padding: 15px;
  z-index: 2;
  padding: 0 15px;
}

.hide-item {
  opacity: 0;
  transform: translateX(-100%);
}

.show {
  opacity: 1;
  transform: translateX(0%) !important;
}

/**** Side Nav Menu Customization****/

.side-nav>h3:first-child {
  margin-top: 0;
}

.side-nav .nav {
  margin: 5px 0 10px 12px;
}

.side-nav li {
  
}

.side-nav .nav li a {
  padding: 2px;
  color: #767676;
}

.side-nav .nav li.active>a {
  color: #337ab7 !important;
  font-weight: 700;
}

.side-nav .nav .nav .nav {
  font-size: 12px !important;
}

.side-nav .nav li a:hover {
  color: #333 !important;
  background: none !important;
}

.section-bk {
  width: 100%;
  background-color: rgba(255, 255, 255, .9);
  padding: 20px 0;
  margin: 0;
}

/*
* =============================
* === Default Sidebar  ===
* =============================
*/

.default-sidebar {
  border-left: none;
}

.default-sidebar ul {
  padding-left: 0;
}

.default-sidebar li {
  list-style: none;
}

.default-sidebar p {
  color: #212529;
}

.default-sidebar li.active > a p {
  color: #ba5b78;
}

.default-sidebar h6 {
  padding: 10px;
}

.default-sidebar p {
  line-height: 18px;
  cursor: pointer;
  padding: 10px;
  margin: 1em 0 0 10px;
  font-weight: bold;
}

.default-sidebar .nav li {
  width: 100%
}

/*
* =============================
* === Landing Banner ===
* =============================
*/

.banner {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  margin-top: 100px;
}

.banner .col-12 {
  padding: 0;
}

.banner .row {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 450px) {
  .banner {
    height: 70vh;
    background-position: right;
  }
}

/*
* =============================
* === Default Page Banner ===
* =============================
*/

.banner-default {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*
* =============================
* === Image Gallery Section ===
* =============================
*/
.image-gallery-row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.image-gallery-column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.image-gallery-column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  cursor: pointer;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .image-gallery-column {
    flex: 50% !important;
    max-width: 50% !important;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .image-gallery-column {
    flex: 100% !important;
    max-width: 100% !important;
  }
}

@media screen and (max-width: 992px) {
  .slick-slide img {
    max-width: 85%;
  }
}

@media screen and (max-width: 450px) {
  .slick-slide img {
    max-width: 100%;
  }
  .gallery-overlay .slick-prev { display: none !important; }
  .gallery-overlay .slick-next { display: none !important; }
}

/* Overlay Slick Slider */
.gallery-overlay-container {
  display: none;
  position: fixed;
  z-index: 1000000;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  height: 100vh;
  background-color: #000000eb;
}

.close-overlay-button {
  position: fixed;
  top: 30px;
  right: 30px;
  font-size: 40px;
  cursor: pointer
}

.center-overlay {
      /* height: 100%; */
    position: absolute;
    left: 0;
    right: 0;
    /* top: 0; */
    margin: auto;
    /* bottom: 0; */
    top: 50%;
    transform: translateY(-50%);
}

.gallery-overlay {
  height: 100%;
  display: flex;
  align-items: center;
}

.slick-slide img {
  margin: auto;
}

.slick-slide .caption {
  text-align: center;
  color: white;
  padding-top: 2rem;
  margin: 0;
  font-size: 18px;
}

.gallery-overlay .slick-track {
  display: flex;
  align-items: center;
}

.gallery-overlay .slick-prev { top: calc(50% - 2rem); }
.gallery-overlay .slick-next { top: calc(50% - 2rem); }

/*
* =============================
* === Carousel Section ===
* =============================
*/

/* Base Slider Styles */
.carousel {
  max-width: 100%;
}

.carousel .slick-prev, .carousel .slick-next {
    width: 40px;
    height: 40px;
}

.carousel .slick-prev:before, .carousel .slick-next:before { font-size: 40px; }
.carousel .slick-prev { left: -5px; }
.carousel .slick-next { right: -5px; }
.carousel-3-column-item { height: 250px; }

@media (min-width: 992px) {
  .carousel {
      padding-left: 45px;
      padding-right: 45px;
  }
}

/*
* =============================
* === Page Showcase Section ===
* =============================
*/

.showcase-item {
  padding: 0 0 30px 0;
}

.showcase-item > div:first-child {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 350px;
}

.page-item-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  opacity: 0.7;
  color: white;
  height: 50px;
  display: flex;
}

.page-item-overlay > p {
  margin: auto;
}

/*
* =============================
* === Sign Up Banner ===
* =============================
*/

.sign-up-banner {
  width: 100%;
  min-height: 30vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  
}

.sign-up-banner .overlay {
  min-height: 30vh;
}

.sign-up {
  margin: auto;
  display: flex;
  align-items: center;
  color: white;
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.sign-up h6 {
  font-weight: 300;
  margin-bottom: 0;
}

.sign-up h1 {
  font-weight: bold;
}

.overlay {
  height: 100%;
  width: 100%;
  opacity: 0.8;
}

.sign-up-input {
  display: flex;
}

.sign-up input {
  display: block;
  float: left;
  margin-left: auto;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  border: none;
  color: black;
  padding-left: 1rem;
}

.sign-up button {
  display: block;
  float: left;
  margin-right: auto;
  color: white;
  background-color: transparent;
  font-weight: 600;
  border-left: none;
  border-radius: 0px 4px 4px 0;
}

/*
* =============================
* === Site Map ===
* =============================
*/
.site-map {
  padding-top: 3rem;
}

.site-map.level-1 li {
  font-size: 1.2em
}

.site-map .level-2 li {
  font-size: 1em
}
.site-map .level-3 li {
  font-size: 0.85em
}

.site-map .level-4 li {
  font-size: 0.75;
}

/*
* =============================
* === Blog ===
* =============================
*/
/* Pagination */
.page-prev-border {
  border-right: 3px solid white !important;
}

.page-link.page-prev {
  -moz-border-radius-topright: 0;
  border-top-right-radius: 0;
  -webkit-border-top-right-radius: 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
}

/* .page-next-border {
  border-left: 1px solid white !important;
} */

.page-link.page-next {
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
}

.page-item .page-link {
  color: white;
  border-top: none !important;
  border-bottom: none !IMPORTANT;
}

.page-number {
  border-right: 2.5px solid white !important;
}

.page-item.page-number .page-link {
  border-radius: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Blog Basic Layout */
.posts .post img, .posts .post h2 { 
  margin: 0;  
}

.post img {
  padding-bottom: 2rem;
}

.sidebar-post {
  position: relative !important;
  top: 0 !important;
}

#next {
  float: right;
}

/* Blog Card Layout */
.blog-card-post {
  margin-bottom: 30px;
  cursor: pointer;
}

.blog-card-post img {
  margin: 0 !important;
}

.blog-card-top {
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
}

.blog-card-bottom {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 25px; 
}

.blog-card-bottom h6 {
  font-weight: 400;
  align-items: center;
  display: flex;
}

/*
* =============================
* === Team Page ===
* =============================
*/

.team-members {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 3rem;
}

.team-member {
  cursor: pointer;
  height: 400px;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.team-member .overlay {
  display: none;
  position: absolute;
}

.team-member .overlay .member-header {
  position: absolute;
  bottom: 0;
  padding: 15px;
}

.team-member .overlay .member-header h2 {
  font-weight: 400;
}

.team-member .overlay .member-header h6 {
  font-weight: 600;
}

.member-bio {
  display: none;
  padding: 15px;
  font-size: 20px;
}

.order-14 { order: 14; }
.order-15 { order: 15; }
.order-16 { order: 16; }
.order-17 { order: 17; }
.order-18 { order: 18; }
.order-19 { order: 19; }
.order-20 { order: 20; }
.order-21 { order: 21; }
.order-22 { order: 23; }
.order-24 { order: 24; }
.order-25 { order: 25; }
.order-26 { order: 26; }

/*
* =============================
* === Job Postings Page ===
* =============================
*/

.postings-header {
  padding-top: 3rem;
}

/*
* =============================
* === Calendar Events List ===
* =============================
*/

.month-selected {
  justify-content: center;
  display: flex !important;
  align-items: center;
}

.month-selected h2 {
  margin: 0;
  padding: 0;
  width: 180px;
  text-align: center;
}

.page-link {
  border-top-left-radius: .25rem;
  border-bottom-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
  padding: 6px 20px !important;
}

.list-month {
  display: none;
}

.event-item h6 {
  margin-bottom: 0;
}

.event-item p:first-of-type {
  margin: 0;
}

#alerts p {
  background-color: red;
  padding: 5px 10px;
  color: white;
  border-radius: 2px;
}

#this-month:hover {
  cursor: pointer;
}

/*
* =============================
* === Services Page ===
* =============================
*/

.box-link {
  padding: 25px;
  color: #fff;
  font-size: 25px;
  text-align: center;
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  justify-items: center;
  align-items: center;
  min-height: 200px;
}

@media (max-width: 768px) {
  .box-link {
    margin-bottom: 1rem;
  }
}

/*
* =============================
* === Document Library Page ===
* =============================
*/

.form-group {
  z-index: 1;
  position: relative;
  margin-bottom: 0;
}

#doc-query {
  flex-grow: 1;
  padding: 5px 10px;
}

#doc-filters .dropdown-toggle {
  border: 1px solid;
}

#doc-filters .dropdown-item {
  cursor: pointer;
}

.docs {
  z-index: 0;
}

.doc-col {
  margin-bottom: 1rem;
}

.doc-img {
  width: 40%;
  height: 100px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.doc-title {
  width: 60%;
  padding: 0 10px;
}

@media (max-width: 576px) {
  .form-group > div {
    flex-direction: column;
  }
  #doc-filters .dropdown-toggle {
    width: 100%;
  }
}

/*
* =============================
* === Util ===
* =============================
*/

.no-js {
  position: absolute;
  top: 2.5%;
  left: 2.5%;
  right: 2.5%;
  width: 95%;
  padding: 15px;
  background-color: red;
  color: #eee;
  z-index: 500;
  text-align: center;
}

.edit-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  text-align: center;
  background-color: rgba(50,50,50,0.7);
  padding: 15px;
}

.btn.save_button {
      padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn.exit_button {
      padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}


/*
* =============================
* === Footer ===
* =============================
*/

/* footer {
  position: absolute;
  width: 100%;
  bottom: 0;
} */

.ft-top {
  text-align: center;
  padding-top: 0;
}

.ft-top img {
  max-height: 100px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a {
  font-size: 30px;
  padding: 0 0.75rem;
  font-weight: normal;
}

.footer-contact i {
  padding-top: 5px;
  padding-right: 25px;
  font-size: 20px;
  width: 35px !important;
}

.contact-item {
  display: flex;
  justify-content: space-around;
}

.ft-bottom {
  text-align: center;
}

/*
* =============================
* === Responsive ===
* =============================
*/


/* 
* Extra small devices (portrait phones, less than 576px) 
* No media query since this is the default in Bootstrap
*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .month-selected h2 {
    margin: 0;
    padding: 0 1rem;
  }
  
  #this-month {
    position: absolute;
    right: 0;
    top: 0;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .training-menu .nav div,
  .training-menu .nav a {
    padding: 15px 25px;
    font-size: 20px;
  }
  
  .sign-up input {
    min-width: 300px;
  }

  .showcase-item {
    padding: 0 10px 30px 10px;
  }
  
  .team-member .overlay .member-header { padding: 30px; }
  
  .member-bio { padding: 30px; }
  
  .postings-header {
    padding-top: 0;
  }
  
  .month-selected h2 {
    width: 300px;
  }
    
  .default-sidebar {
    top: -200px;
    position: absolute;
    padding-top: 0;
    margin-top: 0;
    margin-top: 5rem; 
  }
  
  .default-sidebar h6 {
    margin: 0 10px;
  }

  .deafult-sidebar p {
    margin: 0 10px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .navbar-brand {
    width: initial;
  }
  
  .navbar-brand img {
    margin: 0;
  }
  
  .nav .dropdown {
    z-index: 1;
  }
  
  .nav .dropdown.show {
    z-index: 100
  }

  .navbar .navbar-collapse {
    display: initial !important;
  }
  
  .nav-social {
    display: flex;
  }
  
  .mobile-toggler {
    display: none
  }
  
  .banner {
     background-position: center;
  }
  
  .showcase-item {
    padding-bottom: 0;
  }
  
  .showcase-item > div:first-child {
    min-height: 250px;
  }
  
  .post img {
    padding-bottom: 0;
  }
  
  .ft-top {
    text-align: left;  
    padding-top: 3rem;
  }
  
  .contact-item {
    justify-content: initial;
  }
  
  .ft-bottom {
    text-align: left;
  }
  
  .edit-admin {
    text-align: right;
  }
  
  .training-menu li div > span,
  .training-menu li a > span {
    display: initial;
  }
  
  .training .quiz {
    padding-right: 0;
    margin-left: 25%;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}