@keyframes glo {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
    }

    50% {
        box-shadow: 0 2px 20px 7px rgba(255, 255, 255, .9);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
    }
}

button {
    cursor: pointer;
    border-radius: 68%;
}

.button {
    position: absolute;

    animation-duration: 2s;
    animation-name: glo;
    animation-iteration-count: infinite;
    cursor: pointer;
    border-radius: 68%;

    width: 9vh;
    height: 9vh;
}

.layer-popup {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.layer-popup.show {
    display: block;
}

.content-popup {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    overflow: hidden;
}

.content-popup.sh {
    display: block;
}

.modal-dialog {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /*width: 80vw;*/
}

.modal-content {
    padding: 10px 15px;
    width: 800px;
    height: 600px;
    text-align: center;
    line-height: 100px;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.back-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.back {
    position: absolute;
    /*height: 100%;*/
    /*width: 100%;*/
    background-size: 100% 100%;
    background-repeat: no-repeat;

}

.view {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.popup {
    width: 80px;
    height: 355px;
}

.descPop {
    width: 80vw;
    height: 70vh; 
}

.youtubePop {
    width: 80vw;
    height: 60vw;
}

.descPop_Y {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.descPop_Y iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}