p {margin: 0;}
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    margin: 0;
}

#content {
    position: absolute;
    width: 1920px;
    height: 990px;
    background: #fff;
    border-radius: 30px 30px 0px 0px;
    overflow: hidden;
}

div.video {
    /* border-radius: 30px; */
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 50%;
    bottom: 50%;
    left: 50%;
    right: 50%;
    z-index: 100;
    position: absolute !important;
    transform: translate(-50%, -50%);
 }
 
 .disable {
    pointer-events: none;
    display: none;
 }
 
 div.video div.playcontroller {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0px;
    width: 100%;
    /* border-radius: 0 0 30px 30px; */
    height: 100px;
    background-color: rgba(41,47,46, 0.9);
    font-family: "NanumSquareNeo-dEb";
    color: #595757;
    text-align: left;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 18px;
    color: #fff;
    white-space: nowrap;
    opacity: 1;
    z-index: 1;
    /* test */
    /* opacity: 1 !important; */
 }
 
 div.video div.playcontroller.hide {
    transform: translateY(100px);
 }
 
 div.video div.playcontroller>* {
    position: relative;
    display: inline-block;
    vertical-align: middle;
 }
 
 div.video .btns {
    position: relative;
    display: inline-block;
    margin: auto;
    top: -3px;
    width: 135px;
    height: 100%;
    margin-left: 20px;
 }
 
 div.video .volumeWrap {
    position: relative;
    display: inline-block;
    position: absolute !important;
    left: 160px;
    top: -3px;
    width: 62px;
    height: 100%;
    margin-left: 0;
    /* background: url(../images/video/volumeWrap.png) no-repeat 50% 50%; */
    /* background-size: 100%; */
 }
 
 div.video .btns img {
    /* margin-right: 10px; */
    /* margin-top: 18px; */
    cursor: pointer;
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
 }
 
 div.video .btns .btnStop {
    /* margin-right: 10px; */
    /* margin-top: 18px; */
    cursor: pointer;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    left: 70px;
 }
 
 div.video .btns img.btnPlay {
    display: inline-block;
 }
 
 div.video div.statusBar {
    position: relative;
    display: inline-block;
    /* top: 14px; */
    /* left: 80px; */
    /* width: 73%; */
 
    width: 63%;
    /* width: 1061px !important; 전체화면 아닐경우 1061px 이면 됩니다. */
    height: 15px;
    margin-left: 100px;
    background: rgb(113 131 131 / 80%);
    border: 1px solid #96b7b3;
    border-radius: 15px;
    -webkit-transition: width 0.1s;
    -moz-transition: width 0.1s;
    transition: width 0.1s;
 }
 
 div.video div.seeker {
    position: absolute;
    display: block;
    background-color: #ffffff;
    border: 1px solid #96b7b3;
    height: 15px;
    width: 0%;
    top: 0;
    left: 0px;
    /* -webkit-transition:width 0.1s;
    -moz-transition:width 0.1s;
     transition:width 0.1s; */
    border-radius: 15px 0 0 15px;
 }
 
 div.video video {
    width: 100%;
    height: 116%;
 }
 
 div.video .videoSeekBtn {
    position: absolute;
    left: 0px;
    width: 33px;
    height: 33px;
    /* margin-left: -1px; */
    /* background: url(../images/video/btnBar.png) no-repeat; */
    z-index: 1;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #96b7b3;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
 }
 
 div.video .videoTimeNow,
 div.video .videoTimeAll,
 div.video .ss {
    display: inline-block;
    text-align: center;
    text-shadow: 0px 0px 4px black;
 }
 
 div.video .videoTimeNow {
    margin-left: 30px;
 }
 
 div.video .videoMute {
    width: 62px;
    height: 62px;
    border: none;
    outline: 0;
    cursor: pointer;
    background: url("../images/video/btnMute.png") no-repeat;
    /* margin-left: 18px; */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
 }
 
 div.video .videoMute.on {
    background: url("../images/video/btnMuteOn.png") no-repeat;
 }
 
 div.video .videoFullscreen {
    display: none !important;
 }

 /* div.video .videoFullscreen {
    position: absolute !important;
    display: inline-block;
    top: 47%;
    right: 20px;
    width: 56px;
    height: 56px;
    border: none;
    outline: 0;
    cursor: pointer;
    background: url(../images/video/btnFull.png) no-repeat;
    transform: translate(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
 }
 
 div.video.videoFull .videoFullscreen {
    background: url("../images/video/btnFullOn.png") no-repeat;
 } */
 
 div.video .videoVolume {
    position: relative;
    display: inline-block;
    top: 14px;
    right: 85px;
    height: 30px;
    background: url("../images/video/bgVolume.png") no-repeat;
    display: flex;
 }
 
 div.video .videoVolume span {
    display: inline-block;
    width: 11px;
    height: 30px;
 }
 
 div.video .videoVolume span.on {
    background: url("../images/video/bgVolumeOn.png") no-repeat;
 }
 
 /* div.video .videoFClose {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 71px;
    height: 71px;
    background: url("../images/video/btnClose.png") no-repeat;
    background-size: 100%;
    cursor: pointer;
    display: none;
 } */
 
 div.video.videoFull .videoFClose {
    display: block;
 }
 
 .videoFull,
 .videoFull video {
    width: 100% !important;
    height: 100% !important;
 }
 
 div.videoFull div.statusBar {
    width: 73%;
 }
 
 /* div.videoFull .videoFullscreen {
    background: url("../images/video/btnFull.png") no-repeat;
 } */
 
 /* div.video.videoFull div.playcontroller {
     bottom:-75px;
     -webkit-transition:bottom 0.2s;
     -moz-transition:bottom 0.2s;
     transition:bottom 0.2s;
  } */
 
 div.video .volumeBar {
    width: 60px;
    height: 210px;
    /* background: rgba(255, 255, 255, 0.5); */
    background-color: #69c5b8;
    border-radius: 30px;
    -webkit-transition: width 0.1s;
    -moz-transition: width 0.1s;
    transition: width 0.1s;
    margin-left: 0px;
    position: absolute;
    top: -125px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 0;
    box-shadow: inset 0 5px 5px -1px #9dd9d1, inset 0 -5px 5px -1px #72aca0;
 }
 
 div.video div.vseekerbg {
    position: absolute;
    display: block;
    background-color: #138882;
    height: 120px;
    width: 10px !important;
    top: 25px;
    left: 25px;
    border-radius: 25px;
    overflow: hidden;
 }
 
 div.video div.vseeker {
    position: absolute;
    display: block;
    background-color: #fff;
    height: 0px;
    width: 10px !important;
    bottom: 0px;
    left: 0px;
    border-radius: 25px;
 }
 
 div.video .volumeSeekBtn {
    position: absolute;
    display: block;
    top: 65%;
    left: 30px;
    width: 22px;
    height: 22px;
    z-index: 1;
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
    box-shadow: none;
    -webkit-transform: translate(-11px, -50%);
    -moz-transform: translate(-11px, -50%);
    -ms-transform: translate(-11px, -50%);
    transform: translate(-11px, -50%);
    border: 1px solid #0085c9;
 }
 
 div.video .volumeBar .volumeMute {
    background: url(../images/video/ico_vol_on.png) no-repeat;
    width: 26px;
    height: 24px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    cursor: pointer;
 }
 
 div.video .volumeBar .volumeMute.off {
    background: url(../images/video/ico_vol_off.png) no-repeat;
    width: 26px;
    height: 26px;
    position: absolute;
    bottom: 18px;
    left: 20px;
 }
 
 div.video .centerController {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    width: 134px;
    height: 134px;
 
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
 }
 
 div.video .centerController.hide {
    opacity: 0;
    pointer-events: none;
 }
 
 div.video .centerController img {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
 }
 
 div.video .centerController .btnPause2 {
    pointer-events: none;
    opacity: 0;
    transform: scale(0.0);
    transition: all 0.8s;
 }
 
 div.video .centerController .btnPause2.on {
    animation: youtubebtn 0.3s cubic-bezier(0.4, 0, 1, 1) 1;
 }
 
 @keyframes youtubebtn {
    0% {
       opacity: 0.4;
       transform: scale(0.3);
    }
    80% {
       opacity: 1;
       transform: scale(0.9);
    }
    100% {
       opacity: 0;
       transform: scale(1.1);
    }
 }
 
 /*비디오_역할놀이 시작*/
 .video .rolePlaying {
    position: absolute;
    width: 10%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #000000a6;
    transition: all 0.3s;
 }
 
 .video .rolePlaying.hide {
    transform: translateX(500px);
 }
 
 .video .rolePlaying .roleCha {
    width: 130px;
    height: 130px;
    border-radius: 100%;
    margin: 20px auto;
    background-size: 100%;
    cursor: pointer;
    filter: grayscale(1);
    background-size: 130px 130px !important;
 }
 
 .video .rolePlaying .roleCha:hover {
    border-radius: 100%;
    outline: 4px solid #c49815;
    filter: none;
 }
 
 .video .rolePlaying .roleCha.on {
    width: 130px;
    height: 130px;
    outline: 4px solid #c49815;
    filter: none;
 }
 
 /*비디오_역할놀이 끝*/
 
 /*비디오 타임라인 시작*/
 .video .videoSceneArea {
    position: absolute;
    width: 100%;
    height: 140px;
    bottom: 79px;
    transition: all 0.3s;
    z-index: 1;
    pointer-events: none;
    /* display: none; */
 }
 
 .video .videoSceneArea.hide {
    transform: translateY(800px);
 }
 
 .video .videoSceneBox {
    width: fit-content;
    height: 108px;
    display: block;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px 15px 0px 15px;
    border-radius: 20px;
    pointer-events:all;
 }
 
 .video .videoSceneArea .videoScene {
    width: 140px;
    height: 78px;
    /* margin: 25px auto; */
    background-size: 100%;
    cursor: pointer;
    display: inline-block;
    position: relative;
    border-radius: 10px;
    margin-right: 12px;
 }
 .video .videoSceneArea .videoScene:last-child {
    margin-right: 0px;
 }
 
 .video .videoSceneArea .videoScene:hover {
    outline: 4px solid #ed6d1f;
 }
 
 .video .videoSceneArea .videoScene.on {
    outline: 4px solid #ed6d1f;
 }
 
 .video .videoScene .vNum {
    font-size: 16px;
    color: #fff;
    background: #000;
    font-family: 'NanumSquareNeo-dEb';
    width: 30px;
    height: 30px;
    display: inline-block;
    line-height: 28px;
    border-radius: 10px 0 10px 0;
    position: absolute;
    left: 0;
 }
 
 /*Look and Think 주요 표현*/
 .lnt .video .videoSceneArea {
    bottom: 79px;
 }
 
 .lnt .video .videoSceneBox {
    height: 108px;
 }
 
 .lnt .video .videoSceneArea .videoScene {
    height: 78px;
 }
 /*비디오 타임라인 끝*/
 
 
 /*비디오 챈트 따라부르기 영역*/
 
 .video .videoRepeatArea {
    position: absolute;
    width: 100%;
    height: 90px;
    top: 3%;
    /*위치 좌측 정렬*/
   left: 2%;
 }
 
 .video .videoRepeatArea .videoRepeatBox {
    width: fit-content;
    display: block;
    /* margin: 0 auto; */
    margin: 0;
    /*배경 색 삽입*/
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px 15px 15px 15px;
    border-radius: 20px;
 }
 
 .video .videoRepeatArea .videoRepeatBox .videoRepeat {
    width: 70px;
    height: 70px;
    background-color: #eef4f4;
    border: 4px solid #c4d3d3;
    color: #6ba59d;
    cursor: pointer;
    display: inline-block;
    font-family: 'BMJUA';
    font-size: 36px;
    line-height: 67px;
    border-radius: 20px;
    margin-right: 12px;
 }
 
 .video .videoRepeatArea .videoRepeatBox .videoRepeat:last-child {
    margin-right: 0;
 }
 
 .video .videoRepeatArea .videoRepeatBox .videoRepeat.on {
    background-color: #ed6d1f;
    border: 4px solid #b95315;
    color: #fff;
 }
 
 .video .videoRepeatArea .videoRepeatBox .videoRepeat:hover {
    background-color: #ed6d1f;
     border: 4px solid #b95315;
     color: #fff;
 }
 
 .video .timerNum {
   position: absolute;
   /* background: url(../images/video/count3.png); */
   background-size: 100% 100%;
   width: 270px;
   height: 314px;
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   font-size: 0;
}
 
 .video .timerNum.n1 {
    background-image: url(../images/video/count1.png);
 }
 
 .video .timerNum.n2 {
    background-image: url(../images/video/count2.png);
 }
 
 .video .timerNum.n3 {
    background-image: url(../images/video/count3.png);
 }
 
 .video .timerNum p {
    font-family: 'NanumSquareNeo-dEb';
    color: #000;
    font-size: 140px;
 }
 
 .video .clap {
    position: relative;
    display: inline-block;
    background: url(../images/video/clap.png);
    background-size: 100% 100%;
    width: 306px;
    height: 306px;
    top: -75%;
    align-items: center;
    justify-content: center;
    font-size: 0;
 }
 
 /*videoFunction 버튼 영역*/
 
 .videoFunction {
    margin-left: 25px;
 }
 
 .videoFunction>button.on {
    background-color: #2a5f57;
    color: #fff;
 }
 
 .video .videoSubs {
    width: 90px;
    height: 45px;
    background-color: #bfe2dd;
    border-radius: 10px;
    font-family: 'NanumSquareNeo-dEb';
    font-size: 18px;
    position: relative;
    top: -2px;
    margin-right: 10px;
    border: none;
    cursor: pointer;
 }
 
 .video .videoSubs:hover {
    background-color: #5c8c85;
    color: #fff;
 }
 
 .video .videoSubs.on {
    background-color: #5c8c85;
    color: #fff;
 }
 
 .video .videoScript {
    width: 90px;
    height: 45px;
    background-color: #bfe2dd;
    border-radius: 10px;
    font-family: 'NanumSquareNeo-dEb';
    font-size: 18px;
    position: relative;
    top: -2px;
    margin-right: 10px;
 }
 
 .video .videoScript:hover {
    background-color: #5c8c85;
    color: #fff;
 }
 
 .video .videoScript.on {
    background-color: #5c8c85;
    color: #fff;
 }
 
 .video .videoSpeed {
    width: 90px;
    height: 45px;
    background-color: #bfe2dd;
    border-radius: 10px;
    font-family: 'NanumSquareNeo-dEb';
    font-size: 18px;
    position: relative;
    top: -2px;
    border: none;
    cursor: pointer;
 }
 
 .video .videoSpeed:hover {
    background-color: #5c8c85;
    color: #fff;
 }
 
 .video .videoSpeed.on {
    background-color: #5c8c85;
    color: #fff;
 }
 
 
 /*비디오 역할놀이 캐릭터*/
 
 .video .rolePlaying #role01 {
    background-image: url(../punit1/images/char01.png);
    background-repeat: no-repeat;
 }
 
 .video .rolePlaying #role02 {
    background-image: url(../punit1/images/char02.png);
    background-repeat: no-repeat;
 }
 
 .video .rolePlaying #role03 {
    background-image: url(../punit1/images/char01.png);
    background-repeat: no-repeat;
 }
 
 /*비디오 타임라인 개별이미지*/
 .video .videoSceneArea #vScene01 {
    background-image: url(../punit1/images/scene01.png);
    background-repeat: no-repeat;
 }
 
 .video .videoSceneArea #vScene02 {
    background-image: url(../punit1/images/scene02.png);
    background-repeat: no-repeat;
 }
 
 .video .videoSceneArea #vScene03 {
    background-image: url(../punit1/images/scene01.png);
    background-repeat: no-repeat;
 }
 
 .video .videoSceneArea #vScene04 {
    background-image: url(../punit1/images/scene01.png);
    background-repeat: no-repeat;
 }
 
 .video .videoSceneArea #vScene05 {
    background-image: url(../punit1/images/scene01.png);
    background-repeat: no-repeat;
 }
 
 .video .videoSceneArea #vScene06 {
    background-image: url(../punit1/images/scene01.png);
    background-repeat: no-repeat;
 }
 
 .video .videoSceneArea #vScene07 {
    background-image: url(../punit1/images/scene01.png);
    background-repeat: no-repeat;
 }
 
 /*예외 약물(전체)*/
 .videoScene .whole {
    background: #0d99ff !important;
    width: 40px !important;
 }
 
 /*비디오 대본 팝업*/
 
 .videoScriptArea {
    background: #000000a6;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 200;
    top:0;
 }
 
 .videoScriptPop {
    width: 80%;
    height: 800px;
    border: 1px solid #107465;
    /* background-color: #fff; */
    margin: 60px auto;
    border-radius: 15px 30px 30px 30px;
    position: relative;
    overflow: hidden;
 }
 
 .video.videoFull .videoScriptPop {
    height: -webkit-fill-available;
 }
 
 .videoScriptPop .scriptHeader {
    height: 100px;
    /* background-color: #009d85; */
    background: linear-gradient(#1aa791 10%, #009d85);
    padding: 0 20px;
    border-radius: 15px 30px 0 0px;
    box-shadow: 5px 5px 15px 0px #6ec6b9 inset;
 }
 
 .videoScriptPop .scriptHeader>p {
    color: #fff;
    font-family: 'NanumSquareNeo-dEb';
    font-size: 34px;
    line-height: 100px;
    text-indent: 20px;
    text-align: left;
    float: left;
    /* display: inline-block; */
 }
 
 .videoScriptPop .scriptHeader .playScript {
    background: url(../images/video/btn_scriptPlay.png) no-repeat;
    width: 62px;
    height: 62px;
    position: absolute;
    top: 20px;
    right: 330px;
 }
 
 .videoScriptPop .scriptHeader .pauseScript {
    background: url(../images/video/btn_scriptPause.png) no-repeat;
    width: 62px;
    height: 62px;
    position: absolute;
    top: 20px;
    right: 330px;
 }
 
 .videoScriptPop .scriptHeader .stopScript {
    background: url(../images/video/btn_scriptStop.png) no-repeat;
    width: 62px;
    height: 62px;
    position: absolute;
    right: 260px;
    top: 20px;
 }
 
 .videoScriptPop .scriptHeader .closeScript {
    background: url(../images/video/btn_scriptClose.png) no-repeat;
    width: 62px;
    height: 62px;
    position: absolute;
    right: 20px;
    top: 20px;
 }
 
 .videoScriptPop .scriptContent {
    overflow-y: overlay;
    height: 710px;
    padding: 40px 60px;
    position: relative;
    background-color: #fff;
    box-shadow: 5px -15px 12px 0px #cecbcb inset;
 }
 
 .video.videoFull .videoScriptPop .scriptContent {
    height: -webkit-fill-available;
 }
 
 .videoScriptPop .scriptContent .scriptChar {
    text-align: left;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
 }
 
 .videoScriptPop .scriptContent .scriptCharImg {
    width: 102px;
    height: 102px;
    border-radius: 100%;
    box-sizing: border-box;
    border: 2px solid #ddd;
 }
 
 .scriptContent .scriptChar.on .balloon_wrap {
    color: #009d85 !important;;
    /* text-shadow:
       -3px -3px 3px #000, 0px -3px 3px #000, 3px -3px 3px #000,
       -3px 0px 3px #000, 0px 0px 3px #000, 3px 0px 3px #000,
       -3px 3px 3px #000, 0px 3px 3px #000, 3px 3px 3px #000; */
 }
 
 /*비디오 대본 해석 토글*/
 .toggleScript {
    display: inline-block;
    width: 150px;
    height: 60px;
    background-color: #c6ebe5;
    border-radius: 30px;
    position: absolute;
    top: 20px;
    right: 100px;
 }
 
 .toggleScript p {
    color: #000 !important;
    font-size: 20px !important;
    display: inline-block;
    position: absolute;
    left: 20px;
    top: 20px;
    font-family: 'NanumSquareNeo-dEb';
    position: absolute;
    top: 0;
    line-height: 60px;
 }
 
 .custom_input {
    display: none;
 }
 
 .custom_input+label.toggle_btn_label {
    position: absolute;
    width: 70px;
    height: 40px;
    top: 10px;
    right: 10px;
 }
 
 .custom_input+label.toggle_btn_label>span {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    background-color: #fff;
    transition: all .4s;
 }
 
 .custom_input+label.toggle_btn_label>span:before {
    display: flex;
    position: absolute;
    height: 30px;
    width: 30px;
    padding: 0;
    left: 7px;
    bottom: 5px;
    border-radius: 100%;
    background-color: #009d85;
    content: " ";
    -webkit-transition: all .4s;
    transition: all .4s;
 }
 
 .custom_input:checked+label.toggle_btn_label>span {
    background-color: #8dcbc2;
 }
 
 .custom_input:checked+label.toggle_btn_label>span:before {
    -webkit-transform: translateX(calc(3.4rem - 100%));
    -ms-transform: translateX(calc(3.4rem - 100%));
    transform: translateX(calc(3.4rem - 100%));
    right: 7px;
    bottom: 5px;
    content: " ";
 }
 
 .custom_input:disabled+label.toggle_btn_label {
    display: none;
 }
 
 .playcontroller .videoSpeedBox {
    position: absolute;
    width: 90px;
    height: 190px;
    right: 4px;
    top: -223px;
    display: none;
 }
 
 .playcontroller.hide .videoSpeedBox {
    display: none!important;
 }
 
 .videoSpeedBox>ul {
    list-style:none;
    padding:0;
 }
 
 .videoSpeedBox>ul>li {
    display: block;
    width: 90px;
    height: 45px;
    line-height: 45px;
    background-color: #bfe2dd;
    border-radius: 10px;
    font-family: 'NanumSquareNeo-dEb';
    font-size: 18px;
    position: relative;
    margin: 18px 0;
    text-align: center;
    cursor: pointer;
    color: black;
    box-sizing: border-box;
    /* filter: drop-shadow(0px 3px 5px); */
    transition: all 0.2s;
 }
 .videoSpeedBox>ul>li:after {
    content: 'x';
 }
 
 .videoSpeedBox>ul>li:hover {
    background-color: #5c8c85;
    color: #fff;
 }
 .videoSpeedBox>ul>li.on {
    background-color: #5c8c85;
    color: #fff;
 }
 
 div.video div.playcontroller>.subTitle { 
   position:absolute !important;
   bottom: 100px;
   height: fit-content;
   padding: 25px;
   width: 100%;
   left:0px;
   background: rgba(255,255,255,0.5);
   /* background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 35%, rgba(255,255,255,0) 100%); */
  font-family: 'NanumSquareNeo-dEb', sans-serif;
   text-align: center;
   font-size: 72px;
   color: #2e2e2e;
   /* border-bottom: 1px solid rgba(0,0,0,0.1); */
   display: none;
   pointer-events: none;
   text-shadow: -2px -2px 2px #fff, 0px -2px 2px #fff, 2px -2px 2px #fff, -2px 0px 2px #fff, 0px 0px 2px #fff, 2px 0px 2px #fff, -2px 2px 2px #fff, 0px 2px 2px #fff, 2px 2px 2px #fff;
 }
 
 div.video div.playcontroller>.subTitle.on {
    display: block;
 }
 
 /*발음 동영상일때 videoScene*/
 .pronPopup .videoSceneArea {
    bottom: 0 !important;
    top: 45px !important;
    left: 60px !important;
 }
 .pronPopup .videoSceneArea.hide {
    transform: none;
 }
 .pronPopup .videoSceneBox {
    margin: 0 !important;
    height: 180px !important;
 }
 
 .pronPopup .videoScene {
    width: 150px !important;
    height: 150px !important;
    border: 4px solid #6ba59d !important;
    background-color: #fff !important;
 }
 
 .pronPopup .videoScene p {
    position: relative;
    top: 38px;
 }
 
 .pronPopup .videoScene:hover {
    outline: 4px solid #ed6d1f !important;
    border: 4px solid #fff !important;
    background-color: #ed6d1f !important;
    color: #fff !important;
 }
 
 .pronPopup .videoScene.on {
    outline: 4px solid #ed6d1f !important;
    background-color: #ed6d1f !important;
    color: #fff !important;
    border: 4px solid #fff !important;
 }
 
 /*영상 따라 말하기 발화*/
 
 .pronouncePop {
    width: 400px;
    height: 88px;
    border: 2px solid #e0b297;
    background: #ffefe6;
    border-radius: 50px;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: 260px;
 }
 
 .pronouncePop .pronounceBar {
    width: 344px;
    height: 36px;
    background: linear-gradient(#ffc3a2,#ffcaaa,#ffc3a2);
    border: 2px solid #ff9353;
    margin: 25px auto;
    border-radius: 30px;
 }
 
 .pronouncePop .pronounceBar .pronounceBtn {
    background: url(../images/video/btn_pronounce.png) no-repeat;
    width: 62px;
    height: 62px;
    position: absolute;
    left: 110px;
    top: 12px;
 }

 .video_close {
    background: url(../images/video/btn_lpopClose.png) no-repeat;
    width: 110px;
    height: 60px;
    position: absolute;
    right: 60px;
    top: 45px;
    z-index: 200;
    cursor: pointer;
 }
 .video_close:hover {
    background: url(../images/video/btn_lpopClose_h.png) no-repeat;
}