body {
  margin: 0;
  padding: 0;
  font-size: 1em !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

/* Login */
.login-container {
  display: flex;
  flex-direction: row;
  height: 100vh;

}

.login-container>div {
  width: 50%;

}

.login-form-container {
  padding: 5% 10%;
}

.login-img {
  background: #E2F1F7 url(../images/bg_sidebar.png) repeat;
  background-size: 50% auto;
}

/* Session List Datatable */
#table-sessions_info,
#table-sessions_paginate {
  text-align: center;
}

#table-sessions_paginate a {
  color: #1E87AE;
}

#table-sessions_paginate a:hover {
  text-decoration: none;
}


#table-sessions_filter input {
  border-radius: 2em;
  border: 1px solid rgba(0, 0, 0, 0.2);


}

.btn-table-options,
.btn-table-options-delete {
  background-color: transparent;
  border: none;
}

.btn-table-options i {
  color: #2FA5D1;
}

.btn-table-options-delete i {
  color: #D12F2F;
}

.btn-table-options span,
.btn-table-options-delete span {
  font-size: 0.8em;
  color: #464646;
  display: block;
}

.btn-table-options:hover,
.btn-table-options-delete:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

/* Navbar */

.main-heading {
  color: #2FA5D1;
  font-size: 1.2em;
  font-weight: 800;
  margin: 1em 0em;

}

.report-heading{
  color: #2FA5D1;
  text-align: center;
}

.menu-icon {
  display: none;
}

.navbar-logo img {
  width: 25%;
}

nav {
  background-color: #2FA5D1;
  margin: 0;
  display: flex;
  align-items: center;
  height: 5em;
}

nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  line-height: 2em;
  justify-content: end;
}

nav ul li {
  display: flex;
  list-style-type: none;
  padding: .5em;
}

nav ul li a {
  color: white;
  background-color: #2FA5D1;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1em;
  padding: 0.2em 2em;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-link {
  padding: 1rem 1rem !important;
}

.nav-link:hover {
  color: white;
  text-decoration: none;
  transition: width .3s !important;
}

.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .3s !important;
}

.nav-link:hover::after {
  width: 100%;
  transition: width .3s !important;
}

#nav-elements {
  position: absolute;
  right: 0;
}

/* Logout Button Navbar */

.log-link {
  color: #2FA5D1;
  background-color: white;
  border-radius: 2em;
}

.log-link:hover {
  color: #2FA5D1;
  opacity: 0.7;
}

.log-link i {
  margin-left: 1em;
}

/* Landing Page  */

.landing-container {
  width: 100%;
  margin: 0 auto;
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: #E2F1F7;
}

.landing-center {
  display: flex;
  flex-direction: row;
  width: 75%;
  margin: 0 auto;
}

.landing-text {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #464646;
  font-size: 1.2em;
}

.landing-text h2 {
  width: 75%;
  text-align: center;
  color: #2FA5D1;
  display: table;
  border-bottom: 2px solid #2FA5D1;
  padding-bottom: 15px;
  font-weight: 700;
}

.landing-text p {
  padding-top: 15px;
  display: block;
  width: 100%;
  text-align: justify;
}

.parallax {
  z-index: 2;
  /* The image used */
  background-image: url(../images/nuvens-resizeimage.png);

  width: 60%;
  max-height: 400px;
  /* Set a specific height */
  min-height: 50px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  /* background-position: left; */
  background-repeat: no-repeat;
  background-size: 30%;
  background-position-x: 25%;
  background-position-y: 40%;
}

.btn-play {
  width: 100%;
  position: absolute;
  margin-top: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Landing Page--Play Button */

.play-button {
  width: 8em;
  line-height: 1.5em;
  background-color: #2FA5D1;
  border-radius: 3em;
  border: 5px solid white;
  font-size: 1.9em;
  font-weight: bold;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.play-button:hover {
  background-color: #2FA5D1;
  opacity: 0.8;
}

.play-button:active {
  background-color: #2FA5D1;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.landing-info-play {
  background-image: url(../images/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #464646;
  font-size: 1.2em;
  padding: 1em;
}

.landing-info-play ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  max-width: 600px;
}

.landing-info-play li {
  padding-left: 1em;
  padding-bottom: 1em;
  text-indent: -1em;
  text-align: justify;
}

.landing-info-play li:before {
  content: '\26B9';
  padding-right: 5px;
  font-weight: bold;
  color: #2FA5D1;
}

/* Footer */

footer {
  margin-top: auto;
  width: 100%;
  background: #2FA5D1;
  position: relative;
  padding-bottom: 5%;
}

.spacer {
  flex-grow: 1;
}

.main-footer {
  width: 60%;
  display: block;
  margin: auto;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
}

.footer-item {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Footer--Div & Images */

.footer-logo-div {
  display: flex;
  text-align: left;
}

.footer-logo {
  display: flex;
  width: 150px;
  padding: 0.5em;
  margin-top: 1em;
}

.footer-logo img {
  max-width: 100%;
  max-height: 100%;
}

.footer-links ul {
  padding-top: 1em;
  display: flex;
  justify-content: end;
  color: white;
  list-style: none;
  text-align: right;
}

.footer-links li {
  margin-left: 2em;
  margin-top: 2em;
}

.footer-links a {
  color: white;
}

.footer-links a:hover {
  color: white;
  text-decoration: none;
}

.footer-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .3s;
}

.footer-links a:hover::after {
  width: 100%;
  transition: width .3s;
}

.footer-text {
  text-align: right;
  margin-right: 5%;
}

.footer-text a {
  color: white;
  text-decoration: none;
}

.footer-text a:hover {
  color: white;
  text-decoration: none;
  opacity: 0.7;
}

/* Footer--Copyright */

.footer-copyright {
  width: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  background-color: #2886a9;
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin-top: revert !important;
}

.footer-copyright p {
  margin: auto;
}

.footer-subtitle {
  font-size: 0.7em;
  color: white;
  display: flex;
  flex-direction: column;
}

.cereal-logo {
  background-image: url(../images/logo-cereal.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 75px;
}

.login-game-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #2FA5D1;
}

.login-game-logo img {
  max-width: 70%;
  max-height: 70%;
}

.login-form {
  margin-top: 5%
}

.login-form-disclamer {
  margin-bottom: 10%;
  text-align: center;
}

.submit-login-btn {
  margin-top: 5%;
  width: 100%;
  height: 3em;
  background-color: #2FA5D1;
  margin-top: 10px;
  border-radius: 8px;
  border: 0;
  color: white;
  cursor: pointer;
}

.submit-login-btn:hover {
  background-color: #2FA5D1;
  opacity: 0.8;
}

.submit-login-btn:active {
  background-color: #2FA5D1;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

#id_username,
#id_password {
  width: 100%;
}

.form-label {
  text-transform: uppercase;
  color: #1E87AE;
  font-size: 0.8em !important;
  font-weight: 500;
}

.search-form {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
}

.search-form input {
  background-color: #F0F0F0;
  border-radius: 1px;
  height: 3em;
  border-style: solid;
}


#id_session {
  width: 40%;
  margin-right: 2%;
  background: url(../images/search-solid.svg) no-repeat 10px 10px;
  background-size: 25px 25px;
  padding-left: 50px;
}

#id_session input::placeholder {
  margin-left: 20px;
}


.sessions-container {
  max-width: 90%;
  margin: 0 auto 10% auto;
  padding-top: 2%;
}

#btn-modal-add {
  background-color: #2FA5D1;
}

.btn-modal {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2em;
}

thead {
  color: #2FA5D1;
}

/* #pwd_table {
  border-width: 0px;
  border: none;
  background-color: transparent;
}

#pwd_table:focus {
  outline: none !important;
  border-width: 0px !important;
  border: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
} */

.sessions {
  margin-top: 2%;
}

/* .dropbtn {
  background-color: #E2E2E2;
  color: black;
  width: 100%;
  text-align: center;
  padding: 5px;
  border: none;
}


.dropbtn-btn {
  width: 100%;
  cursor: pointer;
  background-color: #E2E2E2;
  color: black;
  text-align: center;
  padding: 5px;
  border: none;
}

.options_dropdown {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}


.dropdown {
  width: 100%;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #F0F0F0;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  text-align: center;
  width: 100%;
}

.dropdown-content a {
  color: black;
  padding: 5px;
  text-decoration: none;
  display: block;
  background-color: #F0F0F0;
  border: none;
  border-radius: 0;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.fa-caret-down {
  color: #2FA5D1;

}

.dropbtn-arrow {
  cursor: pointer;
} */

/* .dropdown:hover .dropdown-content {
  display: block;
} */


.block {
  display: block;
}


.dropdown:hover .dropbtn {
  background-color: #2FA5D1;
}

.addsession-labels {
  color: #2FA5D1;
  margin: 0;
}

#genpwd {
  margin: 10px;
}

#header_modal {
  text-align: center;
  width: 100%;
  color: #2FA5D1;
  font-weight: bold;
  font-size: 2em;
}

.helptext {
  font-size: 0.8em;
  color: #666;
  margin: 0;
}

.help-txt-pwd ul li {
  margin-top: 0;
  font-size: 0.8em;
  color: #666;
}

#footer-session {
  display: flex;
  justify-content: center;
}

/* Creating a new session form */

.btn-cancel {
  background-color: #c8c8c8;
  border: none;
  border-radius: 5px;
  height: 50px;
  font-weight: bold;
}

.btn-confirm {
  background-color: #2FA5D1;
  border: none;
  border-radius: 5px;
  height: 50px;
  font-weight: bold;
  color: white;
}

.btn-confirm:hover {
  background-color: #2296c0;
}

.btn-cancel:hover {
  background-color: #929292;
}

.modal-body label {
  color: #2FA5D1;
  text-transform: uppercase;
  font-weight: 800;
}

.modal-footer button,
.modal-footer input {
  width: 50%;
  padding: 1;
}

/* Sessions Details */

.session-detail-container {
  height: 100%;
  background-image: url("../images/bg.png");
  background-size: cover;

}

.session-detail-container p {
  font-size: 1.1em;
}

/* Sessions Details--Buttons */

.btn-finished {
  background-color: #2FA5D1;
  height: 100%;
  border: none;
}

.btn-finished:hover {
  background-color: #237fa1;
}

.btn-finished a {
  text-decoration: none;
  color: white;
}

.btn-delete {
  height: 100%;
  background-color: #D12F2F;
  border: none;
}

.btn-delete:hover {
  background-color: #aa2626;
}

.session-info {
  width: 90%;
  padding-left: 2%;
  padding-top: 2%;
  padding-bottom: 2%;
  background-color: white;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-direction: row;
}

.breadcrumbs p {
  width: auto;
  font-weight: bold;
}

.breadcrumbs a {
  width: auto;
  text-decoration: none;
  color: #2FA5D1;
  font-weight: bold;
  padding-right: 10px;

}

.breadcrumbs a:visited {
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: none;
}

.breadcrumbs a:active {
  text-decoration: none;
}

.lineSession {
  width: 30%;
  color: #2FA5D1;
  margin-left: 0;
  border: 1px solid #2FA5D1;
}

.blue {
  color: #2FA5D1 !important;
}

.session-dates {
  display: flex;
  flex-direction: row;
  width: 40%;
  justify-content: space-between;
  align-items: start;
}


#password-details {
  border-width: 0px;
  border: none;
  background-color: transparent;
}

#password-details:focus {
  outline: none !important;
  border-width: 0px !important;
  border: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.player_names {
  margin: 0;
}

.no_padding {
  padding-right: 0 !important;
}

.open-menu {
  padding-left: 0.2em !important;
}


/* Mobile and tablet queries */
@media screen and (max-width: 1023px) {

  /* Navbar */
  .navbar-logo img {
    width: 30vw;
  }

  .navbar-logo img,
  .menu-icon {
    display: block;
    margin: auto;
  }

  #nav-elements {
    position: relative;
    transition: opacity 0.3s;
    display: none;
  }

  nav {
    z-index: 99;
    display: block;
    height: auto;
  }

  nav ul {
    display: block;
    padding: 0;
    width: 100%;
    text-align: center;
    margin: auto;
  }

  nav ul li a {
    display: block;
    margin: auto;
    background-color: transparent;
  }

  .menu-icon {
    display: block;
    margin: auto;
    background-color: transparent;
    color: #ffffff;
    margin-bottom: 2%;
    font-size: 1.2em;
    border: 1px solid white;
    border-radius: 4px;
    height: 2em;
    width: 2em;
  }

  .session-dates {
    display: block;
  }

  .session_details_btn {
    width: 100%;
    display: flex;
    flex-direction: row;
  }

  .log-link {
    width: 100%;
    padding: 0.5em;
    border: none;
    border-radius: 0;
  }

  .btn-modal button {
    width: 100%;
  }

  .session-detail-container {
    max-width: 90%;
    display: block;
    margin: auto;
  }

  .session-info {
    width: 100%;
    height: auto;
  }

  /* Login form  */
  .login-container {
    display: flex;
    flex-direction: column;
    height: 100vh;

  }

  .login-container>div {
    width: 100%;

  }

  .login-form-container {
    padding: 5%;
  }

  .login-img {
    display: none;
  }

  /* Session List */
  #table-sessions_filter input {
    width: 80vw;
  }
}

/* Mobile queries */
@media screen and (max-width: 767px) {

  /* Body and Landing page */
  p {
    font-size: 0.9em;
  }

  .landing-container {
    padding: 2em;
  }

  .landing-text h2 {
    display: block;
    margin: auto;
  }

  .landing-center,
  .landing-text {
    display: block;
    margin: auto;
    width: 100%;
  }

  .parallax {
    width: 80%;
    display: block;
    margin: auto;
  }

  .landing-info-play {
    margin-top: 2em;
    padding: 1em;
  }

  /* Footer */
  .main-footer {
    width: 80%;
  }

  .footer-subtitle {
    text-align: center;
  }

  .footer-row,
  .footer-item {
    display: block;
  }

  .footer-links ul {
    display: block;
    text-align: left;
    margin: 0;
    padding: 0;
  }

  .footer-links li {
    margin-left: 0;
    margin-top: 1em;
    text-align: center;
  }

  .footer-logo-div,
  .footer-logo {
    display: block;
    margin: auto;
  }

  .footer-logo {
    width: 20%;
    margin-top: 0.5em;
  }

  .footer-subtitle {
    font-size: 1em;
  }

  .cereal-logo {
    margin: auto;
    width: 30%;
    margin-bottom: 2em;
  }

  /* Session list */
  .search-form {
    display: block;
  }

  .fa-calendar::before {
    display: none;
  }

  #id_session {
    width: 100%;
  }

  /* Session table */

  .table-container {
    width: 100%;
    overflow-x: scroll;
  }

  .table-options button {
    display: block;
    margin: auto;
  }

  .btn-table-options span,
  .btn-table-options-delete span {
    display: none;
  }

  .session_details_btn {
    flex-direction: column;
    width: 100%;
  }

  .session_details_btn>div {
    margin-bottom: 2em;
  }

}