/* Layout */
.conf-row {
    width: 100%;
    clear: both;
}
.conf-col-left {
    width: 16em;
    float: left;
}
.conf-col-right {
    margin-left: 1em;
    float: left;
    width: calc(100% - 19em);
}
.conf-container {
    position: relative;
    margin-bottom: 1em;
}
.conf-col-bottom-1 {
    width: 16em;
    float: left;
    margin-right: 1em;
    margin-top: 1em;
}
.conf-col-bottom-2 {
    width: 46%;
    float: left;
    margin-right: 1em;
}
@media (min-width: 1200px) {
    .padel-img {
        width: 794px !important;
    }
}
form {
    font-family: Roboto Condensed, sans-serif;
}

/* Tooltip information */
.tooltip {
    display: none;
    position: absolute;
    border: 1px solid #333;
    background-color: #161616;
    border-radius: 5px;
    padding: 10px;
    color: #fff;
    font-family: Roboto Condensed, sans-serif;
    font-size: 12px;
    width: 15em;
    z-index: 1000;
}

/* Configurator*/
.conf-title {
    position: relative;
    font-size: 1rem;
    padding-bottom: 1px;
    text-transform: uppercase;
    border-bottom: 3px solid #30833b;
    font-weight: bold;
}
.conf-title img {
    float: right;
    margin-top: -2px;
}
.conf-content {
    padding: 1em;
    background-color: #f5f5f5;
}
.conf-content label {
    cursor: pointer;
}
.conf-content-bottom {
    height: 21em;
}
.conf-content-extra {
    font-weight: bold;
    margin-top: 1em;
}
.padel-img {
    position: absolute;
	padding-top: 15px;
    width: calc(100% - 19em);
    display: none;
}
.padel-img-application {
    z-index: 10;
}
.padel-img-grass-color {
    z-index: 20;
}
.padel-img-crystal {
    z-index: 25;
}
.padel-img-structure {
    z-index: 30;
}
.padel-img-safetynet {
    z-index: 40;
}
.padel-img-lighting	{
    z-index: 50;
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 40px auto;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  width: 60%;
  position: relative;
  transition: all 5s ease-in-out;
  overflow: auto;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 800ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #30833B;
}
.popup .content {
  max-height: 90%;
  overflow: auto;
}

@media only screen and (max-width: 980px) and (min-width: 340px) { 
  .popup{
    width: 90%;
    margin: 35px auto;
    position: relative;
    padding: 18px;
    overflow-y:scroll;
  }
   .popup h2 {
    font-size: 20px;
  }
}