.selectArea {
    display: block;
    position: relative;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
}
.selectArea__button {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 46px;
    padding-right: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-bottom: 1px solid #dcdcdc;
}
.selectArea__button::before {
    content: '';
    display: block;
    width: 30px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url('../img/build/chevron-down-black.svg') no-repeat center center/14px;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}
.selectArea__button.active::before {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}
.selectArea__list {
    display: none;
    width: 100%;
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #dcdcdc;
}
.selectArea__list li {
    line-height: 2;
    cursor: pointer;
}
.selectArea.absolute .selectArea__list {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 3;
    background: #dcdcdc;
}
.selectArea input {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0;
}

.passwordArea {
    display: block;
    position: relative;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.passwordArea input {
    width: 100%;
    height: 46px;
    padding-right: 30px;
    border-bottom: 1px solid #dcdcdc;
}
.passwordArea__button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    min-width: 30px;
    height: 100%;
    min-height: 100%;
    background: url('../img/build/eye-black.svg') no-repeat center center/18px;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}
.passwordArea__button::before {
    content: '';
    width: 80%;
    height: 2px;
    background: #101010;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    outline: 1px solid #ffffff;
    opacity: 0;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}
input[type='text'] ~ .passwordArea__button {
    opacity: 0.5;
}
input[type='text'] ~ .passwordArea__button::before {
    opacity: 1;
}

.numberArea {
    display: block;
    position: relative;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.numberArea input {
    width: 100%;
    height: 46px;
    padding-right: 30px;
    border-bottom: 1px solid #dcdcdc;
}
.numberArea input::-webkit-inner-spin-button,
.numberArea input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
.numberArea__plus,
.numberArea__minus {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    min-width: 30px;
    height: 50%;
    min-height: 50%;
    position: absolute;
    right: 0;
    font-weight: bold;
}
.numberArea__plus[data-number-disabled=true]::before,
.numberArea__plus[data-number-disabled=true]::after,
.numberArea__minus[data-number-disabled=true]::before,
.numberArea__minus[data-number-disabled=true]::after {
    opacity: 0.5;
}
.numberArea__plus {
    top: 0;
    padding-top: 4px;
}
.numberArea__plus::before,
.numberArea__plus::after {
    content: '';
    display: block;
    position: absolute;
    width: 12px;
    height: 2px;
    background: #101010;
}
.numberArea__plus::before {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}
.numberArea__plus::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.numberArea__minus {
    bottom: 0;
    padding-bottom: 4px;
}
.numberArea__minus::before {
    content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 2px;
    background: #101010;
}

.imageArea {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}
.imageArea img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.imageArea.contain img {
    -o-object-fit: contain;
    object-fit: contain;
}

.checkboxArea,
.radioArea {
    position: relative;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    line-height: 1.6;
}
.checkboxArea__flag,
.radioArea__flag {
    margin-right: 8px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    background: transparent;
    border: 1px solid #dcdcdc;
    position: relative;
    float: left;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
}
.checkboxArea input,
.radioArea input {
    display: block;
    position: absolute;
    left: 8px;
    top: 9px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0;
}
.checkboxArea input:checked + *::before,
.radioArea input:checked + *::before {
    opacity: 1;
}

.checkboxArea__flag::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url('../img/build/checkbox-black.svg') no-repeat center center/8px;
    opacity: 0;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.radioArea__flag {
    border-radius: 50%;
}
.radioArea__flag::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #101010;
    opacity: 0;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

[data-fx-tooltip] {
    cursor: pointer;
}

.tooltipArea {
    position: absolute;
    display: block;
    min-width: 140px;
    max-width: 240px;
    padding: 10px;
    text-align: center;
    color: #ffffff;
    background: rgba(21, 21, 21, 0.425);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    overflow: hidden;
    pointer-events: none;
    z-index: 100;
}

[data-fx-sub-block] {
    display: none;
}

[data-fx-toggle-block] {
    display: none;
}

[data-fx-toggle-button].active {
    cursor: default;
}

[data-fx-animate] {
    opacity: 0;
}
[data-fx-animate].animated {
    opacity: 1;
}

[data-fx-upload] [data-fx-upload-item] {
    display: none;
}
[data-fx-upload] [data-fx-upload-more] {
    justify-self: center !important;
    grid-column-start: 1 !important;
    grid-column-end: -1 !important;
}
[data-fx-upload][data-fx-upload-type='auto'] [data-fx-upload-more] {
    display: none !important;
}

.sPopup {
    z-index: 98;
    display: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background: rgba(21, 21, 21, 0.425);
    overflow: hidden;
}
.sPopup__bodyhidden {
    overflow: hidden;
}
.sPopup__bodyhidden-pc {
    overflow: hidden;
    margin-right: 0.6rem;
}
.sPopup__window {
    position: relative;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
    max-height: 100%;
    background: #ffffff;
}
.sPopup__content {
    padding: 30px;
    overflow-y: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.sPopup__close {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    z-index: 3;
}
.sPopup__close::before,
.sPopup__close::after {
    content: '';
    position: absolute;
    display: block;
    width: 20px;
    height: 1px;
    background: #101010;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.sPopup__close::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.sPopup__close::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.sPopup__close:hover::before,
.sPopup__close:hover::after {
    opacity: 0.5;
}
.inputArea .select {
    top: 100%;
    bottom: calc(-100% - 24px - 12px);
}