.panorama {
    position: fixed;
    z-index: 3;
    width: 100%;
    background: rgba(0,0,0,0.5);
    left: 0;
    height: 100%;
    box-shadow: 0 100px 10px rgba(0,0,0,0.5);
    display: flex;
  align-items: center;
  justify-content: center;
}
.panorama .containerImg {
    position: relative;
    height: 80%;
}
.panorama .containerImg img {
    border:10px solid #fff;
    box-shadow: 0 0 50px #000;
    height: 100%;
    cursor: pointer;
}
.panorama .close {
    background: #fff;
    color: #000;
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 30px;
    border-radius: 50%;
    width:30px;
    height:30px;
    text-align: center;
    line-height: 1;
    padding: 10px;
    transform: rotate(70deg);
    cursor: pointer;
}
.panorama .close:hover {
    color: #0f0;
}
