<style media="screen">
*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}	

#info-holder{
  display: none;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 1.5s;
  background-color: rgba(220, 220, 220, 1);
  position: fixed;
  z-index: 10000000000;
  width: auto;
  max-height: 700px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
}

#info-holder button{
    position:relative;
    right: 10px;
    top: 10px;
    display: block;
    margin:  0 0 10px auto;
    background-color: transparent;
    font-size: 30px;
    line-height: normal;
    color: #ffffff;
		background: rgb(68, 146, 198);
		border-radius: 100%;
		width: 35px;
		height: 35px;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0px 0px 0px 0px
}

#info-holder #pop-up-info{
    background-color: rgba(0, 0, 0, 0);
    display: block;
    margin: 0px 40px 40px 40px;
}


#button-holder button{
    display: block;
    width: 317px;
    height: auto;
    border-radius: 8px;
    position: relative;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    padding: 20px;
    font-size: 15px;
    line-height: normal;
    border:none;
    font-weight: normal;
}

#button-holder{
  display: flex;
  text-align: center;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}

 </style>