/* ==========================================================================
   Dark Mode Styles (inlined from darkmode.css)
   ========================================================================== */
.dark-theme body {
  color: var(--color-gray900);
  background-color: var(--color-background);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.dark-theme .section-svg-icon path,
.dark-theme .section-svg-icon rect {
  stroke: var(--color-background);
}

.dark-theme .force-darkmode *:not(a) {
  color: var(--color-gray900) !important;
  -webkit-text-fill-color: var(--color-gray900) !important;
}

.dark-theme .force-darkmode *:not(a):has(a) {
  text-decoration-color: #FF8A3D !important;
}

.dark-theme .force-darkmode a {
  -webkit-text-fill-color: initial !important;
}

.dark-theme .force-darkmode a * {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

/* ==========================================================================
   Theme Styles
   ========================================================================== */
/* Color Variables (for reference):
   $mint: #2694AB
   $blue: #1662A9
   $midnight: #4B5675
   $navy: #0d3a65
   $dark-green: #086E5B
   $deep-green: #008C72
   $green: #00B493
   $light-green: #A1EBDD
   $sg-green: #E8FAF6
   $pale-green: #E8FAF6
   $mandarine: #FFCB3D
   $yellow: #FFBD13
   $peach: #FFB98B
   $carrot: #FF8A3D
   $deep-carrot: #DB612D
   $tomato: #FF3E46
   $light-peach: #FFEFEF
   $white: #fff
   $background-gray: #F8F9FA
   $border-gray: #E9ECEF
   $silver: #CED4DA
   $light-gray: #ADB5BD
   $gray: #868e96
   $dark-gray: #495057
   $black: #212529
   $h0-font-size: 2.4rem
   $h1-font-size: 2rem
   $h2-font-size: 1.8rem
   $h3-font-size: 1.6rem
   $h4-font-size: 1.4rem
   $h5-font-size: 1.3rem
   $h6-font-size: 1.2rem
   $spacer: 1.6rem
*/

* {
  padding: 0;
  margin: 0;
  outline: none;
}

section,
article,
aside,
footer,
header,
nav,
hgroup {
  display: block;
}

a {
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

html {
  font-size: 62.5%;
}

body {
  color: #212529;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-background);
}

pre {
  white-space: pre-wrap;
  /* Since CSS 2.1 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}

h1,
h2,
h3,
h4,
h5,
h5 {
  font-weight: 700;
  line-height: 1.5;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.3rem;
}

h6 {
  font-size: 1.2rem;
}

strong,
b {
  font-weight: 700;
}

a {
  color: #FF8A3D;
}

form label {
  color: #868e96;
  font-size: 1.4rem;
}

p {
  line-height: 1.5;
  margin: 0.8rem 0;
}

p:lang(ko) {
  word-break: break-all;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1.6rem;
  color: #212529;
}

textarea.border {
  border: 1px solid #CED4DA;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 1rem 1.4rem;
  margin: 1.6rem 0;
}

textarea.width-full {
  display: block;
  width: calc(100% - 1.4rem*2);
}

select {
  display: block;
  width: 100%;
  border: 1px solid #CED4DA;
  padding: 1rem 1.4rem;
  font-size: 1.6rem;
  color: #212529;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #fff url("/assets/wv/theme/icon_arrow_down-8d0a4296.svg") no-repeat right 1.6rem center;
}

select:disabled {
  color: #fff;
  background: #E9ECEF url("/assets/wv/theme/icon_arrow_down_disabled-5a1f52c1.svg") no-repeat right 1.6rem center;
}

select:focus {
  outline: none;
}

select.border-none {
  padding: 1rem 0;
}

input {
  -webkit-appearance: none;
  border: solid 1px #CED4DA;
  padding: 1rem 1.4rem;
  margin: 1.6rem 0;
  font-size: 1.6rem;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

input.input-full,
input.width-full {
  display: block;
  width: calc(100% - 1.4rem*2 - 2px);
}

input.width-full.border-none {
  width: 100%;
  padding: 1rem 0;
  margin: 0;
}

input[type=submit].width-full {
  display: block;
  width: 100%;
}

input.border-carrot {
  border: 1px solid #FF8A3D;
}

input:disabled {
  background-color: #E9ECEF;
  color: #fff;
}

input[type="radio"],
input[type="checkbox"] {
  display: none;
}

input[type="radio"] + label span,
input[type="checkbox"] + label span {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 0.8rem;
  margin-top: -0.2rem;
  vertical-align: middle;
  cursor: pointer;
}

input[type="checkbox"] + label {
  position: relative;
  font-size: 1.6rem;
  padding-top: 2px;
  color: #212529;
}

input[type="checkbox"] + label span {
  background: url("/wv/theme/icon-form-check.svg");
}

input[type="checkbox"]:checked + label span {
  background: url("/wv/theme/icon-form-check-checked.svg");
}

input[type="checkbox"]:not(:checked) + label,
input[type="checkbox"]:checked + label {
  position: relative;
  padding-left: calc(0.8rem + 22px);
  font-size: 1.6rem;
  padding-top: 2px;
  color: #212529;
}

input[type="checkbox"]:not(:checked) + label:before,
input[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  vertical-align: middle;
  border: 1px solid #ADB5BD;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

input[type="checkbox"]:not(:checked) + label:after,
input[type="checkbox"]:checked + label:after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  border: 1px solid #FF8A3D;
  width: 8px;
  height: 8px;
  background-color: #FF8A3D;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

input[type="checkbox"]:not(:checked) + label:before {
  border: 1px solid #ADB5BD;
}

input[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

input[type="radio"]:checked + label:before {
  border: 1px solid #FF8A3D;
}

input[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

input[type=date] {
  font-family: inherit;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  min-height: 2rem;
  background: #fff url("/wv/smbs/icon_arrow_down.svg") no-repeat right 0 center;
}

input[type=date]::-webkit-calendar-picker-indicator {
  -webkit-appearance: none;
  color: transparent;
  opacity: 1;
  background: #fff url("/wv/smbs/icon_arrow_down.svg") no-repeat right 0 center;
}

input::-webkit-input-placeholder {
  color: #CED4DA;
}

input:-moz-placeholder {
  color: #CED4DA;
}

/* FF 4-18 */
input::-moz-placeholder {
  color: #CED4DA;
}

/* FF 19+ */
input:-ms-input-placeholder {
  color: #CED4DA;
}

/* IE 10+ */

textarea::-webkit-input-placeholder {
  color: #CED4DA;
}

textarea:-moz-placeholder {
  color: #CED4DA;
}

/* FF 4-18 */
textarea::-moz-placeholder {
  color: #CED4DA;
}

/* FF 19+ */
textarea:-ms-input-placeholder {
  color: #CED4DA;
}

/* IE 10+ */

textarea:focus::-webkit-input-placeholder {
  color: #CED4DA;
}

textarea:focus:-moz-placeholder {
  color: #CED4DA;
}

/* FF 4-18 */
textarea:focus::-moz-placeholder {
  color: #CED4DA;
}

/* FF 19+ */
textarea:focus:-ms-input-placeholder {
  color: #CED4DA;
}

/* IE 10+ */

button:focus,
input:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clear {
  clear: both;
}

.hide {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.container {
  margin: 3.2rem 1.6rem;
  font-size: 1.6rem;
}

.text-normal {
  font-weight: 400 !important;
}

.text-bold {
  font-weight: 700;
}

.text-black {
  color: #212529;
}

.dark-theme .text-black {
  color: var(--color-gray900);
}

.text-dark-gray {
  color: #495057;
}

.dark-theme .text-dark-gray {
  color: var(--color-gray700);
}

.text-navy {
  color: #0d3a65;
}

.text-peach {
  color: #FFB98B;
}

.text-carrot {
  color: #FF8A3D;
}

.text-tomato {
  color: #FF3E46;
}

.text-green {
  color: #00B493;
}

.text-dark-green {
  color: #086E5B;
}

.text-mint {
  color: #2694AB;
}

.text-blue {
  color: #1662A9;
}

.text-gray {
  color: #868e96;
}

.text-light-gray {
  color: #ADB5BD;
}

.dark-theme .text-light-gray {
  color: var(--color-gray500);
}

.text-white {
  color: #fff;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: right;
}

.text-start {
  text-align: left;
}

.text-xxl {
  font-size: 2.4rem !important;
  line-height: 1.54;
  letter-spacing: -0.8px;
}

.text-xl {
  font-size: 2rem !important;
  line-height: 1.55;
  letter-spacing: -0.3px;
}

.text-l {
  font-size: 1.8rem !important;
  line-height: 1.47;
  letter-spacing: -0.3px;
}

.text-m {
  font-size: 1.6rem !important;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

.text-s {
  font-size: 1.4rem !important;
  line-height: 1.5;
}

.text-xs {
  font-size: 1.3rem !important;
  line-height: 1.5;
}

.text-xxs {
  font-size: 1.2rem !important;
  line-height: 1.5;
}

.text-no-decoration {
  text-decoration: none;
}

.text-underline {
  text-decoration: underline;
}

.background-pale-gray {
  background-color: #E9ECEF;
}

.background-gray {
  background-color: #F8F9FA;
}

.dark-theme .background-gray {
  background-color: var(--color-background-low);
}

.background-dark-gray {
  background-color: #E9ECEF;
}

.background-white {
  background-color: #fff;
}

.dark-theme .background-white {
  background-color: var(--color-background);
}

.background-peach {
  background-color: #FFB98B;
}

.background-carrot {
  background-color: #FF8A3D;
}

.background-mandarine {
  background-color: #FFCB3D;
}

.background-yellow {
  background-color: #FFBD13;
}

.background-green {
  background-color: #00B493;
}

.background-deep-green {
  background-color: #008C72;
}

.background-pale-green {
  background-color: #E8FAF6;
}

.background-sg-green {
  background-color: #E8FAF6;
}

.background-tomato {
  background-color: #FF3E46;
}

.background-navy {
  background-color: #0d3a65;
}

.code {
  background-color: #FFEFEF;
  color: #FF3E46;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

.circle-image {
  object-fit: cover;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.circle-image-s {
  width: 40px;
  height: 40px;
}

.circle-image-m {
  width: 48px;
  height: 48px;
}

.circle-image-l {
  width: 60px;
  height: 60px;
}

.circle-image-xl {
  width: 64px;
  height: 64px;
}

.rounded {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.center-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-image img {
  width: 100%;
}

.image-xs {
  width: 24px;
  height: 24px;
}

.image-s {
  width: 40px;
  height: 40px;
}

.image-m {
  width: 48px;
  height: 48px;
}

.image-m img {
  width: 48px;
  height: 48px;
}

.inline-block {
  display: inline-block;
  vertical-align: middle;
}

.inline-flex {
  display: inline-flex;
}

.space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.align-items-start {
  align-items: start;
}

.align-items-flex-start {
  align-items: flex-start;
}

.flex-grow {
  flex-grow: 1;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.block {
  display: block;
}

.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  -webkit-appearance: none;
  text-align: center;
  margin: 0;
  z-index: 10;
}

.flex {
  display: -webkit-flex;
  display: flex;
}

.flex-1 {
  flex: 1;
}

.flex-3 {
  flex: 3;
}

.flex-4 {
  flex: 4;
}

.relative {
  position: relative;
}

.vertical-top {
  vertical-align: top;
}

.vertical-text-bottom {
  vertical-align: text-bottom;
}

.vertical-text-top {
  vertical-align: text-top;
}

.vertical-text-middle {
  vertical-align: middle;
}

.width-full {
  width: 100%;
}

.width-half {
  width: 50%;
}

.list-unstyled {
  list-style-type: none;
}

.list-unstyled .list-item {
  border-bottom: 1px solid #E9ECEF;
  padding: 1.6rem 0;
}

.list-column-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.list-column-2 .list-item {
  width: 50%;
  margin: 0.8rem 0;
}

.w-50 {
  width: 50px;
}

.shadow-bottom {
  box-shadow: 0 1px 0 0 #E9ECEF;
}

.border-bottom {
  border-bottom: 1px solid #E9ECEF;
}

.dark-theme .border-bottom {
  border-bottom: 1px solid var(--color-gray200);
}

.border-top {
  border-top: 1px solid #E9ECEF;
}

.dark-theme .border-top {
  border-top: 1px solid var(--color-gray200);
}

.border-none {
  border: none;
}

.border-white {
  border: 1px solid #fff;
}

.card {
  background-color: #F8F9FA;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.tag {
  padding: 0.2rem 0.4rem;
  margin-right: 0.2rem;
  margin-top: 0.4rem;
  background-color: #F8F9FA;
  color: #495057;
  font-size: 1.4rem;
}

.tag-dark {
  background-color: #E9ECEF;
}

.tag-text {
  padding: 0.2rem 0.4rem;
  margin-right: 0.2rem;
  margin-top: 0.4rem;
  background-color: #F8F9FA;
  color: #495057;
  font-size: 1.4rem;
}

.tag-white {
  display: inline-block;
  text-align: center;
  padding: 0.55rem 1.6rem 0.75rem 1.6rem;
  color: #212529;
  text-decoration: none;
  font-size: 1.4rem;
  border: 1px solid #E9ECEF;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  margin: 0.4rem;
  font-weight: 700;
}

button,
.button {
  -webkit-appearance: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #CED4DA;
  color: #212529;
  text-align: center;
  font-weight: 700;
  background-color: #fff;
  margin: 1.6rem 0;
  text-decoration: none;
}

button:disabled,
.button:disabled {
  background-color: #E9ECEF;
  color: #fff;
  border: none;
}

.button-square {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.button-xs {
  padding: 0.2rem 0.64rem;
  font-size: 1.4rem;
}

.button-s {
  padding: 0.6rem 1.4rem;
  font-size: 1.4rem;
}

.button-m {
  padding: 1rem 1.4rem;
  font-size: 1.6rem;
}

.button-l {
  padding: 1.6rem;
  font-size: 1.6rem;
}

.button-full {
  display: block;
  width: 100%;
}

.button-carrot {
  background-color: #FF8A3D;
  color: #fff;
  border: 1px solid #FF8A3D;
}

.dark-theme .button-carrot:disabled {
  background-color: var(--color-gray300);
  color: var(--color-gray-400);
  border: 1px solid var(--color-gray300);
}

.button-mandarine {
  background-color: #FFCB3D;
  color: #fff;
  border: 1px solid #FFCB3D;
}

.button-tomato {
  background-color: #FF3E46;
  color: #fff;
  border: 1px solid #FF3E46;
}

.button-green {
  background-color: #00B493;
  color: #fff;
  border: 1px solid #00B493;
}

.button-deep-green {
  background-color: #008C72;
  color: #fff;
  border: 1px solid #008C72;
}

.button-midnight {
  background-color: #4B5675;
  color: #fff;
  border: 1px solid #4B5675;
}

.button-carrot-line {
  background-color: #fff;
  color: #FF8A3D;
  border: 1px solid #FF8A3D;
}

.dark-theme .button-carrot-line {
  background-color: var(--color-background);
  color: #FF8A3D;
  border: 1px solid #FF8A3D;
}

.dark-theme .button-carrot-line:disabled {
  background-color: var(--color-gray300);
  color: var(--color-gray-400);
  border: 1px solid var(--color-gray300);
}

.button-green-line {
  background-color: #fff;
  color: #00B493;
  border: 1px solid #00B493;
}

.button-tomato-line {
  background-color: #fff;
  color: #FF3E46;
  border: 1px solid #FF3E46;
}

.button-disabled {
  background-color: #E9ECEF;
  color: #fff;
  border: none;
}

.button-round {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

.input-s {
  padding: 0.4rem 0.8rem;
  font-size: 1.4rem;
}

.input-m {
  padding: 1rem 1.4rem;
  font-size: 1.6rem;
}

.input-l {
  padding: 1.6rem;
  font-size: 1.6rem;
}

.input-full {
  display: block;
  width: 100%;
}

.button-bottom,
.submit-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  color: #fff;
  background-color: #FF8A3D;
  text-align: center;
  padding: 1.6rem 0;
  margin: 0;
  font-weight: 700;
  font-size: 1.6rem;
  z-index: 10;
}

.right-arrow {
  background: #fff url("/assets/wv/theme/icon_arrow_right-61a23c7c.svg") no-repeat right 0 center;
}

.right-arrow-black {
  background: transparent url("/assets/wv/theme/icon_arrow_right_black-1653a151.svg") no-repeat right 0 center;
}

.right-arrow-black-s {
  background: transparent url("/assets/wv/theme/icon_arrow_right_black_small-626ab11d.svg") no-repeat right 0 center;
}

.right-arrow-disabled {
  background: #fff url("/assets/wv/theme/icon_arrow_right_disabled-cb0e2d8a.svg") no-repeat right 0 center;
}

.line-arrow-s {
  border-bottom: 1px solid #868e96;
  border-right: 1px solid #868e96;
  padding: 0.25rem;
}

.line-arrow-s.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.line-clamp-2-m {
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 5.12rem;
}

/* spacing
m - margin
p - padding

t - margin-top or padding-top
b - margin-bottom or padding-bottom
l - margin-left or padding-left
r - margin-right or padding-right
x - both *-left and *-right
y - both *-top and *-bottom

0 - 0
1 - $spacer * .25
2 - $spacer * .5
3 - $spacer
4 - $spacer * 1.5
5 - $spacer * 2
auto - auto
*/

.m-0 {
  margin: 0;
}

.m-3 {
  margin: 1.6rem;
}

.m-4 {
  margin: 2.4rem;
}

.p-1 {
  padding: 0.4rem;
}

.p-2 {
  padding: 0.8rem;
}

.p-2_5 {
  padding: 1.2rem;
}

.p-3 {
  padding: 1.6rem;
}

.p-4 {
  padding: 2.4rem;
}

.p-5 {
  padding: 3.2rem;
}

.ml-0_5 {
  margin-left: 0.2rem;
}

.ml-1 {
  margin-left: 0.4rem;
}

.ml-2 {
  margin-left: 0.8rem;
}

.ml-2_5 {
  margin-left: 1.2rem;
}

.ml-3 {
  margin-left: 1.6rem;
}

.ml-4 {
  margin-left: 2.4rem;
}

.ml-5 {
  margin-left: 3.2rem;
}

.mr-0_5 {
  margin-right: 0.2rem;
}

.mr-1 {
  margin-right: 0.4rem;
}

.mr-2 {
  margin-right: 0.8rem;
}

.mr-3 {
  margin-right: 1.6rem;
}

.mr-4 {
  margin-right: 2.4rem;
}

.mr-5 {
  margin-right: 3.2rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-0_5 {
  margin-top: 0.2rem;
}

.mt-1 {
  margin-top: 0.4rem;
}

.mt-2 {
  margin-top: 0.8rem;
}

.mt-3 {
  margin-top: 1.6rem;
}

.mt-4 {
  margin-top: 2.4rem;
}

.mt-5 {
  margin-top: 3.2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-0_5 {
  margin-bottom: 0.2rem;
}

.mb-1 {
  margin-bottom: 0.4rem;
}

.mb-2 {
  margin-bottom: 0.8rem;
}

.mb-3 {
  margin-bottom: 1.6rem;
}

.mb-4 {
  margin-bottom: 2.4rem;
}

.mb-5 {
  margin-bottom: 3.2rem;
}

.mb-5_5 {
  margin-bottom: 4rem;
}

.mb-6 {
  margin-bottom: 4.8rem;
}

.mx-1 {
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}

.mx-2 {
  margin-left: 0.8rem;
  margin-right: 0.8rem;
}

.mx-3 {
  margin-left: 1.6rem;
  margin-right: 1.6rem;
}

.mx-4 {
  margin-left: 2.4rem;
  margin-right: 2.4rem;
}

.mx-5 {
  margin-left: 3.2rem;
  margin-right: 3.2rem;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}

.my-2 {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.my-3 {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.my-4 {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}

.my-5 {
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}

.pt-1 {
  padding-top: 0.4rem;
}

.pt-2 {
  padding-top: 0.8rem;
}

.pt-3 {
  padding-top: 1.6rem;
}

.pt-4 {
  padding-top: 2.4rem;
}

.pt-5 {
  padding-top: 3.2rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.4rem;
}

.pb-2 {
  padding-bottom: 0.8rem;
}

.pb-3 {
  padding-bottom: 1.6rem;
}

.pb-4 {
  padding-bottom: 2.4rem;
}

.pb-5 {
  padding-bottom: 3.2rem;
}

.pb-5_5 {
  padding-bottom: 4rem;
}

.pb-6 {
  padding-bottom: 4.8rem;
}

.py-1 {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.py-2 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.py-2_5 {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.py-3 {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

.py-4 {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.py-5 {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.px-1 {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

.px-2 {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

.px-3 {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

.px-4 {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}

.pr-2 {
  padding-right: 0.8rem;
}

.pr-3 {
  padding-right: 1.6rem;
}

.pr-4 {
  padding-right: 2.4rem;
}

.pl-2 {
  padding-left: 0.8rem;
}

.pl-4 {
  padding-left: 2.4rem;
}

.pl-5 {
  padding-left: 3.2rem;
}

/* slick image_slider */

/* image slider */
#image-slider .slider-wrap {
  position: relative;
}

#image-slider .slider-wrap .slider {
  border: none;
}

#image-slider .slider-wrap .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 2rem 0;
  list-style: none;
  text-align: center;
}

#image-slider .slider-wrap .slick-dots li {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

#image-slider .slider-wrap .slick-dots li button {
  display: block;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  margin: 0 4px;
  width: 8px;
}

#image-slider .slider-wrap .slick-dots li button:before {
  content: ' ';
  background-color: rgba(255, 255, 255, 0.3);
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: block;
  position: absolute;
  bottom: 0;
}

#image-slider .slider-wrap .slick-dots .slick-active button:before {
  background-color: #fff;
}

#image-slider .slider-wrap .image-wrap {
  position: relative;
  width: 100%;
  padding-top: 58%;
}

#image-slider .slider-wrap .image-wrap img {
  position: absolute;
  height: 100%;
  width: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#image-slider .slider-wrap .image-wrap .portrait {
  width: 100%;
  height: auto;
}

.max-width-412 {
  max-width: 412px;
  margin: 0 auto;
}

/* temp */
#header-banner-image-kr {
  background-color: #E8FAF6;
}

#header-banner-image-kr {
  background: #D8F1DE url("/wv/articles/neighbor_banner.svg") no-repeat;
  background-size: cover;
  width: 320px;
  height: 116px;
  margin: 0 auto;
}

/* relief */
.epilogue-content {
  max-width: 540px;
  margin: 0 auto;
}

#header-banner-relief-kr {
  background: #F2F3F6 url("/assets/wv/together/banner-6cedef3c.png") no-repeat;
  background-size: cover;
  width: 370px;
  height: 150px;
  margin: 0 auto;
}

#header-banner-relief-epilogue-kr {
  background: #fff url("/assets/wv/together/epilogue_banner-3fe7e6f7.png") no-repeat;
  background-size: cover;
  width: 327px;
  height: 118px;
  margin: 0 auto;
}

.banner-background-relief {
  background-color: #F2F3F6;
}

.relief-image {
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-sizing: border-box;
  position: relative;
}

.relief-image img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.relief-image .inner-shadow {
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: absolute;
}

.relief-campaign-count {
  background-color: #F9F9F9;
}

.relief-campaign-count .text-carrot {
  color: #FF7E36;
}

.icon-heart {
  background-image: url("/assets/wv/together/icon_heart-39b30088.svg");
  width: 12px;
  height: 10px;
}

.rounded-card {
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}

.banner-background-karrotsafe {
  background-color: #FCF0ED;
}

#header-banner-image-karrotsafe {
  background: #D8F1DE url("/wv/articles/karrothelp_web_1080.png") no-repeat;
  background-size: cover;
  width: 320px;
  height: 116px;
  margin: 0 auto;
}

.banner-background-karrotmakeover {
  background-color: #FF7E36;
}

#header-banner-image-karrotmakeover {
  background: #FF7E36 url("/wv/articles/karrotmakeover.png") no-repeat;
  background-size: cover;
  width: 320px;
  height: 116px;
  margin: 0 auto;
}

/* elections */
.hubo-image {
  width: 100px;
  max-height: 125px;
  object-fit: cover;
  object-position: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #E9ECEF;
}

.pre-ps-list-item:first-child {
  padding-top: 0.4rem;
}
