:root {
    color-scheme: light only;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }    
}

@media (max-width: 769px) {
    .main {
        margin-top: 74px;
        margin-bottom: 128px;
    }

    .related-videos {
        width: 0% !important;
    }
}


html, body {
    height: 100%;
    margin: 0;
}

body{
    display: flex;
    flex-direction:column;
}

header {
    color: #FFFFFFFF;
    background-color: #10567EFF;
    width: 100%;
    display: flex;    
    border-radius: 0px;    
}

    header .container {
        height: 64px;        
        display: flex;
        position: relative;
        align-items: center;
    }

.header-image {
    cursor: pointer;
    height: 64px;
    object-fit: contain;
    object-position: center;
}

.container{
    flex-grow: 1 !important;
}

footer {
    min-height: 36px;
    padding: 6px;
    background-color: #10567EFF;
    width: 100%;
}

    footer a {
        color: #FFFFFF;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        line-height: 1.5;
        font-family: 'Roboto','Helvetica','Arial','sans-serif';
        margin-inline-end: 20px !important;
        letter-spacing: .00938em;
    }

    footer span {
        color: #FFFFFF;
        text-decoration: none;
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.5;
        font-family: 'Roboto','Helvetica','Arial','sans-serif';
        letter-spacing: .00938em;
    }

.video-container{
    display: flex;
    flex-direction: row;
    /*padding-top: 20px;*/    
}



.related-videos {
    width: 10%;
}




/*custom scrollbar*/
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #10567EFF;
    border-radius: 4px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

html {
  position: relative;
  min-height: 100%;
}

body {
  width:100%;
  margin:0; 
  padding:0;
}

img {
    max-width: 300px;
    border-radius: 20px;
    padding: 12px;
}



.info-page-title {
    height: 52px;
    text-align: center;
    border-bottom: 1px solid #E0E0E0;
}

.info-page-title span{
    font-size: 1.25rem;
    font-weight:500;
    line-height: 1.6;
    letter-spacing: 0.0075rem;
}

.info-page-content {
    padding-top: 10px;
}

.web-app-url {
    text-decoration: none;
    color: #10567EFF;
    font-size: 1.5rem;
}


/*video PLAYER CSS*/

.play-video-mask {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: black;
    opacity: 0.4;
}

    .play-video-mask .material-icons {
        color: white;
        font-size: 90px;
        cursor: pointer;
    }

.video-content {
    display: flex;
    flex-direction: row;
    position: relative;
    flex-grow: 1 !important;
    height: 100%;
    background: black;
}

.video-root {
    display: flex;
    flex-direction: column;    
    flex-grow: 1 !important;
    height: 100%;
}

.video-description {
    padding: 10px 0px;
    font-weight: 500;
    font-size: 18px;
}

.video-metadata {
    padding: 10px 0px;
    font-weight: 500;
    font-size: 18px;
    margin-top: -12px;
    margin-left: -12px;
    margin-right: -12px;
}

    .video-metadata img {
        height: 48px;
        width: 48px;                
    }

    .video-metadata span{
        font-size: 18px;
        padding-top: 10px;
    }

.play-container {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 50%;
    left: 50%;
    margin-top: -45px;
    margin-left: -45px;
    background-color: #10567E;
    border-radius: 10px;
    opacity: 0.6;
}

    .play-container:hover {
        opacity: 1;
    }

.video-container .cliper-controls {
    position: absolute;
    bottom: 0px;
    width: 100%;
    opacity: 0;
    transition: opacity 0.1s;
    background-color: #00000044;
}

.video-container:hover .cliper-controls {
    opacity: 1;
}

.video-container .cliper-controls button {
    background: transparent;
    color: #fff;
    font-weight: bolder;
    border: none;
    cursor: pointer;
}

.video-container .cliper-controls .timeline {
    flex: 1;
    display: flex;
    align-items: center;
    border: none;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

    .video-container .cliper-controls .timeline .bar {
        background: #ccc;
        height: 4px;
        flex: 1;
    }

        .video-container .cliper-controls .timeline .bar .inner {
            background: #10567E;
            width: 0%;
            height: 100%;
        }

.controls-timeline {
    padding: 10px;
}

.controls-buttons {
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.full-screen-video {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

#video {
    flex-grow: 1 !important;
    object-fit: contain !important;
    aspect-ratio: 16/9;
    max-width:100%;
}

.full-screen-video-element {
    aspect-ratio: auto !important;
}

.toast-header.bg-info.text-white {
    background-color: #10567E !important;
}

#share-link{
    cursor: pointer;
}

.toast-container.top-right{
    top:70px !important;
}

footer a:hover{
    color:white;
}

.controls-timeline{
    cursor: pointer;
}

.resticted-video-message{
    font-size: 16px;
    margin-top: 10px;
    margin-bottom:25px;
}