﻿
.youtube-player-full {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    background-color: black;
}


#player {
    border-style: solid;
    border-width: thin;
    border-color: #D3D3D3;
}



/*반응형 UI 처리*/

@media (min-width: 0px) and (max-width: 767px) and (orientation:portrait) {
    #video-player-container {
        padding: 0px;
    }

    #video-player {
    border-width: 0px;
    }

    .page-title {
        display: none;
    }

}

@media (min-width: 0px) and (max-width: 767px) and (orientation:landscape) and (min-aspect-ratio: 17/9) {

    #video-player-container {
        margin-left: 32px;
        margin-right: 32px;
    }

    #video-player-container.youtube-player-full {
        margin-left: 0px;
        margin-right: 0px;
    }


}

@media (min-width: 0px) and (max-width: 767px) and (orientation:landscape) {

    #video-player {
        margin-top: 2px;
    }

    .youtube-player-full #video-player {
        margin-top: 0px;
    }

    .page-title {
        display: none;
    }

}


@media (min-width: 768px) and (max-width: 991px) and (orientation:portrait) {


}


@media (min-width: 768px) and (max-width: 991px) and (orientation:landscape) {

    #video-player {
        margin-top: 20px;
    }

    .youtube-player-full #video-player {
        margin-top: 0px;
    }

    .page-title {
        display: none;
    }

}


@media (min-width: 992px) and (max-width: 1199px) and (orientation:portrait) {


}


@media (min-width: 992px) and (max-width: 1199px) and (orientation:landscape) {

    #video-player {
        margin-top: 20px;
    }

    .youtube-player-full #video-player {
        margin-top: 0px;
    }

    .page-title {
        display: none;
    }


}


@media (min-width: 1200px) and (max-height: 680px ) {

    .page-title {
        display: none;
    }


}

@media (min-width: 1200px) {


}