*{
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: 	border-box; /* Firefox, other Gecko */
box-sizing: 		border-box; /* Opera/IE 8+ */
}

html{
margin:0;
padding:0;	
}

.icon i {
	margin-right: 7px;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body{
font:normal 1em/1.2 'Lato', sans-serif;
margin:0;
padding:0;
color:#89a6c7;
background-image: url(../img/background.jpg);
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
text-shadow: 0 0 1px transparent; /* google font pixelation fix */
counter-reset: section;
min-height: 100vh;
}



#map {
	height: 100vh;
	width: calc(100% - 300px);
	margin-left: auto;
	position: relative;
}

#map.active {
	width: 100%;
}
#map::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 2px;
	left: calc(50% - 1px);
	top: 0;
	opacity: 0.6;
	z-index: 1000;
	transition: all .7s ease;
}
#map::after {
	content: "";
	position: absolute;
	height: 2px;
	width: 100%;
	top: calc(50% - 1px);
	left: 0;
	opacity: 0.6;
	z-index: 1000;
	transition: all .7s ease;
}
#map.lines::before, #map.lines::after {
	background-color: #4a90e2;
}

.menu{
	background-color: #383838;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 300px;
	z-index: 1000;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

.menu.active {
	transform: translateX(-100%);
}

.menu h1 {
	font-size: 1em;
	font-weight: normal;
	color: #4a90e2;
	margin: 0;
	padding: 1em;
}

.menu h1 span {
	color: #d72558;
}
.section header {
	background-color: #414141;
	padding: .5em 1em;
	position: relative;
}
.section header i, .close{
	border: 1px solid #222;
	border-radius: 4px;
	cursor: pointer;
	text-align: center;
	width: 1.8rem;
	height: 1.4rem;
	line-height: 1.4rem;
	font-size: .85em;
	background-color: #383838;
	position: absolute;
	right: 1rem;
	color: #89a6c7;
}
.close {line-height: 1.3rem;}

.open {
	border: 1px solid #222;
	border-bottom-right-radius: 4px;
	cursor: pointer;
	text-align: center;
	width: 2.8em;
	height: 2.2em;
	line-height: 2.1em;
	font-size: 1em;
	background-color: #383838;
	color: #89a6c7;
	position: fixed;
	left: 0;
	top: 1em;
	z-index: 1000;
	border-top-right-radius: 4px;
}

.section form, .styleform {
	padding: 1.2em 1.6em;
}
.title, .lat, .long, .style {
	background-color: #242323;
	border: 1px solid #242323;
	border-radius: 3px;
	color: #89a6c7;
	margin-bottom: 10px;
	font-size: 0.8rem;
	padding: 3px 6px;
	font-family: inherit;
}

.title, .style {width: 100%;}

.section label {
	display: block;
	font-size: 0.8rem;
	margin-bottom: 5px;
}

.lat, .long {
	width: 100px;
}
.button {
	border: 1px solid #222;
	border-radius: 4px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px;
	text-align: center;
	width: 1.8rem;
	height: 1.4rem;
	line-height: 1.4rem;
	font-size: .85em;
	background-color: #383838;
	cursor: pointer;
}
.range {
	width: 200px;
	vertical-align: middle;
}
.zoom-show {
	font-size: .8em;
	vertical-align: middle;
}
.styleform a {
	color: #89a6c7;
	text-decoration: none;
	display: block;
	font-size: .8em;
	margin-top: 3px;
	font-style: italic;
	cursor: pointer;
}

.styleform a i{
	display: inline-block;
	margin-right: 5px;
}

.markers p {
	display: block;
	font-size: .8em;
	margin: 0 0 10px;
	cursor: pointer;
}

.markers p i{
	display: inline-block;
	margin-right: 5px;
}

.modal {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 2000;
	top: 0;
	left: 0;
	background-color: rgba(43, 55, 63, 0.8);
}

.bg-modal {
	height: 100%;
	position: relative;
}

.modal-box {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 80%;
	width: 500px;
	border-radius: 5px;
	box-shadow: 3px 3px 10px -1px rgba(0,0,0,.7);
	overflow: hidden;
}

.modal header {
	background-color: #424043;
	padding: .5em 1em;
	position: relative;
	font-weight: 700;
}
.modal header i {
	border: 1px solid #222;
	border-radius: 4px;
	cursor: pointer;
	text-align: center;
	width: 1.8rem;
	height: 1.4rem;
	line-height: 1.2rem;
	font-size: .85em;
	background-color: #353535;
	position: absolute;
	right: 1rem;
	color: #89a6c7;
}

.modal header span {
	cursor: pointer;
	height: 1.4rem;
	line-height: 1.4rem;
	font-size: .85em;
	position: absolute;
	right: 3.5rem;
	color: #89a6c7;
	font-weight: 400;
}
.modal p, .modal a {
	display: block;
	font-size: 0.8rem;
	margin: 0 0 5px;
}
.row {padding-top: 1rem;}
.col {
	display: inline-block;
	vertical-align: bottom;
}
.col:last-child {
	margin-left: 20px
}
.row.alt .col {
	width: calc(100% - 160px);
}
.row.alt .col input {
	width: 100%;
}
.row.alt .col:last-child {
	width: 140px;
}
.modal a {
	color: inherit;
	text-decoration: none;
	font-style: italic;
}
.modal-section {
	padding: 1px 1rem;
	background-color: #fff;
	font-size: 0;
	border: 1px solid #fff;
}
.modal-section:last-child {
	padding: 1px 1rem 1rem;
}
.modal input[type=text] {
	background-color: #f0f0f0;
	border: 1px solid #f0f0f0;
	border-radius: 3px;
	color: #818b97;
	font-size: 0.8rem;
	padding: 6px;
	font-family: inherit;
}
.modal textarea {
	background-color: #f0f0f0;
	border: 1px solid #f0f0f0;
	border-radius: 3px;
	color: #818b97;
	font-size: 0.8rem;
	padding: 6px;
	font-family: inherit;
	width: 100%;
}

.radio, .eradio, .position, .eposition  {
	display: inline-block;
	background-color: #f0f0f0;
	border-radius: 3px;
	width: 30px;
	height: 30px;
	position: relative;
	color: #85929b;
	transition: all .3s ease;
	cursor: pointer;
	font-size: 1rem;
	margin-right: 5px;
}

.radio.selected, .eradio.selected, .position.selected, .eposition.selected {
	background-color: #85929b;
	color: #f0f0f0;
}


.radio i, .eradio i, .position i, .eposition i {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.m-imag, .e-imag, .m-mark, .e-mark, .m-text, .e-text {
	display: none;
}
.icon {
	font-size: .8rem;
	display: inline-block;
	background-color: #f0f0f0;
	padding: 0 8px;
	height: 30px;
	line-height: 30px;
	vertical-align: top;
	border-radius: 3px;
	color: #818b97;
	min-width: 160px;
}
.inp-clr {
	display: inline-block;
	margin-right: 5px;
	border: 2px solid #f0f0f0;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	transition: all .3s ease;
}

.inp-clr input {
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
}

.drag, .edrag {
	background-color: #f0f0f0;
	font-size: .8rem;
	color: #818b97;
	position: relative;
	width: 100%;
	border-radius: 3px;
	text-align: center;
	padding: 3em 0;
	border: 1px dashed #d0d0d0;
	margin-bottom: 5px;
	background-size: auto 80%;
	background-repeat: no-repeat;
	background-position: center center;
}

#mkrlng, #ekrlng, #mkr-height, #ekr-height {
	margin-left: 5px;
}

/* marker sortable list styles */
ol.marker-list{
margin:0;
padding:10px;
font-size:0.8em;
}

	ol.marker-list li{
	list-style-type:none;
	background:#242323;
	display:block;
	padding:3px 10px;
	line-height:1;
	border-radius:200em;
	margin:0 0 2px 0;
	cursor: pointer;
	transition: transform 0.2s ease;
	width:100%;
	}
	
	ol.marker-list li.ui-sortable-helper{
	transform: rotate(-1deg) scale(1.1,1.1);
	}
	
	ol.marker-list li .fa{
	font-size:10px;
	opacity:0.5;
	margin-right:5px;
	position: relative;
	top:-2px;
	cursor: move;
	}

.drag input, .edrag input {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}


.icon-modal {
	position: absolute;
	top: 50%;
	left: calc(50% - 250px);
	width: 500px;
	height: 600px;
	overflow: auto;
	border: 10px solid #fff;
	background-color: #fff;
	font-size: 0;
	color: #5a5a5a;
	text-align: center;
	border-radius: 5px;
	box-shadow: 3px 3px 10px -1px rgba(0,0,0,.7);
	max-height: 90%;
	transform: translateY(-50%);
}

.icon-option {
	font-size: .55rem;
	padding: 10px;
	border-radius: 3px;
	margin: 5px;
	display: inline-block;
	width: 100px;
	cursor: pointer;
	transition: all .5s ease;
}

.icon-option .map-icon {
	display: block;
	font-size: 34px;
	margin-bottom: 5px;
}

.icon-option.selected {
	color: #fff;
	background-color: #5a5a5a;
}

.modal header i#add-delete {
	right: 3.3rem;
}

.mkr-shape, .ekr-shape {
	width: 30px;
	height: 30px;
	background-color: #f0f0f0;
	border-radius: 3px;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 50%;
	margin: 0 3px 0px 0;
	transition: all .5s ease;
	cursor: pointer;
}

.mkr-shape.selected, .ekr-shape.selected {
	background-color: #85929b;
}

      #pac-input {
        background-color: #fff;
        font-family: inherit;
        font-size: 15px;
        font-weight: 300;
        padding: 0 11px 0 13px;
        text-overflow: ellipsis;
        width: 300px;
        margin-top: 5px;
        margin-right: 5px;
        border: 1px solid transparent;
        border-radius: 3px;
        height: 32px;
        outline: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      }

      #pac-input:focus {
        border-color: #4d90fe;
      }

      .pac-container {
        font-family: Lato;
      }

      #type-selector {
        color: #fff;
        background-color: #4d90fe;
        padding: 5px 11px 0px 11px;
      }

      #type-selector label {
        font-family: Lato;
        font-size: 13px;
        font-weight: 300;
      }
      #target {
        width: 345px;
      }
 #snazzy {
	background-color: #242323;
	border: 1px solid #242323;
	border-radius: 3px;
	color: #89a6c7;
	margin-bottom: 10px;
	font-size: 0.8rem;
	padding: 3px 6px;
	font-family: inherit;
	width: 100%;
}
.snazzy {
	position: relative;
}
.snazzy i {
	position: absolute;
	right: 5px;
	font-size: .85em;
	top: 5px;
	cursor: pointer;
}
.snazzy-styles {
	margin-bottom: 10px;
	width: 100%;
	overflow-y: auto;
	height: 30vh;
	background-color: #242323;
	border: 10px solid #242323;
	border-radius: 3px;
}

.snazzy-style {
	position: relative;
	width: 100%;
	margin-bottom: 10px;
	border: 3px solid transparent;
	cursor: pointer;
}
.snazzy-style.selected { 
	border-color: #4a90e2;
}
.snazzy-style img {
	object-fit: cover;
	height: 80px;
	width: 100%;
	vertical-align: top;
}

.snazzy-style p {
	position: absolute;
	bottom: 0;
	right: 0px;
	color: #fff;
	background-color: rgba(0,0,0,.5);
	margin: 0;
	padding: .5em 1em;
	font-size: 0.67em;
}

#create-iframe, #show-info {
	right: 4em;
}

code {
	padding: 1em;
	display: block;
	margin: 1em 0;
	border: 2px solid;
	border-radius: 3px;
	font-size: 0.8rem;
}

code span, code b {
	color: #424043;
}
textarea {
    resize: none;
}
.style {
	height: 10vh;
	min-height: 60px;
}

.modal p, .modal div, .modal header, .menu p, .menu div, .menu header, .menu h1, .menu a {
    -webkit-user-select: none; /* Chrome, Opera, Safari */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
}

.modal div code {
    -webkit-user-select: all; /* Chrome, Opera, Safari */
    -moz-user-select: all; /* Firefox 2+ */
    -ms-user-select: all; /* IE 10+ */
    user-select: all; /* Standard syntax */
}

.si-content{
min-width:180px !important;
overflow:hidden;
}

.infoname {
	font-weight: 400;
	font-family: lato;
	margin: 0;
	/*text-align: center;*/
	overflow:hidden;
}
.infoname + .infowindow {
	margin-top: 5px;
	font-weight: 400;
	font-size: 0.85em;
	overflow:hidden;
}
#font-size, #eont-size, #bdr-rad, #ebdr-rad, #text-size, #padding {
	height: 26px;
}
#inp-text, #einp-text {width: 100%;}
.map-icon.map-icon-none::before {
	content: " ";
}
#eraser {
	background-color: #aaa;
	color: #383838;
}
#chnglatlong.active {
	background-color: #aaa;
	color: #383838;
}
#eraser.active {
	color: #89a6c7;
	background-color: #383838;
}
.button:hover, .section header i:hover, .close:hover , .modal header i:hover {
	border-color: #89a6c7;
}
.icon-option .map-icon.map-icon-none {
	height: 34px;
}

#msn {
	position: absolute;
	top: 51px;
	z-index: 1000;
	left: 305px;
	padding: 5px 13px;
	background-color: rgba(255,255,255,.3);
	color: #36bd92;
	text-transform: uppercase;
	border: 3px solid;
	border-radius: 5px;
	font-weight: 700;
	display: none;
}

.modal header i#clone {
	right: 5.6rem;
}

#icons-search {
	display: inline-block;
	max-width: 250px;
	margin-bottom: 20px;
}
#client-listing {
	width: 350px;
	height: 100vh;
	overflow-y: auto;
	color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	background-color: rgba(0,0,0,.5);
	box-shadow:0px 0px 9px 0px rgba(0, 0, 0, 0.28);
	transition: all .7s ease-in-out;
    
    width:320px;
    height: calc(100% - 80px);
    transform: translate(0%, -50%);
    top: 50%;
    margin-right: 100px;

}


#client-listing.active {
	transform: translate(100%, -50%);
    margin-right:0;
}
#client-listing h1 {
	font-size: 0.9rem;
	line-height:1.2;
	margin: 20px 20px 0 20px;
	text-transform: uppercase;
	font-weight: 400;
}
#client-listing h1 i{
	margin-right:5px;
}
/*#client-listing ul {
	margin: 0;
	padding: 1px 20px 20px;;
}
.client-li {
	padding: 10px 10px;
	margin: 10px 0 0;
	cursor: pointer;
	position: relative;
	list-style-type:decimal;
	background-color:#fff;
	background-color: rgba(255,255,255,.9);
	color: #666;
	border-radius:3px;
	transition: all .3s ease-in-out;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

.client-li:hover{
	padding-left:20px;
	background-color: rgba(255,255,255,1);
}*/
#client-listing ul{
	margin:10px 20px 10px 0;
}
#client-listing div.content{
	padding:10px 20px;
	margin-top:10px;
}

	#client-listing div.content h1,
	#client-listing div.content h2,
	#client-listing div.content h3,
	#client-listing div.content h4,
	#client-listing div.content h5{
	margin-bottom:0;	
	}
	
	/*#client-listing ul li:last-child{border-bottom:none;}*/
	
.client-li{
	padding: 10px 5px;
	margin: 0;
	cursor: pointer;
	position: relative;
	list-style-type:decimal;
	color:#fff;
	line-height:1.2;
	border-bottom:1px solid rgba(255,255,255,0.3);
	transition: all .3s ease-in-out;
}
.client-li:hover{
	padding-left:20px;
}
#client-listing h3 {
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	font-weight:bold;
	margin: 0;
	position:relative;
	top:-2px;
}
#client-listing p {
	font-size: 0.85rem;
	margin: 0;
	color:#fff;
}
#client-listing h3 + #client-listing p {
	margin: 0.85rem 0 0;
}

.client-icon {
	background-size: cover;
	background-position: center center;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 50%;
	font-size: 1.5rem;
	display: inline-block;
	height: 40px;
	line-height: 40px;
	margin-right: 10px;
	overflow: hidden;
	vertical-align: middle;
	width: 40px;
	text-align: center;
	color:#ccc;
	display:none;
}
.client-li header {
	display: inline-block;
	font-size: .85rem;
	vertical-align: middle;
	width: calc(100% - 60px);	
}
.client-show {
	position: absolute;
    top: 40px;
    right: 380px;
	padding: 7px;
	font-size:14px;
	background-color: rgba(0,0,0,0.5);
	color: #fff;
	cursor: pointer;
	transition: all .7s ease-in-out;
	box-shadow:0px 0px 10px rgba(0,0,0,0.2);
}
.client-show.active {
	right: 0;
}

.client-info {
	position: absolute;
	top: 3px;
	left: 3px;
	padding: 5px;
	background-color: rgba(0,0,0,0.7);
	color: #fff;
	cursor: pointer;
	transition: all .7s ease-in-out;
}

@media only screen and (max-width: 800px) {
#client-listing, #client-listing.active {
	width: 100%;
	height: auto;
	overflow-y: inherit;
	color: #fff;
	position: relative;
	background-color: rgba(0,0,0,.7);
	padding-top: 1px;
	transform: none;
}
.client-show {
	display: none;
}

    }

