html {
	height: 100%;
}

body {
	margin: 0 auto;
	font-family: Helvetica, sans-serif;
	font-size: initial;
	/* font-weight:lighter; */
	background-color: white;

	height: 100%;
}

a {
	color: #333333;
}

input[type='text'],
input[type='number'],
input[type='date'] {
	/*font-size:18px;*/
	border-color:#cccccc;
	border-style:solid;
	border-width:1px;
	border-radius:4px;
	/*padding:10px;*/
	text-shadow:0px 0px 0px rgba(42,42,42,.75);
	/*width: 95%;*/
	color: #666666;
}

.container-div {
	background-color: white;
	/*height: 100%;*/
	min-height: 100%;
	/* max-width: 640px; */
	width: 100%;
	margin: 0 auto;
}

.content {
	padding: 23px 8px;
}

.main-title {
	font-size: 20px;
}

.content-div {
	display: inline-block;
	text-align: center;
}

.sub-content-div {
	margin-top: 20px;
	display: inline-block;
	text-align: left;
}

.content-text {
	font-size: 14px;
}

.extra-mainaction-btn {
	width: 95%;
	height: 46px;
	background-color: #ee6f73;
	color: white;
	padding: 0px;
	margin-top: 10px;
	border: 0;
	font-size: 18px;
	font-weight: 400;
	border-radius: 23px;
}

.mainaction-btn {
	width: 95%;
	height: 46px;
	background-color: #000;
	color: white;
	padding: 0px;
	margin-top: 10px;
	border: 0;
	font-size: 18px;
	font-weight: 400;
	border-radius: 23px;
}

.secondaction-btn {
	width: 95%;
	height: 46px;
	background-color: #666;
	color: white;
	padding: 0px;
	margin-top: 10px;
	border: 0;
	font-size: 18px;
	font-weight: 400;
	border-radius: 23px;
}

.thirdaction-btn {
	width: 95%;
	height: 46px;
	background-color: rgba(102, 102, 102, 0);
	color: #ee6f73;
	border-color: #ee6f73;
	padding: 0px;
	margin-top: 10px;
	border: 1;
	font-size: 18px;
	font-weight: 400;
	border-radius: 23px;
}

.cancel-btn {
	width: 95%;
	height: 46px;
	background-color: #999;
	color: black;
	padding: 0px;
	margin-top: 10px;
	border: 0;
	border-color: #000;
	font-size: 18px;
	font-weight: 400;
	border-radius: 23px;
}

.login-error-message {
	padding: 20px;
	font-size: 18px;
	color: rbg(118, 91, 46);
	text-align: center;
	background-color: rgb(252, 248, 220);
}

.large-main-message-icon-img {
	min-width: 150px;
    min-height: 150px;
    width: 30vw;
    height: 30vw;
    max-width: 200px;
    max-height: 200px;
}

.center-div {
	text-align: center;
}

.text-align-right {
	text-align: right;
}

.alert-small-text {
	color: red;
	font-size: 14px;
}

/* header */
.header-div {
	position: relative;
}

.header-div .app-bar {
	padding: 0px 8px;
}

.header-div .app-bar-height {
	height: 48px;
}

.header-div .header-title {
	font-size: 22px;
	color: #666666;
}

.header-div .header-back-div {
	left: 8px;
	position: absolute;
	top: 0;
}

.header-div .header-logout-div {
	font-size: 14px;
}

.header-div .header-excel-div {
	position: absolute;
	right: 8px;
	top: 0;
}

.header-div .back-btn-img {
	width: 40px;
}

.header-div #header-separator-container {
	padding-bottom: 8px;
	position: relative;
}

.header-div #header-separator {
	height: 8px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

/*.header-separator {
	width: 100%;
}*/

/* header menu */
.header-div #menu,
.header-div #sub-menu {
	background-color: #ee6f73;
}

.header-div #menu a,
.header-div #menu i,
.header-div #sub-menu a {
	color: #ddd;
}

.header-div #menu .menu-item,
.header-div #sub-menu .menu-item {
	align-items: center;
	display: flex;
	justify-content: center;
}

.header-div #menu .active,
.header-div #menu .active-light,
.header-div #sub-menu .active {
	background-color: #ea484b;
	border-bottom: 4px #ddd solid;
	color: #fff;
}

.header-img {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}

#change-lang-list {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.success-detail {
	font-weight: 100;
	text-align: center;
}

/* footer */
.footer {
	/*height: 30px;*/
	line-height: 30px;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
	margin-top: 50px;
	padding-bottom: 30px;
}

.support-text {
	padding-top: 20px;
	font-size: 14px;
	text-align: center;
}

.footer-logo {
	width: 100px;
	vertical-align: middle;
}

/* flex containers */
.flex-x-start {
	display: flex;
}

.flex-x-center {
	display: flex;
  justify-content: center;
}

.flex-x-space-between {
	display: flex;
	justify-content: space-between;
}

.flex-y-center {
	display: flex;
	flex-direction: column;
	-ms-flex-direction: column;
  justify-content: center;
}

.flex-col-x-center {
  align-items: center;
  display: flex;
  flex-direction: column;
  -ms-flex-direction: column;
}

.flex-col-x-start {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  -ms-flex-direction: column;
}

/* margin and padding utilities */
.mb-15 {
	margin-bottom: 15px;
}

#back-btn {
	cursor: pointer;
}


@media screen and (min-width: 641px) {
	.content {
		padding: 50px 90px;
	}
}

@media screen and (min-width: 1024px) {
	.content {
		padding: 50px 170px;
	}
}

.action-link {
	text-decoration: underline;
}

#multi-language-texts {
	display: none;
}

/* Success tick animation */
.checkmark__circle {
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	stroke-width: 2;
	stroke-miterlimit: 10;
	stroke: #7ac142;
	fill: none;
	animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
	min-width: 150px;
    min-height: 150px;
    width: 30vw;
    height: 30vw;
    max-width: 200px;
    max-height: 200px;
	border-radius: 50%;
	display: block;
	stroke-width: 2;
	stroke: #fff;
	stroke-miterlimit: 10;
	margin: 3% auto;
	box-shadow: inset 0px 0px 0px #7ac142;
	animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
	transform-origin: 50% 50%;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
	100% {
		stroke-dashoffset: 0;
	}
}
@keyframes scale {
	0%, 100% {
		transform: none;
	}
	50% {
		transform: scale3d(1.1, 1.1, 1);
	}
}
@keyframes fill {
	100% {
		box-shadow: inset 0px 0px 0px 200px #7ac142;
	}
}