@keyframes ws-loading {
    0% {
        transform: translate(12px, 80px) scale(0);
    }
    25% {
        transform: translate(12px, 80px) scale(0);
    }
    50% {
        transform: translate(12px, 80px) scale(1);
    }
    75% {
        transform: translate(80px, 80px) scale(1);
    }
    100% {
        transform: translate(148px, 80px) scale(1);
    }
}
@keyframes ws-loading-r {
    0% {
        transform: translate(148px, 80px) scale(1);
    }
    100% {
        transform: translate(148px, 80px) scale(0);
    }
}
@keyframes ws-loading-c {
    0% {
        background: #e15b64;
    }
    25% {
        background: #abbd81;
    }
    50% {
        background: #f8b26a;
    }
    75% {
        background: #f47e60;
    }
    100% {
        background: #e15b64;
    }
}
/* loading */
@keyframes wphb-rotating {
    from {
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -o-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes wphb-rotating {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

#ws-company-table #book-service.loading::before {
    display: inline-block;
    font-family: 'FontAwesome';
    font-weight: 900;
    content: "\f110";
    margin-right: 10px;
    font-size: 17px;
    -webkit-animation: wphb-rotating 1s linear infinite;
    -moz-animation: wphb-rotating 1s linear infinite;
    animation: wphb-rotating 1s linear infinite;
}

/* end loading */

ul.ws-postbox-note.ws-postbox-note-choice li {
    list-style: none;
    margin-bottom: -5px;
}
ul.ws-postbox-note.ws-postbox-note-choice li input[type="radio"] {
    margin-bottom: 0;
    margin-top: 7px;
}
.ws-loading div {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: translate(80px, 80px) scale(1);
    background: #e15b64;
    animation: ws-loading 1s infinite cubic-bezier(0, 0.5, 0.5, 1);
}
.ws-loading div:nth-child(1) {
    background: #f47e60;
    transform: translate(148px, 80px) scale(1);
    animation: ws-loading-r 0.25s infinite cubic-bezier(0, 0.5, 0.5, 1), ws-loading-c 1s infinite step-start;
}
.ws-loading div:nth-child(2) {
    animation-delay: -0.25s;
    background: #e15b64;
}
.ws-loading div:nth-child(3) {
    animation-delay: -0.5s;
    background: #f47e60;
}
.ws-loading div:nth-child(4) {
    animation-delay: -0.75s;
    background: #f8b26a;
}
.ws-loading div:nth-child(5) {
    animation-delay: -1s;
    background: #abbd81;
}
.ws-loading-icon {
    width: 200px;
    height: 200px;
    position: fixed;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
    transform: scale(0.5);
    -o-transform: scale(0.5);
    -webkit-transform: scale(0.5);
}
.ws-loading {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
}
.ws-loading-wrap {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    position: fixed;
    max-height: 100vh;
}
.ws-error {
    border-color: red !important;
}
.ws-company-table {
    margin: auto;
    font-size: 14px;
    max-width: 1200px;
    position: relative;
}
.ws-company-table::after {
    content: '';
    clear: both;
    display: table;
}
.ws-list,
.ws-list li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.ws-company-table label {
    cursor: pointer;
    user-select: none;
    position: relative;
    color: rgba(0, 0, 0, 0.85);
}
.ws-company-table .ws-company-head {
    text-align: center;
}
.ws-company-table .ws-company-head h2 {
    padding: 25px 0;
	color: black;
	font-size: 25px;
    line-height: 30px;
}
.ws-company-body-top {
    position: relative;
}
.ws-company-body-top::before {
    top: 20px;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #ab935f;
}
ul.ws-company-body-step {
    margin: 0 auto;
    list-style: none;
    position: relative;
    padding: 0;
    max-width: 90%;
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(4, 1fr);
}
ul.ws-company-body-step li {
    gap: 10px;
    margin: 0;
	display: grid;
}
ul.ws-company-body-step .active .ws-step-label {
	font-weight: 700;
}
ul.ws-company-body-step .ws-step-icon {
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
}
ul.ws-company-body-step .ws-company-body-step-1 .ws-step-icon {
    background: url(../assets/img/icon-step-1.png) no-repeat center center;
    background-size: 40px 40px;
}
ul.ws-company-body-step .ws-company-body-step-2 .ws-step-icon {
    background: url(../assets/img/icon-step-2.png) no-repeat center center;
    background-size: 40px 40px;
}
ul.ws-company-body-step .ws-company-body-step-3 .ws-step-icon {
    background: url(../assets/img/icon-step-3.png) no-repeat center center;
    background-size: 40px 40px;
}
ul.ws-company-body-step .ws-company-body-step-4 .ws-step-icon {
    background: url(../assets/img/icon-step-4.png) no-repeat center center;
    background-size: 40px 40px;
}
.ws-head-note {
    margin-top: 10px;
    text-align: center;
}
.ws-step-label {
    white-space: nowrap;
}
.ws-company-body {
    gap: 30px;
    display: grid;
}
.ws-postbox {
    position: relative;
    margin-bottom: 32px;
}
.ws-postbox:last-child {
    margin-bottom: 0;
}
.ws-postbox-head {
    margin-bottom: 20px;
}
.ws-postbox-head h3 {
    padding: 0;
    font-size: 25px;
    line-height: 120%;
    color: rgb(61, 63, 101);
}
.ws-postbox ul {
    gap: 7px;
    display: grid;
}
.ws-postbox ul input[type=checkbox] {
    left: 0;
    top: 4px;
    margin: 0;
    position: absolute;
}
.ws-postbox ul input.readonly {
    opacity: 0.5;
    pointer-events: none;
}

.ws-postbox ul li label,
.ws-postbox ul li .ws-label {
    line-height: 20px;
    padding-left: 25px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
p.ws-postbox-note,
span.ws-postbox-note {
    font-weight: 600;
    padding-left: 20px;
    margin: 10px 0 0 20px;
    color: rgba(245, 128, 33, 1);
    background: url(../assets/img/icon-gift.png) no-repeat left center;
    background-size: 16px 16px;
	margin-top: 10px;
    display: inline-block;
}
span.ws-postbox-note {
    margin-left: 5px;
}
.ws-shadowbox-inner ul li {
    margin-left: 0px;
}
.row0 {
    font-weight: 450;
}
.ws-price {
    font-weight: 550;
}
ul.ws-postbox-note {
    gap: 2px;
    margin: 10px 0 0 20px;
}
ul.ws-postbox-note li {
    list-style: inside;
    list-style-type: disclosure-closed;
}
.ws-company-table .ws-company-body .form-control {
    height: auto;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 2px;
    line-height: 1.6em !important;
}
.ws-company-table .ws-company-body .form-control.err {
    border-color: red !important;
}
.ws-company-table .ws-company-body input[type=date] {
    text-transform: uppercase;
}
#ws-postbox-contact .form-control {
    max-width: 40%;
	border: 1px solid #ccc;
    margin-bottom: -5px;
    min-height: 45px;
}
.ws-row {
    display: grid;
    grid-template-columns: 60% 40%;
}
.ws-shadowbox:not(.ws-toggle) .ws-total-box {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.ws-shadowbox {
    padding: 20px;
    position: relative;
    margin-bottom: 16px;
   border: 1px solid #ddd;
    box-shadow: 0 6px 16px 0 rgba(0,0,0,.08);
    border-radius: 12px;
}
.ws-shadowbox .ws-inner {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.ws-shadowbox:last-child {
    margin-bottom: 0;
    padding-left: 50px;
}
.ws-shadowbox-label {
    margin: 0;
    color: #1E69A2;
}
.nutgoback2 {
    padding: 10px 15px 10px 15px;
    line-height: 21px;
    border-radius: 99px;
    font-size: 16px;
    background: #fac100;
    color: #953131;
    border-color: #ffffff;
    font-weight: 550;
}
.h1the {
    font-size: 22px;
    font-family: 'SFD-Bold';
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: -0.036em;
    font-style: normal;
}
.ws-shadowbox-mess .ws-shadowbox-label {
    color: #0BAC38;
    font-weight: 600;
    font-size: 15px;
}
.ws-shadowbox-inner {
    gap: 10px;
    display: grid;
    font-weight: 600;
}
.ws-shadowbox-inner:not(:last-child) {
    margin-bottom: 10px;
}
.ws-shadowbox-inner ul {
    gap: 4px;
    display: grid;
    padding: 0 15px;
}
.ws-shadowbox-inner ul,
.ws-shadowbox-inner ul li {
    margin: 0;
    list-style: none;
    margin-left: -20px;
}
.ws-shadowbox-inner ul li .row1 {
    float: right;
}
.ws-text-orange {
    color: #F58021;
}
.ws-company-foot {
    margin-top: 30px;
    text-align: center;
}
.ws-company-foot-inner {
    gap: 15px;
    align-items: center;
    display: inline-flex;
    vertical-align: middle;
	margin-bottom: 15px;
	font-size:15px;
}
.ws-button {
    padding: 10px;
    font-weight: 600;
    min-width: 240px;
    line-height: 20px;
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
}
.ws-company-foot a.ws-button {
    padding: 11px;
    min-height: 40px;
    color: #856831;
    white-space: nowrap;
    border: 1px solid #93733a;
}
button.ws-button {
    border: 0;
    color: white;
    background: #F58021 !important;
	margin-bottom:0;
}
.ws-total-box .row1 {
    font-size: 24px;
    font-weight: 700;
    color: #1E69A2;
}
.ws-icon-tooltip {
    bottom: 2px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin-left: 3px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background: url(../assets/img/icon-tooltip.png) no-repeat center;
    background-size: 16px 16px;
}
.ws-icon-tooltip:hover {
    z-index: 999;
}

.ws-tooltip {
    top: -8px;
    display: none;
    min-width: 420px;
    border-radius: 2px;
    position: absolute;
    left: calc(100% + 10px);
    filter: drop-shadow(0px 2px 20px rgba(0, 0, 0, 0.2));
}
.ws-tooltip .tooltip-inner {
    z-index: 99;
    position: relative;
    background: white;
}
.ws-tooltip-title {
    line-height: 20px;
    padding: 10px 15px;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 700;
    color: #1E69A2;
    position: relative;
    box-shadow: inset 0px -1px 0px #F0F0F0;
    font-family: "Open Sans Condensed",Arial,Helvetica,sans-serif;
}
.ws-tooltip-title::before {
    content: '';
    right: 100%;
    display: inherit;
    position: absolute;
    border-right: 8px solid white;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}
.ws-tooltip-content {
    padding: 10px 1px;
}
.ws-tooltip-content ul {
    gap: 5px;
    list-style: disc;
    margin: 0 0 0 15px;
}
.ws-tooltip-content ul li {
    list-style: disc;
}
.ws-icon-phone {
    padding-left: 20px;
    display: inline-block;
    vertical-align: middle;
    background: url(../assets/img/icon-phone.png) no-repeat left center;
    background-size: 13px 13px;
}

.ws-success {
    margin-top: 40px;
}
.ws-success .ws-row {
    grid-template-columns: 40% 60%;
}
.ws-success .ws-col-right {
    padding-left: 30px;
}
.ws-success .ws-postbox-body p:not(:last-child) {
    margin-bottom: 5px;
}
.ws-postbox-succcess .ws-list {
    gap: 10px;
    display: grid;
    margin-top: 20px;
    padding: 20px;
    position: relative;
    margin-bottom: 16px;
    border: 1px dashed #ddd;
    box-shadow: 0 6px 16px 0 rgba(0,0,0,.08);
    border-radius: 12px;
}
.ws-postbox-succcess .ws-list li {
    display: grid;
    white-space: nowrap;
    grid-template-columns: 20% 80%;
}
.ws-postbox-succcess .ws-list li span {
    color: #F58021;
    font-weight: 600;
    white-space: normal;
}
.ws-form-fields {
    display: grid;
	gap: 16px 24px;
    grid-template-columns: repeat(2, 1fr);
}
.ws-form-fields .ws-field {
    gap: 4px;
    display: grid;
    align-content: baseline;
}
.ws-form-fields .ws-field-full {
    gap: 20px;
    display: grid;
    width: calc(200% + 30px);
}
.ws-postbox-button .ws-button {
    width: calc(50% - 15px);
}
.ws-form-fields .ws-radio {
    gap: 15px;
    display: flex;
    align-items: center;
}
.ws-form-fields .ws-radio label {
    gap: 5px;
    display: flex;
    align-items: center;
}
.ws-clear {
    opacity: 0;
    z-index: -1;
    position: relative;
}
.ws-field-user_label,
.ws-field-member_label {
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    color: #000000;
    font-family: "Open Sans Condensed",Arial,Helvetica,sans-serif;
}
.ws-form-fields .ws-field-member_type {
    gap: 10px;
}
.ws-button.member-add {
    color: #1E69A2;
    min-height: 40px;
    line-height: 18px;
    padding: 9px 10px;
    background: white;
    border: 1px solid #1E69A2;
}
.ws-postbox-member .ws-form-fields:first-child .member-label {
    font-weight: 700;
}
.ws-postbox-member .ws-form-fields:not(:last-child) {
    margin-bottom: 40px;
}
.ws-icon-add-user {
    padding-left: 25px;
    align-items: center;
    display: inline-flex;
    vertical-align: middle;
    background: url(../assets/img/icon-add-user.png) no-repeat left center;
    background-size: 14px 14px;
}
.ws-postbox-upload,
.ws-postbox-upload .ws-upload-list {
    gap: 10px;
    display: flex;
    align-items: flex-start;
}
.ws-postbox-upload label {
    width: 104px;
    height: 104px;
    display: grid;
    font-size: 14px;
    border-radius: 2px;
    text-align: center;
    align-items: center;
    background: #FAFAFA;
    border: 1px dashed #D9D9D9;
}
.ws-postbox-upload [data-val="0"] .ws-upload-label {
    padding-top: 20px;
    position: relative;
}
.ws-postbox-upload [data-val="0"] .ws-upload-label::before,
.ws-postbox-upload [data-val="0"] .ws-upload-label::after {
    top: 0;
    left: 0;
    right: 0;
    content: '';
    margin: auto;
    position: absolute;
    background: black;
    
}
.ws-postbox-upload [data-val="0"] .ws-upload-label::before {
    top: 4px;
    width: 10px;
    height: 2px;
}
.ws-postbox-upload [data-val="0"] .ws-upload-label::after {
    width: 2px;
    height: 10px;
}
.ws-postbox-upload .ws-field-note {
    max-width: 180px;
    padding-left: 10px;
}
.ws-hide {
    display: none !important;
}
.ws-field-member_label .member-label {
    gap: 15px;
    display: flex;
    align-items: center;
}
.ws-member-del {
    cursor: pointer;
    padding: 0 10px;
    font-size: 14px;
    color: #FF4D4F;
    line-height: 22px;
    border-radius: 2px;
    border: 1px solid #FF4D4F;
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.016);
}
.ws-upload-preview {
    gap: 10px;
    display: grid;
    margin-top: 10px;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
}
.ws-upload-preview img {
    width: 370px;
    height: 218px;
    overflow: hidden;
    object-fit: cover;
    border-radius: 12px;
    border: 1px dashed #D9D9D9;
}
.ws-field-user_add {
    margin-top: 22px;
}
.ws-field-note {
    color: rgba(0, 0, 0, 0.45);
}

.ws-isPhiThanhLap .ws-icon-tooltip,
.ws-isDichVuKeToan .ws-icon-tooltip,
.ws-isChuKySo .ws-icon-tooltip,
.ws-isHoaDonDienTu .ws-icon-tooltip {
    bottom: 0;
}

.ws-heading {
    padding: 0;
    font-size: 25px;
    line-height: 120%;
    margin-bottom: 15px;
    color:rgb(61, 63, 101);
}

.ws-postbox ul li label.ws-label-inner {
    left: 0;
    top: 2px;
    position: absolute;
}

.ws-postbox ul li label.ws-label-inner input {
    display: none;
}
.ws-postbox ul li label.ws-label-inner .checkmark {
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    position: absolute;
    background: white;
    border: 1px solid gray;
}
.ws-postbox ul li label.ws-label-inner input:checked ~ .checkmark {
    border-color: #0175ff;
    background-color: #0175ff;
}
.ws-postbox ul li label.ws-label-inner input[disabled] ~ .checkmark {
    border-color: gray;
    background-color: gray;
}
.ws-postbox ul li label.ws-label-inner input:checked ~ .checkmark:after {
    display: block;
}
.ws-postbox ul li label.ws-label-inner .checkmark:after {
    top: 2px;
    left: 5px;
    width: 5px;
    height: 10px;
    content: "";
    display: none;
    position: absolute;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.ws-isChuKySo ul.ws-postbox-note {
    gap: 5px;
    display: none !important;
}
.ws-isChuKySo ul.ws-postbox-note,
.ws-isChuKySo ul.ws-postbox-note > li {
    list-style: none;
    position: relative;
}
.ws-isChuKySo ul.ws-postbox-note > li {
    padding-left: 25px;
}
.ws-isChuKySo ul.ws-postbox-note > li > label {
    left: 0;
    top: 4px;
    padding: 0;
    position: absolute;
    align-items: center;
    display: inline-flex;
    vertical-align: middle;
}
.ws-isChuKySo ul.ws-postbox-note > li > label > input {
    display: none;
}
.ws-isChuKySo ul.ws-postbox-note > li > label > .checkmark {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid gray;
}
.ws-isChuKySo ul.ws-postbox-note > li > label > .checkmark:hover {
    border-color: #0175ff;
}
.ws-isChuKySo ul.ws-postbox-note > li > label > .checkmark::after {
    content: "";
    display: none;
    position: absolute;
}
.ws-isChuKySo ul.ws-postbox-note > li > label > .checkmark:after {
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: solid 2px white;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ws-isChuKySo ul.ws-postbox-note > li > label > input:checked ~ .checkmark {
    background: #0175ff;
    border-color: #0175ff;
}
.ws-isChuKySo ul.ws-postbox-note > li > label > input:checked ~ .checkmark:after {
    display: block;
}



.ws-isHoaDonDienTu ul.ws-postbox-note {
    gap: 5px;
}
.ws-isHoaDonDienTu ul.ws-postbox-note,
.ws-isHoaDonDienTu ul.ws-postbox-note > li {
    list-style: none;
    position: relative;
}
.ws-isHoaDonDienTu ul.ws-postbox-note > li {
    padding-left: 25px;
}
.ws-isHoaDonDienTu ul.ws-postbox-note > li > label {
    left: 0;
    top: 4px;
    padding: 0;
    position: absolute;
    align-items: center;
    display: inline-flex;
    vertical-align: middle;
}
.ws-isHoaDonDienTu ul.ws-postbox-note > li > label > input {
    display: none;
}
.ws-isHoaDonDienTu ul.ws-postbox-note > li > label > .checkmark {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid gray;
}
.ws-isHoaDonDienTu ul.ws-postbox-note > li > label > .checkmark:hover {
    border-color: #0175ff;
}
.ws-isHoaDonDienTu ul.ws-postbox-note > li > label > .checkmark::after {
    content: "";
    display: none;
    position: absolute;
}
.ws-isHoaDonDienTu ul.ws-postbox-note > li > label > .checkmark:after {
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: solid 2px white;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ws-isHoaDonDienTu ul.ws-postbox-note > li > label > input:checked ~ .checkmark {
    background: #0175ff;
    border-color: #0175ff;
}
.ws-isHoaDonDienTu ul.ws-postbox-note > li > label > input:checked ~ .checkmark:after {
    display: block;
}

@media screen and (min-width: 768px)
{
    .ws-mobile {
        display: none;
    }
    .ws-push-pull {
        display: block;
    }
    .ws-row .ws-col-push-8 {
        width: 35%;
        right: 65%;
        float: left;
        position: relative;
    }
    .ws-row .ws-col-pull-4 {
        left: 35%;
        width: 65%;
        float: left;
        position: relative;
    }
    .ws-init .ws-postbox:not(:last-child) {
        margin-bottom: 20px;
    }
    .ws-icon-tooltip:hover .ws-tooltip {
        display: block;
    }
}

@media screen and (max-width: 767px)
{
    .ws-company-table {
        position: relative;
        margin-left: -30px;
        margin-right: -30px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .ws-col-left .ws-postbox-contact {
        
    }
    .ws-company-table .ws-company-head h2 {
        padding: 25px;
        line-height: 1.3;
    }
    ul.ws-company-body-step {
        display:none;
        gap: 10px;
        max-width: 100%;
        grid-template-columns: repeat(1, 1fr);
    }
    ul.ws-company-body-step li {
        gap: 15px;
        display: flex;
        align-items: center;
    }
    .ws-step-label {
        max-width: 100%;
        min-height: auto;
    }
    .ws-company-body-top::before {
        top: 0;
        left: 18px;
        right: auto;
        height: auto;
        bottom: 40px;
        width: 4px;
    }
    .ws-row {
        gap: 30px;
        grid-template-columns: 100%;
    }
    #ws-postbox-contact .form-control {
        max-width: 100%;
    }
    .ws-company-foot-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .ws-company-foot .ws-button {
        min-width: auto;
    }
    #ws-postbox-after {
        margin-bottom: 0;
    }
    #ws-postbox-contact {
        margin-top: 30px;
    }
    .ws-success .ws-row {
        gap: 16px;
        grid-template-columns: 100%;
    }
    .ws-success .ws-col-right {
        padding-left: 0;
    }
    .ws-form-fields {
        gap: 20px;
        grid-template-columns: 100%;
    }
    .ws-postbox-button .ws-button,
    .ws-form-fields .ws-field-full {
        width: 100%;
    }
    .ws-clear {
        display: none;
    }
    .ws-field-user_label,
    .ws-field-member_label {
        line-height: 1.5;
    }
    .ws-postbox {
        margin-bottom: 24px;
    }
    .ws-postbox-head {
        margin-bottom: 16px;
    }
    .ws-postbox-upload {
        display: grid;
    }
    .ws-postbox-upload .ws-field-note {
        max-width: 100%;
        padding-left: 0;
    }

    h3.ws-mobile {
        padding: 0;
        font-size: 25px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    .ws-shadowbox {
        padding: 16px;
    }
    .ws-shadowbox-inner ul {
        padding: 0 0 0 8px;
    }

    .ws-col > .ws-inner {
        padding: 10px;
        
    }
    .ws-col > .ws-inner .ws-postbox-head h3 {
        font-size: 19px;
    }
    .ws-heading {
        text-align: center;
    }
    .ws-company-body {
        gap: 15px;
    }
    p.ws-postbox-note,
    span.ws-postbox-note {
        display: block;
        margin: 10px 0 0 0;
        background-position: left 3px;
    }
    .ws-postbox-succcess .ws-list li {
        display: grid;
        grid-template-columns: 45% 55%;
    }
    h3.ws-title {
        color: #333333;
        font-size: 18px;
        margin-top: -16px;
        margin-left: -16px;
        margin-right: -16px;
        padding: 8px 16px;
        position: relative;
        background: #F5F5F5;
    }
    h3.ws-title::before,
    h3.ws-title::after {
        top: 16px;
        right: 16px;
        content: '';
        position: absolute;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
    }
    .ws-shadowbox.open h3.ws-title::before {
        border-bottom: 8px solid #828282;
    }
    .ws-shadowbox:not(.open) h3.ws-title::before {
        border-top: 8px solid #828282;
    }
    .ws-shadowbox:not(.open) .ws-inner {
        display: none;
    }
    .ws-total-box ul {
        padding-left: 0;
    }
    .ws-success {
        margin-top: 30px;
    }
    .ws-success .ws-row:not(.ws-push-pull) {
        gap: 40px;
    }
    .ws-upload-preview img {
        width: 100%;
        height: auto;
    }
    .ws-field-user_add {
        margin-top: 0;
    }
    .ws-tooltip {
        top: 50%;
        left: 50%;
        min-width: auto;
        position: fixed;
        background: white;
        width: calc(100% - 60px);
        transform: translate(-50%, -50%);
    }
    .ws-tooltip-title::before {
        display: none;
    }
    ul.ws-postbox-note,
    p.ws-postbox-note {
        margin-left: 27px;
    }
    .ws-postbox ul li label,
    .ws-postbox ul li .ws-label {
        padding-left: 27px;
    }
    .ws-postbox ul input[type=checkbox] {
        top: 0;
        width: 20px;
        height: 20px;
    }
    .ws-overlay::before {
        top: -50vh;
        left: -50vh;
        content: '';
        z-index: 99;
        width: 200vh;
        height: 200vh;
        position: fixed;
        background: rgba(0,0,0,0.5);
    }
    .ws-isChuKySo ul.ws-postbox-note > li > label {
        top: 2px;
    }
}
.ws-company-body-middle {
    font-size:16px;
}
@media screen and (max-width: 390px)
{
    .ws-icon-phone {
        padding-left: 0;
        background: none;
    }
}