/* ---- Update Notice Styling ---- */
.kwtsk-admin-notice {
	position: relative;
	padding: 12px;
}
.kwtsk-admin-notice a.notice-dismiss {
	text-decoration: none;
}
.kwtsk-admin-notice .kwtsk-notice-title {
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-weight: 500;
	color: #222;
}
.kwtsk-admin-notice .kwtsk-notice-title b {
	color: #b14beb;
}
.kwtsk-admin-notice p.kwtsk-notice-text {
	margin: 5px 0 0;
	padding: 0;
}
.kwtsk-notice.inline p.kwtsk-notice-text,
.kwtsk-notice.inline a.kwtsk-notice-btn {
	display: inline-block;
	vertical-align: baseline;
	margin-right: 5px;
}

/* -- Loader - Used in Settings & Dashboard Widget -- */
.kwtsk-loader {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 80px;
	height: 80px;
	z-index: 2;
}
.kwtsk-loader * {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.kwtsk-loader-sector {
	border-radius: 50%;
	position: absolute;
	width: 100%;
	height: 100%;
	border: 3px solid #b1b5d52b;
	mix-blend-mode: overlay;
}

.kwtsk-loader-sector-pink {
	-webkit-animation: rotate 2s ease-out infinite;
	        animation: rotate 2s ease-out infinite;
	border-top: 3px solid #f091ff;
}
.kwtsk-loader-sector-blue {
	-webkit-animation: rotate 2.5s ease-in infinite;
	        animation: rotate 2.5s ease-in infinite;
	border-top: 3px solid #6883ec;
}
.kwtsk-loader-sector-purple {
	-webkit-animation: rotate 1.5s ease-in-out infinite;
	        animation: rotate 1.5s ease-in-out infinite;
	border-top: 3px solid #b14beb;
}
.kwtskSaveBtnLoader {
	width: 56px;
	height: 56px;
	position: relative;
	margin: 0 0 0 10px;
}
.kwtskSettingBarMain .kwtsk-loader-wrap {
	padding-top: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.kwtskSettingBarMain .kwtsk-loader {
	width: 40px;
	height: 40px;
}
@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}
@keyframes rotate {
	from {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

/* -- Maintenance Mode in Admin Bar -- */
#wpadminbar ul#wp-admin-bar-root-default li.kwtsk-maintenance-mode.enabled {
	background-color: #d63638;
}
#wpadminbar
	ul#wp-admin-bar-root-default
	li.kwtsk-maintenance-mode.enabled:hover
	a.ab-item {
	background-color: #bc2022;
	color: #fff;
}

