* {
  font-family: 'Pretendard';
}

html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner>main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner>* {
  opacity: 0;
}

/* Spinner */
body.show-spinner::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.modal-right-useset .modal-dialog {
  max-width: 580px!important;
}
.navbar .user img {
  border: 1px solid #ddd;
}
/* COMMON */
div:where(.swal2-container) h2:where(.swal2-title) {
	position: relative;
	max-width: 100%;
	margin: 0;
	padding: .8em 1em 0;
	color: inherit;
	font-size: 1.1em!important;
	font-weight: 600;
	text-align: center;
	text-transform: none;
	word-wrap: break-word;
}
div:where(.swal2-container) .swal2-html-container {
	z-index: 1;
	justify-content: center;
	margin: 0;
	padding: 1em 1.6em .3em;
	overflow: auto;
	color: inherit;
	font-size: 1em!important;
	font-weight: normal;
	line-height: normal;
	text-align: center;
	word-wrap: break-word;
	word-break: break-word;
}
.underline {
	text-decoration: underline;
}
code{
	font-family: 'Pretendard'!important;
	
}

/* Mini Loader */
#mloader {
  position: fixed;
  top: 0;left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mloader .loader img{

}
#mloader .loader p{
  text-align: center;
}

.loader{
  text-align: center;
}



.btn-gen-ssn{
  font-size: 12px;
  position: absolute;
  color:red;
  right: 10px;
  top: 25%;
  cursor: pointer;
}



.cursor-pointer{
  cursor: pointer;
}