
.wcp-overlay  {
	  position: fixed;
  	top: 0;
  	bottom: 0;
  	left: 0;
  	right: 0;
  	background: rgba(0, 0, 0, 0.7);
  	transition: opacity 500ms;
  	visibility: hidden;
  	opacity: 0;
    z-index: 9999999;
}

.wcp-overlay:target {
  	visibility: visible;
  	opacity: 1;
}

.wcp-popup {
  	margin-left: auto;
    margin-right: auto;
    margin-top: 3%;
    margin-bottom: 15%;
  	padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
  	background: #fff;
  	border-radius: 5px;
  	width: 75%;
  	position: relative;
  	transition: all 5s ease-in-out;
}

.wcp-popup-header span {
  	font-size: 20px;
    text-align: center;
    display: block;
}

.wcp-popup-footer span {
    font-size: 10px;
    text-align: center;
    display: block;
}
.wcp-popup .wcp-close {
  	position: absolute;
  	top: 0px;
  	right: 30px;
  	transition: all 200ms;
  	font-size: 30px;
  	font-weight: bold;
  	text-decoration: none;
  	color: #333;
}
.wcp-popup .wcp-close:hover {
  	color: #06D85F;
}
.wcp-popup .wcp-content {
  	max-height: 400px;
  	overflow-y: auto;
}
.wcp-popup-footer .wcp-button{
    margin-top: 15px;
    display: inline-block;
}
.wcp-popup-footer{
    width: 100%;
    text-align: center;
}
.wcp-loader-overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0 1 41 / 90%);
    transition: opacity 500ms;
    z-index: 9999999;
    visibility: hidden;
}
#wcp-center-div {
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    -webkit-box-shadow:0 0 50px blue; 
    -moz-box-shadow: 0 0 50px blue; 
    box-shadow:0 0 50px blue;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#wcp-center-div div {
    font-size: 20px;
    background-color: rgb(0, 1, 41);
    display: inline-block;
    color: rgb(174, 215, 241);
    border: 2px solid rgb(107, 180, 243);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    -webkit-animation-name: inner-center-div;
    -webkit-animation-duration: 4s; 
    -webkit-animation-iteration-count: infinite; 
    animation-name: inner-center-div;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@-webkit-keyframes inner-center-div {
    0% {transform: scale(1.0);}
    50% {transform: scale(1.1);}
    100% {transform: scale(1.0);}
}


@keyframes inner-center-div {
    0% {transform: scale(1.0);}
    50% {transform: scale(1.1);}
    100% {transform: scale(1.0);}
}




#wcp-center-div div p {
    margin-top: 30%;
}

@media screen and (max-width: 700px){
  .wcp-popup{
    width: 70%;
  }
}
