
/*
==============================================
Structure
==============================================
*/

.body-bio .button {
	margin-left: 0;
	margin-right: 0;
}

.co-schedule .callout-item .callout-heading {
  font-weight: 600;
}
.co-schedule .callout-heading-wrapper .callout-heading:before {
  content: "\f073"; /* Plus icon f271 */
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 16px;
  margin-right: 5px;
  display: inline;
  position: relative;
}
 .co-schedule .callout-item, 
 .co-schedule .callouts-mobile-slider .callout-item {
  border: 1px solid var(--gray-medium);
  padding: 15px;
  border-radius: 5px;
  margin: 10px !important;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
 .co-schedule,
 .co-schedule .callouts-mobile-slider {
  padding: 20px 0;
  grid-template-columns: repeat(2, 1fr);
  background: transparent !important;
}
.co-schedule .callout-item .callout-heading-wrapper,
.co-schedule.callouts-mobile-slider .callout-item .callout-heading-wrapper {
  margin-bottom: 20px;
}
.co-schedule.callout-item .callout-cta-wrapper button, 
.co-schedule.callouts-mobile-slider .callout-item .callout-cta-wrapper button {
  line-height: 15px;
  padding: 11px 12px;
  display: inline-block;
}

.co-schedule .callout-item .callout-cta-wrapper, 
.co-schedule.callouts-mobile-slider .callout-item .callout-cta-wrapper {
  margin-bottom: 0px;
}
.co-schedule .callout-item .callout-copy-wrapper, 
.co-schedule.callouts-mobile-slider .callout-item .callout-copy-wrapper {
  color: var(--gray-dark) !important;
}
.co-schedule .callout-item:hover, 
.co-schedule .callouts-mobile-slider .callout-item:hover {
 border: 1px solid var(--dark);
 background: var(--dark);
}
.co-schedule .callout-item:hover .callout-copy-wrapper, 
.co-schedule .callouts-mobile-slider .callout-item:hover .callout-copy-wrapper {
  color: var(--white) !important;
}
.co-schedule .callout-item:hover .callout-heading, 
.co-schedule .callouts-mobile-slider .callout-item:hover .callout-heading {
  color: var(--white) !important;
}

/* Large devices (tablet landscape, 1024px and less) tablet-l */
@media only screen and (max-width: 1024px) {
  .co-schedule, .co-schedule.callouts-mobile-slider {
    grid-gap: 0;
  }
}

/* Medium devices (tablet portrait, 768px and less) tablet-p */
@media only screen and (max-width: 768px) {
  .co-schedule .callout-item, 
  .co-schedule .callouts-mobile-slider .callout-item {
    width: calc(50% - 20px);
  }
}

/* Extra small devices (most portrait phones, 480px and less) mobile-p */
@media only screen and (max-width: 480px) {
  .co-schedule .callout-item, .co-schedule .callouts-mobile-slider .callout-item {
    margin: 0 0 20px !important;
  }
  
}

/* Extra small landscape devices (most landscape phones, >=480px and <= 767 and landscape) mobile-l */
@media only screen and (min-width: 480px) and (max-width: 767px) and (orientation: landscape) {
  .co-schedule .callout-item, .co-schedule .callouts-mobile-slider .callout-item {
    margin: 0 0 20px !important;
  }
}