@charset "UTF-8";
#contact {
  background-color: #F1F1F1;
}

.form-section {
  padding: 94px 40px 60px;
}
@media only screen and (max-width: 768px) {
  .form-section {
    padding: 64px 16px;
  }
}

.form-description {
  margin-top: 16px;
}

.form-area-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .form-area-container {
    margin-top: 24px;
    gap: 20px;
  }
}

.form-area {
  width: 100%;
  max-width: 885px;
  margin-inline: auto;
}

.form-containers {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media only screen and (max-width: 768px) {
  .form-container {
    gap: 16px;
  }
}

.form-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-item.large-gap {
  gap: 30px;
}

.form-submit-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 65px;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .form-submit-container {
    margin-top: 48px;
    gap: 20px;
  }
}

.form-submit-btn {
  width: 100%;
  max-width: 560px;
  font-size: 22px;
  padding: 0;
}

.form-submit {
  width: 100%;
  height: 100%;
}

.form-label {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
@media only screen and (max-width: 768px) {
  .form-label {
    justify-content: center;
    grid-template-columns: auto auto;
    gap: 0 4px;
  }
}

.form-label-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1px;
  color: #111111;
}
@media only screen and (max-width: 768px) {
  .form-label-text {
    justify-self: flex-end;
    font-size: 20px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .form-label-text.two-column {
    justify-self: center;
    grid-column: span 2;
  }
}

.form-label-required {
  padding: 2px 4px 3px;
  border-radius: 5px;
  background: #F67C4D;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.6px;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .form-label-required {
    justify-self: flex-start;
  }
}

.form-label-annotation {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1.2px;
  color: #555;
}
@media only screen and (max-width: 768px) {
  .form-label-annotation {
    justify-self: center;
    grid-column: span 2;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 3%;
  }
}

.form-content {
  width: 100%;
}

.form-content-short {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .form-content-short {
    width: 100%;
  }
}

.form-textarea {
  width: 100%;
  padding: 8px 12px;
  background-color: #FFF;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.1490196078);
}

.form-textfield {
  width: 100%;
  padding: 8px 12px;
  background-color: #FFF;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.1490196078);
}

.form-check-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  .form-check-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.form-check-container .mwform-checkbox-field > label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.form-check-container .mwform-checkbox-field > label::before {
  content: "";
  width: 22px;
  height: 22px;
  background-color: #FFF;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.1490196078);
}
@media only screen and (max-width: 768px) {
  .form-check-container .mwform-checkbox-field > label::before {
    width: 18px;
    height: 18px;
  }
}
.form-check-container .mwform-checkbox-field > label:has(:checked)::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M20.0284%207.21038L9.20648%2017.141L3%2011.4457L5.02835%209.23529L9.20648%2013.0693L18%205L20.0284%207.21038Z%22%20fill%3D%22%23F67C4D%22%2F%3E%3C%2Fsvg%3E");
}
.form-check-container .vertical-item + .vertical-item {
  margin-top: 0 !important;
}
.form-check-container .mwform-checkbox-field-text {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1.6px;
  color: #555;
}
@media only screen and (max-width: 768px) {
  .form-check-container .mwform-checkbox-field-text {
    font-size: 12px;
  }
}
.form-check-container .form-check {
  display: none;
}

.form-privacy-container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.form-check-icon-card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(8, 1fr);
  grid-auto-flow: column;
  gap: 10px 20px;
}
@media only screen and (max-width: 768px) {
  .form-check-icon-card-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 8px;
  }
}

.mwform-checkbox-field:has(.form-check-icon-card) {
  margin: 0 !important;
}

.mwform-checkbox-field:has(.form-check-icon-card) > label {
  display: grid;
  grid-template-columns: auto 1fr;
  width: 100%;
  background-color: #FFF;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.1490196078);
  transition: all 0.1s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .mwform-checkbox-field:has(.form-check-icon-card) > label {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    justify-content: center;
    height: 100%;
  }
}
.mwform-checkbox-field:has(.form-check-icon-card) > label::before {
  content: "";
  width: 64px;
  height: auto;
  aspect-ratio: 1;
  background-color: #8B8B8B;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .mwform-checkbox-field:has(.form-check-icon-card) > label::before {
    width: 100%;
    height: 64px;
    aspect-ratio: auto;
  }
}
@media (any-hover: hover) {
  .mwform-checkbox-field:has(.form-check-icon-card) > label {
    cursor: pointer;
  }
  .mwform-checkbox-field:has(.form-check-icon-card) > label:hover {
    background-color: #F7F7F7;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3019607843);
  }
}

.mwform-checkbox-field:has(.form-check-icon-card:checked) > label {
  background-color: #E1E2FB;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3019607843);
}

.mwform-checkbox-field:has(.form-check-icon-card):has([value=reading]) > label::before {
  background-color: #4391BE;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2238%22%20height%3D%2238%22%20viewBox%3D%220%200%2038%2038%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M7.64762%208.80891C8.17491%208.80891%208.60237%208.38146%208.60237%207.85416C8.60237%207.32687%208.17491%206.89941%207.64762%206.89941C7.12033%206.89941%206.69287%207.32687%206.69287%207.85416C6.69287%208.38146%207.12033%208.80891%207.64762%208.80891Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M11.0109%208.80891C11.5382%208.80891%2011.9657%208.38146%2011.9657%207.85416C11.9657%207.32687%2011.5382%206.89941%2011.0109%206.89941C10.4836%206.89941%2010.0562%207.32687%2010.0562%207.85416C10.0562%208.38146%2010.4836%208.80891%2011.0109%208.80891Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M14.3737%208.80891C14.901%208.80891%2015.3284%208.38146%2015.3284%207.85416C15.3284%207.32687%2014.901%206.89941%2014.3737%206.89941C13.8464%206.89941%2013.4189%207.32687%2013.4189%207.85416C13.4189%208.38146%2013.8464%208.80891%2014.3737%208.80891Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M23.8344%2023.9768L26.9492%2034.2155C27.2508%2035.207%2028.6473%2035.2284%2028.9786%2034.2451L30.4369%2029.9179C30.5437%2029.602%2030.7907%2029.355%2031.1066%2029.2481L35.4339%2027.7899C36.4159%2027.4586%2036.3957%2026.0621%2035.4042%2025.7605L25.1656%2022.6456C24.3497%2022.3986%2023.5874%2023.161%2023.8344%2023.9768Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M22.1316%2024.4945C21.8656%2023.6229%2022.0248%2022.7026%2022.5663%2021.9723C23.103%2021.2491%2023.9556%2020.8169%2024.8498%2020.8169C25.1313%2020.8169%2025.4115%2020.8584%2025.6846%2020.9415L34.8901%2023.7405V7.4468C34.8901%205.01242%2032.907%203.0293%2030.4726%203.0293H6.25832C3.82395%203.0293%201.84082%205.01242%201.84082%207.4468V27.2187C1.84082%2029.6649%203.82395%2031.648%206.2702%2031.648H24.3059L22.1316%2024.4945ZM3.97832%2010.558V7.44798C3.97832%206.19042%205.00076%205.16798%206.25832%205.16798H30.4714C31.729%205.16798%2032.7514%206.19042%2032.7514%207.44798V10.558H3.97832Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-size: 38px 38px;
}

.mwform-checkbox-field:has(.form-check-icon-card):has([value=learning]) > label::before {
  background-color: #9D8F25;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2036%2036%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M18%2011.9531C21.3008%2011.9531%2023.9766%209.27733%2023.9766%205.97656C23.9766%202.6758%2021.3008%200%2018%200C14.6992%200%2012.0234%202.6758%2012.0234%205.97656C12.0234%209.27733%2014.6992%2011.9531%2018%2011.9531Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M22.3916%2012.7627C21.1261%2013.5844%2019.6179%2014.0624%2017.9999%2014.0624C16.3819%2014.0624%2014.8737%2013.5844%2013.6083%2012.7627C12.2094%2013.2973%2010.9124%2014.086%209.78467%2015.0982L17.9999%2018.1789L26.2152%2015.0982C25.0874%2014.086%2023.7904%2013.2972%2022.3916%2012.7627Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M30.6562%2021.7969H29.9531C29.3707%2021.7969%2028.8984%2022.2691%2028.8984%2022.8516V25.6641C28.8984%2026.2465%2029.3707%2026.7188%2029.9531%2026.7188H30.6562C32.0154%2026.7188%2033.1172%2025.617%2033.1172%2024.2578C33.1172%2022.8987%2032.0154%2021.7969%2030.6562%2021.7969Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M6.14925%2016.4726C5.86491%2016.6697%205.69531%2016.9935%205.69531%2017.3394V19.6875H6.04688C7.79154%2019.6875%209.21094%2021.1069%209.21094%2022.8516V25.6641C9.21094%2027.4088%207.79154%2028.8282%206.04688%2028.8282H5.69531V31.0504C5.69531%2031.4901%205.96805%2031.8836%206.37966%2032.0379L16.9453%2036V20.0363L7.12034%2016.3519C6.79641%2016.2303%206.43352%2016.2754%206.14925%2016.4726Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M26.7891%2025.6641V22.8516C26.7891%2021.1069%2028.2085%2019.6875%2029.9531%2019.6875H30.3047V17.3394C30.3047%2016.9935%2030.1351%2016.6697%2029.8507%2016.4726C29.5664%2016.2754%2029.2035%2016.2303%2028.8797%2016.3519L19.0547%2020.0363V36L29.6203%2032.0379C30.0319%2031.8836%2030.3047%2031.4901%2030.3047%2031.0504V28.8282H29.9531C28.2085%2028.8282%2026.7891%2027.4088%2026.7891%2025.6641Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M7.10156%2025.6641V22.8516C7.10156%2022.2691%206.62934%2021.7969%206.04688%2021.7969H5.34375C3.98461%2021.7969%202.88281%2022.8987%202.88281%2024.2578C2.88281%2025.617%203.98461%2026.7188%205.34375%2026.7188H6.04688C6.62934%2026.7188%207.10156%2026.2465%207.10156%2025.6641Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-size: 36px 36px;
}

.mwform-checkbox-field:has(.form-check-icon-card):has([value=game]) > label::before {
  background-color: #5B9C5C;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2234%22%20height%3D%2234%22%20viewBox%3D%220%200%2034%2034%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M15.9375%2021.2501C15.9375%2020.4043%2015.6018%2019.5936%2015.0036%2018.9965C14.4064%2018.3983%2013.5957%2018.0626%2012.75%2018.0626C10.6399%2018.0626%207.42263%2018.0626%205.3125%2018.0626C4.46675%2018.0626%203.65606%2018.3983%203.05894%2018.9965C2.46075%2019.5936%202.125%2020.4043%202.125%2021.2501V28.6876C2.125%2029.5333%202.46075%2030.344%203.05894%2030.9411C3.65606%2031.5393%204.46675%2031.8751%205.3125%2031.8751H12.75C13.5957%2031.8751%2014.4064%2031.5393%2015.0036%2030.9411C15.6018%2030.344%2015.9375%2029.5333%2015.9375%2028.6876V21.2501ZM31.875%2021.2501C31.875%2020.4043%2031.5393%2019.5936%2030.9411%2018.9965C30.3439%2018.3983%2029.5333%2018.0626%2028.6875%2018.0626C26.5774%2018.0626%2023.3601%2018.0626%2021.25%2018.0626C20.4042%2018.0626%2019.5936%2018.3983%2018.9964%2018.9965C18.3982%2019.5936%2018.0625%2020.4043%2018.0625%2021.2501V28.6876C18.0625%2029.5333%2018.3982%2030.344%2018.9964%2030.9411C19.5936%2031.5393%2020.4042%2031.8751%2021.25%2031.8751H28.6875C29.5333%2031.8751%2030.3439%2031.5393%2030.9411%2030.9411C31.5393%2030.344%2031.875%2029.5333%2031.875%2028.6876V21.2501ZM27.2223%2015.7176L31.6551%2011.2849C32.8993%2010.0407%2032.8993%208.02194%2031.6551%206.77775L27.2223%202.34501C25.9781%201.10082%2023.9594%201.10082%2022.7152%202.34501L18.2824%206.77775C17.0383%208.02194%2017.0383%2010.0407%2018.2824%2011.2849L22.7152%2015.7176C23.9594%2016.9618%2025.9781%2016.9618%2027.2223%2015.7176ZM15.9375%205.31257C15.9375%204.46682%2015.6018%203.65613%2015.0036%203.059C14.4064%202.46082%2013.5957%202.12507%2012.75%202.12507C10.6399%202.12507%207.42263%202.12507%205.3125%202.12507C4.46675%202.12507%203.65606%202.46082%203.05894%203.059C2.46075%203.65613%202.125%204.46682%202.125%205.31257V12.7501C2.125%2013.5958%202.46075%2014.4065%203.05894%2015.0036C3.65606%2015.6018%204.46675%2015.9376%205.3125%2015.9376H12.75C13.5957%2015.9376%2014.4064%2015.6018%2015.0036%2015.0036C15.6018%2014.4065%2015.9375%2013.5958%2015.9375%2012.7501V5.31257Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-size: 34px 34px;
}

.mwform-checkbox-field:has(.form-check-icon-card):has([value=system]) > label::before {
  background-color: #A0328E;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M25.3125%208.125C25.3125%207.21375%2024.95%206.33875%2024.3062%205.69375C23.6612%205.05%2022.7862%204.6875%2021.875%204.6875C18.2863%204.6875%2011.7137%204.6875%208.125%204.6875C7.21375%204.6875%206.33875%205.05%205.69375%205.69375C5.05%206.33875%204.6875%207.21375%204.6875%208.125V21.875C4.6875%2022.7862%205.05%2023.6612%205.69375%2024.3062C6.33875%2024.95%207.21375%2025.3125%208.125%2025.3125H21.875C22.7862%2025.3125%2023.6612%2024.95%2024.3062%2024.3062C24.95%2023.6612%2025.3125%2022.7862%2025.3125%2021.875V8.125ZM19.5%2021.5625C20.6388%2021.5625%2021.5625%2020.64%2021.5625%2019.5C21.5625%2019.5%2021.5625%2014.6375%2021.5625%2013.0175C21.5625%2012.4375%2021.3325%2011.8812%2020.9212%2011.4713C20.32%2010.87%2019.13%209.68%2018.5287%209.07875C18.1187%208.6675%2017.5625%208.4375%2016.9825%208.4375C15.3625%208.4375%2010.5%208.4375%2010.5%208.4375C9.36125%208.4375%208.4375%209.36125%208.4375%2010.5V19.5C8.4375%2020.64%209.36125%2021.5625%2010.5%2021.5625H19.5ZM19.5%2019.6875H10.5C10.3962%2019.6875%2010.3125%2019.6038%2010.3125%2019.5V10.5C10.3125%2010.3962%2010.3962%2010.3125%2010.5%2010.3125H16.9825C17.065%2010.3125%2017.145%2010.345%2017.2037%2010.4037L19.5963%2012.7963C19.655%2012.855%2019.6875%2012.935%2019.6875%2013.0175V19.5C19.6875%2019.6038%2019.6038%2019.6875%2019.5%2019.6875Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9.375%205.625V2.5C9.375%201.9825%208.955%201.5625%208.4375%201.5625C7.92%201.5625%207.5%201.9825%207.5%202.5V5.625C7.5%206.1425%207.92%206.5625%208.4375%206.5625C8.955%206.5625%209.375%206.1425%209.375%205.625Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5.625%2020.625H2.5C1.9825%2020.625%201.5625%2021.045%201.5625%2021.5625C1.5625%2022.08%201.9825%2022.5%202.5%2022.5H5.625C6.1425%2022.5%206.5625%2022.08%206.5625%2021.5625C6.5625%2021.045%206.1425%2020.625%205.625%2020.625Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.5%2024.375V27.5C7.5%2028.0175%207.92%2028.4375%208.4375%2028.4375C8.955%2028.4375%209.375%2028.0175%209.375%2027.5V24.375C9.375%2023.8575%208.955%2023.4375%208.4375%2023.4375C7.92%2023.4375%207.5%2023.8575%207.5%2024.375Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M24.375%2022.5H27.5C28.0175%2022.5%2028.4375%2022.08%2028.4375%2021.5625C28.4375%2021.045%2028.0175%2020.625%2027.5%2020.625H24.375C23.8575%2020.625%2023.4375%2021.045%2023.4375%2021.5625C23.4375%2022.08%2023.8575%2022.5%2024.375%2022.5Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13.75%205.625V2.5C13.75%201.9825%2013.33%201.5625%2012.8125%201.5625C12.295%201.5625%2011.875%201.9825%2011.875%202.5V5.625C11.875%206.1425%2012.295%206.5625%2012.8125%206.5625C13.33%206.5625%2013.75%206.1425%2013.75%205.625Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5.625%2016.25H2.5C1.9825%2016.25%201.5625%2016.67%201.5625%2017.1875C1.5625%2017.705%201.9825%2018.125%202.5%2018.125H5.625C6.1425%2018.125%206.5625%2017.705%206.5625%2017.1875C6.5625%2016.67%206.1425%2016.25%205.625%2016.25Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.875%2024.375V27.5C11.875%2028.0175%2012.295%2028.4375%2012.8125%2028.4375C13.33%2028.4375%2013.75%2028.0175%2013.75%2027.5V24.375C13.75%2023.8575%2013.33%2023.4375%2012.8125%2023.4375C12.295%2023.4375%2011.875%2023.8575%2011.875%2024.375Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M24.375%2018.125H27.5C28.0175%2018.125%2028.4375%2017.705%2028.4375%2017.1875C28.4375%2016.67%2028.0175%2016.25%2027.5%2016.25H24.375C23.8575%2016.25%2023.4375%2016.67%2023.4375%2017.1875C23.4375%2017.705%2023.8575%2018.125%2024.375%2018.125Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.125%205.625V2.5C18.125%201.9825%2017.705%201.5625%2017.1875%201.5625C16.67%201.5625%2016.25%201.9825%2016.25%202.5V5.625C16.25%206.1425%2016.67%206.5625%2017.1875%206.5625C17.705%206.5625%2018.125%206.1425%2018.125%205.625Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5.625%2011.875H2.5C1.9825%2011.875%201.5625%2012.295%201.5625%2012.8125C1.5625%2013.33%201.9825%2013.75%202.5%2013.75H5.625C6.1425%2013.75%206.5625%2013.33%206.5625%2012.8125C6.5625%2012.295%206.1425%2011.875%205.625%2011.875Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M16.25%2024.375V27.5C16.25%2028.0175%2016.67%2028.4375%2017.1875%2028.4375C17.705%2028.4375%2018.125%2028.0175%2018.125%2027.5V24.375C18.125%2023.8575%2017.705%2023.4375%2017.1875%2023.4375C16.67%2023.4375%2016.25%2023.8575%2016.25%2024.375Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M24.375%2013.75H27.5C28.0175%2013.75%2028.4375%2013.33%2028.4375%2012.8125C28.4375%2012.295%2028.0175%2011.875%2027.5%2011.875H24.375C23.8575%2011.875%2023.4375%2012.295%2023.4375%2012.8125C23.4375%2013.33%2023.8575%2013.75%2024.375%2013.75Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M22.5%205.625V2.5C22.5%201.9825%2022.08%201.5625%2021.5625%201.5625C21.045%201.5625%2020.625%201.9825%2020.625%202.5V5.625C20.625%206.1425%2021.045%206.5625%2021.5625%206.5625C22.08%206.5625%2022.5%206.1425%2022.5%205.625Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5.625%207.5H2.5C1.9825%207.5%201.5625%207.92%201.5625%208.4375C1.5625%208.955%201.9825%209.375%202.5%209.375H5.625C6.1425%209.375%206.5625%208.955%206.5625%208.4375C6.5625%207.92%206.1425%207.5%205.625%207.5Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M20.625%2024.375V27.5C20.625%2028.0175%2021.045%2028.4375%2021.5625%2028.4375C22.08%2028.4375%2022.5%2028.0175%2022.5%2027.5V24.375C22.5%2023.8575%2022.08%2023.4375%2021.5625%2023.4375C21.045%2023.4375%2020.625%2023.8575%2020.625%2024.375Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M24.375%209.375H27.5C28.0175%209.375%2028.4375%208.955%2028.4375%208.4375C28.4375%207.92%2028.0175%207.5%2027.5%207.5H24.375C23.8575%207.5%2023.4375%207.92%2023.4375%208.4375C23.4375%208.955%2023.8575%209.375%2024.375%209.375Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-size: 30px 30px;
}

.mwform-checkbox-field:has(.form-check-icon-card):has([value=phone]) > label::before {
  background-color: #333799;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2233%22%20height%3D%2234%22%20viewBox%3D%220%200%2033%2034%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1.68551%2014.5837C1.13279%2013.0881%200.742629%2011.56%200.840169%209.93433C0.905195%208.92642%201.29535%208.08108%202.04316%207.36579C2.82347%206.61799%203.60379%205.80516%204.38411%205.05735C5.39201%204.04944%206.69254%204.04944%207.70045%205.05735C8.3182%205.6751%208.96846%206.32537%209.58622%206.94312C10.204%207.56087%2010.8217%208.14611%2011.407%208.76386C12.4799%209.83679%2012.4799%2011.1048%2011.407%2012.1777C10.6591%2012.9581%209.87883%2013.7059%209.09852%2014.4537C8.90344%2014.6487%208.87092%2014.8113%208.96846%2015.0714C9.48868%2016.3069%2010.204%2017.3799%2011.0493%2018.4203C12.7075%2020.4686%2014.6258%2022.2893%2016.8692%2023.7199C17.3569%2024.0125%2017.8771%2024.2401%2018.3973%2024.5002C18.6574%2024.6303%2018.82%2024.5978%2019.0476%2024.3702C19.7954%2023.5899%2020.5757%2022.8096%2021.356%2022.0292C22.3639%2021.0213%2023.6644%2021.0213%2024.6723%2022.0292C25.9078%2023.2647%2027.1758%2024.5002%2028.4113%2025.7683C29.4518%2026.8087%2029.4518%2028.1092%2028.4113%2029.1496C27.6961%2029.8649%2026.9483%2030.5477%2026.298%2031.2955C25.3226%2032.3684%2024.1196%2032.7261%2022.7215%2032.6611C20.7057%2032.5635%2018.82%2031.8807%2017.0317%2031.0029C13.0326%2029.0521%209.58622%2026.3535%206.72506%2022.9396C4.57919%2020.4361%202.82347%2017.6725%201.68551%2014.5837ZM32.1678%2015.2691C31.4256%207.94489%2025.6141%202.11341%2018.2991%201.34038C17.416%201.24706%2016.6416%201.92547%2016.6416%202.8135V2.84189C16.6416%203.60257%2017.2183%204.23467%2017.9748%204.31437C23.8702%204.93551%2028.589%209.62828%2029.2179%2015.5437C29.299%2016.3062%2029.9399%2016.885%2030.7067%2016.8766C31.5683%2016.8671%2032.2546%2016.1263%2032.1678%2015.2691ZM16.6416%208.42626V8.44702C16.6416%209.15594%2017.1382%209.78601%2017.8369%209.90569C19.2728%2010.1516%2020.6012%2010.8377%2021.6486%2011.8851C22.696%2012.9325%2023.3821%2014.2609%2023.628%2015.6968C23.7477%2016.3956%2024.3778%2016.8922%2025.0867%2016.8922H25.0997C26.0142%2016.8922%2026.7242%2016.0699%2026.5643%2015.1695C25.8219%2010.9892%2022.5179%207.68429%2018.3583%206.96076C17.4598%206.80448%2016.6416%207.51426%2016.6416%208.42626Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-size: 33px 33px;
}

.mwform-checkbox-field:has(.form-check-icon-card):has([value=book]) > label::before {
  background-color: #755B43;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2036%2036%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5.5069%204.24829C5.50593%204.24829%205.50484%204.24829%205.50387%204.24829C5.16338%204.24829%204.84314%204.38102%204.60132%204.62223C4.35683%204.86611%204.22217%205.19084%204.22217%205.53654V24.8536C4.22217%2025.5619%204.80072%2026.1396%205.51199%2026.1415C8.51055%2026.1486%2013.5343%2026.7736%2017%2030.4004V10.1846C17%209.94443%2016.9387%209.71885%2016.8229%209.53219C13.9784%204.95132%208.51224%204.25532%205.5069%204.24829Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M31.7777%2024.8537V5.53654C31.7777%205.19084%2031.6431%204.86611%2031.3986%204.62223C31.1568%204.38102%2030.8363%204.24829%2030.4962%204.24829C30.4951%204.24829%2030.494%204.24829%2030.493%204.24829C27.4878%204.25544%2022.0216%204.95144%2019.177%209.53231C19.0612%209.71898%2019%209.94455%2019%2010.1847V30.4004C22.4657%2026.7736%2027.4895%2026.1486%2030.488%2026.1415C31.1992%2026.1396%2031.7777%2025.5619%2031.7777%2024.8537Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M34.7119%208.70312H33.7778V24.8536C33.7778%2026.6622%2032.3042%2028.137%2030.4928%2028.1415C27.9494%2028.1476%2023.7557%2028.6449%2020.7856%2031.4559C25.9224%2030.1982%2031.3374%2031.0158%2034.4235%2031.7191C34.8088%2031.8068%2035.207%2031.7162%2035.5158%2031.4701C35.8234%2031.2247%2035.9999%2030.8577%2035.9999%2030.4639V9.99113C36%209.28095%2035.4221%208.70312%2034.7119%208.70312Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M2.22207%2024.8536V8.70312H1.288C0.577941%208.70312%200%209.28095%200%209.99113V30.4636C0%2030.8575%200.176485%2031.2243%200.484123%2031.4697C0.792609%2031.7157%201.19043%2031.8067%201.57637%2031.7187C4.66244%2031.0153%2010.0776%2030.1979%2015.2141%2031.4556C12.2442%2028.6446%208.05045%2028.1474%205.50705%2028.1414C3.69577%2028.137%202.22207%2026.6622%202.22207%2024.8536Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-size: 36px 36px;
}

.mwform-checkbox-field:has(.form-check-icon-card):has([value=document]) > label::before {
  background-color: #404B7F;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2036%2036%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M7.45312%2036H28.5469C30.2916%2036%2031.7109%2034.5807%2031.7109%2032.8359V10.5469H24.3281C22.5834%2010.5469%2021.1641%209.12755%2021.1641%207.38281V0H7.45312C5.70839%200%204.28906%201.41933%204.28906%203.16406V32.8359C4.28906%2034.5807%205.70839%2036%207.45312%2036ZM11.6719%2014.8359H24.3281C24.9111%2014.8359%2025.3828%2015.3077%2025.3828%2015.8906C25.3828%2016.4736%2024.9111%2016.9453%2024.3281%2016.9453H11.6719C11.0889%2016.9453%2010.6172%2016.4736%2010.6172%2015.8906C10.6172%2015.3077%2011.0889%2014.8359%2011.6719%2014.8359ZM11.6719%2019.0547H24.3281C24.9111%2019.0547%2025.3828%2019.5264%2025.3828%2020.1094C25.3828%2020.6923%2024.9111%2021.1641%2024.3281%2021.1641H11.6719C11.0889%2021.1641%2010.6172%2020.6923%2010.6172%2020.1094C10.6172%2019.5264%2011.0889%2019.0547%2011.6719%2019.0547ZM11.6719%2023.2734H24.3281C24.9111%2023.2734%2025.3828%2023.7452%2025.3828%2024.3281C25.3828%2024.9111%2024.9111%2025.3828%2024.3281%2025.3828H11.6719C11.0889%2025.3828%2010.6172%2024.9111%2010.6172%2024.3281C10.6172%2023.7452%2011.0889%2023.2734%2011.6719%2023.2734ZM11.6719%2027.4922H20.1094C20.6923%2027.4922%2021.1641%2027.9639%2021.1641%2028.5469C21.1641%2029.1298%2020.6923%2029.6016%2020.1094%2029.6016H11.6719C11.0889%2029.6016%2010.6172%2029.1298%2010.6172%2028.5469C10.6172%2027.9639%2011.0889%2027.4922%2011.6719%2027.4922Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M24.3281%208.43744H31.093L23.2734%200.61792V7.38276C23.2734%207.96466%2023.7462%208.43744%2024.3281%208.43744Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-size: 36px 36px;
}

.mwform-checkbox-field:has(.form-check-icon-card):has([value=promotion]) > label::before {
  background-color: #B6954D;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2237%22%20height%3D%2238%22%20viewBox%3D%220%200%2037%2038%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.9137%2028.0576L16.3503%2032.524C16.6622%2032.9294%2016.6075%2033.5034%2016.2287%2033.8471L15.0468%2034.9196C14.8357%2035.1111%2014.5817%2035.1963%2014.2979%2035.1707C14.0141%2035.145%2013.7803%2035.015%2013.6061%2034.7895L9.796%2029.8576L12.9137%2028.0576ZM31.7655%2016.595H35.2656C35.8254%2016.595%2036.2785%2016.1378%2036.2773%2015.5787C36.2761%2015.0188%2035.8196%2014.5664%2035.2605%2014.5664H31.7605C31.2006%2014.5664%2030.7476%2015.0237%2030.7488%2015.5827C30.7499%2016.1427%2031.2064%2016.595%2031.7655%2016.595ZM27.6111%207.37955L29.3611%204.34844C29.6407%203.86419%2029.4773%203.2427%2028.9929%202.96173C28.5093%202.6812%2027.8868%202.84488%2027.6069%203.32971L25.8569%206.36082C25.5773%206.84507%2025.7408%207.46656%2026.2251%207.74753C26.7087%208.02806%2027.3311%207.86438%2027.6111%207.37955ZM31.6605%2011.0103L34.534%209.35132C35.0218%209.0697%2035.1889%208.44612%2034.9073%207.95825C34.6257%207.47046%2034.0021%207.30338%2033.5142%207.585L30.6408%209.24407C30.153%209.52569%2029.9859%2010.1493%2030.2676%2010.6371C30.5492%2011.1249%2031.1728%2011.2919%2031.6605%2011.0103ZM27.1412%2015.5752L30.5305%2021.4456C31.1668%2022.5477%2030.7856%2023.9701%2029.6835%2024.6065C28.655%2025.2003%2027.3477%2024.908%2026.6605%2023.9707H26.6603C22.9087%2023.4%2018.0219%2024.013%2013.1625%2025.9073L8.49081%2017.8158C12.5625%2014.5581%2015.5461%2010.6532%2016.9278%207.11889L16.9278%207.11874C16.4425%206.05008%2016.8412%204.75652%2017.8777%204.15809C18.9799%203.52172%2020.4022%203.90292%2021.0386%205.00505L24.4278%2010.8755C24.5243%2010.8009%2024.6269%2010.7319%2024.7354%2010.6692C26.045%209.91311%2027.7197%2010.3618%2028.4758%2011.6715C29.2319%2012.9811%2028.7832%2014.6558%2027.4735%2015.4119C27.3651%2015.4746%2027.254%2015.5289%2027.1412%2015.5752ZM11.9878%2026.7633L7.09262%2018.2846L3.20104%2020.5315C0.836363%2021.8967%200.0187499%2024.9484%201.38392%2027.313L1.38399%2027.3131C2.74923%2029.6777%205.80087%2030.4954%208.16554%2029.1302L12.0571%2026.8834L11.9878%2026.7633Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-size: 37px 37px;
}

.mwform-checkbox-field:has(.form-check-icon-card):has([value=streaming]) > label::before {
  background-color: #EC74A4;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_940_2428)%22%3E%3Cpath%20d%3D%22M25.6769%205.4248C24.8614%205.4248%2024.198%206.08974%2024.198%206.90712V25.1025C24.2726%2027.0696%2027.0874%2027.0625%2027.1615%2025.1025V6.90712C27.1615%206.0898%2026.4956%205.4248%2025.6769%205.4248Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M15.9999%205.4248C15.1813%205.4248%2014.5154%206.08974%2014.5154%206.90712V25.1025C14.5902%2027.0668%2017.4104%2027.0652%2017.4846%2025.1025V6.90712C17.4846%206.0898%2016.8186%205.4248%2015.9999%205.4248Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M20.8384%2010.8447C20.023%2010.8447%2019.3596%2011.5097%2019.3596%2012.327V19.6825C19.4342%2021.6497%2022.2489%2021.6424%2022.3231%2019.6825V12.327C22.3231%2011.5097%2021.6571%2010.8447%2020.8384%2010.8447Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M30.5155%2013.5547C29.7001%2013.5547%2029.0366%2014.2196%2029.0366%2015.037V16.9724C29.1112%2018.9395%2031.9259%2018.9323%2032.0001%2016.9724V15.037C32.0001%2014.2196%2031.3341%2013.5547%2030.5155%2013.5547Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M1.48462%2013.5547C0.666%2013.5547%200%2014.2196%200%2015.0369V16.9723C0.074875%2018.9337%202.88956%2018.938%202.96344%2016.9723V15.0369C2.96344%2014.2196%202.30006%2013.5547%201.48462%2013.5547Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M6.323%208.13477C5.50438%208.13477%204.83838%208.7997%204.83838%209.61708V22.3925C4.91325%2024.354%207.728%2024.3581%207.80194%2022.3925V9.61708C7.80194%208.7997%207.1385%208.13477%206.323%208.13477Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M11.1616%200.00463867C10.3429%200.00463867%209.677%200.669576%209.677%201.48695V30.5223C9.75181%2032.4838%2012.5665%2032.4879%2012.6404%2030.5223V1.48695C12.6404%200.669576%2011.977%200.00463867%2011.1616%200.00463867Z%22%20fill%3D%22white%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_940_2428%22%3E%3Crect%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
  background-size: 32px 32px;
}

.mwform-checkbox-field:has(.form-check-icon-card):has([value=register]) > label::before {
  background-color: #8B9003;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2235%22%20height%3D%2236%22%20viewBox%3D%220%200%2035%2036%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_940_2454)%22%3E%3Cpath%20d%3D%22M22.8457%207.21216V9.35862C22.8457%2011.0549%2021.4657%2012.4349%2019.7695%2012.4349H8.78613C7.08989%2012.4349%205.70989%2011.0549%205.70989%209.35862V7.21223C4.35962%207.59607%203.36743%208.83963%203.36743%2010.3113V32.2779C3.36743%2034.0546%204.81286%2035.5%206.58949%2035.5H21.9662C23.7428%2035.5%2025.1883%2034.0546%2025.1883%2032.2779V10.3112C25.1883%208.83956%2024.1961%207.59601%2022.8457%207.21216ZM9.88449%2030.0083C9.31846%2030.0083%208.85907%2029.5489%208.85907%2028.9829C8.85907%2028.4168%209.31846%2027.9575%209.88449%2027.9575C10.4505%2027.9575%2010.9099%2028.4168%2010.9099%2028.9829C10.9099%2029.5489%2010.4505%2030.0083%209.88449%2030.0083ZM9.88449%2025.6149C9.31846%2025.6149%208.85907%2025.1555%208.85907%2024.5895C8.85907%2024.0235%209.31846%2023.5641%209.88449%2023.5641C10.4505%2023.5641%2010.9099%2024.0235%2010.9099%2024.5895C10.9099%2025.1555%2010.4505%2025.6149%209.88449%2025.6149ZM14.2778%2030.0083C13.7118%2030.0083%2013.2524%2029.5489%2013.2524%2028.9829C13.2524%2028.4168%2013.7118%2027.9575%2014.2778%2027.9575C14.8439%2027.9575%2015.3033%2028.4168%2015.3033%2028.9829C15.3033%2029.5489%2014.8439%2030.0083%2014.2778%2030.0083ZM14.2778%2025.6149C13.7118%2025.6149%2013.2524%2025.1555%2013.2524%2024.5895C13.2524%2024.0235%2013.7118%2023.5641%2014.2778%2023.5641C14.8439%2023.5641%2015.3033%2024.0235%2015.3033%2024.5895C15.3033%2025.1555%2014.8439%2025.6149%2014.2778%2025.6149ZM18.6711%2030.0083C18.1051%2030.0083%2017.6457%2029.5489%2017.6457%2028.9829C17.6457%2028.4168%2018.1051%2027.9575%2018.6711%2027.9575C19.2372%2027.9575%2019.6965%2028.4168%2019.6965%2028.9829C19.6965%2029.5489%2019.2372%2030.0083%2018.6711%2030.0083ZM18.6711%2025.6149C18.1051%2025.6149%2017.6457%2025.1555%2017.6457%2024.5895C17.6457%2024.0235%2018.1051%2023.5641%2018.6711%2023.5641C19.2372%2023.5641%2019.6965%2024.0235%2019.6965%2024.5895C19.6965%2025.1555%2019.2372%2025.6149%2018.6711%2025.6149ZM20.7949%2020.1962C20.7949%2020.7625%2020.3358%2021.2216%2019.7695%2021.2216H8.78613C8.21983%2021.2216%207.76072%2020.7625%207.76072%2020.1962V15.8028C7.76072%2015.2365%208.21983%2014.7774%208.78613%2014.7774H19.7695C20.3358%2014.7774%2020.7949%2015.2365%2020.7949%2015.8028V20.1962Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M9.81152%2016.8284H18.744V19.171H9.81152V16.8284Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M27.2391%202.55005C25.4369%202.55005%2023.889%203.63569%2023.2114%205.1883C25.5198%205.74948%2027.2391%207.83285%2027.2391%2010.3114V19.7317L28.4103%2019.1461L30.1485%2020.0152C30.5423%2020.2119%2031.0274%2020.1389%2031.3477%2019.8077C31.5356%2019.6135%2031.6325%2019.3486%2031.6325%2019.0784V6.94334C31.6324%204.517%2029.6655%202.55005%2027.2391%202.55005Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M8.78616%2010.3842H19.7695C20.3358%2010.3842%2020.7949%209.92507%2020.7949%209.35876V6.9433C20.7949%203.57023%2023.4%200.794567%2026.7038%200.521602L13.6621%200.5C10.3619%200.776589%207.76074%203.5504%207.76074%206.92087V9.33634V9.35876C7.76074%209.92507%208.21985%2010.3842%208.78616%2010.3842Z%22%20fill%3D%22white%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_940_2454%22%3E%3Crect%20width%3D%2235%22%20height%3D%2235%22%20fill%3D%22white%22%20transform%3D%22translate(0%200.5)%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
  background-size: 35px 35px;
}

.mwform-checkbox-field:has(.form-check-icon-card):has([value=announce]) > label::before {
  background-color: #C27355;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2234%22%20height%3D%2234%22%20viewBox%3D%220%200%2034%2034%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M27.8932%2017.5742C27.8932%2016.9114%2027.3559%2016.374%2026.6931%2016.374C26.0303%2016.374%2025.4929%2016.9114%2025.4929%2017.5742C25.4922%2022.2647%2021.6892%2026.0666%2016.9987%2026.0659C12.3091%2026.0652%208.50767%2022.2637%208.50697%2017.5742C8.50697%2016.9114%207.96964%2016.374%207.30683%2016.374C6.64402%2016.374%206.10669%2016.9114%206.10669%2017.5742C6.11302%2023.1232%2010.2852%2027.7826%2015.7999%2028.3994V31.5998H11.4354C10.7725%2031.5998%2010.2352%2032.1371%2010.2352%2032.7999C10.2352%2033.4627%2010.7725%2034.0001%2011.4354%2034.0001H22.5646C23.2274%2034.0001%2023.7648%2033.4627%2023.7648%2032.7999C23.7648%2032.1371%2023.2274%2031.5998%2022.5646%2031.5998H18.2001V28.3994C23.7147%2027.7826%2027.8869%2023.1232%2027.8932%2017.5742Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M16.9999%200C13.3037%200%2010.3071%202.99644%2010.3071%206.69282V17.5301C10.3115%2021.2246%2013.3054%2024.2185%2016.9999%2024.2229C20.6944%2024.2185%2023.6883%2021.2246%2023.6928%2017.5301V6.69282C23.6928%202.99644%2020.6963%200%2016.9999%200Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-size: 34px 34px;
}

.mwform-checkbox-field:has(.form-check-icon-card):has([value=broadcast]) > label::before {
  background-color: #446447;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2235%22%20height%3D%2236%22%20viewBox%3D%220%200%2035%2036%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M29.0138%2031.3882C29.2821%2031.3882%2029.5499%2031.2837%2029.751%2031.0756C33.1359%2027.5757%2035%2022.9319%2035%2017.9995C35%2013.0682%2033.1365%208.42511%2029.7529%204.92545C29.3594%204.51837%2028.7103%204.5073%2028.303%204.90105C27.8959%205.29466%2027.885%205.9438%2028.2786%206.35095C31.2905%209.46616%2032.9492%2013.603%2032.9492%2017.9995C32.9492%2022.397%2031.2899%2026.5345%2028.2769%2029.6499C27.8832%2030.057%2027.894%2030.7062%2028.3011%2031.0998C28.5002%2031.2924%2028.7572%2031.3882%2029.0138%2031.3882Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M25.5974%2027.8554C25.8656%2027.8554%2026.1335%2027.7509%2026.3346%2027.5429C28.8055%2024.9881%2030.1663%2021.5987%2030.1663%2017.9992C30.1663%2014.4007%2028.8062%2011.0122%2026.3366%208.4575C25.943%208.05029%2025.2938%208.03935%2024.8867%208.43296C24.4795%208.82658%2024.4686%209.47572%2024.8622%209.88287C26.9601%2012.0531%2028.1155%2014.9354%2028.1155%2017.9992C28.1155%2021.0639%2026.9596%2023.9468%2024.8605%2026.1173C24.4668%2026.5243%2024.4777%2027.1735%2024.8847%2027.5672C25.0837%2027.7596%2025.3408%2027.8554%2025.5974%2027.8554Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M22.1813%2024.323C22.4495%2024.323%2022.7173%2024.2184%2022.9184%2024.0104C24.4753%2022.4006%2025.3328%2020.2657%2025.3328%2017.999C25.3328%2015.7335%2024.4761%2013.5994%2022.9205%2011.9898C22.5271%2011.5827%2021.8779%2011.5714%2021.4706%2011.9652C21.0634%2012.3587%2021.0523%2013.0078%2021.4458%2013.4151C22.6299%2014.6402%2023.282%2016.2681%2023.282%2017.9991C23.282%2019.7309%2022.6294%2021.3594%2021.4443%2022.5849C21.0505%2022.9919%2021.0614%2023.6411%2021.4685%2024.0348C21.6676%2024.2272%2021.9246%2024.323%2022.1813%2024.323Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M5.98815%2031.3895C6.24491%2031.3895%206.50187%2031.2938%206.701%2031.1011C7.10802%2030.7074%207.11875%2030.0582%206.725%2029.6512C3.71083%2026.5355%202.05086%2022.3974%202.05086%2017.999C2.05086%2013.6015%203.71014%209.46402%206.72322%206.34861C7.1169%205.94153%207.1061%205.29239%206.69895%204.89871C6.2918%204.50489%205.64266%204.5159%205.24905%204.92291C1.86424%208.42277%207.62939e-05%2013.0666%207.62939e-05%2017.999C7.62939e-05%2022.9325%201.86492%2027.577%205.2511%2031.0771C5.45221%2031.285%205.72005%2031.3895%205.98815%2031.3895Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M9.40443%2027.8571C9.66119%2027.8571%209.91822%2027.7613%2010.1173%2027.5686C10.5243%2027.1748%2010.535%2026.5257%2010.1413%2026.1187C8.04107%2023.9482%206.8845%2021.0645%206.8845%2017.9989C6.8845%2014.9343%208.04046%2012.0512%2010.1395%209.88084C10.5332%209.47376%2010.5224%208.82462%2010.1153%208.43094C9.70815%208.03712%209.05901%208.04812%208.6654%208.45513C6.19455%2011.0101%204.83372%2014.3994%204.83372%2017.9989C4.83372%2021.5995%206.19523%2024.9897%208.66738%2027.5448C8.86849%2027.7526%209.13632%2027.8571%209.40443%2027.8571Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M12.8207%2024.3249C13.0775%2024.3249%2013.3346%2024.2291%2013.5337%2024.0363C13.9406%2023.6425%2013.9512%2022.9933%2013.5574%2022.5864C12.3713%2021.3608%2011.7181%2019.7317%2011.7181%2017.9991C11.7181%2016.2672%2012.3707%2014.6387%2013.5558%2013.4133C13.9496%2013.0062%2013.9387%2012.3571%2013.5316%2011.9634C13.1245%2011.5696%2012.4753%2011.5806%2012.0817%2011.9877C10.5248%2013.5975%209.66739%2015.7324%209.66739%2017.9991C9.66739%2020.2669%2010.5256%2022.4026%2012.0839%2024.0126C12.2849%2024.2204%2012.5526%2024.3249%2012.8207%2024.3249Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M17.5001%2021.0762C19.1816%2021.0762%2020.5496%2019.6962%2020.5496%2018C20.5496%2016.3038%2019.1816%2014.9238%2017.5001%2014.9238C15.8186%2014.9238%2014.4507%2016.3038%2014.4507%2018C14.4507%2019.6962%2015.8186%2021.0762%2017.5001%2021.0762Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-size: 35px 35px;
}

.mwform-checkbox-field:has(.form-check-icon-card):has([value=transport]) > label::before {
  background-color: #70BDB9;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2229%22%20height%3D%2230%22%20viewBox%3D%220%200%2029%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_940_2538)%22%3E%3Cpath%20d%3D%22M14.5001%200.5C7.75374%200.5%202.28955%201.26318%202.28955%206.60524V21.8684C2.28955%2023.2192%202.88481%2024.4174%203.81584%2025.2568V27.9737C3.81584%2028.8132%204.50269%2029.5%205.34214%2029.5H6.8685C7.71561%2029.5%208.3948%2028.8132%208.3948%2027.9737V26.4474H20.6054V27.9737C20.6054%2028.8132%2021.2845%2029.5%2022.1317%2029.5H23.6579C24.4974%2029.5%2025.1842%2028.8132%2025.1842%2027.9737V25.2569C26.1153%2024.4174%2026.7105%2023.2193%2026.7105%2021.8685V6.60524C26.7106%201.26318%2021.2464%200.5%2014.5001%200.5ZM7.63168%2023.3948C6.36482%2023.3948%205.34221%2022.3721%205.34221%2021.1053C5.34221%2019.8384%206.36482%2018.8158%207.63168%2018.8158C8.89855%2018.8158%209.92116%2019.8384%209.92116%2021.1053C9.92116%2022.3721%208.89848%2023.3948%207.63168%2023.3948ZM21.3685%2023.3948C20.1017%2023.3948%2019.0791%2022.3721%2019.0791%2021.1053C19.0791%2019.8384%2020.1017%2018.8158%2021.3685%2018.8158C22.6354%2018.8158%2023.658%2019.8384%2023.658%2021.1053C23.658%2022.3721%2022.6353%2023.3948%2021.3685%2023.3948ZM23.658%2014.2369H5.34221V6.60524H23.658V14.2369Z%22%20fill%3D%22white%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_940_2538%22%3E%3Crect%20width%3D%2229%22%20height%3D%2229%22%20fill%3D%22white%22%20transform%3D%22translate(0%200.5)%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
  background-size: 29px 29px;
}

.mwform-checkbox-field:has(.form-check-icon-card):has([value=disaster]) > label::before {
  background-color: #761F1F;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_940_2559)%22%3E%3Cpath%20d%3D%22M31.3351%2023.9968L20.0311%203.21706C18.2149%200.159496%2013.7876%200.155434%2011.9689%203.21706L0.66543%2023.9968C-1.19119%2027.1211%201.05662%2031.0775%204.69555%2031.0775H27.3041C30.9399%2031.0775%2033.1917%2027.1243%2031.3351%2023.9968ZM16%2027.3275C14.9664%2027.3275%2014.125%2026.4861%2014.125%2025.4525C14.125%2024.4189%2014.9664%2023.5775%2016%2023.5775C17.0336%2023.5775%2017.875%2024.4189%2017.875%2025.4525C17.875%2026.4861%2017.0336%2027.3275%2016%2027.3275ZM17.875%2019.8275C17.875%2020.8611%2017.0336%2021.7025%2016%2021.7025C14.9664%2021.7025%2014.125%2020.8611%2014.125%2019.8275V10.4525C14.125%209.41887%2014.9664%208.5775%2016%208.5775C17.0336%208.5775%2017.875%209.41887%2017.875%2010.4525V19.8275Z%22%20fill%3D%22white%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_940_2559%22%3E%3Crect%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
  background-size: 32px 32px;
}

.mwform-checkbox-field:has(.form-check-icon-card):has([value=others]) > label::before {
  background-color: #8B8B8B;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2036%2036%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_940_2575)%22%3E%3Cpath%20d%3D%22M18%200C8.05816%200%200%208.05948%200%2018C0%2027.9405%208.05816%2036%2018%2036C27.9405%2036%2036%2027.9405%2036%2018C36%208.05948%2027.9405%200%2018%200ZM9%2021.0001C7.34177%2021.0001%205.99985%2019.6569%205.99985%2018C5.99985%2016.3445%207.34177%2014.9999%209%2014.9999C10.6569%2014.9999%2012.0001%2016.3445%2012.0001%2018C12.0001%2019.6569%2010.6569%2021.0001%209%2021.0001ZM18%2021.0001C16.3418%2021.0001%2014.9999%2019.6569%2014.9999%2018C14.9999%2016.3445%2016.3418%2014.9999%2018%2014.9999C19.6569%2014.9999%2021.0001%2016.3445%2021.0001%2018C21.0001%2019.6569%2019.6569%2021.0001%2018%2021.0001ZM27%2021.0001C25.3418%2021.0001%2023.9999%2019.6569%2023.9999%2018C23.9999%2016.3445%2025.3418%2014.9999%2027%2014.9999C28.6569%2014.9999%2030.0001%2016.3445%2030.0001%2018C30.0001%2019.6569%2028.6569%2021.0001%2027%2021.0001Z%22%20fill%3D%22white%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_940_2575%22%3E%3Crect%20width%3D%2236%22%20height%3D%2236%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
  background-size: 36px 36px;
}

.form-check-icon-card {
  display: none;
}

.form-check-icon-card + .mwform-checkbox-field-text {
  display: flex;
  align-items: center;
  padding: 16px;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.1em;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .form-check-icon-card + .mwform-checkbox-field-text {
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
    text-align: center;
    padding: 12px 4px;
  }
}

.form-check-list-card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .form-check-list-card-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

.mwform-checkbox-field:has(.form-check-list-card) {
  margin: 0 !important;
}

.mwform-checkbox-field:has(.form-check-list-card) > label {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 52px auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  background-color: #FFF;
  border-radius: 6px;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.1490196078);
  transition: all 0.1s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .mwform-checkbox-field:has(.form-check-list-card) > label {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    padding: 10px 16px;
  }
}
.mwform-checkbox-field:has(.form-check-list-card) > label::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: center/cover no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2231%22%20height%3D%2230%22%20viewBox%3D%220%200%2031%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20x%3D%220.5%22%20width%3D%2230%22%20height%3D%2230%22%20rx%3D%2215%22%20fill%3D%22%23F1F1F1%22%2F%3E%3Cpath%20d%3D%22M6.5%2015.3911L12.732%2021L24.5%209%22%20stroke%3D%22white%22%20stroke-width%3D%224%22%2F%3E%3C%2Fsvg%3E");
  transition: all 0.1s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .mwform-checkbox-field:has(.form-check-list-card) > label::before {
    width: 20px;
    height: 20px;
  }
}
.mwform-checkbox-field:has(.form-check-list-card) > label::after {
  content: "";
  grid-column: span 2;
  width: 100%;
  height: 100%;
  padding-top: 10px;
  border-top: solid 1px #BBB;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 7%;
  color: #555;
  white-space: pre-wrap;
}
@media only screen and (max-width: 768px) {
  .mwform-checkbox-field:has(.form-check-list-card) > label::after {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 3%;
  }
}
@media (any-hover: hover) {
  .mwform-checkbox-field:has(.form-check-list-card) > label {
    cursor: pointer;
  }
  .mwform-checkbox-field:has(.form-check-list-card) > label:hover {
    background-color: #F7F7F7;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3019607843);
  }
  .mwform-checkbox-field:has(.form-check-list-card) > label:hover::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20width%3D%2230%22%20height%3D%2230%22%20rx%3D%2215%22%20fill%3D%22%23D9D9D9%22%2F%3E%3Cpath%20d%3D%22M6%2015.3911L12.232%2021L24%209%22%20stroke%3D%22white%22%20stroke-width%3D%224%22%2F%3E%3C%2Fsvg%3E");
  }
}

.mwform-checkbox-field:has(.form-check-list-card:checked) > label:hover {
  background-color: #FFF;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.1490196078);
}
.mwform-checkbox-field:has(.form-check-list-card:checked) > label::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20width%3D%2230%22%20height%3D%2230%22%20rx%3D%2215%22%20fill%3D%22%23F67C4D%22%2F%3E%3Cpath%20d%3D%22M6%2015.3911L12.232%2021L24%209%22%20stroke%3D%22white%22%20stroke-width%3D%224%22%2F%3E%3C%2Fsvg%3E");
}

.mwform-checkbox-field:has(.form-check-list-card):has([value=cx]) > label::after {
  content: "・デジタルプロモーション\a・キャンペーン\a・デジタルサイネージ\a・⾳声対話\a・チャットボット\a・AI接客\a・電話自動対応、発信等\a・発信等";
}

.mwform-checkbox-field:has(.form-check-list-card):has([value=entertainment]) > label::after {
  content: "・ゲーム\a・アニメ\a・アバター\a・メタバース\a・テレビ\a・ラジオ\a・動画配信等";
}

.mwform-checkbox-field:has(.form-check-list-card):has([value=device]) > label::after {
  content: "・POSレジ\a・券売機\a・キオスク端末\a・ロボット\a・家電\a・OA機器\a・ナビゲーション等";
}

.mwform-checkbox-field:has(.form-check-list-card):has([value=learning]) > label::after {
  content: "・e-ラーニング\a・研修\a・語学教育\a・学習ソフト\a・教材\a・マニュアル等";
}

.mwform-checkbox-field:has(.form-check-list-card):has([value=announce]) > label::after {
  content: "・受付\a・アナウンス\a・観光案内\a・施設内放送\a・車内放送\a・防災放送\a・消防指令\a・ケーブルテレビ等";
}

.mwform-checkbox-field:has(.form-check-list-card):has([value=reading]) > label::after {
  content: "・HP読み上げ\a・WEBコンテンツ読み上げ\a・電子書籍\a・スマートフォンアプリ等";
}

.form-check-list-card {
  display: none;
}

.form-check-list-card + .mwform-checkbox-field-text {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 1px;
  white-space: pre-wrap;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .form-check-list-card + .mwform-checkbox-field-text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    white-space: normal;
  }
}

.form-check-list-containers {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-check-list-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .form-check-list-container {
    gap: 10px;
  }
}

.form-check-list-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  width: 100%;
  padding: 5px 10px;
}
@media only screen and (max-width: 768px) {
  .form-check-list-heading {
    padding: 15px 10px;
  }
}
.form-check-list-heading::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: center/contain no-repeat;
}
@media only screen and (max-width: 768px) {
  .form-check-list-heading::before {
    width: 30px;
    height: 30px;
  }
}

.form-check-list-heading-narration {
  background-color: rgba(246, 124, 77, 0.1490196078);
}
.form-check-list-heading-narration::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20viewBox%3D%220%200%2050%2050%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M40.2846%205H9.71465C7.11468%205%205%207.37785%205%2010.2932V30.9608C5.00954%2032.3786%205.51141%2033.7341%206.3954%2034.7296C7.27939%2035.7251%208.47321%2036.2794%209.71465%2036.2703H19.7628V42.9315H13.8827C13.6403%2042.9317%2013.4078%2043.0414%2013.236%2043.2367C13.0641%2043.432%2012.9669%2043.697%2012.9655%2043.9739C12.9664%2044.1101%2012.991%2044.2447%2013.0377%2044.3701C13.0843%2044.4955%2013.1522%2044.6092%2013.2375%2044.7046C13.3227%2044.7999%2013.4236%2044.8749%2013.5343%2044.9256C13.645%2044.9763%2013.7634%2045.0016%2013.8827%2044.9999H36.1167C36.236%2045.0016%2036.3544%2044.9763%2036.4651%2044.9256C36.5759%2044.8749%2036.6767%2044.7999%2036.762%2044.7046C36.8472%2044.6092%2036.9151%2044.4955%2036.9618%2044.3701C37.0084%2044.2447%2037.033%2044.1101%2037.034%2043.9739C37.0325%2043.697%2036.9353%2043.432%2036.7635%2043.2367C36.5916%2043.0414%2036.3591%2042.9317%2036.1167%2042.9315H30.2372V36.2703H40.2846C42.8847%2036.2703%2045%2033.8924%2045%2030.9608V10.2932C45%207.37785%2042.8847%205%2040.2846%205ZM43.1652%2010.2932V24.0554H34.282V7.05205H40.2846C41.0423%207.04843%2041.7705%207.38709%2042.3103%207.99426C42.8501%208.60143%2043.1578%209.4279%2043.1662%2010.2932H43.1652ZM9.71465%207.05205H32.6135V24.0554H6.83432V10.2932C6.84256%209.42808%207.15002%208.60175%207.68961%207.99458C8.22921%207.38741%208.95716%207.0486%209.71465%207.05205ZM28.4028%2042.9315H21.5973V36.2703H28.4028V42.9315ZM40.2846%2034.2181H9.71465C8.95489%2034.2208%208.22516%2033.8796%207.68526%2033.2691C7.14536%2032.6586%206.83928%2031.8285%206.83404%2030.9608V25.9283L43.1654%2025.9446V30.9608C43.16%2031.8285%2042.8538%2032.6583%2042.3139%2033.2688C41.774%2033.8792%2041.0444%2034.2206%2040.2846%2034.2181ZM25.991%2019.5928C26.0861%2019.5949%2026.1807%2019.5754%2026.2692%2019.5355C26.3577%2019.4956%2026.4384%2019.4361%2026.5067%2019.3604C26.5749%2019.2847%2026.6293%2019.1944%2026.6668%2019.0945C26.7043%2018.9946%2026.724%2018.8871%2026.7249%2018.7784V12.9152C26.719%2012.6975%2026.6391%2012.4908%2026.5021%2012.3392C26.3651%2012.1875%2026.1818%2012.1028%2025.991%2012.1028C25.8002%2012.1028%2025.617%2012.1875%2025.48%2012.3392C25.343%2012.4908%2025.2631%2012.6975%2025.2571%2012.9152V18.7784C25.258%2018.8871%2025.2778%2018.9944%2025.3152%2019.0943C25.3527%2019.1942%2025.4071%2019.2847%2025.4753%2019.3604C25.5436%2019.4361%2025.6243%2019.4956%2025.7128%2019.5355C25.8013%2019.5754%2025.8958%2019.5949%2025.991%2019.5928ZM28.4656%2018.127C28.5607%2018.1291%2028.6553%2018.1096%2028.7438%2018.0697C28.8323%2018.0298%2028.913%2017.9703%2028.9813%2017.8946C29.0495%2017.8189%2029.104%2017.7286%2029.1414%2017.6287C29.1789%2017.5288%2029.1987%2017.4213%2029.1996%2017.3126V14.381C29.1969%2014.1608%2029.1184%2013.9506%2028.981%2013.7959C28.8437%2013.6412%2028.6585%2013.5545%2028.4656%2013.5545C28.2728%2013.5545%2028.0876%2013.6412%2027.9503%2013.7959C27.8129%2013.9506%2027.7344%2014.1608%2027.7317%2014.381V17.3126C27.7326%2017.4213%2027.7524%2017.5286%2027.7898%2017.6285C27.8273%2017.7284%2027.8817%2017.8189%2027.95%2017.8946C28.0182%2017.9703%2028.0989%2018.0298%2028.1874%2018.0697C28.2759%2018.1096%2028.3704%2018.1291%2028.4656%2018.127ZM11.1433%2018.127C11.2384%2018.1291%2011.3329%2018.1096%2011.4215%2018.0697C11.51%2018.0298%2011.5907%2017.9703%2011.6589%2017.8946C11.7272%2017.8189%2011.7816%2017.7284%2011.8191%2017.6285C11.8566%2017.5286%2011.8763%2017.4213%2011.8772%2017.3126V14.381C11.8772%2014.1587%2011.7999%2013.9455%2011.6623%2013.7883C11.5246%2013.6311%2011.3379%2013.5427%2011.1433%2013.5427C10.9486%2013.5427%2010.7619%2013.6311%2010.6243%2013.7883C10.4866%2013.9455%2010.4093%2014.1587%2010.4093%2014.381V17.3126C10.4102%2017.4213%2010.4299%2017.5288%2010.4674%2017.6287C10.5049%2017.7286%2010.5593%2017.8189%2010.6276%2017.8946C10.6958%2017.9703%2010.7765%2018.0298%2010.865%2018.0697C10.9536%2018.1096%2011.0481%2018.1291%2011.1433%2018.127ZM23.5163%2020.5048C23.6115%2020.5069%2023.706%2020.4875%2023.7946%2020.4477C23.8831%2020.4078%2023.9638%2020.3483%2024.032%2020.2725C24.1003%2020.1968%2024.1547%2020.1063%2024.1922%2020.0065C24.2297%2019.9066%2024.2494%2019.7991%2024.2503%2019.6904V12.0033C24.2476%2011.783%2024.1691%2011.5726%2024.0318%2011.418C23.8944%2011.2633%2023.7093%2011.1767%2023.5164%2011.1767C23.3235%2011.1767%2023.1384%2011.2633%2023.001%2011.418C22.8637%2011.5726%2022.7852%2011.783%2022.7825%2012.0033V19.6904C22.7834%2019.7991%2022.8032%2019.9066%2022.8406%2020.0065C22.8781%2020.1063%2022.9325%2020.1967%2023.0007%2020.2724C23.069%2020.3481%2023.1497%2020.4076%2023.2382%2020.4475C23.3267%2020.4874%2023.4212%2020.5068%2023.5163%2020.5048ZM21.0417%2022.671C21.1369%2022.6731%2021.2314%2022.6536%2021.3199%2022.6137C21.4084%2022.5739%2021.4891%2022.5142%2021.5573%2022.4385C21.6256%2022.3628%2021.68%2022.2724%2021.7175%2022.1725C21.7549%2022.0727%2021.7747%2021.9653%2021.7756%2021.8567V9.837C21.7729%209.61673%2021.6944%209.40655%2021.557%209.25186C21.4197%209.09718%2021.2345%209.01043%2021.0417%209.01043C20.8488%209.01043%2020.6636%209.09718%2020.5263%209.25186C20.3889%209.40655%2020.3104%209.61673%2020.3077%209.837V21.8567C20.3086%2021.9653%2020.3284%2022.0726%2020.3659%2022.1725C20.4033%2022.2724%2020.4578%2022.3629%2020.526%2022.4386C20.5943%2022.5144%2020.675%2022.5739%2020.7635%2022.6137C20.852%2022.6536%2020.9466%2022.6731%2021.0417%2022.671ZM13.6186%2019.5928C13.7137%2019.5949%2013.8083%2019.5754%2013.8968%2019.5355C13.9853%2019.4956%2014.066%2019.4361%2014.1342%2019.3604C14.2024%2019.2847%2014.2569%2019.1942%2014.2943%2019.0943C14.3318%2018.9944%2014.3515%2018.8871%2014.3524%2018.7784V12.9152C14.3465%2012.6975%2014.2666%2012.4908%2014.1296%2012.3392C13.9926%2012.1875%2013.8093%2012.1028%2013.6185%2012.1028C13.4277%2012.1028%2013.2445%2012.1875%2013.1075%2012.3392C12.9705%2012.4908%2012.8905%2012.6975%2012.8846%2012.9152V18.7784C12.8855%2018.8871%2012.9053%2018.9944%2012.9428%2019.0943C12.9802%2019.1942%2013.0347%2019.2847%2013.1029%2019.3604C13.1712%2019.4361%2013.2519%2019.4956%2013.3404%2019.5355C13.4289%2019.5754%2013.5235%2019.5949%2013.6186%2019.5928ZM16.0932%2020.5048C16.1883%2020.5068%2016.2829%2020.4874%2016.3714%2020.4475C16.4599%2020.4076%2016.5406%2020.3481%2016.6088%2020.2724C16.6771%2020.1967%2016.7315%2020.1063%2016.7689%2020.0065C16.8064%2019.9066%2016.8261%2019.7991%2016.827%2019.6904V12.0033C16.8244%2011.783%2016.7459%2011.5726%2016.6085%2011.418C16.4712%2011.2633%2016.286%2011.1767%2016.0931%2011.1767C15.9002%2011.1767%2015.7151%2011.2633%2015.5778%2011.418C15.4404%2011.5726%2015.3619%2011.783%2015.3592%2012.0033V19.6904C15.3601%2019.799%2015.3799%2019.9065%2015.4173%2020.0063C15.4547%2020.1061%2015.5091%2020.1965%2015.5773%2020.2722C15.6454%2020.3479%2015.7261%2020.4074%2015.8145%2020.4473C15.9029%2020.4873%2015.9974%2020.5068%2016.0925%2020.5048H16.0932ZM18.5678%2022.671C18.6629%2022.6731%2018.7575%2022.6536%2018.846%2022.6137C18.9345%2022.5739%2019.0152%2022.5142%2019.0834%2022.4385C19.1517%2022.3628%2019.2061%2022.2724%2019.2435%2022.1725C19.281%2022.0727%2019.3008%2021.9653%2019.3017%2021.8567V9.837C19.299%209.61673%2019.2205%209.40655%2019.0831%209.25186C18.9458%209.09718%2018.7606%209.01043%2018.5677%209.01043C18.3749%209.01043%2018.1897%209.09718%2018.0524%209.25186C17.915%209.40655%2017.8365%209.61673%2017.8338%209.837V21.8567C17.8347%2021.9653%2017.8545%2022.0726%2017.8919%2022.1724C17.9293%2022.2722%2017.9837%2022.3626%2018.0518%2022.4383C18.12%2022.514%2018.2006%2022.5735%2018.289%2022.6134C18.3774%2022.6534%2018.4719%2022.673%2018.567%2022.671H18.5678ZM37.3061%2019.609C37.4151%2019.6095%2037.5232%2019.5856%2037.6242%2019.5384C37.7251%2019.4912%2037.817%2019.4217%2037.8944%2019.334C37.9719%2019.2463%2038.0334%2019.1421%2038.0756%2019.0272C38.1178%2018.9123%2038.1397%2018.789%2038.1402%2018.6644V12.2964C38.1402%2012.0437%2038.0523%2011.8013%2037.8958%2011.6226C37.7394%2011.444%2037.5272%2011.3435%2037.3059%2011.3435C37.0847%2011.3435%2036.8725%2011.444%2036.716%2011.6226C36.5596%2011.8013%2036.4717%2012.0437%2036.4717%2012.2964V18.6644C36.4727%2018.9158%2036.561%2019.1566%2036.7173%2019.3337C36.8736%2019.5108%2037.085%2019.6098%2037.3052%2019.609H37.3061ZM39.9623%2021.5798C40.1826%2021.5808%2040.3943%2021.4819%2040.5507%2021.3048C40.7071%2021.1276%2040.7955%2020.8868%2040.7964%2020.6352V10.3256C40.7964%2010.0729%2040.7085%209.83071%2040.5521%209.65203C40.3957%209.47335%2040.1835%209.3729%2039.9622%209.3729C39.741%209.3729%2039.5288%209.47335%2039.3723%209.65203C39.2159%209.83071%2039.128%2010.0729%2039.128%2010.3256V20.6352C39.1289%2020.8866%2039.2172%2021.1272%2039.3734%2021.3043C39.5296%2021.4814%2039.741%2021.5805%2039.9611%2021.5798H39.9623ZM40.0087%2029.4624H39.0105L38.2822%2027.9478C38.2272%2027.8369%2038.147%2027.7451%2038.0501%2027.682C37.9532%2027.6189%2037.8431%2027.5869%2037.7316%2027.5894H37.725C37.6123%2027.5892%2037.5016%2027.624%2037.4048%2027.69C37.308%2027.7559%2037.2286%2027.8507%2037.1753%2027.9642L35.9489%2030.6515L35.2043%2029.7067C35.145%2029.6317%2035.0728%2029.5714%2034.9922%2029.5294C34.9117%2029.4874%2034.8244%2029.4645%2034.7359%2029.4624H33.4489C33.283%2029.4636%2033.1242%2029.5396%2033.007%2029.6738C32.8899%2029.808%2032.8239%2029.9896%2032.8234%2030.1791C32.8239%2030.2721%2032.8406%2030.364%2032.8723%2030.4496C32.9041%2030.5352%2032.9504%2030.6128%2033.0085%2030.6779C33.0667%2030.743%2033.1355%2030.7944%2033.2111%2030.829C33.2867%2030.8635%2033.3675%2030.8806%2033.4489%2030.8794H34.4542L35.6189%2032.3616C35.6792%2032.4341%2035.7519%2032.4917%2035.8324%2032.5309C35.913%2032.5702%2035.9998%2032.5901%2036.0874%2032.5895H36.1644C36.2648%2032.5763%2036.3609%2032.5353%2036.4442%2032.47C36.5276%2032.4047%2036.5957%2032.3172%2036.6427%2032.2149L37.7447%2029.8045L38.086%2030.5048C38.1401%2030.6178%2038.2197%2030.712%2038.3166%2030.7779C38.4134%2030.8438%2038.524%2030.8788%2038.6367%2030.8794H40.0074C40.0888%2030.8806%2040.1697%2030.8635%2040.2453%2030.829C40.3209%2030.7944%2040.3897%2030.7431%2040.4479%2030.678C40.506%2030.6129%2040.5523%2030.5352%2040.5841%2030.4496C40.6159%2030.364%2040.6325%2030.2721%2040.633%2030.1791C40.6325%2029.9896%2040.5665%2029.808%2040.4494%2029.6738C40.3322%2029.5396%2040.1734%2029.4635%2040.0074%2029.4624H40.0087ZM18.3442%2029.4136H16.4136C16.2845%2028.9106%2016.0161%2028.469%2015.6488%2028.1549C15.2814%2027.8407%2014.8349%2027.671%2014.376%2027.671C13.917%2027.671%2013.4705%2027.8407%2013.1031%2028.1549C12.7358%2028.469%2012.4675%2028.9106%2012.3383%2029.4136H10.41C10.2474%2029.4136%2010.0914%2029.4874%209.97639%2029.6187C9.86139%2029.7501%209.79679%2029.9281%209.79679%2030.1139C9.79679%2030.2996%209.86139%2030.4778%209.97639%2030.6091C10.0914%2030.7405%2010.2474%2030.8143%2010.41%2030.8143H12.3394C12.4686%2031.3173%2012.7369%2031.7587%2013.1043%2032.0729C13.4716%2032.387%2013.9182%2032.5569%2014.3771%2032.5569C14.836%2032.5569%2015.2826%2032.387%2015.6499%2032.0729C16.0173%2031.7587%2016.2856%2031.3173%2016.4148%2030.8143H18.3436C18.4242%2030.8143%2018.5039%2030.796%2018.5783%2030.7607C18.6527%2030.7255%2018.7202%2030.6739%2018.7771%2030.6088C18.834%2030.5438%2018.8792%2030.4665%2018.9099%2030.3815C18.9407%2030.2966%2018.9565%2030.2055%2018.9565%2030.1136C18.9564%2030.0216%2018.9405%2029.9305%2018.9097%2029.8456C18.8788%2029.7606%2018.8336%2029.6834%2018.7766%2029.6184C18.7197%2029.5534%2018.652%2029.5018%2018.5776%2029.4667C18.5032%2029.4316%2018.4235%2029.4135%2018.3429%2029.4136H18.3442ZM14.3775%2031.1401C14.2005%2031.1368%2014.0282%2031.0739%2013.8823%2030.9592C13.7365%2030.8445%2013.6236%2030.6832%2013.5577%2030.4954C13.4919%2030.3077%2013.4762%2030.1019%2013.5124%2029.9039C13.5487%2029.706%2013.6353%2029.5248%2013.7615%2029.3829C13.8877%2029.241%2014.0478%2029.1449%2014.2217%2029.1066C14.3956%2029.0683%2014.5755%2029.0896%2014.7388%2029.1677C14.9021%2029.2458%2015.0416%2029.3772%2015.1397%2029.5456C15.2378%2029.7139%2015.2902%2029.9116%2015.2902%2030.1139C15.2895%2030.2499%2015.2653%2030.3845%2015.2189%2030.5097C15.1725%2030.635%2015.1049%2030.7486%2015.02%2030.8439C14.9351%2030.9393%2014.8345%2031.0145%2014.724%2031.0653C14.6135%2031.1161%2014.4953%2031.1416%2014.3762%2031.1401H14.3775ZM29.6021%2029.4136H27.672C27.5429%2028.9106%2027.2745%2028.469%2026.9072%2028.1549C26.5399%2027.8407%2026.0933%2027.6709%2025.6344%2027.6709C25.1754%2027.6709%2024.7289%2027.8407%2024.3615%2028.1549C23.9942%2028.469%2023.7259%2028.9106%2023.5968%2029.4136H21.6673C21.5047%2029.4136%2021.3487%2029.4874%2021.2337%2029.6187C21.1187%2029.7501%2021.0541%2029.9281%2021.0541%2030.1139C21.0541%2030.2996%2021.1187%2030.4778%2021.2337%2030.6091C21.3487%2030.7405%2021.5047%2030.8143%2021.6673%2030.8143H23.5968C23.7259%2031.3173%2023.9942%2031.7589%2024.3615%2032.073C24.7289%2032.3872%2025.1754%2032.557%2025.6344%2032.557C26.0933%2032.557%2026.5399%2032.3872%2026.9072%2032.073C27.2745%2031.7589%2027.5429%2031.3173%2027.672%2030.8143H29.6008C29.7635%2030.8143%2029.9194%2030.7405%2030.0344%2030.6091C30.1494%2030.4778%2030.214%2030.2996%2030.214%2030.1139C30.214%2029.9281%2030.1494%2029.7501%2030.0344%2029.6187C29.9194%2029.4874%2029.7635%2029.4136%2029.6008%2029.4136H29.6021ZM25.6356%2031.1401C25.4585%2031.1368%2025.2863%2031.0739%2025.1404%2030.9592C24.9946%2030.8445%2024.8816%2030.6832%2024.8158%2030.4954C24.75%2030.3077%2024.7342%2030.1019%2024.7705%2029.9039C24.8067%2029.706%2024.8934%2029.5248%2025.0196%2029.3829C25.1458%2029.241%2025.3059%2029.1449%2025.4798%2029.1066C25.6536%2029.0683%2025.8335%2029.0896%2025.9969%2029.1677C26.1602%2029.2458%2026.2997%2029.3772%2026.3978%2029.5456C26.4959%2029.7139%2026.5482%2029.9116%2026.5483%2030.1139C26.5475%2030.2499%2026.5233%2030.3845%2026.4769%2030.5097C26.4306%2030.635%2026.363%2030.7486%2026.278%2030.8439C26.1931%2030.9393%2026.0925%2031.0145%2025.982%2031.0653C25.8716%2031.1161%2025.7534%2031.1416%2025.6343%2031.1401H25.6356Z%22%20fill%3D%22%23F67C4D%22%2F%3E%3C%2Fsvg%3E");
}

.form-check-list-heading-sdk {
  background-color: rgba(138, 98, 250, 0.1490196078);
}
.form-check-list-heading-sdk::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20viewBox%3D%220%200%2050%2050%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M42.3491%2031.5349C42.2665%2031.5334%2042.1844%2031.5481%2042.1076%2031.5784C42.0308%2031.6087%2041.9608%2031.6539%2041.9017%2031.7114C41.8425%2031.7688%2041.7954%2031.8375%2041.763%2031.9132C41.7306%2031.9889%2041.7137%2032.0702%2041.7131%2032.1525V35.562C41.7131%2035.7301%2041.7801%2035.8913%2041.8994%2036.0102C42.0186%2036.129%2042.1804%2036.1958%2042.3491%2036.1958C42.5178%2036.1958%2042.6796%2036.129%2042.7989%2036.0102C42.9181%2035.8913%2042.9851%2035.7301%2042.9851%2035.562V32.1525C42.9846%2032.0702%2042.9676%2031.9889%2042.9352%2031.9132C42.9028%2031.8375%2042.8557%2031.7688%2042.7966%2031.7114C42.7374%2031.6539%2042.6674%2031.6087%2042.5906%2031.5784C42.5138%2031.5481%2042.4317%2031.5334%2042.3491%2031.5349ZM40.5302%2030.8925C40.3621%2030.8922%2040.2007%2030.9583%2040.0815%2031.0765C39.9622%2031.1946%2039.8949%2031.3551%2039.8942%2031.5226V36.3156C39.8942%2036.4837%2039.9612%2036.6448%2040.0805%2036.7637C40.1998%2036.8825%2040.3615%2036.9493%2040.5302%2036.9493C40.6989%2036.9493%2040.8607%2036.8825%2040.98%2036.7637C41.0993%2036.6448%2041.1663%2036.4837%2041.1663%2036.3156V31.5226C41.1656%2031.3551%2041.0982%2031.1946%2040.979%2031.0765C40.8598%2030.9583%2040.6984%2030.8922%2040.5302%2030.8925ZM38.3741%2029.2495C38.2061%2029.2495%2038.0448%2029.3157%2037.9256%2029.4337C37.8064%2029.5518%2037.739%2029.712%2037.7381%2029.8795V37.9586C37.7381%2038.1267%2037.8051%2038.2879%2037.9244%2038.4068C38.0437%2038.5256%2038.2055%2038.5923%2038.3741%2038.5923C38.5428%2038.5923%2038.7046%2038.5256%2038.8239%2038.4068C38.9432%2038.2879%2039.0102%2038.1267%2039.0102%2037.9586V29.8795C39.0095%2029.712%2038.9421%2029.5516%2038.8229%2029.4335C38.7037%2029.3154%2038.5423%2029.2492%2038.3741%2029.2495ZM31.9046%2031.5843C31.7365%2031.584%2031.5751%2031.6502%2031.4558%2031.7683C31.3366%2031.8864%2031.2692%2032.0468%2031.2686%2032.2143V35.6238C31.2686%2035.7918%2031.3356%2035.9531%2031.4549%2036.0719C31.5741%2036.1908%2031.7359%2036.2576%2031.9046%2036.2576C32.0733%2036.2576%2032.2351%2036.1908%2032.3544%2036.0719C32.4736%2035.9531%2032.5406%2035.7918%2032.5406%2035.6238V32.2143C32.54%2032.0468%2032.4726%2031.8864%2032.3534%2031.7683C32.2341%2031.6502%2032.0727%2031.584%2031.9046%2031.5843ZM34.0619%2030.8925C33.8938%2030.8922%2033.7324%2030.9583%2033.6132%2031.0765C33.4939%2031.1946%2033.4266%2031.3551%2033.4259%2031.5226V36.3156C33.4259%2036.4837%2033.4929%2036.6448%2033.6122%2036.7637C33.7315%2036.8825%2033.8933%2036.9493%2034.0619%2036.9493C34.2306%2036.9493%2034.3924%2036.8825%2034.5117%2036.7637C34.631%2036.6448%2034.698%2036.4837%2034.698%2036.3156V31.5226C34.6971%2031.3551%2034.6296%2031.1948%2034.5105%2031.0767C34.3913%2030.9586%2034.23%2030.8924%2034.0619%2030.8925ZM36.218%2029.2495C36.0498%2029.2492%2035.8882%2029.3153%2035.7688%2029.4334C35.6494%2029.5515%2035.5817%2029.7118%2035.5808%2029.8795V37.9586C35.5808%2038.1268%2035.6478%2038.2882%2035.7672%2038.4071C35.8866%2038.5261%2036.0486%2038.5929%2036.2174%2038.5929C36.3863%2038.5929%2036.5482%2038.5261%2036.6676%2038.4071C36.787%2038.2882%2036.8541%2038.1268%2036.8541%2037.9586V29.8795C36.8532%2029.712%2036.7857%2029.5518%2036.6666%2029.4337C36.5474%2029.3157%2036.3861%2029.2495%2036.218%2029.2495ZM21.0631%2012.6591V17.0938C21.0631%2017.262%2021.1301%2017.4233%2021.2494%2017.5421C21.3687%2017.661%2021.5305%2017.7278%2021.6993%2017.7278C21.868%2017.7278%2022.0298%2017.661%2022.1491%2017.5421C22.2684%2017.4233%2022.3354%2017.262%2022.3354%2017.0938V12.6591C22.3354%2012.491%2022.2684%2012.3298%2022.1491%2012.2109C22.0298%2012.0921%2021.868%2012.0253%2021.6993%2012.0253C21.5305%2012.0253%2021.3687%2012.0921%2021.2494%2012.2109C21.1301%2012.3298%2021.0631%2012.491%2021.0631%2012.6591ZM23.208%2013.7709V15.982C23.208%2016.1503%2023.2751%2016.3117%2023.3945%2016.4307C23.5139%2016.5497%2023.6758%2016.6165%2023.8447%2016.6165C24.0136%2016.6165%2024.1755%2016.5497%2024.2949%2016.4307C24.4143%2016.3117%2024.4814%2016.1503%2024.4814%2015.982V13.7709C24.4781%2013.6048%2024.4096%2013.4467%2024.2906%2013.3304C24.1715%2013.2142%2024.0115%2013.149%2023.8448%2013.149C23.6782%2013.149%2023.5181%2013.2142%2023.3991%2013.3304C23.2801%2013.4467%2023.2116%2013.6048%2023.2083%2013.7709H23.208ZM8.18998%2013.7709V15.982C8.18998%2016.1502%208.25701%2016.3114%208.37634%2016.4303C8.49567%2016.5492%208.65752%2016.6161%208.82627%2016.6161C8.99503%2016.6161%209.15687%2016.5492%209.2762%2016.4303C9.39552%2016.3114%209.46257%2016.1502%209.46257%2015.982V13.7709C9.45928%2013.6049%209.39081%2013.4469%209.27186%2013.3307C9.15291%2013.2145%208.99297%2013.1494%208.82639%2013.1494C8.65981%2013.1494%208.49988%2013.2145%208.38094%2013.3307C8.26199%2013.4469%208.19352%2013.6049%208.19023%2013.7709H8.18998ZM18.9174%2011.9672V17.798C18.922%2017.9631%2018.9911%2018.1198%2019.1099%2018.235C19.2288%2018.3501%2019.388%2018.4146%2019.5537%2018.4146C19.7194%2018.4146%2019.8787%2018.3501%2019.9975%2018.235C20.1163%2018.1198%2020.1854%2017.9631%2020.19%2017.798V11.9672C20.1867%2011.8013%2020.1182%2011.6433%2019.9993%2011.5271C19.8803%2011.411%2019.7204%2011.3458%2019.5538%2011.3458C19.3873%2011.3458%2019.2273%2011.411%2019.1084%2011.5271C18.9894%2011.6433%2018.9209%2011.8013%2018.9177%2011.9672H18.9174ZM16.7719%2010.3243V19.4287C16.7742%2019.5953%2016.8423%2019.7543%2016.9613%2019.8713C17.0804%2019.9883%2017.241%2020.0539%2017.4082%2020.0539C17.5755%2020.0539%2017.736%2019.9883%2017.8551%2019.8713C17.9742%2019.7543%2018.0422%2019.5953%2018.0446%2019.4287V10.3243C18.0405%2010.1588%2017.9718%2010.0015%2017.8529%209.88587C17.734%209.77026%2017.5745%209.70552%2017.4083%209.70552C17.2422%209.70552%2017.0827%209.77026%2016.9638%209.88587C16.8449%2010.0015%2016.7761%2010.1588%2016.7721%2010.3243H16.7719ZM10.3354%2012.6591V17.0938C10.3378%2017.2605%2010.4058%2017.4196%2010.5249%2017.5366C10.644%2017.6536%2010.8045%2017.7191%2010.9718%2017.7191C11.139%2017.7191%2011.2995%2017.6536%2011.4186%2017.5366C11.5377%2017.4196%2011.6058%2017.2605%2011.6081%2017.0938V12.6591C11.6041%2012.4936%2011.5353%2012.3363%2011.4164%2012.2207C11.2976%2012.1051%2011.138%2012.0403%2010.9719%2012.0403C10.8058%2012.0403%2010.6462%2012.1051%2010.5274%2012.2207C10.4085%2012.3363%2010.3397%2012.4936%2010.3357%2012.6591H10.3354ZM12.4804%2011.9672V17.798C12.485%2017.9631%2012.5541%2018.1198%2012.6729%2018.235C12.7917%2018.3501%2012.9509%2018.4146%2013.1167%2018.4146C13.2824%2018.4146%2013.4416%2018.3501%2013.5604%2018.235C13.6793%2018.1198%2013.7483%2017.9631%2013.7529%2017.798V11.9672C13.7469%2011.8033%2013.6772%2011.6481%2013.5586%2011.5343C13.44%2011.4204%2013.2818%2011.3567%2013.1171%2011.3567C12.9524%2011.3567%2012.7941%2011.4204%2012.6755%2011.5343C12.557%2011.6481%2012.4873%2011.8033%2012.4812%2011.9672H12.4804ZM14.6253%2010.3243V19.4287C14.6253%2019.5968%2014.6923%2019.7581%2014.8117%2019.877C14.931%2019.9958%2015.0928%2020.0626%2015.2616%2020.0626C15.4303%2020.0626%2015.5922%2019.9958%2015.7115%2019.877C15.8308%2019.7581%2015.8979%2019.5968%2015.8979%2019.4287V10.3243C15.8903%2010.1614%2015.82%2010.0076%2015.7017%209.89504C15.5833%209.78244%2015.4259%209.71963%2015.2623%209.71963C15.0986%209.71963%2014.9413%209.78244%2014.8229%209.89504C14.7045%2010.0076%2014.6342%2010.1614%2014.6267%2010.3243H14.6253ZM30.7849%2011.8684V16.6986C30.7849%2016.8896%2030.861%2017.0728%2030.9966%2017.2078C31.1322%2017.3429%2031.316%2017.4188%2031.5077%2017.4188C31.6994%2017.4188%2031.8833%2017.3429%2032.0188%2017.2078C32.1544%2017.0728%2032.2306%2016.8896%2032.2306%2016.6986V11.8684C32.2225%2011.683%2032.1429%2011.5078%2032.0083%2011.3795C31.8738%2011.2511%2031.6947%2011.1796%2031.5084%2011.1796C31.3221%2011.1796%2031.1431%2011.2511%2031.0085%2011.3795C30.874%2011.5078%2030.7943%2011.683%2030.7863%2011.8684H30.7849ZM33.0873%2010.3737V18.1933C33.0873%2018.3843%2033.1635%2018.5675%2033.299%2018.7025C33.4346%2018.8376%2033.6184%2018.9135%2033.8101%2018.9135C34.0018%2018.9135%2034.1857%2018.8376%2034.3213%2018.7025C34.4568%2018.5675%2034.533%2018.3843%2034.533%2018.1933V10.3737C34.5249%2010.1883%2034.4452%2010.0131%2034.3107%209.88479C34.1762%209.75643%2033.9971%209.68477%2033.8108%209.68477C33.6245%209.68477%2033.4455%209.75643%2033.3109%209.88479C33.1764%2010.0131%2033.0968%2010.1883%2033.0887%2010.3737H33.0873ZM42.8375%2020.837H31.752C30.7846%2020.8332%2029.8553%2021.2124%2029.1685%2021.8911C28.4817%2022.5699%2028.0936%2023.4926%2028.0895%2024.4565V41.3928C28.096%2042.3547%2028.4853%2043.2747%2029.172%2043.951C29.8586%2044.6273%2030.7865%2045.0046%2031.752%2045H42.8375C43.803%2045.0046%2044.7308%2044.6273%2045.4175%2043.951C46.1041%2043.2747%2046.4934%2042.3547%2046.5%2041.3928V24.4565C46.4959%2023.4929%2046.108%2022.5703%2045.4214%2021.8916C44.7349%2021.2129%2043.806%2020.8336%2042.8388%2020.837H42.8375ZM44.9093%2041.3928C44.9053%2041.9367%2044.685%2042.4568%2044.2965%2042.839C43.9081%2043.2211%2043.3834%2043.434%2042.8375%2043.4311H31.752C31.206%2043.4341%2030.681%2043.2212%2030.2924%2042.8391C29.9038%2042.457%2029.6831%2041.9368%2029.6789%2041.3928V24.4565C29.6797%2024.1862%2029.734%2023.9186%2029.8387%2023.6692C29.9433%2023.4198%2030.0963%2023.1934%2030.2888%2023.0029C30.4813%2022.8125%2030.7097%2022.6617%2030.9607%2022.5592C31.2118%2022.4567%2031.4807%2022.4046%2031.752%2022.4058H32.7687V22.7517C32.7724%2023.164%2032.9399%2023.558%2033.2346%2023.8474C33.5293%2024.1368%2033.927%2024.2981%2034.3408%2024.2959H40.2487C40.6623%2024.298%2041.0599%2024.1366%2041.3543%2023.8471C41.6488%2023.5577%2041.8161%2023.1639%2041.8196%2022.7517V22.4058H42.8375C43.1087%2022.4046%2043.3775%2022.4568%2043.6285%2022.5593C43.8795%2022.6618%2044.1078%2022.8126%2044.3002%2023.003C44.4926%2023.1935%2044.6455%2023.4199%2044.75%2023.6693C44.8545%2023.9187%2044.9086%2024.1862%2044.9093%2024.4565V41.3928ZM28.8867%2020.2811V6.56894H34.0903C34.7488%206.56507%2035.3818%206.82178%2035.8502%207.28276C36.3187%207.74373%2036.5843%208.37116%2036.5886%209.02717V19.4164H38.1794V9.02717C38.1723%207.95314%2037.7377%206.92578%2036.971%206.17072C36.2044%205.41566%2035.1683%204.99466%2034.0903%205.00005H7.58741C6.50956%204.99457%205.4736%205.41559%204.70717%206.17072C3.94075%206.92585%203.50656%207.95325%203.5%209.02717V24.7158C3.50656%2025.7898%203.94075%2026.8172%204.70717%2027.5723C5.4736%2028.3274%206.50956%2028.7486%207.58741%2028.7431H16.2998V33.7955H11.2016C11.098%2033.7944%2010.9953%2033.8137%2010.8992%2033.8522C10.8031%2033.8907%2010.7157%2033.9478%2010.6418%2034.0201C10.5679%2034.0924%2010.5091%2034.1786%2010.4687%2034.2736C10.4283%2034.3686%2010.4072%2034.4706%2010.4065%2034.5737C10.4074%2034.7834%2010.4915%2034.9843%2010.6405%2035.1324C10.7894%2035.2805%2010.9911%2035.3639%2011.2016%2035.3644H26.6439V33.7955H25.3805V28.7431H26.6439V27.1742H7.58741C6.92915%2027.1779%206.29634%2026.9211%205.82809%2026.4601C5.35985%2025.9992%205.09448%2025.3717%205.09035%2024.7158V23.9994H26.691C26.7302%2023.5122%2026.8413%2023.0335%2027.0208%2022.5788L5.09072%2022.5664V9.02717C5.09485%208.37132%205.36022%207.74398%205.82847%207.283C6.29671%206.82202%206.92952%206.5652%207.58778%206.56894H27.4424V20.2811H28.8881H28.8867ZM17.8892%2028.7431H23.79V33.7955H17.8906V28.7431H17.8892Z%22%20fill%3D%22%238A62FA%22%2F%3E%3C%2Fsvg%3E");
}

.form-check-list-heading-reading {
  background-color: rgba(63, 186, 116, 0.1490196078);
}
.form-check-list-heading-reading::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20viewBox%3D%220%200%2050%2050%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M29.1462%2043.4999H8.83551C7.82422%2043.5055%206.85212%2043.1057%206.13289%2042.3884C5.41366%2041.6712%205.00618%2040.695%205%2039.6748V10.3251C5.00618%209.30482%205.41366%208.3287%206.13289%207.61143C6.85212%206.89415%207.82422%206.49448%208.83551%206.50006H29.1462C30.1577%206.49421%2031.1301%206.89386%2031.8496%207.61115C32.5692%208.32844%2032.9769%209.3046%2032.9832%2010.3251V12.6547C32.9739%2012.8923%2032.8738%2013.1171%2032.7038%2013.2819C32.5339%2013.4466%2032.3074%2013.5386%2032.0717%2013.5386C31.836%2013.5386%2031.6094%2013.4466%2031.4395%2013.2819C31.2696%2013.1171%2031.1695%2012.8923%2031.1602%2012.6547V10.3251C31.1564%209.7891%2030.9425%209.27644%2030.565%208.89917C30.1876%208.52191%2029.6775%208.31074%2029.1462%208.3119H8.83551C8.30431%208.31059%207.79426%208.5217%207.41705%208.89903C7.03983%209.27637%206.82621%209.78919%206.82296%2010.3251V39.6748C6.82621%2040.2107%207.03983%2040.7235%207.41705%2041.1008C7.79426%2041.4782%208.30431%2041.6893%208.83551%2041.688H29.1462C29.6775%2041.6891%2030.1876%2041.4781%2030.565%2041.1008C30.9425%2040.7236%2031.1564%2040.2108%2031.1602%2039.6748V28.1852C31.1553%2028.0613%2031.1753%2027.9377%2031.2189%2027.8219C31.2626%2027.706%2031.3289%2027.6003%2031.414%2027.511C31.4992%2027.4216%2031.6013%2027.3506%2031.7143%2027.302C31.8273%2027.2535%2031.9489%2027.2284%2032.0717%2027.2284C32.1945%2027.2284%2032.3161%2027.2535%2032.4291%2027.302C32.5421%2027.3506%2032.6442%2027.4216%2032.7293%2027.511C32.8144%2027.6003%2032.8808%2027.706%2032.9244%2027.8219C32.9681%2027.9377%2032.988%2028.0613%2032.9832%2028.1852V39.6748C32.9769%2040.6953%2032.5692%2041.6716%2031.8496%2042.3889C31.1301%2043.1061%2030.1577%2043.5058%2029.1462%2043.4999ZM15.3663%2014.3227H10.6385C10.5197%2014.3238%2010.4018%2014.3013%2010.2917%2014.2563C10.1815%2014.2113%2010.0813%2014.1449%209.99664%2014.0607C9.91201%2013.9765%209.84469%2013.8763%209.79855%2013.7658C9.75241%2013.6553%209.72835%2013.5367%209.72775%2013.4168C9.72839%2013.1732%209.82451%2012.9397%209.99514%2012.7673C10.1658%2012.5949%2010.397%2012.4975%2010.6385%2012.4964H15.3663C15.6078%2012.4975%2015.8391%2012.5949%2016.0097%2012.7673C16.1803%2012.9397%2016.2764%2013.1732%2016.2771%2013.4168C16.2765%2013.5367%2016.2524%2013.6553%2016.2063%2013.7658C16.1601%2013.8763%2016.0928%2013.9765%2016.0082%2014.0607C15.9236%2014.1449%2015.8233%2014.2113%2015.7132%2014.2563C15.603%2014.3013%2015.4851%2014.3238%2015.3663%2014.3227ZM15.3663%2018.2485H10.6385C10.397%2018.2474%2010.1658%2018.1501%209.99514%2017.9777C9.82451%2017.8053%209.72839%2017.5719%209.72775%2017.3282C9.72835%2017.2083%209.75241%2017.0897%209.79855%2016.9793C9.84469%2016.8688%209.91201%2016.7685%209.99664%2016.6844C10.0813%2016.6002%2010.1815%2016.5337%2010.2917%2016.4887C10.4018%2016.4438%2010.5197%2016.4212%2010.6385%2016.4223H15.3663C15.4851%2016.4212%2015.603%2016.4438%2015.7132%2016.4887C15.8233%2016.5337%2015.9236%2016.6002%2016.0082%2016.6844C16.0928%2016.7685%2016.1601%2016.8688%2016.2063%2016.9793C16.2524%2017.0897%2016.2765%2017.2083%2016.2771%2017.3282C16.2764%2017.5719%2016.1803%2017.8053%2016.0097%2017.9777C15.8391%2018.1501%2015.6078%2018.2474%2015.3663%2018.2485ZM15.3663%2022.1599H10.6385C10.4004%2022.1599%2010.172%2022.0645%2010.0036%2021.8946C9.8352%2021.7247%209.74059%2021.4942%209.74059%2021.254C9.74059%2021.0137%209.8352%2020.7832%2010.0036%2020.6133C10.172%2020.4434%2010.4004%2020.348%2010.6385%2020.348H15.3663C15.4842%2020.348%2015.601%2020.3715%2015.7099%2020.417C15.8189%2020.4625%2015.9179%2020.5292%2016.0012%2020.6133C16.0846%2020.6974%2016.1508%2020.7973%2016.1959%2020.9072C16.241%2021.0171%2016.2642%2021.135%2016.2642%2021.254C16.2642%2021.3729%2016.241%2021.4908%2016.1959%2021.6007C16.1508%2021.7106%2016.0846%2021.8105%2016.0012%2021.8946C15.9179%2021.9787%2015.8189%2022.0454%2015.7099%2022.0909C15.601%2022.1364%2015.4842%2022.1599%2015.3663%2022.1599ZM19.7206%2026.0856H10.6385C10.5197%2026.0867%2010.4018%2026.0642%2010.2917%2026.0192C10.1815%2025.9742%2010.0813%2025.9077%209.99664%2025.8236C9.91201%2025.7394%209.84469%2025.6391%209.79855%2025.5287C9.75241%2025.4182%209.72835%2025.2996%209.72775%2025.1797C9.72839%2024.936%209.82451%2024.7026%209.99514%2024.5302C10.1658%2024.3578%2010.397%2024.2605%2010.6385%2024.2594H19.7206C19.9623%2024.2604%2020.1938%2024.3577%2020.3646%2024.5301C20.5355%2024.7024%2020.6319%2024.9359%2020.6328%2025.1797C20.6321%2025.2997%2020.6079%2025.4183%2020.5616%2025.5288C20.5153%2025.6393%2020.4479%2025.7395%2020.3631%2025.8237C20.2784%2025.9079%2020.178%2025.9744%2020.0677%2026.0193C19.9575%2026.0643%2019.8395%2026.0867%2019.7206%2026.0856ZM27.0225%2030.0115H10.6385C10.397%2030.0104%2010.1658%2029.913%209.99514%2029.7406C9.82451%2029.5682%209.72839%2029.3347%209.72775%2029.0911C9.72835%2028.9712%209.75241%2028.8526%209.79855%2028.7421C9.84469%2028.6316%209.91201%2028.5314%209.99664%2028.4472C10.0813%2028.363%2010.1815%2028.2966%2010.2917%2028.2516C10.4018%2028.2066%2010.5197%2028.1841%2010.6385%2028.1852H27.0225C27.1415%2028.1839%2027.2595%2028.2064%2027.3698%2028.2513C27.4801%2028.2962%2027.5805%2028.3626%2027.6653%2028.4468C27.75%2028.531%2027.8175%2028.6313%2027.8637%2028.7418C27.9099%2028.8524%2027.9341%2028.9711%2027.9347%2029.0911C27.934%2029.3349%2027.8377%2029.5686%2027.6667%2029.741C27.4958%2029.9134%2027.2642%2030.0107%2027.0225%2030.0115ZM27.0225%2033.9227H10.6385C10.4004%2033.9227%2010.172%2033.8274%2010.0036%2033.6575C9.8352%2033.4876%209.74059%2033.2571%209.74059%2033.0168C9.74059%2032.7765%209.8352%2032.5462%2010.0036%2032.3763C10.172%2032.2064%2010.4004%2032.1109%2010.6385%2032.1109H27.0225C27.2607%2032.1109%2027.4891%2032.2064%2027.6575%2032.3763C27.8259%2032.5462%2027.9205%2032.7765%2027.9205%2033.0168C27.9205%2033.2571%2027.8259%2033.4876%2027.6575%2033.6575C27.4891%2033.8274%2027.2607%2033.9227%2027.0225%2033.9227ZM27.0225%2037.8486H10.6385C10.5197%2037.8497%2010.4018%2037.827%2010.2917%2037.782C10.1815%2037.7371%2010.0813%2037.6706%209.99664%2037.5864C9.91201%2037.5022%209.84469%2037.402%209.79855%2037.2915C9.75241%2037.181%209.72835%2037.0624%209.72775%2036.9425C9.72839%2036.6989%209.82451%2036.4655%209.99514%2036.2931C10.1658%2036.1206%2010.397%2036.0233%2010.6385%2036.0223H27.0225C27.2642%2036.023%2027.4958%2036.1202%2027.6667%2036.2926C27.8377%2036.4651%2027.934%2036.6987%2027.9347%2036.9425C27.9341%2037.0625%2027.9099%2037.1812%2027.8637%2037.2918C27.8175%2037.4024%2027.75%2037.5027%2027.6653%2037.5868C27.5805%2037.671%2027.4801%2037.7376%2027.3698%2037.7825C27.2595%2037.8274%2027.1415%2037.8499%2027.0225%2037.8486ZM31.9156%2016.983C31.7226%2016.983%2031.5373%2017.0602%2031.4006%2017.1976C31.2638%2017.3351%2031.1866%2017.5217%2031.1859%2017.7165V21.671C31.1859%2021.8661%2031.2627%2022.0531%2031.3994%2022.191C31.5361%2022.329%2031.7215%2022.4065%2031.9149%2022.4065C32.1083%2022.4065%2032.2937%2022.329%2032.4304%2022.191C32.5671%2022.0531%2032.6439%2021.8661%2032.6439%2021.671V17.7165C32.6433%2017.522%2032.5663%2017.3355%2032.4298%2017.198C32.2933%2017.0606%2032.1085%2016.9833%2031.9156%2016.983ZM29.4441%2016.1778C29.2513%2016.1781%2029.0664%2016.2554%2028.9299%2016.3928C28.7934%2016.5303%2028.7164%2016.7166%2028.7158%2016.9111V22.4763C28.7158%2022.6713%2028.7926%2022.8585%2028.9293%2022.9964C29.066%2023.1344%2029.2515%2023.2118%2029.4448%2023.2118C29.6382%2023.2118%2029.8236%2023.1344%2029.9604%2022.9964C30.0971%2022.8585%2030.1739%2022.6713%2030.1739%2022.4763V16.9111C30.1732%2016.7164%2030.096%2016.5299%2029.9592%2016.3924C29.8224%2016.2549%2029.6372%2016.1778%2029.4441%2016.1778ZM26.974%2014.2653C26.781%2014.2653%2026.5958%2014.3424%2026.459%2014.4799C26.3222%2014.6173%2026.245%2014.8038%2026.2443%2014.9986V24.3888C26.2481%2024.5813%2026.3265%2024.7647%2026.4629%2024.8995C26.5992%2025.0344%2026.7824%2025.1099%2026.9733%2025.1099C27.1642%2025.1099%2027.3475%2025.0344%2027.4838%2024.8995C27.6201%2024.7647%2027.6986%2024.5813%2027.7024%2024.3888V14.9986C27.702%2014.804%2027.6251%2014.6175%2027.4885%2014.48C27.352%2014.3425%2027.167%2014.2653%2026.974%2014.2653ZM19.5596%2016.983C19.3667%2016.9833%2019.1818%2017.0606%2019.0454%2017.198C18.9089%2017.3355%2018.8319%2017.522%2018.8312%2017.7165V21.671C18.8312%2021.8661%2018.908%2022.0531%2019.0448%2022.191C19.1815%2022.329%2019.3669%2022.4065%2019.5603%2022.4065C19.7536%2022.4065%2019.9391%2022.329%2020.0758%2022.191C20.2125%2022.0531%2020.2893%2021.8661%2020.2893%2021.671V17.7165C20.2886%2017.5217%2020.2114%2017.3351%2020.0746%2017.1976C19.9378%2017.0602%2019.7526%2016.983%2019.5596%2016.983ZM22.0311%2016.1778C21.8382%2016.1781%2021.6533%2016.2554%2021.5168%2016.3928C21.3804%2016.5303%2021.3034%2016.7166%2021.3027%2016.9111V22.4763C21.3027%2022.6713%2021.3795%2022.8585%2021.5163%2022.9964C21.653%2023.1344%2021.8384%2023.2118%2022.0318%2023.2118C22.2251%2023.2118%2022.4106%2023.1344%2022.5473%2022.9964C22.684%2022.8585%2022.7608%2022.6713%2022.7608%2022.4763V16.9111C22.7601%2016.7164%2022.6829%2016.5299%2022.5461%2016.3924C22.4093%2016.2549%2022.2241%2016.1778%2022.0311%2016.1778ZM24.5026%2014.2653C24.3095%2014.2653%2024.1243%2014.3424%2023.9875%2014.4799C23.8507%2014.6173%2023.7735%2014.8038%2023.7728%2014.9986V24.3888C23.7766%2024.5813%2023.855%2024.7647%2023.9913%2024.8995C24.1277%2025.0344%2024.3109%2025.1099%2024.5018%2025.1099C24.6927%2025.1099%2024.876%2025.0344%2025.0123%2024.8995C25.1487%2024.7647%2025.2271%2024.5813%2025.2309%2024.3888V14.9986C25.2305%2014.804%2025.1536%2014.6175%2025.017%2014.48C24.8805%2014.3425%2024.6955%2014.2653%2024.5026%2014.2653ZM44.2702%2016.983C44.0773%2016.9831%2043.8923%2017.0603%2043.7558%2017.1978C43.6192%2017.3352%2043.5423%2017.5219%2043.5419%2017.7165V21.671C43.5419%2021.8661%2043.6187%2022.0531%2043.7554%2022.191C43.8921%2022.329%2044.0776%2022.4065%2044.2709%2022.4065C44.4643%2022.4065%2044.6497%2022.329%2044.7865%2022.191C44.9232%2022.0531%2045%2021.8661%2045%2021.671V17.7165C44.9993%2017.5217%2044.9221%2017.3351%2044.7853%2017.1976C44.6485%2017.0602%2044.4633%2016.983%2044.2702%2016.983ZM41.8002%2016.1778C41.6071%2016.1778%2041.4219%2016.2549%2041.2851%2016.3924C41.1483%2016.5299%2041.0711%2016.7164%2041.0704%2016.9111V22.4763C41.0704%2022.6713%2041.1472%2022.8585%2041.2839%2022.9964C41.4207%2023.1344%2041.6061%2023.2118%2041.7994%2023.2118C41.9928%2023.2118%2042.1782%2023.1344%2042.315%2022.9964C42.4517%2022.8585%2042.5285%2022.6713%2042.5285%2022.4763V16.9111C42.5279%2016.7166%2042.4509%2016.5303%2042.3144%2016.3928C42.1779%2016.2554%2041.993%2016.1781%2041.8002%2016.1778ZM39.3287%2014.2653C39.1358%2014.2653%2038.9507%2014.3425%2038.8142%2014.48C38.6777%2014.6175%2038.6008%2014.804%2038.6003%2014.9986V24.3888C38.6041%2024.5813%2038.6826%2024.7647%2038.8189%2024.8995C38.9552%2025.0344%2039.1385%2025.1099%2039.3294%2025.1099C39.5203%2025.1099%2039.7036%2025.0344%2039.8399%2024.8995C39.9762%2024.7647%2040.0547%2024.5813%2040.0584%2024.3888V14.9986C40.0577%2014.8038%2039.9805%2014.6173%2039.8437%2014.4799C39.7069%2014.3424%2039.5217%2014.2653%2039.3287%2014.2653ZM34.3871%2016.1778C34.194%2016.1778%2034.0088%2016.2549%2033.872%2016.3924C33.7353%2016.5299%2033.6581%2016.7164%2033.6573%2016.9111V22.4763C33.6573%2022.6713%2033.7342%2022.8585%2033.8709%2022.9964C34.0076%2023.1344%2034.193%2023.2118%2034.3864%2023.2118C34.5797%2023.2118%2034.7652%2023.1344%2034.9019%2022.9964C35.0386%2022.8585%2035.1154%2022.6713%2035.1154%2022.4763V16.9111C35.1148%2016.7166%2035.0378%2016.5303%2034.9013%2016.3928C34.7648%2016.2554%2034.5799%2016.1781%2034.3871%2016.1778ZM36.8572%2014.2653C36.6643%2014.2653%2036.4793%2014.3425%2036.3427%2014.48C36.2062%2014.6175%2036.1292%2014.804%2036.1288%2014.9986V24.3888C36.1326%2024.5813%2036.2111%2024.7647%2036.3474%2024.8995C36.4837%2025.0344%2036.667%2025.1099%2036.8579%2025.1099C37.0488%2025.1099%2037.2321%2025.0344%2037.3684%2024.8995C37.5047%2024.7647%2037.5832%2024.5813%2037.5869%2024.3888V14.9986C37.5862%2014.8038%2037.509%2014.6173%2037.3722%2014.4799C37.2354%2014.3424%2037.0502%2014.2653%2036.8572%2014.2653Z%22%20fill%3D%22%233FBA74%22%2F%3E%3C%2Fsvg%3E");
}

.form-check-list-heading-learning {
  background-color: rgba(170, 212, 111, 0.1490196078);
}
.form-check-list-heading-learning::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20viewBox%3D%220%200%2050%2050%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M31.4714%2019.1665C31.795%2019.1665%2032.0573%2018.9042%2032.0573%2018.5806C32.0573%2018.257%2031.795%2017.9946%2031.4714%2017.9946C31.1478%2017.9946%2030.8854%2018.257%2030.8854%2018.5806C30.8854%2018.9042%2031.1478%2019.1665%2031.4714%2019.1665Z%22%20fill%3D%22%23AAD46F%22%2F%3E%3Cpath%20d%3D%22M33.8151%2019.1665C34.1387%2019.1665%2034.4011%2018.9042%2034.4011%2018.5806C34.4011%2018.257%2034.1387%2017.9946%2033.8151%2017.9946C33.4915%2017.9946%2033.2292%2018.257%2033.2292%2018.5806C33.2292%2018.9042%2033.4915%2019.1665%2033.8151%2019.1665Z%22%20fill%3D%22%23AAD46F%22%2F%3E%3Cpath%20d%3D%22M29.1276%2019.1665C29.4512%2019.1665%2029.7136%2018.9042%2029.7136%2018.5806C29.7136%2018.257%2029.4512%2017.9946%2029.1276%2017.9946C28.804%2017.9946%2028.5417%2018.257%2028.5417%2018.5806C28.5417%2018.9042%2028.804%2019.1665%2029.1276%2019.1665Z%22%20fill%3D%22%23AAD46F%22%2F%3E%3Cpath%20d%3D%22M44.6338%2030.4734C43.2708%2029.9216%2042.174%2028.8557%2041.58%2027.5188C43.7882%2025.0386%2044.9999%2021.8611%2044.9999%2018.5286C44.9999%2011.069%2038.9309%205%2031.4713%205C24.9338%205%2019.3373%209.66077%2018.1639%2016.0822C18.1058%2016.4006%2018.3167%2016.7058%2018.635%2016.764C18.9528%2016.8219%2019.2585%2016.6111%2019.3167%2016.2929C20.3883%2010.4283%2025.4999%206.17187%2031.4713%206.17187C38.2848%206.17187%2043.828%2011.7151%2043.828%2018.5286C43.828%2021.6879%2042.6358%2024.6946%2040.471%2026.9949C40.3184%2027.1571%2040.2708%2027.3918%2040.3484%2027.6004C40.8369%2028.9155%2041.7185%2030.041%2042.8526%2030.8319C42.5949%2030.8675%2042.3338%2030.8853%2042.0702%2030.8853C40.6387%2030.8853%2039.272%2030.3496%2038.2221%2029.3768C38.0351%2029.2036%2037.7577%2029.171%2037.5358%2029.2964C36.3434%2029.9694%2035.0553%2030.4355%2033.707%2030.6816C33.3887%2030.7397%2033.1777%2031.0449%2033.2359%2031.3632C33.2939%2031.6817%2033.5995%2031.8922%2033.9175%2031.8344C35.2577%2031.5898%2036.5438%2031.1467%2037.7465%2030.5158C38.9652%2031.5127%2040.4848%2032.0571%2042.0703%2032.0571C42.9558%2032.0571%2043.8184%2031.8897%2044.6339%2031.5595C44.8551%2031.4699%2045%2031.2551%2045%2031.0164C44.9999%2030.7778%2044.8551%2030.563%2044.6338%2030.4734Z%22%20fill%3D%22%23AAD46F%22%2F%3E%3Cpath%20d%3D%22M19.8015%2031.1102C19.9707%2030.8497%2020.069%2030.5392%2020.069%2030.2063C20.069%2029.2885%2019.3222%2028.5417%2018.4044%2028.5417H17.0428C16.7191%2028.5417%2016.4568%2028.8041%2016.4568%2029.1277V33.8152C16.4568%2033.971%2016.519%2034.1205%2016.6293%2034.2304C16.7392%2034.3398%2016.8879%2034.4011%2017.0428%2034.4011C17.0454%2034.4011%2018.2972%2034.3956%2018.6422%2034.3956C19.661%2034.3956%2020.4898%2033.5667%2020.4898%2032.5479C20.4899%2031.9678%2020.2211%2031.4492%2019.8015%2031.1102ZM17.6288%2029.7136H18.4045C18.6761%2029.7136%2018.8972%2029.9346%2018.8972%2030.2063C18.8972%2030.4779%2018.6761%2030.6989%2018.4045%2030.6989C18.3915%2030.6989%2018.3786%2030.6993%2018.3658%2030.7002H17.6288V29.7136ZM18.6422%2033.2236C18.4556%2033.2236%2018.0048%2033.2253%2017.6287%2033.2267V31.8721H18.6422C19.0148%2031.8721%2019.3179%2032.1752%2019.3179%2032.5478C19.318%2032.9205%2019.0148%2033.2236%2018.6422%2033.2236Z%22%20fill%3D%22%23AAD46F%22%2F%3E%3Cpath%20d%3D%22M13.5356%2028.9852C13.534%2028.9808%2013.5322%2028.9764%2013.5305%2028.9721C13.4238%2028.711%2013.1718%2028.5421%2012.8897%2028.5417C12.6077%2028.5421%2012.3557%2028.711%2012.249%2028.9721C12.2473%2028.9764%2012.2455%2028.9808%2012.2439%2028.9852L10.4837%2033.6067C10.3685%2033.9091%2010.5204%2034.2476%2010.8227%2034.3628C11.1251%2034.4778%2011.4637%2034.3263%2011.5789%2034.0238L11.874%2033.2502H13.9057L14.2008%2034.0238C14.316%2034.3263%2014.6546%2034.4778%2014.9569%2034.3628C15.2593%2034.2476%2015.4111%2033.909%2015.2959%2033.6067L13.5356%2028.9852ZM12.3208%2032.0782L12.8897%2030.5871L13.4585%2032.0782H12.3208Z%22%20fill%3D%22%23AAD46F%22%2F%3E%3Cpath%20d%3D%22M26.4027%2032.7046C26.1548%2032.4966%2025.7852%2032.5289%2025.5773%2032.7768C25.5364%2032.8255%2025.4923%2032.871%2025.4461%2032.9121C25.21%2033.1224%2024.9083%2033.2291%2024.5494%2033.2291C23.5802%2033.2291%2022.7916%2032.4406%2022.7916%2031.4713C22.7916%2030.502%2023.5802%2029.7135%2024.5494%2029.7135C24.9018%2029.7135%2025.2415%2029.8171%2025.5319%2030.0133C25.8001%2030.1945%2026.1643%2030.1239%2026.3454%2029.8558C26.5265%2029.5877%2026.456%2029.2234%2026.1878%2029.0422C25.703%2028.7147%2025.1364%2028.5415%2024.5494%2028.5415C22.9339%2028.5415%2021.6197%2029.8557%2021.6197%2031.4712C21.6197%2033.0867%2022.9339%2034.4009%2024.5494%2034.4009C25.1951%2034.4009%2025.7747%2034.1886%2026.2255%2033.787C26.3138%2033.7084%2026.3976%2033.6218%2026.4748%2033.5299C26.683%2033.2822%2026.6506%2032.9126%2026.4027%2032.7046Z%22%20fill%3D%22%23AAD46F%22%2F%3E%3Cpath%20d%3D%22M18.5286%2017.9426C11.069%2017.9426%205%2024.0115%205%2031.4712C5%2034.8037%206.21172%2037.9813%208.41992%2040.4614C7.82585%2041.7983%206.72898%2042.8642%205.36601%2043.416C5.14484%2043.5056%205%2043.7204%205%2043.9591C5%2044.1978%205.14484%2044.4127%205.36609%2044.5023C6.18156%2044.8324%207.04414%2044.9998%207.92968%2044.9998C9.51523%2044.9998%2011.0347%2044.4554%2012.2536%2043.4584C14.1802%2044.468%2016.3408%2044.9998%2018.5286%2044.9998C25.9883%2044.9998%2032.0572%2038.9309%2032.0572%2031.4712C32.0572%2024.0115%2025.9883%2017.9426%2018.5286%2017.9426ZM18.5286%2043.828C16.4027%2043.828%2014.3055%2043.2785%2012.464%2042.2391C12.374%2042.1882%2012.2748%2042.1634%2012.1762%2042.1634C12.0319%2042.1634%2011.8888%2042.2166%2011.7778%2042.3195C10.7278%2043.2923%209.36116%2043.828%207.92968%2043.828C7.66609%2043.828%207.405%2043.8101%207.14734%2043.7745C8.2814%2042.9835%209.16304%2041.858%209.65147%2040.5431C9.72905%2040.3343%209.68155%2040.0996%209.52898%2039.9375C7.36414%2037.6371%206.17187%2034.6304%206.17187%2031.4712C6.17187%2024.6577%2011.7151%2019.1144%2018.5286%2019.1144C25.3421%2019.1144%2030.8853%2024.6576%2030.8853%2031.4712C30.8853%2038.2848%2025.3421%2043.828%2018.5286%2043.828Z%22%20fill%3D%22%23AAD46F%22%2F%3E%3C%2Fsvg%3E");
}

.form-check-list-heading-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1px;
  color: #555;
}
@media only screen and (max-width: 768px) {
  .form-check-list-heading-text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
  }
}

.form-check-list-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.mwform-checkbox-field:has(.form-check-list) {
  margin: 0 !important;
}

.mwform-checkbox-field:has(.form-check-list) > label {
  display: grid;
  grid-template-columns: 30px calc(50% - 30px) 1fr;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  padding: 10px;
  background-color: #FFF;
  border-radius: 6px;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.1490196078);
  transition: all 0.1s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .mwform-checkbox-field:has(.form-check-list) > label {
    grid-template-columns: 20px 1fr;
  }
}
.mwform-checkbox-field:has(.form-check-list) > label::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: center/cover no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2231%22%20height%3D%2230%22%20viewBox%3D%220%200%2031%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20x%3D%220.5%22%20width%3D%2230%22%20height%3D%2230%22%20rx%3D%2215%22%20fill%3D%22%23F1F1F1%22%2F%3E%3Cpath%20d%3D%22M6.5%2015.3911L12.732%2021L24.5%209%22%20stroke%3D%22white%22%20stroke-width%3D%224%22%2F%3E%3C%2Fsvg%3E");
  transition: all 0.1s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .mwform-checkbox-field:has(.form-check-list) > label::before {
    width: 20px;
    height: 20px;
  }
}
.mwform-checkbox-field:has(.form-check-list) > label::after {
  content: "";
  width: 100%;
  padding-inline: 20px;
  border-left: solid 1px #BBB;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 7%;
  color: #555;
}
@media only screen and (max-width: 768px) {
  .mwform-checkbox-field:has(.form-check-list) > label::after {
    grid-column: span 2;
    border-left: none;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 3%;
    padding-inline: 0;
  }
}
@media (any-hover: hover) {
  .mwform-checkbox-field:has(.form-check-list) > label {
    cursor: pointer;
  }
  .mwform-checkbox-field:has(.form-check-list) > label:hover {
    background-color: #F7F7F7;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3019607843);
  }
  .mwform-checkbox-field:has(.form-check-list) > label:hover::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20width%3D%2230%22%20height%3D%2230%22%20rx%3D%2215%22%20fill%3D%22%23D9D9D9%22%2F%3E%3Cpath%20d%3D%22M6%2015.3911L12.232%2021L24%209%22%20stroke%3D%22white%22%20stroke-width%3D%224%22%2F%3E%3C%2Fsvg%3E");
  }
}

.mwform-checkbox-field:has(.form-check-list:checked) > label:hover {
  background-color: #FFF;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.1490196078);
}
.mwform-checkbox-field:has(.form-check-list:checked) > label::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20width%3D%2230%22%20height%3D%2230%22%20rx%3D%2215%22%20fill%3D%22%23F67C4D%22%2F%3E%3Cpath%20d%3D%22M6%2015.3911L12.232%2021L24%209%22%20stroke%3D%22white%22%20stroke-width%3D%224%22%2F%3E%3C%2Fsvg%3E");
}

.mwform-checkbox-field:has(.form-check-list):has([value=speechMaker]) > label::after {
  content: "音声ファイル作成アプリ";
}

.mwform-checkbox-field:has(.form-check-list):has([value=speechServer]) > label::after {
  content: "ネットワーク型システム開発キット";
}

.mwform-checkbox-field:has(.form-check-list):has([value="speechCloud API"]) > label::after {
  content: "クラウド型リアルタイム合成開発向けAPI";
}

.mwform-checkbox-field:has(.form-check-list):has([value="speechEngine SDK"]) > label::after {
  content: "Windows・Linux向け組込開発キット";
}

.mwform-checkbox-field:has(.form-check-list):has([value="speechEngine SDK Embedded"]) > label::after {
  content: "オンプレサーバー用開発キット";
}

.mwform-checkbox-field:has(.form-check-list):has([value=webReader]) > label::after {
  content: "ウェブサイト⾳声読み上げ";
}

.mwform-checkbox-field:has(.form-check-list):has([value=docReader]) > label::after {
  content: "WEBドキュメント音声読み上げ";
}

.mwform-checkbox-field:has(.form-check-list):has([value=GlobalvoiceCALL2]) > label::after {
  content: "英語発音矯正ソフトウェア";
}

.mwform-checkbox-field:has(.form-check-list):has([value=GlobalvoiceEnglish5]) > label::after {
  content: " 英語読み上げソフトウェア";
}

.form-check-list {
  display: none;
}

.form-check-list + .mwform-checkbox-field-text {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-inline: 10px;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .form-check-list + .mwform-checkbox-field-text {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1.2px;
  }
}

.form-annotation-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.form-annotation-main {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 7%;
  text-align: center;
  color: #444464;
}
@media only screen and (max-width: 768px) {
  .form-annotation-main {
    font-size: 12px;
    line-height: 18px;
  }
}

.form-annotation-strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  .form-annotation-strong {
    font-size: 20px;
  }
}

.form-annotation-recaptcha {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-align: center;
  color: #444464;
}

.form-annotation-recaptcha-link {
  text-decoration: underline;
  color: #F67C4D;
}

.form-check-list-note {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1.6px;
  color: #555;
}
@media only screen and (max-width: 768px) {
  .form-check-list-note {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 3%;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

#kv .section-container {
  margin-top: 60px;
}

.pages.no-bg.thanks #kv {
  height: 165px;
}
@media only screen and (max-width: 768px) {
  .pages.no-bg.thanks #kv {
    height: 100px;
  }
}

.thanks-container {
  padding: 30px 0 130px;
}

.contact-thanks-btn {
  display: flex;
  justify-content: center;
  margin: 60px auto 0;
}
@media only screen and (max-width: 768px) {
  .contact-thanks-btn {
    margin-top: 30px;
  }
}

.contact-thanks-btn a {
  width: 260px;
  height: 60px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .contact-thanks-btn a {
    width: 210px;
    height: 40px;
  }
}

.contact-thanks-lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .contact-thanks-lead {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    text-align: left;
  }
}

.contact-thanks-description {
  margin-top: 30px;
  color: #23232c;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .contact-thanks-description {
    margin-top: 20px;
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }
}/*# sourceMappingURL=contact.css.map */