
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primaryaccent) transparent;
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 8px;
  max-height: 8px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--primaryaccent);
  border-radius: 20px;
  border: 2px solid transparent;
}

:root {
  --blue: #546e96;
  --altblue: #9bd5dc;
  --lightblue: #ebf7f8;
  --black: #323232;
  --grey: #ddd;
  --lightgrey: #ececec;
  --darkgrey: #646463;
  --altgrey: #f1f1f1;
  --primaryaccent: #385077;
  --navigation: #385077;
  --aside: #385077;
  --icons: #f2f4f5;
  --livesession: #ebaa48;
  --dropdown: #546e96;
}

body {
  font-family: Montserrat, "Open Sans", sans-serif;
  font-size: 14px;
  color: var(--darkgrey);
  overflow-x: hidden;
}

body > main {
  position: absolute;
  top: 70px;
  left: 100px;
  width: calc(100vw - 100px);
  background-color: #F2F4F5;
  /* border-top-color: #64636363;
    border-top-style: solid;
    border-top-width: 1px; */
}

.index-logo {
	width: 30%;
 }

 .index-btn {
	font-size: 30px;
 }

 .nav-btn-text {
  font-size: 16px;
 }

@media only screen and (max-width: 992px) {
  body > main {
    left: 0px;
    width: 100vw;
  }
}

a {
  text-decoration: none;
  color: var(--darkgrey);
  transition: color 0.2s;
}
a:active,
a:focus {
  outline: none;
}
a:hover,
a:focus {
  color: var(--blue);
}
:focus {
  outline: none !important;
}
.color-grey {
  color: var(--grey) !important;
}
.color-lightgrey {
  color: var(--lightgrey) !important;
}
.color-blue {
  color: var(--blue) !important;
}
.color-altblue {
  color: var(--altblue) !important;
}
.color-orange {
  color: var(--primaryaccent) !important;
}
.color-black {
  color: var(--black) !important;
}
.bg-grey {
  background: var(--grey);
}
.bg-lightgrey {
  background: var(--lightgrey);
}
.bg-blue {
  background: var(--blue);
}
.bg-altblue {
  background: var(--altbleu);
}
.bg-lightblue {
  background: var(--lightblue);
}
.bg-orange {
  background: var(--primaryaccent);
}
blockquote {
  font-size: 200%;
  line-height: 1.2;
  font-weight: 300;
}
body > header:first-child {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navigation);
  /*background: linear-gradient(to right, white 8%, var(--blue4) 18%);*/
  height: 70px;
  width: 100%;
}
body.login-page > header:first-child {
  background: var(--darkgrey);
}
body > header:first-child a {
  color: #fff;
}
@media only screen and (max-width: 992px) {
  body > header:first-child a img.logo {
    margin-left: 12px;
    width: clamp(80px, 20vw, 300px);
  }
}

img.logo {
  display: block;
  margin-left: 30px;
  height: 40px;
}
.wrapper {
  display: grid;
  grid-gap: 0px;
  grid-template-columns: 100px 1fr;
}
aside {
  position: relative;
  background: var(--darkgrey);
  min-height: 100px;
  width: 100px;
  z-index: 50;
}
aside.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  min-height: 100vh;
  width: 100px;
}
body.login-page aside {
  display: none;
}
section.content {
  grid-column: 2;
  padding: 0px;
  position: relative;
}
.hamburger {
  position: absolute;
  right: 15px;
  top: 15px;
  display: none;
  width: 45px;
  height: 45px;
}
.mobile-aside {
  display: none;
}

.mobile-nav {
  display: block;
}
.top-menu-buttons {
  display: block;
}

#toggle-menu {
  position: absolute;
  right: 0px;
  top: 3px;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
}
#toggle-menu span {
  background: var(--icons);
  border: none;
  height: 4px;
  width: 45px;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: all 0.35s ease;
  cursor: pointer;
}
#toggle-menu span:nth-of-type(2) {
  top: 10px;
}
#toggle-menu span:nth-of-type(3) {
  top: 20px;
}
#toggle-menu span:nth-of-type(4) {
  top: 30px;
}
ul.top-menu-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
  font-size: 17px;
}
ul.top-menu-right {
  display: flex;
  flex-direction: row;
  position: absolute;
  right: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 17px;
  align-items: center;
  height: 100%;
}
ul.top-menu-left li,
ul.top-menu-right li.top-li {
  /* display: inline-block; */
  margin: 0px 30px 0px 0px;
  position: relative;
  overflow: visible;
}
ul.top-menu-left li a,
ul.top-menu-right li.top-li a {
  color: var(--icons);
  transition: opacity 0.2s;
}
ul.top-menu-right li.top-li #clock {
  color: var(--icons);
}
ul.top-menu-left li a:hover,
ul.top-menu-left li a:focus,
ul.top-menu-right li.top-li a:hover,
ul.top-menu-right li.top-li a:focus {
  opacity: 0.7;
}
ul.main-nav {
  list-style: none;
  margin: 0;
  padding: 10px;
  font-size: 14px;
  background: var(--aside);
  /*background: linear-gradient(to bottom, white, var(--blue4) 5%, var(--blue4) 84%, var(--page) 92%);*/
  min-height: calc(100vh - 70px);
  position: relative;
  z-index: 5;
  overflow-y: auto;
  height: 100vh;
  border-right-color: #64636363;
  border-right-style: solid;
  border-right-width: 1px;
}
ul.main-nav li {
  margin: 20px 0px;
  padding: 0;
  text-align: center;
}
ul.main-nav li a {
  display: block;
  text-align: center;
  color: var(--icons);
  transition: color 0.2s;
}
ul.main-nav li a span {
  display: block;
  text-align: center;
  /* word-break: break-all; */
  font-size: 12px;
  margin-top: 4px;
}
ul.main-nav li a img {
  width: 50px;
}
ul.main-nav li a:hover {
  cursor: pointer;
}
ul.main-nav li a:hover,
ul.main-nav li a:focus,
ul.main-nav li a.active {
  color: #fff;
}
ul.main-nav li.helpdesk {
  padding: 15px 0px;
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
ul.main-nav li.helpdesk a {
  color: #c8c8c8;
}
ul.main-nav li.helpdesk a:hover,
ul.main-nav li.helpdesk a:focus,
ul.main-nav li.helpdesk a.active {
  color: var(--primaryaccent);
}

ul.main-nav li.surveys a path svg {
  fill: #c8c8c8 !important;
}
.inner {
  padding: 30px 45px;
}
footer {
  display: none !important;
  /*margin-top: 60px;
	background: var(--black);
	padding: 10px;
	color: #fff;
	text-align: center;*/
}
ul.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.footer-nav li {
  margin: 0;
  display: inline-block;
}
ul.footer-nav li:after {
  content: "|";
  margin: 0px 0px 0px 3px;
  font-size: 14px;
  line-height: 14px;
}
ul.footer-nav li:last-child:after {
  content: "";
  margin: 0;
}
ul.footer-nav li a {
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  display: inline-block;
}
ul.sub-nav {
  list-style: none;
  margin: 40px 0px 0px 35px;
  padding: 0;
}
ul.sub-nav li {
  margin: 0;
  display: inline-block;
}
ul.sub-nav li a {
  color: var(--primaryaccent);
  display: inline-block;
  margin-right: 15px;
  font-weight: 600;
  transition: color 0.2s;
}
ul.sub-nav li a:hover,
ul.sub-nav li a.active {
  color: var(--black);
}
ul.sub-nav li a.active {
  position: relative;
}
ul.sub-nav li a.active:before {
  content: url("https://congress2025.iucn-events.org/cmvirtualPortal/lib/bootstrap/images/cut.svg");
  height: 40px;
  width: 40px;
  position: absolute;
  left: 0px;
  top: 18px;
  z-index: 1;
}
body.auditorium-page ul.sub-nav li a.active:before {
  display: none;
}
ul.pagination-nav {
  list-style: none;
  margin: 20px 0px;
  padding: 0;
}
ul.pagination-nav li {
  margin: 0;
  display: inline-block;
  color: var(--blue);
}
ul.pagination-nav li:after {
  content: "|";
  margin: 0px 0px 0px 3px;
  color: var(--blue);
}
ul.pagination-nav li:last-child:after {
  content: "";
  margin: 0;
}
ul.pagination-nav li a {
  color: var(--blue);
  display: inline-block;
}
ul.pagination-nav li.active a {
  color: var(--black);
}

/* Login page */

body.login-page,
body.content-page {
  background-color: var(--page);
  background-repeat: repeat-x;
  background-position: top left;
}
body.content-page.bg-lightblue {
  background-color: var(--lightblue);
}
div.login-box {
  margin: 12.5% auto;
  text-align: left;
  max-width: 500px;
  background: #fff;
  border-radius: 10px;
}
div.login-box-head,
div.login-box-head img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
div.login-box h1 {
  padding: 15px 80px;
  background: var(--primaryaccent);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
div.login-box-body {
  padding: 15px 80px 30px 80px;
  background: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #a2a1a1;
}
.form-control {
  background: #ececec;
}
.form-control:focus {
  background: #ececec;
  border-color: #ddd;
  outline: 0;
  box-shadow: 0 0 0 0.15rem #ddd;
}
body.login-page .image-area-right {
  position: absolute;
  right: 10%;
  top: 32%;
}
body.login-page .image-area-right img.img-lena {
  width: 300px;
}
body.login-page .bubble-area {
  position: absolute;
  right: 10%;
  top: 15%;
}

/* Slide out */

.slide-out {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.slide-out .slide-out-close {
  position: absolute;
  right: 10px;
  top: 5px;
  z-index: 3;
}
.btn-close:focus {
  border: none;
  box-shadow: none;
}
#slide-out-1 {
  position: absolute;
  left: -300px;
  top: 0;
  width: 300px;
  padding: 20px;
  transition: left 0.3s;
}
aside.sticky #slide-out-1 {
  position: fixed;
  top: 0;
}
#slide-out-1.visible {
  left: 100px;
}

/* Content */

body.content-page img.logo {
  margin-left: 100px;
}
.section-title {
  background: var(--blue);
  padding: 45px;
}
.section-title-altblue {
  background: var(--altblue);
  color: var(--black);
}
.section-title-cutted {
  position: relative;
}
.section-title h1 {
  font-weight: 300;
  font-size: 40px;
  color: #fff;
}
.section-title-altblue h1 {
  font-weight: 600;
  font-size: 30px;
  color: var(--black);
}
.section-title-altblue h1 small {
  font-size: 16px;
}
section.content .btn {
  background: var(--livesession);
  border-color: var(--livesession);
  color: #fff;
  padding: 5px 30px;
  border-radius: 15px;
  font-weight: 600;
  margin: 10px 0px;
}
section.content .btn-blue {
  background: var(--blue);
  border: 2px solid var(--blue);
  color: #fff;
  padding: 5px 30px;
  border-radius: 15px;
  font-weight: 600;
  margin: 10px 0px;
  transition: background 0.2s, border 0.2s;
}
section.content .btn-blue:hover,
section.content .btn-blue:focus {
  background: var(--primaryaccent);
  color: #fff;
  border: 2px solid #fff;
}
body.login-page .btn-orange,
section.content .btn-orange {
  background: var(--primaryaccent);
  border: 2px solid var(--primaryaccent);
  color: #fff;
  padding: 5px 30px;
  border-radius: 15px;
  font-weight: 600;
  transition: background 0.2s, border 0.2s;
}
section.content .btn-orange:hover,
section.content .btn-orange:focus {
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
}
body.login-page .bubble-blue,
section.content .bubble-blue {
  width: 150px;
  height: 150px;
  background: var(--blue);
  color: #fff;
  font-size: 28px;
  line-height: 28px;
  font-weight: 600;
  text-align: center;
  border-radius: 50%;
  position: relative;
  display: table-cell;
  vertical-align: middle;
}
body.login-page .bubble-blue:before,
section.content .bubble-blue:before {
  content: "";
  height: 30px;
  width: 30px;
  background: var(--blue);
  transform: rotate(80deg);
  border-radius: 5px;
  position: absolute;
  left: 25px;
  bottom: 0px;
  z-index: 1;
}
body.login-page .bubble-blue a,
section.content .bubble-blue a {
  color: #fff;
}
.page-title {
  padding: 30px 15px 15px 15px;
  background-position: top center;
  background-repeat: no-repeat;
  /* position: relative; */
}
.page-title-image {
  position: absolute;
  top: 0px;
  left: calc(50% - 150px);
  z-index: 8;
}
.page-title h1 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}
.page-title h1 img {
  height: 24px;
}
section.content h2 ul.other-day-wrapper {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0px 0px 0px 30px;
}
section.content h2 ul.other-day-wrapper li {
  display: inline-block;
  margin-left: 30px;
  font-size: 14px;
  font-weight: 400;
}
section.content h2 ul.other-day-wrapper li.active {
  color: var(--blue);
}
section.content h2 span.timestamp {
  color: var(--black);
  font-size: 16px;
  line-height: 30px;
}
.zebra-rows .row {
  padding: 10px;
}
.zebra-rows .row:nth-child(odd) {
  background: #fff;
}
.zebra-rows span.day {
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
}
.zebra-rows span.date,
.zebra-rows span.time {
  line-height: 30px;
}
.zebra-rows span.session {
  line-height: 30px;
  font-weight: 600;
}
hr {
  margin: 2rem 0;
  background-color: var(--black);
  opacity: 1;
}

/* FAQ */

.faq-question {
  color: #fff;
  background: var(--primaryaccent);
  padding: 15px 30px 15px 15px;
  margin-bottom: 30px;
  border-radius: 10px;
  display: inline-block;
  font-weight: 600;
  position: relative;
}
.faq-question:before {
  content: "";
  height: 30px;
  width: 20px;
  background: var(--primaryaccent);
  transform: rotate(45deg);
  border-radius: 0 0 5px 0;
  position: absolute;
  left: 35px;
  bottom: -10px;
  z-index: 1;
}
.faq-question span {
  color: var(--black);
}
.faq-answer {
  color: #fff;
  background: var(--blue);
  padding: 15px 30px 15px 15px;
  margin-bottom: 45px;
  border-radius: 10px;
}
section.content .faq-answer a {
  color: var(--black);
  transition: opacity 0.2s;
}
section.content .faq-answer a:hover {
  opacity: 0.7;
}

/* Auditorium */

section.content .auditorium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 15px;
  row-gap: 15px;
  margin: 0px 15px;
}
section.content .auditorium-grid-item {
  background: var(--grey);
  padding: 10px;
  border-radius: 10px;
}
section.content .auditorium-grid-item h3 {
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  padding: 15px 20px;
  background: var(--blue);
}
section.content .auditorium-grid-item-inner {
  padding: 20px;
}
section.content .auditorium-grid-item-timestamp {
  color: var(--primaryaccent);
  font-weight: 600;
}
ul.speakers-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.speakers-list li {
  padding: 0;
  margin: 0;
}
section.content .auditorium-grid-item.style-1 h3,
section.content .auditorium-grid-item.style-1 .btn {
  color: #fff;
  background: var(--blue);
  transition: background 0.2s;
}
section.content .auditorium-grid-item.style-2 h3,
section.content .auditorium-grid-item.style-2 .btn {
  color: #fff;
  background: #4c65a2;
  transition: background 0.2s;
}
section.content .auditorium-grid-item.style-3 h3,
section.content .auditorium-grid-item.style-3 .btn {
  color: #fff;
  background: #b34f5b;
  transition: background 0.2s;
}
section.content .auditorium-grid-item.style-4 h3,
section.content .auditorium-grid-item.style-4 .btn {
  color: #fff;
  background: #ff918c;
  transition: background 0.2s;
}
section.content .auditorium-grid-item.style-1 .btn:hover,
section.content .auditorium-grid-item.style-1 .btn:focus,
section.content .auditorium-grid-item.style-2 .btn:hover,
section.content .auditorium-grid-item.style-2 .btn:focus,
section.content .auditorium-grid-item.style-3 .btn:hover,
section.content .auditorium-grid-item.style-3 .btn:focus,
section.content .auditorium-grid-item.style-4 .btn:hover,
section.content .auditorium-grid-item.style-4 .btn:focus {
  color: #fff;
  background: var(--darkgrey);
}
.faculty-rows h4 {
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
  padding: 10px 45px;
  background: #fff;
  position: relative;
  margin-bottom: 30px;
}
.faculty-rows h4:before {
  content: "";
  height: 30px;
  width: 20px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 0 0 5px 0;
  position: absolute;
  left: 45px;
  bottom: -10px;
  z-index: -1;
}
.faculty-rows .faculty-rows-item {
  padding: 10px 30px;
  margin-bottom: 10px;
  background: #fff;
}
.faculty-rows .faculty-rows-item:nth-child(odd) {
  background: var(--altgrey);
}
.faculty-rows .faculty-rows-item h5 {
  font-size: 15px;
  color: var(--blue);
  margin: 15px 0px 0px 0px;
  font-weight: 600;
}
.faculty-rows .faculty-rows-item h5 a {
  color: var(--blue);
}
.faculty-rows .faculty-rows-item p {
  font-size: 14px;
}
.aspect-ratio-box {
  position: relative;
}
.aspect-ratio-box::after {
  display: block;
  content: "";
  padding-bottom: 100%;
}
.aspect-ratio-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modals */

.modal-body {
  padding: 0;
}
.modal-content {
  border-radius: 0px;
}
.speaker-modal-head {
  background: var(--altgrey);
  padding: 30px;
  position: relative;
}
.speaker-modal-head h5,
.speaker-modal-head h6 {
  font-size: 16px;
  color: var(--blue);
  font-weight: 600;
}
.speaker-modal-head h5 {
  margin: 15px 0px 0px 0px;
}
.speaker-modal-head h6 {
  margin: 0px 0px 0px 0px;
}
.speaker-modal-head p {
  font-size: 14px;
  margin: 0;
}
.speaker-modal-head:before {
  content: "";
  height: 30px;
  width: 20px;
  background: var(--altgrey);
  transform: rotate(45deg);
  border-radius: 0 0 5px 0;
  position: absolute;
  left: 75px;
  bottom: -10px;
  z-index: 1;
}
.speaker-modal-body {
  background: #fff;
  padding: 30px;
}
.modal .container-fluid {
  padding: 0;
}
.modal .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
}

/* Guided tour */

.guided-tour {
  text-align: center;
}
.guided-tour-row {
  text-align: center;
  margin: 0;
  padding: 30px 0px;
}
.guided-tour-row-inner {
  max-width: 600px;
  margin: 0 auto;
}
.guided-tour-row-inner h4 {
  font-weight: 700;
  margin-top: -60px;
  font-size: 30px;
  margin-bottom: 5px;
}

/* Large Devices, Wide Screens */
@media only screen and (max-width: 1920px) {
	.index-logo {
		width: 40%;
	  }
}

/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
	.index-logo {
		width: 50%;
	  }
}

/* Ipad landscape */
@media only screen and (max-width: 1024px) {
  .faculty-rows .faculty-rows-item h5 {
    margin: 0;
  }
  .index-logo {
    width: 55%;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 992px) {
  body.login-page,
  body.content-page {
    background-position: 0px 50px;
  }
  body.content-page img.logo {
    margin-left: 0px;
  }
  body.login-page .bubble-area {
    right: 5%;
  }

  .index-logo {
    width: 55%;
  }
  .hamburger {
    display: block;
  }
  .mobile-aside {
    display: block;
  }
  .mobile-nav {
    display: none;
  }
  .top-menu-buttons {
    display: none;
  }
  body > header:first-child {
    z-index: 9;
  }
  ul.top-menu-right {
    right: 80px;
    height: 100%;
    font-size: 15px;
  }
  /* ul.top-menu-right li {
		margin: 0px 10px 0px 0px;
	} */
  ul.sub-nav {
    margin: 25px 0px 0px 0px;
  }
  .wrapper {
    display: block;
    position: relative;
  }
  aside,
  aside.sticky {
    left: -100px;
    width: 100px;
    transition: left 0.2s;
    height: 100%;
    min-height: 100%;
  }
  body.login-page aside {
    display: block;
    position: absolute;
    top: 70px;
    left: -300px;
    width: 300px;
    font-size: 16px;
  }
  aside.visible,
  body.login-page aside.visible {
    left: 0;
  }
  body.login-page .top-menu-left,
  body.login-page .top-menu-right {
    display: none;
  }
  body.login-page ul.main-nav {
    font-size: 16px;
    padding: 15px;
  }
  body.login-page ul.main-nav li {
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
  }
  body.login-page ul.main-nav li a {
    text-align: left;
    padding: 10px 0px;
  }
  img.logo {
    margin-left: 0px;
  }
  #slide-out-1.visible {
    left: 100px;
    width: calc(100vw - 115px);
    max-width: 300px;
  }
  section.content {
    display: block;
    /* height: calc(100vh - 70px); */
  }
  .inner {
    padding: 15px;
  }
  div.login-box {
    margin: 100px auto;
    max-width: 340px;
  }
  div.login-box h1 {
    padding: 15px 20px;
  }
  div.login-box-body {
    padding: 15px 20px;
  }
  body.login-page .image-area-right {
    position: absolute;
    right: 1%;
    top: 25%;
  }
  .section-title {
    padding: 15px;
  }
  .section-title h1 {
    font-size: 28px;
  }
  .page-title {
    padding: 15px;
  }
  .page-title-image {
    position: absolute;
    top: 30px;
    left: auto;
    right: 0px;
  }
  .page-title-image img {
    width: 120px;
  }
  .page-title h1 {
    font-size: 18px;
    line-height: 30px;
  }
  .zebra-rows .row {
    padding: 10px 0px;
  }
  .speaker-modal-head h5 {
    margin: 0;
  }
  .guided-tour-row-inner {
    padding: 0px 15px;
    margin: 0 auto;
  }
  .guided-tour-row-inner h4 {
    margin-top: -30px;
    font-size: 24px;
    margin-bottom: 5px;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  body.login-page .image-area-right {
    display: none;
  }
  body.login-page .bubble-area {
    right: 4%;
    top: 10%;
  }
  .bubble-blue {
    width: 100px;
    height: 100px;
    font-size: 20px;
    line-height: 20px;
  }
  .bubble-blue::before {
    height: 25px;
    width: 25px;
    transform: rotate(75deg);
    left: 15px;
  }
  ul.footer-nav li a {
    font-size: 12px;
    line-height: 12px;
  }
  .page-title-image {
    top: 35px;
    right: 0px;
    z-index: 2;
  }
  .page-title-image img {
    width: 100px;
  }
  .faculty-rows .faculty-rows-item h5 {
    margin: 0;
  }
  section.content h2 ul.other-day-wrapper,
  section.content h2 ul.other-day-wrapper li {
    display: block;
    margin: 0;
  }
  section.content .auditorium-grid {
    grid-template-columns: 1fr;
    column-gap: 0px;
    row-gap: 15px;
    margin: 0px 15px;
  }

  .index-logo {
    width: 65%;
  }
}

/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {
}

/* Live Networking */
.scrolled {
  top: 0 !important;
}
.expand {
  transform: translateX(0%) !important;
}

.live-networking,
#appCurrentSession {
  position: fixed;
  top: 70px;
  left: 100px;
  bottom: 0;
  background-color: #fff;
  width: clamp(30rem, 360px, 40rem);
  overflow: hidden;
  z-index: 40;
  box-shadow: 0.25rem 0 0.875rem rgb(0 0 0 / 25%);
  transform: translateX(-150%);
  transition: 0.4s transform ease-in-out;
  display: contents;
}
/* @media only screen and (max-width: 760px) {
    .live-networking {
        top: 3.4375rem;
        left: 0;
        right: 0;
        max-width: initial;
    }
} */
/* Live Sessions */
.live-sessions .live-sessions-title {
  line-height: 1.6875rem;
  font-size: 1.4375rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: none;
}

.live-sessions .card,
.live-sessions .card--live-session,
.live-sessions .card--live-session--blue,
.live-sessions .card--live-session--primaryaccent {
  margin: 24px;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0.25rem 0 0.875rem rgb(0 0 0 / 25%);
}

.live-sessions .card--live-session--blue:last-of-type,
.live-sessions .card--live-session--primaryaccent:last-of-type,
.live-sessions .card--live-session:last-of-type,
.live-sessions .card:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  /* .live-sessions {
		top: 3.4375rem;
		left: 0;
		right: 0;
		max-width: initial;
	} */
  .live-sessions-toggle {
    display: none;
  }
  .live-sessions .live-sessions-title {
    display: block;
  }
}
p {
  margin: revert;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: revert;
  font-weight: revert;
  line-height: revert;
}
