/*////////////////*/
/*  videojs main  */
/*////////////////*/
.video-section {
  background: #213b83 ;
  width: 100%;
  padding: 0 2% 2% 2%;
  margin-top: 120px;
  display: block;
  overflow: hidden;
}
.video-nav {
  width:100%; 
  height:3.5em; 
  line-height:3.5em; 
  color: #fff;
  text-align: left;
}
.video-nav .link-back {
  font-size: 1.2em;
  color: #fff;
  display: inline-block;
}
.video-nav .link-back i {
  font-family: "Icons";
  font-style: normal;
  font-weight: normal;
  text-align: center;
  margin-right: 0.5em;
}
.video-nav .link-back:hover {
  color: #ef7d00;
}
.videoplayer-container {
  width: 65%;
  height: auto;
  margin-right: 1%;
  float: left;
  display: block;
  overflow: hidden;
}
.playlist-container {
  width: 34%;
  float: left;
  display: block;
  overflow: hidden;
}
.playlist-head {
  display:block; 
  height:auto; 
  overflow: hidden;
  padding-bottom: .75em;
}
.playlist-container h3 {
  font-size: 1.2em;
  color: #fff;
  line-height: 1.5em;
  float:left;
}
/*////////////////*/
/*  switchbutton  */
/*////////////////*/
.repeat-switch-wrapper, .autoadvance-switch-wrapper {
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1.9em;
  color: #b8c5e2;
  text-transform: uppercase;
}
.repeat-switch-wrapper {
  float: right;
}
.autoadvance-switch-wrapper {
  float: right;
}
.repeat-switch-wrapper .switch, .autoadvance-switch-wrapper .switch {
  position: relative;
  width: 46px;
  height: 22px;
  margin-top: 7px;
  margin-left: 1.1em;
}
.repeat-switch-wrapper .switch {
  float: right;
}
.autoadvance-switch-wrapper .switch {
  float: right;
}
.switch input { 
  display:none;
}
.slider {
  height: 15px;
  width: 36px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  cursor: pointer;
  background-color: #b8c5e2;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: -6px;
  bottom: -5px;
  background-color: #718cc5;
  box-shadow: 0 1px 1px rgba(0,0,0,0.6) inset;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #718cc5;
}
input:checked + .slider:before {
  background-color: #f29b00;
}

input:focus + .slider {
  box-shadow: 0 0 1px #919191;
}

input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
}
.slider.round {
  border-radius: 7px;
}
.slider.round:before {
  border-radius: 50%;
}
/*////////////*/
/*  Video.js  */
/*////////////*/
/*  Video.js settings  */
.settings-wrapper {
  width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #718cc5;
  padding: 1em 0;
}
.button {
    background: #b8c5e2;
    border: 0 none;
    height: 2.75em;
    color: #213b83;
    font-size: 0.9em;
    line-height: 2.75em;
    text-transform: uppercase;
    font-weight: bold;
    padding-left: 1.25em;
    padding-right: 1.25em;
    border-radius: 0.3em;
	cursor:pointer;
	transition: all 0.3s ease;
}
.button:hover {
    background: #f29b00;
    color: #fff;
}
.title-description-wrapper {
  width: 100%;
  padding: 0.5em 0;
  display: block;
  font-size: 1em;
  color: #fff;
  line-height: 1.5em;
  overflow: hidden;
}
.videojs-external-title {
  font-size: 1.5em;
  line-height: 1.3em;
}
.videojs-external-description {
  padding: 0.75em 0;
  display: block;
  font-size: 1em;
  line-height: 1.5em;
}
.videojs-external-description a {
    color: #f29b00;
}
.videojs-external-description a:hover {
  color: #fff;
}
.repeat-group {
  width: 150px;
  position: relative;
  display: block;
  padding: 4px 0 12px 2em;
  margin-top: 1em;
  cursor: pointer;
  font-size: 1.1em;
  color: #919191;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.repeat-group input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #919191;
  transition: all 0.3s ease;
}
.repeat-group:hover input ~ .checkmark {
  background-color: #718cc5;
}
.repeat-group input:checked ~ .checkmark {
  background-color: #f29b00;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.repeat-group input:checked ~ .checkmark:after {
  display: block;
}
.repeat-group .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 1580px){
  .videoplayer-container {
    width: 60%;
    margin-right: 2%;
  }
  .playlist-container {
    width: 38%;
  }
}

@media screen and (max-width: 1280px){
  .videoplayer-container {
    width: 54%;
    margin-right: 2%;
  }
  .playlist-container {
    width: 44%;
  }
}

@media screen and (max-width: 1265px) {
  .video-section {
    margin-top: 90px;
  }
}

@media screen and (max-width: 1100px){
  .videoplayer-container {
    width: 68%;
    margin-right: 2%;
  }
  .playlist-container {
    width: 30%;
  }
  .playlist-container h3 {
    margin-bottom: 0.75em;
    font-size: 1.1em;
    line-height: 1.4em;
    float: none;
  }
  .repeat-switch-wrapper {
    border-top: 1px solid #718cc5;
	margin-top: 0.5em;
	padding-top: 0.75em;
    float: none;
  }
}

@media screen and (max-width: 1024px) {
  .video-nav .link-back {
    font-size: 1em;
  }
  .videojs-external-title {
    font-size: 1.3em;
  }
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
  .video-section {
    margin-top: 64px;
  }
}

@media screen and (max-width: 800px){
  .videoplayer-container {
    width: 100%;
    float: none;
  }
  .playlist-container {
    width: 100%;
    float: none;
	border-top: 1px solid #718cc5;
  }
  .title-description-wrapper {
    padding: .5em 0 0 0;
  }
  .playlist-container h3 {
    margin-bottom: 0;
	margin-top: 0.5em;
    font-size: 1.2em;
    line-height: 1.6em;
    float: left;
  }
  .repeat-switch-wrapper {
    border-top: 0 none;
	margin-top: 0;
	padding-top: 0.85em;
    float: right;
  }
}

@media screen and (max-width: 800px) and (orientation: landscape) {
  .videoplayer-container {
    width: 100%;
    float: none;
	padding: 0 18%;
  }
}

@media screen and (max-width: 690px) {
  .video-section {
    margin-top: 64px;
  }
  .videojs-external-title {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 490px){
  .repeat-switch-wrapper, .autoadvance-switch-wrapper {
    font-size: 0.8em;
    line-height: 2.35em;
  }
}

@media screen and (max-width: 460px){
  .video-section {
    padding: 0 2% 7% 2%;
  }
}

@media screen and (max-width: 420px){
  .video-nav {
    height: 3em;
    line-height: 3em;
  }
  .video-nav .link-back {
    font-size: 0.85em;
  }
  .button {
    font-size: 0.7em;
  }
  .videojs-external-title {
    font-size: 1em;
  }
  .videojs-external-description {
    font-size: 0.85em;
    line-height: 1.55em;
  }
  .playlist-container h3 {
    font-size: 0.9em;
    line-height: 2.1em;
  }
  .repeat-switch-wrapper, .autoadvance-switch-wrapper {
    font-size: 0.7em;
  }
}

@media screen and (max-width: 330px){
  .button {
    font-size: 0.65em;
    padding-left: 1em;
    padding-right: 1em;
  }
}
