
.btn {
  box-sizing: border-box;
  cursor: pointer;
  margin: 0 2px;
  padding: 10px 40px;
  font-family: PTSansNarrow;
  font-size: 17px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: inline-block;
  color: #fff;
  background-color: #4483c4;
  border: 1px solid #3a79b9;
  outline: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  border-color: #4f92d7;
  background-color: #4f92d7;
}
.btn:disabled,
.btn.disabled {
  border-color: #a3c2e2;
  background-color: #a3c2e2;
}
.btn.small {
  padding: 4px 20px;
  font-size: 15px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.btn.tiny {
  padding: 0 7px;
  font-size: 14px;
  line-height: 21px;
  text-shadow: none;
}
.btn.huge {
  font-size: 26px;
  padding: 20px 40px;
  -moz-box-shadow: 0 0 18px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.3);
}
.btn.outline {
  border-color: #4483c4;
  color: #4483c4;
  background-color: transparent;
  text-shadow: none;
}
.btn.outline:hover {
  background-color: #f5f7f7;
}
.nostyle {
  outline: none;
  background: none;
  border: none;
  cursor: pointer;
}
.btn.red {
  border-color: #a94442;
  background-color: #a94442;
}
.btn.red:hover {
  background-color: #973d3b;
}
.btn.red.disabled,
.btn.red:disabled,
.btn.red.disabled:hover,
.btn.red:disabled:hover {
  border-color: #d69695;
  background-color: #d69695;
}
.btn.orange {
  border-color: #f29715;
  background-color: #f29715;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
}
.btn.orange:hover {
  background-color: #f4a637;
  border-color: #f4a637;
}
.btn.orange.disabled,
.btn.orange:disabled,
.btn.orange.disabled:hover,
.btn.orange:disabled:hover {
  border-color: #f9cd8e;
  background-color: #f9cd8e;
}
@font-face {
  font-family: 'PTSansNarrow';
  src: url('/assets/fonts/pt_sans_narrow/PT_Sans-Narrow-Web-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'OpenSans';
  src: url('/assets/fonts/opensans/OpenSans-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'OpenSans';
  src: url('/assets/fonts/opensans/OpenSans-Semibold.ttf');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Merriweather';
  font-weight: 400;
  src: url('/assets/fonts/merriweather/Merriweather-Regular.ttf');
}
@font-face {
  font-family: 'Merriweather';
  font-weight: bold;
  src: url('/assets/fonts/merriweather/Merriweather-Bold.ttf');
}
@font-face {
  font-family: 'FontAwesome';
  src: url('/assets/fonts/font_awesome/fontawesome-webfont.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Tonicons';
  src: url('/assets/fonts/tonicons/Tonicons.ttf');
}
@font-face {
  font-family: 'Stroke7';
  src: url('/assets/fonts/stroke7/Pe-icon-7-stroke.ttf');
}
.error-msg {
  color: #ef4343;
  font-size: 15px;
  padding: 10px 0 0 0;
}
dl,
dd {
  padding: 0;
  margin: 0;
}
dd.error {
  color: #ef4343;
  font-size: 15px;
  margin-top: -5px;
  padding-bottom: 5px;
}
dd.info {
  color: #9f9f9f;
}
input,
textarea,
select {
  border: 0;
  outline: none;
  font-size: 17px;
}
input,
textarea {
  -webkit-appearance: none;
}
input[type=text],
input[type=password],
textarea,
select {
  box-sizing: border-box;
  color: #525252;
  background-color: #fff;
  font-family: PTSansNarrow;
  letter-spacing: 1px;
  border: 1px solid #e7e7e7;
}
input[type=text]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  border-color: #4f92d7;
  box-shadow: 0 0 4px 0 rgba(79, 146, 215, 0.5);
}
input[type=checkbox],
input[type=radio] {
  display: none;
}
label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 16px;
  display: inline-block;
  width: 20px;
  text-align: left;
}
input[type=checkbox] + label:before {
  content: '\f096';
}
input[type=radio] + label:before {
  content: '\f10c';
}
input[type=checkbox]:checked + label:before {
  content: '\f046';
}
input[type=radio]:checked + label:before {
  content: '\f192';
}
input[type=checkbox][disabled] + label,
input[type=checkbox][disabled] + label:before {
  color: #bec3cc;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  -webkit-text-fill-color: #525252 !important;
}
input.inline {
  border: 1px solid #e5e5e5;
  padding: 4px 25px 4px 6px;
  background-color: #ecf0f1;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
input.inline:focus {
  box-shadow: none;
}
input.inline::-webkit-input-placeholder {
  color: #b9bec7;
}
input.inline:-moz-placeholder {
  color: #b9bec7;
}
input.inline::-moz-placeholder {
  color: #b9bec7;
}
input.inline:-ms-input-placeholder {
  color: #b9bec7;
}
button.search.icon {
  color: #b9bec7;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
}
.flash-message {
  padding: 8px 15px;
  font-size: 16px;
}
.flash-message .icon {
  font-size: 14px;
  padding-right: 3px;
}
.flash-message.success {
  color: #3c763d;
  background-color: #dff0d8;
  border-bottom: 1px solid #d6e9c6;
}
.flash-message.error {
  color: #a94442;
  background-color: #f2dede;
  border-bottom: 1px solid #ebccd1;
}
form.crud dt,
form.crud dd {
  display: inline-block;
}
form.crud dt {
  width: 110px;
  text-align: right;
}
form.crud input[type=text],
form.crud input[type=password],
form.crud textarea,
form.crud select {
  padding: 5px 6px;
  margin: 7px 10px;
  width: 320px;
  font-size: 16px;
}
form.crud textarea {
  display: inline-block;
  vertical-align: middle;
  height: 80px;
}
form.crud button {
  margin: 7px 10px;
  padding: 5px;
  width: 320px;
  box-sizing: border-box;
}
html,
body {
  padding: 0;
  margin: 0;
  font-size: 17px;
  font-family: PTSansNarrow;
  line-height: 150%;
  color: #3f3f3f;
}
body.lang-ja {
  font-size: 16px;
}
h1 {
  letter-spacing: 1px;
  font-size: 23px;
  margin: 0;
  padding: 0 0 10px 0;
}
h2 {
  margin: 0;
  font-size: 19px;
}
.beta {
  position: relative;
  bottom: 2px;
  display: inline-block;
  line-height: 22px;
  padding: 0 6px;
  background-color: #f29715;
  color: #fff;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-size: 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.icon {
  font-family: FontAwesome;
}
.outline-icon {
  font-family: Tonicons;
}
.stroke7,
.icon.stroke7 {
  font-family: Stroke7;
}
.tooltip {
  position: relative;
}
.tooltip .hint,
.tooltip .hint-disabled {
  font-family: PTSansNarrow;
  z-index: 999;
  background-color: #000;
  color: #fff;
  display: none;
  text-align: center;
  position: absolute;
  padding: 10px;
  font-size: 15px;
  line-height: 20px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.tooltip:hover .hint {
  display: inline;
}
.tooltip .hint:after {
  z-index: 998;
  position: absolute;
  content: '';
  left: 66%;
  margin-left: -25%;
  width: 0;
  height: 0;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
}
.tooltip.top .hint:after {
  border-top: solid 10px #000;
}
.tooltip.bottom .hint:after {
  top: -10px;
  border-bottom: solid 10px #000;
}
.panel {
  position: relative;
  background-color: #fff;
  padding: 0;
  margin-bottom: 25px;
  border: 1px solid #d6d7d9;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  max-width: 1024px;
}
.panel h2 {
  background-color: #ecf0f1;
  font-weight: normal;
  font-size: 18px;
  padding: 6px 15px;
  border-bottom: 1px solid #d6d7d9;
}
.panel .inner {
  font-size: 16px;
  line-height: 22px;
  padding: 15px;
}
.panel .inner .description {
  color: #767676;
  padding-right: 20px;
}
.panel.centered .inner {
  text-align: center;
}
.clicktrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
}
.logged-in {
  position: absolute;
  font-size: 15px;
  color: #9ca4b1;
}
.logged-in a {
  color: #4483c4;
  text-decoration: none;
}
.logged-in a:hover {
  text-decoration: underline;
}
.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 210px;
  background-color: #244566;
  font-family: OpenSans;
  box-sizing: border-box;
}
.sidebar-header {
  background-color: #4483c4;
  height: 70px;
  box-sizing: border-box;
  padding: 12px 10px;
  font-family: PTSansNarrow;
  font-size: 15px;
  width: 210px;
}
.sidebar-header a {
  text-decoration: none;
}
.sidebar-header h1,
.sidebar-header h2 {
  margin: 0;
  padding: 0;
  line-height: 125%;
  font-weight: normal;
}
.sidebar-header h1 {
  font-size: 20px;
  color: #fff;
}
.sidebar-header h2 {
  font-size: 15px;
  color: #dbdee2;
}
ul.menu {
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
}
ul.menu li.active {
  background-color: rgba(255, 255, 255, 0.3);
}
ul.menu li:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.15);
}
ul.menu a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  box-sizing: border-box;
  width: 100%;
  display: inline-block;
  padding: 6px 10px;
  text-decoration: none;
}
ul.menu li.active > a,
ul.menu a:hover {
  color: #fff;
}
ul.menu .icon {
  margin: 0 5px;
}
.header-iconbar {
  position: relative;
  background-color: #fff;
  margin-left: 210px;
  height: 70px;
  border-bottom: 1px solid #e5e5e5;
  z-index: 99998;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.header-iconbar ul {
  box-sizing: border-box;
  list-style-type: none;
  margin: 0;
  padding: 0 0 0 30px;
  position: relative;
}
.header-iconbar li {
  position: relative;
  cursor: pointer;
  display: inline-block;
  font-size: 32px;
  margin: 0 50px 0 0;
  padding: 25px 0;
}
.header-iconbar li a {
  color: #9ca4b1;
  text-decoration: none;
}
.header-iconbar li .icon {
  font-family: Tonicons;
}
.header-iconbar li.active .icon {
  position: relative;
  top: -6px;
  padding: 11px;
  color: #fff;
  background-color: #4483c4;
  font-size: 26px;
  text-align: center;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.header-iconbar .tooltip .hint {
  position: absolute;
  top: 67px;
  left: -50px;
  padding: 8px;
  width: 120px;
  white-space: normal;
}
.header-iconbar .tooltip.narrow .hint {
  left: -30px;
  width: 70px;
}
.header-iconbar .tooltip.active .hint {
  left: -43px;
  top: 73px;
}
.header-iconbar .tooltip.narrow.active .hint {
  left: -21px;
}
.header-iconbar .save-msg {
  position: absolute;
  top: 27px;
  left: 550px;
  font-size: 15px;
  color: #9f9f9f;
}
.header-iconbar .save-msg .save-error {
  display: inline-block;
  color: #a94442;
  background-color: #f2dede;
  padding: 0 6px;
  border: 1px solid #ebccd1;
}
.header-iconbar .logged-in {
  top: 22px;
  right: 28px;
}
.header-infobox {
  background-color: #fff;
  margin-left: 210px;
  padding-left: 32px;
  border-bottom: 1px solid #e5e5e5;
  color: #003051;
  position: relative;
  z-index: 99997;
  
}
.header-infobox .suggest-random {
  margin-bottom: 20px;
}
.header-infobox .suggest-random a {
  text-decoration: none;
  color: #fff;
}
.header-infobox h1 {
  font-weight: normal;
  padding: 25px 32px 7px 0;
}
.header-infobox h2 {
  font-weight: normal;
}
.header-infobox p {
  color: #9ca4b1;
  padding: 0;
  margin: 0;
  font-size: 15px;
}
.header-infobox .cloned-from {
  display: block;
  font-size: 15px;
  padding-top: 2px;
  color: #9ca4b1;
}
.header-infobox .cloned-from:empty {
  display: none;
}
.header-infobox .source a,
.header-infobox .cloned-from a {
  color: #767676;
}
.header-infobox .quick-stats {
  padding-bottom: 25px;
}
.header-infobox .quick-stats a.license {
  color: #9ca4b1;
  text-decoration: none;
}
.header-infobox .quick-stats .icon {
  position: relative;
  font-size: 14px;
  padding-right: 3px;
  top: -1px;
}
.header-infobox .quick-stats .icon.comment {
  top: -2px;
}
.header-infobox .quick-stats .clones {
  position: relative;
  cursor: pointer;
}
.header-infobox .quick-stats .clone-list {
  position: absolute;
  top: 30px;
  left: -18px;
  background-color: #fff;
  text-align: center;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.35);
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.35);
  color: #767676;
}
.header-infobox .quick-stats .clone-list a {
  color: #767676;
}
.header-infobox .quick-stats .clone-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  padding: 10px 20px;
}
.header-infobox .quick-stats .clone-list::before {
  content: '';
  position: absolute;
  left: 12px;
  top: -10px;
  border-top: none;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
.attribution .show {
  color: #4483c4;
  padding-left: 3px;
}
.attribution .text {
  display: none;
}
.attribution .modal-wrapper {
  max-width: 540px;
}
.attribution .attribution-modal {
  position: absolute;
  top: 120px;
  width: 100%;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  background-color: #fff;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 2px 2px 42px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 2px 2px 42px rgba(0, 0, 0, 0.4);
  box-shadow: 2px 2px 42px rgba(0, 0, 0, 0.4);
  padding: 35px 40px 25px 40px;
}
.attribution .attribution-modal p {
  margin: 0 0 20px 0;
  padding: 0;
}
.attribution .attribution-modal a {
  color: #4483c4;
}
.attribution .attribution-modal .hide {
  position: absolute;
  padding: 0;
  top: 10px;
  right: 10px;
  color: #9ca4b1;
  font-size: 18px;
}
.modal-wrapper {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.modal {
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  left: 0;
  margin: auto;
  background-color: #fff;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 2px 2px 42px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 2px 2px 42px rgba(0, 0, 0, 0.4);
  box-shadow: 2px 2px 42px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.modal-header {
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  display: inline-block;
  height: 42px;
  position: relative;
  cursor: move;
}
.modal-header h2 {
  font-weight: normal;
  line-height: 42px;
  font-size: 17px;
  margin-left: 15px;
}
.modal-header button.cancel {
  color: #9ca4b1;
  font-size: 18px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 15px;
}
.modal-body {
  position: absolute;
  top: 43px;
  bottom: 0;
  left: 0;
  right: 0;
}
.map-container {
  position: relative;
}
.map {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.map .leaflet-popup-close-button {
  color: transparent !important;
}
.map .leaflet-popup-close-button::after {
  position: absolute;
  top: 11px;
  right: 10px;
  font-family: Tonicons;
  content: '\e897';
  color: #9ca4b1;
  font-weight: normal;
  font-size: 18px;
}
.map .leaflet-popup-content-wrapper {
  -webkit-border-radius: 4px !important;
  -khtml-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  border-radius: 4px !important;
  overflow: hidden;
  padding: 0;
  width: 400px;
}
.map .leaflet-popup-content {
  width: 100% !important;
  margin: 0;
  font-family: PTSansNarrow;
  color: #003051;
}
.leaflet-popup-content .popup-header,
.place-popup-content .popup-header {
  padding-right: 35px;
  min-height: 36px;
}
.leaflet-popup-content .popup-header h3,
.place-popup-content .popup-header h3 {
  font-size: 17px;
  font-weight: normal;
  margin: 0;
  padding: 7px 0 7px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.leaflet-popup-content table.gazetteer-records,
.place-popup-content table.gazetteer-records {
  table-layout: fixed;
  padding: 0;
  margin: 0;
  width: 100%;
  border-collapse: collapse;
}
.leaflet-popup-content table.gazetteer-records td p,
.place-popup-content table.gazetteer-records td p {
  margin: 0;
}
.leaflet-popup-content table.gazetteer-records td.record-id,
.place-popup-content table.gazetteer-records td.record-id {
  text-align: center;
  color: #fff;
  width: 20%;
}
.leaflet-popup-content table.gazetteer-records td.record-id .shortcode,
.place-popup-content table.gazetteer-records td.record-id .shortcode {
  display: block;
  font-size: 15px;
}
.leaflet-popup-content table.gazetteer-records td.record-id .id,
.place-popup-content table.gazetteer-records td.record-id .id {
  display: block;
  font-size: 17px;
}
.leaflet-popup-content table.gazetteer-records td,
.place-popup-content table.gazetteer-records td {
  border-top: 1px solid #e5e5e5;
  padding: 10px;
}
.leaflet-popup-content table.gazetteer-records td:first-child,
.place-popup-content table.gazetteer-records td:first-child {
  border: none;
}
.map-controls {
  z-index: 2;
}
.map-controls .control {
  margin-bottom: 6px;
  text-align: center;
  background-color: #fff;
  width: 36px;
  height: 36px;
  line-height: 37px;
  font-size: 14px;
  color: #9ca4b1;
  cursor: pointer;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.map-controls .zoom {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.map-controls .zoom .control {
  font-size: 23px;
  font-weight: bold;
  font-family: OpenSans;
}
.map-controls .zoom .control:first-child {
  margin-bottom: 0;
  border-bottom: 1px solid #e5e5e5;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -khtml-border-radius-bottomright: 0;
  -khtml-border-radius-bottomleft: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.map-controls .zoom .control:last-child {
  line-height: 32px;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -khtml-border-radius-topleft: 0;
  -khtml-border-radius-topright: 0;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.map-controls .control:hover {
  background-color: #f7f7f7;
}
.modal-wrapper {
  max-width: 800px;
}
.layerswitcher {
  overflow: hidden;
  height: 427px;
  
}
.layerswitcher .modal-body {
  background-color: #f5f7f7;
}
.layerswitcher ul,
.layerswitcher h3,
.layerswitcher p {
  padding: 0;
  margin: 0;
}
.layerswitcher ul {
  list-style-type: none;
}
.layerswitcher li:hover {
  background-color: #ecf0f1;
}
.layerswitcher li {
  cursor: pointer;
  height: 66px;
  padding: 15px 30px 15px 15px;
}
.layerswitcher li .thumb-container {
  overflow: hidden;
  margin-right: 15px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  width: 160px;
  height: 66px;
  float: left;
}
.layerswitcher li .thumb-container img {
  margin: -110px -35px -80px -25px;
}
.layerswitcher li h3 {
  color: #3f3f3f;
  font-size: 17px;
  font-weight: normal;
  line-height: 24px;
  margin: 0;
  padding: 0;
}
.layerswitcher li p {
  font-size: 15px;
  color: #767676;
  line-height: 19px;
}
.layerswitcher li a {
  color: #4483c4;
  text-decoration: none;
}
.layerswitcher li a:hover {
  text-decoration: underline;
}
.place-details {
  color: #3f3f3f;
  padding-top: 4px;
}
.place-details h3 {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 17px;
  font-weight: normal;
  line-height: 21px;
}
.place-details p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 18px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #767676;
}
.place-details .uris {
  padding-top: 2px;
}
.place-details .uris a {
  color: #3f3f3f;
}
.place-details .uris a.minilink {
  display: inline-block;
  background-color: #9ca4b1;
  width: 16px;
  height: 16px;
  line-height: 16px;
  margin: 0 3px 0 1px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-family: OpenSans;
  font-weight: bold;
  font-size: 11px;
  text-decoration: none;
  margin-bottom: 1px;
}
.place-details .last-modified {
  bottom: 6px;
}
.place-details .edit-buttons {
  position: absolute;
  right: 12px;
  bottom: 11px;
  line-height: 14px;
}
.place-details .edit-buttons button {
  border: 0;
  display: inline-block;
}
.map-container .toggle-legend,
.map-container .map-legend {
  position: absolute;
  left: 20px;
  width: 250px;
  box-sizing: border-box;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-size: 16px;
  z-index: 2;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.map-container .toggle-legend .icon,
.map-container .map-legend .icon {
  font-size: 14px;
}
.map-container .toggle-legend {
  bottom: 20px;
  padding: 0 10px;
  height: 34px;
  line-height: 34px;
  background-color: #fff;
  cursor: pointer;
}
.map-container .toggle-legend .icon {
  padding-right: 3px;
}
.map-container .map-legend {
  padding: 0;
  bottom: 64px;
  max-height: 80%;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #ecf0f1;
}
.map-container .map-legend ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.map-container .map-legend .style-selection {
  padding: 10px 15px;
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid #d6d7d9;
}
.map-container .map-legend .style-selection select {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 145px;
  box-shadow: none;
  font-size: 16px;
  background-color: #ecf0f1;
  border-color: #d6d7d9;
}
.map-container .map-legend .map-legend-body {
  padding: 10px 15px;
  min-height: 50px;
}
.map-container .map-legend .map-legend-body .key {
  position: relative;
  top: 1px;
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 1px solid #000;
  margin-right: 7px;
  -webkit-border-radius: 1px;
  -khtml-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.map-container .map td {
  border-color: #d6d7d9 !important;
}
.map-container .map .leaflet-popup-content-wrapper {
  width: 450px;
}
.map-container .snippet {
  background-color: #ecf0f1;
  border-top: 1px solid #d6d7d9;
}
.map-container .snippet .snippet-body {
  padding: 15px 0 5px 0;
  position: relative;
  width: 450px;
}
.map-container .snippet .snippet-body .previous,
.map-container .snippet .snippet-body .next {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35px;
  background-color: rgba(236, 240, 241, 0.8);
  z-index: 1;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.map-container .snippet .snippet-body .previous .icon,
.map-container .snippet .snippet-body .next .icon {
  display: block;
  margin: auto;
  height: 35px;
  position: absolute;
  top: 0;
  bottom: 0;
}
.map-container .snippet .snippet-body .previous {
  left: 0;
}
.map-container .snippet .snippet-body .next {
  right: 0;
}
.map-container .snippet .snippet-body .icon {
  font-size: 35px;
  color: #b9b9b9;
  cursor: pointer;
  margin: 0 2px;
}
.map-container .snippet .snippet-body .icon:hover {
  color: #595959;
}
.map-container .snippet .snippet-body .snippet-text {
  white-space: nowrap;
  width: 450px;
  position: relative;
  height: 96px;
  z-index: 0;
  overflow: auto;
  overflow-x: hidden;
}
.map-container .snippet .snippet-body .snippet-text .card {
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  margin: 0 45px;
  display: inline-block;
  line-height: 24px;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  color: #3f3f3f;
  font-style: italic;
  white-space: normal;
  vertical-align: top;
}
.map-container .snippet .snippet-body .snippet-text .card .image-preview {
  text-align: center;
}
.map-container .snippet .snippet-body .snippet-text .card .image-preview img {
  max-height: 96px;
  max-width: 360px !important;
}
.map-container .snippet .snippet-footer {
  padding: 6px 10px;
  font-size: 11px;
  font-family: OpenSans;
  display: table;
  box-sizing: border-box;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
.map-container .snippet .snippet-footer a,
.map-container .snippet .snippet-footer span {
  color: #9f9f9f;
  font-weight: bold;
  text-decoration: none;
}
.map-container .snippet .snippet-footer .label {
  display: table-cell;
}
.map-container .snippet .snippet-footer .jump-to-text {
  display: table-cell;
  text-align: right;
}
.map-container .snippet .snippet-footer .jump-to-text:hover {
  color: #717171;
}
.sidebar-header {
  position: absolute;
  top: 0;
  height: 71px;
  border-bottom: 1px solid #3c7dbf;
}
.map-container {
  position: absolute;
  top: 71px;
  right: 0;
  bottom: 0;
  left: 0;
}
.map-container .map-controls {
  position: absolute;
  top: 20px;
  right: 20px;
}
.map-container .snippet-body table.data-preview td {
  width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
  font-family: PTSansNarrow;
  font-size: 14px;
  padding: 0 5px;
  background-color: #fff;
  margin: 1px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
