/**
* All of the CSS for your public-facing functionality should be
* included in this file.
*/
.annexus-post-scroll {
  text-align: center;
  position: relative;
  line-height: 1.2;
  z-index: 90;
}
.annexus-post-scroll .annexus-post {
  width: 100%;
  animation-duration: 20s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: anim-1;
  position: absolute;
  top: 50%;
}
.annexus-post-scroll .annexus-post:nth-child(2) {
  animation-name: anim-2;
}
.annexus-post-scroll .annexus-post:nth-child(3) {
  animation-name: anim-3;
}
.annexus-post-scroll .annexus-post p {
  margin: 0;
  line-height: 1.2;
}
.annexus-post-scroll .annexus-post a {
  text-decoration: none;
}

@keyframes anim-1 {
  0%, 8.3% {
    transform: translateY(-40%);
    opacity: 0;
    z-index: -1;
  }
  8.3%, 25% {
    transform: translateY(-50%);
    opacity: 1;
    z-index: 1000;
  }
  33.33%, 100% {
    transform: translateY(-60%);
    opacity: 0;
    z-index: -1;
  }
}
@keyframes anim-2 {
  0%, 33.33% {
    transform: translateY(-40%);
    opacity: 0;
    z-index: -1;
  }
  41.63%, 58.29% {
    transform: translateY(-50%);
    opacity: 1;
    z-index: 1000;
  }
  66.66%, 100% {
    transform: translateY(-60%);
    opacity: 0;
    z-index: -1;
  }
}
@keyframes anim-3 {
  0%, 66.66% {
    transform: translateY(-40%);
    opacity: 0;
    z-index: -1;
  }
  74.96%, 91.62% {
    transform: translateY(-50%);
    opacity: 1;
    z-index: 1000;
  }
  100% {
    transform: translateY(-60%);
    opacity: 0;
    z-index: -1;
  }
}
/*=====================================
=           On Demand                 =
=====================================*/
.annexus_on_demand {
  margin: 0;
}
.annexus_on_demand li {
  list-style: none;
  margin-bottom: 40px;
  box-shadow: 0.5px 1px 1px hsla(0, 0%, 0%, 0.05), 1px 2px 2px hsla(0, 0%, 0%, 0.05), 2px 4px 4px hsla(0, 0%, 0%, 0.05), 4px 8px 16px hsla(0, 0%, 0%, 0.05);
  border-radius: 30px;
  overflow: hidden;
}
.annexus_on_demand li .featured-img {
  position: relative;
}
.annexus_on_demand li .featured-img img {
  width: 100%;
  height: auto;
}
.annexus_on_demand li .featured-img:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  content: "\f522";
  font-family: dashicons;
  font-size: 100px;
  color: #fff;
  opacity: 0.8;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}
.annexus_on_demand li .category {
  display: inline-block;
  border: 1px solid;
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 14px;
  margin: 0 0 20px 0;
  color: #777;
}
.annexus_on_demand li .logo-container {
  height: 50px;
}
.annexus_on_demand li .logo {
  margin: 20px auto 0 auto;
  display: block;
}
.annexus_on_demand li .logo.adparo-logo {
  max-width: 207px;
}
.annexus_on_demand li .logo.assistpoint-logo {
  width: 239px;
}
.annexus_on_demand li h3 {
  margin-top: 0;
}
.annexus_on_demand li .text {
  padding: 20px;
}
.annexus_on_demand li .button {
  font-size: 0.9em;
  padding: 12px 18px;
}

@keyframes slide-in-down {
  0% {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*=====================================
=            Media Queries            =
=====================================*/
/*----------  768  ----------*/
@media screen and (min-width: 960px) {
  .annexus_on_demand {
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 20px;
    row-gap: 15px;
  }
  .annexus_on_demand li {
    margin-bottom: 0;
  }
  .annexus_on_demand li .featured-img {
    height: 275px;
    overflow: hidden;
  }
}
.slider-wrapper {
  position: relative;
  overflow: hidden;
  background-color: white;
}

.slides-container {
  width: 100%;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.slides-container::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.slide {
  width: 100%;
  height: 100%;
  flex: 1 0 100%;
  background-color: white;
  padding: 40px;
  margin: 0;
}
.slide .text,
.slide .image {
  width: 100%;
}
.slide .image img {
  max-width: 100%;
  height: auto;
}

.slide-arrow {
  position: absolute;
  display: flex;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 4rem;
  background-color: white;
  color: var(--wp--preset--color--primary);
  border: none;
  width: 2rem;
  font-size: 3rem;
  padding: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 100ms;
}

.slide-arrow:hover,
.slide-arrow:focus {
  opacity: 1;
}

#slide-arrow-prev {
  left: 0;
  padding-left: 0.25rem;
  border-radius: 0 2rem 2rem 0;
}

#slide-arrow-next {
  right: 0;
  padding-left: 0.75rem;
  border-radius: 2rem 0 0 2rem;
}

@media (min-width: 780px) {
  .slide {
    display: flex;
  }
  .slide .text,
  .slide .image {
    width: 50%;
  }
  .slide .text {
    padding-right: 40px;
  }
}
.annexus-leadership {
  text-align: center;
}
.annexus-leadership .team-member {
  margin-bottom: 1.5rem;
}
.annexus-leadership .team-member img {
  max-width: 100%;
  height: auto;
}
.annexus-leadership .team-member h3 {
  margin: 0;
}
.annexus-leadership .team-member .contact-info a {
  text-decoration: none;
  border: none;
}
.annexus-leadership .team-member p {
  margin-bottom: 10px;
  line-height: var(--wp--custom--line-height--heading);
}
.annexus-leadership .team-member .title .Adparo,
.annexus-leadership .team-member .title .AssistPoint,
.annexus-leadership .team-member .title .APConnect {
  font-weight: normal;
}
.annexus-leadership .team-member .bio {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  visibility: hidden;
  border: 0;
  overflow: scroll;
}
.annexus-leadership .team-member .bio .content {
  max-width: var(--wp--style--global--wide-size);
  background-color: white;
  opacity: 1;
  padding: 40px;
  text-align: left;
  position: relative;
}
.annexus-leadership .team-member .bio .content .headshot p {
  margin-bottom: 10px;
}
.annexus-leadership .team-member .bio .content .close {
  text-decoration: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-items: center;
  color: var(--wp--preset--color--primary);
}
.annexus-leadership .team-member .bio .content .close .dashicons-no-alt {
  text-align: center;
  color: var(--wp--preset--color--primary);
  margin: 0 auto;
  font-size: 40px;
}

.admin-bar .bio {
  top: 32px;
}

@media (min-width: 800px) {
  .annexus-leadership {
    display: grid;
    grid-template-columns: repeat(4, 25%);
    gap: 1rem;
  }
  .annexus-leadership .team-member {
    margin-bottom: 0;
  }
  .annexus-leadership .team-member .bio .content {
    padding-top: 60px;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 1.5rem;
  }
}
.annexus-event {
  padding: 2em 0;
  border-top: 1px solid var(--wp--preset--color--base-light);
}
.annexus-event:first-of-type, .annexus-event:only-child {
  border: 0;
}
.annexus-event .annexus-event-content:not(:empty) {
  padding-bottom: 30px;
}
.annexus-event .annexus-event-address + .annexus-event-desc:not(:empty) {
  padding-top: 30px;
}
.annexus-event .annexus-event-header {
  position: relative;
}
.annexus-event .annexus-event-header h2,
.annexus-event .annexus-event-header h3 {
  margin: 0;
  width: 95%;
  line-height: var(--wp--custom--line-height--heading);
}
.annexus-event .annexus-event-header .dashicons {
  position: absolute;
  right: 0;
  top: 0;
}
.annexus-event .annexus-event-header .dashicons.open {
  transform: rotate(0.25turn);
}
.annexus-event .annexus-event-header:hover {
  cursor: pointer;
}
.annexus-event .annexus-event-content {
  display: none;
  padding-top: 30px;
}
.annexus-event .annexus-event-content ul {
  margin-bottom: 30px;
}
.annexus-event .annexus-event-content.active {
  display: block;
}
.annexus-event .annexus-links {
  margin-top: 15px;
  text-align: left;
}
.annexus-event.on-demand .annexus-event-date-loc {
  display: none;
}

h2 + .annexus-event {
  border-top: 0;
}

.annexus-tab-nav {
  display: grid;
  grid-auto-flow: column;
  margin: 0 !important;
  padding: 0 !important;
}
.annexus-tab-nav li {
  list-style-type: none !important;
  border-bottom: 2px solid var(--wp--preset--color--base-light);
  text-align: center;
  padding-bottom: 10px;
  font-weight: bold;
  margin-bottom: -2px;
}
.annexus-tab-nav li.active, .annexus-tab-nav li:hover {
  color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary);
  cursor: pointer;
}

/*=====================================
  =           Feed             =
  =====================================*/
.annexus-events-feed .annexus-event h2,
.annexus-events-feed .annexus-event h3 {
  cursor: default;
}
.annexus-events-feed .annexus-event .annexus-event-header {
  cursor: default;
}
.annexus-events-feed .annexus-event .annexus-event-content {
  display: block;
}

/*=====================================
  =           Cards                =
  =====================================*/
.annexus-events-cards .annexus-event-card {
  list-style: none;
  border-radius: 30px;
  box-shadow: 0.5px 1px 1px hsla(0, 0%, 0%, 0.03), 1px 2px 2px hsla(0, 0%, 0%, 0.03), 2px 4px 4px hsla(0, 0%, 0%, 0.03), 4px 8px 16px hsla(0, 0%, 0%, 0.03);
  overflow: hidden;
}
.annexus-events-cards .annexus-event-card .annexus-event-card-header {
  padding: 10px 30px 30px 30px;
}
.annexus-events-cards .annexus-event-card .annexus-event-card-header h3 {
  margin: 0;
  line-height: var(--wp--custom--line-height--heading);
  padding: 0;
}
.annexus-events-cards .annexus-event-card .annexus-event-card-content {
  padding: 0 30px 30px 30px;
}
.annexus-events-cards .annexus-event-card img {
  max-width: 100%;
  height: auto;
  margin: 0;
}
.annexus-events-cards .annexus-event-card a {
  border: 0;
  text-decoration: none;
}
.annexus-events-cards .annexus-event-card ul {
  list-style-type: disc;
  margin-bottom: 30px;
}
.annexus-events-cards .annexus-event-card .wp-block-button {
  margin-top: 30px;
}

/*=====================================
  =           On Demand                 =
  =====================================*/
.site-inner .annexus_on_demand {
  margin: 0;
}
.site-inner .annexus_on_demand li {
  list-style: none;
  margin-bottom: 40px;
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
    0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}
.site-inner .annexus_on_demand li .featured-img {
  position: relative;
}
.site-inner .annexus_on_demand li .featured-img img {
  width: 100%;
}
.site-inner .annexus_on_demand li .featured-img:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  content: "\f01d";
  font-family: FontAwesome;
  font-size: 100px;
  color: #fff;
  opacity: 0.8;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}
.site-inner .annexus_on_demand li .category {
  display: inline-block;
  border: 1px solid;
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 14px;
  margin: 0 0 20px 0;
  color: #777;
}
.site-inner .annexus_on_demand li .logo-container {
  height: 50px;
}
.site-inner .annexus_on_demand li .logo {
  margin: 20px auto 0 auto;
  display: block;
}
.site-inner .annexus_on_demand li .logo.adparo-logo {
  max-width: 207px;
}
.site-inner .annexus_on_demand li .logo.assistpoint-logo {
  width: 239px;
}
.site-inner .annexus_on_demand li h3 {
  margin-top: 0;
}
.site-inner .annexus_on_demand li .text {
  padding: 20px;
}
.site-inner .annexus_on_demand li .button {
  font-size: 0.9em;
  padding: 12px 18px;
}

@keyframes slide-in-down {
  0% {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.annexus-event-summary {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 90px auto;
  line-height: var(--wp--custom--line-height--heading);
}
.annexus-event-summary .annexus-events-summary-date {
  display: inline-block;
  padding: 8px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-right: 20px;
  height: 65px;
  line-height: 1.2;
  text-transform: uppercase;
}
.annexus-event-summary .annexus-events-summary-date .day,
.annexus-event-summary .annexus-events-summary-date .month {
  display: block;
  text-align: center;
}
.annexus-event-summary h5,
.annexus-event-summary h4 {
  padding: 0;
  margin: 0 0 8px 0;
}

/*=====================================
  =            Media Queries            =
  =====================================*/
/*----------  768  ----------*/
@media screen and (min-width: 960px) {
  .site-inner .annexus_on_demand {
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 20px;
    row-gap: 15px;
  }
  .site-inner .annexus_on_demand li {
    margin-bottom: 0;
  }
  .site-inner .annexus_on_demand li .featured-img {
    height: 275px;
    overflow: hidden;
  }
  .annexus-events-summary {
    display: grid;
    grid-template-columns: repeat(4, 25%);
    gap: 30px;
  }
  .annexus-events-summary .annexus-events-summary {
    margin-bottom: 0;
  }
}
.annexus-prev-next-links {
  display: flex;
  justify-content: space-between;
}
