  @import url("https://");
* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.infowindow {width: 450px;}
.infowindowTabs {height: 215px !important; width: 450px;}

.tabs {
    float: right;
    list-style: outside none none;
    position: relative;
    text-align: left;
    width: 100%;
}
.tabs li {
  float: left;
  display: block;
}
.tabs input[type="radio"] {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.tabs label {
  display: block;
  padding: 5px 5px;
  font-size: 1.077em;
  font-weight: normal;
  background: #fff;
  cursor: pointer;
  position: relative;
  top: 0px;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tabs label:hover {
  background: #d5d5d5;
}
.tabs .tab-content {
  z-index: 2;
  display: none;
  width: 100%;
  height: 185px;
  font-size: 0.923em;
  padding: 10px;
  position: absolute;
  top: 25px;
  left: 0;
  background: #efefef;
  overflow-x: hidden;
}
.tabs [id^="tab"]:checked + label {
  top: 0;
  background: #efefef;
}
.tabs [id^="tab"]:checked ~ [id^="tab-content"] {
  display: block;
}