#black_layout {
    background-color: black;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.7;
    display: none;
}

.popup_main{
	position: fixed;
  background-color: white;
  z-index: 1001;
  width: 75%;
  height: auto;
  left: 50%;
  top: 3%;
  margin-left: -37.5%;
  padding: 30px 35px 45px 35px;
  display: none;
  border-radius: 1rem;
}

.popup_close {
  position: absolute;
  right: 32px;
  top: 20px;
  width: 22px;
  height: 22px;
  opacity: 0.3;
}

.popup_close:hover {
  cursor: pointer;
  opacity: 1;
}

.popup_close:before, .popup_close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 20px;
  width: 2px;
  background-color: #333;
}

.popup_close:before {
  transform: rotate(45deg);
}

.popup_close:after {
  transform: rotate(-45deg);
}

.popup_content{
  overflow-y: scroll;
  max-height: 75vh;
  margin-top: 20px;
  padding-right: 30px;
}


.popup_content {
  scrollbar-width: thin;
  scrollbar-color: #b5b5b5 #f9f9f9;
}

.popup_content img{
	max-width: 100%;
	height: auto;
}

/* width */
.popup_content::-webkit-scrollbar {
  width: 4px !important;
}

/* Track */
.popup_content::-webkit-scrollbar-track {
  background: #f9f9f9 !important; 
}
 
/* Handle */
.popup_content::-webkit-scrollbar-thumb {
  background: #b5b5b5 !important; 
}

/* Handle on hover */
.popup_content::-webkit-scrollbar-thumb:hover {
  background: #b5b5b5 !important; 
}


@media screen and (max-width: 500px){
	.popup_main{
		top: 3%;
	    width: 95%;
	    margin-left: -47%;
	}
}

@media screen and (max-width: 320px){
	.popup_main{
		top: 3%;
	    width: 100%;
	    margin-left: -50%;
	}	
}
