.content > #is_cctv_con {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 1vh;
    grid-gap: 2vh;
}

.content > #is_cctv_con > article {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: 1fr;
    padding: 2vh;
    grid-gap: 2vh;
    place-items: center;
    cursor: pointer;
}

.content > #is_cctv_con > article > img {
    height: 50px;
    width: auto;
}

.content > #is_cctv_con > article > p {
    color: white;
    font-size: 2.5vh;
    width: 100%;
    text-align: left;
}

#camera_popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(200,200,200,.1);
    z-index: 5;
    display: none;
    place-items: center;
}

#camera_popup > article {
    width: calc(1280px);
    height: calc(720px);
    padding: 2vh;
    display: grid;
    position: relative;
}

#camera_popup > article > section {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#camera_popup > article > section > .title {
    position: absolute;
    left: 1vh;
    top: 1vh;
    padding: 1vh 2vh;
    box-shadow: 0 0 3px #000, inset 0 0 1px #7E869B;
    color: #F9F9FA;
    border-radius: 1vh;
    background-color: #3D414D;
    font-size: 2vh;
}

#close_vision_popup {
    position: absolute;
    width: 7vh;
    height: 7vh;
    top: -3vh;
    right: -3vh;
    cursor: pointer;
    border-radius: 3.5vh;
    background-color: rgba(200,200,200,.5);
    z-index: 1;
    transform: scale(.75);
}


#close_vision_popup:before,
#close_vision_popup:after  {
    content: "";
    display: block;
    position: absolute;
    width: 1vh;
    height: 5vh;
    background-color: #AAA;
    border-radius: 1vh;
    top: calc(50% - 2.5vh);
    right: calc(50% - .5vh);
}

#close_vision_popup:before {
    transform: rotate(45deg);
}
#close_vision_popup:after {
    transform: rotate(-45deg);
}