.checkboxfooter input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.footer-row {
  display: flex;
}
.footer-row .footer-col {
  flex: 1;
}
.footer-row .footer-col:last-child {
  margin-left: 2em;
  margin-right: 0em;
}

/* Accordion styles */
.footer-tabs {
  border-radius: 0px;
  overflow: hidden;
}

.footer-tab {
  width: 50%;
  color: #ffffff;
  overflow: hidden;
  font-family: "mangalfont", sans-serif; font-size: 13px; color: #ffffff; letter-spacing: 3px; font-weight: 100; text-decoration: none;
  border-bottom: 1px solid #fff;
  
}
.footer-tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: #949494;
  cursor: pointer;
  /* Icon */
}
.footer-tab-label:hover {
  background: #949494;
}
.footer-tab-label::after {
  content: "\276F";
  width: 1em;
  height: 0.5em;
  text-align: center;
  transition: all .35s;
}
.footer-tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #ffffff;
  background: #949494;
  transition: all .35s;
  line-height: 1.5em;
}

@font-face {
    font-family: "mangalfont";
    src: url(http://www.greenorganics.com.au/mangal.ttf) format("truetype");

}

.footer-tab-content a{
  font-family: "mangalfont", sans-serif; font-size: 11px; color: #ffffff; letter-spacing: 3px; font-weight: 100; text-decoration: none;
}

.footer-tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.footer-tab-close:hover {
  background: #e1dfdf;
}

input:checked + .footer-tab-label {
  background: #949494;
}
input:checked + .footer-tab-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
input:checked ~ .footer-tab-content {
  max-height: 100vh;
  padding: 1em;
  
}

@media (min-width: 600px) {
  .footer-row{display: none;}
}