* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: 0px;
    outline: none;
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

b {
    font-weight: 500;
}

.d-flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.ml-1 {
    margin-left: 10px;
}

.mr-1 {
    margin-right: 10px;
}

.mt-1 {
    margin-top: 10px;
}

.mb-1 {
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #0666f4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border: none;
    padding: 0px 15px;
    cursor: pointer;
    border-radius: 3px;
    font-weight: 500;
    position: relative;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary:active {
    opacity: 0.8;
}

.btn-default {
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border: none;
    padding: 0px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-weight: 500;
    position: relative;
}

.btn-default:hover {
    opacity: 0.9;
}

.btn-default:active {
    opacity: 0.8;
}

.tooltiptext {
    visibility: hidden;
    width: 160px;
    background-color: #222;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: normal;
}

.tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #222 transparent transparent transparent;
}

.btn-default:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.hide {
    display: none !important;
}

.text-link {
    color: #0666f4;
    text-decoration: underline;
    cursor: pointer;
}

body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background: #f1f1f1;
    color: #333;
    line-height: 22px;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    font-weight: 400;
}

.loadingpage {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
}

.loadingpage .loading-main {
    position: relative;
    padding: 5px;
    margin-bottom: 50px;
}

.loadingpage .loading-main img {
    width: 80px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    opacity: 1;
    transform: scale(1);
    display: block !important;
}

.loadingpage .loading-main .spin {
    width: 90px;
    height: 90px;
    position: absolute;
    left: 0px;
    top: 0px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 2px solid #0666f4;
    border-left-color: #fff;
    border-top-color: #fff;
    border-bottom-color: #fff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: spinner 1.1s infinite linear;
    animation: spinner 1.1s infinite linear;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    opacity: 1;
}

.loadingpage.before-hide .loading-main {
}

.loadingpage.before-hide .loading-main img {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    opacity: 0;
}

.loadingpage.before-hide .loading-main .spin {
    opacity: 0;
}

.loadingpage.hide {
    display: none;
}

#app {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.app-header {
    position: relative;
    width: 100%;
    height: 50px;
    background: #fff;
    box-shadow: 0px 1px 5px 1px rgb(0 0 0 / 3%);
    display: flex;
    align-items: center;
    padding: 0px 15px;
    box-sizing: border-box;
    border-bottom: 1px solid #e1e1e1;
}

.app-header .logo-icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.app-header .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.app-header .menu-items {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 10px;
}

.app-header .menu-items .item {
    margin-left: 20px;
    cursor: pointer;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.app-header .menu-items .item:hover {
    color: #0666f4;
}

.app-header .menu-items .item.active:after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 50%;
    height: 2px;
    background-color: #0666f4;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
}

.app-header .account {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.app-header .account .item {
    padding: 10px 15px;
    position: relative;
}

.app-header .account .item:last-child {
    text-decoration: underline;
    cursor: pointer;
}

.app-header .account .item:last-child:after {
    content: '';
    width: 1px;
    position: absolute;
    left: 0px;
    top: 8px;
    bottom: 8px;
    background: #e1e1e1;
    ;}

.app-header .account .item .information-login {
    width: 220px;
    position: absolute;
    top: 100%;
    right: 0px;
    background: #fff;
    padding: 10px 15px;
    z-index: 99992;
    box-shadow: 0 1px 2px rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
    border-radius: 4px;
    visibility: hidden;
}

.app-header .account .item .information-login:after {
    content: '';
    width: 10px;
    height: 10px;
    box-sizing: border-box;
    border: 5px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: -5px;
    left: 50%;
    box-shadow: -1px -1px 2px rgb(60 64 67 / 20%);
}

.app-header .account .item .information-login ul {
}

.app-header .account .item .information-login ul li {
    display: flex;
    white-space: nowrap;
    padding: 5px 0px;
}

.app-header .account .item .information-login ul li span.label {
    width: 90px;
}

.app-header .account .item .information-login ul li span.value {
    font-weight: 500
}

.app-header .account .item .information-login ul li a {
    text-decoration: underline;
    color: #0666f4;
    cursor: pointer;
}

.app-header .account .item:hover .information-login {
    visibility: visible;
}

.app-map {
    position: absolute;
    left: 0px;
    top: 50px;
    right: 0px;
    bottom: 0px;
    background: #ccc;
}

.app-map.hide-tools .lmap .properties {
    top: 15px;
}

.app-map.hide-tools .tools {
    display: none;
}

.app-map .tools {
    position: absolute;
    left: 15px;
    top: 15px;
    display: flex;
    align-items: flex-start;
    z-index: 9999;
}

.app-map .tools .btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-map .tools .btn-group .btn {
    font-size: 13px;
    margin-left: 15px;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    font-weight: 500;
    background-color: #fff;
    box-shadow: 0 1px 2px rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.app-map .tools .btn-group .btn.active {
    border: 1px solid #0666f4;
    box-sizing: border-box;
    font-weight: 500;
    color: #0666f4;
}

.app-map .tools .btn-group .btn span {
    font-size: 13px;
    font-weight: 500;
}

.app-map .tools .btn-group .btn div {
    font-size: 13px;
    font-weight: 500;
}

.app-map .tools .btn-group .btn span.icon {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.app-map .tools .btn-group .btn span.icon svg {
    height: 17px;
    fill: #777;
}

.app-map .tools .btn-group .btn ul {
    position: absolute;
    right: 0px;
    top: 100%;
    border-radius: 4px;
    box-shadow: 0px 10px 10px 2px rgb(0 0 0 / 5%);
    background-color: #fff;
    margin-top: 10px;
    padding: 10px 0px;
    display: none;
}

.app-map .tools .btn-group .btn ul li {
    display: flex;
    align-items: center;
    padding: 6px 15px;
    position: relative;
    white-space: nowrap;
}

.app-map .tools .btn-group .btn ul li:hover {
    color: #0666f4;
    cursor: pointer;
}

.app-map .tools .btn-group .btn ul:after {
    content: '';
    width: 8px;
    height: 8px;
    box-sizing: border-box;
    border: 8px solid #fff;
    border-bottom-color: rgba(0,0,0,0);
    border-right-color: rgba(0,0,0,0);
    display: block;
    position: absolute;
    top: -4px;
    right: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}

.app-map .tools .btn-group .btn.open ul {
    display: block;
}

.app-map .tools .btn-group .btn .mask {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 1;
    cursor: pointer;
    height: 32px;
}

.app-map .tools .btn-group .btn .rangeslider {
    position: relative;
    margin-left: 20px;
}

.app-map .tools .btn-group .btn .rangeslider:after {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background: #ccc;
    top: 50%;
}

.app-map .tools .btn-group .btn .rangeslider input {
    position: relative;
    z-index: 1;
    background: none;
    margin-top: 8px;
    cursor: pointer;
    width: 130px;
}

.app-map .tools .btn-group .btn .rangeslider .mask-range {
    content: '';
    position: absolute;
    left: 8px;
    height: 2px;
    background: #0666f4;
    top: 50%;
    z-index: 1;
}

.app-map .tools .btn-group .btn .rangeslider input::-webkit-slider-thumb {
    background: #0666f4;
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.app-map .tools .btn-group .btn .rangeslider input::-moz-range-thumb {
    background: #0666f4;
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.app-map .tools .btn-group .btn .tooltip {
    display: none;
    position: absolute;
    top: 100%;
    margin-top: 15px;
    left: 0px;
    background: rgba(0,0,0,0.6);
    box-shadow: 0 1px 2px rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
    padding: 15px;
    width: 250px;
    border-radius: 3px;
    color: #fff;
    font-weight: normal;
    white-space: normal;
}

.app-map .tools .btn-group .btn .tooltip:after {
    content: '';
    width: 8px;
    height: 8px;
    box-sizing: border-box;
    border: 8px solid rgba(0,0,0,0.6);
    border-bottom-color: rgba(0,0,0,0);
    border-right-color: rgba(0,0,0,0);
    display: block;
    position: absolute;
    top: -8px;
    left: 45px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}

.app-map .tools .btn-group .btn:hover .tooltip {
    display: block;
}

.app-map .cities-selected {
    background: #fff;
    box-shadow: 0 1px 2px rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
    border-radius: 6px;
}

.app-map .cities-selected.open ~ .btn-group {
    display: none;
}

.app-map .cities-selected .title {
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0px 15px;
    font-size: 16px;
    font-weight: 500;
}

.app-map .cities-selected .title span {
    height: 40px;
    display: flex;
    align-items: center;
    padding-right: 10px;
    cursor: pointer;
}

.app-map .cities-selected .title span svg {
    height: 17px;
}

.app-map .cities-selected .absolute-title {
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    font-weight: 500;
}

.app-map .cities-selected .absolute-title span.split {
    margin: 0px 10px;
    display: flex;
    align-items: center;
}

.app-map .cities-selected .absolute-title span.split svg {
    height: 12px;
}

.app-map .cities-selected .absolute-title span.split svg path {
    fill: #888;
}

.app-map .cities-selected .absolute-title span.name {
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    white-space: nowrap;
}

.app-map .cities-selected .absolute-title span.name:hover {
    color: #0666f4;
}

.app-map .cities-selected .menu {
    padding-bottom: 15px;
}

.app-map .cities-selected .menu ul {
    margin: 0px;
    padding: 0px;
}

.app-map .cities-selected .menu ul:first-child {
    max-height: calc(100vh - 300px);
    overflow: auto;
}

.app-map .cities-selected .menu ul li {
    display: flex;
    align-items: center;
    padding: 5px 15px;
    cursor: pointer;
}

.app-map .cities-selected .menu ul li:hover {
    background: #f3f3f3;
}

.app-map .cities-selected .quick-search {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 15px;
    margin-bottom: 15px;
    position: relative;
}

.app-map .cities-selected .quick-search .icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0px;
    top: 0px;
}

.app-map .cities-selected .quick-search .icon svg {
    height: 17px;
}

.app-map .cities-selected .quick-search form {
    width: 100%;
    height: 100%;
}

.app-map .cities-selected .quick-search input {
    outline: none;
    border: 1px solid #f3f3f3;
    width: 100%;
    height: 100%;
    line-height: 36px;
    padding-left: 36px;
    background: #f3f3f3;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}

.app-map .cities-selected .quick-search input:focus {
    border: 1px solid #0666f4;
    background: #fff;
}

.app-map .lmap {
    width: 100%;
    height: 100%;
}

.app-map .lmap .gmap {
    width: 100%;
    height: 100%;
    cursor: auto;
}

.app-map .lmap .distance-marker {
    width: auto !important;
}

.app-map .lmap .distance-marker.hide {
    display: none;
}

.app-map .lmap .distance-marker .marker-item {
    padding: 0px 2px;
    font-size: 10px;
    border-radius: 3px;
    background: #fff;
    font-weight: 500;
    line-height: 12px;
}

.app-map .lmap .properties {
    position: absolute;
    left: 15px;
    top: 65px;
    background: #fff;
    box-shadow: 0px 0px 4px 1px rgb(0 0 0 / 10%);
    border-radius: 6px;
    z-index: 999;
    padding: 10px 15px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 250px);
    min-width: 230px;
    max-width: 420px;
}

.app-map .lmap .properties .close-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.app-map .lmap .properties .close-btn svg {
    height: 17px;
    fill: #c1c1c1;
}

.app-map .lmap .properties .close-btn:hover svg {
    fill: #888;
}

.app-map .lmap .properties .item {
    padding: 3px 0px;
    display: flex;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.app-map .lmap .properties .item .label {
    min-width: 120px;
    font-weight: 500;
    font-size: 13px;
}

.app-map .lmap .properties .item .value {
    font-size: 13px;
}

.app-map .lmap .properties .item sup {
    font-size: 8px;
}

.app-map .lmap .properties .item .name {
    flex: 1;
}

.app-map .lmap .properties .item .trash {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.app-map .lmap .properties .item .trash svg {
    height: 17px;
    fill: #c1c1c1;
    cursor: pointer;
    color: #999;
}

.app-map .lmap .properties .item .trash:hover svg {
    fill: #999;
}

.app-map .lmap .properties .title {
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 10px;
}

.app-map .lmap .properties .checkbox span {
    font-size: 13px;
}

.app-map .lmap .properties .btn-primary,.app-map .lmap .properties .btn-default {
    font-size: 13px;
    height: 32px;
}

.app-map .lmap .maplayer {
    position: fixed;
    left: 15px;
    bottom: 15px;
    width: 80px;
    height: 80px;
    z-index: 1000;
    border: 2px solid #fff;
    border-radius: 6px;
    box-shadow: 0px 0px 4px 1px rgb(0 0 0 / 10%);
    overflow: hidden;
    cursor: pointer;
}

.app-map .lmap .maplayer .item {
    width: 100%;
    height: 100%;
    position: relative;
}

.app-map .lmap .maplayer .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-map .lmap .maplayer .item span {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(0,0,0,0.3);
    color: #fff;
    text-align: center;
    padding: 5px 0px;
    font-size: 11px;
}

.app-map .lmap .mapnote {
    position: fixed;
    right: 0px;
    bottom: 0px;
    font-size: 11px;
    padding: 1px 8px;
    background: rgba(255,255,255,0.6);
    z-index: 999;
    text-shadow: -1px 0 0 white, -1px -1px 0 white, 0 -1px 0 white, 1px -1px 0 white, 1px 0 0 white, 1px 1px 0 white, 0 1px 0 white, -1px 1px 0 white;
}

.app-map .lmap .marker-flag-icon {
    background: rgb(6, 102, 244);
    border-radius: 50%;
    border: 1px solid rgb(255, 255, 255);
    box-sizing: border-box;
    width: 8px !important;
    height: 8px !important;
    margin-left: -4px !important;
    margin-top: -4px !important;
}

.app-map .lmap .marker-flag-icon:hover {
    border: 1px solid #000;
}

.checkbox {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    margin-top: 15px;
    display: inline-block;
    user-select: none;
}

.checkbox input {
    display: none;
}

.checkbox span:after {
    content: '';
    width: 16px;
    height: 16px;
    border: 1px solid #999;
    border-radius: 3px;
    position: absolute;
    left: 0px;
    top: -1px;
}

.checkbox input:checked ~ span:before {
    content: '';
    width: 4px;
    height: 11px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    position: absolute;
    left: 6px;
    top: 0px;
    z-index: 1;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
}

.checkbox input:checked ~ span:after {
    background: #0666f4;
    border-color: #0666f4;
}

.modal {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    z-index: 99993;
}

.modal.open {
    visibility: visible;
}

.modal .scrollbox {
    overflow: auto;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal .modal-body {
    background-color: #fff;
    width: 350px;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0px 10px 10px 2px rgb(0 0 0 / 5%);
    position: relative;
    margin: 30px auto;
}

.modal .modal-body.lg {
    width: 600px;
}

.modal .modal-close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal .modal-close-btn svg {
    height: 17px;
    fill: #c1c1c1;
}

.modal .modal-close-btn:hover svg {
    fill: #888;
}

.modal .modal-body .modal-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.modal .modal-body .modal-title .icon {
    padding-right: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.modal .modal-body .modal-title .icon svg {
    height: 17px;
}

.modal .modal-body .tab {
    display: flex;
    position: relative;
}

.modal .modal-body .tab:after {
    content: '';
    position: absolute;
    height: 1px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background: #e3e3e3;
}

.modal .modal-body .tab .item {
    height: 36px;
    border-bottom: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    cursor: pointer;
}

.modal .modal-body .tab .item.active {
    border-bottom: 3px solid #0666f4;
    font-weight: 500;
}

.modal .modal-body input {
    width: 100%;
    height: 36px;
    border: 1px solid #e1e1e1;
    padding: 0px 10px;
    line-height: 36px;
    outline: none;
    box-sizing: border-box;
}

.modal .modal-body input:focus {
    border: 1px solid #0666f4;
}

.modal .modal-body textarea {
    width: 100%;
    height: 72px;
    border: 1px solid #e1e1e1;
    padding: 8px 10px;
    line-height: 20px;
    outline: none;
    box-sizing: border-box;
}

.modal .modal-body textarea:focus {
    border: 1px solid #0666f4;
}

.modal .modal-body select {
    width: 100%;
    height: 36px;
    border: 1px solid #e1e1e1;
    padding: 0px 10px;
    line-height: 36px;
    outline: none;
    box-sizing: border-box;
    cursor: pointer;
}

.modal .modal-body select:focus {
    border: 1px solid #0666f4;
}

.modal .modal-body .checkparcel {
    margin-top: 20px;
}

.modal .modal-body .checkparcel .sub-title {
    margin-bottom: 5px;
    display: block;
}

.modal .modal-body .checkpolygon .rmicon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal .modal-body .checkpolygon .rmicon svg {
    height: 17px;
    fill: #c1c1c1;
}

.modal .modal-body .checkpolygon .rmicon:hover svg {
    fill: #888;
}

.modal .modal-body .login {
    margin-top: 20px;
    max-height: calc(100vh - 130px);
    overflow: auto;
    padding-right: 20px;
    margin-right: -20px;
}

.modal .modal-body .login .sub-title {
    margin-bottom: 5px;
    display: block;
}

.modal .modal-body .download {
}

.modal .modal-body .download .store-icon img {
    width: 180px;
}

.modal .modal-body .download .store-icon .ios-store {
    width: 180px;
    height: 52px;
    overflow: hidden;
    position: relative;
}

.modal .modal-body .download .store-icon .android-store {
    width: 180px;
    height: 52px;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}

.modal .modal-body .download .store-icon .android-store img {
    margin-top: -60px;
}

.modal .modal-body .mobile-web-btn {
    margin-top: 15px;
    position: relative;
    padding-top: 30px;
    display: none;
}

.modal .modal-body .mobile-web-btn:after {
    content: '';
    height: 1px;
    left: 40%;
    right: 40%;
    position: absolute;
    top: 10px;
    background: #eee;
}

.modal .modal-body .mobile-web-btn a {
    display: flex;
    color: #0666f4;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 17px;
}

.modal .modal-body .download .qr-icon img {
    width: 125px;
}

.modal .modal-body .download .qr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal .modal-body .quick-search {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.modal .modal-body .quick-search .icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0px;
    top: 0px;
}

.modal .modal-body .quick-search .icon svg {
    height: 17px;
}

.modal .modal-body .quick-search input {
    outline: none;
    border: 1px solid #999;
    width: 100%;
    height: 100%;
    line-height: 36px;
    padding-left: 36px;
    background: #fff;
    border-radius: 4px;
    font-size: 15px;
}

.modal .modal-body .quick-search input:focus {
    border: 1px solid #0666f4;
    background: #fff;
}

.modal .modal-body .savelist {
    max-height: calc(100vh - 185px);
    overflow: auto;
    margin-right: -20px;
    padding-right: 20px;
}

.modal .modal-body .savelist .item {
    position: relative;
    padding: 6px 10px;
    background: #f5f5f5;
    margin: 5px 0px;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    border: 1px solid #f5f5f5
}

.modal .modal-body .savelist .item:hover {
    background-color: #f5f9ff;
    border: 1px solid #d2dae7;
}

.modal .modal-body .savelist .item .name {
    font-weight: 500;
}

.modal .modal-body .savelist .item .note {
    color: #888;
}

.modal .modal-body .savelist .item .note .label {
    margin-right: 10px;
    background: #39f;
    border-radius: 3px;
    padding: 2px 5px;
    font-size: 10px;
    color: #fff;
}

.modal .modal-body .savelist .item .remain {
    position: absolute;
    right: 30px;
    top: 5px;
    font-size: 13px;
    color: #959bae;
}

.modal .modal-body .savelist .item .menuaction {
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5
}

.modal .modal-body .savelist .item .menuaction svg {
    height: 20px;
    fill: #999;
}

.modal .modal-body .savelist .item .menuaction:active {
    opacity: 0.6;
}

.modal .modal-body .savelist .item .mask {
    position: absolute;
    left: 0px;
    right: 30px;
    top: 0px;
    bottom: 0px;
    z-index: 1;
    cursor: pointer;
}

.modal .modal-body .savelist .item .action {
    position: absolute;
    right: 0px;
    top: 0px;
}

.modal .modal-body .savelist .item .action .action-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal .modal-body .savelist .item .action .action-icon svg {
    height: 13px;
    fill: #777;
}

.modal .modal-body .savelist .item .action .action-icon:hover svg {
    fill: #999;
}

.modal .modal-body .savelist .item .action .action-menu {
    position: absolute;
    right: 0px;
    top: 100%;
    background: #fff;
    box-shadow: 0px 0px 2px 1px rgb(0 0 0 / 10%);
    border-radius: 4px;
    display: none;
    z-index: 3;
    overflow: hidden;
}

.modal .modal-body .savelist .item .action .action-menu div {
    padding: 5px 10px;
    white-space: nowrap;
    cursor: pointer;
}

.modal .modal-body .savelist .item .action .action-menu div:hover {
    background-color: #f3f3f3;
}

.modal .modal-body .savelist .item .action .action-menu.open {
    display: block;
    ;}

.modal .modal-body .savelist .item .attach_image {
    display: flex;
    align-items: center;
    font-size: 13px;
    position: absolute;
    right: 30px;
    top: 30px;
    line-height: 12px;
}

.modal .modal-body .savelist .item .attach_image img {
    height: 14px;
    margin-right: 5px;
}

.modal .modal-body .savelist .paginate {
    padding: 10px 0px;
}

.modal .modal-body .savelist .paginate ul {
    display: flex;
}

.modal .modal-body .savelist .paginate ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 26px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 3px;
    cursor: pointer;
}

.modal .modal-body .savelist .paginate ul li.active {
    background: #0666f4;
    color: #fff;
    border: 1px solid #0666f4;
}

.modal .modal-body .savelist .paginate ul li:hover {
    border: 1px solid #999;
}

.modal .modal-body .savelist .paginate ul li.active:hover {
    border: 1px solid #0666f4;
}

.modal .modal-body.animate {
    transition: transform 0.2s;
    -webkit-transition: transform 0.2s;
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    opacity: 0;
}

.modal.open .modal-body.animate {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1;
}

.modal .modal-body .colorlist {
    max-height: calc(100vh - 235px);
    overflow: auto;
    margin-right: -20px;
}

.modal .modal-body .colorlist .item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
}

.modal .modal-body .colorlist .item .color-item {
    width: 50px;
    height: 15px;
    border: 1px solid #333;
}

.modal .modal-body .colorlist .item .color-code {
    margin: 0px 10px;
    width: 55px;
}

.modal .modal-body .colorlist .item .color-name {
    line-height: 17px;
    width: calc(100% - 75px);
}

.modal .modal-body .colorlist .item .line-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 15px;
    position: relative;
    overflow: hidden;
}

.modal .modal-body .colorlist .item .line-item span {
    height: 1px;
    width: 100%;
    display: block;
}

.modal .modal-body .colorlist .item .line-item .img {
    height: 15px;
}

.modal .modal-body .coortable {
    max-height: calc(100vh - 135px);
    overflow: hidden auto;
    margin-right: -20px;
    padding-right: 20px;
}

.modal .modal-body table {
    border-collapse: collapse;
    margin-bottom: 15px;
    width: 100%;
}

.modal .modal-body table tr th, .modal .modal-body table tr td {
    border: 1px solid #999;
    padding: 2px 5px;
}

.modal .modal-body table tr th {
    font-weight: 500;
}

.modal .tutorial-body {
    max-height: 80vh;
    overflow: auto;
    margin-right: -20px;
    padding-right: 20px;
}

.modal .tutorial-tabs {
    border: 0.5px solid #cccfda;
    border-radius: 6px;
    overflow: hidden;
}

.modal .tutorial-tabs .item {
    border-bottom: 0.5px solid #cccfda;
}

.modal .tutorial-tabs .item .tab-content {
    overflow: hidden;
    max-height: 0px;
    padding: 0px 15px;
}

.modal .tutorial-tabs .item .tab-content .row {
    display: flex;
    margin-bottom: 5px;
}

.modal .tutorial-tabs .item .tab-content .row .step {
    font-weight: 500;
    margin-right: 10px;
    white-space: nowrap;
}

.modal .tutorial-tabs .item .tab-content .row .step-text {
    flex: 1;
}

.modal .tutorial-tabs .item.active .tab-content {
    max-height: 9999px;
    padding: 5px 15px 15px 15px;
}

.modal .tutorial-tabs .item.active .tab-content * {
    font-size: 14px;
    line-height: 20px;
}

.modal .tutorial-tabs .item.active .tab-title .icon svg {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}

.modal .tutorial-tabs .item.active .tab-title .text {
    font-weight: 500;
    color: #3a81f7;
}

.modal .tutorial-tabs .item:last-child {
    border-bottom: none;
}

.modal .tutorial-tabs .item .tab-title {
    height: 36px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.modal .tutorial-tabs .item .tab-title:hover {
    background: #f0f2f5;
}

.modal .tutorial-tabs .item .tab-title .text {
    flex: 1;
    padding: 0px 15px;
}

.modal .tutorial-tabs .item .tab-title .icon {
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.modal .tutorial-tabs .item .tab-title .icon svg {
    height: 17px;
    fill: #a9abb8;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transition: all 0.1s;
    -webkit-transition: all 0.1s;
}

.modal .sending-ocr .modal-close-btn {
    display: none;
}

.modal .sending-ocr .modal-title {
    display: none;
}

.modal .sending-ocr .modal-body.lg {
    width: auto;
    background: #333;
    padding: 10px;
}

.modal .sending-ocr .img-cropper {
    text-align: center;
}

.modal .sending-ocr .loading {
    height: auto;
    margin-bottom: 10px;
}

.modal .sharecodenumber {
    display: flex;
    position: relative;
    height: 50px;
    justify-content: center;
    margin: 30px auto;
    max-width: 280px;
}

.modal .sharecodenumber .one_number {
    width: 34px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c1c1c1;
    margin: 0px 5px;
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 28px;
}

.modal .sharecodenumber input {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 50px;
    line-height: 50px;
    z-index: 1;
    padding: 0px 15px;
    background: none;
    letter-spacing: 20px;
    font-size: 28px;
}

/* .modal .sharecodenumber input:focus{border: none;} */
.point-convert-box {
    position: absolute;
    left: 15px;
    top: 115px;
    background: #fff;
    box-shadow: 0px 0px 4px 1px rgb(0 0 0 / 10%);
    border-radius: 6px;
    z-index: 999;
    padding: 10px 15px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 255px);
    min-width: 230px;
    max-width: 420px;
    display: none;
}

.point-convert-box.open {
    display: block;
}

.point-convert-box .close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.point-convert-box .close-btn svg {
    height: 17px;
    fill: #c1c1c1;
}

.point-convert-box .close-btn:hover svg {
    fill: #888;
}

.point-convert-box .title {
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 10px;
}

.point-convert-box .items {
    max-height: calc(100vh - 200px);
    overflow: auto;
}

.point-convert-box .item {
    padding: 6px 0px;
    display: flex;
    align-items: flex-start;
}

.point-convert-box .item .label {
    min-width: 145px;
    font-weight: 500;
}

.point-convert-box .item .value {
}

.point-convert-box .item .value table {
    border-collapse: collapse;
}

.point-convert-box .item .value table tr td {
    border: 1px solid #e1e1e1;
    padding: 5px;
    min-width: 140px;
}

.point-convert-box .item .value table tr th {
    border: 1px solid #e1e1e1;
    padding: 5px;
    font-weight: 500;
    text-align: left;
}

.select-box {
    position: relative;
}

.select-box select {
    position: relative;
    z-index: 1;
    background: none;
}

.select-box .select-icon {
    position: absolute;
    right: 0px;
    bottom: 0px;
    top: 0px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-box .select-icon svg {
    height: 13px;
    fill: #999;
}

.spinner {
    position: relative;
    width: 54px;
    height: 54px;
    display: block;
    padding: 12px;
    border-radius: 10px;
    transform: scale(0.5);
    margin: auto;
}

.spinner div {
    width: 4%;
    height: 16%;
    background: #777;
    position: absolute;
    left: 49%;
    top: 43%;
    opacity: 0;
    -webkit-border-radius: 50px;
    -webkit-animation: fade 1s linear infinite;
}

@-webkit-keyframes fade {
    from {
        opacity: 1;
    }

    to {
        opacity: 0.25;
    }
}

.spinner div.bar1 {
    -webkit-transform: rotate(0deg) translate(0, -130%);
    -webkit-animation-delay: 0s;
}

.spinner div.bar2 {
    -webkit-transform: rotate(30deg) translate(0, -130%);
    -webkit-animation-delay: -0.9167s;
}

.spinner div.bar3 {
    -webkit-transform: rotate(60deg) translate(0, -130%);
    -webkit-animation-delay: -0.833s;
}

.spinner div.bar4 {
    -webkit-transform: rotate(90deg) translate(0, -130%);
    -webkit-animation-delay: -0.7497s;
}

.spinner div.bar5 {
    -webkit-transform: rotate(120deg) translate(0, -130%);
    -webkit-animation-delay: -0.667s;
}

.spinner div.bar6 {
    -webkit-transform: rotate(150deg) translate(0, -130%);
    -webkit-animation-delay: -0.5837s;
}

.spinner div.bar7 {
    -webkit-transform: rotate(180deg) translate(0, -130%);
    -webkit-animation-delay: -0.5s;
}

.spinner div.bar8 {
    -webkit-transform: rotate(210deg) translate(0, -130%);
    -webkit-animation-delay: -0.4167s;
}

.spinner div.bar9 {
    -webkit-transform: rotate(240deg) translate(0, -130%);
    -webkit-animation-delay: -0.333s;
}

.spinner div.bar10 {
    -webkit-transform: rotate(270deg) translate(0, -130%);
    -webkit-animation-delay: -0.2497s;
}

.spinner div.bar11 {
    -webkit-transform: rotate(300deg) translate(0, -130%);
    -webkit-animation-delay: -0.167s;
}

.spinner div.bar12 {
    -webkit-transform: rotate(330deg) translate(0, -130%);
    -webkit-animation-delay: -0.0833s;
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.ispinner {
    position: relative;
    width: 20px;
    height: 20px
}

.ispinner .ispinner-blade {
    position: absolute;
    left: 44.5%;
    top: 37%;
    width: 10%;
    height: 25%;
    border-radius: 50%/20%;
    -webkit-animation: ispinner-fade 1s linear infinite;
    animation: ispinner-fade 1s linear infinite;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.ispinner .ispinner-blade:nth-child(1) {
    -webkit-animation-delay: -1.66667s;
    animation-delay: -1.66667s;
    -webkit-transform: rotate(30deg) translate(0,-150%);
    transform: rotate(30deg) translate(0,-150%)
}

.ispinner .ispinner-blade:nth-child(2) {
    -webkit-animation-delay: -1.58333s;
    animation-delay: -1.58333s;
    -webkit-transform: rotate(60deg) translate(0,-150%);
    transform: rotate(60deg) translate(0,-150%)
}

.ispinner .ispinner-blade:nth-child(3) {
    -webkit-animation-delay: -1.5s;
    animation-delay: -1.5s;
    -webkit-transform: rotate(90deg) translate(0,-150%);
    transform: rotate(90deg) translate(0,-150%)
}

.ispinner .ispinner-blade:nth-child(4) {
    -webkit-animation-delay: -1.41667s;
    animation-delay: -1.41667s;
    -webkit-transform: rotate(120deg) translate(0,-150%);
    transform: rotate(120deg) translate(0,-150%)
}

.ispinner .ispinner-blade:nth-child(5) {
    -webkit-animation-delay: -1.33333s;
    animation-delay: -1.33333s;
    -webkit-transform: rotate(150deg) translate(0,-150%);
    transform: rotate(150deg) translate(0,-150%)
}

.ispinner .ispinner-blade:nth-child(6) {
    -webkit-animation-delay: -1.25s;
    animation-delay: -1.25s;
    -webkit-transform: rotate(180deg) translate(0,-150%);
    transform: rotate(180deg) translate(0,-150%)
}

.ispinner .ispinner-blade:nth-child(7) {
    -webkit-animation-delay: -1.16667s;
    animation-delay: -1.16667s;
    -webkit-transform: rotate(210deg) translate(0,-150%);
    transform: rotate(210deg) translate(0,-150%)
}

.ispinner .ispinner-blade:nth-child(8) {
    -webkit-animation-delay: -1.08333s;
    animation-delay: -1.08333s;
    -webkit-transform: rotate(240deg) translate(0,-150%);
    transform: rotate(240deg) translate(0,-150%)
}

.ispinner .ispinner-blade:nth-child(9) {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    -webkit-transform: rotate(270deg) translate(0,-150%);
    transform: rotate(270deg) translate(0,-150%)
}

.ispinner .ispinner-blade:nth-child(10) {
    -webkit-animation-delay: -.91667s;
    animation-delay: -.91667s;
    -webkit-transform: rotate(300deg) translate(0,-150%);
    transform: rotate(300deg) translate(0,-150%)
}

.ispinner .ispinner-blade:nth-child(11) {
    -webkit-animation-delay: -.83333s;
    animation-delay: -.83333s;
    -webkit-transform: rotate(330deg) translate(0,-150%);
    transform: rotate(330deg) translate(0,-150%)
}

.ispinner .ispinner-blade:nth-child(12) {
    -webkit-animation-delay: -.75s;
    animation-delay: -.75s;
    -webkit-transform: rotate(360deg) translate(0,-150%);
    transform: rotate(360deg) translate(0,-150%)
}

.ispinner.animating .ispinner-blade {
    -webkit-animation-play-state: running;
    animation-play-state: running
}

.ispinner.white .ispinner-blade {
    background-color: #fff
}

.ispinner.gray .ispinner-blade {
    background-color: #777
}

.ispinner.large {
    width: 35px;
    height: 35px
}

.ispinner.large .ispinner-blade {
    width: 8.57143%;
    height: 25.71429%;
    border-radius: 50%/16.67%
}

.action-sheet {
    position: fixed;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    visibility: hidden;
    z-index: 9999999;
}

.action-sheet.open {
    visibility: visible;
}

.action-sheet .modal-body {
    transition: transform,opacity 0.25s;
    -webkit-transition: transform,opacity 0.25s;
    transform: translate(0%,100%);
    -webkit-transform: translate(0%,100%);
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
    z-index: 2;
    opacity: 0;
}

.action-sheet.open .modal-body {
    transform: translate(0%,0px);
    -webkit-transform: translate(0%,0px);
    opacity: 1;
}

.action-sheet .modal-body .wrapper {
    max-height: 100%;
    overflow: auto;
}

.action-sheet.open:after {
    opacity: 1;
}

.action-sheet:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 1;
    opacity: 0;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
}

.action-sheet .modal-body .quick-items {
    background: #fff;
    border-radius: 10px;
    overflow: auto;
    max-height: calc(80vh - 95px);
    padding-bottom: 10px;
    box-shadow: 0px 1px 5px rgb(0 0 0 / 10%);
    margin: 5px;
}

.action-sheet .modal-body .quick-items .title {
    text-align: left;
    font-size: 13px;
    color: #888;
    padding: 10px 15px;
}

.action-sheet .modal-body .quick-items .item {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
    border-top: 0.5px solid #edf1fc;
    position: relative;
    padding: 0px 15px;
    cursor: pointer;
}

.action-sheet .modal-body .quick-items .item:hover {
    background: #f0f3f7;
}

.action-sheet .modal-body .cancel-modal {
    background: #fff;
    border-radius: 10px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #ff2b46;
    margin: 0px 20px 20px 20px;
}

.eye {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.eye svg {
    height: 18px;
    fill: #999;
}

.leaflet-measure-path-measurement {
    position: absolute;
    font-size: 10px;
    color: black;
    text-shadow: -1px 0 0 white,-1px -1px 0 white,0 -1px 0 white,1px -1px 0 white,1px 0 0 white,1px 1px 0 white,0 1px 0 white,-1px 1px 0 white;
    white-space: nowrap;
    transform-origin: 0;
    pointer-events: none;
}

.leaflet-measure-path-measurement > div {
    position: relative;
    margin-top: -25%;
    left: -50%;
    font-size: 10px;
}

.group-item-label {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    opacity: 1;
}

.group-item-label.hide {
    opacity: 0;
}

.group-item-label .text {
    color: #fff;
    white-space: nowrap;
    background: #39f;
    padding: 2px 5px;
    border-radius: 3px;
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translate(-50%, 0px);
    -webkit-transform: translate(-50%, 0px);
    font-size: 12px;
}

.parcel-point-label .text {
    text-shadow: -1px 0 0 white,-1px -1px 0 white,0 -1px 0 white,1px -1px 0 white,1px 0 0 white,1px 1px 0 white,0 1px 0 white,-1px 1px 0 white;
    font-size: 9px;
    ;color: #000;
}

.parcel-point-label .text.z20 {
    font-size: 11px;
}

.adsense-banner-01 {
    position: fixed;
    left: 0px;
    bottom: 5px;
    height: 90px;
    right: 0;
    text-align: center;
    z-index: 999;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
}

.adsense-banner-01.hide {
    display: none;
}

.btn-attach-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    height: 36px;
    box-sizing: border-box;
    padding: 0px 12px;
    cursor: pointer;
}

.btn-attach-image img {
    height: 18px;
    margin-right: 10px;
}

.image-list {
    margin-top: 10px;
}

.image-list .item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.image-list .item .image {
    width: 60px;
    height: 45px;
    overflow: hidden;
    border-radius: 3px;
    margin-right: 20px;
}

.image-list .item .image img {
    width: 60px;
    height: 45px;
    object-fit: cover;
}

.image-list .item .action {
    margin-left: 10px;
    cursor: pointer;
}

.image-list .item .action .rm-btn {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-list .item .action .rm-btn svg {
    height: 15px;
    fill: #555;
}

.image-list .item .action .rm-btn svg:hover {
    fill: #999;
}

.image-list .item .size {
    flex: 1;
}

.image-uploaded-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 10px;
}

.image-uploaded-list .item {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: relative;
    margin-left: 5px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 5px;
}

.image-uploaded-list .item:nth-child(3n+1) {
    margin-left: 0px;
}

.image-uploaded-list .item .remove-image-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.5);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.image-uploaded-list .item .remove-image-btn svg {
    fill: #fff;
    height: 12px;
}

.image-uploaded-list .item .remove-image-btn:hover {
    background: rgba(0,0,0,0.6);
}

.image-uploaded-list .item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.modal .modal-close-btn.white {
    background: #fff;
    z-index: 9;
    border-radius: 50%;
    border: none;
    left: 15px;
    z-index: 999;
}

.modal .modal-close-btn.white svg {
    height: 17px;
    fill: #333;
}

.modal.full-screen .modal-body {
    width: 100vw;
}

.modal.full-screen .modal-body .slider-box {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    background: rgba(0,0,0,0.5);
}

.modal.full-screen .modal-body .slider-box .slider-container {
    display: flex;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px)
}

.modal.full-screen .modal-body .slider-box .slider-container .slider-item {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100vw;
    user-select: none;
}

.modal.full-screen .modal-body .slider-box .slider-container .slider-item img {
    max-height: 90vh;
    max-width: 95vw;
}

.modal.full-screen .modal-body .slider-box .arrowLeft {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal.full-screen .modal-body .slider-box .arrowLeft svg {
    fill: #fff;
    height: 30px;
}

.modal.full-screen .modal-body .slider-box .arrowRight {
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal.full-screen .modal-body .slider-box .arrowRight svg {
    fill: #fff;
    height: 30px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
}

.compass.open {
    display: flex;
}

.compass {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.compass .body-compass .close-btn {
    position: absolute;
    left: 50%;
    top: -52px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    z-index: 10;
    background: #fff;
    padding: 0px 15px;
    border-radius: 20px;
    transform: translate(-50%, 0px);
    -webkit-transform: translate(-50%, 0px);
    cursor: pointer;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
}

.compass .body-compass .close-btn span {
    font-size: 12px;
    font-weight: 500;
    margin-right: 8px;
}

.compass .body-compass .close-btn svg {
    height: 16px;
}

.compass .body-compass {
    width: 300px;
    height: 300px;
    position: relative;
    border-radius: 50%;
}

.compass .body-compass:after {
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    border: 24px solid #0666f4;
    border-radius: 50%;
}

.compass .body-compass:before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 24px;
    right: 24px;
    border: 26px solid #1751a7;
    border-radius: 50%;
}

.compass .body-compass .direction-items {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.compass .body-compass .direction-items .direction-name {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    transform: rotate(var(--rotate));
    box-sizing: border-box;
    padding-top: 3px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    text-shadow: 1px 1px #666;
}

.compass .body-compass .direction-items .direction-name.item-1 {
    --rotate: 0deg;
}

.compass .body-compass .direction-items .direction-name.item-2 {
    --rotate: 45deg;
}

.compass .body-compass .direction-items .direction-name.item-3 {
    --rotate: 90deg;
}

.compass .body-compass .direction-items .direction-name.item-4 {
    --rotate: 135deg;
}

.compass .body-compass .direction-items .direction-name.item-5 {
    --rotate: 180deg;
}

.compass .body-compass .direction-items .direction-name.item-6 {
    --rotate: 225deg;
}

.compass .body-compass .direction-items .direction-name.item-7 {
    --rotate: 270deg;
}

.compass .body-compass .direction-items .direction-name.item-8 {
    --rotate: 315deg;
}

.compass .body-compass .mini-direction-items {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    z-index: 3;
}

.compass .body-compass .mini-direction-items .direction-name {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    transform: rotate(var(--rotate));
    box-sizing: border-box;
    padding-top: 27px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    text-shadow: 1px 1px #333;
}

.compass .body-compass .mini-direction-items .direction-name.item-1 {
    --rotate: 0deg;
}

.compass .body-compass .mini-direction-items .direction-name.item-2 {
    --rotate: 45deg;
}

.compass .body-compass .mini-direction-items .direction-name.item-3 {
    --rotate: 90deg;
}

.compass .body-compass .mini-direction-items .direction-name.item-4 {
    --rotate: 135deg;
}

.compass .body-compass .mini-direction-items .direction-name.item-5 {
    --rotate: 180deg;
}

.compass .body-compass .mini-direction-items .direction-name.item-6 {
    --rotate: 225deg;
}

.compass .body-compass .mini-direction-items .direction-name.item-7 {
    --rotate: 270deg;
}

.compass .body-compass .mini-direction-items .direction-name.item-8 {
    --rotate: 315deg;
}

.compass .body-compass .lines {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.compass .body-compass .lines.center-line {
    position: absolute;
    left: 45px;
    top: 45px;
    bottom: 45px;
    right: 45px;
    z-index: 1;
}

.compass .body-compass .lines .line-item {
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 1px;
    height: 50%;
    transform: translateX(-50%) rotate(var(--rotate));
    transform-origin: bottom;
    background: linear-gradient(0deg, transparent, transparent, transparent 126px, #fff 150px)
}

.compass .body-compass .lines .line-item.mini-line {
    background: linear-gradient(0deg, transparent, transparent, transparent, #fff 195px);
}

.compass .body-compass .lines.center-line .line-item {
    background: linear-gradient(0deg, transparent, transparent, transparent 100px, #fff 10px)
}

.compass .body-compass .lines.center-line:after {
    content: '';
    width: 1px;
    bottom: 50%;
    left: 50%;
    height: 15px;
    background: #000;
    position: absolute;
    transform: translate(-50%, 50%);
}

.compass .body-compass .lines.center-line:before {
    content: '';
    height: 1px;
    bottom: 50%;
    left: 50%;
    width: 15px;
    background: #000;
    position: absolute;
    transform: translate(-50%, 50%);
}

.current-marker-pin {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 9991;
    background: #fff;
    box-shadow: 0 1px 2px rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
    display: flex;
    padding: 15px;
    border-radius: 4px;
}

.current-marker-pin .marker-info .title {
    font-weight: 500;
}

.current-marker-pin .marker-info .btn-list {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.current-marker-pin .marker-info .btn-list button {
    height: 30px;
    margin-right: 10px;
}

.current-marker-pin .close-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.current-marker-pin .close-btn svg {
    height: 17px;
    fill: #c1c1c1;
}

.current-marker-pin .close-btn:hover svg {
    fill: #888;
}

.marker-pin-icon {
}

.marker-pin-icon .marker-item {
    margin-top: -23px;
    margin-left: -6px;
}

.marker-pin-icon .marker-item svg {
    fill: #ff5131;
    height: 30px;
    -webkit-animation: pin-marker 1s linear infinite;
    animation: pin-marker 1s linear infinite;
    transition: all 0.1s;
    -webkit-transition: all 0.1s;
    transform-origin: bottom;
}

.compair-map {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    top: 0px;
    z-index: 99991;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.compair-map.open {
    visibility: visible;
    background: rgba(0,0,0,0.5);
}

.compair-map .container {
    background: #fff;
    padding: 15px 25px 25px 25px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
    position: relative;
}

.compair-map .container .close-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.compair-map .container .close-btn svg {
    height: 17px;
    fill: #888;
}

.compair-map .container .close-btn:hover svg {
    fill: #c1c1c1;
}

.compair-map .container .title {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
}

.compair-map .container .items {
    display: flex;
    height: 100%;
    border: 1px solid #e1e1e1;
}

.compair-map .container .items .item {
    width: 370px;
    height: 100%;
    border-right: 1px solid #e1e1e1;
    border-left: 1px solid #e1e1e1;
    margin-right: -1px;
    position: relative;
    min-height: 510px;
}

.compair-map .container .items .item:last-child {
    border-right: none;
}

.compair-map .container .items .item:first-child {
    border-left: none;
}

.compair-map .container .items .item .map-item {
    background: #eee;
    height: 300px;
    margin-bottom: 10px;
}

.compair-map .container .items .item .remove-item {
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 999;
    border-radius: 3px;
}

.compair-map .container .items .item .remove-item svg {
    height: 17px;
    fill: #fff;
}

.compair-map .container .items .item .remove-item:hover {
    background: rgba(0,0,0,0.6);
}

.compair-map .container .items .item .layer-group {
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    z-index: 999;
    border-radius: 3px;
    padding: 4px 8px;
    user-select: none;
}

.compair-map .container .items .item .layer-group svg {
    height: 17px;
    fill: #fff;
    margin-right: 5px;
}

.compair-map .container .items .item .layer-group span {
    color: #fff;
    font-size: 13px;
}

.compair-map .container .items .item .layer-group:hover {
    background: rgba(0,0,0,0.6);
}

.compair-map .container .items .item .layers {
    position: absolute;
    top: 45px;
    left: 10px;
    background: #fff;
    padding: 7px 15px;
    border-radius: 4px;
    margin-top: 5px;
    z-index: 1000;
    visibility: hidden;
}

.compair-map .container .items .item .layers.open {
    visibility: visible;
}

.compair-map .container .items .item .layers .layer-item {
    white-space: nowrap;
    padding: 5px 0px;
    cursor: pointer;
}

.compair-map .container .items .item .layers .layer-item:hover {
    color: #3a81f7;
}

.compair-map .container .items .item .layers:after {
    content: '';
    width: 4px;
    height: 4px;
    box-sizing: border-box;
    border: 4px solid #fff;
    border-left-color: rgba(0, 0, 0, 0);
    border-top-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: -4px;
    left: 20px;
    transform: rotate(225deg);
}

.compair-map .container .items .item .row {
    display: flex;
    padding: 5px 0px;
    margin: 0px 15px;
    border-bottom: 1px solid #eee;
}

.compair-map .container .items .item .row:last-child {
    border: none;
}

.compair-map .container .items .item .row .label {
    width: 85px;
    font-weight: 500;
    font-size: 13px;
    margin-right: 10px;
}

.compair-map .container .items .item .row .value {
    position: relative;
    font-size: 13px;
}

.compair-map .container .items .item .row .value sup {
    position: absolute;
    top: -5px;
    right: -7px;
    font-size: 9px;
}

.compair-map .container .items .item .add-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 450px;
    padding: 0px 20px;
    box-sizing: border-box;
}

.compair-map .container .items .item .add-item:hover {
}

.compair-map .container .items .item .add-item .icon {
    width: 40px;
    height: 40px;
    position: relative;
    margin-bottom: 15px;
}

.compair-map .container .items .item .add-item .icon:after {
    content: '';
    left: 20%;
    right: 20%;
    top: 50%;
    margin-top: -1px;
    height: 2px;
    background: #3a81f7;
    position: absolute;
    border-radius: 5px;
}

.compair-map .container .items .item .add-item .icon:before {
    content: '';
    left: 50%;
    top: 20%;
    bottom: 20%;
    margin-left: -1px;
    width: 2px;
    background: #3a81f7;
    position: absolute;
    border-radius: 5px;
}

.compair-map .container .items .item .add-item .text {
    color: #888;
    font-size: 13px;
    line-height: 18px;
}

.compair-map .container .items .item .add-item .action-txt {
    display: flex;
    margin-top: 10px;
    width: 100%;
    justify-content: space-between;
}

.compair-map .container .items .item .add-item .action-txt a {
    font-size: 13px;
}

.compair-map .minimap {
    position: relative;
    width: 100%;
    height: 100%;
}

.compair-map .minimap .gmap {
    width: 100%;
    height: 100%;
}

.compair-map .minimap .disabled-map {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1001;
}

.compair-map .get-current-position {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 1000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-white);
    border-radius: 50%;
    box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.1);
}

.compair-map .get-current-position svg {
    height: 20px;
    fill: var(--subdart-text-color);
}

.compair-map .current-position {
    background: #064ff3;
    border: 2px solid var(--text-white);
    border-radius: 50%;
    box-shadow: 0px 0px 0px 12px rgb(26 141 255 / 20%);
    width: 14px !important;
    height: 14px !important;
    animation-name: zoom-in-out;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.tooltip-body {
    padding: 10px;
}

.tooltip-body .properties-rows {
}

.tooltip-body .properties-rows .row {
    display: flex;
    padding: 3px 0px;
    border-bottom: 1px solid #eee;
}

.tooltip-body .properties-rows .row .label {
    width: 130px
}

.tooltip-body .properties-rows .row .value {
    width: 450px;
    white-space: break-spaces;
}

.tooltip-body .properties-rows .row:last-child {
    border: none;
}

.plan_info {
    margin-top: 10px;
}

.plan_info .plan-row {
    position: relative;
    line-height: 20px;
    display: flex;
    align-items: center;
    background: aliceblue;
    padding: 3px 10px;
    margin-top: 5px;
}

.plan_info .plan-row.has-detail{
    background: aliceblue;
}

.plan_info .plan-row .note-icon {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan_info .plan-row .note-icon svg {
    height: 16px;
    fill: #888;
}

.plan_info .plan-row .note-icon .text-hover {
    position: absolute;
    bottom: 100%;
    right: -3px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 12px;
    min-width: 150px;
    padding: 5px 10px;
    border-radius: 3px;
    line-height: 18px;
    display: none;
    margin-bottom: 8px;
}

.plan_info .plan-row .note-icon .text-hover:after {
    content: '';
    width: 6px;
    height: 6px;
    border: 3px solid rgba(0,0,0,0.7);
    position: absolute;
    box-sizing: border-box;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg);
    bottom: -3px;
    right: 15px;
}

.plan_info .plan-row .note-icon:hover .text-hover {
    display: block;
}

.plan_info .plan-row .plan-color {
    width: 35px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-right: 10px;
    border-radius: 2px;
}

.plan_info .plan-row .plan-area {
    min-width: 65px;
    font-size: 13px;
    margin-right: 10px;
}

.plan_info .plan-row .plan-name {
    font-size: 13px;
    display: block;
    max-width: 220px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.plan_info .detail-plan-row{
    margin-bottom: 10px;
    padding: 0px 10px;
    border: 1px solid #f0f8ff;
}

.plan_info .detail-plan-row .detail-label{
    min-width: 150px;
    font-size: 13px;
    font-weight: 500;
}

.plan_info .detail-plan-row .detail-value{
    font-size: 13px;
}

.plan_info .detail-plan-row .item{
    border-bottom: 1px dashed #eee !important;
}

.plan_info .detail-plan-row .item:last-child{
    border: none !important;
}

.checkpolygon{
    max-height: calc(100vh - 150px);
    overflow: auto;
}

@-webkit-keyframes pin-marker {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    25% {
        transform: translate(0px, -15px) scale(1.2);
    }

    50% {
        transform: translate(0px, 0px) scale(0.8);
    }

    75% {
        transform: translate(0px, -5px) scale(1);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

@-webkit-keyframes ispinner-fade {
    0% {
        opacity: .85
    }

    50% {
        opacity: .25
    }

    100% {
        opacity: .25
    }
}

@keyframes ispinner-fade {
    0% {
        opacity: .85
    }

    50% {
        opacity: .25
    }

    100% {
        opacity: .25
    }
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 1024px) {
    .app-header .account {
        display: none;
    }

    .app-header .menu-items {
        position: absolute;
        left: 45px;
        top: 0px;
        right: 10px;
        display: inline-flex;
        overflow: scroll;
        white-space: nowrap;
    }

    .app-header .menu-items .item {
        float: left;
    }

    .hide-xs {
        display: none !important;
    }

    .app-map .tools {
        display: none;
    }

    .modal .scrollbox {
        max-width: 90vw;
    }

    .modal .modal-body {
        max-width: 90vw;
        box-sizing: border-box;
    }

    #app > div.modal.open {
        display: flex;
    }

    .adsense-banner-01 {
        left: 15px;
        right: 200px;
        bottom: 10px;
    }
}

@media only screen and (max-width: 680px) {
    .modal .modal-body .mobile-web-btn {
        display: block;
    }

    .adsense-banner-01 {
        bottom: unset;
        top: 50px;
        right: 0px;
        left: 0px;
    }
}
