@charset "utf-8";
@import url("../css/fonts.css");
@import url("../css/material-fonts.css");
@import url("../css/global.css");
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: var(--font-medium);
    line-height: 1.3;
    background-color: #fff;
	/*
	font-variant: tabular-nums;
    font-feature-settings: "tnum";
	*/
}
html {
	scroll-behavior: smooth;
    scrollbar-track-color: var(--slate-200);
    scrollbar-3dlight-color: var(--slate-200);
    scrollbar-darkshadow-color: var(--slate-200);
    scrollbar-face-color: var(--slate-300);
    scrollbar-arrow-color: var(--slate-300);
    scrollbar-highlight-color: var(--slate-300);
    scrollbar-shadow-color: var(--slate-300);
}
html *::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: var(--slate-200);
}
html *::-webkit-scrollbar-corner {
    background: transparent;
    border-right: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}
html *::-webkit-scrollbar-track {
    background-color: var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}
html *::-webkit-scrollbar-thumb {
    background-color: var(--slate-300);
    border-radius: 5px;
}
html *::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary);
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
	font-size: var(--font-medium);
    color: var(--slate-700);
    background-color: var(--white);
}
body * {
    font-family: var(--font-family);
    font-weight: 500;
}
h1, h2, h3, h4, h5, h6, form, fieldset, img {
    margin: 0;
    padding: 0;
    border: 0;
}
h1, h2, h3, h4, h5, h6, b, strong {
    font-weight: 700;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table caption {
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}
#hd ul, header ul, nav ul, #ft ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
legend {
    position: absolute;
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden;
}
button, img {
    vertical-align: middle;
}
button, input[type='submit'] {
    cursor: pointer;
}
p {
    margin: 0;
    padding: 0;
    word-break: break-all;
}
hr {
    display: none;
}
pre {
    overflow-x: scroll;
    font-size: 1.1em;
}
a {
    text-underline-offset: 4px;
}
a:link, a:visited, a:active {
    text-decoration: none;
}
ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}
dl, dt, dd {
    margin: 0;
    padding: 0;
}
ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
strong {
    font-weight: 700;
}
.placeholder {
    color: var(--slate-500);
}
::-webkit-input-placeholder {
    color: var(--slate-500);
}
::-moz-placeholder {
    color: var(--slate-500);
}
:-ms-input-placeholder {
    color: var(--slate-500);
}
q:before, q:after {
    content: '';
}
i, em, address, cite {
    font-style: normal;
}
*, :after, :before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: var(--slate-300);
}
* {
    text-size-adjust: 100%;
}
::selection {
    background-color: var(--primary);
    color: var(--white);
    text-shadow: none;
}
::-moz-selection {
    background-color: var(--primary);
    color: var(--white);
    text-shadow: none;
}

@media (min-width: 1024px) {
	body * {
		font-weight: 400;
	}
	h1, h2, h3, h4, h5, h6, b, strong {
		font-weight: 700;
	}
}
.sr-only {
    display: inline-block !important;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
}
input {
    height: 36px;
    line-height: 34px;
    padding: 0 4px;
    font-weight: 400;
    color: var(--slate-700);
    border: 1px solid var(--slate-300);
    vertical-align: middle;
    background-color: var(--white);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: border-color 0.2s ease-in;
}
input:-webkit-autofill, input:autofill {
    -webkit-text-fill-color: var(--slate-700);
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: var(--white) !important;
    transition: background-color 5000s ease-in-out 0s;
}
input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--slate-700);
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: var(--white) !important;
}
input:autofill:hover, input:autofill:focus, input:autofill:active {
    -webkit-text-fill-color: var(--slate-700);
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: var(--white) !important;
}
input:hover, textarea:hover, select:hover, input:focus, textarea:focus, select:focus, input:active, textarea:active, select:active {
    border: 1px solid var(--slate-400);
    outline: none;
}  
textarea {
    display: block;
    width: 100%;
    padding: 8px;
    color: var(--slate-700);
    border: 1px solid var(--slate-300);
	transition: border-color 0.2s ease-in;
}
select {
    position: relative;
    margin: 0;
    padding: 0 30px 0 4px;
    height: 36px;
    line-height: 34px;
    color: var(--slate-700);
    border: 1px solid var(--slate-300);
    vertical-align: middle;
    appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48px' viewBox='0 0 24 24' width='48px' fill='%2394a3b8'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
    background-position: calc(100% - 5px) 50%;
    background-size: 20px;
    background-repeat: no-repeat;
    transition: background-image 0.2s ease-out, border-color 0.2s ease-in;
}
select::-ms-expand {
    display: none;
}
select option {
    color: var(--slate-700);
}
select option:disabled {
    color: var(--slate-500);
    background-color: var(--slate-50);
}
select option:checked {
    color: var(--primary);
    font-weight: 500;
    background-color: var(--primary-50);
}
select optgroup {
    color: var(--slate-700);
    font-weight: bold;
    background-color: var(--slate-100);
}
select optgroup:disabled {
    color: var(--slate-500);
    background-color: var(--slate-50);
}
select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='20px' viewBox='0 0 24 24' width='20px' fill='%2394a3b8'%3E%3Cpath d='M8.12 14.71 12 10.83l3.88 3.88c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L12.7 8.71c-.39-.39-1.02-.39-1.41 0L6.7 13.3c-.39.39-.39 1.02 0 1.41.39.38 1.03.39 1.42 0z'/%3E%3C/svg%3E");
}
select:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder, input:focus::-webkit-input-placeholder {
    color: transparent;
}
select:focus::-moz-input-placeholder, textarea:focus::-moz-input-placeholder, input:focus::-moz-placeholder {
    color: transparent;
}
input[readonly], textarea[readonly], input[disabled], textarea[disabled], select[disabled] {
    cursor: not-allowed;
    box-shadow: none;
    color: var(--slate-600);
    border-color: var(--slate-300);
    background-color: var(--slate-50);
}
input, textarea, select {
    border-radius: 4px;
	font-size: var(--font-medium);
}
input[type="checkbox"], input[type="radio"] {
    display: none;
}
input[type="checkbox"] + i + em, input[type="radio"] + i + em {
    margin-left: 6px;
    line-height: 20px;
    display: inline-block;
}
input[type="checkbox"]:disabled + i, input[type="radio"]:disabled + i {
    cursor: not-allowed;
    opacity: .65;
    border-color: var(--slate-300) !important;
}
input[type="checkbox"]:disabled + i + em, input[type="radio"]:disabled + i + em {
    cursor: not-allowed;
    opacity: .65;
}
input[type="checkbox"]:disabled:checked + i, input[type="radio"]:disabled:checked + i {
    border-color: var(--primary) !important;
}
input[type="checkbox"] + i {
    position: relative;
    display: inline-block;
    width: 20px;
    min-width: 20px;
    height: 20px;
    overflow: hidden;
    font-style: normal;
    vertical-align: text-bottom;
    text-align: center;
    border-radius: 4px;
    border: 1px solid var(--slate-300);
    background-color: var(--white);
    outline: none;
	transition: border-color 0.2s ease-in;
}
input[type="checkbox"] + i:hover {
    border: 1px solid var(--primary);
    outline: none;
}
input[type="checkbox"]:checked + i {
    border: 1px solid var(--primary-700);
    background-color: var(--primary);
}
input[type="checkbox"]:checked + i:before {
    display: inline-block;
    width: 18px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--white);
    content: "\e5ca";
    font-family: "Material Icons Round";
    vertical-align: bottom;
    font-size: 18px;
    text-rendering: auto;
    background-color: var(--primary);
}
input[type="radio"] + i {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-style: normal;
    vertical-align: text-bottom;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--slate-300);
    background-color: var(--white);
	transition: border-color 0.2s ease-in;
}
input[type="radio"]:checked + i {
    border: 1px solid var(--primary-700);
    background-color: var(--primary);
}
input[type="radio"] + i:hover {
    outline: none;
    border: 1px solid var(--primary);
}
input[type="radio"]:checked + i:before {
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 4px;
    left: 4px;
    content: "";
    border-radius: 50%;
    background-color: var(--white);
}
@media (min-width: 1280px) {
    input {
		padding: 0 8px;
        height: 44px;
        line-height: 42px;
    }
    select {
		padding: 0 30px 0 8px;
        height: 44px;
        line-height: 42px;
    }
	input[type="checkbox"] + i + em, input[type="radio"] + i + em {
		line-height: 24px;
	}
    input[type="checkbox"] + i {
        width: 24px;
        min-width: 24px;
        height: 24px;
        border-radius: 8px;
    }
    input[type="checkbox"]:checked + i:before {
        width: 22px;
        height: 22px;
        line-height: 22px;
        font-size: 20px;
    }
    input[type="radio"] + i {
        width: 24px;
        min-width: 24px;
        height: 24px;
    }
    input[type="radio"]:checked + i:before {
        width: 12px;
        height: 12px;
        top: 5px;
        left: 5px;
    }
}
input.switch {
    display: none;
}
input.switch + label {
    position: relative;
    width: 80px;
    height: 32px;
    background-color: var(--slate-50);
    border: 1px solid var(--slate-300);
    border-radius: 16px;
    cursor: pointer;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
input.switch + label:before {
    text-transform: uppercase;
    color: var(--slate-700);
    content: attr(data-off-label);
    display: block;
    line-height: 32px;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0 10px;
    text-align: right;
    min-width: 50px;
    overflow: hidden;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
input.switch + label:after {
    content: '';
    position: absolute;
    left: 4px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 1px 1px 5px 0 rgba(var(--black-rgb), .5);
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
input.switch:checked + label {
    border: 1px solid var(--primary-700);
    background-color: var(--primary);
}
input.switch:checked + label:before {
    color: var(--white);
    content: attr(data-on-label);
    left: 0;
    text-align: left;
}
input.switch:checked + label:after {
    left: unset;
    right: 4px;
    background-color: var(--white);
}
input.bool + label {
    border: 1px solid var(--violet-600);
    background-color: var(--violet-500);
}
input.bool + label:before {
    color: var(--white) !important;
}
input.bool:checked + label {
    border: 1px solid var(--primary-700);
    background-color: var(--primary);
}
input.bool:checked + label:before {
    color: var(--white) !important;
}
input.switch:disabled + label {
    cursor: not-allowed;
    opacity: 0.6;
}
label {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    cursor: pointer;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--slate-700);
    width: auto;
    height: 36px;
    line-height: 34px;
    vertical-align: middle;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    border-color: transparent;
    background-color: transparent;
	transition: border-color 0.2s ease-in, background-color 0.2s ease-in;
}
.btn:hover, .btn:focus {
    text-decoration: none;
}
.btn:active, .btn.active {
    background-image: none;
    outline: 0;
    box-shadow: inset 0 3px 5px rgba(var(--black-rgb), .125);
    text-decoration: none;
}
.btn:disabled, .btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed;
    box-shadow: none;
    opacity: .65;
}
.btn-primary {
    color: var(--white);
    border-color: var(--primary-700);
    background-color: var(--primary);
}
.btn-primary::before,
.btn-primary i::after {
    color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
    color: var(--white);
    border-color: var(--primary-800);
    background-color: var(--primary-700);
}
.btn-secondary {
    color: var(--white);
    border-color: var(--slate-600);
    background-color: var(--slate-500);
}
.btn-secondary::before,
.btn-secondary i::after {
    color: var(--white);
}
.btn-secondary:hover i, .btn-secondary:focus i, .btn-secondary:active i, .btn-secondary.active i {
    color: var(--white);
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary.active {
    color: var(--white);
    border-color: var(--slate-700);
    background-color: var(--slate-600);
}
.btn-success {
    color: var(--white);
    border-color: var(--green-600);
    background-color: var(--green-500);
}
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active {
    color: var(--white);
    border-color: var(--green-700);
    background-color: var(--green-600);
}
.btn-success::before,
.btn-success i::after {
    color: var(--white);
}
.btn-success:hover i, .btn-success:focus i, .btn-success:active i, .btn-success.active i {
    color: var(--white);
}
.btn-danger {
    color: var(--white);
    border-color: var(--red-600);
    background-color: var(--red-500);
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active {
    color: var(--white);
    border-color: var(--red-700);
    background-color: var(--red-600);
}
.btn-danger::before,
.btn-danger i::after {
    color: var(--white);
}
.btn-danger:hover i, .btn-danger:focus i, .btn-danger:active i, .btn-danger.active i {
    color: var(--white);
}
.btn-warning {
    color: var(--white);
    border-color: var(--yellow-600);
    background-color: var(--yellow-500);
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active {
    color: var(--white);
    border-color: var(--yellow-700);
    background-color: var(--yellow-600);
}
.btn-warning::before,
.btn-warning i::after {
    color: var(--white);
}
.btn-warning:hover i, .btn-warning:focus i, .btn-warning:active i, .btn-warning.active i {
    color: var(--white);
}
.btn-info {
    color: var(--white);
    border-color: var(--cyan-600);
    background-color: var(--cyan-500);
}
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active {
    color: var(--white);
    border-color: var(--cyan-700);
    background-color: var(--cyan-600);
}
.btn-info::before,
.btn-info i::after {
    color: var(--white);
}
.btn-info:hover i, .btn-info:focus i, .btn-info:active i, .btn-info.active i {
    color: var(--white);
}
.btn-light {
    color: var(--slate-700);
    border-color: var(--slate-300);
    background-color: var(--slate-50);
}
.btn-light:hover, .btn-light:focus, .btn-light:active, .btn-light.active {
    color: var(--slate-700);
    border-color: var(--slate-400);
    background-color: var(--slate-100);
}
.btn-light::before,
.btn-light i::after {
    color: var(--slate-400);
}
.btn-light:hover::before,.btn-light:hover i::after,
.btn-light:focus::before,.btn-light:focus i::after,
.btn-light:active::before,.btn-light:active i::after,
.btn-light.active::before,.btn-light.active i::after {
    color: var(--slate-500);
}
.btn-dark {
    color: var(--white);
    border-color: var(--slate-800);
    background: var(--slate-700);
}
.btn-dark:hover, .btn-dark:focus, .btn-dark:active, .btn-dark.active {
    color: var(--white);
    border-color: var(--slate-900);
    background: var(--slate-800);
}
.btn-dark::before,
.btn-dark i::after {
    color: var(--white);
}
.btn-dark:hover i, .btn-dark:focus i, .btn-dark:active i, .btn-dark.active i {
    color: var(--white);
}
.btn-link {
    color: var(--slate-700);
    border-color: transparent;
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.btn-link::before,
.btn-link i::after {
    color: var(--blue-600);
}
.btn-link:hover, .btn-link:focus, .btn-link:active, .btn-link.active {
    color: var(--blue-600);
    border-color: transparent;
    background: transparent;
    text-decoration: underline;
    outline: 0;
    box-shadow: none;
} 
.btn-xlg {
    padding: 0 20px;
    min-width: 44px;
    height: 44px;
    font-size: var(--font-large);
    font-weight: 700;
    line-height: 42px;
}
.btn-lg {
    padding: 0 16px;
    min-width: 40px;
    height: 40px;
    font-size: var(--font-medium);
    font-weight: 600;
    line-height: 38px;
}
.btn-md {
    padding: 0 12px;
    min-width: 36px;
    height: 36px;
    font-size: var(--font-small);
    font-weight: 500;
    line-height: 34px;
}
.btn-sm {
    padding: 0 10px;
    min-width: 32px;
    height: 32px;
    font-size: var(--font-x-small);
    font-weight: 400;
    line-height: 30px;
}
.btn-xs {
    padding: 0 8px;
    min-width: 28px;
    height: 28px;
    font-size: var(--font-x-small);
    line-height: 26px;
} 
.btn::before {
    margin-right: 4px;
    font-family: "Material Icons Round";
    vertical-align: middle;
    line-height: 20px;
    font-size: 20px;
    font-weight: 400;
    text-rendering: auto;
} 
.btn-square {
    padding: 0 !important;
}
.btn-square::before,
.btn-square i::after {
    margin: 0 !important;
}
@media (min-width: 1280px) {
	.btn-xlg {
		padding: 0 16px;
		min-width: 52px;
		height: 52px;
		font-weight: 700;
		line-height: 50px;
	}
	.btn-lg {
		padding: 0 14px;
		min-width: 48px;
		height: 48px;
		font-weight: 600;
		line-height: 46px;
	}
	.btn-md {
		padding: 0 12px;
		min-width: 44px;
		height: 44px;
		font-weight: 500;
		line-height: 42px;
	}
	.btn-sm {
		padding: 0 10px;
		min-width: 40px;
		height: 40px;
		font-weight: 400;
		line-height: 38px;
	}
	.btn-xs {
		padding: 0 8px;
		min-width: 36px;
		height: 36px;
		font-weight: 300;
		line-height: 34px;
	}
}
.sle {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.new {
    color: var(--red-600);
    font-size: 13px;
    font-weight: 700;
}

/* datepicker Style */
.ui-datepicker {
	width:270px;
	padding:0;
	display:none;
	border:0;
}
.ui-widget.ui-widget-content {
	border:0;
	border-radius:4px;
	overflow:hidden;
	background:#fff;
	box-shadow:0 0 8px rgba(0,0,0,0.3)
}
.ui-datepicker .ui-widget-header {
	position:relative;
	padding:6px 0;
	border:0;
	color:#fff;
	border-radius:0;
	background:var(--primary);
}
.ui-datepicker select {
	border:0 !important;
}
.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year {
	width:75px;
	height:26px !important;
	line-height:26px !important;
	margin:0 4px;
	padding:0 6px;
	border:0;
	border-radius:3px;
	color:#fff;
	font-size:16px !important;
	font-weight:700;
	box-sizing:border-box;
	background-color:transparent !important;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	/* 화살표 없애기 */
}
.ui-datepicker select::-ms-expand {
	display:none;
	/* 화살표 없애기 for IE10,11*/
}
.ui-datepicker .ui-datepicker-title {
	line-height:1.8em;
	text-align:center;
	margin:0px 2.3em;
	font-size:14px;
	font-weight:700;
	letter-spacing:0;
}
.ui-datepicker-title .ui-datepicker-year option,.ui-datepicker-title .ui-datepicker-month option {
	background:#fff;
	color:#363650;
}
.ui-datepicker-title .ui-datepicker-year {
}
.ui-datepicker-title .ui-datepicker-month {
}
.ui-datepicker .ui-datepicker-calendar {
	position:relative;
	width:100%;
	margin:0 auto;
	box-shadow:none;
	border-radius:0;
}
.ui-datepicker-calendar thead {
	display:inline-block;
	height:40px;
}
.ui-datepicker-calendar thead tr {
	position:absolute;
	top:0;
	left:0;
	right:0;
	line-height:40px;
	background:var(--primary);
}
.ui-datepicker-calendar thead th {
	float:left;
	display:block;
	padding:0;
	width:14.2857%;
	color:#fff;
	font-size:14px;
	letter-spacing:1px;
	text-align:center;
}
.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next {
	position:absolute;
	top:5px;
	width:1.8em;
	height:1.8em;
	cursor:pointer
}
.ui-datepicker .ui-datepicker-prev {
	left:5px;
}
.ui-datepicker .ui-datepicker-prev.ui-state-hover {
	background:rgba(0,0,0,0.1);
	border:0;
}
.ui-datepicker .ui-datepicker-prev .ui-icon:before {
	color:#fff;
	font-size:16px;
	content:"\f053";
	vertical-align:middle;
	font-family:'Font Awesome 6 Free';
	font-weight:900;
}
.ui-datepicker .ui-datepicker-next {
	right:5px;
}
.ui-datepicker .ui-datepicker-next.ui-state-hover {
	background:rgba(0,0,0,0.1);
	border:0;
}
.ui-datepicker .ui-datepicker-next .ui-icon:before {
	color:#fff;
	font-size:16px;
	content:"\f054";
	vertical-align:middle;
	font-family:'Font Awesome 6 Free';
	font-weight:900;
}
.ui-datepicker .ui-state-default {
	display:block;
	border:0;
	border-radius:15px;
	width:30px;
	height:30px;
	line-height:30px;
	padding:0;
	margin:4px auto;
	font-size:14px;
	text-align:center;
	background:#fff;
	font-weight:normal;
	color:#363650;
	box-sizing:border-box;
}
.ui-datepicker .ui-state-default.ui-state-hover {
	background:rgba(0,0,0,0.05);
}
.ui-datepicker-today .ui-state-default {
	color:var(--primary);
	font-weight:700;
}
.ui-datepicker-current-day .ui-state-default {
	background:var(--primary) !important;
	color:#fff;
	font-weight:700;
}
.ui-datepicker-buttonpane {
	overflow:hidden;
	border-top:1px solid #eee;
}
.ui-datepicker-buttonpane button[data-handler="today"] {
	color:var(--primary);
	opacity: 0.75;
}
.ui-datepicker-buttonpane button[data-handler="hide"] {
}
/* ie add Style */
.ui-datepicker td,.ui-datepicker th {
	border:0
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float:right;
	cursor:pointer;
	width:auto;
	margin:0.5em 0.2em 0.4em;
	padding:0.2em 0.6em 0.3em;
	overflow:visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float:left;
}
.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span {
	display:block;
	position:absolute;
	left:50%;
	margin-left:-8px;
	top:50%;
	margin-top:-8px;
}
.ui-corner-all {
	border-radius:4px;
}
.ui-icon {
	display:block;
	width:16px;
	height: 16px;
}
/* mobile Responsive */
@media screen and (max-width:480px) {
	.ui-datepicker {
		width:270px !important;
		left:50% !important;
		margin-left: -135px !important;
	}
}