.flex-column {
    max-width: 260px;
}

.scale {
    transform: scaleY(1.05);
    padding-top: 5px;
}

#sidebar {
    overflow: hidden;
    z-index: 3;
}
#sidebar .list-group {
    min-width: 400px;
    background-color: red;
    min-height: 100vh;
}
#sidebar i {
    margin-right: 6px;
}

#sidebar .list-group-item {
    border-radius: 0;
    background-color: #333;
    color: #ccc;
    border-left: 0;
    border-right: 0;
    border-color: #2c2c2c;
    white-space: nowrap;
}

/* highlight active menu */
#sidebar .list-group-item:not(.collapsed) {
    background-color: #222;
}

/* closed state */
#sidebar .list-group .list-group-item[aria-expanded="false"]::after {
    content: " \f0d7";
    font-family: FontAwesome;
    display: inline;
    text-align: right;
    padding-left: 5px;
}

/* open state */
#sidebar .list-group .list-group-item[aria-expanded="true"] {
    background-color: #222;
}
#sidebar .list-group .list-group-item[aria-expanded="true"]::after {
    content: " \f0da";
    font-family: FontAwesome;
    display: inline;
    text-align: right;
    padding-left: 5px;
}

/* level 1*/
#sidebar .list-group .collapse .list-group-item,
#sidebar .list-group .collapsing .list-group-item  {
    padding-left: 20px;
}

/* level 2*/
#sidebar .list-group .collapse > .collapse .list-group-item,
#sidebar .list-group .collapse > .collapsing .list-group-item {
    padding-left: 30px;
}

/* level 3*/
#sidebar .list-group .collapse > .collapse > .collapse .list-group-item {
    padding-left: 40px;
}

/* footer powered by div and link*/
.powered-container {
    line-height: 1.4em;
    background-color: #1d1f22;
    width: 100%;
    /*position: fixed;*/
    bottom: 0;
    z-index: 999;
}

#powered-footer-link {
    text-decoration: none;
    color: #666;
    font-size: 10px;
    padding-left: .3em;
}

@media only screen and (min-width: 1600px) {
    .powered-container {
        position: unset !important;
    }
}

@media (max-width:768px) {
    #sidebar {
        min-width: 35px;
        max-width: 40px;
        overflow-y: auto;
        overflow-x: visible;
        transition: all 0.25s ease;
        transform: translateX(-45px);
        position: fixed;
    }

    #sidebar.show {
        transform: translateX(0);
    }

    #sidebar::-webkit-scrollbar{ width: 0px; }

    #sidebar, #sidebar .list-group {
        min-width: 35px;
        overflow: visible;
    }
    /* overlay sub levels on small screens */
    #sidebar .list-group .collapse.show, #sidebar .list-group .collapsing {
        position: relative;
        z-index: 1;
        width: 190px;
        top: 0;
    }
    #sidebar .list-group > .list-group-item {
        text-align: center;
        padding: .75rem .5rem;
    }
    /* hide caret icons of top level when collapsed */
    #sidebar .list-group > .list-group-item[aria-expanded="true"]::after,
    #sidebar .list-group > .list-group-item[aria-expanded="false"]::after {
        display:none;
    }
}

.collapse.show {
    visibility: visible;
}
.collapsing {
    visibility: visible;
    height: 0;
    -webkit-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.collapsing.width {
    -webkit-transition-property: width, visibility;
    transition-property: width, visibility;
    width: 0;
    height: 100%;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.play-overlay {
    position: absolute;
    color: #ffffff;
    background-color: rgba(0,0,0,0.2);
    font-size: 6em;
    top: 50%;
    left: 50%;
    text-decoration: none !important;
    bottom: 0;
    height: 1em;
    transform: translate(-50%, -50%);
}
.playOverlayLightbox{
    position: absolute;
    color: #ffffff;
    background-color: rgba(0,0,0,0.2);
    font-size: 6rem;
    margin-left: 45%;
    margin-top: -24%;
    width: 6rem;
    text-decoration: none !important;
}
/*New download button*/
.playkit-icon.playkit-icon-download{
    opacity: 0.8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 20 16' width='16' height='16'%3E%3Cpath fill='%23fff' d='M11.5 7l-4 4-4-4h2.5v-6h3v6zM7.5 11h-7.5v4h15v-4h-7.5zM14 13h-2v-1h2v1z' /%3E%3C/svg%3E");
}
.playkit-icon.playkit-icon-download:hover {
    opacity: 0.9;
}

.playkit-icon.playkit-icon-embed{
    opacity: 0.8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16' viewBox='0 0 20 16'%3E%3Cpath fill='%23fff' d='M13 11.5l1.5 1.5 5-5-5-5-1.5 1.5 3.5 3.5z'/%3E%3Cpath fill='%23fff' d='M7 4.5l-1.5-1.5-5 5 5 5 1.5-1.5-3.5-3.5z'/%3E%3E%3Cpath fill='%23fff' d='M10.958 2.352l1.085 0.296-3 11-1.085-0.296 3-11z' /%3E%3C/svg%3E");
}
.playkit-icon.playkit-icon-embed:hover {
    opacity: 0.9;
}

/* New toolbar icon for embed */
#embedButton{
    background-image: url("../image/embed-gray.svg");
    -webkit-transition: color .2s linear;
    -o-transition: color .2s linear;
    transition: color .2s linear;
	background-size: 27px;
	background-position: center;
    background-repeat: no-repeat;
}

#embedButton:hover{
    background-image: url("../image/embed.svg");
    -webkit-transition: color .2s linear;
    -o-transition: color .2s linear;
    transition: color .2s linear;
}


#closeEmbedDialog {
    height:40px;
    width:40px;
    background-image: url("../image/close.svg");
    float: right;
	background-size: 27px;
	background-position: center;
    background-repeat: no-repeat;
}

.embed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    padding: 30px;
}

.embed-dialog {
    display: block;
    opacity: 1;
}

.embed-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    text-align: center;
    color: #fff;
    padding: 60px 20px 30px 20px;
    overflow-y: auto;
}

.embed-title {
    font-weight: bolder;
    font-size: 1.75rem;
    float: left;
}

.embed-code {
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 15px;
    line-height: 18px;
    color: #fff;
    padding: 8px 10px;
    text-overflow: ellipsis;
}

.embed-code:focus {
    background-color: #fff;
    border-color: #fff;
    color: #333;
}

#playkit-asset-embed-code {
    height:160px;
}

#playkit-asset-embed-container{
    width:inherit;
}

#share-floating-bar {
    position: fixed;
    top: 50%;
    z-index:1021;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#share-floating-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

#share-floating-bar a:hover {
    background-color: #000;
}

.share-floating-bar-facebook {
    background: #3B5998;
    color: white;
}

.share-floating-bar-twitter {
    background: #55ACEE;
    color: white;
}

.share-floating-bar-linkedin {
    background: #007bb5;
    color: white;
}

.share-floating-bar-pinterest {
    background: #bb0000;
    color: white;
}

@media screen and (max-width:768px) {
    #share-floating-bar {
        position: fixed;
        top: unset;
        left: unset;
        bottom: -2%;
        right: 10px;
    }
    #share-floating-bar a {
        display: inline-block;
        padding: 11.5px 13.15px;
        border-radius: 6px;
        font-size: 1.33333333em;
        line-height: .75em;
    }
}

@media print {
    #share-floating-bar {
        display: none;
    }
}

.lightbox > .img-fluid {
    max-height: 288px;
}

.img-play-overlay {
    position: relative;
    width: 100%;
}

.img-videoplay {
    display: block;
}

.external-container {
    display: inline-block;
}
.video-iframe {
    height: 100%;
}

.linked-container {
    position: relative;
    width: 100%;
}

.linked-url{
    position: absolute;
    color: transparent;
    background-color: transparent;
    text-decoration: none !important;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.linked-url:hover{
    transition: background-color 1s linear,
        left .6s ease-out 1s,
        transform 1s steps(3, start),
        color .6s ease, font-size .3s linear;
    color: #fff;
    background-color: rgba(0,0,0,0.2);
}

.card-container {
    position: relative;
    margin-bottom: 0px;
    display: block;
    -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
    page-break-inside: avoid; /* Firefox */
    break-inside: avoid; /* IE 10+ */
    backface-visibility: hidden;
}

@media only screen and (min-width: 576px) {
    .card-columns #player-gui {
        overflow: visible !important;
    }
}

.content-flex-center {
    display: flex;
    justify-content: center;
}

.playkit-icon-picture-in-picture{
    display: none !important;
}

/*fix for responsive embed screen*/

.force-justify-center {
    justify-content: center !important;
    -ms-flex-pack: center !important;
}

.embed-content-size {
    max-width: 400px !important;
}

.classic-caption-overlay {
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.8;
  transition: .25s ease;
  color: #EEE;
  font-size: 16px;
  background-color: #000000;
  padding: 2%;
  z-index: 10;
}

.classic-caption-container {
  display: flex;
  flex-direction: column-reverse;
}

.carousel-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
 opacity: 0.8;
  transition: .25s ease;
  color: #EEE;
  font-size: 16px;
  background-color: #000000;
  padding: 2%;
  z-index: 10;
}

.masonry-caption-overlay {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.8;
  transition: .25s ease;
  color: #EEE;
  font-size: 16px;
  background-color: #000000;
  padding: 2% 4%;
  z-index: 10;
}

a#lg-download:focus {
  border: 1px solid white;
}

.modal_login_container .modal_login_popup .modal_login_header {
    padding: 0;
    align-items: flex-start;
}
.modal_login_container .modal_login_popup .modal_login_header .modal_login_title {
    font-size: 15px;
    color: #424242
}
.modal_login_container .modal_login_popup .container_input_login {
    display: flex;
    align-items: center;
}
.modal_login_container .modal_login_popup .container_input_login label {
    width: 100px;
    display: flex;
    color: #424242;
    font-size: 14px;
}
.modal_login_container .modal_login_popup .container_input_login input {
    height: 40px;
    margin: 5px auto;
    color: #424242;
    font-size: 14px;
}
.modal_login_container .modal_login_popup .modal_login_content {
    padding: 0;
}
#swal2-validation-message {
    background: transparent !important;
}
.modal_login_container .modal_login_popup .modal_login_actions {
    justify-content: flex-end;
    padding: 0;
}
.modal_login_container .modal_login_popup .modal_login_actions button {
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
}
.modal_login_container .modal_login_popup .modal_login_actions .modal_login_btn_confirm {
    background: #197EC1;
}
.modal_login_container .modal_login_popup .modal_login_actions .modal_login_btn_cancel {
    color: #197EC1;
    background: transparent;
    border: solid 1px #424242;
}
.unauthorized_user {
    padding: 1em;
    font-size: 20px;
}
.wrapper_all_landing_page_no_display {
    display: none;
}