/* Reset */

html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}


img {
  max-width: 100%;
  height: auto;
}

/* Custom Properties (variables)  */
:root {
  --primary-color: #C0311A;
  --secondary-color: #FBB034;
  --secondary-color-light: #8cb4c0;
  --tertiary-color: #1A3F5D;
  --font-color: #231F20;
  --background-color: #E6E7E8;
  --text-black: #666666;
}

.header {
  --header-links-height: 56px;
  border:0px solid transparent;
}

.footer {
  --footer-top-height: 159px;
}

/* Type */

body {
  position: relative;
  font-family: Arial, sans-serif;
}

.bold {
  font-weight: 700;
}

.underline {
  text-decoration: underline;
}

.hidden{
  opacity: 0 !important;
}

/* Colors */
.red{
  color:#C0311A;
}

.purple {
  color: #8A1A9C;
}

/* Main */

.main{
  margin-bottom:12px;
}

.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container--no-padding {
  padding: 0;
}

.flexed{
  display:flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.flexed-left{
  display:flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}

.flexed-center{
  display:flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header {
  background-color: #fff;
  height: auto;
  text-align: center;
  position: sticky;
  width: 100%;
  padding: 30px 0px 0px;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header__top-links{
  border-top:8px solid #C0311A;
  background-color: #E5E5E5;
}

.header__top-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 27px;
  border-bottom:1px solid #BABABA;
  text-decoration: none;
  font-size: 16px;
  color:#666666;
}

.header__bottom {
  height: 8px;
  width: 100%;
  background-color:#C0311A;
  position: absolute;
  bottom: 0;
  display:none;
}

.header__logo_tagline{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.header__logo {
  width: unset;
  height: unset;
  order:1;
  max-width: 172px;
}

.header__tagline{
  max-width: 600px;
  padding:26px 15px 20px;
  order:2;
}

.header__tagline h1{
  font-family: Arial, Helvetica, sans-serif;
  font-size:16px;
  line-height:17px;
  font-weight:700;
  text-align: center;
  color:#666666;
}

.header__repcast {
  order:3;
  padding-bottom: 8px;
}

.header__top-links{
  display: flex;
  flex-direction: column;
  width: 100%;
  order:4;
}

.header__links {
  width: 100%;
}

.header__link {
  font-family: Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  display: block;
}

.header__link--first {
  margin-bottom: 1px;
}

.header__link a,
.header__link span {
  color: #fff;
  text-decoration: none;
  padding: 7px 0;
  background-color: var(--secondary-color);
  width: 100%;
  display: block;
}

.header__link a:active,
.header__link span:active {
  background-color: #8a1a9c;
}

.header__desktop-link {
  color: #61b4e4;
  width: 90px;
  margin: 52px 18px 0 0;
  font-weight: 400;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  display: none;
  cursor: pointer;
}

.header__desktop-link a,
.header__desktop-link span {
  color: #61b4e4;
  text-decoration: none;
}

.header__desktop-link:hover {
  text-decoration: underline;
}

.sidebar__icon {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 2px solid white;
  overflow: hidden;
  margin: 0 auto;
  /*display: none;*/
}

.sidebar__request {
  width: 100%;
  display: flex;
  flex-flow: row-reverse nowrap;
  justify-content: space-evenly;
  align-items: center;
}

.sidebar__calendar{
  width: 100%;
  max-width: 100px;
  margin-bottom: 0px;
}

.sidebar__btn {
  width: 100%;
  max-width: 209px;
  height: auto;
  cursor: pointer;
}


IMG#userPhoto{
  width:unset;
  height:unset;
}

.sidebar {
  display: flex;
  flex-direction: column;
  width: calc(100% - 12px);
  max-width:375px;
  background: #E5E5E5;
  color: #323335;
  text-align: center;
  border-radius: 8px;
  margin: 0 6px 12px;
  justify-content: center;
  padding: 15px 10px;
}

.mobile-only.sidebar {
  display: flex;
  flex-flow: column nowrap;
}

.sidebar__info-wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.sidebar__information{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-only .sidebar__icon {
  margin: 0;
  margin-right: 50px;
}

.mobile-only .sidebar__request {
  max-width: 319px;
  height: 78px;
  width: 100%;
  margin: 14px auto;
}

.mobile__top-links a {
  background: rgb(85, 53, 120);
  background: linear-gradient(90deg, rgba(85, 53, 120, 1) 0%, rgba(142, 74, 113, 1) 100%);
  display: block;
  width: 100dvw;
  color: white;
  text-align: center;
  height: 30px;
  font-weight: bold;
  font-size: 14px;
  border-top: 1px solid white;
  padding: 6px 0 0 0;
  text-decoration: none;
}

.sidebar__info {
  flex: 1;
  -ms-word-break: break-all;
  word-break: break-all;

  /* Non standard for webkit */
  word-break: break-word;

  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.sidebar__info p#userName {
  font-size:16px;
  font-weight: 700;
}

.sidebar__info p {
  font-size: 14px;
  line-height: 20px;
}

.sidebar__icon-image {
  height: 100%;
}

.videolinks {
  display: flex;
  justify-content: flex-start;
  padding-top: 20px;
  margin: 0 0 15px 0;
}

.videolinks__link {
  width: 208px;
  height: 117px;
  margin: 0;
}

.video {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  text-align: center;
}

.video__player {
  width: 100%;
  /*max-width: 100dvw;*/
  margin: 100px auto 0;
  height: 57dvw;
}

.video-player {
  max-width: 100%;
  height: 57dvw;
}

.video-player IFRAME {
  width: 100%;
  height: 100%;
  top: -1px;
}


#pdfControls {
  display: none;
  font-size: 13px;
  padding-bottom: 10px;
}

#docView {
  display: none;
  width: calc(100% - 297px);
  height: auto;
  aspect-ratio: 16/9;
}

#docFrame {
  width: 100%;
  height: 100%;
}


.touts {
  font-family: Arial, Helvetica, sans-serif;
  display: block;
}

.tout {
  position: relative;
  width: 345px;
  margin: 0;
  margin-bottom: 20px;
  display: flex;
  flex-flow: column;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
}

.tout:last-child{
  margin-bottom:0px;
}

.tout-text {
  display:flex;
  align-items: center;
  justify-content: center;
  width:100%;
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(205,205,205,1) 100%);
  text-align: center;
  padding: 0 15px;
  height: 64px;
}

.tout-text p:first-of-type {
  margin-top: 10px;
}

.tout-text h3{
  font-family: Arial, Helvetica, sans-serif;
  font-size:20px;
  line-height:1em;
  font-weight:700;
  color:#666666;
}

.tout-heading {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
}

.tout-button {
  display:flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  padding: 0px 50px;
  color: #fff;
  width: 100%;
  height:84px;
  text-decoration: none;
}

.tout-button.red{
  background: rgb(161,55,37);
  background: linear-gradient(270deg, rgba(161,55,37,1) 0%, rgba(140,43,37,1) 100%);
}

.tout-button.blue{
  background: rgb(115,134,184);
  background: linear-gradient(270deg, rgba(115,134,184,1) 0%, rgba(81,102,159,1) 100%);
}

.tout-button IMG{
  margin-left: 15px;
}

.references.container {
  width: auto;
  margin: 25px 20px 20px;
}

.references p {
  color: #4a4f54;
  font-size: 11px;
  line-height: 13px;
}

.bottom-links {
  display: block;
  font-size: 14px;

  text-align: center;

}

.bottom-links a {
  color: #fff;
  display: block;
}

.bottom-links a:not(:first-child) {
  margin-top: 10px;
}

.footer {
  padding-top: 36px;
  position: relative;
  color: var(--text-black);
  background-color: #fff;
  z-index: 2;
  transform: translate3d(0,0,0);
}

.container.footer-top{
  margin-bottom: 48px;
}

.footer_logos{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  width: 310px;
  margin-bottom: 25px;
}

.footer_content{
  flex:1;
}

.footer p {
  font-family: Arial, Helvetica, sans-serif;
  font-size:16px;
  line-height:16px;
  margin-bottom: 16px;
  color: #666666;
}

.footer p:last-child{
  margin-bottom:0px;
}

.footer_bottom_navs {
  display:flex;
  align-items: center;
  justify-content: center;
  width:100%;
  padding: 22px 0px;
  background-color: #E5E5E5;
}

.footer_bottom_navs a{
  font-size:16px;
  line-height: 1em;
  margin-bottom:8px;
  color:#666666;
  text-decoration: none;
}

.footer__container {
  position: relative;

}

.footer__bottom {
  margin-top: -20px;
}

.footer__links a {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: var(--text-black);
  margin-bottom: 20px;
}


.footer__text {
  color: var(--text-black);
  max-width: 100dvw;
  display: block;
  margin-top: 35px;
  font-size: 14px;
  line-height: 17px;
  text-align: left;
  margin: 57px auto 0;
  padding-top: 25px;
}

.footer__logo {
  height: 70px;
  width: 70px;
  margin-right: 30px;
}

.footer__flex {
  display: flex;
  margin-top: 18px;
}

.expandISI_BTN{
  position:absolute;
  top: 0px;
  right: 15px;
  width: 37px;
  height:37px;
  cursor: pointer;
}

.expandISI_BTN IMG{
  transform: rotate(180deg);
}

section.isi {
  position: fixed;
  bottom: 0px;
  font-size: 14px;
  height: 172px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 12px 0px 28px;
  background-color: white;
  border-top:1px solid #BABABA;
  color: var(--text-black);
  z-index: 10000;
  transform: translate3d(0,0,0) /*this is to fix a position sticky z-index issue on safari*/
}

section.isi.inline {
  position: relative;
  height: auto;
  background-color:#ffff;
  border-top:0px solid transparent;
  z-index: 2;
}

section.isi.inline.no-collapse .expandISI_BTN{
  display: none;
}

section.isi.inline::before{
  position:absolute;
  top:0px;
  left:0px;
  width:100%;
  height:30px;
  background: linear-gradient(0deg, rgba(255,254,254,1) 0%, rgba(205,205,205,1) 100%);
  background-repeat: no-repeat;
  background-size:100% 30px;
  content:'';
  z-index: 1;
}

section.isi.inline .container{
  z-index: 2;
}

section.isi.inline .expandISI_BTN IMG{
  transform: rotate(0deg);
}

section.isi h2{
  font-family: Arial, Helvetica, sans-serif;
  font-size:22px;
  line-height:1em;
  font-weight: 700;
  margin-bottom: 12px;
  padding-right: 40px;
  color:#C0311A;
}

section.isi h3{
  font-family: Arial, Helvetica, sans-serif;
  font-size:18px;
  line-height:20px;
  font-weight: 700;
  margin-bottom:8px;
  color:#C0311A;
}

section.isi p,
section.isi li {
  font-family: Arial, Helvetica, sans-serif;
  font-size:16px;
  line-height:20px;
  color:#666666;
  margin-bottom: 12px;
}

section.isi p:last-child {
  margin-bottom: 0;
}

section.isi .indications{
  padding:18px 0px 28px;
}

section.isi .indications h2,
section.isi .indications p,
section.isi .indications li{
  margin-bottom:5px;
}

section.isi .indications li:last-child{
  margin-bottom:0px;
}

.isi a {
  text-decoration: underline;
  color: #506BAE;
}

.isi ul {
  list-style: none;
  margin-left: 11px;
}

.isi ul li::before{
  width:10px;
  font-size:20px;
  vertical-align: middle;
  color: #C0311A;
  margin-left:-11px;
}


.desktop-only {
  display: none;
}

.mobile-only {
  display: block;
}

.mobile-only-inline {
  display: inline !important;
}


/* VideoJS */

.video-js .vjs-big-play-button {
  height: 120px;
  width: 120px;
  border-radius: 100px;
  background-color: transparent;
  border: none;
  background-image: url(src/img/play-button.svg);
  background-size: contain;
  margin-top: -60px;
  margin-left: -60px;
}

.video-js .vjs-big-play-button :hover {
  background-color: transparent;
  opacity: 0.7;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "";
}

.timepicker-picker{
  width:100%;
}

/*--Modal--*/

.modal {
  background-color: rgba(52, 52, 52, .65);
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  z-index: 99999;
  top: 0;
  padding:20px;
  overflow: auto;
  display: none;
}

.modal__container {
  max-width: 335px;
  max-height: 624px;
  width: 100%;
  height: 100%;
  border-top-right-radius: 38px;
  border-bottom-left-radius: 38px;
  background-color: #F5F5F5;
  border: 5px solid var(--primary-color);
  margin: 0px auto;
  padding: 0px;
  overflow: auto;
  scrollbar-width: none;
}

.modal__container.confirmed{
  max-height: 396px;
}

.modal__close{
  position: relative;
  top: unset;
  right: unset;
  margin: 10px 17px 8px auto;
  height: 29px;
  width: 74px;
  color: #666666;
  border:1px solid #E5E5E5;
  border-radius: 15px;
}

.modal__alert {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background: var(--primary-color);
  color: white;
  padding: 20px 15px;
  font-size:18px;
  font-weight: 700;
  text-align: center;
  width: calc(100% - 40px);
  height:56px;
  margin-bottom: 6px;
  position: relative;

  -webkit-box-shadow: 3px 5px 28px -12px rgba(0,0,0,0.66);
  -moz-box-shadow: 3px 5px 28px -12px rgba(0,0,0,0.66);
  box-shadow: 3px 5px 28px -12px rgba(0,0,0,0.66);
}

/* .modal__alert::after {
  --shadow-height: 10px;
  content: '';
  position: absolute;
  top: 100%;
  right: -20px;
  width: 289px;
  height: 43px;
  background-image: url(/src/img/shadow.svg);
  background-position: 100% 100%;
  background-repeat: no-repeat;
} */

.modal__disclaimer p {
  font-size: 11px;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 14px;
  text-align: center;
}

.modal__disclaimer {
  display: none;
}

.modal__calendar {
  background-color: white;
  height: 356px;
  padding: 11px 20px 16px 18px;
  position: relative;
}

.modal__form {
  padding: 12px 26px 16px 22px;
}

.modal__content.confirmed .modal__form {
  padding: 36px 0px 45px 24px;
}

.modal__input {
  width: 100%;
  height: 38px;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 20px;
  border: 1px solid rgb(204, 219, 225);
  background-color: white;
  background-image: url('src/img/calendar-arrow-down-red.svg');
  background-size: auto 12px;
  background-position: calc(100% - 20px) center;
  color: var(--text-black);
  font-family: inherit;
}

.bootstrap-datetimepicker-widget thead th .fa-chevron-left:before, .bootstrap-datetimepicker-widget thead th .fa-chevron-right:before{
  content: "";
  background-image: url('src/img/calendar-arrow.svg');
}

.bootstrap-datetimepicker-widget thead th span, 
.bootstrap-datetimepicker-widget thead th span{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bootstrap-datetimepicker-widget thead th .fa-chevron-left:before{
  transform:rotate(180deg);
}

.modal__form h4 {
  font-size: 18px;
  color: #666666;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}

.modal__button {
  width: 128px;
  height: 36px;
  border-radius: 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 700;
  padding: 5px 32px;
  margin: 0px 0px 0px auto;
  font-family: inherit;
}

.modal__button IMG{
  width: 6px;
  margin-left:10px;
}

@keyframes spinning {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

i.loading-spinner {
  font-size: 24px;
  animation-name: spinning;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  /* linear | ease | ease-in | ease-out | ease-in-out */
  animation-timing-function: linear;
}

.modal .notified {
  height: 182px;
  margin-bottom: 0px;
}

.modal__text {
  font-weight: 700;
  font-size: 11px;
  text-align: center;
  color: var(--primary-color);
  display: none;
}

.row {
  display: flex;
}

.timepicker {
  margin-left: 10px;
}


.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #dc1277;
}

.bootstrap-datetimepicker-widget .timepicker .timepicker-picker a.btn {
  color: #dc1277;
}

.bootstrap-datetimepicker-widget table th.picker-switch{
  font-size: 22px;
}

.bootstrap-datetimepicker-widget .datepicker{
  align-items: flex-start;
}

.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]{
  border-radius: 0px;
  font-size: 18px;
  font-weight: 500;
}

.bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second{
  font-size:22px;
  font-weight:500;
}

.modal__calendar .btn-primary {
  background-color: #dc1277;
  color: white;
  border: none;
}

.text-pink {
  color: #dc0077 !important;
}

.text-teal {
  color: #004f6f;
}

.borders--side {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

.fa.fa-arrow-up:after {}

.fa.fa-arrow-down:after {}

.datepicker th {
  color: #666666;
}

th.next span,
th.prev span {
  color: var(--primary-color) !important;
}

.table-condensed a span {
  color: var(--secondary-color);
}

.bootstrap-datetimepicker-widget table td.active {
  background-color: var(--secondary-color) !important;
}

.table-condensed .btn-primary {
  background-color: var(--secondary-color) !important;
}

#viewer {
  display: block;
}

#staticVideo {
  display: none;
}

.video__static {
  width: 100%;
}

#videoPH1 {
  display: none;
}

#videoPH2 {
  display: block;
}

.datepicker-days {
  width: 100%;
}

.close-btn {
  display: none;
}

.header__for-pros {
  position: absolute;
  top: 8px;
  left: calc(50dvw - 93px);
  display: block;
  text-decoration: none;
  margin-left: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
}

.header__repcast--mobile {
  display: block;
  width: 95px;
  margin-top: 31px;
}

.footer__container .footer__small-text {
  font-size: 14px;
  margin: 31px 0 40px;
}

a.blue-link {
  color: var(--secondary-color);
  text-decoration: none;
}

.bootstrap-datetimepicker-widget .datepicker{
  margin: 0px;
}

.bootstrap-datetimepicker-widget table th.dow,
.bootstrap-datetimepicker-widget tbody tr td.day{
  font-size: 20px;
  height: 31px;
  color:#666666;
}

.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .separator,
.bootstrap-datetimepicker-widget .timepicker-minute{
  color: #666666;
}

.timepicker-hours table.table-condensed tr td, .timepicker-minutes table.table-condensed tr td{
  height:28px;
}

.bootstrap-datetimepicker-widget .timepicker{
  max-width: 190px;
  margin: 8px auto 0px;
  justify-content: center;
}

@media only screen and (max-width: 1023px) {
  .header .container{
    padding:0px;
  }

  .main__container.container{
    padding:0px;
  }

  .desktopOnly{
    display:none;
  }

  .bootstrap-datetimepicker-widget thead{
    padding-bottom:2px;
  }
}

/* Desktop */
@media only screen and (min-width: 1024px) {

  .mobileOnly{
    display:none;
  }

  /* Variables */
  .header {
    --header-links-height: 40px;
    padding:0px;
  }

  /* Styles */
  .mobile-only,
  .mobile-only-inline {
    display: none !important;
  }

  .desktop-only {
    display: inline-block;
  }

  .container {
    margin: 0 auto;
    text-align: left;
    max-width: 1280px;
    padding:0px 20px;
  }

  .container.footer-top{
    margin-bottom: 56px;
    padding-left: 68px;
  }

  .modal__container {
    max-width: 650px;
    max-height: 771px;
  }

  .modal__container.confirmed{
    max-height: 453px;
  }

  .modal__close{
    margin: 26px 56px 21px auto;
    height: 34px;
    width: 103px;
  }

  .modal__alert {
    width: calc(100% - 88px);
    font-size:35px;
    height: 104px;
    margin-bottom: 0px;
  }

  .modal__calendar {
    height: 334px;
    padding: 38px 48px 40px 58px;
  }

  .modal__form {
    padding: 35px 72px 48px 65px;
  }

  .modal__form h4 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .modal__input {
    height: 50px;
    font-size: 22px;
    margin-bottom: 33px;
    background-position: calc(100% - 62px) center;
  }

  .modal__button{
    width:168px;
    height:38px;
    font-size: 20px;
  }

  .modal__button IMG{
    width: 8px;
  }

  .modal .notified {
    height: 193px;
  }

  .flexed-left,
  .flexed-center{
    flex-direction: row;
  }

  .footer_logos{
    height: 96px;
    margin-right: 54px;
    margin-bottom:0px;
  }

  .footer p {
    font-size:16px;
    line-height:20px;
    margin-bottom: 21px;
  }

  .tout-text h3{
    font-size:17px;
  }

  .tout-button{
    font-size:20px;
    padding: 0px 20px;
  }

  .flexed{
    flex-direction: row;
  }

  .header {
    text-align: left;
    padding-bottom: 0;
    height: 125px;
  }

  .header__logo_tagline{
    flex-flow: row nowrap;
    padding-top: 15px;
  }

  .header__logo {
    max-width:148px;
    width: 100%;
    height: unset;
    order:unset;
  }

  .header__tagline{
    order:unset;
    max-width: 600px;
    padding: 0 0 0 30px;
    box-sizing: content-box;
  }

  .header__link {
    cursor: pointer;
  }

  .header__bottom {
    display:block;
  }

  .header__top-links {
    display:unset;
    width:unset;
    position: absolute;
    top: 12px;
    right: 20px;
    display: block;
    color: var(--primary-color);
    order:unset;
    border-top:0px solid transparent;
    background-color: unset;
  }

  .header__for-pros {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    text-decoration: none;
    margin-left: 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
  }

  .header__repcast--mobile {
    display: none;
  }

  .header__repcast {
    width: unset;
    min-width: 243px;
    padding-top: 22px;
    padding-bottom:0px;
    order:unset;
  }

  .header__repcast--mobile {
    display: none !important;
  }

  .header__desktop-link {
    display: block;
  }

  .header__top-links a {
    display: unset;
    border-bottom: unset;
    text-decoration: none;
    font-size: 16px;
    color:#666666;
    margin-left: 24px;
  }

  .touts {
    padding: 24px 0 0px;
    justify-content: space-between;
    display: flex;
    flex-flow: row nowrap;
    font-family: Arial, Helvetica, sans-serif;
  }

  .tout {
    padding:0px;
    width: calc(33% - 6px);
    margin:0px;
  }

  .tout-text{
    width:100%;
    height:55px;
    padding: 0 25px;
  }

  .footer {
    background-color: #ffffff;
  }

  .footer_bottom_navs{
    padding:unset;
    height: 60px;
  }

  .footer_bottom_navs a{
    margin: 0px 32px;
  }

  .videolinks {
    margin-top: 15px;
  }

  .video {
    height: auto;
    flex-direction: row;
  }

  .video__player {
    width: calc(100% - 430px);
    max-width: 1024px;
    height: 435px;
    margin: 0 auto;
  }

  .bootstrap-datetimepicker-widget table th.dow,
  .bootstrap-datetimepicker-widget tbody tr td.day{
    font-size:22px;
    height: 33px;
  }

  .bootstrap-datetimepicker-widget .timepicker{
    margin: 0px;
  }

  .expandISI_BTN{
    right: 20px;
  }

  section.isi {
    height:140px;
    padding: 32px 0px 0;
  }

  section.isi .indications{
    padding:10px 0px 28px;
  }

  section.isi h2{
    margin-bottom: 12px;
  }

  section.isi h3{
    margin-bottom:12px;
  }

  .references.container {
    margin: 0 auto 20px auto;
  }

  .footer {
    margin-top: 45px;
    padding-top: 45px;
  }

  .references p {
    color: #4a4f54;
    font-size: 11px;
    line-height: 13px;
  }

  .sidebar {
    flex-direction: column;
    width: 300px;
    background: #ecf2f3;
    padding: 24px 10px;
    text-align: center;
    margin: 0px;
    border-radius: 12px;
  }

  .sidebar__information{
    flex-direction: column;
  }

  .sidebar__info p#userName {
    font-size:18px;
  }

  .sidebar__info p {
    font-size: 16px;
    line-height: 22px;
  }

  .sidebar__icon {
    height: 114px;
    width: 114px;
    border-radius: 60px;
    border: 2px white solid;
    overflow: hidden;
    margin: 0 auto;
  }

  .sidebar__info {
    margin-top: 10px;
    margin-bottom: 32px;
  }

  .sidebar__request {
    margin: 10px auto 0;
    flex-flow: column nowrap;
    align-items: center;
  }

  .sidebar__calendar{
    width: 100%;
    max-width: 174px;
    margin-bottom: 5px;
  }

  .sidebar__btn {
    width: 100%;
    max-width: 209px;
  }

  .mobile-only.sidebar {
    display: none;
  }

  .tout__top-text {
    font-size: 16px;
    line-height: 18px;
    margin: 14px 0 21px;
  }

  a.tout__link {
    font-size: 16px;
    margin-left: -16px;
  }

  .tout__top-text.tout--offset {
    margin: 3px 0 12px;
  }

  .footer {
    position: relative;
    margin-top: 30px;
    padding-top: 0;
  }

  .footer__container {
    text-align: center;
    padding-top: 20px;
    text-align: center;
  }

  .footer__links a {
    text-decoration: none;
    padding: 10px 20px;
    border-right: 1px solid black;
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-black);
  }

  .footer__links a:last-of-type {
    border: none;
  }

  .footer__container p {
    font-size: 20px;
    font-weight: bold;
  }

  a.blue-link {
    color: var(--secondary-color);
    text-decoration: none;
  }

  .footer .footer__color-text {
    color: var(--primary-color);
    margin-bottom: 8px;
  }

  .footer-bottom {
    height: calc(100% - var(--footer-top-height));
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer__bottom {
    margin-top: 0;
  }

  .footer__container .footer__small-text {
    font-size: 14px;
    margin: 31px 0 59px;
  }


  .footer-bottom .footer__container {

    align-items: center;
  }

  .bottom-links {
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-flow: row nowrap;
    grid-column: 1 / 1;
    grid-row: 1 / 1;
    text-align: center;
    font-size: 14px;
    margin-bottom: 16px;
    margin-top: 22px;
  }

  .bottom-links a:not(:first-child) {
    margin-left: 10px;
    margin-top: 0;
  }

  .footer__text {
    position: relative;
    max-width: 275px;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .mobile__top-links {
    display: none;
  }

  .video-js .vjs-big-play-button {
    height: 200px;
    width: 200px;
    margin-top: -100px;
    margin-left: -100px;
  }


  .video-player {
    width: calc(100% - 336px);
    min-height: 496px;
    height:unset;
  }

  .video-player IFRAME {
    width: 100%;
    height: 100%;
    min-height: 496px;
  }

  .open-btn {
    width: 45px;
    height: 45px;
  }

  section.isi {
    padding: 18px 0 0;
  }

  section.isi .container{
    padding-left: 68px;
  }

  .modal__content.confirmed .modal__alert {
    font-size: 35px;
  }
  
  .modal__content.confirmed .modal__form {
    padding: 30px 57px 26px 65px;
  }
}

@media only screen and (min-width: 1200px) {

  .tout-text h3{
    font-size:20px;
  }

  .tout-button{
    font-size:24px;
  }
}

ul.list--purple {
  list-style: none;
  /* Remove default bullets */
  margin-left: 15px;
}

ul.list--purple li::before {
  content: "\2022";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: var(--primary-color);
  /* Change the color */
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1em;
  /* Also needed for space (tweak if needed) */
  font-size: 16px;
}

.bootstrap-datetimepicker-widget table tr:first-child td span,
.bootstrap-datetimepicker-widget table tr:last-child td span {
  color: var(--secondary-color);
}

.table-condensed .fa.fa-arrow-up::before {
  color: var(--secondary-color);
}

a#isiLink {
  cursor: pointer;
}