@charset "utf-8";

#videos .slick-slider,
#video-popup .slick-slider {
    position: relative;
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

#videos .slick-list,
#video-popup .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#videos .slick-list:focus,
#video-popup .slick-list:focus {
    outline: none;
}

#videos .slick-list.dragging,
#video-popup .slick-list.dragging {
    cursor: hand;
}

#videos .slick-slider .slick-track,
#videos .slick-slider .slick-list,
#video-popup .slick-slider .slick-track,
#video-popup .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#videos .slick-track,
#video-popup .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

#videos .slick-track:before,
#videos .slick-track:after,
#video-popup .slick-track:before,
#video-popup .slick-track:after {
    display: table;
    content: '';
}

#videos .slick-track:after,
#video-popup .slick-track:after {
    clear: both;
}

#videos .slick-loading .slick-track,
#video-popup .slick-loading .slick-track {
    visibility: hidden;
}

#videos .slick-slide,
#video-popup .slick-slide {
    display: none;
    float: left;
    min-height: 1px;
    height: 100%;
}

#videos [dir='rtl'] .slick-slide,
#video-popup [dir='rtl'] .slick-slide {
    float: right;
}

#videos .slick-slide img,
#video-popup .slick-slide img {
    display: block;
}

#videos .slick-slide.slick-loading img,
#video-popup .slick-slide.slick-loading img {
    display: none;
}

#videos .slick-slide.dragging img,
#video-popup .slick-slide.dragging img {
    pointer-events: none;
}

#videos .slick-initialized .slick-slide,
#video-popup .slick-initialized .slick-slide {
    display: block;
}

#videos .slick-loading .slick-slide,
#video-popup .slick-loading .slick-slide {
    visibility: hidden;
}

#videos .slick-vertical .slick-slide,
#video-popup .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

#videos .slick-arrow.slick-hidden,
#video-popup .slick-arrow.slick-hidden {
    display: none;
}

#videos :focus {
    outline: none;
}

#videos ol, ul {
    margin: 0;
    padding: 0;
}

#videos .video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 149;
    width: 100%;
    height: 100%;
    background: black none;
    opacity: .80;
    filter: alpha(opacity=80);
    -moz-opacity: .8;
    display: none;
}

#videos .pagination-wrapper {
    display: none;
}

#videos .pagination-wrapper ul {
    list-style: outside none none;
}

#videos .list {
    position: relative;
    overflow: hidden;
}

#videos .item {
    overflow: hidden;
    padding: 15px;
    background-color: #fff;
    -webkit-box-shadow: inset 0 0 0 2px white;
    box-shadow: inset 0 0 0 2px white;
    cursor: pointer;
    -webkit-transition: box-shadow 0.2s;
    -moz-transition: box-shadow 0.2s;
    -o-transition: box-shadow 0.2s;
    transition: box-shadow 0.2s;
}

#videos .item.item-hover {
    -webkit-box-shadow: inset 0 0 0 2px #172e9d;
    box-shadow: inset 0 0 0 2px #172e9d;
    color: #4557ae;
}

#videos .item .duration {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: none;
    padding: 1px 4px;
    background-color: black;
    color: white;
    font-size: 13px;
    opacity: .8;
}

#videos .item.item-hover .duration {
    display: block;
}

#videos .item .thumbnail {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
}

#videos .item .gradient {
    position: absolute;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(19, 19, 19, 0);
    background: -moz-linear-gradient(top, rgba(19, 19, 19, 0) 100%, rgba(0, 0, 0, .8) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(19, 19, 19, 0)), color-stop(100%, rgba(0, 0, 0, .8)));
    background: -webkit-linear-gradient(top, rgba(19, 19, 19, 0) 0%, rgba(0, 0, 0, .8) 100%);
    background: -o-linear-gradient(top, rgba(19, 19, 19, 0) 0%, rgba(0, 0, 0, .9) 100%);
    background: -ms-linear-gradient(top, rgba(19, 19, 19, 0) 0%, rgba(0, 0, 0, .8) 100%);
    background: linear-gradient(to bottom, rgba(19, 19, 19, 0) 0%, rgba(0, 0, 0, .8) 100%);
    opacity: .5;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#131313', endColorstr='#000000', GradientType=0);
}

#videos .item.item-hover .gradient {
    background-color: #000000;
    opacity: .6;
}

#videos .item .btn-play {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: none;
    background: rgba(0, 0, 0, 0) url("common/images/btn_play.png") no-repeat center center;
    background-size: 18%;
}

#videos .item.item-hover .btn-play {
    display: block;
}

#videos .item .title {
    position: absolute;
    bottom: 15px;
    left: 0;
    z-index: 1;
    padding: 0 25px 5px;
    max-height: 38px;
    color: #fff;
    line-height: normal;
}

#videos .item.item-hover .title {
    opacity: .3;
}

#videos .loadmore {
    display: none;
}

@media all and (min-width: 980px) {

    #videos .pagination-wrapper {
        position: relative;
        bottom: 10px;
        display: block;
        float: right;
		z-index: 99;
    }

    #videos .pagination-wrapper ul {
        position: relative;
        display: inline-block;
        margin: 0;
        padding: 0;
        list-style: outside none none;
    }

    #videos .pagination-wrapper li {
        display: inline-block;
        float: left;
        margin: 0 5px;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background-color: #ddd;
        cursor: pointer;
    }

    #videos .pagination-wrapper li:hover {
        background: #20a2ff;
    }

    #videos .pagination-wrapper .slick-active {
        background-color: #20a2ff;
    }

    #videos .pagination-wrapper .before-arrow {
        display: none;
        background: url(common/images/arrow_left.png) no-repeat;
    }

    #videos .pagination-wrapper .after-arrow {
        display: none;
        background: url(common/images/arrow_right.png) no-repeat;
    }

    #videos .pagination-wrapper .before-arrow:hover {
        background: url(common/images/arrow_left_hover.png) no-repeat;
    }

    #videos .pagination-wrapper .after-arrow:hover {
        background: url(common/images/arrow_right_hover.png) no-repeat;
    }

    #videos .inner {
        position: relative;
        overflow: hidden;
    }

    #videos .list {
        height: 390px;
    }

    #videos .list:not(:first-child) {
        display: none;
    }

    #videos .item {
        position: relative;
        z-index: 0;
        display: inline-block;
        float: left;
        margin: 0;
        min-height: inherit;
        width: 16.6666%;
        height: 195px;
    }

    #videos .item .title {
        max-height: 88px;
        color: #000;
    }

    #videos .item.item-hover .title {
        color: #1428a0;
        opacity: 1;
    }

    #videos .theme-01 .item:not(:first-child) {
        border-left: 1px solid #dadada;
    }

    #videos .theme-02 .item:nth-child(-n+4),
    #videos .theme-04 .item:nth-child(-n+5) {
        border-right: 1px solid #dadada;
        border-bottom: 1px solid #dadada;
    }

    #videos .theme-01 .item:nth-child(-n+5):not(:first-child),
    #videos .theme-04 .item:nth-child(6) {
        border-bottom: 1px solid #dadada;
    }

    #videos .theme-02 .item:nth-child(5) {
        clear: both;
    }

    #videos .theme-02 .item:nth-child(n+5),
    #videos .theme-04 .item:not(:nth-child(6n)) {
        border-right: 1px solid #dadada;
    }

    #videos .theme-01 .item:first-child,
    #videos .theme-02 .item:nth-child(9),
    #videos .theme-03 .item:first-child,
    #videos .theme-03 .item:nth-child(6) {
        width: 33.33333%;
        height: 100%;
    }

    #videos .theme-02 .item:nth-child(9),
    #videos .theme-03 .item:nth-child(6) {
        position: absolute;
        top: 0;
        right: 0;
    }

    #videos .theme-03 .item:first-child {
        border-right: 1px solid #dadada;
    }

    #videos .theme-03 .item:nth-child(2) {
        position: absolute;
        top: 0;
        left: 33.33333%;
        border-bottom: 1px solid #dadada;
    }

    #videos .theme-03 .item:nth-child(3) {
        position: absolute;
        top: 0;
        right: 33.33333%;
        border-bottom: 1px solid #dadada;
        border-left: 1px solid #dadada;
    }

    #videos .theme-03 .item:nth-child(4) {
        position: absolute;
        bottom: 0;
        left: 33.33333%;
    }

    #videos .theme-03 .item:nth-child(5) {
        position: absolute;
        right: 33.33333%;
        bottom: 0;
        border-left: 1px solid #dadada;
    }

    #videos .theme-03 .item:nth-child(6) {
        border-left: 1px solid #dadada;
    }

    #videos .item .btn-play {
        background-size: 30%;
    }

    #videos .theme-01 .item:first-child .btn-play,
    #videos .theme-02 .item:nth-child(9) .btn-play,
    #videos .theme-03 .item:first-child .btn-play,
    #videos .theme-03 .item:nth-child(6) .btn-play {
        background-size: 18%;
    }

    #videos .theme-01 .item:first-child .thumbnail,
    #videos .theme-02 .item:nth-child(9) .thumbnail,
    #videos .theme-03 .item:first-child .thumbnail,
    #videos .theme-03 .item:nth-child(6) .thumbnail {
        height: 100%;
    }

    #videos .item .thumbnail {
        height: 91px;
    }

    #videos .item .thumbnail .gradient {
        opacity: 0.1;
    }

    #videos .item.item-hover .thumbnail .gradient {
        opacity: 0.5;
    }

    #videos .theme-01 .item:first-child .thumbnail .gradient,
    #videos .theme-02 .item:nth-child(9) .thumbnail .gradient,
    #videos .theme-03 .item:first-child .thumbnail .gradient,
    #videos .theme-03 .item:nth-child(6) .thumbnail .gradient {
        opacity: 0.5;
    }

    #videos .item .title {
        bottom: 0;
        padding: 3px 17px 0;
        max-height: 85px;
        height: 85px;
        line-height: 18px;
    }

    #videos .theme-01 .item:first-child .title,
    #videos .theme-02 .item:nth-child(9) .title,
    #videos .theme-03 .item:first-child .title,
    #videos .theme-03 .item:nth-child(6) .title {
        padding: 0 30px 5px;
        color: #fff;
        font-size: 20px;
        height: inherit;
        margin-bottom: 15px;
        line-height: 23px;
    }
}

@media all and (min-width: 0px) and (max-width: 979px) {

    #videos .list:not(:first-child) {
        display: none;
    }

    #videos .item {
        position: relative;
        display: inline-block;
        float: left;
        width: 50%;
        height: 150px;
    }

    #videos .theme-01 .item:first-child,
    #videos .theme-02 .item:nth-child(9),
    #videos .theme-03 .item:first-child,
    #videos .theme-03 .item:nth-child(6) {
        width: 100%;
        height: 200px;
    }

    #videos .item .title {
        max-height: 63px;
        text-shadow: 1px 1px 5px #000;
        font-size: 18px;
    }

    #videos .theme-01 .item:first-child .title,
    #videos .theme-02 .item:nth-child(9) .title,
    #videos .theme-03 .item:first-child .title,
    #videos .theme-03 .item:nth-child(6) .title {
        max-height: 80px;
        font-size: 22px;
    }

    #videos .theme-01 .item:nth-child(even),
    #videos .theme-02 .item:nth-child(odd):not(:nth-child(9)),
    #videos .theme-03 .item:nth-child(2),
    #videos .theme-03 .item:nth-child(4),
    #videos .theme-04 .item:nth-child(odd) {
        border-right: 1px solid #dadada;
    }

    #videos .theme-01 .item:not(:first-child),
    #videos .theme-02 .item:nth-child(n+3),
    #videos .theme-03 .item:not(:first-child),
    #videos .theme-04 .item:not(:nth-child(-n+2)),
    #videos .theme-04:not(:first-child) .item:nth-child(-n+2) {
        border-top: 1px solid #dadada;
    }

    #videos .loadmore {
        display: inline-block;
        margin: 15px auto;
        width: 100%;
    }
}

@media all and (min-width: 768px) and (max-width: 979px) {
    #videos .item .btn-play {
        background-size: 16%;
    }

    #videos .theme-01 .item:first-child .btn-play,
    #videos .theme-02 .item:nth-child(9) .btn-play,
    #videos .theme-03 .item:first-child .btn-play,
    #videos .theme-03 .item:nth-child(6) .btn-play {
        background-size: 8%;
    }
}

@media all and (min-width: 0px) and (max-width: 767px) {
}

@media all and (min-width: 600px) and (max-width: 767px) {
    #videos .item .btn-play {
        background-size: 20%;
    }

    #videos .theme-01 .item:first-child .btn-play,
    #videos .theme-02 .item:nth-child(9) .btn-play,
    #videos .theme-03 .item:first-child .btn-play,
    #videos .theme-03 .item:nth-child(6) .btn-play {
        background-size: 10%;
    }
}

@media all and (min-width: 0px) and (max-width: 599px) {
    #videos .item .btn-play {
        background-size: 26%;
    }

    #videos .theme-01 .item:first-child .btn-play,
    #videos .theme-02 .item:nth-child(9) .btn-play,
    #videos .theme-03 .item:first-child .btn-play,
    #videos .theme-03 .item:nth-child(6) .btn-play {
        background-size: 13%;
    }

    #videos .item .title {
        font-size: 16px;
        line-height: 1em;
        max-height: 55px;
        padding: 0 22px 5px;
    }

    #videos .theme-01 .item:first-child .title,
    #videos .theme-02 .item:nth-child(9) .title,
    #videos .theme-03 .item:first-child .title,
    #videos .theme-03 .item:nth-child(6) .title {
        font-size: 18px;
        line-height: 1em;
    }

}

html.overflow-hidden,
body.overflow-hidden {
    overflow-y: hidden;
    height: 100%;
}

.nav-container.nav-hidden {
    display: none !important;
}

#video-popup {
    position: relative;
    overflow: hidden;
    padding: 25px 30px;
    height: auto;
    background-color: #fff;
    z-index: 150;
}

#video-popup a {
    text-decoration: none;
}

#video-popup p {
    margin: 0;
    padding: 0;
}

#video-popup ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#video-popup :focus {
    outline: none;
}

#video-popup .survey-wrapper .social-wrapper .icon:hover {
    color: #1428a0;
}

#video-popup .icon-close {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: auto;
    background: none;
    color: #dadada;
    content: "\e604";
    font-size: 40px;
}

#video-popup .icon-twitter:before {
    content: "\e610";
}

#video-popup .button-video {
    display: block;
    float: left;
    margin: 0;
    padding: 7px 15px 6px;
    border: 1px solid #1428a0;
    border-radius: 0;
    background-color: white;
    background-clip: padding-box;
    color: #1428a0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 14px;
    font-family: "InterfaceB", Arial, Helvetica, sans-serif;
    transition: all .2s ease 0s;
}

#video-popup .button-video .icon {
    position: relative;
    margin-top: -1px;
    margin-right: -3px;
    font-size: 20px;
}

#video-popup .button-active {
    background: #1428a0 none repeat scroll 0 0;
    color: #fff;
}

#video-popup .button:hover {
    background-color: #1428a0;
    color: white;
}

#video-popup .button-blue {
    background: #1428a0 none repeat scroll 0 0;
    color: #fff;
}

#video-popup .button-blue:hover {
    background: #0c1861 none repeat scroll 0 0;
    color: #fff;
}

#video-popup .button-gray {
    background: #707070 none repeat scroll 0 0;
    color: #fff;
    border-color: #707070;
}

#video-popup .button-gray:hover {
    background: whitesmoke none repeat scroll 0 0;
    color: #204562;
}

#video-popup .feedback-reason,
#video-popup .feedback-footer .alert-module.succeed,
#video-popup .survey-wrapper .button-back {
    display: none;
}

#video-popup .item.item-hover,
#video-popup .icon:hover,
#video-popup .noUi-handle,
#video-popup .button-video:hover,
#video-popup .pagination-wrapper li:hover {
    cursor: pointer;
}

#video-popup .header,
#video-popup .content,
#video-popup .content .player-wrapper,
#video-popup .content .survey-wrapper,
#video-popup .sub-content {
    width: 100%;
}

#video-popup .header {
    position: relative;
    margin-bottom: 18px;
}

#video-popup .content .player-wrapper {
    height: 100%;
}

#video-popup .content .survey-wrapper {
    position: relative;
    overflow: hidden;
}

#video-popup .header .title {
    width: 95%;
    line-height: 1.1em;
}

#video-popup .header .title, #video-popup .description {
    overflow: hidden;
}

#video-popup .content .video-js {
    height: 100%;
}

#video-popup .feedback,
#video-popup .feedback-reason {
    position: relative;
    height: 100%;
    font-size: 1.1em;
}

#video-popup .social-wrapper {
    overflow: hidden;
    line-height: 1.0em;
}

#video-popup .social-list {
    float: right;
    margin-bottom: 10px;
}

#video-popup .social-list li {
    display: inline-block;
    float: none;
    padding-right: 5px;
    width: auto;
    height: auto;
    border: 0;
}

#video-popup .social-list li a {
    width: 20%;
    color: #000;
    font-size: 30px;
}

#video-popup .social-list.disabled li a {
    color: #e5e5e5;
}

#video-popup .social-list span {
    margin: 0;
    width: auto;
    height: auto;
    background: none;
}

#video-popup .survey-wrapper.saved .satisfaction,
#video-popup .survey-wrapper.saved .title,
#video-popup .survey-wrapper.saved button:not(.button-active),
#video-popup .survey-wrapper.saved .item  {
    color: #e5e5e5;
    pointer-events:none;
    cursor:none;
}

#video-popup .survey-wrapper.saved .noUi-connect {
    box-shadow: inset 0 0 3px #e5e5e5;
}

#video-popup .survey-wrapper.saved .noUi-target,
#video-popup .survey-wrapper.saved button.button-active {
    background: #e5e5e5;
}

#video-popup .survey-wrapper .title h3 {
    line-height: 1.2em;
}

#video-popup .survey-wrapper.saved button {
    border-color: #e5e5e5;
}

#video-popup .satisfaction-steps li {
    position: relative;
    top: -8px;
    float: left;
    width: 25%;
    height: 8px;
    background-clip: content-box;
}

#video-popup .satisfaction-steps li + li {
    border-left: 1px solid #dbdbdb;
}

#video-popup .satisfaction-options {
    overflow: hidden;
    width: 100%;
}

#video-popup .satisfaction-options li {
    float: left;
    padding: 5px 0 5px;
    width: 50%;
}

#video-popup .satisfaction-options li:last-child {
    text-align: right;
}

#video-popup .feedback-reason-list {
    line-height: 1em;
}

#video-popup .feedback-reason-list label {
    overflow: hidden;
    margin-left: 19px;
    white-space: nowrap;
    font-family: inherit;
}

#video-popup .feedback-reason-list [type="radio"]  {
    display: none;
}

#video-popup .feedback-reason-list  [type="radio"] + label span  {
    position: absolute;
    left: 0;
    display: inline-block;
    margin-top: 1px;
    width: 15px;
    height: 15px;
    border: 1px solid #DBDBDB;
    border-radius: 100%;
    background-clip: padding-box;
    cursor: pointer;
}

#video-popup .feedback-reason-list  [type="radio"]:checked + label span:before {
    position: absolute;
    top: .15em;
    left: .15em;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background: #1428a0;
    background-clip: padding-box;
    content: "";
}

#video-popup .feedback-additional-comment {
    overflow: hidden;
    width: 100%;
    border-radius: 0;
    resize: none;
    padding: 5px !important;
    font-size: 16px;
}

#video-popup .survey-wrapper .hit-count {
    font-size: .9em;
}

#video-popup .survey-wrapper .hit-count .count {
    padding-right: .3em;
    color: black;
    font-family: "InterfaceB", Arial, Helvetica, sans-serif;
}

#video-popup .survey-wrapper .hit-count .icon {
    color: #172e9d;
}

#video-popup .survey-wrapper .button-back {
    margin-right: 5px;
}

#video-popup .sub-content-header {
    position: relative;
    height: 35px;
}

#video-popup .sub-content-title {
    position: absolute;
    bottom: 0;
}

#video-popup .pagination-wrapper {
    visibility: hidden;
}

#video-popup .item a {
    display: block;
    width: 100%;
    height: 100%;
}

#video-popup .item .thumbnail {
    position: relative;
    width: 100%;
    height: auto;
    resize: both;
}

#video-popup .item .title {
    overflow: hidden;
    margin-top: 5px;
    max-height: 52px;
    color: #212428;
    font-size: 15px;
    line-height: 1.1em;
}

#video-popup .item.item-hover .title {
    color: #1428a0;
}

#video-popup .item .duration {
    position: absolute;
    right: 0;
    bottom: 0;
    display: none;
    padding: 1px 4px;
    background-color: black;
    color: white;
    font-size: 14px;
    opacity: .8;
}

#video-popup .item.item-hover .duration {
    display: block;
}

#video-popup .item.item-hover .gradient {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background-color: #000000;
    opacity: .6;
}

#video-popup .item .btn-play {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background: rgba(0, 0, 0, 0) url("common/images/btn_play.png") no-repeat center center;
    background-size: 30%;
}

#video-popup .item.item-hover .btn-play {
    display: block;
}

#video-popup .video-js .vjs-big-play-button {
    opacity: .6;
}

#video-popup .video-js .vjs-big-play-button {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

#video-popup .video-js .vjs-big-play-button,
#video-popup .video-js .vjs-play-progress,
#video-popup .video-js .vjs-volume-level {
    background-color: #172E9D;
}

#video-popup .alert-module.succeed {
    padding: 5px 0 5px 34px;
}

#video-popup .alert-module.succeed {
    display: none;
    box-sizing: border-box;
    height: 100%;
    border: 1px solid #8affa9;
    background: #d6ffe1;
    color: #13bd40;
}

#video-popup .disabled {
    color: #e5e5e5;
}

#video-popup .vjs-custom-overlay {
    position: relative;
    z-index: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "InterfaceR", Arial, Helvetica, "San-Serif", serif;
}

#video-popup .vjs-custom-overlay.vjs-hidden {
    display: none;
}

#video-popup .vjs-endscreen-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: .6em;
    text-align: left;
    line-height: normal;
}

#video-popup .vjs-endscreen-overlay-content .overlay-desc-title {
    font-weight: bold;
    font-size: 20px;
}

#video-popup .vjs-endscreen-overlay-content .overlay-desc {
    margin-top: 3px;
    font-size: 16px;
    line-height: 20px;
}

#video-popup .vjs-overlay-buttons {
    position: absolute;
    top: 25%;
    height: 100px;
}

#video-popup .video-js .vjs-restart-control::before {
    font-size: 90px;
}

#video-popup .vjs-control-content,
#video-popup .vjs-trigger-social-control {
    display: none;
}

#video-popup .custom-overlay-background-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-size: contain;
    opacity: .4;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    -o-background-size: contain;
}

#video-popup .alert-module.succeed .icon {
    padding-top: 1px;
    font-size: 20px;
    left: 8px !important;
}

#video-popup .loadmore {
    display: none;
}

#video-popup .send-email input {
    height: inherit;
    padding: 5px !important;
}

#video-popup .send-email .error {
    font-size: 14px;
}

#video-popup .send-email button {
    margin: 0;
}

@media all and (min-width: 980px) {

    #video-popup {
        position: fixed;
        width: 920px;
        overflow: hidden;
        left: 0;
        right: 0;
        top: 50%;
        margin: -328px auto 0;
    }

    #video-popup .header .title {
        font-size: 30px;
    }

    #video-popup .header .description {
        max-height: 26px;
        height: 26px;
        font-size: 16px;
    }

    #video-popup .header {
        margin-bottom: 18px;
    }

    #video-popup .content {
        height: 315px;
    }

    #video-popup .content .player-wrapper {
        position: relative;
        float: left;
        margin: 0 auto;
        width: 560px;
    }

    /*640	360*/
    /*768	432*/
    /*896	504*/
    #video-popup .content .video-js {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
    }

    #video-popup .content .survey-wrapper {
        float: right;
        width: 280px;
        height: 100%;
    }

    #video-popup .sub-content {
        margin-top: 15px;
        height: 192px;
    }

    #video-popup .survey-wrapper .feedback-reason .title h3 {
        margin-bottom: 2px;
        font-size: 17px;alert_d
    }

    #video-popup .satisfaction-field {
        margin: 15px 0;
    }

    #video-popup .satisfaction-field [data-range] {
        padding: 0 10px;
    }

    #video-popup .satisfaction-field .noUi-handle {
        top: -5px;
        left: -10px;
        width: 20px;
        height: 20px;
    }

    #video-popup .satisfaction-options {
        font-size: 14px;
    }

    #video-popup .feedback-reason-list {
        margin-bottom: .3em;
    }

    #video-popup .feedback-additional-comment {
        min-height: 100px;
    }

    #video-popup .survey-wrapper .hit-count {
        position: absolute;
        bottom: 35px;
    }

    #video-popup .survey-wrapper .feedback-footer {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    #video-popup .survey-wrapper .feedback-footer .buttons {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    #video-popup .sub-content-title {
        font-size: 25px;
    }

    #video-popup #related-video-container {
        margin-top: 7px;
    }

    #video-popup .list:not(:first-child) {
        display: none;
    }

    #video-popup .item {
        float: left;
        margin: 0 2.5% 0 0;
        width: 18%;
    }

    #video-popup .item:last-child {
        margin: 0;
    }

    #video-popup .pagination-wrapper {
        position: absolute;
        right: 0;
        bottom: 0;
        visibility: visible;
    }

    #video-popup .pagination-wrapper ul {
        position: relative;
        display: inline-block;
        margin: 0;
        padding: 0;
    }

    #video-popup .pagination-wrapper li {
        display: inline-block;
        float: left;
        margin: 0 5px;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background-color: #ddd;
    }

    #video-popup .pagination-wrapper li:hover,
    #video-popup .pagination-wrapper .slick-active {
        background: #20a2ff;
    }

    #video-popup .pagination-wrapper .before-arrow {
        display: none;
        background: url(common/images/arrow_left.png) no-repeat;
    }

    #video-popup .pagination-wrapper .after-arrow {
        display: none;
        background: url(common/images/arrow_right.png) no-repeat;
    }

    #video-popup .pagination-wrapper .before-arrow:hover {
        background: url(common/images/arrow_left_hover.png) no-repeat;
    }

    #video-popup .pagination-wrapper .after-arrow:hover {
        background: url(common/images/arrow_right_hover.png) no-repeat;
    }

    #video-popup .loadmore {
        display: none !important;
    }
}

@media all and (min-width: 0) and (max-width: 979px) {

    #video-popup {
        position: fixed;
        top: 0;
        left: 0;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 30px 20px 0;
        max-width: 100%;
        width: 100% !important;
        height: 100% !important;
    }

    #video-popup .header .title {
        display: inline-block;
        width: 90%;
        font-size: 30px;
    }

    #video-popup .button-video {
        font-size: 16px;
    }

    #video-popup .header {
        margin-bottom: 15px;
    }

    #video-popup .content {
        margin-bottom: 25px;
    }

    #video-popup .sub-content {
        overflow: hidden;
        padding-bottom: 10px;
    }

    #video-popup .content .player-wrapper {
        position: relative;
        display: block;
        padding-bottom: 56.25%;
        height: 0;
    }

    #video-popup .content .video-js {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #video-popup .content .survey-wrapper {
        margin-top: 20px;
    }

    #video-popup .social-wrapper {
        margin-bottom: 10px;
    }

    #video-popup .social-list {
        margin-bottom: 0;
    }

    #video-popup .social-list li {
        padding-right: 10px;
    }

    #video-popup .survey-wrapper .title h3 {
        margin-bottom: 5px;
        font-size: 20px;
    }

    #video-popup .satisfaction .question-block {
        margin-bottom: 5px;
    }

    #video-popup .satisfaction-field {
        margin: 15px 0 5px;
    }

    #video-popup .satisfaction-options li {
        padding: .5em 0;
    }

    #video-popup .satisfaction-field [data-range] {
        padding: 0 18px;
    }

    #video-popup .satisfaction-field .noUi-handle {
        left: -12px;
    }

    #video-popup .satisfaction-options {
        font-size: 14px;
    }

    #video-popup .feedback-options {
        height: 35px;
    }

    #video-popup .survey-wrapper .hit-count {
        margin: .7em 0;
    }

    #video-popup .feedback-reason-list {
        margin: 10px 0 15px;
    }

    #video-popup .feedback-reason-list label {
        margin-left: 25px;
        font-size: 16px;
    }

    #video-popup .feedback-reason-list [type="radio"] + label span {
        margin-top: 1px;
        width: 18px;
        height: 18px;
    }

    #video-popup .feedback-reason-list [type="radio"]:checked + label span:before {
        top: 3px;
        left: 3px;
    }

    #video-popup .feedback-additional-comment {
        min-height: 70px;
    }

    #video-popup .survey-wrapper .feedback-footer .buttons{
        margin-top: 0px;
    }
    
    #video-popup .survey-wrapper .feedback-footer .alert-module{
        margin-top: 150px;
    }

    #video-popup .sub-content-title {
        font-size: 25px;
    }

    #video-popup #related-video-container {
        margin-top: 7px;
    }

    #video-popup .list:not(:first-child) {
        display: none;
    }

    #video-popup .item {
        position: relative;
        margin: .5em 0 0;
        width: 100%;
    }

    #video-popup .list:first-child .item:first-child {
        margin: 0;
    }

    #video-popup .item .thumbnail {
        position: absolute;
        top: 0;
        width: 160px;
    }

    #video-popup .item .title {
        margin: 0 0 0 175px;
        max-height: 90px;
        height: 90px;
        font-size: 16px;
    }

    #video-popup .alert-module.succeed {
        padding: 10px 0 0 34px;
        height: 45px;
    }

    #video-popup .loadmore {
        margin-top: 15px;
        padding: 10px 25px;
        width: 100%;
    }

    #video-popup .vjs-overlay-buttons {
        top: 30%;
    }
}

@media all and (min-width: 0px) and (max-width: 767px) {

    #video-popup .header .title {
        font-size: 30px;
    }

    #video-popup .icon-close {
        font-size: 45px;
    }

    #video-popup .item .thumbnail {
        width: 128px;
    }

    #video-popup .item .title {
        margin-left: 143px;
        max-height: 72px;
        height: 72px;
        font-size: 15px;
    }

    #video-popup .vjs-endscreen-overlay-content {
        padding: .5em;
        font-size: .8em;
    }

    #video-popup .vjs-restart-control {
        font-size: .7em;
    }

}

@media all and (min-width: 0px) and (max-width: 599px) {
    #video-popup {
        padding: 25px 15px 0;
    }

    #video-popup .header .title {
        font-size: 25px;
    }

    #video-popup .item .thumbnail {
        width: 112px;
    }

    #video-popup .item .title {
        margin-left: 122px;
        max-height: 63px;
        height: 63px;
    }

    #video-popup .vjs-endscreen-overlay-content {
        font-size: .7em;
    }

    #video-popup .vjs-restart-control {
        font-size: .6em;
    }

    .video-js .vjs-restart-control::before {
        font-size: 70px;
    }

    #video-popup .vjs-endscreen-overlay-content .overlay-desc-title {
        font-size: 18px;
    }

    #video-popup .vjs-endscreen-overlay-content .overlay-desc {
        font-size: 14px;
        line-height: 18px;
    }

}

@media all and (min-width: 0px) and (max-width: 480px) {
    #video-popup {
        padding: 20px 10px 0;
    }

    #video-popup .header .title {
        font-size: 22px;
    }

    #video-popup .header .description {
        font-size: 15px;
    }

    #video-popup .survey-wrapper .title h3 {
        font-size: 18px;
    }

    #video-popup .sub-content-title {
        font-size: 22px;
    }

    #video-popup .vjs-endscreen-overlay-content {
        font-size: .6em;
    }

    #video-popup .vjs-restart-control {
        font-size: .5em;
    }

    #video-popup .vjs-overlay-buttons {
        top: 20%;
    }

    #video-popup .vjs-endscreen-overlay-content .overlay-desc-title {
        font-size: 16px;
    }

    #video-popup .vjs-endscreen-overlay-content .overlay-desc {
        margin-top: 1px;
        font-size: 14px;
        line-height: 14px;
    }

}

#video-popup .survey-wrapper .feedback .title h3 ,.survey-wrapper .feedback .item h3 {
	font-size:18px;
	font-weight:normal;
	margin-bottom:0px;
}

#video-popup .survey-wrapper .feedback .alert-defScore {
	display:none;
    color:red;
    font-size:14px;
    margin:0 0 0 0px;
    line-height:0.9em;
}

#video-popup .survey-wrapper .feedback .feedback-options {
	display:inline-table;
    margin-top:3px;
}

#video-popup .survey-wrapper .feedback-reason .reason h3 {
	font-size:20px;
	font-weight:normal;
	margin-bottom:0px;
}

#video-popup .survey-wrapper .feedback .item,
#video-popup .survey-wrapper .feedback-reason .reason  {
	float:left;
	width:100%;
}

#video-popup .survey-wrapper .feedback  .item {
	margin-top:0px;
	margin-bottom:5px;
}

#video-popup .survey-wrapper .feedback-reason .reason  {
	margin-top:3px;
}

#video-popup .survey-wrapper .satisfaction {
	display: none;
}

#video-popup .survey-wrapper .feedback textarea  {
	min-height:90px;
}

#video-popup .survey-wrapper .feedback-reason textarea {
	min-height:55px;
	margin-bottom:10px;
}


