.fetching {
	.is-loading {
		border-radius: 3px;
		animation: 1.5s loading-placeholder ease-in-out infinite;
		background-color: $dark-bg;
		height: 20px;

		&.button {
			background-color: #007cba;
			height: 39px;
			width: 100%;
		}

		&.link {
			width: 100px;
			background-color: #007cba;
		}
	}

	.top-link {
		background: $primary;
	}
	.title {
		width: 200px;
		display: block;
	}

	.revert {
		width: 35px;
		height: 35px;
		background: $primary;
	}

	.description {
		width: 100%;
	}

	.ob-settings-bottom button {
		width: 100%;
		height: 55px;
		border: none;
		background-color: $primary;
	}
}

@keyframes loading-placeholder {
	0% {
		opacity: .1;
	}

	50% {
		opacity: .2;
	}

	100% {
		opacity: .1;
	}
}