.inputBase64 {
	width: 100%;
	height: 200px;
	resize: none;
	outline:none;
}
.btn_class {
	border: 0;
	padding: 7px 14px;
	font-weight: 700;
	color: #ffffff;
	background-color: #3195ff;
	border-radius: 7px;	
}
.form_btn_base64 {
	padding: 10px 0 10px 0;
	text-align: right;
}

.form_btn_base64 #fileTypeSelect {
	padding: 6px 14px;
}
.boxBase64 {position:relative;}


.boxBase64 .loaderLoc {
	width: 48px;
	height: 78px;
	position: relative;
	box-sizing: border-box;
	border: 2px solid #3195ff;
	margin: auto;
	border-radius: 50% 50% 50% 50% / 25% 25% 25% 25%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -24px;
	margin-top: -39px;
	display:none;
}
.boxBase64 .loaderLoc::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 3px;
  height: 4px;
  background: #3195ff;
  border-radius: 10px;
  animation: scrollDown 1.5s linear infinite;
}
@keyframes scrollDown {
  0% {
    top: 15px;
    height: 4px;
    opacity: 1;
  }
  33% {
    top: 15px;
    height: 40px;
  }
  66% {
    top: 50px;
    height: 10px;
    opacity: 1;
  }
  100% {
    top: 56px;
    height: 4px;
    opacity: 0;
  }
}
