:root {
  --grayBorderColor: #eee;
  --blueBorderColor: rgb(211, 234, 253);
}

#accordion-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgb(20, 54, 82);
  font-family: "Poppins", sans-serif;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
#accordion-section h2 {
  color: white;
  text-align: center;
  margin: 45px;
}
#accordion-section .accordion-content {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  padding: 5px;
  width: 100%;
  max-width: 700px;
  padding-top:10px;
  padding-bottom:15px;
}
#accordion-section .panel-header {
  display: flex;
  align-items: center;
  margin: 10px;
}
#accordion-section .panel-header .big-head {
  width: calc(40% - 10px);
  margin-right: 10px;
}
#accordion-section .panel-header .small-head {
  width: calc(20% - 10px);
  margin-right: 10px;
}
#accordion-section .panel-header .small-head:last-child {
  width: 20%;
  margin-right: 0;
}
#accordion-section h1 {
  color: white;
  text-align: center;
  margin: 45px;
}
#accordion-section .accordion {
  background-color: rgb(249, 249, 249);
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 97%;
  max-width: 700px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-radius: 10px;
  margin-top: 5px;
  margin-left: 10px;
  margin-right: 10px;
}
#accordion-section .active .panel {
  margin-top: 10px;
  margin-bottom: 5px;
}
#accordion-section .accordion:after {
  content: "+";
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
#accordion-section .active:after {
  content: "−";
}
#accordion-section .panel {
  background-color: white;
  margin-top: 5px;
  max-height: 0;
  /* max-width: 650px; */
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
#accordion-section table {
  border-collapse: separate;
  width: 100%;
  border-spacing: 10px 0;
}
#accordion-section td {
  padding: 8px;
  text-align: left;
  margin: 0 10px;
}
#accordion-section th {
  background-color: #f2f2f2;
  color: black;
  font-weight: normal;
}
#accordion-section .blue-section {
  background-color: rgb(56, 136, 221);
  border-radius: 6px;
  align-items: center;
  color: white;
  text-align: center;
  padding: 9px;
}
#accordion-section tr td {
  text-align: center;
  width: 20%;
}
#accordion-section tr td:first-child {
  text-align: start;
  width: 40%;
  font-size: 12px;
  margin-right: 10px;
  padding-left: 15px;
}
#accordion-section td.active {
  background-color: rgb(229, 243, 254);
  border-left: 1px solid var(--blueBorderColor);
  border-right: 1px solid var(--blueBorderColor);
}
#accordion-section td.active::after {
  content: "" !important;
}
#accordion-section tr:first-child td.active {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top: 1px solid var(--blueBorderColor);
}
#accordion-section tr:last-child td.active {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom: 1px solid var(--blueBorderColor);
}
#accordion-section .ok-icon {
  color: rgb(90, 197, 97);
}
#accordion-section .cancel-icon {
  color: rgb(203, 67, 60);
}
#accordion-section tr:nth-child(2) td {
  border-top: 1px solid var(--grayBorderColor);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#accordion-section tr:last-child td {
  border-bottom: 1px solid var(--grayBorderColor);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#accordion-section tr td {
  border-left: 1px solid var(--grayBorderColor);
  border-right: 1px solid var(--grayBorderColor);
  position: relative;
}
#accordion-section tr:not(:last-child) td::after {
  position: absolute;
  content: "";
  width: calc(100% - 20px);
  height: 1px;
  background-color: var(--grayBorderColor);
  bottom: 0;
  left: 10px;
}
#accordion-section td.active::after {
  background-color: var(--blueBorderColor) !important;
}
#accordion-section .visible-xs {
  display: none;
}

@media only screen and (max-width: 668px) {
  #accordion-section .big-head {
    display: none;
  }
  #accordion-section .small-head {
    width: 33.3333333333% !important;
  }
  #accordion-section table {
    border-spacing: 0;
  }
  #accordion-section .visible-desktop {
    display: none;
  }
  #accordion-section tr.visible-xs {
    display: table-row !important;
    /* background-color: #f8f5f5; */
  }
  #accordion-section tr.visible-xs td {
    margin-top: 10px;
    text-align: center;
    border-top: 1px solid var(--grayBorderColor);
  }
  #accordion-section .accordion {
    width: 95%;
  }
  #accordion-section .accordion-content {
    width: 98%;
  }
  #accordion-section table {
    width: 95%;
    margin: 0 auto;
  }
  #accordion-section tr:nth-child(2) td {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  #accordion-section tr:last-child td.active {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  #accordion-section tr:last-child td {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  /* #accordion-section tr.visible-xs td:first-child {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
  } */
} /*# sourceMappingURL=style.css.map */