/* CSS3 calc() function to perform calculations */
:focus {
  outline: none;
}

/* Style the tab */
.tab-container {
  border: 1px solid transparent;
  position: absolute;
  height: 75px;
  padding-top: 20px;
  z-index: 3;
  display: block;
  left: 15px;
  right: 15px;
}

.tab {
  overflow: hidden;
  /* Style the buttons that are used to open the tab content */
}

.tab li {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: oswald, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
}

/* Style the tab content */
.tabcontent {
  display: none;
  margin-top: 88px;
  margin-top: 165px;
  padding: 6px 12px;
  border-top: none;
  -webkit-animation: fadeEffect 1s;
          animation: fadeEffect 1s;
  /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 991px) {
  ul.zg-ul-select {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    background-color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 1.56em;
    color: #3D536E;
    letter-spacing: 1px;
  }
  ul.zg-ul-select li {
    width: calc(100% - 0px);
    display: none;
    padding: 0.5em;
    text-transform: uppercase;
  }
  ul.zg-ul-select li.active {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid #3D536E;
    -webkit-box-shadow: 0 0 2px #aaa;
            box-shadow: 0 0 2px #aaa;
    color: #3D536E;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  ul.zg-ul-select.active {
    border: 1px solid #aaa;
  }
  ul.zg-ul-select.active li {
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    display: block;
  }
  ul.zg-ul-select.active li:hover {
    background: #CEB57F;
  }
  ul.zg-ul-select.active li.active {
    background: #eae0c9;
  }
  ul.zg-ul-select.active li.active:hover {
    background: #CEB57F;
  }
  #selected--zg-ul-select {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Oswald", sans-serif;
    font-size: 1.56em;
    color: #3D536E;
    letter-spacing: 1px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-transform: uppercase;
    width: auto;
    background-color: #fff;
  }
  #selected--zg-ul-select.active {
    border: 1px solid #111;
    -webkit-box-shadow: 0 0 2px #aaa;
            box-shadow: 0 0 2px #aaa;
    padding: 0.5em;
  }
}

@media (min-width: 768px) {
  .project-overview .tabcontent {
    margin-top: 120px;
  }
}

@media (min-width: 992px) {
  #selected--zg-ul-select {
    display: none;
  }
  ul.zg-ul-select {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  ul.zg-ul-select li {
    list-style: none;
    border: 1px solid transparent;
  }
  ul.zg-ul-select li.active {
    color: #CEB57F;
    position: relative;
  }
  ul.zg-ul-select li.active svg {
    display: none;
  }
  ul.zg-ul-select li.active:before {
    content: "";
    position: absolute;
    width: calc(100% - 32px) !important;
    height: 3px;
    background-color: #CEB57F;
    bottom: 0px;
  }
  ul.zg-ul-select li:hover {
    color: #CEB57F;
  }
}
/*# sourceMappingURL=tab2select.css.map */