.metapress-fixed-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    grid-template-columns: 90%;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    background: rgba(0,0,0,0.5);
    display: none;
}

.metapress-fixed-box.show-overlay-box {
    display: grid;
}

.metapress-update-content {
    width: 100%;
    max-width: 550px;
    padding: 60px 10px;
    margin: 0 auto;
    clear: both;
    position: relative;
    text-align:center;
    border-radius: 6px;
}

.metapress-loading-text {
	display: block;
	clear: both;
	margin-bottom: 15px;
	font-size: 20px;
	color: inherit;
  font-weight: bold;
}

#metapress-loading-icons {
    text-align: center;
}

#metapress-ajax-error {
    position: relative;
    width: 90%;
    display: none;
    text-align: center;
    font-weight: bold;
}

p#metapress-ajax-error-message {
    margin: 0;
}

label.close-popup-box {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #c0392b;
    color: #ffffff;
    border-radius: 50%;
    width: 40px;
    height:40px;
    overflow:hidden;
    cursor: pointer;
    display: grid;
    align-items: center;
    justify-content: center;
    display: none;
}

label.close-popup-box.show {
    display: flex;
}

label.close-popup-box:hover {
    transform:scale(1.05);
    -webkit-transform:scale(1.05);
    -moz-transform:scale(1.05);
}

label.close-popup-box .dashicons {
    width: auto;
    height: auto;
    text-align: center;
    font-size: 26px;
    color: #ffffff;
}

#metapress-ajax-error h4 {
    font-size: 20px;
}

.metapress-ajax-error {
    color: #de4c3d;
}

.loadingCircle {
	width: 16px;
	height: 16px;
	margin: 10px 25px;
	background: #70b513;
	border-radius: 8px;
	display: inline-block;
}

.loadingCircle:first-of-type {
	-webkit-animation: 3s loading 0s infinite;
	-moz-animation: 3s loading 0s infinite;
	animation: 3s loading 0s infinite;
}

.loadingCircle:nth-of-type(2) {
	-webkit-animation: 3s loading 0.2s infinite;
	-moz-animation: 3s loading 0.2s infinite;
	animation: 3s loading 0.2s infinite;
}

.loadingCircle:nth-of-type(3) {
	-webkit-animation: 3s loading 0.4s infinite;
	-moz-animation: 3s loading 0.4s infinite;
	animation: 3s loading 0.4s infinite;
}

.loadingCircle:nth-of-type(4) {
	-webkit-animation: 3s loading 0.6s infinite;
	-moz-animation: 3s loading 0.6s infinite;
	animation: 3s loading 0.6s infinite;
}

@-webkit-keyframes loading {

	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	50% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0.5;
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

}

@keyframes loading {

	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-moz-transform: scale(1);
		opacity: 1;
	}

	50% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		-moz-transform: scale(1.5);
		opacity: 0.5;
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-moz-transform: scale(1);
		opacity: 1;
	}

}

@-moz-keyframes loading {

	0% {
		transform: scale(1);
		-moz-transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.5);
		-moz-transform: scale(1.5);
		opacity: 0.5;
	}

	100% {
		transform: scale(1);
		-moz-transform: scale(1);
		opacity: 1;
	}

}
