@charset "utf-8";
*{
	margin: 0;
	padding: 0;
	font-size: 14px;
    text-decoration: none;
    list-style: none;
    font-family:
        system, -apple-system, BlinkMacSystemFont,
        "PingFangSC-Regular", "Meiryo", "Microsoft JhengHei",
        "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
        "Helvetica Neue", sans-serif;
}

*:focus {
    outline: none;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #dddddd;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #dddddd;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #dddddd;
}
:-moz-placeholder { /* Firefox 18- */
  color: #dddddd;
}

h1 {
   font-size: 2.5rem;
}
h2 {
   font-size: 2.25rem;
}
h3 {
   font-size: 2rem;
}
h4 {
   font-size: 1.75rem;
}
h5 {
   font-size: 1.5rem;
}

body {
	position: relative;
}

input[type='text'], input[type='password'], select {
    background:#ffffff;
	border:1px solid #dddddd;
	min-height:38px;
	padding: 0 0.5rem;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

input.disabled,
input:disabled,
button.disabled,
button:disabled,
select.disabled,
select:disabled {
    cursor: not-allowed;
}

input:focus,
select:focus {
	border:1px solid #7dbf77;
	box-shadow:0 2px 4px 0 rgba(0,0,0,0.09);
	padding: 0 0.5rem;
    color:black;
}

select {
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    width: 300px;
    background-image: url(../images/ms-comm-arrow.png)!important;
    background-repeat: no-repeat;
    background-position: right 10px center;
}
/*IE隱藏箭頭樣式*/
select::-ms-expand {
    display: none;
}

b {
    font-weight: 800;
}

table {
    border-collapse: collapse;
}

.ms-table{
    border-collapse: collapse;
}

.ms-table td {
    padding: 5px 5px;
}

small {
    font-size: 0.8rem;
}
.ms-required-box::after {
    content: "必須";
    color: #FFFFFF;
    font-size: 1rem!important;
    font-weight: 400;
    padding: 2px 10px;
    width: 50px;
    height: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-color:#bf0100;
    margin-left: 20px;
    vertical-align: middle;
}

/* button ============================================================ */
.ms-btn {
    cursor: pointer;
    min-width:150px;
    height:40px;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.ms-btn.disabled,
.ms-btn:disabled{
    background:#dddddd!important;
    cursor: not-allowed;
}

.ms-btn.disabled:hover,
.ms-btn:disabled.ms-btn:hover{
    box-shadow:none;
}

.ms-btn:hover {
    box-shadow: 0px 2px 4px #888888;
}

.ms-btn-green {
    background-color:#7dbf77;
    color: #FFF;
}

.ms-btn-green.disabled,
.ms-btn-green:disabled {
    background-color:#7dbf77;
}

.ms-btn-gray {
    background-color:#ececec;
    color: #a2a2a2;
}
.ms-btn-gray:hover {
    background-color:#FFFFFF;
}

.ms-btn-red {
    background-color: #d0021b;
    color:#ffffff;
}

.ms-btn-red.disabled,
.ms-btn-red:disabled{
    background-color: #e496a0!important;
}

.ms-btn-orange{
    background-color:#f5a623;
    color:#ffffff;
}

.ms-btn-orange.disabled,
.ms-btn-orange:disabled{
    background-color: #ffd899!important;
}

.ms-btn-small {
    min-width:10px;
    height:1rem;
    line-height: 1rem;
}
.ms-btn-bank-tone {
    background-image:linear-gradient(-180deg, #fefefe 0%, #ebebeb 85%);
    border:1px solid #dddddd;
    min-width:10px;
    margin: 5px;
}
.ms-btn-bank-tone:hover{
    background-image:linear-gradient(0deg, #fefefe 0%, #ebebeb 85%);
}

.ms-btn-bank-tone.ms-selected {
    border: 2px solid #f5a623;
}
.ms-btn-bank-other {
    /*
    writing-mode: tb-rl!important;
    -ms-writing-mode: tb-lr!important;
    -webkit-writing-mode: vertical-lr!important;
    -moz-writing-mode: vertical-lr!important;
    */
    height: 141px;
    width: 37.8px;
}
.ms-btn-bank-other span {
    float: left;
    clear: both;
}
/* fileupload  ============================================================ */
.ms-fileupload {
    position: relative;
    display: inline-block;
    background:#c6e5dc;
    border:1px solid #45aa9d;
    border-radius:3px;
    width:398px;
    height:38px;
    line-height: 38px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.ms-fileupload.disabled {
    border:1px solid #d8d8d8;
    background-color:#dddddd!important;
    cursor: not-allowed;
}

.ms-fileupload > input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 23px;
    opacity:0;
    filter:alpha(opacity=0);
    cursor: pointer;
}

.ms-fileupload.disabled > input[type="file"] {
    display: none;
}

.ms-fileupload::after {
    content: attr(data-filename);
    z-index: 1;
}

.ms-fileupload.ms-chk-error{
    border-color: red;
}

.ms-fileupload > * {
    display: inline-block;
}

.ms-fileupload-extBtn {
    cursor: pointer;
    margin: 0 5px;
/*     // min-width: 10px; */
/*     // height: 1rem; */
/*     // line-height: 1rem; */
/*     // border: 1px solid rgba(0,0,0,0.3); */
/*     // margin-bottom: 16px; */
/*     // text-decoration: underline; */
/*     // color: blue; */
}

/* font ============================================================ */
.ms-font-red{
    color:#d0021b;
}

.ms-font-gray{
    color:#9b9b9b;
}

.ms-font-gray-2{
    color:#4a4a4a;
}
.ms-font-0{
    font-size: 1rem;
}
.ms-font-1{
    font-size: 1.1rem;
}
.ms-font-2{
    font-size: 1.2rem;
}
.ms-font-3{
    font-size: 1.3rem;
}
.ms-font-4{
    font-size: 1.4rem;
}
.ms-font-5{
    font-size: 1.5rem;
}
.ms-font-w4{
    font-weight: 400;
}
.ms-font-w6{
    font-weight: 600;
}
/* ms-border ============================================================ */
.ms-border-red {
    border:1px solid #f03e41;
}

/* background ============================================================ */
.ms-bg-green {
    background-color:#7dbf77;
}

.ms-bg-orange{
    background-color:#f5a623;
}

.ms-bg-gray{
    background-color:#8c9ba5;
}

/* text align ============================================================ */
.ms-text-center {
    margin: 0 auto;
    text-align: center;
}

.ms-text-left {
    text-align: left;
}
.ms-text-right {
    text-align: right;
}

.ms-box {
    margin: 0 auto;
    padding: 10px;
}

.ms-inline-box {
    display: inline-block;
/*     // overflow-x: hidden; */
    width: 100%;
    vertical-align: middle;
}

.ms-inline-box > * {
    display: inline-block;
/*     // overflow-x: hidden; */
    vertical-align: middle;
}

.ms-text-noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.ms-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
}

/* ms-combobox ======================================================================= */
.ms-combobox {
    position: absolute;
    padding: 0 0.5rem;
    margin: 0;
    overflow-y:auto;
    overflow-x:hidden;
    z-index: 2;
    background-color: #FFF;

    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
}

/*IE隱藏箭頭樣式*/
.ms-combobox::-ms-expand {
    display: none;
}

.ms-combobox:focus {
    border-top: none;
    border-top-left-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    -moz-border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -moz-border-bottom-right-radius: 0px;
}

.ms-combobox > .ms-item {
    padding: 13px 15px;
    margin: 0;
    position: relative;
    color: rgba(0,0,0,0.9);
    margin: -1px -7px;
}

.ms-combobox > .ms-item:hover {
    background-color: #fffbca;
}

.ms-combobox > .ms-item:checked,
.ms-combobox > .ms-item:active,
.ms-combobox > .ms-item:focus {
    background-color: #fffbca;
}

.ms-combobox-input {
    background-image: url(../images/ms-comm-arrow.png)!important;
    background-repeat: no-repeat!important;
    background-position: right 10px center!important;
}

.ms-combobox-input.ms-opened{
	border:1px solid #7dbf77;
    /* border-bottom: none; */
    background-image: url(../images/ms-comm-arrow-up.png)!important;
    border-bottom-left-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -moz-border-bottom-right-radius: 0px;
}
.ms-combobox-input::after {
    content: " ";
    width: 12px;
    height: 9px;
    background-image: url(../images/ms-comm-arrow.png)!important;
    position: absolute;
    top: 15px;
    right: 15px;
}

.ms-combobox-input.ms-opened::after {
    transform:rotate(180deg);
    -webkit-transform:rotate(180deg);
    -moz-transform:rotate(180deg);
}

.ms-combobox{
    border: 1px solid #7dbf77;
    vertical-align: middle;
    -webkit-transition: opacity 500ms linear;
    -moz-transition: opacity 500ms linear;
    -o-transition: opacity 500ms linear;
    transition: opacity 500ms linear;
    opacity:0;
    filter:alpha(opacity=0);
    border-radius:3px;
    cursor: pointer;
    overflow-x: hidden;
}
.ms-combobox.ms-opened{
    opacity:100;
    filter:alpha(opacity=100);
}
.ms-combobox .ms-combobox-item {
    padding-left: 5px;
    padding-right: 5px;
    min-height: 38px;
    max-height: 38px;
    line-height: 38px;
    vertical-align: middle;
    cursor: pointer;
    margin: -1px;
}
.ms-combobox .ms-combobox-item:hover{
    background-color: coral;
}
.ms-combobox > .ms-combobox-group {
    padding: 0;
    margin: 0;
    cursor: default;
}
.ms-combobox > .ms-combobox-group > .ms-combobox-group-label {
    padding: 0;
    margin: 0;
    font-weight: 800;
    padding-top: 5px;
    padding-left: 0.5rem;
    padding-right: 5px;
}
.ms-combobox > .ms-combobox-group > .ms-combobox-item {
    padding: 0;
    margin: 0;
    padding-left: 1.5rem;
    padding-right: 10px;
    margin: -1px;
}
/* ms-input-check ===================================================================*/
.ms-input-check {
    display: none;
}
.ms-input-check-box {
    position: relative;
    height: 25px;
    width: 25px;
	background-color:transparent;
	border:5px solid black;
	border-radius:5px;
	position:relative;
	display:inline-block;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	-moz-transition:border-color ease 0.2s;
	-o-transition:border-color ease 0.2s;
	-webkit-transition:border-color ease 0.2s;
	transition:border-color ease 0.2s;
	cursor:pointer;
}
.ms-input-check-text {
    position: absolute;
    margin-left: 25px;
    line-height: 25px;
}
.ms-input-check-box::before,.ms-input-check-box::after {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	position:absolute;
	height:0;
	width:5px;
	background-color:#43aa8b;
	display:inline-block;
	-moz-transform-origin:left top;
	-ms-transform-origin:left top;
	-o-transform-origin:left top;
	-webkit-transform-origin:left top;
	transform-origin:left top;
	border-radius:5px;
	content:' ';
	-webkit-transition:opacity ease .5;
	-moz-transition:opacity ease .5;
	transition:opacity ease .5;
}
.ms-input-check-box::before {
    top: 14px;
    left: 8px;
	-moz-transform:rotate(-135deg);
	-ms-transform:rotate(-135deg);
	-o-transform:rotate(-135deg);
	-webkit-transform:rotate(-135deg);
    transform:rotate(-135deg);
}
.ms-input-check-box::after {
    top: 6px;
    left: 0px;
	-moz-transform:rotate(-45deg);
	-ms-transform:rotate(-45deg);
	-o-transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
}
.ms-input-check:checked + .ms-input-check-box,.ms-input-check-box.checked {
    border-color:#43aa8b;
    background-color: #FFF;
}

.ms-input-check:checked + .ms-input-check-box::after,.ms-input-check-box.checked::after {
	height:10px;
	-moz-transition:height 0.2s ease 0s forwards;
	-o-transition:height 0.2s ease 0s forwards;
	-webkit-transition:height 0.2s ease 0s forwards;
    transition:height 0.2s ease 0s forwards;
}
.ms-input-check:checked + .ms-input-check-box::before,.ms-input-check-box.checked::before {
	height:24px;
	-moz-transition:height 0.4s ease 0s forwards;
	-o-transition:height 0.4s ease 0s forwards;
	-webkit-transition:height 0.4s ease 0s forwards;
	transition:height 0.4s ease 0s forwards;
    box-shadow:0 0 0 2px #FFF;
}
/* ms-input-radio ======================================================================= */
.ms-input-radio::after {
    cursor: pointer;
    content: '';
    position: absolute;
    left: -10px;
    top: -3px;
    background-color: white;
    min-width: 24px;
    min-height: 24px;
    background-image: url(../images/checkbox.png);
    background-repeat: no-repeat;
}

.ms-input-radio.ms-chk-error::after {
    background-image: url(../images/checkbox_error.png);
}

.ms-input-radio:checked::after {
    background-image: url(../images/checkbox_checked.png);
}
.ms-input-radio-button:hover, .ms-input-radio-button.ms-checked:hover {
    border:1px solid #43aa8b;
    background:rgba(137, 194, 177);
}
.ms-input-radio-button > label{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.ms-input-radio-button, .ms-input-radio-button label {
    cursor: pointer;
}
.ms-input-radio-button {
    position: relative;
    text-align: center;
    box-shadow:0 2px 4px 0 #d8d8d8;
    border-radius:2px 0 0 2px;
    width:123px;
    height:28px;
    line-height: 28px;
    background:#ffffff;
    border:1px solid #ced1d2;
}
.ms-input-radio-button.ms-checked {
    background:rgba(67,170,139,0.30);
    border:1px solid #43aa8b;
    box-shadow: 0 2px 4px 0 #d8d8d8;

}
.ms-input-radio-button input[type="radio"] {
    display: none;
}
.ms-input-radio-button .ms-input-radio.ms-chk-error+label {
    border: 1px solid #f03e41;
}

/* ms-progress ============================================================================= */
.ms-progress-bar {
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: 0;
    height: 100%;
    text-align: right;
}

.ms-progress-bar-inner {
    position: relative;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 0%;
    background-color: rgba(69, 170, 157, 0.5);
    text-shadow: 0 0 0.2em #FFF, 0 0 0.2em #FFF, 0 0 0.2em #FFF;
}
/* ms-modal ======================================================================= */
.ms-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    background-color: rgba(0,0,0,0.4);
    display: none;
}
.ms-modal.ms-opened {
    display:inherit;
}
.ms-modal-header {
    position: relative;
    background:#fffeec;
    padding: 20px 0;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    font-weight: 800;
    font-size: 1.5rem;
}

.ms-modal-title {
    font-weight: 800;
}

.ms-modal-fn-area {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px;
    text-align: right;
}

.ms-modal-content {
    position: absolute;
    left: 50%;
    top: 50%;
    background:#ffffff;
    box-shadow:0 1px 50px 0 rgba(0,0,0,0.55);
    min-height:100px;
    min-width: 100px;
    z-index: 9999;

    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.ms-modal-body {
    position: relative;
    padding:20px;
}

.ms-modal-action-area {
    text-align: center;
}
.ms-modal-footer {
    padding: 10px;
}
/* ms-group-list ======================================================================= */
.ms-group-list {
    background:#fbfbfb;
    box-shadow:0 1px 4px 0 rgba(155,155,155,0.50);
    border-radius:10px;
    text-align: left;
}

.ms-group-list > .ms-item {
    color:#4a4a4a;
/*    line-height: 1rem;*/
    margin: -1px;
    border-bottom: 1px solid #e4e4e4;
    padding-left: 20px;
}

.ms-group-list > .ms-item:last-child {
    border-bottom:none;
}
/* ms-processing-mark =====================================================================================*/
.ms-processing-mark {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom:0;
    background-color: rgba(0,0,0,0.3);
    background-image: url(../images/Wedges-3s-200px.gif);
    background-size: 100px;
    background-position: center center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    display: none;
  }

  .ms-processing-mark::before {
      content: attr(data-text);
      position: absolute;
      text-align: center;
      top: 55%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #FFFFFF;
  }

/* ms-message-mark =====================================================================================*/
.ms-message {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.3);
    background-size: 100px;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: none;
}
.ms-message.ms-opened {
    display: block;
}
.ms-message-box{
    position: relative;
    min-height: 1rem;
    min-width: 350px;
    width: 350px;
    top: 40%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 0px 2px 4px 2px rgba(155,155,155,0.50);
    background-color: #FFF;
    z-index: 0;
}
.ms-message-box .ms-message-close {
    position: absolute;
    padding: 3px;
    vertical-align: middle;
    right: 0px;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
    width: 10px;
    height: 10px;
    background-image: url(../images/ms-close.png);
    background-repeat: no-repeat;
    background-position: center;
}
.ms-message-box > .ms-message-close:hover{
    font-weight: 800;
}
.ms-message-box > .ms-message-top {
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    font-size: 1rem;
    line-height: 1rem;
    text-align: center;
    padding: 13px;
    /* border-bottom: 1px solid #d8d8d8; */
    min-height: 1rem;
    background-color: #9addb0;
    color: #FFFFFF;
}
.ms-message-box > .ms-message-content {
    padding: 10px;
    margin: -1px 0px;
    word-break: break-all;
}
.ms-message-box > .ms-message-footer {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    padding: 5px;
    text-align: right;
    /* border-top: 1px solid #d8d8d8; */
}
.ms-message-footer > div {
    margin-left: 5px;
}

/* ms-tooltip==================================================================================== */
.ms-tooltip {
    position: absolute;
    display: inline-block;
    background:#f03e41;
    box-shadow:0 2px 6px 0 rgba(82,82,82,0.60);
    border-radius:4px;
    color:#ffffff;
    padding: 12px 20px;
    z-index: 9980;
    max-width: 500px;
    word-wrap:break-word;
}
.ms-tooltip::after {
    content: "";
    position: absolute;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent transparent;
}

.ms-tooltip-top::after {
    top: calc(100% + 10px);
    left: calc(50% + -10px);
    border-top-color: #f03e41;
    transform: scale(0.5,2);
}

.ms-tooltip-left::after {
    top: calc(50% - 5px);
    left: calc(100% + 10px);
    border-left-color: #f03e41;
    transform: scale(2,0.5);
}

.ms-tooltip-right::after {
    top: calc(50% - 5px);
    right: calc(100% + 10px);
    border-right-color: #f03e41;
    transform: scale(2,0.5);
}
.ms-tooltip-bottom::after {
    bottom: calc(100% + 10px);
    left: calc(50% - 5px );
    border-bottom-color: #f03e41;
    transform: scale(0.5,2);
}

/* ms-input-alert ============================================================================*/
.ms-input-alert-box {
    position: relative;
    background-color: #ffffff;
    min-width: 400px ;
    width: 50%;
    text-align: left;
    border: 1px solid #E71D32;
    border-left-width: 6px;
    padding: 10px;
    margin-top: 40px;
    margin-left: 40px;
}

.ms-input-alert-head {
    position: relative;

}

.ms-input-alert-title {
    margin-left: 30px;
    font-weight: 700;
    color:#34495e;
}

.ms-input-alert-icon {
    position: absolute;
    padding: 3px;
    left: 15px;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-image: url(../images/ms-icon-tack.png);
    background-repeat: no-repeat;
    background-position: center;
}

.ms-input-alert-close {
    position: absolute;
    padding: 3px;
    vertical-align: middle;
    right: 0px;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
    width: 10px;
    height: 10px;
    background-image: url(../images/ms-close.png);
    background-repeat: no-repeat;
    background-position: center;
}

.ms-input-alert-body {
    position: relative;
    padding: 20px 0;
}

.ms-input-alert-item {
    padding-left: 30px;
    padding-top: 15px;
    text-decoration: underline;
    color: #E71D32;
}
/* =====================================================================================*/
.ms-requiredLab::after {
    content: "*";
    color: red;
    font-size: 1.25 rem;
    font-weight: 800;
}

.ms-panel {
    background:#f8f8f8;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.15);
    border-radius:30px;
    min-width:1050px;
    max-width: 1050px;
    width: 80%;
    margin: 10px auto;
    padding: 1px;
}
.ms-mouse-icon-pointer{
    cursor: pointer;
}
.ms-d-none {
    display: none!important;
}
.ms-search-address {
    background:#d8d8d8;
    border-radius:13px;
    width:80px;
    height:30px;
    color:#4a4a4a;
    letter-spacing:0;
    font-size: 1rem;
    text-align: center;
    line-height: 30px;
    font-weight: 800;
    cursor: pointer;
    margin-left: 50px;
}
.ms-search-address.ms-disabled {
    cursor: not-allowed;
}
.ms_item_title {
    border-left: 3px solid #f5a623;
    border-bottom: 1px solid #f5a623;
    padding-left: 5px;
    font-weight: 600;
}
.ms-shadow {
    box-shadow:0 2px 4px 0 rgba(0,0,0,0.09);
}
/* ============================================================ */
.ms-chk-error {
    border:1px solid #f03e41 !important;
}

/* ============================================================ */

@keyframes ms-animation-out {
    0%{

    }

    100%{

    }
}

 .ms-underline {
	border: none;
	border-bottom: 1px solid #b2b2b2;
 }