/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */

.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  box-sizing: border-box;
  touch-action: none;
  user-select: none;
}

.noUi-base,
.noUi-connects {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
}


/* Wrapper for all connect elements.
 */

.noUi-connects {
  z-index: 0;
  overflow: hidden;
  border-radius: 3px;
}

.noUi-connect,
.noUi-origin {
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform-origin: 0 0;
  transform-style: flat;
  will-change: transform;
}


/* Offset direction
 */

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  right: auto;
  left: 0;
}


/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */

.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-touch-area {
  width: 100%;
  height: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform .3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}


/* Slider size and handle placement;
 */

.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  top: -6px;
  right: -17px;
  width: 34px;
  height: 28px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  right: -6px;
  bottom: -17px;
  width: 28px;
  height: 34px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  right: auto;
  left: -17px;
}


/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */

.noUi-target {
  position: relative;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  background: #fafafa;
  box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
}

.noUi-connect {
  background: #3fb8af;
}


/* Handles and cursors;
 */

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  position: absolute;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  backface-visibility: hidden;
  background: #fff;
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
  cursor: default;
}

.noUi-active {
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
}


/* Handle stripes;
 */

.noUi-handle:after,
.noUi-handle:before {
  display: block;
  position: absolute;
  top: 6px;
  left: 14px;
  width: 1px;
  height: 14px;
  background: #e8e7e6;
  content: '';
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
  top: 14px;
  left: 6px;
  width: 14px;
  height: 1px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}


/* Disabled state;
 */

[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled].noUi-handle,
[disabled] .noUi-handle,
[disabled].noUi-target {
  cursor: not-allowed;
}


/* Base;
 *
 */

.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}


/* Values;
 *
 */

.noUi-value {
  position: absolute;
  text-align: center;
  white-space: nowrap;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}


/* Markings;
 *
 */

.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}


/* Horizontal layout;
 *
 */

.noUi-pips-horizontal {
  top: 100%;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 10px 0;
}

.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  width: 2px;
  height: 5px;
  margin-left: -1px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}


/* Vertical layout;
 *
 */

.noUi-pips-vertical {
  top: 0;
  left: 100%;
  height: 100%;
  padding: 0 10px;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  padding-left: 25px;
  transform: translate(0, -50%);
}

.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  padding: 5px;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  bottom: 120%;
  left: 50%;
  transform: translate(-50%, 0);
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  top: 50%;
  right: 120%;
  transform: translate(0, -50%);
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  bottom: 10px;
  left: auto;
  transform: translate(50%, 0);
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  top: auto;
  right: 28px;
  transform: translate(0, -18px);
}

.icm-main {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url("../nimg/icm-background@1x.webp");
  background-repeat: repeat-y;
  background-size: 100%;
  box-shadow: inset 0 0 100px 0 rgba(0, 0, 0, .7);
}

@media only screen and (min-resolution: 1.5dppx) {
  .icm-main {
    background-image: url("../nimg/icm-background@2x.webp");
  }
}

.icm-main__description {
  display: inline-block;
  max-width: 520px;
  padding: 40px 20px 70px;
  color: #fff;
}

@media screen and (min-width: 70.625em) {
  .icm-main__description {
    max-width: unset;
    margin: 0 136px;
  }
}

.icm-main__title {
  margin-bottom: 30px;
  font-family: "PT Serif", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
}

@media screen and (min-width: 70.625em) {
  .icm-main__title {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 46px;
  }
}

.icm-main__text {
  text-wrap: balance;
  line-height: 18px;
}

@media screen and (min-width: 70.625em) {
  .icm-main__text {
    font-size: 16px;
    line-height: 24px;
  }
}

.icm-app {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 60px 20px 40px;
  background-color: #000;
  box-shadow: 0 4px 120px rgba(119, 198, 147, .7);
}

@media screen and (min-width: 30em) {
  .icm-app {
    padding: 80px 30px 60px;
  }
}

@media screen and (min-width: 79.375em) {
  .icm-app {
    width: unset;
    margin: 0 136px 72px;
    padding: 40px 92px 48px;
    border-radius: 24px;
    outline: 1px solid #433620;
    outline-offset: -9px;
  }
}

.icm-app::after,
.icm-app::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e2b46b;
  content: '';
  opacity: .3;
}

@media screen and (min-width: 70.625em) {
  .icm-app::after,
.icm-app::before {
    display: none;
  }
}

.icm-app::before {
  top: 5px;
}

.icm-app::after {
  bottom: 5px;
}

.icm-app__pic {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
}

.icm-qty {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 30em) {
  .icm-qty {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 79.375em) {
  .icm-qty {
    max-width: unset;
  }
}

.icm-qty__title {
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: .02em;
  line-height: 14px;
  text-transform: uppercase;
}

@media screen and (min-width: 64em) {
  .icm-qty__title {
    font-size: 16px;
    line-height: 150%;
  }
}

@media screen and (min-width: 79.375em) {
  .icm-select {
    display: none;
  }
}

.s-hidden {
  visibility: hidden;
  padding-right: 10px;
}

@media screen and (min-width: 79.375em) {
  .s-hidden {
    display: none;
  }
}

.select {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 44px;
  margin-top: 16px;
  cursor: pointer;
}

@media screen and (min-width: 79.375em) {
  .select {
    display: none;
  }
}

.styledSelect {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #555;
  border-radius: 6px;
  background-color: #000;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg"><polygon points="5 5, 0 0, 10 0" fill="white"/></svg>');
  background-position: right 17px center;
  background-repeat: no-repeat;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  letter-spacing: .02em;
  line-height: 24px;
}

.styledSelect.active {
  border-radius: 6px 6px 0 0;
}

.styledSelect.active + .options {
  border-radius: 0 0 6px 6px;
}

.options {
  display: none;
  z-index: 999;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: 30vh;
  margin: 0 0;
  padding: 0 0;
  overflow-y: scroll;
  border: 1px solid #555;
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  letter-spacing: .02em;
  line-height: 24px;
  text-align: center;
}

.options li {
  margin: 0 0;
  padding: 10px 0;
}

.options li:hover {
  background-color: #494c50;
  color: #fff;
}

.icm-range {
  display: none;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 60px;
}

@media screen and (min-width: 79.375em) {
  .icm-range {
    display: inline-block;
  }
}

.icm-range-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.icm-range .noUi-target {
  position: relative;
  flex: 1;
  border-radius: 50px;
  background: transparent;
  box-shadow: none;
}

.icm-range .noUi-target.noUi-horizontal {
  height: 20px;
  border: none;
  border-radius: 6px;
}

.icm-range .noUi-target .noUi-base,
.icm-range .noUi-target .noUi-connects {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.icm-range .noUi-target .noUi-connects {
  z-index: 0;
  width: auto;
  margin: 0 -5px;
  overflow: hidden;
  background-color: #555;
}

.icm-range .noUi-target .noUi-connect {
  width: 100%;
  height: 100%;
  transform-origin: 0 0;
  transform-style: flat;
  background-color: #5b9f62;
}

.icm-range .noUi-target .noUi-origin {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 1px;
  width: 100%;
  height: 0;
  will-change: transform;
}

.icm-range .noUi-target .noUi-handle {
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  transform: translate(50%, -7px);
  border: none;
  border-radius: 50px;
  backface-visibility: hidden;
  background-color: #5b9f62;
  box-shadow: 0 0 20px rgba(0, 0, 0, .45);
  cursor: pointer;
}

.icm-range .noUi-target .noUi-handle:before {
  display: none;
}

.icm-range .noUi-target .noUi-handle:after {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 29px;
  height: 29px;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  background-color: #5b9f62;
  box-shadow: 0 0 20px rgba(0, 0, 0, .45);
  content: '';
}

.icm-range .noUi-target .noUi-handle .noUi-touch-area {
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  height: 100%;
}

.icm-range .noUi-draggable {
  cursor: ew-resize;
}

.icm-range .noUi-pips-horizontal {
  padding: 0;
}

.icm-range .noUi-marker-horizontal {
  width: 1px;
  height: 8px;
  background-color: #555;
}

.icm-range .noUi-value-large,
.icm-range .noUi-value-sub {
  font-size: 12px;
}

.icm-range .noUi-pips {
  color: #ccc;
}

.icm-range .active-pip {
  color: #5b9f62;
}

.icm-grid {
  position: relative;
  width: 100%;
  counter-reset: payments;
}

.icm-grid__header {
  gap: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 16px;
}

.icm-grid__header-item {
  gap: 22px;
  display: flex;
  padding-left: 4px;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: .02em;
  line-height: 14px;
}

@media screen and (min-width: 64em) {
  .icm-grid__header-item {
    font-size: 16px;
    line-height: 150%;
  }
}

.icm-grid__header-sum {
  display: none;
  padding: 5px 8px;
  border-radius: 4px;
  background-color: rgba(85, 85, 85, .4);
  color: #a0a0a0;
  font-size: 12px;
  line-height: 14px;
}

@media screen and (min-width: 64em) {
  .icm-grid__header-sum {
    display: inline-block;
  }
}

.icm-grid__spreadsheet {
  gap: 12px;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 64em) {
  .icm-grid__spreadsheet {
    position: relative;
    padding-left: 20px;
  }
}

@media screen and (min-width: 79.375em) {
  .icm-grid__spreadsheet {
    padding-left: 0;
  }
}

.icm-grid__row {
  gap: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  counter-increment: payments;
}

@media screen and (min-width: 64em) {
  .icm-grid__row {
    position: relative;
  }
}

.icm-grid__row:nth-child(1) .icm-grid__item:first-child::before {
  background-color: #a58542;
}

@media screen and (min-width: 64em) {
  .icm-grid__row:nth-child(1) .icm-grid__item:first-child::before {
    border: none;
    background-color: #d6a441;
    background-image: url("../nimg/icm-lens.svg");
  }
}

.icm-grid__row:nth-child(2) .icm-grid__item:first-child::before {
  background-color: #7d7d7d;
}

@media screen and (min-width: 64em) {
  .icm-grid__row:nth-child(2) .icm-grid__item:first-child::before {
    border: none;
    background-color: #8b8b8b;
    background-image: url("../nimg/icm-lens.svg");
  }
}

.icm-grid__row:nth-child(3) .icm-grid__item:first-child::before {
  background-color: #74491e;
}

@media screen and (min-width: 64em) {
  .icm-grid__row:nth-child(3) .icm-grid__item:first-child::before {
    border: none;
    background-color: #9a5917;
    background-image: url("../nimg/icm-lens.svg");
  }
}

.icm-grid__item {
  display: flex;
  align-items: center;
  height: 45px;
  padding: 10px 12px;
  border: 1px solid #555;
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  letter-spacing: .02em;
  line-height: 24px;
}

@media screen and (min-width: 64em) {
  .icm-grid__item {
    padding: 12px 20px;
    font-size: 24px;
    line-height: 28px;
  }
}

.icm-grid__item:focus-within {
  border-color: #d7d7d7;
}

.icm-grid__item:first-child {
  padding: 4px;
}

@media screen and (min-width: 64em) {
  .icm-grid__item:first-child {
    padding: 12px 20px;
  }
}

.icm-grid__item:first-child::before {
  display: inline-block;
  margin-right: 12px;
  padding: 10px 8px;
  border-radius: 4px;
  background-color: #202020;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
  content: counter(payments);
}

@media screen and (min-width: 64em) {
  .icm-grid__item:first-child::before {
    aspect-ratio: 1 / 1;
    display: flex;
    position: absolute;
    left: -28px;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 1px solid #555;
    border-radius: 50%;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 12px;
  }
}

.icm-grid__item:last-child {
  justify-content: end;
  border: 1px solid #202020;
  background-color: #202020;
}

.icm-grid__item input {
  width: 100%;
  border: none;
  outline: none;
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.icm-grid__item input::-moz-placeholder {
  color: #5f6162;
}

.icm-grid__item input::placeholder {
  color: #5f6162;
}

.icm-grid__sum {
  gap: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 16px;
}

@media screen and (min-width: 64em) {
  .icm-grid__sum {
    visibility: hidden;
    height: 0;
    pointer-events: none;
  }
}

.icm-grid__sum-item {
  padding-left: 4px;
  color: #a0a0a0;
  font-size: 12px;
  letter-spacing: .02em;
  line-height: 14px;
}

.icm-grid__reset {
  aspect-ratio: 1 / 1;
  display: none;
  position: absolute;
  justify-self: end;
  width: 24px;
  cursor: pointer;
  pointer-events: all;
}

.icm-grid__reset:hover {
  fill: #8f1289;
}

.icm-grid__reset:active {
  transform: scale(.97);
}

@media screen and (min-width: 64em) {
  .icm-grid__reset {
    visibility: visible;
    position: absolute;
  }
}

.icm-buttons {
  transition: all .3s;
}

.icm-buttons.get .icm-button_get {
  display: flex;
}

.icm-buttons.get .icm-button_copy {
  display: none;
}

.icm-buttons.get .icm-button_copied {
  display: none;
}

.icm-buttons.copy {
  width: 100%;
}

.icm-buttons.copy .icm-button_get {
  display: none;
}

.icm-buttons.copy .icm-button_copy {
  display: flex;
}

.icm-buttons.copy .icm-button_copied {
  display: none;
}

.icm-buttons.copy .icm-button__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 24px;
}

@media screen and (min-width: 30em) {
  .icm-buttons.copy .icm-button__wrapper {
    position: relative;
    justify-content: center;
  }
}

.icm-buttons.copy .icm-button__reset {
  display: unset;
}

.icm-buttons.copy .icm-button__reset:active {
  transform: scale(.97);
}

.icm-buttons.share .icm-button_get {
  display: none;
}

.icm-buttons.share .icm-button_copy {
  display: none;
}

.icm-buttons.share .icm-button_copied {
  display: flex;
}

.icm-button {
  gap: 10px;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 24px;
  padding: 16px 32px;
  transform: scale(1);
  border-radius: 5px;
  background-color: #e51e25;
  cursor: pointer;
  transition: all .2s;
}

@media screen and (min-width: 30em) {
  .icm-button {
    max-width: 320px;
  }
}

@media screen and (min-width: 70.625em) {
  .icm-button {
    max-width: 400px;
  }
}

.icm-button__text {
  color: #fff;
  font-size: 16px;
  line-height: 18px;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.icm-button__icon {
  flex-shrink: 0;
}

.icm-button__reset {
  display: none;
  width: 18px;
  height: 19px;
  cursor: pointer;
}

@media screen and (min-width: 30em) {
  .icm-button__reset {
    position: absolute;
    right: 0;
  }
}

.icm-button:active {
  transform: scale(.97);
}

.icm-button_copy {
  margin-top: 0;
  margin-bottom: 0;
  background-color: #5b9f62;
}

.icm-button_copy .icm-button__icon {
  width: 14px;
  height: 16px;
}

.icm-button_copied {
  background-color: #5b9f62;
}

.icm-button_copied .icm-button__icon {
  width: 12px;
  height: 10px;
}


/* START TOOLTIP STYLES */

[tooltip] {
  position: relative;
  border: transparent;
  /* opinion 1 */
  outline: 1px solid #e17777;
}


/* Applies to all tooltips */

[tooltip]::after {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: calc(100% + 6px);
  width: 200%;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 1ch 1.5ch;
  overflow: hidden;
  transform: translate(0, -50%);
  border-radius: .3ch;
  background: #333;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, .35);
  color: #fff;
  /* magic! *//* most of the rest of this is opinion */
  font-family: inherit;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  text-overflow: ellipsis;
  animation: tooltips-horz 300ms ease-out forwards;
  content: attr(tooltip);
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (min-width: 30em) {
  [tooltip]::after {
    font-size: 14px;
  }
}

@media screen and (min-width: 64em) {
  [tooltip]::after {
    font-size: 20px;
  }
}


/* don't show empty tooltips */

[tooltip='']::after {
  display: none !important;
}


/* KEYFRAMES */

@keyframes tooltips-horz {
  to {
    transform: translate(0, -50%);
    opacity: .9;
  }
}

.icm-faq {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 40px 24px 0;
  background-color: var(--layer-2a-color, #fff);
}

@media screen and (min-width: 48em) {
  .icm-faq {
    padding: 80px 30px;
  }
}

.icm-faq__wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1034px;
  border-bottom: 1px solid var(--line-1-color, #e7e7e7);
}

.icm-faq__heading {
  margin: 0 0 24px;
  color: var(--text-2-color, #202020);
  font-family: "PT Serif", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .icm-faq__heading {
    margin: 0 0 40px;
    font-size: 32px;
  }
}

.icm-faq__item {
  border-top: 1px solid var(--line-1-color, #e7e7e7);
}

.icm-faq__item a {
  color: var(--text-2-color, #202020);
}

.icm-faq__button {
  display: flex;
  width: 100%;
  padding: 21px 0 16px;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

@media screen and (min-width: 48em) {
  .icm-faq__button {
    padding: 19px 16px;
    font-size: 18px;
  }
}

.icm-faq__inner {
  flex-shrink: 0;
  margin: 0 0 0 auto;
  padding: 0 0 0 24px;
}

.icm-faq__sign {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--text-3-color, #202020);
  border-radius: 50%;
}

.icm-faq__sign svg {
  width: 14px;
  height: 14px;
}

.ui-state-active .icm-faq__sign svg {
  --i-color2: transparent;
}

[theme='dark'] .ui-state-active .icm-faq__sign svg {
  --i-color2: transparent;
}

[theme='dark'] .icm-faq__sign svg {
  --i-color1: var(--text-3-color);
  --i-color2: var(--text-3-color);
}

@media screen and (max-height: 400px) {
  .rdm-app__title {
    display: none;
  }
}

@media screen and (max-width: 300px), (max-height: 300px) {
  .rdm-app,
.rdm-app__screen {
    width: 100%;
  }
  .rdm-main__screen-icon {
    display: none;
  }
}

.icm-faq__content {
  display: none;
  padding: 0 0 24px;
}

@media screen and (min-width: 48em) {
  .icm-faq__content {
    padding: 5px 68px 20px 16px;
  }
}

.icm-faq__content p {
  margin: 0;
  color: var(--text-3-color, #666);
  font-size: 16px;
  line-height: 1.5;
}

.icm-faq__content p:not(:last-child) {
  margin-bottom: 1em;
}

@media screen and (min-width: 48em) {
  .icm-faq__content p {
    font-size: 18px;
  }
}

.icm-faq__content p a {
  color: var(--text-1-color, #202020);
  text-decoration: underline;
}

.icm-faq__content ol {
  margin: 20px 0;
  list-style-position: inside;
}

.icm-faq__content ol li {
  color: #666;
  font-size: 18px;
  line-height: 1.5;
}

.icm-article {
  position: relative;
  width: 100%;
  background-color: var(--layer-2a-color, #efefef);
}

[theme='dark'] .icm-article {
  --custom-icm-opacity-bg-image: .02;
}

@media screen and (min-width: 48em) {
  .icm-article {
    padding: 24px 30px;
  }
}

.icm-article::before {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../nimg/pattern-welcome.svg");
  background-size: 300px;
  content: '';
  opacity: var(--custom-icm-opacity-bg-image, .04);
}

.icm-article__wrap {
  gap: 34px;
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  padding: 40px 24px;
  background-color: var(--layer-3-color, #fff);
  color: var(--text-2-color, #333);
  font-family: "PT Serif", serif;
}

@media screen and (min-width: 48em) {
  .icm-article__wrap {
    gap: 46px;
    padding: 80px 30px;
  }
}

.icm-article__heading {
  max-width: 994px;
  margin: 0 auto;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media screen and (min-width: 48em) {
  .icm-article__heading {
    font-size: 32px;
  }
}

.icm-article__heading p {
  margin: 0;
}

.icm-article__section {
  max-width: 994px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 25px;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media screen and (min-width: 64em) {
  .icm-article__section {
    font-size: 17px;
    line-height: 28px;
  }
}

.icm-article__section h3 {
  margin-bottom: 25px;
  color: inherit;
  font-family: "PT Serif", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}

@media screen and (min-width: 64em) {
  .icm-article__section h3 {
    font-size: 28px;
    line-height: 28px;
  }
}

.icm-article__section p {
  display: inline-block;
  margin-bottom: 0;
  font-size: inherit;
  line-height: inherit;
  word-break: inherit;
  overflow-wrap: inherit;
}

.icm-article__section p:not(:last-child) {
  margin-bottom: 14px;
}

.icm-article__section a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

.icm-article__section figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 14px;
}

@media screen and (min-width: 64em) {
  .icm-article__section figure img {
    max-width: 80%;
  }
}

.icm-article__section figure:not(:last-child) {
  margin-bottom: 14px;
}

.icm-article__section figcaption {
  margin-top: 8px;
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.icm-article ol,
.icm-article ul {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-left: 18px;
  font-size: inherit;
  line-height: inherit;
}

@media screen and (min-width: 64em) {
  .icm-article ol,
.icm-article ul {
    padding-left: 20px;
  }
}

.icm-article ol:not(:last-child),
.icm-article ul:not(:last-child) {
  margin-bottom: 14px;
}

.icm-article ul {
  list-style-type: disc;
}

.icm-article li {
  font-size: inherit;
  line-height: inherit;
}

@media screen and (min-width: 30em) {
  .icm-article li {
    margin-left: 1em;
  }
}

.icm-article li:not(:last-child) {
  margin-bottom: 14px;
}

.icm-article li::marker {
  color: var(--text-4-color, #606060);
  font-size: 1.2em;
}
