body {
    background-color: #eee;
}

.workspace_wrapper {
    margin: 0px auto;
    padding: 20px;
    box-sizing: border-box;
    width: 640px;
    border: #ddd solid 1px;
    color: #666;
    background-color: #fff;
    border-radius: 10px;
}

.workspace_wrapper .instruction_manual {
    display: inline-block;
}

.workspace_wrapper .instruction_manual .title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 20px 0px 0px 0px;
    box-sizing: border-box;
}

.workspace_wrapper .instruction_manual .description {
    font-size: 14px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    line-height: 30px;
    text-indent: 2em;
}
.workspace_wrapper .instruction_manual .face_shape_demo_wrapper {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding-bottom: 50px;
    box-sizing: border-box;
}

.workspace_wrapper .instruction_manual .face_shape_demo_wrapper img{
    width: 480px;
}

.workspace_wrapper .avoid_wrapper{
    display: inline-block;
    width: 100%;
    text-align: center;
    display: inline-block;
    padding-bottom: 50px;
    box-sizing: border-box;

}
.workspace_wrapper .avoid_wrapper .title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 0px 0px 0px 0px;
    box-sizing: border-box;
}

.workspace_wrapper .avoid_wrapper .description {
    font-size: 14px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    line-height: 30px;
    text-indent: 2em;
}
.workspace_wrapper .avoid_wrapper .image_wrapper img{
    display: inline-block;
    width: 480px;
}

.workspace_wrapper .toolbar_mode_wrappper {
    width: 180px;
    width: 100%;
    height: 40px;
    font-size: 16px;
    font-family: custom_MarkPro_bold;
    border-top: #CED4DA solid 0px;
    border-radius: 0px;
    box-sizing: border-box;
    text-align: center;
}

.workspace_wrapper .toolbar_mode_wrappper .mode_wrapper {
    display: inline-block;
}

.workspace_wrapper .toolbar_mode_wrappper .mode_image {
    display: inline-block;
    float: left;
    height: 40px;
    width: 200px;
    text-align: center;
    border-radius: 10px;
    background: #0099A8;
    color: #fff;
    cursor: pointer;
}

.workspace_wrapper .upload_image_relative {
    position: relative;
    height: 100%;
    width: 100%;
    border: #0f0 solid 0px;
}

.workspace_wrapper .upload_image_relative .upload_text {
    background-image: url(../images/icon_upload_active.png);
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: 20px 20px;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    text-align: center;
    cursor: pointer;
    z-index: 90;
    line-height: 40px;
    color: #fff;
    font-weight: bold;
}

.workspace_wrapper .upload_image_relative .upload_file_wrapper {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    cursor: pointer;
    z-index: 91
}

.workspace_wrapper .upload_image_relative .upload_file_wrapper input {
    height: 35px;
    width: 100%;
    display: block;
    cursor: pointer;
}

.workspace_wrapper .toolbar_mode_wrappper .mode_webcam {
    display: inline-block;
    float: left;
    margin-left: 50px;
    height: 40px;
    width: 200px;
    border-radius: 10px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    background: #0099A8;
    color: #fff;
    cursor: pointer;
}

.workspace_wrapper .toolbar_mode_wrappper .mode_webcam .icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-image: url(../images/icon_webcam_active.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 25px auto;
}

.workspace_wrapper .toolbar_mode_wrappper .mode_webcam .text {
    width: 90px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    color: #666;
    color: #fff;
    font-weight: bold;
}

.workspace_wrapper .toolbar_mode_wrappper ul {
    padding: 0px;
    margin: 0px;
    display: inline-block;
    list-style: none;
}

.workspace_wrapper .toolbar_mode_wrappper ul li {
    float: left;
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: inline-block;
}

.face_shape_detect_wrapper {
    display: inline-block;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.face_shape_detect_wrapper .detect_image_wrapper {
    display: inline-block;
    width: 100%;
    padding: 50px 0px;
    box-sizing: border-box;
    text-align: center;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper {
    display: inline-block;
    position: relative;
    width: 480px;
    height: 480px;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .loading_wrapper {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: none;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .loading_wrapper .loading_mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 29;
}

@keyframes spinner_border {
    to {
        transform: rotate(360deg);
    }
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .loading_wrapper .spinner_border {
    position: absolute;
    left: 220px;
    top: 200px;
    display: inline-block;
    width: 50px;
    height: 50px;
    vertical-align: text-bottom;
    border: 5px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    animation: .75s linear infinite spinner_border;
    z-index: 30;
    box-sizing: border-box;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper {
    position: absolute;
    left: 0px;
    top: 0px;
    display: inline-block;
    z-index: 20;
    border: #0f0 solid 0px;
    width: 100%;    
    height: 100%;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_icon_wrapper {
    position: absolute;
    top: 10px;
    left: 90px;
    border: #0f0 solid 0px;
    width: 300px;
    z-index: 100;
    display: inline-block;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_icon_wrapper ul {
    margin: 0px;
    padding: 0px 0px 0px 0px;
    box-sizing: border-box;
    list-style-type: disc;
    display: inline-block;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_icon_wrapper ul li {
    float: left;
    width: 100px;
    display: list-item;
    text-align: -webkit-match-parent;
    unicode-bidi: none;
    list-style: none;
    list-style-position: outside;
    color: #333;
    color: #fff;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_icon_wrapper ul li .icon_wrapper {
    display: inline-block;
    width: 100%;
    height: 40px;
    background-image: url("../images/detect_error.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 40px 40px;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_icon_wrapper ul li.success .icon_wrapper {
    background-image: url("../images/detect_success.png");
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_icon_wrapper ul li .title {
    display: inline-block;
    width: 100%;
    font-size: 12px;
    text-align: center;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_wrapper {
    position: absolute;
    border: #0f0 solid 0px;
    width: 300px;
    z-index: 100;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
    --tw-bg-opacity: 0.5;
    border-radius: 10px;
    box-sizing: content-box;
    padding: 20px;
    display: none;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_wrapper .title{
    width: 100%;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_wrapper .description{
    width: 100%;
    font-size: 14px;
    color: #fff;
    /*font-weight: bold;*/
    text-align: left;
    padding: 10px;
    box-sizing: border-box;
}


.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_wrapper .toolbar_wrapper{
    width: 100%;
    text-align: center;
    display: inline-block;
    padding-top: 10px;
    box-sizing: border-box;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_wrapper .toolbar_wrapper .btn_continue{
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    background: #0099A8;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    border-radius: 10px;
    padding: 5px 10px;
}
.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_wrapper ul {
    margin: 0px;
    padding: 0px 0px 0px 50px;
    box-sizing: border-box;
    list-style-type: disc;
    display: inline-block;
    width: 100%;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_wrapper ul li {
    display: list-item;
    text-align: -webkit-match-parent;
    unicode-bidi: isolate;
    list-style: inside;
    list-style-position: outside;
    color: #fff;
    text-align: left;
}
.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_wrapper ul li::marker {
    color: #0099A8; 
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_wrapper ul li.hide {
    display: none;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .detect_face_wrapper .detect_tips_wrapper ul li p {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    /*font-weight: bold;*/
    line-height: 30px;
    color: #fff;
/*    color: #666;*/
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .result_wrapper {
    position: absolute;
    left: 0px;
    top: 0px;
    display: inline-block;
    width: 480px;
    z-index: 10;
}

.face_shape_detect_wrapper .detect_image_wrapper .image_relative_wrapper .result_wrapper img {
    width: 100%;
}


.result_face_shape_wrapper {
    width: 100%;
    display: inline-block;
}

.result_face_shape_wrapper .face_shape_title {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: #0099A8;
    padding: 20px 20px;
    box-sizing: border-box;
    display: inline-block;
}

.result_face_shape_wrapper ul {
    width: 100%;
    margin: 0px;
    padding: 0px;
    display: inline-block;
}

.result_face_shape_wrapper ul li {
    width: 50%;
    float: left;
    list-style: none;
    padding: 10px 10px;
    box-sizing: border-box;
}

.result_face_shape_wrapper ul li .item {
    border-radius: 10px;
    border: #ccc solid 1px;
    padding: 20px 20px;
}

.result_face_shape_wrapper ul li .title_percent_wrapper {
    display: inline-block;
    width: 100%;
    padding: 0px 0px 10px 0px;
    box-sizing: border-box;

}

.result_face_shape_wrapper ul li .title_percent_wrapper .title_wrapper {
    float: left;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    line-height: 25px;
}

.result_face_shape_wrapper ul li .title_percent_wrapper .percent_wrapper {
    float: right;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #0099A8;
    line-height: 25px;
}

.result_face_shape_wrapper .progress-bar {
    width: 100%;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.result_face_shape_wrapper .progress-fill {
    height: 100%;
    background-color: #4caf50;
    background-color: #0099A8;
    transition: width 0.4s ease;
}

.result_face_size_wrapper {
    width: 100%;
    display: inline-block;
}

.result_face_size_wrapper .face_size_title {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: #0099A8;
    padding: 20px 20px;
    box-sizing: border-box;
    display: inline-block;
}

.result_face_size_wrapper ul {
    width: 100%;
    margin: 0px;
    padding: 0px;
    display: inline-block;
}

.result_face_size_wrapper ul li {
    width: 50%;
    float: left;
    list-style: none;
    padding: 10px 10px;
    box-sizing: border-box;
}

.result_face_size_wrapper ul li .item {
    border-radius: 10px;
    border: #ccc solid 1px;
    padding: 20px 20px;
}

.result_face_size_wrapper ul li .title_content_wrapper {
    display: inline-block;
    width: 100%;
    padding: 0px 0px 0px 0px;
    box-sizing: border-box;

}

.result_face_size_wrapper ul li .title_content_wrapper .title_wrapper {
    float: left;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    line-height: 25px;
}

.result_face_size_wrapper ul li .title_content_wrapper .content_wrapper {
    float: right;
    display: inline-block;
    font-size: 16px;
    color: #0099A8;
    font-weight: bold;
    line-height: 25px;
}

.result_face_attribute_wrapper {
    width: 100%;
    display: inline-block;
}

.result_face_attribute_wrapper .face_attribute_title {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: #0099A8;
    padding: 20px 20px;
    box-sizing: border-box;
    display: inline-block;
}

.result_face_attribute_wrapper ul {
    width: 100%;
    margin: 0px;
    padding: 0px;
    display: inline-block;
}

.result_face_attribute_wrapper ul li {
    width: 50%;
    float: left;
    list-style: none;
    padding: 10px 10px;
    box-sizing: border-box;
}

.result_face_attribute_wrapper ul li .item {
    border-radius: 10px;
    border: #ccc solid 1px;
    padding: 20px 20px;
}

.result_face_attribute_wrapper ul li .title_content_wrapper {
    display: inline-block;
    width: 100%;
    padding: 0px 0px 0px 0px;
    box-sizing: border-box;

}

.result_face_attribute_wrapper ul li .title_content_wrapper .title_wrapper {
    float: left;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    line-height: 25px;
}

.result_face_attribute_wrapper ul li .title_content_wrapper .content_wrapper {
    float: right;
    display: inline-block;
    font-size: 16px;
    color: #0099A8;
    font-weight: bold;
    line-height: 25px;
}

.result_face_attribute_wrapper ul li .title_content_wrapper .content_wrapper .color_wrapper {
    display: block;
    width: 25px;
    height: 25px;
    box-sizing: border-box;
    border: #eee solid 1px;
    background-color: #0099A8;
    background-color: #E3A597;
}


.workspace_wrapper .cropper_bg_mask {
    left: 0px;
    top: 0px;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 299;
    display: none;
}

.workspace_wrapper .cropper_wrapper {
    left: 0px;
    top: 0px;
    position: fixed;
    z-index: 300;
    width: 100%;
    height: 100%;
    width: 880px;
    height: 480px;
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.workspace_wrapper .cropper_wrapper .original_image_wrapper {
    left: 0px;
    top: 0px;
    position: absolute;
    width: 480px;
    height: 480px;
}

.workspace_wrapper .cropper_wrapper .cropper_tooltar_wrapper {
    right: 0px;
    top: 0px;
    position: absolute;
    width: 400px;
    height: 480px;
    padding: 120px 0px;
    box-sizing: border-box;
}

.workspace_wrapper .cropper_wrapper .cropper_tooltar_wrapper .cropper_tips_wrapper {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    color: #666;
    font-size: 16px;
    line-height: 30px;
}

.workspace_wrapper .cropper_wrapper .cropper_tooltar_wrapper .cropper_tips_wrapper  ul {
    margin: 0px;
    padding: 0px 0px 0px 20px;
    box-sizing: border-box;
    list-style-type: disc;
    display: inline-block;
    width: 100%;
}

.workspace_wrapper .cropper_wrapper .cropper_tooltar_wrapper .cropper_tips_wrapper  ul li {
    display: list-item;
    text-align: -webkit-match-parent;
    unicode-bidi: isolate;
    list-style: inside;
    list-style-position: outside;
    color: #666;
    text-align: left;
    line-height: 30px;
}

.workspace_wrapper .cropper_wrapper .cropper_tooltar_wrapper .cropper_tips_wrapper ul li::marker {
    color: #0099A8; 
}

.workspace_wrapper .cropper_wrapper .cropper_tooltar_wrapper .cropper_button_wrapper {
    width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.workspace_wrapper .cropper_wrapper .cropper_tooltar_wrapper .cropper_button_wrapper .btn_cancel {
    display: inline-block;
    font-size: 18px;
    padding: 8px 10px;
    border: #0099A8 solid 2px;
    border-radius: 10px;
    color: #0099A8;
    font-weight: bold;
    width: 100px;
    cursor: pointer;
    box-sizing: border-box;
}

.workspace_wrapper .cropper_wrapper .cropper_tooltar_wrapper .cropper_button_wrapper .btn_apply {
    display: inline-block;
    padding: 8px 10px;
    background: #0099A8;
    color: #fff;
    display: inline-block;
    font-weight: bold;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    width: 100px;
    box-sizing: border-box;
    margin-left: 20px;
}


.workspace_wrapper .webcam_bg_mask {
    left: 0px;
    top: 0px;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 299;
    display: none;
}

.workspace_wrapper .webcam_wrapper {
    left: 0px;
    top: 0px;
    position: fixed;
    z-index: 300;
    width: 100%;
    height: 100%;
    width: 880px;
    height: 480px;
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.workspace_wrapper .webcam_wrapper .webcam_iframe_wrapper {
    left: 0px;
    top: 0px;
    position: absolute;
    width: 480px;
    height: 480px;
    overflow: hidden;
}

.workspace_wrapper .webcam_wrapper .webcam_iframe {
    margin-left: -80px;
    width: 640px;
    height: 480px;
    background: #eee;
}

.workspace_wrapper .webcam_wrapper .webcam_tooltar_wrapper {
    right: 0px;
    top: 0px;
    position: absolute;
    width: 400px;
    height: 480px;
    padding: 120px 0px;
    box-sizing: border-box;
}

.workspace_wrapper .webcam_wrapper .webcam_tooltar_wrapper .close_wrapper {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    display: inline-block;
    /*width: 100%;
    height: 70px;
    padding: 20px;*/
    box-sizing: border-box;
    text-align: right;
    opacity: 1;
    z-index: 300;
}

.workspace_wrapper .webcam_wrapper .webcam_tooltar_wrapper .close_wrapper span {
    font-size: 32px;
    line-height: 25px;
    color: #666;
}

.workspace_wrapper .webcam_wrapper .webcam_tooltar_wrapper .close_wrapper span:hover {
    color: #0099A8;
}

.workspace_wrapper .webcam_wrapper .webcam_tooltar_wrapper .webcam_tips_wrapper {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    color: #666;
    font-size: 16px;
    line-height: 30px;
}

.workspace_wrapper .webcam_wrapper .webcam_tooltar_wrapper ul {
    margin: 0px;
    padding: 0px 0px 0px 20px;
    box-sizing: border-box;
    list-style-type: disc;
}

.workspace_wrapper .webcam_wrapper .webcam_tooltar_wrapper ul li {
    display: list-item;
    text-align: -webkit-match-parent;
    unicode-bidi: isolate;
    list-style: inside;
}

.workspace_wrapper .webcam_wrapper .webcam_tooltar_wrapper ul li::marker {
    color: #0099A8;
}

.workspace_wrapper .webcam_wrapper .webcam_tooltar_wrapper .webcam_button_wrapper {
    width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.workspace_wrapper .webcam_wrapper .webcam_tooltar_wrapper .webcam_button_wrapper .btn_retake_photo {
    display: inline-block;
    font-size: 18px;
    padding: 8px 10px;
    border: #0099A8 solid 2px;
    border-radius: 10px;
    color: #0099A8;
    font-weight: bold;
    /*    width: 100px;*/
    cursor: pointer;
    box-sizing: border-box;
}

.workspace_wrapper .webcam_wrapper .webcam_tooltar_wrapper .webcam_button_wrapper .btn_apply {
    display: inline-block;
    padding: 8px 10px;
    background: #0099A8;
    color: #fff;
    display: inline-block;
    font-weight: bold;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    width: 100px;
    box-sizing: border-box;
    margin-left: 20px;
}