.kyc-section {
	border: 1px dotted #666;
	padding: 10px;
	margin-bottom: 10px;
}

.disapproved-row {
  background-color: #ffeeee;
}

.approved-row {
  background-color: #eeffee;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
.logo-loaders {
	display: flex;
	flex-wrap: wrap;
  height: 100vh;
}
.logo-loader {
	flex: 1 1 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: relative;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
.logo-loader--comet-spin {
	.logo-loader__spinner {
		width: 160px;
		height: 160px;
		border-radius: 50%;
		animation: 1s spin linear infinite;
		border-top: calc(160px * .0235) solid #0017e6;
		border-right: calc(160px * .0235) solid transparent;
	}
	.logo-loader__logo {
		img {
			width: calc(160px * .6);
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
		}
	}
}


body {
	font-family: "Roboto", sans-serif;
	background-color: #fff;
	line-height: 1.9;
	color: #5c5c5c;
	position: relative; }
  
  h1, h2, h3, h4, h5, h6,
  .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "Roboto", sans-serif;
	color: #000; }
  
  a {
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease; }
	a, a:hover {
	  text-decoration: none !important; }
  
  .text-black {
	color: #000; }
  
  .content {
	padding: 7rem 0; }
  
  .heading {
	font-size: 2.5rem;
	font-weight: 900; }
  
  .form-control {
	border: none;
	border-bottom: 1px solid #ccc;
	padding-left: 0;
	padding-right: 0;
	border-radius: 0;
	background: none; }
	.form-control:active, .form-control:focus {
	  outline: none;
	  -webkit-box-shadow: none;
	  box-shadow: none;
	  border-color: #000; }
  
  .col-form-label {
	color: #000;
	font-size: 13px; }
  
  .btn, .form-control, .custom-select {
	height: 40px;
	border-radius: 0; }
  
  .custom-select {
	border: none;
	border-bottom: 1px solid #ccc;
	padding-left: 0;
	padding-right: 0;
	border-radius: 0; }
	.custom-select:active, .custom-select:focus {
	  outline: none;
	  -webkit-box-shadow: none;
	  box-shadow: none;
	  border-color: #000; }
  
  .btn {
	border: none;
	border-radius: 0;
	border-radius: 5px !important; }
	.btn.btn-primary {
	  border-radius: 30px
	}
	.btn:hover {
	  color: #fff; }
	.btn:active, .btn:focus {
	  outline: none;
	  -webkit-box-shadow: none;
	  box-shadow: none; }
  
  label.error {
	font-size: 12px;
	color: red; }

.uppercase {
	text-transform: uppercase;
}

.verdict{
	font-size:48px;
	text-align: center;
}

.reduce-font-20 {
    font-size: 80%;
}

table th {
    font-weight: 600;
    background-color: #eeecfd !important;
}

.loader {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
	0% { transform: translate(-50%, -50%) rotate(0deg); }
	100% { transform: translate(-50%, -50%) rotate(360deg); }
  }

  .imagePreview {
    width: 100%;
    height: 150px;
    background-position: center center;
	background:url(http://cliquecities.com/assets/no-image-e3699ae23f866f6cbdf8ba2443ee5c4e.jpg);
	background-color:#fff;
	background-size: contain; /* Ensure the image is fully visible */
	background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Prevent repeating */
    display: inline-block;
	box-shadow:0px -3px 6px 2px rgba(0,0,0,0.2);
}

.imgUp
{
  margin-bottom:15px;
}

.del
{
  position:absolute;
  top:0px;
  right:15px;
  width:30px;
  height:30px;
  text-align:center;
  line-height:30px;
  background-color:rgba(255,255,255,0.6);
  cursor:pointer;
}

.disabled {
    pointer-events: none;
    opacity: 0.6;
}