/* Basic CSS for SKB Validation Plugin */

/* Loading & Preloading */

.prelaoder {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #74c6b7b6;
	z-index: 9999;
	justify-content: center;
	align-items: center;
	display: none;
}

.lds-grid,
.lds-grid div {
	box-sizing: border-box;
}
.lds-grid {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
	color: #fd6464d7;
}
.lds-grid div {
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: currentColor;
	animation: lds-grid 1.2s linear infinite;
}
.lds-grid div:nth-child(1) {
	top: 8px;
	left: 8px;
	animation-delay: 0s;
}
.lds-grid div:nth-child(2) {
	top: 8px;
	left: 32px;
	animation-delay: -0.4s;
}
.lds-grid div:nth-child(3) {
	top: 8px;
	left: 56px;
	animation-delay: -0.8s;
}
.lds-grid div:nth-child(4) {
	top: 32px;
	left: 8px;
	animation-delay: -0.4s;
}
.lds-grid div:nth-child(5) {
	top: 32px;
	left: 32px;
	animation-delay: -0.8s;
}
.lds-grid div:nth-child(6) {
	top: 32px;
	left: 56px;
	animation-delay: -1.2s;
}
.lds-grid div:nth-child(7) {
	top: 56px;
	left: 8px;
	animation-delay: -0.8s;
}
.lds-grid div:nth-child(8) {
	top: 56px;
	left: 32px;
	animation-delay: -1.2s;
}
.lds-grid div:nth-child(9) {
	top: 56px;
	left: 56px;
	animation-delay: -1.6s;
}
@keyframes lds-grid {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f4f4f4;
}

.container {
	width: 80%;
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #333;
}

p {
	line-height: 1.6;
	color: #666;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
	width: 100%;
	padding: 10px;
	margin: 10px 0;
	border: 1px solid #ccc;
	border-radius: 4px;
}

button {
	padding: 10px 20px;
	background-color: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

button:hover {
	background-color: #005177;
}

.check-section {
	margin-bottom: 20px;
}

.check-section h4 {
	font-size: 16px;
	margin-bottom: 5px;
}

.check-section p {
	font-size: 14px;
	margin: 5px 0;
}

.correct {
	color: #59bd59de;
	font-weight: 400;
	font-size: 16px;
	margin: 4px 0;
}

.incorrect {
	color: #fc1d1dd9;
	font-weight: 400;
	font-size: 16px;
	margin: 4px 0;
}

.right.icon::before {
	content: "\2714"; /* Checkmark symbol */
	margin-right: 8px;
	color: #59bd59de;
}

.wrong.icon::before {
	content: "\2716"; /* Cross symbol */
	margin-right: 8px;
	color: #fc1d1dd9;
}

#error-list {
	list-style-type: none;
	padding-left: 0;
}

#error-list li {
	color: #fc1d1dd9;
	font-weight: 400;
	font-size: 16px;
	margin: 4px 0;
}

.success {
	color: #59bd59de;
	font-weight: 400;
	font-size: 16px;
	margin: 4px 0;
}

p.error {
	color: #fc1d1dd9;
	font-weight: 400;
	font-size: 16px;
	margin: 4px 0;
}

.info {
	color: rgb(4, 0, 255);
	font-weight: 400;
	font-size: 16px;
	margin: 4px 0;
}

#result-text {
	margin-top: 20px;
}

div#website-details {
	position: fixed;
	height: 100vh;
	width: 100%;
	top: 0;
	left: 0;
	padding: 40px;
}
div#website-details #result-text {
	margin-top: 20px;
	border: 0px solid #efefef;
	box-shadow: 1px 1px 7px -3px #9a9a9a;
	padding: 20px;
	border-radius: 11px;
}

#website-details span {
	font-weight: 700;
	font-size: 18px;
	margin: 4px 0;
	color: #59bd59de;
}

#website-details .close-result {
	position: absolute;
	top: 75px;
	right: 10px;
	cursor: pointer;
	background: #ff0000;
	border-radius: 50px;
	height: 30px;
	width: 30px;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
}
#website-details .close-result .close {
	font-size: 18px;
	color: #ffffffd9;
}
