.rsce_accordion {
  display: block;
  border-bottom: 1px dotted #9D9D9D;
  padding: 20px 0 0 0;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.rsce_accordion .accordion-title {
  position: relative;
  margin: 0;
  padding: 0 30px 20px 0;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  justify-content: flex-start;
  align-items: center;
  column-gap: 20px;
  row-gap: 0;
}
.rsce_accordion .accordion-title .pre:before {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.6;
  letter-spacing: 0.025em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  color: #e31725;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_accordion .accordion-title .pre:before {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_accordion .accordion-title .pre:before {
    font-size: 18px;
  }
}
.rsce_accordion .accordion-title .pre img,
.rsce_accordion .accordion-title .pre svg {
  display: block;
  width: 100%;
  height: 100%;
  -moz-object-fit: contain;
  -webkit-object-fit: contain;
  -o-object-fit: contain;
  -ms-object-fit: contain;
  object-fit: contain;
  -moz-object-position: center center;
  -webkit-object-position: center center;
  -o-object-position: center center;
  -ms-object-position: center center;
  object-position: center center;
  font-family: "object-fit:contain; object-position:center center;";
}
body.ios .rsce_accordion .accordion-title .pre img,
body.ios .rsce_accordion .accordion-title .pre svg {
  width: auto;
  height: auto;
  max-width: 100%;
}
.rsce_accordion .accordion-title .pre svg {
  overflow: visible;
}
.rsce_accordion .accordion-title .accordion-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  -moz-transform: translate(0, -50%) rotate(-180deg);
  -webkit-transform: translate(0, -50%) rotate(-180deg);
  -o-transform: translate(0, -50%) rotate(-180deg);
  -ms-transform: translate(0, -50%) rotate(-180deg);
  transform: translate(0, -50%) rotate(-180deg);
  margin-top: -10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.rsce_accordion .accordion-title .title {
  font-family: 'Expose', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rsce_accordion .accordion-title .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .rsce_accordion .accordion-title .title {
    font-size: 18px;
  }
}
.rsce_accordion .accordion-content {
  display: block;
  padding-bottom: 20px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.66666667;
  letter-spacing: 0.01em;
}
.rsce_accordion.active .accordion-title .accordion-arrow {
  -moz-transform: translate(0, -50%) rotate(-360deg);
  -webkit-transform: translate(0, -50%) rotate(-360deg);
  -o-transform: translate(0, -50%) rotate(-360deg);
  -ms-transform: translate(0, -50%) rotate(-360deg);
  transform: translate(0, -50%) rotate(-360deg);
}
.rsce_accordion.has_icon .accordion-title .pre:before {
  display: none;
}
.rsce_accordion.no_number.no_icon .accordion-title .pre {
  display: none;
}
@media screen and (min-width: 1024px) and (max-width: 1540px) {
  .rsce_accordions {
    padding-left: 100px;
    padding-right: 100px;
  }
}
.rsce_accordions .rsce_accordion {
  counter-increment: orderedlist;
}
.rsce_accordions .rsce_accordion:first-child {
  border-top: 1px dotted #9D9D9D;
}
.rsce_accordions .rsce_accordion .pre:before {
  content: counter(orderedlist, decimal-leading-zero);
}
