* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    
}
body {
    font-size: 16px;
	-webkit-user-select: text; /* Safari */
    -moz-user-select: text; /* Firefox */
    -ms-user-select: text; /* IE10+ */
    user-select: text; /* Standard */
}
h5 {
	font-size: var(--font-size-small);
}
a {
  color: #222;
  text-decoration: none;
}

a:active {
	color: #6495ed;
    background: none !important;   /* 눌렀을 때 배경 제거 */
    box-shadow: none !important;   /* 모바일에서 눌림 효과 제거 */
    -webkit-tap-highlight-color: transparent; /* 모바일 하이라이트 제거 */
}

a:focus{
    outline: none; /* 클릭 후 포커스 테두리 제거 */
}

a:visited {
	color: #6495ed;
}

img {
	max-width: 100%;
	vertical-align: middle;
	-webkit-user-drag: auto;
    -khtml-user-drag: auto;
    -moz-user-drag: auto;
    -o-user-drag: auto;
    user-drag: auto;
}
hr {
	border: 0;
	height: 1px;
	/* background-color: var(--border-color); */
	margin: 1rem 0;
}
hr.space {
	margin: 1rem -15px;
	height: 3px;
	background-color:whitesmoke;
}

input::placeholder {
	font-size: var(--font-size-x-small) !important;
}

.numFont {font-family: 'Montserrat', sans-serif;}

.right:not(.list-item--chevron__right) {
  float: right;
  padding-right: 0;
}
.list-item--material__right {
  min-height: unset;
}

.vertical {
    margin-bottom: 1em;
}

.b-flex {
	display: -webkit-flex !important;
	display: flex !important;
	flex-wrap: wrap;
}

.d-flex {
	display: -webkit-flex !important;
	display: flex !important;
	align-items: center;
}
.d-flex > .right {
	margin-left: auto;
	flex: 0 0 auto;
}


.align-center, .txt-center {
    align-items: center;
}

.flex-column {
	flex-flow: column;
	display: flex;
	gap:1em;
}

.flex-center {
	justify-content: center !important;	
	display: flex;
	/* justify-content: space-between; */

}
.flex-between {
	justify-content: space-between !important;
}
.text-left {
	text-align: left !important;
}
.text-center {
	text-align: center !important;
}
.text-right {
	text-align: right !important;
}
.clearfix:after {
	display: table;
	content: '';
	clear: both;
}
.mt-0,.my-0 {margin-top: 0 !important;}
.mt-1,.my-1 {margin-top: .25rem !important;}
.mt-2,.my-2 {margin-top: .5rem !important;}
.mt-3,.my-3 {margin-top: 1rem !important;}
.mt-4,.my-4 {margin-top: 1.5rem !important;}
.mt-5,.my-5 {margin-top: 2rem !important;}
.mt-6,.my-6 {margin-top: 3rem !important;}

.mb-0,.my-0 {margin-bottom: 0 !important;}
.mb-1,.my-1 {margin-bottom: .25rem !important;}
.mb-2,.my-2 {margin-bottom: .5rem !important;}
.mb-3,.my-3 {margin-bottom: 1rem !important;}
.mb-4,.my-4 {margin-bottom: 1.5rem !important;}
.mb-5,.my-5 {margin-bottom: 2rem !important;}
.mb-6,.my-6 {margin-bottom: 3rem !important;}

.ml-0,.mx-0 {margin-left: 0 !important;}
.ml-1,.mx-1 {margin-left: .25rem !important;}
.ml-2,.mx-2 {margin-left: .5rem !important;}
.ml-3,.mx-3 {margin-left: 1rem !important;}
.ml-4,.mx-4 {margin-left: 1.5rem !important;}
.ml-5,.mx-5 {margin-left: 2rem !important;}
.ml-6,.mx-6 {margin-left: 3rem !important;}

.mr-0,.mx-0 {margin-right: 0 !important;}
.mr-1,.mx-1 {margin-right: .25rem !important;}
.mr-2,.mx-2 {margin-right: .5rem !important;}
.mr-3,.mx-3 {margin-right: 1rem !important;}
.mr-4,.mx-4 {margin-right: 1.5rem !important;}
.mr-5,.mx-5 {margin-right: 2rem !important;}
.mr-6,.mx-6 {margin-right: 3rem !important;}

.pt-0,.py-0 {padding-top: 0 !important;}
.pt-1,.py-1 {padding-top: .25rem !important;}
.pt-2,.py-2 {padding-top: .5rem !important;}
.pt-3,.py-3 {padding-top: 1rem !important;}

.pb-0,.py-0 {padding-bottom: 0 !important;}
.pb-1,.py-1 {padding-bottom: .25rem !important;}
.pb-2,.py-2 {padding-bottom: .5rem !important;}
.pb-3,.py-3 {padding-bottom: 1rem !important;}

.pl-0,.px-0 {padding-left: 0 !important;}
.pl-1,.px-1 {padding-left: .25rem !important;}
.pl-2,.px-2 {padding-left: .5rem !important;}
.pl-3,.px-3 {padding-left: 1rem !important;}

.pr-0,.px-0 {padding-right: 0 !important;}
.pr-1,.px-1 {padding-right: .25rem !important;}
.pr-2,.px-2 {padding-right: .5rem !important;}
.pr-3,.px-3 {padding-right: 1rem !important;}

.progress-bar {
	height: 5px;
	margin-top: 3px;
	border-radius: 999px;
	overflow: hidden;
}
.progress-bar__secondary {
	background-color: #efefef;
}
.progress-bar__primary,
.progress-bar--material__primary {
	background-color: var(--progress-bar-primary);
}
.page__content h1,
.page__content h2,
.page__content h3,
.page__content h4, .page__content h5 {
	font-family: var(--theme-font-family);
	font-weight: bold;
}
.text-input,
.text-input:invalid {
	height: auto;
	padding: .55rem .75rem;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	background: none;
	font-family: var(--theme-font-family);
	font-size: 16px;
}
.text-input__label {
	font-size: 14px;
    top: 50%;
    transform: translateY(-60%);
    font-family: var(--theme-font-family);
    color: var(--placeholder-color);
}
input:active,
input:focus {
	border-color: var(--theme-color) !important;
}

ons-button span{
	/* vertical-align: middle;
	vertical-align: -webkit-baseline-middle	; */
}

ons-input + ons-input {
	margin-top: .5rem;
}
ons-input.numFont input {
    font-family: inherit !important;
}
.list-item--chevron:before {
    border-radius: 1px;
    opacity: .65;
}
ons-input::placeholder {
	font-size: var(--font-size-base);
	color: var(--placeholder-color);
}
input::placeholder {
	font-size: var(--font-size-base);
	color: var(--placeholder-color);
}
::-webkit-input-placeholder {
	font-size: var(--font-size-base);
	color: var(--placeholder-color);
}
::-moz-placeholder { 
 	font-size: var(--font-size-base);
	color: var(--placeholder-color);
}
::placeholder {
	font-size: var(--font-size-base);
	color: var(--placeholder-color);
}
.checkbox {
	line-height: normal;
}
.checkbox__checkmark {
	width: 18px;
	height: 18px;
	margin-right: 5px;
}
.checkbox__checkmark:before {
	width: 100%;
	height: 100%;
	border: 1px solid var(--border-color);
	border-radius: 2px;
}
:checked+.checkbox__checkmark:before {
	border: 1px solid transparent;
	background-color: var(--theme-color);
}
:checked+.checkbox__checkmark:after {
	width: 8px;
	height: 4px;
	top: 4px;
	left: 4px;
	border-width: 0 0 2px 2px;
}
.radio-button {
	line-height: normal;
	margin-right: 2px;
}
.radio-button__checkmark {
	width: 18px;
	height: 18px;
}
.radio-button__checkmark:before {
    width: 100%;
	height: 100%;
	border: 1px solid var(--border-color);
	border-radius: 100%;
}
:checked+.radio-button__checkmark:before {
	border: 1px solid transparent;
	background-color: var(--theme-color);
}
.radio__checkmark:after,
.radio-button__input+.radio-button__checkmark:after {
	width: 8px;
	height: 4px;
	border-radius: 0;
	top: 5px;
	left: 4px;
	border: 2px solid #fff;
	border-width: 0 0 2px 2px;
	background-color: transparent;
	transform: rotate(-45deg) scale(0.9);
}
.switch {
	width: 36px;
	height: 21px;
}
.switch__toggle {
	box-shadow: none;
	margin-top: 0;
	height: 100%;
}
.switch__handle {
	width: 15px;
	height: 15px;
	top: 3px;
	left: 3px;
	margin-top: 0;
}
:checked+.switch__toggle {
	background-color: var(--switch-active-color);
}
:checked+.switch__toggle>.switch__handle {
	left: 18px;
	background-color: #fff;
	box-shadow: none;
}
.text-input:focus {
	background: var(--white-color);
}
input[type="num"],
input[type="date"],
input[type="time"],
input[type="tel"] {
	font-family: var(--theme-sub-font-family);
}
input:read-only {
    color: #cecece;
}
.select-input {
	font-size: 16px;
    font-family: var(--theme-font-family);
    background: url(../../img/icons/arrow-down.svg) no-repeat 95% center / 16px auto;
}
.search-input {
	background:var(--white-color) url(../../img/icons/search_gray.svg) no-repeat 13px center / 18px auto;
	height: 48px;
	font-family: var(--theme-font-family);
	padding-left: 50px;
	box-shadow: none;
}
textarea {
	box-sizing: border-box;
	width: 100%;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	padding: 10px;
	resize: none;
    font-family: var(--theme-font-family);
}
/* ========= MODAL ========= */
ons-dialog .dialog {
  	/* width: 85%;
	  max-height: 85%; */
	border-radius: 20px;
}
.dialog-container {
	padding: 15px;
  	background-color: var(--white-color);
}
ons-dialog .dialog .popHead {
	text-align: center;
	/* padding-top: 25px; */
}
ons-dialog .dialog .popHead [class*="btnClose"],
ons-dialog .dialog .popHead .button {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 25px;
	padding: 0;
	border-radius: 0;
	border: 0;
}
ons-dialog .dialog .popHead .title {
	margin: 0;
	font-size: var(--font-size-large);
}
ons-dialog .dialog .popHead .title+p {
	font-size: var(--font-size-small);
	margin: 2vmin 0 0;
}

/* ========= BUTTON ========= */
.button {
	display: block;
	min-height: unset;
	text-align: center;
	background-color: var(--white-color);
	color: #222;
	font-size: 16px;
	text-align: center;
	-webkit-border-radius: 999px;
	border-radius: 999px;
	border: 1px solid var(--button-border-color);
	-webkit-box-shadow: none;
	box-shadow: none;
	font-family: 'Noto Sans KR';
	/* line-height: normal; */
	padding: 6px 16px;
	overflow: visible;
}
.button:active {
	box-shadow: none;
	background-color: var(--background-color);
}
.button.border-0 {border: 0;}
.button.button--primary:not(.button--text):not(:disabled):not([disabled]) {
	background-color: var(--theme-color);
	border-color: var(--theme-color);
	color: var(--white-color);
	font-weight: bold;
}
.button.button--primary.button--text {
    color: var(--theme-color);
}
.btn-group {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	margin: 0 -.25rem;
}
.btn-group.vertical {
  	flex-direction: column;
}
.btn-group:not(.vertical).flex-end {
	justify-content: flex-end;
}
.btn-group .button:not(.button--sm):not(.button--large) {
	margin: 0 .25rem;
	padding: 0 10px;
	/* height: 44px;
	line-height: 42px; */
}
.button.dark,
.button.button--dark {
	background-color: var(--dark-color);
	color: var(--white-color);
	border-color: var(--dark-color);
}

.button.theme,
.button.button--theme {
	background-color:var(--theme-color);
	color: var(--white-color);
	border-color:var(--theme-color);
}

.btn-group .button.sm {
	height: 30px;
	line-height: 28px;
	font-size: var(--font-size-x-small);
}
.btn-group.vertical .button {
  	/* margin: .25rem 0; */
}
.btn-group .button:first-of-type {
	margin-left: 0;
	margin-right: 0.5em;
}
.btn-group .button:last-of-type {
	margin-right: 0;
}
.button.button--text {
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
}
.button.button--sm {
    font-size: var(--font-size-x-small);
	padding: 5px 10px;
}
.button.button--large {
	height: auto;
	font-size: var(--font-size-large);
    padding: 10px 16px;
}
.button:disabled, .button[disabled] {
	opacity: .3;
	background-color: var(--disabled-bg-color);
    color: var(--disabled-color);
	border-color: transparent;
}
/* MORE POP */
.pop_right_menu .popover__content {
	width: 100%;
    min-width: 5em;
	min-height: unset;
	height: auto;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
}
.pop_right_menu .popover--material__content {
    background: transparent;
    box-shadow: none;
}
.pop_right_menu .popover--material__content .pop_body {
	padding:5px 0;
    position: relative;
    background-color: var(--white-color);
    margin-top: 15px;
    border-radius: 4px;
    box-shadow: 0 3px 3px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%), 0 2px 7px -2px rgb(0 0 0 / 20%);
}
.pop_right_menu .popover--material__content .pop_body:before {
    display: block;
    content: '';
    border: 8px solid transparent;
    border-bottom-color: var(--white-color);
    position: absolute;
    top: -16px;
    right: 10px;
    filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.2));
    z-index: -1;
}
.pop_right_menu .pop_body a {
	display: block;
	padding: 5px 10px;
	font-size: var(--font-size-small);
	color: var(--black-color);
    margin-bottom: 3px;
}
.pop_right_menu .pop_body a:last-child {
    margin-bottom: 0;
}
/* COLORSET */
.bRed {
    background-color: #ff7f50;
}
.bBlue {
    background-color: #6495ed;
}

.fRed {
    color: #ff7f50 !important;
}
.fBlue {
    color: #6495ed !important;
}

.bTheme {
    background-color: var(--theme-color);
}
/* ACTION SHEET */
.action-sheet-title--material:first-child {
	border-radius: 15px 15px 0 0;
	color: var(--black-color);
	font-weight: bold;
	height: auto;
	line-height: 52px;
	font-family: var(--theme-font-family);
}
.action-sheet-title--material:first-child:after {
	display: block;
	content: '';
	width: calc(100% - 15px);
	height: 1px;
	background-color: var(--border-color);
}
.action-sheet-button--material:last-of-type:not(.action-sheet-button--destructive) {
	width: 50px;
	height: 52px;
	position: absolute;
	top: 0;
	right: 15px;
	font-size: 0;
	text-indent: -999em;
	z-index: 1;
}
.action-sheet-button--material:last-of-type:not(.action-sheet-button--destructive):before,
.action-sheet-button--material:last-of-type:not(.action-sheet-button--destructive):after {
	display: block;
	content: '';
	width: 22px;
	height: 1px;
	background-color: var(--black-color);
	position: absolute;
	top: 50%;
	right: 0;
}
.action-sheet-button--material:last-of-type:not(.action-sheet-button--destructive):before {
	transform: rotate(45deg);
}
.action-sheet-button--material:last-of-type:not(.action-sheet-button--destructive):after {
	transform: rotate(-45deg);
}
.action-sheet-button--material {
	font-family: var(--theme-font-family);
	height: auto;
	line-height: 52px;
	color: var(--black-color);
	font-size: 15px;
	line-height: 50px;
}

.subTitle{
	position: relative;
}

.ft-13{
	font-size:var(--font-size-x-small);
}

/* qr-header(sticky z-index:200) 위에 progress bar가 표시되도록 */
.page__content > ons-progress-bar {
    position: sticky;
    top: 0;
    z-index: 201;
}

ons-progress-circular {
    display: inline-block;
    width: 32px;
    height: 32px;
    position: absolute;
    left:calc(50% - 16px);
    /* transform: translate(-50%, 0); */
    top: 40%;
	z-index: 99999;
}

h4{
	font-size:16px;
}

.theme-color{
	color:var(--theme-color) !important;
}

.toastList{
	display: inline-block;
    padding-left: 5px;
    margin: 0px 0;
}

.pageLoading{
	text-align: center;
    margin: 10px 0;
}
.menuButton{
    height: 100%;
    position: relative;
    padding-top: 18px;
	display: inline-block;
	padding: 0 !important;
}

.notification{
	vertical-align: top;
    font-size: 12px;
	left: -10px;
    top: 8px;
}

.text-input__label{
	font-size:12px;
	/* top:8px; */
	color: darkgray;
}

.toolbar-button{
	padding: 0 0;

}

ons-toolbar .center span {
	font-size: 1.4rem;
}

/* .toolbar-button:first-of-type{
	padding-left:10px;
}

.toolbar-button:last-of-type{
	padding-right:10px;
} */

.toolbar-button--material:last-of-type {
    margin-right: 0px;
}

.card {
	box-shadow: 0 0px 0px rgba(0, 0, 0, .12);
}

.list-item {
	border-bottom: 1px solid whitesmoke;
}

.width100p{
	width:100%;
	margin-right:5%;
}

.width50p{
	width:40%;
	margin-right:5%;
}

.font12px{
	font-size:12px;
}
.error{
	display: block;
	margin: 1px;
	font-size: 12px;
	color:red;
	padding-left:5px;
	text-align:left;
	letter-spacing:-1px;
	line-height:13.5px;
}

.error::before{
	content: '\2714  ';
}

.list-header{
	background-color: #13bde2;
	color: var(--white-color);
	font-size: 16px;
	/*font-weight: bold;*/
	padding:3px 10px
	border-radius:13px;
}

.list-item__left {
	padding: 0px 5px 0px 0;
	font-size:var(--font-size-x-small);
}

.list-item__left ons-label{
	color:rgb(148, 168, 189);;
}

.list-item__center{
	padding-top:5px;
	padding-bottom:5px;
	background-image:none;
}

.list-item__right{
	padding: 0px 16px 0px 0;
	background-image:none;
}

ons-input .text-input, ons-search-input .search-input{
	text-align:center;
	height:30px;
	/* padding-top: 7px; */
	font-size:var(--font-size-x-small);
}

ons-search-input .search-input{
	text-align:left;
}

ons-input.center .text-input, ons-search-input.center .search-input{
	text-align:left;
}

ons-input.right .text-input, ons-search-input.right .search-input{
	text-align:right;
}

ons-button, .button {
	/* margin-left:3px; */
	text-align:center;
}

ons-select{
	/* min-width:100px;
	max-width:250px; */
}

ons-select select{
	text-align-last:center;

}

.left > ons-label{
	width:100%;
	display:inline-block;
	text-align:right;
	letter-spacing:-0.5px;
}

.buttonSet{
	width:100%;
	height:55px;
	display:inline-block;
	text-align:center;
}

.buttonRed{
	background-color: transparent;
	border: 1px solid red;
	color:red;
	/*float:right;*/
}

.redBtn{
	background-color: red;
}

/* 메뉴 */

/* 목록 */

.red{color:red !important; }
.blue{color:blue !important;}
.whiteblue{color:rgb(54, 144, 243) !important;}
.green{color:green !important;}
.gray{color:rgb(148, 168, 189) !important;}
.yellow{color:rgb(247, 211, 70) !important}
.orange{color:#FF5E00 !important;}

.bOrange{ background-color:#FF5E00; opacity: 0.3; }
.bRed{background-color:red; opacity: 0.3;}
.bBlue{background-color:blue;}
.bWhiteblue{background-color:rgb(54, 144, 243);}
.bGreen{background-color:green;}
.bGray{background-color:rgb(148, 168, 189);}
.bYellow{background-color:rgb(247, 211, 70); opacity: 0.3;}

.aLeft{ text-align: left; }
.aRight{ text-align: right; }
.aCenter{ text-align: center; }

ons-toast.warning .toast{
	background-color:#f39c12 !important;
}

ons-toast.info .toast{
	background-color:#00c0ef !important;
}

ons-toast.danger .toast{
	background-color:#dd4b39 !important;
}

ons-toast.success .toast{
	background-color:#00a65a !important;
}

ons-toast.warning .toast div{
	color:white;
	display: flex;
	align-items: center;
}

ons-toast.warning .toast div ul{
	padding-left:5px;
}

.detailUl {
	margin:0;
}

.detailUl li{
	width: 100%;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.list-item--material {
	padding:0 0 0 5px;
}

.list-item--material__left, .list-item--material__center, .list-item--material__right {
	min-height:40px;
}

.select-input {
	/* color:#afafaf; */
	font-size:var(--font-size-x-small);
}

.dataList{
	border-radius:0;
	padding:0;

}
.listItem{
	border-radius:0;
	border-bottom: 1px solid #e0e0e0;
}
.listItem div {
	/* display:inline-block;
	border-radius:0; */
	
}
.listItem div.left {
	/* width:90%; */
}

.listItem span.center.notification {
	vertical-align: middle;
	font-size:var(--font-size-x-small);
}

.listItem div.right {
	/* width:100%; */
}

.left.title{
	font-size:var(--font-size-x-small);
}
.listContent{
	/* font-size:13px; */
	padding-top:10px;
	min-height:50px;
}

.txtRight{
	font-size: 12px;
    margin-top: 5px;
    color: darkgray;
}

.ellipsis{
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	width:100%;
}

.listCondition .left {
	width:19%;
}

.listCondition .left > ons-label{
	text-align:left;
}

.txtSearch{
	height:26px;
}

ons-input::placeholder {
	font-size:10px;
}
input::placeholder {
	font-size:10px;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	font-size:10px;
}
::-moz-placeholder { /* Firefox 19+ */
 	font-size:10px;
}
:-ms-input-placeholder { /* IE 10+ */
  	font-size:10px;
}
:-moz-placeholder { /* Firefox 18- */
  	font-size:10px;
}

/* DatePick 보이지 않기 */
input[name='_submit'] {
    border: none;
    display: none;
}


/* 목록화면 아래 선긋기 */
.pOderList .center{
	width:50%;
	background-image: -webkit-linear-gradient(bottom, #ccc, #ccc 100%);
}


.pOderList .right{
	background-image: -webkit-linear-gradient(bottom, #ccc, #ccc 100%);
}

.state {
	letter-spacing: -1px;
	font-size: 14px;
	display: inline-block;
	text-align: center;
	width: 100%;
}


.ListHeader .left > ons-label {
	text-align: center;
}


.algnCenter {
    text-align: center;
}

.lnb {
	height:50px;
	line-height: 50px;
}

.lnb > div {
	display: inline;
	
}

.lnb .right	{
	float:right;
	font-size: 13px;
}


.modal__content > .card {
	width: 89%;
	margin: 0 auto;
	border-radius: 0;
	color: gray;
	text-align: center;
	position: relative;
}

.modal__content .popBody{
	border-bottom: 1px solid whitesmoke;
}

.modal__content .close {
    text-align: right;
    position: absolute;
    width: 20%;
    right: 0;
}

ons-action-sheet div.action-sheet {
	left:10px;
	right:10px;
	bottom:10px;
}

ons-action-sheet .action-sheet-title {
	text-align: center;
    border-bottom: 1px solid whitesmoke;
    padding: 10px;
    height: 40px;
    line-height: 24px;
}

ons-action-sheet-button.action-sheet-button {
	line-height: 35px;
    height: 40px;
    border-bottom: 1px solid whitesmoke;
}

ons-action-sheet .action-sheet-icon {
	line-height: 40px;
	height:40px;
}

/* 언어선택 공통*/

.flag{
	width:25px;
	vertical-align: middle;
}

.sysMessage{
	margin:0 30px;
	font-size:var(--font-size-small);
	margin-bottom:30px;
}

ons-alert-dialog .alert-dialog-title{
	text-align: center;
	font-size:18px;
}

ons-alert-dialog .alert-dialog-content{
	text-align: center;
	font-size:var(--font-size-small);
	font-family: gmarketM;
}

.dialog-container p {
	margin-top: 10px;
	word-break: keep-all;
}

.agreeContentPopTel{
	margin:auto 10px;
}

.agreeContentPopTel .agreeItem .agreeCheckbox{
	padding-bottom:5px;
}

.agreeContentPopTel ons-list-item.list-item{
	height:auto;
	padding:10px;
	margin-top:0px;
	font-size:var(--font-size-small);
	border-bottom:none;
}

.agreeContentPopTel ons-list-item.list-item.agreeItem{
	height:50px;
	margin-top: 0;
    padding-top: 0;

}

.agreeContentPopTel .stit{
	font-size: var(--font-size-base);
	color: blue;
	margin-bottom: 8px;
}

.agreeContentPopTel .btnAgreeTel{
	width:45px;
}
.agreeContentPopTel .btnClosePop {
	width: 140px;
	text-align: center;
	display: inline-block;
	/* position: relative; */
	height: 40px;
	margin-bottom: 10px;
}

.telAgreebuttons{
	width: 140px;
	text-align: center;
	display: inline-block;
	/* position: relative; */
	height: 40px;
	margin-bottom: 10px;
}

#compnayIndexPage .CateMenu .btnCorp span.ready:after {
	display: flex;
	content: 'Preparing service';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(var(--black-color-rgb),0.5);
	color: var(--white-color);
	align-items: center;
	justify-content: center;
    border-radius: 10px;
}

#compnayIndexPage .reloadArea{
	text-align: center;
	margin: 10px 0;
	display:none;
}

#compnayIndexPage .reloadArea div{
	margin:5px 0;
	color:#FF5E00;
}

/* fcm Popup */

#modalFcm .fcmContentPopTel{
	width: 90%;
    margin: 0 auto;
    background: var(--white-color);
    padding: 1em;
    border-radius: 20px;
}
#modalFcm .btnFcm{
	width:45%;
}

#modalFcm .fcmBody{
	padding: 5px;
	line-height: 22px;
	margin: 10px;
}

#modalFcm ons-list-item{
	height:auto;
}

#modalFcm ons-list-item .center{
	padding:0;
}

.buttonMenu  > p {
    margin: 0;
    text-align: left;
    /* background: #f2f4f7; */
    margin-top: 1em;
    border-bottom: 5px solid #e4e4e4;
    /* border-width: 1px 0; */
    padding: 0.5rem 1rem;
    font-weight: 600;
    color: #FA3E3F;
    margin-bottom: 0.5em;
}

#compnayIndexPage .CateMenu .card{
	/* margin: 1% 1%; */
	margin: 1% 1% 1em 1%;
}

.btnPop{
	/* width:25%; */
}

ons-button.button.btnMore {
	margin-left: 10px;
	height: 30px;
	padding: 0px 4px;
}

ul.toastServer {
	margin: 0;
    padding-left: 10px;
}


#detailViewPopup span.ptit {
    width: 70px;
    display: inline-block;
    text-align: right;
    padding-right: 5px;
}

#detailViewPopup .swiper-pagination{
	width: 25px !important;
	right: 0;
	left: auto;
}

#configLangDialog .dialog-container{
	padding-bottom: 40px;
}

#configLangDialog p{
	margin: 10px 0 0 0px;
}

#configLangDialog ons-button.configLangOK {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
}

.example {
    font-size: 12px;
    text-align: left;
    padding-left: 14px;
    text-indent: -14px;
    margin: 5px;
    line-height: 15px;
}

.i18msg{
	word-break: break-all;
}

.bgTransParent{
    background-color: transparent;
}