.tab {
  position: relative;
}
.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}
.tab input:checked ~ .tab__content {
  max-height: 200px;
}

.accordion {
  border: 1px solid #cccccc;
  border-radius: 10px;
  overflow: hidden;
  width: 65%;
  float: center;
  margin: auto;
}
.tab__label,
.tab__close {
  display: flex;
  color: #383838;
  background: white;
  cursor: pointer;
}
.tab__label {
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #ebebeb;
}
.tab__label::after {
  content: "\276F";
  width: 10px;
  height: 10px;
  text-align: center;
  transform: rotate(90deg);
  transition: all 0.35s;
}
.tab input:checked + .tab__label::after {
  transform: rotate(-90deg);
  translate: -10px;
  transition: all 0.35s;

}
.tab__content p {
  margin: 0;
  padding: 30px 20px 30px 20px;
  text-align: left;
}

.green {
  background-color: #54A763 !important;
  color: white;
}

.amber {
  background-color: #f58d38;
  color: white;
}

.red {
  background-color: #d93640;
  color: white;
}

.tab__close {
  justify-content: flex-end;
  padding: 10px 10px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .accordion {
    width: 90%;
  }
  .tab__label, .tab__content {
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .accordion {
    width: 100%;
  }
  .tab__label, .tab__content {
    font-size: 12px;
    padding: 8px;
  }
}

footer {
  background-color: #383838;
  text-align: center;
  font-family: Poppins;
  margin: 0;
  padding: 10px;
  color: white;
  box-sizing: border-box;
  min-height: 172px;
}

html, body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

div {
  flex: 1;
}

div.notify {
  transition: all .2s ease-in-out;
}


div.notify:hover {
  transition: all .2s ease-in-out;
  transform: scale(1.05);
}

div.operator {
  font-family: Poppins;
}
