@charset "UTF-8";
.custom_accordian input {
  display: none;
}
.custom_accordian .box {
  margin-top: 20px;
  position: relative;
  background: white;
  transition: all 0.15s ease-in-out;
}
.custom_accordian .box::before {
  content: "";
  position: absolute;
  display: block;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  box-shadow: 0 -1px 0 #e5e5e5, 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
}
.custom_accordian header.box {
  background: #e4f3fb;
  z-index: 100;
  cursor: initial;
  box-shadow: 0 -1px 0 #e5e5e5, 0 0 2px -2px rgba(0, 0, 0, 0.12), 0 2px 4px -4px rgba(0, 0, 0, 0.24);
}
.custom_accordian header .box-title {
  margin: 0;
  font-weight: normal;
  font-size: 16pt;
  color: #4a748d;
  cursor: initial;
}
.custom_accordian .box-title {
  padding: 20px 20px;
  display: inline-block;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom_accordian .box-content {
  width: 100%;
  padding: 19px 30px 23px 44px;
  display: none;
}
.custom_accordian .box-close {
  position: absolute;
  height: 64px;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}
.custom_accordian input:checked + .box {
  height: auto;
  /*margin: 16px 0;*/
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.32);
}
.custom_accordian input:checked + .box .box-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}
.custom_accordian input:checked + .box .box-content, .custom_accordian input:checked + .box .box-close {
  display: inline-block;
}
.custom_accordian input:checked + section.box .box-title:before {
  transform: rotate(90deg);
}
.custom_accordian section .box-title {
  font-size: 20px;
  color: #1d5175;
  padding-left: 44px;
  width: 100%;
}
.custom_accordian section .box-title:before {
  position: absolute;
  display: block;
  content: "›";
  font-size: 18pt;
  left: 20px;
  top: 18px;
  transition: transform 0.15s ease-in-out;
  color: #1d5175;
}

/*# sourceMappingURL=accordian.css.map */
