﻿
.overlay2 {
  position: fixed;
  z-index:9999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay2:target {
  visibility: visible;
  opacity: 1;
  z-index: 999999;
}
.popup {
 margin: 10px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    border: 5px solid #31708f;
    width: 50%;
    height: 94%;
    position: relative;
    transition: all 2s ease-in-out;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size:55px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .content {
  height:88%;
  overflow:auto;

}

.cc
{
      position: absolute;
    top: 16px;
    right: 22px;
    color: #3f4257!important;
    font-size: 22px;
}