body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dd,
ul,
ol,
form,
input,
textarea,
th,
td,
select {
    margin: 0;
    padding: 0;
    font-weight: 500;
}

em {
    font-style: normal;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

img {
    border: none;
    vertical-align: top;
}

table {
    border-collapse: collapse;
}

input,
textarea {
    outline: none;
}

textarea {
    resize: none;
    overflow: auto;
}

body {
    font-size: 14px;
    font-family: arial;
}
/* 
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
} */

body,
html {
    width: 100%;
    height: 100%;
}

* {
    word-wrap: break-word;
}



.flex-cb {
	display: flex;
	justify-content: center;
	align-items: baseline;
	flex-direction: row;
}

.flex-c {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}

.flex-lt {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: row;
}

.flex-lc {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
}

.flex-lb {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	flex-direction: row;
}

.flex-bc {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
}

.flex-nbc {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	flex-wrap: nowrap;
}

.flex-rc {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-direction: row;
}

.flex-hc {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.flex-hlc {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	align-content: center;
}

.flex-htc {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	align-content: center;
}

.flex-rb {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	flex-direction: row;
}

.flex-bt {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
}

.flex-nrc {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	flex-direction: column;
}