.bottom-border
{
	border-bottom:1px #999 dotted;
}
.display-label {
    font-weight: 600;
}
.editor-label > label {
    font-weight: 600;
}
/* Outer */
.popup {
    width:100%;
    height:100%;
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    background:rgba(0,0,0,0.75);
    z-index:10005;
}

/* Inner */
.popup-inner {
    max-width:700px;
    width:90%;
    padding:40px;
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    box-shadow:0px 2px 6px rgba(0,0,0,1);
    border-radius:3px;
    background:#fff;
    max-height:70%;
    overflow-y:auto;
}

/* Close Button */
.popup-close {
    width:30px;
    height:30px;
    padding-top:4px;
    display:inline-block;
    position:absolute;
    top:30px;
    right:24px;
    transition:ease 0.25s all;
    -webkit-transform:translate(50%, -50%);
    transform:translate(50%, -50%);
    border-radius:1000px;
    background:rgba(0,0,0,0.8);
    font-family:Arial, Sans-Serif;
    font-size:20px;
    text-align:center;
    line-height:100%;
    color:#fff;
}

.popup-close:hover {
    -webkit-transform:translate(50%, -50%) rotate(180deg);
    transform:translate(50%, -50%) rotate(180deg);
    background:rgba(0,0,0,1);
    text-decoration:none;
}
.editor-label {
    background: #f1f1f1 none repeat scroll 0 0;
    height: 30px;
}
.text-box {
  border: 1px solid #cfcfcf;
    height: 27px;
    width: 94%;
}
.editor-field {
    min-height: 30px;
}

 .editor-field > select {
         border: 1px solid #cfcfcf;
    height: 27px;
    width: 94%;
    }
#TrackingInterval,#GeofencingRadius {
    width: 30%;
}
.button {
    background-color: #ed741a;
    border: 0 none;
    color: #fff;
    min-width:100px;
    padding: 5px 10px;
}