.backgroundmask {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 59vw;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.video-player-iframe-container {
    position:relative;
    display:block;
    min-width:100%;
    min-height: 75%;
    text-align:center;
    margin-bottom:2%;
    background: black;
}

#videoPlayerModal {
  height: 80vh !important;
  width: 90vw !important;
  max-width: 1200px !important;
  overflow: hidden;
  z-index: 101;
  position: absolute;
  background-color: white;
  top: 5vw;
  left: 50%;
  transform: translateX(-50%);
  border: 50px solid white;
}

#videoPlayerIframe {
    min-height: 54vh !important;
    width: 100% !important;
    margin-top: 1vw;
}

.hidden {
    display: none;
    opacity: 0;
}

.video-player {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-player video {
    width: 100%;
    min-width: 100%;
    /* margin: -44px 0px 44px -44px; */
}

.video-toolbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-column {
    width: 33%;
}

.video-button {
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    background: green;
    color: white;
    text-align: center;
}

.video-back-button {
    position: absolute;
    top: 10px;
    left: 10px;
}

/* Jquery UI */
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #000000 !important;
    background: #000000 !important;
}

.zoom-container {
    display: none;
    width: 100%;
    height: 100%;
}

.zoom-flex {
    width: 100%;
    height: 100%;
    background: #2E8CFB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.zoom-badge {
    position: absolute;
    background: red;
    color: #FFF;
    top: 217px;
    right: 294px;
    padding:5px 10px;
    border-radius:40px;
}

.zoom-img {
    width: 220px;
    cursor: pointer;
}

.zoom-participate-text {
    color: #FFF;
    font-weight: bold;
    margin-top: 5px;
}

.zoom-text {
    color: white;
    font-size: 20px;
    cursor: pointer;
}


/* User Account Dropdown */


.user-profile {
    min-width: 150px;
    text-align: right;
}

.user-profile-container {
    margin: auto;
    margin-right: 20px;
}

.subnav{
    display: none;
    position: absolute;
    background-color: #fff;
    border-radius: 5px;
    margin-top: 15px;
    -webkit-box-shadow: 0px 0px 23px -2px #707070;
    -moz-box-shadow: 0px 0px 23px -2px #707070;
    box-shadow: 0px 0px 23px -2px #707070;
}
.subnav ul {
    list-style-type: none;
    padding: 5px 30px;
}

.subnav-button {
    cursor: pointer;
    color: #000000;
    padding: 5px 0px;
}


.arrow {
    display: none;
    position: absolute;
    left: 75px;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    z-index: 1;
}

.profile-modal {
    width: 500px;
    color:#000000;
}

.profile-information {
    display: flex;
}

.profile-titles {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
}

.profile-title {
    margin-bottom: 5px;
}

.profile-values {
    display: flex;
    flex-direction: column;
}

.profile-value {
    font-weight: bold;
    margin-bottom: 5px;
}

.update-password-input-container {
    display: none;
    border: 1px solid #e0e0e0;
    padding: 18px;
}

.update-password-message {
    display: none;
    margin-top: 20px;
    font-weight: bold;
}


body {
    position: relative;
    background: #000000;
    margin: 0px;
    padding: 0px;
    height: 100%;
    color: #000000;
    font-family: Helvetica, sans-serif;
    overflow: hidden;
    overflow-y:auto;
}

.header {
    z-index: 99;
    position:fixed;
    width: 100%;
    height: 60px;
    background: rgb(220, 220, 220);
}

.button-green {
    display: inline-block;
    cursor: pointer;
    border:rgba(0, 0, 0, .6);
    color: #000000;
    background-color: #78bf26;
    padding:10px;
    font-weight: bold;
    margin-right: 20px;
    margin-top:20px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */  
}

.button-green2 {
    display: inline-block;
    cursor: pointer;
    border:rgba(0, 0, 0, .6);
    color: #ffffff;
    background-color: #1e8900;
    padding:10px;
    width: 500px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 20px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.main-menu {
    margin-left: 20px;
    display: flex;
    height: 100%;
    justify-content: left;
    align-items: center;
}

.menu-logo {
	margin-top: 15px;
    margin-right: 50px;
    max-height: 60px;
    cursor: pointer;
}

.menu-item {
  margin-right: 10px;
  cursor: pointer;
  text-decoration: underline;
  color: #155e99;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  border-radius: 3px;
}

.menu-highlight {
  margin-right: 30px;
  cursor: pointer;
  text-decoration: underline;
  background-color: #155e99;
  color: #ffffff;
}

.fullscreen {
    z-index: 1;
    position: absolute;
    width: 100%;
    top:50px; /*50px; */
    max-height: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}

.exterior {
    opacity: 0;
}

.exteriorlogin {
    opacity: 0;
}

.lobby {
    opacity: 0;
}

.exhibit-hall {
    opacity: 0;
}

.booth1 {
    opacity: 0;
}

.booth2 {
    opacity: 0;
}

.booth3 {
    opacity: 0;
}

.booth4 {
    opacity: 0;
}

.booth5 {
    opacity: 0;
}

.breakout {
    opacity: 0;
}

.fancybox-slide {
    padding: 100px;
}

.button-container {
    width: 100%;
    height: 100%;
}

.lobby-buttons {
    position: relative;
}

.lobby-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  cursor: pointer;
}

.lobby-button.left {
  justify-content: left;
  align-items: center;
  position: absolute;
  cursor: pointer;
}

.lobby-button.right {
  justify-content: right;
  align-items: center;
  position: absolute;
  cursor: pointer;
}

.lobby-auditorium-button {
  top:55.5%;
  left:27.76%;
  width:23.4%;
  height:3.7%;
}

.lobby-welcome-button {
  top:14.72%;
  left:56.77%;
  width:37.03%;
  height:37.31%;
}

.lobby-navigation-button {
  top: 43.8%;
  left: 27.76%;
  width: 23.4%;
  height: 3.7%;
}

/*.lobby-breakout-a-button {
    top: 54.9%;
    right: 7%;
    width: 15%;
    height: 3%;
    transform: rotate(-5deg);
}

.lobby-breakout-b-button {
    top: 57.8%;
    right: 7%;
    width: 15%;
    height: 3%;
    transform: rotate(-5deg);
}
*/

.lobby-exhibit-hall-button {
  top: 49.8%;
  left: 27.76%;
  width: 23.4%;
  height: 3.7%;
}
/*
.lobby-networking-lounge-button {
    top: 64%;
    right: 7%;
    width: 15%;
    height: 3%;
    transform: rotate(-2deg);
}

.lobby-private-meeting-room-button {
    top: 67%;
    right: 7%;
    width: 15%;
    height: 3%;
}

.information-desk-modal {
    color: #000000;
    display: none;
    width: 1050px;
    max-width: 1050px;
}

.information-desk-icon {
    width: 20px;
    margin-right: 5px;
}

.lobby-information-button {
    position: absolute;
    width: 30%;
    height: 20%;
    top: 63%;
    left: 10%;
    cursor: pointer;
}
*/
.lobby-information-accordian-button {
    cursor:pointer;
    display: flex;
    margin-bottom: 8px;
}


.fullbackground {
    width: 100%;
}

.back-button {
    cursor: pointer;
    background:rgba(0, 0, 0, .6);
    color: #ffffff;
    width: 100px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1 solid #ffffff;
    position: fixed;
    left: -1px;
    top: 100px;
}

.booth-buttons {
    position: relative;
}

.exibit-buttons {
    position: relative;
}

.eb {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    cursor: pointer;
    /*
    position: absolute;
    cursor: pointer;
    background: red;
    opacity: 0;
    */
}

.eb5 {
    display: flex;
    justify-content: right;
    align-items: center;
    position: absolute;
    cursor: pointer;
    /*
    position: absolute;
    cursor: pointer;
    background: red;
    opacity: 0;
    */
}

.eb6 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    cursor: pointer;
    /*
    position: absolute;
    cursor: pointer;
    background: red;
    opacity: 0;
    */
}


.exibit-button-1 {
  top:42.31%;
  left:5.42%;
  width:16.09%;
  height:37.78%;
}

.exibit-button-2 {
  top:42.31%;
  left:30.78%;
  width:16.09%;
  height:37.78%;
}

.exibit-button-3 {
  top:42.31%;
  left:54.79%;
  width:16.2%;
  height:37.78%;
}

.exibit-button-4 {
  top:42.31%;
  left:79.95%;
  width:16.15%;
  height:37.78%;
}

.exibit-button-5 {
  top:29.54%;
  left:35.52%;
  width:27.76%;
  height:6.39%;
}

.exibit-button-6 {
  top:9.81%;
  left:27.03%;
  width:46.04%;
  height:16.85%;
}

.exibit-button-7 {
  top: 30.1%;
  left: 65.2%;
  width: 3.0%;
  height: 6.9%;
}

.exibit-button-infoKiosk {
  top:55.56%;
  left:88.28%;
  width:4.38%;
  height:11.11%;
}


.bb {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    cursor: pointer;
    /* background: red;
    opacity: 0.5;
    text-align: center; */

    /*
    position: absolute;
    cursor: pointer;
    background: red;
    opacity: 0;*/
}

.booth1-button-video {
	top:29.26%;
	left:11.05%;
	width:13.23%;
	height:16.02%;

}

.booth1-button-litstand {
	top:32.96%;
	left:33%;
	width:10.46%;
	height:21.48%;

}

.booth1-button-pullup {
	top:14.35%;
	left:66.3%;
	width:11.09%;
	height:61.11%;
}


.booth2-button-video {
	top:29%;
	left:14%;
	width:12.86%;
	height:14.44%;


}

.booth2-button-litstand {
	top:36%;
	left:36%;
	width:6.82%;
	height:19.44%;


}

.booth2-button-pullup {
	top:13.7%;
	left:69.5%;
	width:12.19%;
    height:62.31%;

}

.booth3-button-video {
	top:30.09%;
	left:55.5%;
	width:12.92%;
	height:14.17%;


}

.booth3-button-litstand {
	top:36%;
	left:58%;
	width:6.82%;
	height:19.44%;

}

.booth3-button-pullup {
	top:21.76%;
	left:16.61%;
	width:11.88%;
	height:54.07%;

}

.booth4-button-video {
	top:28.25%;
	left:73.45%;
	width:12.92%;
	height:14.17%;

}

.booth4-button-survey{
	top:39.00%;
	left:74.00%;
	width:12.92%;
	height:14.17%;

}

.booth4-button-litstand {
	top:35%;
	left:57%;
	width:10%;
	height:20%;

}

.booth4-button-pullup {
	top:21.3%;
	left:31.56%;
	width:11.15%;
	height:58.61%;

}

.booth5-button-litstand {
	top:58.8%;
	left:78.28%;
	width:7.14%;
	height:25.28%;

}

.booth5-button-pullup {
	top:14.54%;
	left:20.83%;
	width:12.19%;
	height:59.54%;

}

/* Pulse */
.blob {
  display: flex;
  justify-content: center;
  align-items: center;
	background: black;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	margin: 4px;
	height: 25px;
  width: 25px;
  min-width: 25px;
  min-height: 25px;
	transform: scale(1);
  animation: pulse-black 2s infinite;
  opacity: 1;
}

.blob.blue {
	background: rgba(52, 172, 224, 1);
	box-shadow: 0 0 0 0 rgba(52, 172, 224, 1);
  animation: pulse-blue 2s infinite;
  border: 1px solid gray;
  opacity: 1;
}

.blob.blue6 {
	background: rgba(52, 172, 224, 1);
	box-shadow: 0 0 0 0 rgba(52, 172, 224, 1);
  animation: pulse-blue 2s infinite;
  border: 1px solid gray;
  opacity: 1;
  margin-left: 35%;
  margin-bottom:3%;
}


.blob.welcome {
  position: absolute;
  left: 47%;
  top: 65%;
  cursor: pointer;
}

.blob.contact {
  position: absolute;
  left: 23%;
  top: 61%;
  cursor: pointer;
}

@keyframes pulse-blue {
	0% {
		transform: scale(0.75);
		box-shadow: 0 0 0 0 rgba(52, 172, 224, 1);
	}
	
	70% {
		transform: scale(1.2);
		box-shadow: 0 0 0 20px rgba(52, 172, 224, 0);
	}
	
	100% {
		transform: scale(0.75);
		box-shadow: 0 0 0 0 rgba(52, 172, 224, 0);
	}
}

.fa {
    font-size: 11px !important;
    opacity: 1;
    margin-left:2px;
}

.booth-externalLink-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width:64px;
    height:64px;
    margin-top: -32px; /* Half the height */
    margin-left: -32px; /* Half the width */
    opacity: 0;
}

.booth-button-logo {
    top: 56%;
    left: 50%;
    width: 12%;
    height: 10%;
}

.modal-shadow {
    /* width: 500px; */
    /* height: 200px; */
    -webkit-box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

.video-thumb {
    width: 25%;
    max-width: 100px;
    margin-right: 40px;
    -webkit-box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
}

.video-title {
    font-weight: bold;
    line-height: 30px;
    
}

.contactUs-modal {
    -webkit-box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
}

.contactUs-buttons {
    width: 100%;
    height: 100%;
}

.contactUs-button {
    display: flex;
    justify-content: left;
    align-items: left;
    cursor: pointer;
    border:rgba(0, 0, 0, .6);
    color: #000000;
    padding-left:10px;
}

.contactUs-back-button {
    cursor: pointer;
    width: 100%;
    text-align: center;
    color: #000000;
    margin-top: 30px;
}	

.litStand-item {
	outline: none;
  cursor:pointer;
}

.litStand-item-icon-image {
	width: 4%;
	height: 4%;
	margin-right:10px;
}

.login-modal {
    -webkit-box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 4px 13px 0px rgba(0,0,0,0.75);
    color: #000000;
}

.login-buttons {
    width: 100%;
    height: 100%;
}

.login-button {
    display: flex;
    justify-content: left;
    align-items: center;
    cursor: pointer;
    border:rgba(0, 0, 0, .6);
    color: #000000;
    padding-left:10px;
}

.login-back-button {
    cursor: pointer;
    width: 100%;
    text-align: center;
    color: #000000;
    margin-top: 30px;
}	

.drag-header {
    padding: 10px;
    cursor: move;
    z-index: 10;
    background-color: #2196F3;
    color: #fff;
}

#chatwindow {
    position: absolute;
    display: flex;
    flex-direction: column;
    top:100px;
    left: calc(50% - 350px); 
    width: 700px;
    height: 560px;
    z-index: 10000;
    background-color: #f1f1f1;
    text-align: center;
    border: 1px solid #d3d3d3;
}

#chatwindowheader {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    cursor: move;
    z-index: 10;
    background-color: #000000;
    color: #fff;
}

.close-button {
    color: #FFFFFF;
    cursor: pointer;
}

.chat {
    width: 100%;
    height: 100%;
    border: none;
}

.toggle-group {
    display: flex;
    margin-right: auto;
}

.toggle-button {
    margin-right: 20px;
    cursor: pointer;
}

/*  User1st  Addition */
.accessibilityBtnClass{
    position: fixed !important;
    _position: absolute !important;
    z-index: 2147483646 !important;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
    padding: 7px 20px 7px 20px;
    font: bold 15px Arial !important;
    background: #000 !important;
    color: #fff !important;
    width: auto;
    top: 0px !important; 
    right: 0px !important;
    height: auto;
}
    
#closedModal {
  font-size: 14pt;
  font-weight: bold;
  text-align: center;
}

#postModal {
  font-size: 14pt;
  font-weight: bold;
  text-align: center;
}

.modal-header {
  color: #ffffff;
  background-color: #00446f;
  font-size: 24pt;
  width: 100%;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

h2 {
  font-size: 16pt;
  font-weight: bold;
}    

#surveyFrame, #surveyModal {
	width: 100% !important;
}

.fancybox-button {
    height: 64px !important;
    width: 64px !important;
}

.bcbsm-heading {
  position:relative;
  width:100%;
  font-weight:bold;
  font-size: 16pt;
  color:#000;
  margin-top: 20px;
}

.bcbsm-title {
  position:relative;
  width:100%;
  text-align:left;
}

.plus-minus {
  position:absolute;
  top:0;
  right:0;
}

.bcbsm-items-container {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: left;
  border:rgba(0, 0, 0, .6);
  color: #000000;
  padding-left:10px;
  width:80%;
  margin:0 auto;
}

.bcbsm-content {
  position:relative;
  width:100%;
  display:flex;
  flex-direction:column;
  justify-content: left;
  color:#000;
}

.newsletter-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: #000000;
  width: 600px;
  margin: 0 auto;
  gap: 15%;
}

.newsletter-window {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border:rgba(0, 0, 0, .6);
  color: #000000;
  padding-left:10px;
  width:40%;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none
}

.newsletter-image {
  width: 100%;
  margin-bottom: 10px;
}

.newsletter-title {
  font-weight:bold;
  font-size: 16pt;
  color:#000;
  margin-top: 10px;
}

.newsletter-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: #000000;
  font-weight: bold;
  font-size: 16pt;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
}

.booth-container {
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background-color: #ffffff;
  color: #000000;
  width: 50%;
  display: none;
  z-index: 110;
}

.booth-logo-container {
  position: relative;
  display: flex;
  width: 100%;
  height: 5vw;
  justify-content: center;
  margin-top: 2vw;
  margin-bottom: 2vw;
}

.booth-logo {
  max-width: 100%;
  max-height: 100%;
}

.booth-content-container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: first baseline;
  width: 95%;
  gap: 1vw;
  margin: 0 auto;
}

.booth-item-multiple {
  position:relative;
  display: block;
  text-align: left;
  width: 48%;
  gap: 1vw;
}

.booth-item-single {
  position:relative;
  display: block;
  text-align: center;
  width: 100%;
  gap: 1vw;
}

.booth-item-heading {
  position:relative;
  width:100%;
  text-align:left;
  font-weight:bold;
  font-size: 1.5vw;
  color:#000;
  margin-top: 1vw;
  margin-bottom: 1vw;
}

.booth-item-pulldown {
  position: relative;
  width: 100%;
  text-align: left;
  font-weight: normal;
  font-size: 1.25vw;
  color: #000;
  background-color: #ccc;
  margin-top: 1vw;
  margin-bottom: 1vw;
  padding-top: 2%;
  padding-bottom: 2%;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
}

.booth-close-container {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 2vw;
  margin-bottom: 2vw;
  font-size: 1.5vw;
}

.booth-close-button {
  padding: 0.5vw 5vw;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
}

.section-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  color: #000000;
  width: 50%;
  display: none;
  z-index: 110;
  max-height: 50vw;
}

.section-logo-container {
  position: relative;
  display: flex;
  width: 100%;
  height: 5vw;
  justify-content: center;
  margin-top: 2vw;
  margin-bottom: 2vw;
}

.section-logo {
  max-width: 100%;
  max-height: 100%;
}

.section-heading-container {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 2vw;
  font-size: 1.5vw;
  font-weight: bold;
} 

.section-content-container {
  position: relative;
  display: block;
  width: 88%;
  margin: 0 auto;
  max-height: 23vw;
  overflow-x: hidden;
  overflow-y: auto;
}

.section-item-file {
  position: relative;
  display: inline-block;
  width: 98%;
  height: 3vw;
  vertical-align: middle;
  text-align: left;
}

.section-item-video {
  position: relative;
  display: block;
  width: 98%;
  margin: 0 auto;
  margin-bottom: 0px;
  height: 4vw;
  margin-bottom: 1.5vw;
}

.section-item-link {
  position: relative;
  display: flex;
  width: 98%;
  margin: 0 auto;
  flex-direction: row;
  justify-content: left;
  height: 2vw;
  align-content: center;
}


.section-link {
  position: relative;
  display: inline-flex;
  text-align: left;
  font-size: 1.5vw;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  vertical-align: top;
  height: 4.4vw;
  align-items: center;
  width: 41vw;
}

.full-button {
  color: #000;
  background-color: #ccc;
  height: 100% !important;
  border-radius: 0.35vw;
  padding: 0;
  width: 30vw !important;
  padding: 0 2vw;
  font-weight: normal !important;
  text-align: center !important;
  justify-content: center;
}

.ORS {
  text-align: center;
  height: 3vw;
  text-align: center !important;
  justify-content: center;
}

.section-video-link {
  position: relative;
  display: inline-flex;
  text-align: left;
  font-size: 1.5vw;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  vertical-align: top;
  height: 4.9vw;
  align-items: center;
  width: 30vw;
  max-width: 30vw;
}

.section-thumbnail-container {
  position: relative;
  display: inline-block;
  text-align: left;
  height: 5vw;
  margin-right: 1vw;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
}

.section-thumbnail {
  max-width: 100%;
  max-height: 100%;
}

.section-item-heading {
  position:relative;
  width:100%;
  text-align:left;
  font-weight:bold;
  font-size: 1.5vw;
  color:#000;
  margin-top: 1vw;
  margin-bottom: 1vw;
}

.section-item-pulldown {
  position: relative;
  width: 100%;
  text-align: left;
  font-weight: normal;
  font-size: 1.25vw;
  color: #000;
  background-color: #ccc;
  margin-top: 1vw;
  margin-bottom: 1vw;
  padding-top: 2%;
  padding-bottom: 2%;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
}

.section-close-container {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 2vw;
  margin-bottom: 2vw;
  font-size: 1.5vw;
}

.section-close-button {
  padding: 0.5vw 5vw;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
}

sup {
  font-size:0.7vw;
} 