body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background-color: #0d6679;
  margin: 0px 15px 15px;
}
a {
  text-decoration: none;
  color: #3fbfad;
}
input, select, button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
}
h4 {
  line-height: 29px;
  font-weight: normal;
  margin: 0px;
}
li {
  padding-bottom: 10px;
}
select:focus {
  outline: none;
}
select:disabled {
  background-color: #f3f0f1 !important;
  opacity: 1;
  color: #000;
  cursor:not-allowed !important;
}
video, #backCanvas, #frontCanvas {
  display: none;
}
#frontCanvas {
  background: black;
}
header {
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#logo {
  width: 150px;
  cursor: pointer;
}
#help {
  background-color: #cadcf6;
  margin-right: 10px;
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}
#changeMountType {
  background-color: #f3f0f1;
  padding: 3px;
  border: none;
  border-radius: 3px;
  outline-offset: 0px;
  cursor: pointer;
}
#videoBoard {
  border: 2px dashed #00556f;
  border-radius: 5px;
  height: calc(100vh - 207px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
#videoBoard.borderStyle {
  border: 2px solid #00556f; 
}
#welcomeContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #fff;
}
#dewarpImg {
  margin-right: 20px;
  height: 150px;
}
#uploadArea {
  text-align: center;
  color: #fff;
}
#videoController {
  background-color: #00556f;
  padding: 20px;
  margin-top: 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#controls {
  background-color: #3fbfad;
  color: #fff;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  font-size: 27px;
  line-height: 57px;
  text-align: center;
  cursor: pointer;
}
.videoPresent #controls {
  background-color: #aaa;
  cursor: default;
}
#volumeContainer {
  width: 40px;
  height: 40px;
  position: relative;
}
#volumeStandard {
  background: url(icon-volume-white.png) no-repeat left center;
  background-size: 22px 20px;
  width: 30px;
  height: 40px;
  z-index:2;
  cursor: pointer;
  position: absolute;
}
#volumeProgress {
  background: url(icon-volume-2ab6a9.png) no-repeat left center;
  background-size: 22px 20px;
  position: absolute;
  width: 6px;
  height: 40px;
  z-index: 3;
  cursor: pointer;
}
.muted #volumeProgress {
  display: none;
}
#muteSlash {
  border: 1px solid #000;
  background: #fff;
  display: none;
  position: absolute;
  width: 4px;
  height: 30px;
  z-index: 3;
  cursor: pointer;
  transform: rotate(-45deg);
  left: 7px;
  top: 4px;
}
.muted #muteSlash {
  display: block;
}
#volumeSlider {
  background: #fff;
  float: right;
  height: 36px;
  width: 7px;
  background-color: #0d6679;
  border: 1px solid #fff;
  border-radius: 7.5px;
}
#volumeSlider .ui-slider-handle {
  left: -3px;
  margin-bottom: -3px;
  height: 4px;
  width: 11px;
  outline: 0 none !important;
}
#volumeSlider .ui-state-active {
  background: #fff;
  border: 1px solid #c5c5c5;
}
#uploadVideo {
  display: none;
}
#uploadVideoBtn {
  background-color: #d539b5;
  padding: 4px 0px;
  color: #fff;
  width: 150px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
}
.controlBar {
  width: 80%;
}
.timer {
  float: right;
  color: #fff;
  font-size: 14px;
}
.timeSlider {
  background: #fff;
  width: calc(100% - 100px);
}
.videoPresent .timeSlider {
  background: #aaa;
  border: none;
  opacity: 1;
}
.timeSlider .ui-state-active {
  border: 1px solid #c5c5c5;
}
.ui-widget-header {
  background: #3fbfad;
}
.ui-slider-horizontal {
  height: 10px !important;
  border-radius: 7.5px;
  margin-top: 2px;
}
.timeSlider .ui-slider-handle {
  background: #fff !important;
  width: 6px !important;
  height: 30px !important;
  top: 0px !important;
  margin-left: -4px !important;
  margin-top: -10px !important;
  border-radius: 7.5px;
  outline: 0 none !important;
}
.videoPresent .ui-slider-horizontal .ui-slider-handle {
  background: #aaa !important;
  border: 1px solid #aaa;
}
.ui-widget.ui-widget-content {
  border: none;
}
#closeButton {
  display: none;
  background-image: url(icon-close.png);
  background-color: #3fbfad;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  background-clip: padding-box; 
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 84px;
  right: 23px;
}
#overlayMask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  display: none;
  background: rgba(0,0,0,.7);
}
.overlay {
  position: fixed;
  top: 20%;
  left: 50%;
  z-index: 5;
  width: 600px;
  margin-left: -326px;
  border: 1px solid #00556f;
  padding: 60px 25px 25px 25px;
  animation: fadeIn .3s ease-in-out;
  display: none;
  font-size:14px;
  line-height:18px;
  background: #f3f0f1;
  color: #333;
}
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.overlay > h3 {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 50px);
  font-size: 16px;
  line-height: 40px;
  padding: 0 25px;
  text-align: left;
  background-color: #00556f;
  color: #e8f1f9;
  margin: 0px;
}
div.overlayClose {
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 2;
  font-size: 32px;
  line-height: 34px;
  margin: 0;
  padding: 0;
  width: auto;
  cursor: pointer;
  border:0 none;
  color: #e8f1f9;
  background: transparent;
}

/* ovl - css */
body.ovl {
  background-color: #356981;
}
.ovl select:disabled {
  background-color: #e8f1f9 !important;
}
.ovl #changeMountType {
  background-color: #e8f1f9;
}
.ovl #videoBoard.borderStyle {
  border: 2px solid #18536f; 
}
.ovl #videoController {
  background-color: #18536f;
}
.ovl #controls {
  background-color: #2ab6a9;
}
.ovl .videoPresent #controls {
  background-color: #aaa;
  cursor: default;
}
.ovl .ui-widget-header {
  background: #2ab6a9;
}
.ovl #closeButton {
  background-color: #2ab6a9;
}
.ovl .overlay > h3 {
  background-color: #18536f;
}
.ovl .overlay {
 color: #185470;
}
.ovl a {
  color: #2ab6a9;
}