/*remove imports*/
@import url(https://fonts.googleapis.com/css?family=Roboto:100,200,300,300italic,400,400italic,700,700italic);

*, *:after, *:before{
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}


body, html{
  font-family: "Roboto", sans-serif;
  color: #4D4D4D;
  margin: 0;
  padding: 0;
  font-size: 13px;
  height: 100%;
  overflow: hidden;
}
body{
  background: #E5E5E5;
}

h1,h2,h3,h4,h5,h6{
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}

h1{ margin-bottom: 30px; }
h2{ margin-bottom: 25px; }
h3{ margin-bottom: 20px; }
h4{ margin-bottom: 15px; }
h5{ margin-bottom: 10px; }

label{  font-style: italic; font-weight: 400;}

a{  color: #FF8F00; }
a:hover{ text-decoration: none; }

hr{
  width: 100%;
}
button, .m4nbtn{
  border: 1px solid #e5e5e5;
  outline: 0;
  font-weight: 300;
  font-size: 13px;
  padding: 10px 30px;
  background: #005684;
  color: white;
  cursor: pointer;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
.m4nbtn {
  float: right;
}

@keyframes glowingAnimation-blue {
  0% { background-color: #005684; -webkit-box-shadow: 0 0 3px #005684; }
  50% { background-color: blue; -webkit-box-shadow: 0 0 40px blue; }
  100% { background-color: #005684; -webkit-box-shadow: 0 0 3px #005684; }
}

@keyframes glowingAnimation-gray {
  0% { background-color: #F2F2F2; -webkit-box-shadow: 0 0 3px #F2F2F2; }
  50% { background-color: #d8d8d8; -webkit-box-shadow: 0 0 40px #d8d8d8; }
  100% { background-color: #F2F2F2; -webkit-box-shadow: 0 0 3px #F2F2F2; }
}

.glow-animation-blue {
  animation: glowingAnimation-blue 1500ms infinite;
  animation-iteration-count: 10;
}

.glow-animation-gray {
  animation: glowingAnimation-gray 1500ms infinite;
  animation-iteration-count: 10;
}

[draggable] {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element;
}

.group-feature {
  cursor: move;
}

.group-feature.dragElem {
  opacity: 0.4;
}

.group-feature.over {
  /* border: 2px dashed #000; */
  border-top: 2px solid blue;
}

.add-icon-tutorial {
  display: inline-block;
  height: 30px;
  width: 30px;
  /* color: white; */
  background: #E5E5E5 url(/images/table-buttons2.png?v=1.0) no-repeat center;
  /* cursor: pointer; */
  vertical-align: middle;
  background-position: 0 -30px;
  background-color: #005684;
}

.add-location-tutorial {
  display: inline-block;
  height: 30px;
  width: 30px;
  /* color: white; */
  background: #E5E5E5 url(/images/table-buttons2.png?v=1.0) no-repeat center;
  /* cursor: pointer; */
  vertical-align: middle;
  background-position: 0 -150px;
  background-color: #005684;
}

.outline-element-blue {
  outline: blue solid 2px;
}

button:focus{
  outline: none;
}
button.disabled{
  background: white;
  color: lightgray;
  cursor: default;
}
button:not(.no)button:not(.disabled):not(.cancel):not(.close):hover{ background: #054466; }
button.cancel, button.no{ background: white; color: #4D4D4D; float: left; margin-left: 8px; }

button.cancel:hover, button.no:hover{  background: #F6F6F6; }

button.active{ background: #4D4D4D; color: white; }

button.close:before{
  content: "\f068";
  font-family: FontAwesome;
}
.collapsed button.close:before{ content:"\f067"; }

.infobar button.close, .output button.close{
  position: absolute;
  top: 10px;
  right: 12px;
}
button.close.output-close-btn{ top: 18px; }

.infobar button:not(.close):not(.use-empty-table),
.google-docs{
  background: #e5e5e5;
  padding: 5px 10px;
  margin-bottom: 3px;
  color: inherit;
}
.infobar button:not(.close):not(.use-empty-table):hover,
.google-docs:hover{ background: #d5d5d5 !important; }

#generateMap_btn, #downloadMap_btn, .use-empty-table {
  width: 100%;
}

#downloadMap_btn {
  background: #005684;
  color: white;
  margin-bottom: 15px;
}
#downloadMap_btn:hover{
  background: #054466 !important;
}

input, select, textarea{
  width: 100%;
  outline: 0;
  border: 1px solid #d4d4d4;
  border-radius: 0;
  -webkit-border-radius: 0;
  /*background: #F6F6F6;*/
  color: #4D4D4D;
  font-size: 13px;
  padding: 8px 10px;
  margin: 0 0 10px 0;
  display: block;
}

textarea{ min-height: 100px; }

ul{
  margin: 0;
  padding:0;
}
p{ max-width: 100%; }

.error{
  color: red;
  font-style: italic;
  font-size: 12px;
}

.align-right{ float: right; }
.align-left{ float: left; }

[type=checkbox], [type=radio]{
 left:-9000px;
 position:absolute;
}
[type=checkbox] + label, [type=radio] + label {
  line-height:15px;
  height:15px;
  max-width: 100%;
  padding-left:20px;
  display:inline-block;
  background-image: url("../images/input-icons.png?v=1.0");
  background-repeat: no-repeat;
  background-position: 0 0;
  cursor:pointer;
}
[type=checkbox]:checked + label{ background-position: 0 -15px; }
[type=radio] + label { background-position: 0 -30px; }
[type=radio]:checked + label{ background-position: 0 -45px; }
[type=radio]:disabled + label, [type=checkbox]:disabled + label{ opacity: 0.5; cursor: default;}

.popover {
  z-index: 9999;
}

.popover.tour {
  border-radius: unset;
  border-left: 10px solid #005684;
  max-width: 400px;
  border-right: unset;
}

.right.popover.tour {
  border-radius: unset;
  border-left: unset;
  max-width: 400px;
  border-right: 10px solid #005684;
}

.end-tour {
  background-color: darkgray;
  float: none !important;
}

.end-tour:hover {
  background: gray;
}

.popover-title {
  font-size: 24px;
  background-color: transparent;
  border-bottom: none;
}

.custom-select {
  position: relative;
}
.custom-select:after {
  background-color: #005684;
  bottom: 0;
  content: "";
  height: 2px;
  left: 45%;
  position: absolute;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  width: 10px;
}
.custom-select.active:after {
  left: 0;
  width: 100%;
  visibility: visible;
}
.custom-select select {
  background-image: linear-gradient(45deg, transparent 50%, #aaa 50%), linear-gradient(135deg, #aaa 50%, transparent 50%);
  background-position: calc(100% - 15px) calc(1em + 0px), calc(100% - 10px) calc(1em + 0px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}
.custom-select select:focus {
  outline: 0;
}
.custom-select select option {
  padding: 2px 5px;
}
.custom-select select option:checked {
  box-shadow: 0 0 10px 100px #005684 inset;
  -moz-box-shadow: 0 0 10px 100px #005684 inset;
  -webkit-box-shadow: 0 0 10px 100px #005684 inset;
}
input[type=range] {
  -webkit-appearance: none;
  /*background: transparent;*/
  border: 0;
  min-width: 150px;
  min-height: 30px;
  padding-top: 0px;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow:none;
  background: #999999;
  border-radius: none;
  border: none;
}
input[type=range]::-webkit-slider-thumb {
  border: none;
  height: 16px;
  width: 5px;
  border-radius: none;
  background: #808080;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #999;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  box-shadow:none;
  background: #999999;
  border-radius: none;
  border: none;
}
input[type=range]::-moz-range-thumb {
  box-shadow: none;
  border: none;
  height: 16px;
  width: 5px;
  border-radius: none;
  background: #999;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #999;
  border: none;
  border-radius: 2.6px;
  box-shadow: none;
}
input[type=range]::-ms-fill-upper {
  background: #999;
  border: none;
  border-radius: 2.6px;
  box-shadow: none;
}
input[type=range]::-ms-thumb {
  box-shadow: none;
  border: 1px solid #000000;
  height: 16px;
  width: 5px;
  border-radius: 0;
  background: #999;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #999;
}
input[type=range]:focus::-ms-fill-upper {
  background: #999;
}
input[type=search]{
 background: url("../images/table-buttons-gray.png?v=1.0") no-repeat center left;
 background-position: 7px -103px;
 padding-left: 40px;
 background-size: 27px;
}

.input-wrapper{
  width: 100%;
  margin-bottom: 10px;
  display: block;
}
.input-wrapper label{ display: block; }
.input-wrapper label.inline { display: inline-block; }

.input-wrapper.search-container{
  overflow: hidden;
}
.input-wrapper.search-container button{
  float: right;
  border: 1px solid #005684;
  padding: 8px 30px;
}
.input-wrapper.search-container span{
  display: block;
  overflow: hidden;
}
.input-wrapper.search-container ul{ margin: 0; }
.hidden{ display: none; }

#publications .col-xs-4{
  padding-right: 5px;
}

/* LOADING SCREEN */
#loading-overlay{
  display: none;
  background: url(../images/processing.gif) no-repeat;
  background-position: center;
  background-color: rgba(255,255,255,0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 99;
   cursor: wait !important;
  user-select: none;
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
}


/* MESSAGE BOX */
.message-box{
  width: 375px;
  color: white;
  position: absolute;
  right: -400px;
  top: 20px;
  text-align: left;
  z-index: 9999;
  box-shadow: 0 0 10px 3px rgba(0,0,0,0.2);
  transition: right .3s ease;
  -webkit-transition: right .5s ease;
  cursor: pointer;
}
.message-box:after{
  content: "X";
  position: absolute;
  top: 5px;
  right: 10px;
  color: white;
  font-weight: bold;
  font-size: 17px;
}
.message-box.show{
  right: 20px;
}
.message-box p{
  margin: 0;
}


.message-box .success,
.message-box .failed,
.message-box .warning,
.message-box .info{
  padding: 15px 20px 15px 48px;
}

.message-box .success:before,
.message-box .failed:before,
.message-box .warning:before,
.message-box .info:before{
  font-family: "FontAwesome";
  font-size: 25px;
  color: white;
  left: 15px;
  top: 17px;
  position: absolute;
}
.message-box .success{  background: #95c795; }
.message-box .failed{  background: #ca5e59; }
.message-box .warning{ background: #f9a938; }
.message-box .info{    background: #59abc3; }

.message-box .success:before{  content:"\f00c"; }
.message-box .failed:before{  content:"\f00d"; }
.message-box .warning:before{ content:"\f071"; }
.message-box .info:before{    content:"\f05a"; }

.application-wrapper{
  display: flex;
  display: -ms-flexbox;
  flex-direction: row;
  -ms-flex-direction: row;
  align-items: stretch;
  -ms-align-items: stretch;
  -webkit-align-items: stretch; /* Safari */
  -ms-flex-direction: row; /* Safari */
  -webkit-flex-direction: row; /* Safari */
  display: -webkit-flex; /* Safari */
  height: 100vh;
  overflow: hidden;
}

.application-wrapper > div{
  height: 100vh;
  flex-shrink: 1
}

.menubar{
  min-width: 240px;
  max-width: 240px;
  background: #005684;
  color: white;
  padding: 20px 20px 10px;
  position: relative;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  align-items: stretch;
  -ms-align-items: stretch;
  -webkit-align-items: stretch; /* Safari */
  -ms-flex-direction: column; /* Safari */
  -webkit-flex-direction: column; /* Safari */
  display: -webkit-flex; /* Safari */
}
.infobar{
  width: 30%;
  min-width: 300px;
  max-width: 350px;
  height: 100vh;
  padding: 20px 20px 0 20px;
  background: #FFFFFF;
  margin: 0 10px;
  position: relative;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  align-items: stretch;
  -ms-align-items: stretch;
  -webkit-align-items: stretch; /* Safari */
  -webkit-flex-direction: column; /* Safari */
  display: -webkit-flex; /* Safari */
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
}

.infobar.collapsed{
  width: 40px;
  min-width: auto;
  max-width: auto;
  overflow: hidden;
}
.infobar.collapsed .infobar-content{ opacity: 0; }

.infobar-content{ flex-grow: 1; }
.infobar .content-container{
  margin: 10px -20px 0 0;
  padding-right: 20px;
  overflow: auto;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  width: calc( 100% + 20px);
}
.infobar .content-container > *:first-child {
  margin-top: 0;
}

.output{
  background: #E5E5E5;
  flex-shrink: 0;
  flex-grow:1;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  align-items: stretch;
  -ms-align-items: stretch;
  -webkit-align-items: stretch; /* Safari */
  -ms-flex-direction: column; /* Safari */
  -webkit-flex-direction: column; /* Safari */
  display: -webkit-flex; /* Safari */
  margin-right: 5px;
}

.output-top, .output-bottom{
  min-height: 20%;
  height: 40%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.output-bottom{
  background-color: white;
  padding: 20px;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
.output-bottom.collapsed{
  height: 55px;
}
.output-bottom.isDragging{
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
}
.output-bottom.collapsed .table-header{ margin-top: -15px; }
.output-bottom.collapsed .table-header h4{ margin-top: 14px; }
.output-bottom.collapsed .table-func{ margin-top: 45px; }

.output-top{
  flex-grow: 1;
  text-align: center;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
 /* align-items: stretch;
  -webkit-align-items: stretch;*/
  background-color: #F2F2F2;
  margin-bottom: 10px;
}
.map-area{
  overflow: auto;
  z-index: 1;
  height: 100%;
}

/*#enclosing-svg-div{
  height: 1px;
  vertical-align: top;
  transform-origin: top center;
  -moz-transform-origin: top center;
  -webkit-transform-origin: top center;
  position: relative;
  border: 1px dashed #ccc;
  display: inline-block;
}
*/
#enclosing-svg-div{
  display: inline-block;
  vertical-align: top;
  transform-origin: top center;
  -moz-transform-origin: top center;
  -webkit-transform-origin: top center;
}
#enclosing-svg-div svg {
  border: 1px dashed #ccc;
}



/*Let the user know you can move labels arond - ONLY BINDED TO LOCATOR AND CHOROPLETH MAPS*/
/* Maybe we can do this using Regex - .map3-[a-z]*-?drag */
.map3-drag, .map3-ace-drag, .map3-choropleth-drag, .map3-icons-drag, .map3-notes-drag, .map3-radius-drag, .map3-shape-drag {
  cursor: move;
}
.zoom-controls{
  width: 25px;
  height: 75px;
  position: absolute;
  top: 5px;
  right: 5px;
  box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
  -webkit-box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
  z-index: 9;
}
.zoom-controls div{
  width: inherit;
  height: 25px;
  display: block;
  cursor: pointer;
  background-color: white;
  color: #777;
}
.zoom-controls div i{
  line-height: 25px;
  font-size: 12px;
}

.map-controls{
  height: 30px;
  width: 100%;
  text-align: right;
  border-top: 1px solid #E5E5E5;
  font-size: 11px;
  line-height: 30px;
  z-index: 9;
  position: relative;
  background-color: #F2F2F2;
}
.map-controls input, .map-controls select{
  height: 30px;
  width: auto;
  display: inline-block;
  background: transparent;
  border: 0;
  outline: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  font-size: inherit;
  vertical-align: top;
  cursor: pointer;
}
.map-controls input:not(:disabled):hover, .map-controls select:hover{ background-color: #E9E9E9; }
.map-controls input{ min-width: 10px; width: 20px;}
.map-controls input[type=range]{ width: 130px; }
.map-controls .overlap input[type=range]{ width: 80px; }
.map-controls select{ margin-right: -10px; -webkit-appearance: none;-moz-appearance: none; appearance: none; }
.map-controls select option:disabled{font-style: italic;}

.map-controls .zoom, .map-controls .overlap, .map-controls .size, .map-controls .dimensions, .map-controls .query-dimensions {
  width: auto;
  display: inline-block;
  vertical-align: top;
}

#media-queries {
  -webkit-appearance: menulist-button;
  appearance: menulist-button;
  margin-right: 0px;
}

.map-controls .devider{
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 20px;
  height: 30px;
}
.map-controls .devider:before{
  content: "|";
  color: #999;
  left: 50%;
  position: absolute;
}
.map-controls .redefine-area,
.map-controls .aspect-ratio,
.map-controls .fit-to-map,
.map-controls .zoom-to-fit{
  width: 30px;
  height: 30px;
  display: inline-block;
  background: url(../images/map-controls.png?v=1.0);
  background-position: 0 -240px;
  vertical-align: top;
  cursor: pointer;
}
.map-controls .percentage{ width: 30px; }
.map-controls .aspect-ratio{ background-position: 0 -270px; margin-left: 5px; }
.map-controls .fit-to-map{ background-position: 0 -300px;}
.map-controls .aspect-ratio.active,
.map-controls .zoom-to-fit.active,
.map-controls .fit-to-map.active,
.map-controls .aspect-ratio:hover,
.map-controls .fit-to-map:hover,
.map-controls .zoom-to-fit:hover{ background-color: #d8d8d8; }

.map-controls .zoom .devider{ margin-left: -15px; }
.map-controls .redefine-area{
  background: none;
  width: auto;
}
.map-controls .fit-to-map.disabled{
  opacity: 0.4;
  cursor: default;
}
.map-controls .fit-to-map.disabled:hover{
  background-color: transparent;
}

.map-controls .redefine-area .redefine, .map-controls .redefine-area .save, .map-controls .redefine-area .cancel{
  display: inline-block;
  font-family: "FontAwesome";
  color: white;
  width: 30px;
  text-align: center;
  color: white;
  height: 30px;
  vertical-align: top;
}
.map-controls .redefine-area .redefine{ display: inline-block; background: url(../images/map-controls.png?v=1.0); background-position: 0 -60px;}
.map-controls .redefine-area .redefine:hover{ background-color: #E9E9E9; }
.map-controls .redefine-area .redefine.disabled{ cursor: default; display: none; }
.map-controls .redefine-area .redefine.disabled:hover{ background-color: transparent; }
.map-controls .redefine-area .cancel{ background: #c1272d; }
.map-controls .redefine-area .cancel:before{ content: "\f00d"; }
.map-controls .redefine-area .save{ background: #22b573; }
.map-controls .redefine-area .save:before{ content: "\f00c"; }
.map-controls input:disabled{
  font-style: italic;
  color: #aaa;
}

.logo{
  width: 100%;
  padding: 30px;
  background: url(../images/logo-maps4news.png?v=1.0) no-repeat center;
  margin: 25px 0;
  display: block;
}

.menubar .menu{
  flex-grow: 1;
}

.picker{
  z-index:10000 !important;
}

.menu-bottom-func{
  height: 40px;
  margin: 0 -20px;
  /*display: block;*/
  line-height: 6.5;
  display: flex;
}
.menu-bottom-func > div{
  border-right: 1px solid rgba(255,255,255,0.3);
  width: 50%;
  float: left;
  height: inherit;
  background: url(../images/menu-bottom-icons.png?v=1.0) no-repeat center;
  cursor: pointer;
  text-align: center;
  font-size: 11px;
}
.menu-bottom-func .logout{  background-position: 50% 3px; }
.menu-bottom-func .need-help{  background-position: 50% -27px; }
.menu-bottom-func .back-to-dashboard{ background-position: 50% -57px; }

.menu-bottom-func a{
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.component-name{
  font-weight: 300;
  font-size: 12px;
  display: block;
  margin-top: 20px;
}
.component-name:first-letter{ text-transform: uppercase; }
.component-name + h2, .content h2:first-child{ margin-top: 0; }



.list-grid{
  margin: 10px -20px 0;
  overflow: auto;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  width: calc( 100% + 40px);
}
.list-grid.one-col{
  max-width: 480px;
}
.list-grid .list-item{
  margin: 0;
  padding: 10px 20px;
  position: relative;
  height: inherit;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  cursor: pointer;
  background-color: white;
  border-bottom: 5px solid #f6f6f6;
}
.list-grid .list-item.active{
  background-image: url( ../images/selected-item.png?v=1.0);
  background-position: top 10px right 10px;
  background-repeat: no-repeat;
}
.list-grid .list-item.active, .list-grid .list-item:hover{
  background-color: #f0f0f0;
}
.list-grid .list-item-image{
  width: 65%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.list-grid .list-item-image img{
  width: 100%;
  object-fit: cover;
}
.list-grid .list-item-content {
  padding-right: 0;
  overflow: hidden;
}
.list-grid .list-item-content h3{
  margin: 10px 0 15px;
  word-break: break-word;
  font-size: 22px;
}
.list-grid .list-item-content .text {
  overflow: hidden;
  height: 57px;
}

.list-grid .list-item-content .text:before {
  content:"";
  float: left;
  width: 5px; height: 57px; }

  .list-grid .list-item-content .text > *:first-child {
    float: right;
    width: 100%;
    margin-left: -5px; }

    .list-grid .list-item-content .text .readmore {
      content: "[+]";
      box-sizing: content-box;
      -webkit-box-sizing: content-box;
      -moz-box-sizing: content-box;
      float: right;
      position: relative;
      cursor: pointer;
      bottom: 20px;
      left: 100%;
      width: 3em;
      margin-left: -3em;
      padding-right: 5px;
      text-align: right;
      color: #ff8f00;
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white), color-stop(50%, white));
      background: -moz-linear-gradient(to right, rgba(255, 255, 255, 0), white 50%, white);
      background: -o-linear-gradient(to right, rgba(255, 255, 255, 0), white 50%, white);
      background: -ms-linear-gradient(to right, rgba(255, 255, 255, 0), white 50%, white);
      background: linear-gradient(to right, rgba(255, 255, 255, 0), white 50%, white);
    }
    .list-grid .list-item.active .list-item-content .text .readmore,
    .list-grid .list-item:hover .list-item-content .text .readmore {
      background: -webkit-gradient(linear, left top, right top, from(rgba(240,240,240, 0)), to(#f0f0f0), color-stop(50%, #f0f0f0));
      background: -moz-linear-gradient(to right, rgba(240,240,240, 0), #f0f0f0 50%, #f0f0f0);
      background: -o-linear-gradient(to right, rgba(240,240,240, 0), #f0f0f0 50%, #f0f0f0);
      background: -ms-linear-gradient(to right, rgba(240,240,240, 0), #f0f0f0 50%, #f0f0f0);
      background: linear-gradient(to right, rgba(240,240,240, 0), #f0f0f0 50%, #f0f0f0);
    }

    .list-grid .list-item-content .text.more {
      overflow-y: auto;
      height: auto;
    }
    .list-grid .list-item-content .text.more:before {
      height: auto !important;
    }




    @media (max-width: 1024px){
      .list-grid .list-item-image{
        padding-bottom: 65%;
      }
      .list-grid .list-item-content {
        padding-left: 0;
      }
    }


    /* NEW LAYER GRID */
    .new-layer-grid{
      width: 100%;
      display: flex;
      display: -ms-flexbox;
      flex-wrap: wrap;
      -ms-flex-wrap: wrap;
    }
    .new-layer-grid .layer{
      flex-grow: 0;
      flex-shrink: 1;
      flex-basis: 20%;
      cursor: pointer;
      margin-bottom: 10px;
    }
    .new-layer-grid .layer .image{
      height: 90px;
      background: url(../images/layer-icons.png?v=1.0) no-repeat center center;
    }

    .new-layer-grid .layer .image.choropleth{ background-position: 10px 0; }
    .new-layer-grid .layer .image.shapes{     background-position: 10px -90px; }
    .new-layer-grid .layer .image.icons{      background-position: 10px -180px; }
    .new-layer-grid .layer .image.radius{     background-position: 10px -270px; }
    .new-layer-grid .layer .image.ace{        background-position: 10px -360px; }

    .new-layer-grid .layer:hover .image.choropleth, .new-layer-grid .layer.active .image.choropleth{ background-position: -80px 0; }
    .new-layer-grid .layer:hover .image.shapes, .new-layer-grid .layer.active .image.shapes{     background-position: -80px -90px; }
    .new-layer-grid .layer:hover .image.icons, .new-layer-grid .layer.active .image.icons{      background-position: -80px -180px; }
    .new-layer-grid .layer:hover .image.radius, .new-layer-grid .layer.active .image.radius{     background-position: -80px -270px; }
    .new-layer-grid .layer:hover .image.ace, .new-layer-grid .layer.active .image.ace{        background-position: -80px -360px; }

    .new-layer-grid .layer p{
      width: 100%;
      text-align: center;
      font-weight: 300;
    }




    /* POLYGON GRID + BUTTONS */
    .polygon-grid{
      display: flex;
      display: -ms-flexbox;
      flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      margin: 0 -5px;
      width: calc(100% + 10px);
    }
    .polygon-grid.loading{ opacity: .5; cursor: default; }
    .polygon-grid .grid-item{
      flex-grow: 0;
      flex-shrink: 1;
      flex-basis: calc((100% / 3) - 10px);
      margin: 5px;
      cursor: pointer;
    }
    .polygon-grid .grid-item .image{
      border: 1px solid #e5e5e5;
      background: no-repeat center;
      background-size: 75%;
      padding-bottom: 65%;
    }
    .polygon-grid .grid-item .image.locator-image{
      padding-bottom: 0;
      text-align: center;
    }
    .polygon-grid .grid-item .image svg{
      fill: gray;
    }
    .polygon-grid .grid-item .image p{
      display: none;
    }

    .polygon-grid .grid-item.active{
      background-image: url(../images/selected-item.png?v=1.0);
      background-repeat: no-repeat;
      background-position: top 5px right 5px;
    }
    .polygon-grid .grid-item.active,
    .polygon-grid .grid-item:hover{
      background-color: #f5f5f5;
    }
    .polygon-grid  + .tooltip.top > .tooltip-arrow {background-color: yellow;}

    .polygon-grid.list .grid-item{
      flex-grow: 0;
      flex-shrink: 1;
      flex-basis: 100%;
      margin: 0 5px;
    }
    .polygon-grid.list .grid-item.active{
      background-position: top 2px right 13px;
    }
    .polygon-grid.list .grid-item:first-child{ margin-top: 5px; }
    .polygon-grid.list .grid-item .image{
      background-image: none !important;
      height: auto;
      padding: 0;
    }
    .polygon-grid.list .grid-item .image p{
      display: block;
      margin: 0;
      padding: 3px 10px;
    }
    .polygon-grid.list .grid-item .image.locator-image{
      text-align: left;
    }
    .polygon-grid.list .grid-item .image svg{
      display: none;
    }
    .selected-polygon {
      font-style: normal;
      margin-top: 20px;
    }
    .selected-polygon span{
      color: #005684;
      display: block;
      cursor: pointer;
      font-style: italic;
    }



    ul.grid-options{
      text-align: right;
      /*padding-bottom: 10px;*/
      width: 100%;
      border-bottom: 1px solid #ccc;
    }
    ul.grid-options li{
      display: inline-block;
      height: 30px;
      width: 30px;
      background-color: #e5e5e5;
      border: 1px solid #e5e5e5;
      border-bottom: 0px;
    }
    ul.grid-options li.active{ background-color: white; }
    ul.grid-options li span{
      background-image: url(../images/grid-options.png?v=1.0);
      background-repeat: no-repeat;
      background-size: cover;
      display: inline-block;
      float: right;
      width: 30px;
      height: inherit;
    }
    ul.grid-options li.search, ul.grid-options li.remove{ width: auto; }
    ul.grid-options li.date-wrapper{ width: 152px; }
    ul.grid-options li.grid span{ background-position: 0 0; }
    ul.grid-options li.list span{ background-position: -30px 0; }
    ul.grid-options li.search span.search{ background-position: -60px 0; background-color: white; }
    ul.grid-options li.remove span{ background-position: -120px 0; background-color: white; }
    ul.grid-options li.date-wrapper span{ background-position: -90px 0;  }
    ul.grid-options input, ul.grid-options select{
      float: right;
      width: 200px;
      padding: 0 7px;
      margin: 0;
      height: 28px;
      font-weight: 300;
      transition: all .5s ease;
      -moz-transition: all .5s ease;
      -webkit-transition: all .5s ease;
      border: none;
      color: #4d4d4d;
    }
    ul.grid-options form{ height: 28px; display: inline-block; float: left; background: inherit;}
    ul.grid-options select{
      width: 120px;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background-image: linear-gradient(45deg, transparent 50%, #aaa 50%), linear-gradient(135deg, #aaa 50%, transparent 50%);
      background-position: calc(100% - 15px) calc(1em + 0px), calc(100% - 10px) calc(1em + 0px);
      background-repeat: no-repeat;
      background-size: 5px 5px, 5px 5px;
    }

    ul.grid-options .selected-maps{
      float: left;
      width: auto;
      min-width: 160px;
      text-align: left;
      line-height: 29px;
    }
    ul.grid-options .selected-maps span{ float: left; color: #4d4d4d;}
    ul.grid-options .selected-maps span.count-selected{ width: auto; padding-right: 5px; background-image: none; line-height: 28px; }
    ul.grid-options .selected-maps span.remove{ background-position: -120px 0; }
    ul.grid-options .selected-maps span.delete{ background-position: -150px 0;background-color: #969696; float: right; margin-top: -1px; }

    ul.grid-options.choropleth {
      margin-top: -35px;
    }

    .color-wrapper{
      display: flex;
      display: -ms-flexbox;
      flex-direction: row;
      -ms-flex-direction: row;
    }
    .color{
      height: 30px;
      flex-grow: 1;
      margin: 3px;
    }

    .bg-white{     background-color: #FFFFFF; }
    .bg-lightgray{ background-color: #E5E5E5; }
    .bg-darkgray{  background-color: #4D4D4D; }
    .bg-black{     background-color: #000000; }
    .bg-lightblue{ background-color: #95E0F9; }
    .bg-darkblue{  background-color: #005684; }


    .modal{
      background: rgba(0,0,0,0.6);
      z-index: 9999;  /* to stay on top of the interactive tour*/
    }
    .modal-dialog{
      border-left: 10px solid #005684;
      padding: 20px;
      background: white;
      z-index: 9999;
    }
    .modal-content{
      border: 0;
      -webkit-box-shadow: none;
      box-shadow: none;
    }

    .modal-header{
      border: none;
      padding: 0;
    }
    .modal-header .close:before{
      display: none;
    }
    .modal-body{
      padding: 0 0 20px;
      max-height: 70vh;
      overflow-y: auto;
      overflow-x: hidden;
    }
    .modal-footer{
      padding: 20px 0 0;
    }

    #interactive-modal .modal-dialog{
      width: 800px;
    }
    /* TABS INFOBAR */
    #html-output .nav-tabs,
    .infobar .nav-tabs{
      border-bottom: 0;
      color: #4D4D4D;
      display: -webkit-inline-flex; /* Safari */
      display: flex;
      display: -ms-flexbox;
      flex-direction: row;
      -ms-flex-direction: row;
      -ms-align-items: stretch;
      align-items: stretch;
      align-content: stretch;
      -ms-align-content: stretch;
      width: calc(100% + 40px);
      margin: 0 -20px 0;
    }
    #html-output .nav-tabs li,
    .infobar .nav-tabs li{
      border: 0;
      border-radius: 0;
      align-self: center;
      text-align: center;
      flex-grow: 1;
      outline: 0;
      width: 100%;
    }
    #html-output .nav-tabs li a,
    .infobar .nav-tabs li a{
      padding: 10px 0;
      line-height: 1;
      border: 0;
      border-radius: 0;
      color: #333;
      margin:0;
      outline: 0;
      font-weight: 300;
      border-bottom: 2px solid white;
    }
    #html-output .nav-tabs li a:hover, .nav-tabs li:hover,
    .infobar .nav-tabs li a:hover, .nav-tabs li:hover{
      border: 0;
    }
    #html-output .nav>li>a:focus, #html-output .nav>li>a:hover,
    .infobar.nav>li>a:focus, .infobar .nav>li>a:hover,
    #html-output .nav-tabs li.active a, .nav-tabs li.active:hover a, .nav-tabs li.active a:focus,
    .infobar .nav-tabs li.active a, .nav-tabs li.active:hover a, .nav-tabs li.active a:focus{
      border: 0;
      background-color: inherit;
      border-bottom: 2px solid #e5e5e5;
    }
    #html-output .nav-tabs li:focus, .nav-tabs li a:focus,
    .infobar .nav-tabs li:focus, .nav-tabs li a:focus{
      border: 0;
      outline: 0;
    }
    #html-output .nav-tabs li.disabled a,
    .infobar .nav-tabs li.disabled a{
      font-style: italic;
      color: #ccc;
    }
    /*#html-output .tab-pane,*/
    .infobar .tab-pane{
      padding: 20px 0;
    }
    .tab-content{
      width: 100%;
      height: 100%;
    }
    .tab-content > .tab-pane{ height: 100%; }
    .infobar-content.tab-content > .tab-pane.active{
     padding: 0;
     display: flex;
     display: -ms-flexbox;
     flex-direction: column;
     -ms-flex-direction: column;
     align-items: flex-start;
     -ms-align-items: flex-start;
   }
   .output-bottom .tab-content{ height: 100%; }
   .output-bottom .devider{
    position: absolute;
    right: -2px;
    top: 0;
    width: 2px;
    background: #cccccc;
    height: 100%;
    cursor: w-resize;
    display: none;
   }
   .output-bottom .multiple .devider{
    display: block;
   }

   .icon-settings{ width: 100%; }

    #searchbox-suggestion, #searchbox-result, .locator-suggestionsm .suggestions{ display: block; font-style: italic; font-size: 13px; }
   .locator-suggestions ul, .suggestions ul{ margin: 0 0 10px 0; background-color: white; list-style: none; }
   #searchbox-suggestion li, #searchbox-result li, .locator-suggestions li, .suggestions li{ font-size: 13px; padding: 3px 10px; border: 1px solid #e5e5e5; border-top: 0; cursor: pointer; background-color: white; }
   #searchbox-suggestion li small, #searchbox-result li small, .locator-suggestions li small .suggestions li small{ color: #AAA; font-size: 11px; display: block; }
   #searchbox-suggestion li:first-child, #searchbox-result li:first-child, .locator-suggestions li:first-child, .suggestions li:first-child{ margin-top: -10px; }
   #searchbox-suggestion li:last-child, #searchbox-result li:last-child, .locator-suggestions li:last-child, .suggestions li:last-child{ border-bottom: 1px solid #e5e5e5; }
   #searchbox-suggestion li:hover, #searchbox-result li:hover, .locator-suggestions li:hover, .suggestions li:hover, #searchbox-suggestion li.selected, #searchbox-result li.selected, .locator-suggestions li.selected, .suggestions li.selected{ background: #f6f6f6; }


   .locator-area .tooltips{  max-width: 170px; }
   .locator-area-options .loading-text{  display: none; }
   .locator-area-options.loading .loading-text{  display: block; }
   .locator-area-options.loading .select-polygon{  display: none; }
   .locator-area-options .select-polygon h3,
   .locator-area-options .select-polygon .grid-options{
    display: inline-block;
    vertical-align: middle;
    margin: 0;
  }
  .locator-area-options .select-polygon .grid-options{ float: right; }

  #html-output{ font-size: 12px; }
  #html-output .nav-tabs{ width: 100%; margin: 0; }
  #html-output .nav-tabs li a{ border-color: #e5e5e5; }
  #html-output .nav-tabs li.active a{ border-color: #d4d4d4; }


  /* SEARCH SUGGESTIONS MAPONLINE */
  #clearMarkerButton{ display: none; font-size: 12px; color: #555; margin-top: -20px; float: right;}
  #searchbox-suggestion, #searchbox-result{
    margin: -10px 0 20px 0;
    padding: 0;
    list-style: none;
  }
  #searchbox-suggestion li, #searchbox-result li{
    border: 1px solid #e5e5e5;
    border-top: 0;
    padding: 2px 5px;
    font-size: 12px;
    font-style: italic;
    cursor: pointer;
  }
  #searchbox-suggestion li:hover,
  #searchbox-result li:hover{ background-color: #f6f6f6; }
  /* SEARCH SUGGESTIONS MAPONLINE */


  /* CHOROPLETH COLOR SWATCHES */
  .choropleth-color-settings{
    width: 100%;
  }
  .choropleth-total-colors{
    width: 60px;
  }

  .color-type-wrapper{
    margin-bottom: 15px;
  }
  .color-type-wrapper:after{
    display: table;
    clear: both;
    content: "";
  }
  .color-type-wrapper label{
    display: inline-block;
  }
  .color-type-wrapper span{
    width: 190px;
    float: right;
  }


  .swatches-wrapper{
    height: 175px;
    width: auto;
    overflow: auto;
  }
  .palette {
    cursor: pointer;
    display: inline-block;
    height: 22px;
    vertical-align: middle;
    margin: 0;
    background: #fff;
    position: relative;
    border: 1px solid white;
  }
  .palette.active{
    border: 1px solid black;
  }
  .palette:before{
    content: "";
    background: url('../images/radio-buttons.png?v=1.0') no-repeat center;
    background-position: 0 0px;
    width: 15px;
    height: 15px;
    position: relative;
    display: inline-block;
    margin-right: 10px;
    margin-left: 5px;
    margin-top: 2px;
  }
  .palette.active:before{
    background-position: 0 -15px;
  }
  .palette:after {
    display: table;
    clear: both;
    content: "";
  }

  .swatch {
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 20px;
    border-bottom: 1px solid white;
  }

  .swatch-manual-picker {
    display: inline-block;
    margin-right: 5px;
  }

  .manual-palette-picker {
    margin: 5px;
    display: inline-flex;
    border: 1px solid black;
  }

  .manual-palette-picker:before {
    content: none;
  }

  .line {
    margin-bottom: 5px;
    cursor: pointer;
  }
  /*.swatch:last-child{ border: none; }*/
  /* COLOR SWATCHES */

  /* STYLES DATA EXCEL */
  .polygon-data-title{
    width: calc(100% - 30px);
  }
  .polgon-data-title small{ font-size: 12px; }
  .choropleth.multiple{
    display: inline-block;
    width: 100%;
  }
  .choropleth.multiple.eq-0{
    max-width: 25%;
    padding: 0 20px 0 0;
    border-right: 1px solid #e5e5e5;
    position: relative;
  }
  .choropleth.multiple.eq-1{
    max-width: 75%;
    padding: 0 0 0 20px;
    border: none;
  }
  .table-wrapper{
    overflow: hidden;
    width: 100%;
    display: block;
    position: relative;
    height: calc(100% - 50px);
  }

  .table-wrapper table{ font-size: 12px; }
  .table-wrapper table td.htDimmed{ color: #888; }
  .table-wrapper table td.match{ background: #eaffea; }
  .table-wrapper table td.no-match{ background: #ffecec; }
  .table-wrapper table td.selected{ background: #e9eff7; }
  .table-wrapper table td.current{ background: #e9eff7; }
  .table-wrapper table td.searchResult{ background: #ededed; }
  .table-wrapper table td.placeholder{ color: #BBB; font-style: italic; }
  .table-wrapper table td[data-type=color],
  .table-wrapper table td[data-type=icon]{cursor: pointer; }
  .table-wrapper table td svg{
    max-width: 20px;
    max-height: 20px;
    margin: 3px 0 -3px;
  }
  .table-wrapper table td span.color-preview{
    width: 21px;
    height: 21px;
    display: block;
    float: left;
    margin-right: 5px;
    pointer-events: none;
    -webkit-pointer-events: none;
    -ms-pointer-events: none;
  }

  .table-header{
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    margin: 20px 0 5px;
    min-height: 36px;
  }
  .table-header-title{
    flex-grow: 1;
    overflow: hidden;
  }
  .table-header .table-header-title h4{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
  }
  .table-header .table-header-title .feedback{
    color: #005684;
    font-size: 12px;
  }
  .table-header .table-header-title .feedback.errors{
    color: #e34728;
  }

  .table-header ul.table-func{
    height: 30px;
  }
  .table-header ul.table-func li{
    display: inline-block;
    width: auto;
    height: 30px;
    position: relative;
  }
  .table-header ul.table-func li span{
    display: inline-block;
    height: 30px;
    width: 30px;
    /*color: white;*/
    background: #E5E5E5 url("/images/table-buttons2.png?v=1.0") no-repeat center;
    cursor: pointer;
    vertical-align: top;
  }
  .table-header ul.table-func li span.download{ background-position: 0 0; }
  .table-header ul.table-func li span.add-icon{ background-position: 0 -30px; background-color: #005684;}
  .table-header ul.table-func li span.add-row { background-position: 0 -60px; background-color: #005684;}
  .table-header ul.table-func li span.add-column{ background-position: 0 -90px; background-color: #005684;}
  .table-header ul.table-func li span.search{ background-position: 0 -120px; }
  .table-header ul.table-func li span.add-polygon{ background-position: 0 -150px; background-color: #005684;}
  .table-header ul.table-func li span.clear{ background-position: 0 -180px;  }
  /*.table-header ul.table-func li span.add-row{ background-image: none;  background-color: #005684; width: auto; line-height: 30px; padding: 0 10px; }*/
  /*.table-header ul.table-func li span.add-polygon{ background-image: none; background-color: #005684;  width: auto; line-height: 30px; padding: 0 10px;  }*/
  .table-header ul.table-func li input{
    width: 200px;
    background: transparent;
    display: inline-block;
    float: left;
    margin: 0;
    padding: 0 7px;
    height: inherit;
    line-height: 30px;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
  }
  .table-header ul.table-func li.closed input{ width: 0; padding: 0; }

  .table-header ul.table-func li span.prev, .table-header ul.table-func li span.next{
    width: 14px;
    height: 14px;
    background-image: none;
    text-align: center;
    line-height: 14px;
    position: absolute;
    right: 32px;
  }
  .table-header ul.table-func li span.next{ top: 16px; }
  .table-header ul.table-func li span.result{
    position: absolute;
    right: 40px;
    line-height: 30px;
    background: none;
  }
  .table-header ul.table-func li span.result span{ background: none; display: inline;}



  /* FILE UPLOAD */
  .drop-file {
    width: 100%;
    height: 100px;
    text-align: center;
    display: table;
    background-color: #f0f0f0;
    border: 2px dashed #e6e6e6;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    color: #aaa;
    cursor: pointer;
  }
  .drop-file div {
    display: table-cell;
    vertical-align: middle;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
  }

  .drop-file:hover,
  .drop-file.active {
    border: 2px solid #e6e6e6;
    background-color: #e6e6e6;
  }

  /* HTML CSS EDITOR */
  #tooltip{
    display:none;
  }

  .tooltip-container {
    width: auto;
    height: 100%;
    position: relative;
    /*display: none; */
  }
  .tooltip-container.hidden{
    display: none;
  }
  .tooltip-container #code_editors {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
  .tooltip-container #code_editors .code_box {
    height: 100%;
    width: 50%;
    position: relative;
    float: left;
  }
  .tooltip-container #code_editors .code_box h3 {
    font-size: 13px;
    height: 30px;
    padding: 5px 10px;
    margin: 0;
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-right: 0px;
    z-index: 10;
  }
  .tooltip-container #code_editors .code_box h3::after {
    content: "Reset";
    width: auto;
    float: right;
    color: #888;
    font-weight: normal;
    font-size: 11px;
    cursor: pointer;
  }
  .tooltip-container #code_editors .code_box textarea {
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    bottom: 0;
    resize: none;
    border: 1px solid #ccc;
    padding: 10px;
    font-family: monospace;
  }
  .tooltip-container #code_editors .code_box textarea:focus {
    outline: none;
    background: #EFEFEF;
  }
  .tooltip-container #code_editors .code_box .CodeMirror.cm-s-default {
    border: 1px solid #ccc;
    border-right: 0px;
    border-top: 0px;
    position: absolute;
    top: 30px;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(100% - 40px);
    font-size: 11px;
  }
  .CodeMirror-sizer{ margin-left: 31px !important; }

  .empty-button,
  .toggle-button {
    width: auto;
    padding: 2px 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    background: #eee;
    color:#333;
    height: auto;
    min-width: auto;
    line-height: auto;
    font-weight: normal;
    font-size: 12px;
    text-transform: none;
    line-height: inherit;
  }
  .toggle-button.disabled{
    cursor: default;
    background-color: #ddd;
  }
  .empty-button{
    background: transparent;
    border: none;
  }
  .toggle-button.tt-tags {
    margin: 0 3px 3px 0;
    float: left;
    z-index: 9999;
  }

  .icon-container .icon{
    width: 40px;
    height: 40px;
    float: left;
    background: #efefef;
    border: 1px solid white;
    z-index: 2;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
  }
  .icon-container .icon.textbox,
  .icon-container .icon.arc{
    width: 85px;
    height: 85px;
  }
  .icon-container .icon svg{
    height: 35px;
    width: 35px;
  }
  .icon-container .icon.textbox svg,
  .icon-container .icon.arc svg{
    width: 75px;
    height: 75px;
  }
  .icon-container .icon.active{
    background: #d4d4d4;
    border: 1px solid #005684;
  }
  .icon-container .icon.drag,
  .icon-container .icon.ui-draggable-dragging{
    background-color: transparent;
    border: none;
  }

  /* COLORPICKER */
/*  #colorpicker-wrapper {
    width: 240px;
    height: 180px;
    display: none;
    background: white;
    z-index: 999;
    position: absolute;
    top: 20px;
    right: 20px;
  }*/

  #colorpicker-wrapper input {
    height: 50px;
    width: 100%;
    text-align: center;
    outline: none;
    border: 0px;
    box-shadow: 0px;
  }

  /* COLORPICKER + ICONPICKER + OPACITY SLIDER*/
  #colorpicker-wrapper,
  #opacityslider-wrapper,
  #iconpicker-wrapper {
    width: 240px;
    height: 180px;
    display: none;
    background: white;
    z-index: 999;
    position: absolute;
    top: 20px;
    right: 20px;
    border: 1px solid #e5e5e5;
  }

  #colorpicker-wrapper input {
    height: 50px;
    width: 100%;
    text-align: center;
    outline: none;
    border: 0px;
    box-shadow: 0px;
  }

  #iconpicker-wrapper{
    padding: 10px;
    overflow: auto;
    width: 264px;
  }

  #iconpicker-wrapper .icon{
    width: 20px;
    height: 20px;
    float: left;
    margin: 0 5px 5px 0;
  }
  #iconpicker-wrapper .icon svg{
    width: 23px;
    height: 23px;
    background: #efefef;
  }

  #opacityslider-wrapper{
    height: auto;
    padding: 10px 0;
    border-left: 5px solid #005684;
  }
  #opacityslider-wrapper input{
    margin: 0;
    background: #f6f6f6;
  }

  /* TABLESUGESTIONS */
  #table-suggestions{
    min-width: 100px;
    max-width: 200px;
    height: auto;
    display: none;
    background: white;
    z-index: 999;
    position: absolute;
    top: 20px;
    right: 20px;
    border-left: 4px solid #005684;
  }
  #table-suggestions ul{
    margin: 0;
    padding: 0;
    list-style: none;
  }
  #table-suggestions li{
    padding: 5px;
    border-bottom: 1px solid #f6f6f6;
  }
  #table-suggestions li:hover{
    background: #f6f6f6;
  }
  .addressCell{
    width: inherit;
    height: 18px !important;
    margin: 2px 0 0 2px;
    padding: 0 0 0 2px;
    background-color: #e9eff7;
  }

  .handsontable .htCheckboxRendererInput{
    width: 25px;
    height: 23px;
    margin:0 !important;
    padding:0;
    float: left;
    left: auto;
    display: block;
    position: relative;
    cursor: pointer;
    background-image: url("../images/visible.png?v=1.0");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
  }

  .ghost-labels-button {
      width: 20px;
      height: 28px;
      float: left;
      background-image: url(../images/visible.png?v=1.0);
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center;
  }

  .handsontable .htCheckboxRendererInput:checked, .ghost-labels-button.show {
    background-image: url("../images/visible2.png?v=1.0");
  }
  .handsontable.ht__selection--columns thead th.ht__highlight, .handsontable.ht__selection--rows tbody th.ht__highlight,
  .handsontable tbody th.ht__highlight, .handsontable thead th.ht__highlight{
    background: #dcdcdc;
  }

  .dragbar{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px;
    cursor: n-resize;
    background-color:#cccccc;
  }

  div[class^=comp-]{
    position: relative;
    height: 100%;
  }



  /* TOOLTIPS */
  .tooltip .tooltip-inner {
    background-color: #8e8e8e;
    color: white;
    font-size: 11px;
    padding: 8px;
    text-align: left !important;
  }
  .tooltip .tooltip-inner ul{ list-style: none; margin: 0; padding: 0; }
  .tooltip .tooltip-inner li{ list-style: none; padding: 0; }
  .tooltip.right .tooltip-inner li:before{ content:"-"; padding-right: 5px;  }
  .tooltip.right .tooltip-arrow {
    border-right-color: #8e8e8e;
  }
  .tooltip.right .tooltip-inner{
    min-width: 150px;
  }
  .tooltip.top .tooltip-arrow {
    border-top-color: #8e8e8e;
  }

  .tooltip.in{
    opacity: 1;
  }

  /* PROGRESS ACE */
.progress-container{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
}
.progress-container > span{
  align-self: center;
}
.progress-container #progress{
  margin: 0;
}

  #processing{
    background: url(../images/processing.gif);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    display: none;
    pointer-events: none;
    -webkit-pointer-events: none;
    -ms-webkit-pointer-events: none;
    z-index: 999999;
  }




/* TABS MENU */
.menu{
  margin: 0 -20px;
  padding: 0 20px;
  overflow: auto;
  overflow-x: hidden;
}
.menu .nav-tabs{
  border: 0;
}
.menu .nav-tabs li.nav-header{
  font-style: italic;
  text-transform: uppercase;
  margin: 25px 0 5px;
  cursor: default;
}
.menu .nav-tabs li.devider{
  height: 0;
  margin: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.menu .nav-tabs li{
  display: block;
  font-size: 12px;
  width: 100%;
  border: 0;
  background: transparent;
}
.menu .nav-tabs li:before{
  content: "";
  background: url(../images/menu-iconset.png?v=1.0) no-repeat top;
  background-position: 0px 0px;
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
}

 .menu .nav-tabs li:hover:before,
 .menu .nav-tabs li.active:before{
  background: url(../images/menu-iconset-active.png?v=1.0) no-repeat top;
}
 .menu .nav-tabs li.disabled:before{
  background: url(../images/menu-iconset-disabled.png?v=1.0) no-repeat top;
}

 .menu .nav-tabs li.nav-header:before,
 .menu .nav-tabs li.devider:before{
  display: none;
}
.menu .nav-tabs li a,
.menu .nav-tabs li a:focus{
  padding: 0;
  padding-left: 25px;
  color: white;
  display: block;
  line-height: 25px;
  border: 0;
  background-color: transparent;
}

.menu .nav-tabs li.active  a,
.menu .nav-tabs li.active:hover a,
.menu .nav-tabs li:hover a{
  color: #95E0F9;
  border: 0;
}
.menu .nav-tabs > li.active:before,
.menu .nav-tabs > li:hover:before{
  color: #95E0F9;
}
.menu .nav-tabs li.disabled a,
.menu .nav-tabs li.disabled:before{
  color: #aaa;
}

.menu .nav-tabs li.generating:before{
  content: "\f110";
  font-family: "FontAwesome";
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  display: inline-block;
  background: none;
  -webkit-animation: 'fa-spin' 2s infinite linear;
  animation: 'fa-spin' 2s infinite linear;
}

.menu .nav-tabs li.new:before{            background-position: 0 0; }
.menu .nav-tabs li.open-project:before{   background-position: -20px 0; }
.menu .nav-tabs li.account:before{        background-position: -40px 0; }
.menu .nav-tabs li.help:before{           background-position: -60px 0; }
.menu .nav-tabs li.release-notes:before{  background-position: -80px 0; }
.menu .nav-tabs li.mapstyles:before{      background-position: -100px 0; }
.menu .nav-tabs li.dashboard:before{      background-position: -120px 0; }
.menu .nav-tabs li.chat:before{           background-position: -140px 0; }
.menu .nav-tabs li.logout:before{         background-position: -160px 0; }

.menu .nav-tabs li.choropleth:before{     background-position: -60px -20px; }
.menu .nav-tabs li.shape:before{          background-position: -140px -20px; }
.menu .nav-tabs li.define:before{         background-position: 0 -20px; }
.menu .nav-tabs li.import:before{         background-position: -20px -20px; }
.menu .nav-tabs li.match:before{          background-position: -40px -20px; }
.menu .nav-tabs li.labels:before{         background-position: -80px -20px; }
.menu .nav-tabs li.tooltips:before{       background-position: -100px -20px; }
.menu .nav-tabs li.layers:before{         background-position: -120px -20px; }
.menu .nav-tabs li.locations:before,
.menu .nav-tabs li.output:before,
.menu .nav-tabs li.features:before{       background-position: -160px -20px; }

.menu .nav-tabs li.mapstyles.ace:before{  background-position: -160px -40px; }
.menu .nav-tabs li.datalayers:before{     background-position: -20px -40px; }
.menu .nav-tabs li.adornments:before{     background-position: -40px -40px; }
.menu .nav-tabs li.save:before{           background-position: -60px -40px; }
.menu .nav-tabs li.publish:before{        background-position: -80px -40px; }
/* TABS MENU */


/* DASHBOARD STYLES */
.dashboard-content{
  width: 100%;
}
.dashboard-content .loading-overlay{
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(255,255,255,0.3);
  cursor: wait;
  display: none;
}
.dashboard-content .loading-overlay.visible{ display: block; }
.dashboard-content .content-block{
  background-color: white;
  margin: 0 10px;
  padding: 20px;
  float: left;
  height: 100vh;
  overflow: auto;
  display: inline-block;
}
.dashboard-content .content-block:nth-child(n + 2){
  margin-left: 0;
}
.dashboard-content .content-block.one-col{
  width: calc( 100% / 3 - 15px);
}
.dashboard-content .content-block.two-col{
  width: calc( 100% / 1.5 - 20px);
}
.dashboard-content .content-block.three-col{
  width: calc( 100%  - 10px);
}
.dashboard-content .content-block.gray{
  background-color: transparent;
}

.dashboard-content .my-maps .content-block{
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.dashboard-content .my-maps .content-block:first-child{
  overflow: initial;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  padding: 0;
}
.dashboard-content .my-maps .create-new{
  padding: 20px;
  /*flex-shrink: 0;*/
  position: relative;
}
.dashboard-content .my-maps .create-new h2{
  position: relative;
}
.dashboard-content .my-maps .create-new h2:after{
  content: "\f0d7";
  font-family: "FontAwesome";
  display: inline-block;
  font-size: 20px;
  padding-left: 10px;
  cursor: pointer;
}
.dashboard-content .my-maps .create-new h2.up:after{
  content: "\f0d8";

}
.dashboard-content .my-maps .create-new li.disabled{
  cursor: default;
}
.dashboard-content .my-maps .create-new li.disabled .project-image,
.dashboard-content .my-maps .create-new li.disabled .project-title{
  opacity: 0.3;
}

.dashboard-content .my-maps .create-new .project-container {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
}

.dashboard-content .my-maps .create-new .project-container li.project {
  float: none;
  display: inline-block;
}

.dashboard-content .header{
  display: block;
  padding: 10px 0 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #E5E5E5;
}

.dashboard-content .recent-maps h2{
  display: inline-block;
  vertical-align: middle;
}
.dashboard-content .my-maps .recent-maps{
  flex-grow: 1;
  background-color: #f6f6f6;
  padding: 20px;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  height: 60vh;
  position: relative;
}

.recent-maps .tab-content {
  overflow: auto;
}

.dashboard-content .my-maps .recent-maps .nav-tabs{
  display: inline-block;
  vertical-align: middle;
  border-bottom: transparent;
  margin-bottom: -2px;
}
.dashboard-content .my-maps .recent-maps .nav-tabs li{
  border: 0;
}
.dashboard-content .my-maps .recent-maps .nav-tabs li:hover,
.dashboard-content .my-maps .recent-maps .nav-tabs li a{
  color: inherit;
  border: 0;
}

.dashboard-content .my-maps .recent-maps .nav-tabs li.active a,
.dashboard-content .my-maps .recent-maps .nav-tabs li.active:hover a{
 background: #005684;
 color: white;
}
.dashboard-content .my-maps .recent-maps .nav-tabs li.disabled a{
  color: #bbb;
}
/*.dashboard-content .my-maps .recent-maps .tab-content{
  height: 100vh;
  overflow-y: auto;
}*/

/* RECENT MAPS - FILTER BUTTONS */
.dashboard-content .recent-maps .filter{
  margin: 0 5px 0 0;
  padding: 0;
  position: relative;
  display: inline-block;
  float: right;
}
.dashboard-content .recent-maps .filter > *{ float: right; margin-left: 3px; }
.dashboard-content .recent-maps .filter .filter-btn{
  width: 30px;
  height: 30px;
  display: inline-block;
  /*background-color: white;*/
  padding: 5px;
  /*cursor: pointer;*/
  /*border: 1px solid #d4d4d4;*/
}

.dashboard-content .recent-maps .filter .filter-options li{
  width: 30px;
  height: 30px;
  padding: 5px;
  display: inline-block;
  background: #969696;
  cursor: pointer;
  margin: 0;
}
.dashboard-content .recent-maps .filter .filter-btn:after,
.dashboard-content .recent-maps .filter .filter-options li:after{
  content:"";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/dashboard-maptype-icons.png?v=1.2);
  background-position: center;
}
.dashboard-content .recent-maps .filter .filter-options li.active{ background-color:#005684 ;}
.dashboard-content .recent-maps .filter .filter-options li.annotation-map:after{ background-position: 20px 0; }
.dashboard-content .recent-maps .filter .filter-options li.locator-map:after{ background-position: 20px -20px; }
.dashboard-content .recent-maps .filter .filter-options li.choropleth-map:after{ background-position: 20px -40px; }
.dashboard-content .recent-maps .filter .filter-options li.dynamic-map:after{ background-position: 20px -60px; }
.dashboard-content .recent-maps .filter .filter-btn:after{ background-position: -1px -80px; }
.dashboard-content .recent-maps .filter .filter-options li.mapcreator\.io:after{ background-position: 20px -100px; }
/*.dashboard-content .recent-maps .filter .filter-btn.active{ background-color:#005684; border-color: #005684}*/
/*.dashboard-content .recent-maps .filter .filter-btn.active:after{ background-position: 19px -80px;}*/
/* END RECENT MAPS FILTER BUTTONS */

/* RECENT MAPS SEARCH BOX */
.dashboard-content .recent-maps .searchbox{
  display: inline-block;
  vertical-align: middle;
  height: 30px;
  width: 20%;
  background-color: white;
  position: relative;
  float: right;
}
.dashboard-content .recent-maps .searchbox:after{
  background-image: url("../images/grid-options.png");
  background-position: -60px 0;
  width: 30px;
  height: 30px;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
}
.dashboard-content .recent-maps .searchbox input{
  padding: 5px 10px 5px 35px;
  margin: 0;
  background-color: transparent;
}
.dashboard-content .recent-maps .delete-maps{
  display: inline-block;
  vertical-align: middle;
  /*margin: 0 0 0 3.5%;*/
  padding-top: 5px;
  padding-bottom: 5px;
}
.dashboard-content .recent-maps .delete-maps button{
  padding: 5px 10px;
}
/* RECENT MAPS SEARCH BOX */



/* RECENT MAPS - MAPS */
.dashboard-content .recent-maps .project-container{
  overflow-y: auto;
}

.dashboard-content .project-container.empty-state {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    background: #f6f6f6 url('../images/logo-gray.png') no-repeat center;
    background-position: center calc(50% - 90px);
    background-size: 200px;

}
.dashboard-content .project-container li.project{
  width: calc(88% / 6);
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0 2% 2% 0;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  float: left;
}
.dashboard-content .project-container.empty-state li.project{
  border: 0;
  margin: 0;
  width: 20%;
  min-width: 300px;
  cursor: default;
}
.dashboard-content .project-container.empty-state li.project .project-description{
  background-color: transparent;
  text-align: center;
}
@media (min-width: 1281px) and (max-width: 1600px){
 .dashboard-content .project-container li.project{
   width: calc(90% / 5);
 }
 .dashboard-content .recent-maps.project-container li.project:nth-child(5n){
  margin-right:0;
 }
}
@media (min-width: 1024px) and (max-width: 1280px){
  .dashboard-content .project-container li.project{
   width: calc(92% / 4);
 }
 .dashboard-content .recent-maps.project-container li.project:nth-child(4n){
  margin-right:0;
 }
}
@media (min-width: 768px) and (max-width: 1023px){
  .dashboard-content .project-container li.project{
   width: calc(94% / 3);
 }
 .dashboard-content .recent-maps.project-container li.project:nth-child(3n){
  margin-right:0;
 }
}
@media (max-width: 767px){
  .dashboard-content .project-container li.project{
   width: calc(96% / 2);
 }
 .dashboard-content .recent-maps.project-container li.project:nth-child(2n){
  margin-right:0;
 }
}
.dashboard-content .project-container li.project.active label,
.dashboard-content .project-container li.project:hover label{
  opacity: 1;
}
.dashboard-content .project-container li.project label{
  float: left;
  opacity: 0;
}

.dashboard-content .project-container li.project .project-image{
  width: 100%;
  padding-bottom: 65%;
  background-position: center;
  background-size: cover;
  background-color: white;
  background-repeat: no-repeat;
}
.dashboard-content .project-container li.project .project-image:after{
  content:'';
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent #005684 transparent transparent;
}
.dashboard-content .project-container li.project .project-type{
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background-image: url(../images/dashboard-maptype-icons.png?v=1.2);
  z-index: 2;
}
.dashboard-content .project-container li.project.annotation-map .project-type{ background-position: 20px 0; }
.dashboard-content .project-container li.project.locator-map .project-type{ background-position: 20px -20px; }
.dashboard-content .project-container li.project.choropleth-map .project-type{ background-position: 20px -40px; }
.dashboard-content .project-container li.project.dynamic-map .project-type{ background-position: 20px -60px; }
.dashboard-content .project-container li.project.mapcreator\.io .project-type{ background-position: 20px -100px; }

.dashboard-content .project-container li.project .project-description{
  padding: 10px 10px 5px;
  background-color: white;
  border-top: 1px solid #e5e5e5;
}
.dashboard-content .project-container li.project.active .project-description{
  background-color: #005684;
  color: white;
  position: relative;
}
.dashboard-content .project-container li.project .project-title{
  font-size: 13px;
  font-weight: 400;
  padding-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dashboard-content .project-container li.project .project-date{
  font-size: 11px;
  font-weight: 300;
  padding-bottom: 5px;
}

.dashboard-content .project-container li.project span.info-btn,
.dashboard-content .project-container li.project span.hamburger-btn{
  width: 38px;
  height: 38px;
  display: block;
  float: right;
  margin: -10px -10px 0 0;
  background: url(../images/info.png?v=1.0) no-repeat top;
  transition: background-color .3s ease;
  cursor: pointer;
}
.dashboard-content .project-container li.project span.hamburger-btn{
  background: url(../images/hamburger-icon.png?v=1.0) no-repeat top;
  background-position: 0 0;
}
.dashboard-content .project-container li.project span.info-btn:hover,
.dashboard-content .project-container li.project span.hamburger-btn:hover,
.dashboard-content .project-container li.project span.hamburger-btn.active{
  background-color: #f6f6f6;
}
.dashboard-content .project-container li.project.active span.hamburger-btn,
.dashboard-content .project-container li.project.active span.hamburger-btn:hover{
  background-position: 0 -38px;
}
.dashboard-content .project-container li.project.active span.hamburger-btn:hover,
.dashboard-content .project-container li.project.active span.hamburger-btn.active{
  background-color: rgba(255,255,255,0.1);
}
.dashboard-content .project-container li.project.no-search-results,
.dashboard-content .project-container li.project.no-maps-created{
  cursor: default;
}
.dashboard-content .project-container li.project.no-search-results .project-image,
.dashboard-content .project-container li.project.no-maps-created .project-image{
  background-image: url(../images/logo-gray.png);
  background-size: 50%;
}

.dashboard-content .project-container li.project.no-search-results .project-image:after,
.dashboard-content .project-container li.project.no-maps-created .project-image:after{
  display: none;
}

.dashboard-content .delete-maps button.cancel{ background-color: transparent; }
/* RECENT MAPS - MAPS */

/* DASHBOARD HAMBURGER MENU */
.hamburger-menu{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  border: 1px solid #e5e5e5;
  z-index: 1;
}
.hamburger-menu ul{
  margin: 0;
  padding: 0;
}
.hamburger-menu li{
  display:block;
  float: left;
  width: 100%;
  height: 38px;
  line-height: 38px;
  background-color: white;
  border-bottom: 1px solid lightgray;
  cursor: pointer;
  font-size: 12px;
}
.hamburger-menu li.disabled{
  color: #ccc;
  cursor: default;
  font-style: italic;
}
.hamburger-menu li.disabled i {opacity: 0.3;}
.hamburger-menu li:hover{
  background-color: #f6f6f6;
}
.hamburger-menu li i{
  float: left;
  height: 30px;
  width: 30px;
  background: url(../images/dashboard-project-buttons.png?v=1.0) no-repeat center;
  margin: 4px;
}
.hamburger-menu ul li.edit i{        background-position: 0 -30px; }
.hamburger-menu ul li.download i{    background-position: -60px -30px; }
.hamburger-menu ul li.share i{       background-position: -90px -30px; }
.hamburger-menu ul li.clone i{       background-position: -30px -30px; }
.hamburger-menu ul li.delete i{      background-position: -120px -30px; }
.hamburger-menu ul li.information i{ background-position: -150px -30px; }


/* RECENT MAPS - PREVIEW CONTAINER */
/*.preview-container.new{background-color: white; }
.preview-container{ background-color: #f6f6f6; }

.preview-container.one-col{
  width: calc( 100% / 3 );
  margin-right: 0;
}*/
/*.project-preview-container{
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}*/
/*.preview-container .close{
  font-weight: 700;
  font-size: 30px;
  color: lightgray;
  float: none;
  margin-bottom: 10px;
  display: inline-block;
  opacity: 1;
}*/
/*.project-preview-container .preview iframe,*/
.project-preview-container .preview .image{
  width: 100%;
  padding-bottom: 65%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
  background-size: cover;
  border: 1px solid #CCCCCC;
}
.project-preview-container h4{
  margin-top: 20px;
}
.project-preview-container .functions{
  height: 30px;
  margin-top: 10px;
}
.project-preview-container .functions span{
  height: 30px;
  width: 30px;
  background: url(../images/dashboard-project-buttons.png?v=1.0) no-repeat center;
  background-color: #969696;
  display: block;
  display: inline-block;
  cursor: pointer;
}
.project-preview-container .functions span.new{ background-position: 0 0; }
.project-preview-container .functions span.edit{ background-position: 0 0; }
.project-preview-container .functions span.copy{ background-position: -30px 0; }
.project-preview-container .functions span.download{ background-position: -60px 0; }
.project-preview-container .functions span.share{ background-position: -90px 0; }
.project-preview-container .functions span.delete{ background-position: -120px 0; }
/* RECENT MAPS - PREVIEW CONTAINER */



/* DASHBOARD MAPSTYLE PREVIEWS */
.mapstyle-preview-container{}
.mapstyle-preview-container .mapstyle{
  width: 100%;
  display: block;
  margin-bottom: 20px;
  border: 1px solid #969696;
}
.mapstyle-preview-container .mapstyle .image{
  padding-bottom: 65%;
  width: 100%;
  height: auto;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.mapstyle-preview-container .mapstyle .content{
  background-color: #969696;
  color: white;
  padding: 7px 10px
}
.mapstyle-preview-container .mapstyle .content .name,
.mapstyle-preview-container .mapstyle .content .download{
  font-weight: 300;
}
.mapstyle-preview-container .mapstyle .content .download{
  float: right;
  color: white;
}
/* DASHBOARD MAPSTYLE PREVIEWS */






/* LOGIN STYLES */
body.login{
  background: url(../images/background-login.jpg?v=1.0) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}
.form{
  position: relative;
  width: 300px;
  padding: 20px 0;
  margin: 100px auto 0;
  background-color: white;
  border-left: 5px solid #005684;
  max-height: 75%;
  overflow-y: auto;
}
.form .logo{
 background: url(../images/logo-blue.png?v=1.0) no-repeat center;
}
.form form{
  padding: 0 20px;
}
.form form button{
  width: 100%;
}
.form .devider{
  width: calc(100% - 40px);
  height: 1px;
  background-size: cover;
  background: url(../images/devider.png?v=1.0) no-repeat center;
  margin: 20px;
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill{
  background-color: #F6F6F6 !important;
}
.form-functions{
  margin: auto;
  width: 300px;
  position: relative;
  padding: 5px;
  display: block;
  text-align: center;
}
.form-functions a{
  color: white;
  font-size: 12px;
  padding: 0 10px;
  text-decoration: none;
}

#google-login {
  cursor: pointer;
  background: #f6f6f6 url("../images/google-signin-btn.png?v=1.0");
  background-repeat: no-repeat;
  height: 33px;
  margin: 0 20px;
  border: 1px solid #E5E5E5;
}

#google-login span {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 33px;
  color: #0874ac;
  padding: 0 0 0 45px;
}

.CodeMirror-gutters{
  width: 30px !important;
}


/* New styles base maptype */
.mapsize * { display: inline-block; }
.mapsize label{ display: block; }
.mapsize input{ width: 60px; }
.mapsize select{ width: auto; }
.scale{position: relative;}
.scale:after{
  content:"1 : ";
  position: absolute;
  top: 32px;
  left: 10px;
}
.scale input{
  padding-left: 27px;
  background-color: transparent;
}
.panel{
  width: 100%;
}

.output-settings.no-visible{
  opacity: 0;
}

.zoom-level {
  display: flex;
  display: -ms-flexbox;
  -webkit-display: flex;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
}
.zoom-level .min-zoom,
.zoom-level .max-zoom {
  width: 48%;
}

/* COLORPICKER  old version*/
.sp-replacer {
  width: 20px;
  height: 20px;
  overflow: hidden;
  float: none;
  border: 1px solid lightgray;
}
.sp-replacer .sp-preview {
  margin-right: 0px;
  border: none;
  width: 20px;
  height: 20px;
}
.sp-container {
  width: 185px;
}
.sp-container .sp-picker-container {
  border: 1px solid white;
}
.sp-container .sp-picker-container,
.sp-container .sp-palette-container {
  float: none;
  width: auto;
  border-right: 1px solid white;
}
.sp-container .sp-picker-container .sp-palette-row-selection,
.sp-container .sp-palette-container .sp-palette-row-selection {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #cccccc;
}
.sp-container .sp-picker-container .sp-input-container,
.sp-container .sp-palette-container .sp-input-container {
  float: none;
}
.sp-container .sp-picker-container .sp-input-container .sp-input,
.sp-container .sp-palette-container .sp-input-container .sp-input {
  background: none repeat scroll 0 0 transparent;
  border: 1px solid #cccccc;
  border-radius: 0px;
  color: #222;
  font-size: 12px !important;
  margin: 0;
  padding: 4px 5px;
  width: 100%;
}
/* COLORPICKER  old version*/



.panel-group .panel{ margin-bottom: 20px; }
.panel {
  border-radius: 0px;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.panel a {  color: inherit; text-decoration: none;}
.panel .panel-heading {
  background: white;
  border: none;
  padding: 0 0 15px 0;
  border-radius: 0px !important;
}
.panel .panel-heading a:after{
  content: "\f0d7";
  font-family: "FontAwesome";
  color: #777;
  font-size: 14px;
}


.panel .panel-heading a.collapsed:after {
  content: "\f0d9";
  font-family: "FontAwesome";
  color: #777;
  font-size: 14px;
}
.panel-default>.panel-heading+.panel-collapse>.panel-body{ border: 0 !important; }
.panel .panel-body {
  padding: 0;
  max-height: 250px;
  overflow: auto;
  border: 0;
}

#previewContainer{
  position: absolute; right: 5px; bottom:5px; width: 204px; height: 104px; background-color:white; z-index: 9999;  border: 2px solid #065076;
}

#mapArea {
  position: relative;
  height: 100vh;
  width: auto;
  float: none;
  overflow: hidden;
  z-index: 1;
}
#mapArea #mapContainer {
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
}


.job-preview-wrapper {
  width: 100%;
  display: inline-block;
  position: relative;
}
.job-preview-wrapper::after {
  padding-top: 56.25%;
  display: block;
  content: '';
}
.job-preview-wrapper #job_preview {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border: 1px solid #969696;
  background: no-repeat scroll center center #f0f0f0;
}
.job-preview-wrapper #job_preview .overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: url("/images/icons/lightboxIcon.svg") no-repeat center;
}
#cancelProcess {
  cursor: pointer;
  float: right;
  color: #005684;
  margin-top: -15px;
}
.job-overview-title {
  font-weight: bold;
}
.job-overview-description {
  margin-top: 5px;
}
.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE/Edge */
  user-select: none;
  /* non-prefixed version, currently
not supported by any browser */ }

.loading {
  cursor: progress; }

  #prefill {
    display: none; }

    #copy-output,
    #copy-sharing {
      width: 15px;
      height: 15px;
      float: right;
      margin: 3px 3px 0 0;
      display: block;
      background: url("/images/icons/copy-to-clipboard.png?v=1.0");
      background-size: cover;
      border: 1px solid #cacaca;
      cursor: pointer; }

      #copy-sharing {
        margin-top: -20px; }

        #generateMap_btn[disabled][disabled] {
          background-color: #cacaca;
          color: black !important;
          cursor: default; }

          #html-output-content:before, #html-output-content:after {
            content: ' ';
            clear: both;
            display: block; }
            #html-output-content .tab-pane {
              float: left;
              padding: 0;
              max-width: 100%;
              word-break: break-word;
              margin-bottom: 20px;
            }


            [contentEditable=true]:empty:not(:focus):before {
              content: attr(data-ph); }

              #StatusText button{ float: right; }


              /* FEATURES */
              #listElement{
                padding: 20px 0 20px 20px;
              }
              #createElement .tab-pane{ padding: 20px 0 20px 20px }
              #annotationLayer{ margin: -10px 0 0; width: calc(100% + 20px) }
              #annotationLayer li{
                background-color: #f6f6f6;
                margin: 0 1px;
                padding: 0;
                border-top: 2px solid #f6f6f6;
              }
              #annotationLayer li.active{ background-color: white; ; }
              #annotationLayer a{
                border: 0;
                width: inherit;
                height: 30px;
                display: inline-block;
                background: url(/images/icons/annotationlist.png?v=1.0) no-repeat center;
              }
              #annotationLayer .polyline {
                background-position: 0 0;
              }
              #annotationLayer .polygon {
                background-position: -78px 0;
              }
              #annotationLayer .route {
                background-position: -156px 0;
              }
              #annotationLayer .svg {
                background-position: -234px 0;
              }
              #annotationLayer .import {
                background-position: -312px 0;
              }
              #createElement .tab-content button{   float: right; margin-left: 4px;}
              #editElement{ padding-left: 20px; }
              #editElement .scale-size{
                width: 40px;
                display: inline-block;
                vertical-align: top;
              }
              #editElement .scale-size input{
                padding: 0px;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
              }

              .info {
                min-height: 40px;
                width: 100% !important;
                padding: 8px 0 0 30px;
                background: url(/images/icons/InfoMarker.png?v=1.0) no-repeat left;
              }

              ul.sortable{
                list-style: none;
                margin-left: 0;
                padding-left: 0;
              }
              ul.sortable li{
                margin: 0 0 2px;
                background: #f6f6f6;
                border: 1px solid #f6f6f6;
                height: 30px;
                display: table;
                table-layout: fixed;
                width: 100%;
              }
              ul.sortable li > div{
              }
              ul.sortable li ul{
                display: block;
              }
              ul.sortable li li { padding-left: 17px; }
              ul.sortable li.disabled{ color: #555; }
              ul.sortable li.selectedElement{ background: #e5e5e5; }
              ul.sortable li input{
                min-height: 20px !important;
                margin: 0 0 0 5px;
                padding: 0;
                font-size: 11px;
                border: none;
              }
              ul.sortable li input:focus{ outline: 0px; }
              ul.sortable li span{
                display: inline-block;
                background: url(/images/icons/spr_feature_icons3.png?v=1.0) no-repeat left;
                width: 20px;
                margin-top: 5px;
                height: 25px;
                cursor: pointer;
                vertical-align: middle;
              }
              ul.sortable li span.edit{ background-position: -200px 0; }
              ul.sortable li span.no-edit { background-position: -300px 0; }
              ul.sortable li span.eyegrey{ background-position: -220px 0; }
              ul.sortable li span.eyeblue{ background-position: -240px 0; }
              ul.sortable li span.deleteItem { background-position: -260px 0; }
              ul.sortable li span.copy{ background-position: -340px 0; }
              ul.sortable li span.moveItem{ background-position: -285px 0; cursor: n-resize; width: 10px; }
              ul.sortable li span.unknown{ background-position: 0 0; }
              ul.sortable li span.marker{ background-position: -20px 0; }
              ul.sortable li span.polyline{ background-position: -38px 0; }
              ul.sortable li span.polygon{ background-position: -60px 0; }
              ul.sortable li span.route{background-position: -80px 0; }
              ul.sortable li span.circle{ background-position: -100px 0; }
              ul.sortable li span.arc{ background-position: -120px 0; }
              ul.sortable li span.textbox{ background-position: -140px 0; }
              ul.sortable li span.GPX{ background-position: -160px 0; }
              ul.sortable li span.shapes{ background-position: -320px 0; }
              ul.sortable li span.group.open{ background-position: -360px 0; }
              ul.sortable li span.group{ background-position: -380px 0; }

              ul.sortable li span.edit,
              ul.sortable li span.no-edit,
              ul.sortable li span.eyegrey,
              ul.sortable li span.eyeblue,
              ul.sortable li span.deleteItem,
              ul.sortable li span.copy,
              ul.sortable li span.moveItem{ float: right; }
              ul.sortable li span.input-container{  width: calc(100% - 120px); overflow: hidden; background: none; }
              ul.sortable li span.input-container input { background: transparent; }


              /* IMPORT MODAL */
              a.knop{
                background: #f6f6f6;
                padding: 5px 15px;
                color: inherit;
                float: right;
              }



  /* IMPORT MODAL */
  #import-modal input[type="radio"] {
    width: auto;
  }

  #import-modal #drop {
    border: 1px solid #e5e5e5;
    background: #f6f6f6;
    padding: 50px 25px;
    text-align: center;
    cursor: pointer;
  }
  #import-modal #drop h4{
    margin: 0;
    padding: 0;
  }
  .import.icon-container {
    display: none;
    position: absolute;
    width: 404px;
    height: auto;
    max-height: 50vh;
    overflow-y: auto;
    background-color: white;
    border: 2px solid lightgray;
    box-shadow: 0 0 8px 0px lightgrey;
    z-index: 3;
    padding: 10px;
    border-left-color: #005684;
    border-left-width: 5px;
    z-index: 9999999999;
  }

  #import-modal .modal-body #columns > div > div {
    height: 26px;
  }

  #import-modal .modal-body .custom-select select {
    font-size: 11px;
    padding: 3px;
    background-position: calc(100% - 10px) calc(.5em + 0px), calc(100% -5px) calc(.5em + 0px)
  }
  #import-modal .modal-body .sp-replacer, #import-modal .modal-body .sp-preview {
    width: 23px;
    height: 23px;
    float: right;
  }
    #import-modal .modal-body .import-nav-buttons button {
    margin-top: 20px;
    float: right;
  }
    #import-modal .modal-body .choose-icon{
    margin: 20px auto;
    display: block;
  }
  #import-modal .modal-body .chosen-icon{
    width: auto;
    height: 40px;
    display: block;
    text-align: center;
  }
  #import-modal .modal-body .chosen-icon svg{
    width: 100%;
    height: inherit;
  }

/*  #import-modal .modal-body .chosen-icon svg text,
  #import-modal .modal-body .icon svg text {
    fill: gray;
  }*/

  .import-info {
    width: 24px;
    height: 24px;
    display: inline-block;
    background: url("/images/icons/additionalInfo.png?v=1.0") no-repeat center;
    cursor: pointer;
    text-indent: -99999px;
  }

  #svg-responsive-info {
    width: 18px;
    height: 18px;
  }

  #locator-map .import-info {
    height: 20px;
  }
  #import-modal .icon{
    width: 39px;
    height: 39px;
  }
  /* IMPORT MODAL */


  #measureSVGDocument {
    position: absolute;
    left: -999999px;
    visibility: hidden;
  }

  .popupPreview {
    position: absolute;
    left: -99999px;
    z-index: 1001;
  }
  .mc-popover {
    width: 200px;
    text-align: left;
    color: black;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);

  }
  .mc-popover::after, .mc-popover::before {
    content: "";
    display: block;
    height: 22px;
    left: 50%;
    margin-left: -12px;
    position: absolute;
    transform: rotate(45deg);
    width: 22px;
  }
  .mc-popover::after {
    background: none repeat scroll 0 0 #ddd;
    border: 1px solid #ddd;
    bottom: -13px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    margin-left: -11px;
    z-index: 5;
  }
  .mc-popover::before {
    background: none repeat scroll 0 0 #fff;
    border: 3px solid white;
    bottom: -11px;
    z-index: 9;
  }
  .mc-popover img{
    max-width: 100%;
  }
  /*.mc-popover .mc-title {
    font-size: 14px;
    line-height: 1.5;
    padding: 10px;
    background: #f0f0f0;
  }*/
/*  .mc-popover .mc-media {
    min-height: 1px;
  }
  .mc-popover .mc-media img,
  .mc-popover .mc-media embed,
  .mc-popover .mc-media object,
  .mc-popover .mc-media video,
  .mc-popover .mc-media iframe {
    max-width: 100%;
  }*/
  .mc-popover .mc-info {
    font-size: 12px;
    line-height: 1.5;
    padding: 10px;
  }
  .mc-popover .mc-info img,
  .mc-popover .mc-info embed,
  .mc-popover .mc-info object,
  .mc-popover .mc-info video,
  .mc-popover .mc-info iframe {
    max-width: 100%;
  }


  /* RELEASE NOTES */
  .release-notes ul{
    margin-left: 20px;
  }
  .release-notes h4{
    margin: 0;
  }
  .release-notes .date{
    color: #BBB;
    font-size: 12px;
    margin-bottom: 10px;
  }
  /* RELEASE NOTES */

  /* PURECHAT STYLES */
  .purechat{
    left: 120px !important;
    bottom: 50px !important;
  }


  /* SHARE MODAL */
  #share-list{}
  #share-list input{
    width: 215px;
    display: inline;
  }
  #share-list span{
    background: #f6f6f6;
    padding: 3px 15px;
    color: #333;
    font-size: 20px;
    border: 1px solid #E5E5E5;
    float: right;
  }
  #share-list ul{
    margin: 0;
    list-style: none;
  }
  #share-list li{}
  #share-list li:before{
    content: "-";
    padding-right: 10px;
  }
  #share-url{}
  #share-url #copy-sharing{
    margin-top: -35px;
  }
  #share-buttons a{ color: inherit; font-size: 20px; }
  #share-modal button { margin-top: 20px; }
  #share-modal button a{ color: white;}
  #import-form{ margin-top: 20px; }
  .modal-title{ line-height: 1; }
  /* SHARE MODAL */


.createdMap-preview {
  display: block;
  padding-bottom: 65%;
  position: relative;
  background: url("/images/no-map-preview.png?v=1.0") no-repeat center;
}



/* EDIT MAP ELEMENTS */



/* ANNOTATION INTERACTIVE ELEMENTS + ADORNMENTS SUMMERNOTE STYLING */
/*.summernote-container .interactive-styles {
  margin: 10px 0 0 0;
  padding: 15px;
  background: #eee;
}*/

.summernote-container a:after { display: none; }
.summernote-container button:hover { background-color: transparent; }
.summernote-container .note-editor{ font-family: "Arial"; }
.summernote-container .note-editor.note-frame { border: 0; margin-top: 20px; }
.summernote-container .note-editor.note-frame .note-editing-area .note-editable { padding: 10px; color: #4d4d4d; }
.summernote-container .note-editor.note-frame .note-editing-area .note-editable a{  color: #FF8F00; }
.summernote-container .popup-container {
  display: table;
  width: 100%;
  margin: 0 0 5px 0;
}
.summernote-container .popup-container .popup-input {
  display: table-cell;
  margin: 0;
}
.summernote-container .popup-container .popup-label {
  width: 110px;
  border: none;
  display: table-cell;
}
.summernote-container .note-editor.note-frame{ border: 0;}
.summernote-container .note-editor .panel-heading{ padding: 0; background: #f0f0f0; }
.summernote-container .note-editor .note-editing-area{ border: 1px solid #f0f0f0; }
.summernote-container .note-editor .btn-default {  background-color: transparent; }
.summernote-container .tab-pane { padding: 0; }
.summernote-container .panel-heading.note-toolbar>.btn-group { margin: 0; margin-right: 10px;  }
.summernote-container .btn-group button { margin: 0; padding: 3px 7px;  }
.summernote-container .btn-group button:not(.disabled):not(.cancel):not(.close):hover{ padding: 3px 7px; background: #e5e5e5; border-color: transparent; box-shadow: none; -webkit-box-shadow: none;}
.summernote-container .note-editor-custom-dropdown{
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 200px;
  /*max-height: 300px;*/
  /*overflow-y: auto;*/
}
.summernote-container .panel-heading.note-toolbar .dropdown-menu{
  max-height: 300px;
  overflow-y: auto;
}
.summernote-container .note-editor-custom-dropdown li{
  padding: 3px 10px;
  font-size: 12px;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
}
.summernote-container .note-editor-custom-dropdown li:hover{ background: #f0f0f0; }
.summernote-container .popup-preview {  margin: 15px 0 0 0; }
/* ANNOTATION INTERACTIVE ELEMENTS + ADORNMENTS SUMMERNOTE STYLING */


.btn-default {
  border-color: transparent;
}


/* EDIT MAP ELEMENTS */
#editElement textarea{ max-width: 100%; }
#editElement .text-edit-header{ background: #f0f0f0; }
#editElement .text-edit-header input{
  width: 25px;
  height: 25px;
  position: absolute;
  left: -9999px;
}
#editElement .text-edit-header select{ width: auto; }
#editElement .text-edit-header input,
#editElement .text-edit-header select{
  background: transparent;
  padding: 2px 10px 2px 5px;
  outline: 0px;
  border: none;
  margin: 0;
  font-size: 11px;
}
#editElement .text-edit-header .custom-dropdown{
  width: auto;
  display: inline-block;
}
#editElement .text-edit-header label{
  height: 25px;
  display: inline-block;
  cursor: pointer;
  background-image: none;
  padding-left: 0;
  margin: 0;
}
#editElement .ffamily-warning{
  font-style: italic;
  font-size: 11px;
}

#editElement #textanchor{ display: inline-block; }
/* EDIT MAP ELEMENTS */

.ui-slider .ui-btn-inner {
    padding: 4px 0 0 0 !important;
}

.ui-slider-popup {
    position: absolute !important;
    width: 64px;
    height: 64px;
    text-align: center;
    font-size: 36px;
    padding-top: 14px;
    z-index: 100;
    opacity: 0.8;
}

.note-editor .modal .checkbox input[type=checkbox],
.note-editor .modal .checkbox-inline input[type=checkbox] {
  margin-left: 0;
  left: 0;
  width: auto;
  margin-top: 2px;
}
