/* border */
.border {
    border: 1px solid #535353 !important;
}
.border-top {
    border-top: 1px solid #535353 !important;
}
.border-left {
    border-left: 1px solid #535353 !important;
}
.border-bottom {
    border-bottom: 1px solid #535353 !important;
}
.border-right {
    border-right: 1px solid #535353 !important;
}
.border-0{
  border: 0!important;
}
.border-0 td{
  border: 0!important;
}
.border-0 th{
  border: 0!important;
}
.border-top-0 {
    border-top: 0!important;
}
.border-left-0 {
    border-left: 0!important;
}
.border-bottom-0 {
    border-bottom: 0!important;
}
.border-right-0 {
    border-right: 0!important;
}

/* card */
.card{
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 8px;
}
.card-header{
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    color: inherit;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
    border-radius: 8px 8px 0 0 ;
}
.card-body{
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}
.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0,0,0,.03);
    border-top: 1px solid rgba(0,0,0,.125);
}

/* row col */
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -12px;
}
.col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
.col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}
.col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}
.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12{
    position: relative;
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}

/* btn */
.btn {
    width: auto;
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #e9e9e9;
    border: 1px solid #212529;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
}
.btn:hover {
    color: #ffffff;
    background-color: #4d4d4d;
    text-decoration: none;
}
.btn-block {
    display: block !important;
    width: 100%; 
}
/* samall-badge */
.small-badge{
    display: inline-block;
    padding: 2px;
    background-color: #d3d3d3;
    border-radius: 4px;
    font-size: 9px;
}
/* badge */
.badge{
    display: inline-block;
    padding: 4px;
    background-color: #d3d3d3;
    border-radius: 4px;
}

/* table */
table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
    border-collapse: collapse;
    /*table-layout: fixed;*/
}
table td, table th {
    padding: 4px;
    vertical-align: middle;
    border-top: 1px solid #535353;
}
table thead{
    text-align: center;
}
table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #535353;
}
th {
    text-align: inherit;
}
th > a{
  text-decoration: underline !important;
}
.table-bordered {
    border: 1px solid #535353;
}
.table-bordered td, .table-bordered th {
    border: 1px solid #535353;
}
.table-bordered thead td, .table-bordered thead th {
    border-bottom-width: 2px;
}
.table-bordered td, .table-bordered th {
    border: 1px solid #c1c1c1;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(129, 129, 129, 0.1);
}
.table-layout-fixed{
  table-layout: fixed;
}

/* text */
.text-center{
    text-align: center;
}
.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}

/* vertical-align */
.align-baseline {
    vertical-align: baseline !important;
}
.align-bottom {
    vertical-align: bottom !important;
}
.align-middle {
    vertical-align: middle !important;
}

/* align-items */
.align-items-center{
    align-items: center;
}
.align-items-baseline{
    align-items: baseline;
}
.align-items-top{
    align-items:flex-start;
}
.align-items-bottom{
    align-items:flex-end;
}

/* align-content */
.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}
.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}
.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}
.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}
.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}
.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

/* align-self */
.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}
.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}
.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}
.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}
.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}
.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

/* display */
.d-block{
    display: block;
}
.d-inline-block{
    display: inline-block;
}
.d-inline{
    display: inline;
}
.d-flex{
    display: flex;
}
.d-none{
  display: none;
}

/* justifi-content */
.justify-content-between{
    justify-content: space-between;
}
.justify-content-around{
    justify-content: space-around;
}
.justify-content-left{
    justify-content: flex-start;
}
.justify-content-right{
    justify-content: flex-end;
}
.justify-content-center{
    justify-content: center;
}

/* font-size */
.font-10{
    font-size: 9px !important ;
}
.font-10{
    font-size: 10px !important ;
}
.font-11{
    font-size: 11px !important ;
}
.font-12{
    font-size: 12px !important ;
}
.font-14{
    font-size: 14px !important ;
}
.font-16{
    font-size: 16px !important ;
}
.font-18{
    font-size: 18px !important ;
}
.font-20{
    font-size: 20px !important ;
}
.font-24{
    font-size: 24px !important ;
}
.font-28{
    font-size: 28px !important ;
}
.font-32{
    font-size: 32px !important ;
}
.font-36{
    font-size: 36px !important ;
}
.font-40{
    font-size: 40px !important ;
}
.font-48{
    font-size: 48px !important ;
}

/* font-weight */
.font-weight-bold{
    font-weight: bold !important ;
}
.font-weight-light{
    font-weight:lighter !important ;
}

/* margin */
.m-auto{
    margin: auto !important ;
}
.m-0{
    margin: 0 !important ;
}
.m-8{
    margin: 8px !important ;
}
.m-12{
    margin: 12px !important ;
}
.m-16{
    margin: 16px !important ;
}
.m-20{
    margin: 20px !important ;
}
.m-24{
    margin: 24px !important ;
}
.m-32{
    margin: 32px !important ;
}
.m-40{
    margin: 40px !important ;
}
.m-48{
    margin: 48px !important ;
}

.mb-auto{
    margin-bottom: auto !important ;
}
.mb-0{
    margin-bottom: 0 !important ;
}
.mb-8{
    margin-bottom: 8px !important ;
}
.mb-12{
    margin-bottom: 12px !important ;
}
.mb-16{
    margin-bottom: 16px !important ;
}
.mb-20{
    margin-bottom: 20px !important ;
}
.mb-24{
    margin-bottom: 24px !important ;
}
.mb-32{
    margin-bottom: 32px !important ;
}
.mb-40{
    margin-bottom: 40px !important ;
}
.mb-48{
    margin-bottom: 48px !important ;
}

.mt-auto{
    margin-top: auto !important ;
}
.mt-0{
    margin-top: 0 !important ;
}
.mt-8{
    margin-top: 8px !important ;
}
.mt-12{
    margin-top: 12px !important ;
}
.mt-16{
    margin-top: 16px !important ;
}
.mt-20{
    margin-top: 20px !important ;
}
.mt-24{
    margin-top: 24px !important ;
}
.mt-32{
    margin-top: 32px !important ;
}
.mt-40{
    margin-top: 40px !important ;
}
.mt-48{
    margin-top: 48px !important ;
}

.ml-auto{
    margin-left: auto !important ;
}
.ml-0{
    margin-left: 0 !important ;
}
.ml-8{
    margin-left: 8px !important ;
}
.ml-12{
    margin-left: 12px !important ;
}
.ml-16{
    margin-left: 16px !important ;
}
.ml-20{
    margin-left: 20px !important ;
}
.ml-24{
    margin-left: 24px !important ;
}
.ml-32{
    margin-left: 32px !important ;
}
.ml-40{
    margin-left: 40px !important ;
}
.ml-48{
    margin-left: 48px !important ;
}

.mr-auto{
    margin-right: auto !important ;
}
.mr-0{
    margin-right: 0 !important ;
}
.mr-8{
    margin-right: 8px !important ;
}
.mr-12{
    margin-right: 12px !important ;
}
.mr-16{
    margin-right: 16px !important ;
}
.mr-20{
    margin-right: 20px !important ;
}
.mr-24{
    margin-right: 24px !important ;
}
.mr-32{
    margin-right: 32px !important ;
}
.mr-40{
    margin-right: 40px !important ;
}
.mr-48{
    margin-right: 48px !important ;
}

.mx-auto{
    margin-left: auto !important ;
    margin-right: auto !important ;
}
.mx-0{
    margin-left: 0 !important ;
    margin-right: 0 !important ;
}
.mx-8{
    margin-left: 8px !important ;
    margin-right: 8px !important ;
}
.mx-12{
    margin-left: 12px !important ;
    margin-right: 12px !important ;


}
.mx-16{
    margin-left: 16px !important ;
    margin-right: 16px !important ;

}
.mx-20{
    margin-left: 20px !important ;
    margin-right: 20px !important ;

}
.mx-24{
    margin-left: 24px !important ;
    margin-right: 24px !important ;

}
.mx-32{
    margin-left: 32px !important ;
    margin-right: 32px !important ;

}
.mx-40{
    margin-left: 40px !important ;
    margin-right: 40px !important ;

}
.mx-48{
    margin-left: 48px !important ;
    margin-right: 48px !important ;

}



.my-auto{
    margin-top: auto !important ;
    margin-bottom: auto !important ;
}
.my-0{
    margin-top: 0 !important ;
    margin-bottom: 0 !important ;
}
.my-8{
    margin-top: 8px !important ; 
    margin-bottom: 8px !important ; 
}
.my-12{
    margin-top: 12px !important ;
    margin-bottom: 12px !important ; 
}
.my-16{
    margin-top: 16px !important ;
    margin-bottom: 16px !important ; 
}
.my-20{
    margin-top: 20px !important ;
    margin-bottom: 20px !important ; 
}
.my-24{
    margin-top: 24px !important ;
    margin-bottom: 24px !important ; 
}
.my-32{
    margin-top: 32px !important ;
    margin-bottom: 32px !important ; 
}
.my-40{
    margin-top: 40px !important ;
    margin-bottom: 40pxs !important ; 
}
.my-48{
    margin-top: 48px !important ;
    margin-bottom: 48px !important ; 
}

/* padding */
.p-auto{
    padding: auto !important ;
}
.p-0{
    padding: 0 !important ;
}
.p-4{
    padding: 4px !important ;
}
.p-8{
    padding: 8px !important ;
}
.p-12{
    padding: 12px !important ;
}
.p-16{
    padding: 16px !important ;
}
.p-20{
    padding: 20px !important ;
}
.p-24{
    padding: 24px !important ;
}
.p-32{
    padding: 32px !important ;
}
.p-40{
    padding: 40px !important ;
}
.p-48{
    padding: 48px !important ;
}

.pb-auto{
    padding-bottom: auto !important ;
}
.pb-0{
    padding-bottom: 0 !important ;
}
.pb-8{
    padding-bottom: 8px !important ;
}
.pb-12{
    padding-bottom: 12px !important ;
}
.pb-16{
    padding-bottom: 16px !important ;
}
.pb-20{
    padding-bottom: 20px !important ;
}
.pb-24{
    padding-bottom: 24px !important ;
}
.pb-32{
    padding-bottom: 32px !important ;
}
.pb-40{
    padding-bottom: 40px !important ;
}
.pb-48{
    padding-bottom: 48px !important ;
}

.pt-auto{
    padding-top: auto !important ;
}
.pt-0{
    padding-top: 0 !important ;
}
.pt-8{
    padding-top: 8px !important ;
}
.pt-12{
    padding-top: 12px !important ;
}
.pt-16{
    padding-top: 16px !important ;
}
.pt-20{
    padding-top: 20px !important ;
}
.pt-24{
    padding-top: 24px !important ;
}
.pt-32{
    padding-top: 32px !important ;
}
.pt-40{
    padding-top: 40px !important ;
}
.pt-48{
    padding-top: 48px !important ;
}

.pl-auto{
    padding-left: auto !important ;
}
.pl-0{
    padding-left: 0 !important ;
}
.pl-8{
    padding-left: 8px !important ;
}
.pl-12{
    padding-left: 12px !important ;
}
.pl-16{
    padding-left: 16px !important ;
}
.pl-20{
    padding-left: 20px !important ;
}
.pl-24{
    padding-left: 24px !important ;
}
.pl-32{
    padding-left: 32px !important ;
}
.pl-40{
    padding-left: 40px !important ;
}
.pl-48{
    padding-left: 48px !important ;
}

.pr-auto{
    padding-right: auto !important ;
}
.pr-0{
    padding-right: 0 !important ;
}
.pr-8{
    padding-right: 8px !important ;
}
.pr-12{
    padding-right: 12px !important ;
}
.pr-16{
    padding-right: 16px !important ;
}
.pr-20{
    padding-right: 20px !important ;
}
.pr-24{
    padding-right: 24px !important ;
}
.pr-32{
    padding-right: 32px !important ;
}
.pr-40{
    padding-right: 40px !important ;
}
.pr-48{
    padding-right: 48px !important ;
}

.px-auto{
    padding-left: auto !important ;
    padding-right: auto !important ;
}
.px-0{
    padding-left: 0 !important ;
    padding-right: 0 !important ;
}
.px-8{
    padding-left: 8px !important ;
    padding-right: 8px !important ;
}
.px-12{
    padding-left: 12px !important ;
    padding-right: 12px !important ;

}
.px-16{
    padding-left: 16px !important ;
    padding-right: 16px !important ;

}
.px-20{
    padding-left: 20px !important ;
    padding-right: 20px !important ;

}
.px-24{
    padding-left: 24px !important ;
    padding-right: 24px !important ;

}
.px-32{
    padding-left: 32px !important ;
    padding-right: 32px !important ;

}
.px-40{
    padding-left: 40px !important ;
    padding-right: 40px !important ;

}
.px-48{
    padding-left: 48px !important ;
    padding-right: 48px !important ;
}

.py-auto{
    padding-top: auto !important ; 
    padding-bottom: auto !important ; 
}
.py-0{
    padding-top: 0 !important ; 
    padding-bottom: 0 !important ; 
}
.py-8{
    padding-top: 8px !important ; 
    padding-bottom: 8px !important ; 
}
.py-12{
    padding-top: 12px !important ;
    padding-bottom: 12px !important ; 
}
.py-16{
    padding-top: 16px !important ;
    padding-bottom: 16px !important ; 
}
.py-20{
    padding-top: 20px !important ;
    padding-bottom: 20px !important ; 
}
.py-24{
    padding-top: 24px !important ;
    padding-bottom: 24px !important ; 
}
.py-32{
    padding-top: 32px !important ;
    padding-bottom: 32px !important ; 
}
.py-40{
    padding-top: 40px !important ;
    padding-bottom: 40px !important ; 
}
.py-48{
    padding-top: 48px !important ;
    padding-bottom: 48px !important ; 
}

/* width */
.w-auto{
    width: auto !important ;
}
.w-0{
    width: 0 !important ;
}
.w-15{
    width: 15% !important ;
}
.w-20{
    width: 20% !important ;
}
.w-25{
    width: 25% !important ;
}
.w-30{
    width: 30% !important ;
}
.w-40{
    width: 40% !important ;
}
.w-45{
    width: 45% !important ;
}
.w-50{
    width: 50% !important ;
}
.w-55{
    width: 55% !important ;
}
.w-60{
    width: 60% !important ;
}
.w-70{
    width: 70% !important ;
}
.w-75{
    width: 75% !important ;
}
.w-80{
    width: 80% !important ;
}
.w-95{
    width: 95% !important ;
}
.w-100{
    width: 100% !important ;
}

.h-auto{
  height: auto !important;
}
.h-100{
  height: 100% !important;
}

/* rounded */
.rounded {
    border-radius: 4px!important;
}
.rounded-top {
    border-top-left-radius: 4px!important;
    border-top-right-radius: 4px!important;
}
.rounded-right {
    border-top-right-radius: 4px!important;
    border-bottom-right-radius: 4px!important;
}
.rounded-bottom {
    border-bottom-right-radius: 4px!important;
    border-bottom-left-radius: 4px!important;
}
.rounded-left {
    border-top-left-radius: 4px!important;
    border-bottom-left-radius: 4px!important;
}
.rounded-circle {
    border-radius: 50%!important;
}
.rounded-pill {
    border-radius: 50rem!important;
}
.rounded-0 {
    border-radius: 0!important;
}

/* position */
.position-relative{
    position: relative;
}
.position-absolute{
    position: absolute;
}
.position-fixed{
    position: fixed;
}

/*custom*/
.text-sales{
  background-color: #2caf5a;
  color:#fff;
}
.text-nonesales{
  background-color: #818181;
  color: #fff;
}
.text-new{
  background-color: #c33b2c;
  color:#fff;
}
.text-lifeSupport{
  background-color: #f89b31;
  color:#fff;
}
.text-tsudo{
  background-color: #a5a6aa;
  color:#fff;
}


.text-active{
  color: #2caf5a;
}
.text-noneactive{
  color: #bbb6b6;
}
.text-coolingoff{
  color: #e5e2e2;
}
.text-resign {
  color: #f8e2b3;
}

/*mapIconToolTip*/
.mapIconToolTip {
  width:400px;
}
.mapIconToolTip table td.th {
  width:45%;
}

.blink{
  /*animation: spinner-grow .95s linear infinite;*/
}
@keyframes spinner-grow{
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}