:root {
	--color-main: #0088cc;
	--color-second: #F2B47E;
    --color-text: #000000b3;
    --color-border: #CFCFD6;
    --font-website: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
body {
    font-family: var(--font-website);
	margin: 0;
	padding: 0;
	font-weight: normal;
    color: var(--color-text);
}
input, textarea {
    font-family: var(--font-website);
    color: var(--color-text);
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
}
.vnd-flex {
    display: flex;
    flex-wrap: wrap;
}
.vnd-block {
    display: block !important;
}
.vnd-none {
    display: none !important;
}
.vnd-inline-block {
    display: inline-block;
}
.vnd-section {
    max-width: calc(100% - 30px);
    width: 1110px;
    padding: 0 15px;
    margin: auto;
}
.vnd-space-between {
    justify-content: space-between;
}
.vnd-center-vertical {
    align-items: center;
}
.vnd-lh-0 {
    line-height: 0;
}
.vnd-m-0 {
    margin: 0 !important;
}
.vnd-mb-50 {
    margin-bottom: 50px;
}
.vnd-mb-15 {
    margin-bottom: 15px;
}
.vnd-mb-0 {
    margin-bottom: 0px;
}
.vnd-mt-15 {
    margin-top: 15px;
}
.vnd-mt-20 {
    margin-top: 20px;
}
.vnd-mt-25 {
    margin-top: 25px;
}
.vnd-transition {
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.vnd-flex-60 {
    width: 60%;
    flex: 0 0 60%;
}
.vnd-flex-38 {
    width: 38%;
    flex: 0 0 38%;
}
.vnd-flex-55 {
    width: 55%;
    flex: 0 0 55%;
}
.vnd-flex-40 {
    width: 40%;
    flex: 0 0 40%;
}
.vnd-flex-30 {
    width: 30%;
    flex: 0 0 30%;
}
.vnd-flex-58 {
    width: 58%;
    flex: 0 0 58%;
}
.vnd-flex-68 {
    width: 68%;
    flex: 0 0 68%;
}
.vnd-flex-48 {
    width: 48%;
    flex: 0 0 48%;
}
.vnd-flex-100 {
    width: 100%;
    flex: 0 0 100%;
}
.vnd-text-up {
    text-transform: uppercase;
}
.vnd-overflow-hidden {
    overflow: hidden;
}
.vnd-relative {
    position: relative;
}
.vnd-text-center {
    text-align: center;
}
.vnd-text-right {
    text-align: right;
}
.vnd-text-justify {
    text-align: justify;
}
.vnd-overflow-hidden {
    overflow: hidden;
}
.vnd-input {
    width: calc(100% - 20px);
    border: none;
    padding: 10px;
    border-radius: 4px;
    outline: none;
}
.vnd-form-group {
    flex: 0 0 48%;
    width: 48%;
}
.vnd-form-group label {
    display: block;
    margin-bottom: 7px;
}
.vnd-form-input {
    width: calc(100% - 16px);
    padding: 8px;
    border-radius: 5px;
    border: 1px solid var(--color-text);
    outline: none;
    font-family: var(--font-website);
    color: var(--color-text);
}
.vnd-form-group {
    margin-bottom: 10px;
}
.vnd-form-group-full {
    flex: 0 0 100%;
    width: 100%;
}
textarea.vnd-form-input {
    resize: none;
}