/* 1.setting */
@charset "utf-8";

/* font */
@font-face {
    font-family: "Pretendard Variable";
    font-weight: 45 920;
    font-style: normal;
    font-display: swap;
    src: local(※), url("/public/resource/fonts/PretendardVariable.woff2") format("woff2-variations");
}

:root {
    /* scale */
    --scale-xxs: 4px;
    --scale-xs: 8px;
    --scale-s: 16px;
    --scale-m: 20px;
    --scale-l: 24px;
    --scale-xl: 40px;
    --scale-xxl: 48px;

    /* font */
    --font-xxs: 12px;
    --font-xs: 14px;
    --font-s: 16px;
    --font-m: 18px;

    /* color */
    --color-white: #ffffff;
    --color-lightGray: #d2d2d2;
    --color-lightGray-bd: #e5e5e5;
    --color-lightGray-bg: #f5f5f5;
    --color-gray: #adadad;
    --color-black: #333;
    --color-black-50: rgba(0, 0, 0, 0.50);
    --color-warn: #E02D3C;
    --color-warn-bd: #F6BDC2;
    --color-warn-bg: #FEF1F2;
    --color-delete: #FF6571;
    --color-blue: #8CC8FF;
    --color-green2: #74CA5F;
    --color-green3: #41A72A;
    --color-green4: #175C08;
    --color-lightGreen: #E8FAE3;
    --color-yellow: #FFDD4C;
    --color-yellow-txt: #D8B418;
    --color-yellow-bg: #FFF8D9;

    /* filter */
    --blur: 10px;

    /* animation */
    --duration: 0.3s;
}

/* 2.reset */
* {
    padding: 0;
    margin: 0;
    font-family: "Pretendard Variable", -apple-system, "BlinkMacSystemFont", system-ui, "Roboto", "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    line-height: 1;
    box-sizing: border-box;
}

body {
    color: var(--color-black);
}

ul,
ol {
    list-style: none;
}

img {
    border: none;
}

a,
ins {
    text-decoration: none;
}

/* 3.element */
/* input */
input {
    appearance: none;
    border: none;
    padding: var(--scale-xxs) var(--scale-xs);
    border-radius: var(--scale-xs);
    border: 1px solid var(--color-lightGray-bd);
    font-size: var(--font-xs);
    line-height: 1.5;
}

input[type="date"] {
    color: var(--color-lightGray);
}

input::placeholder {
    color: var(--color-lightGray);
}

input:focus {
    outline: none;
    border: 1px solid var(--color-blue);
}

input.error {
    border-color: var(--color-warn-bd);
}

/* button */
button {
    appearance: none;
    border: none;
    background-color: initial;
    box-shadow: none;
    cursor: pointer;
    text-decoration: none;
}

select {
    appearance: none;
    outline: none;
    padding: var(--scale-xxs) var(--scale-xs);
    padding-right: 32px;
    border-radius: var(--scale-xs);
    border: 1px solid var(--color-lightGray-bd);
    background: url("../images/down.svg") no-repeat right var(--scale-xs) center;
    background-size: var(--scale-s);
    font-size: var(--font-xs);
    color: var(--color-black);
    line-height: 1.5;
    cursor: pointer;
}

/* 4.common component */
/* button style */
.btn {
    flex: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--scale-xl);
    border-radius: var(--scale-xs);
    background-color: var(--color-green2);
    font-size: var(--font-xs);
    color: var(--color-white);
    white-space: nowrap;
}

.btn.btn_line {
    background-color: initial;
    border: 1px solid var(--color-lightGray);
    color: var(--color-gray);
}

.btn:disabled {
    background-color: var(--color-lightGray-bg);
    color: var(--color-gray);
    cursor: default;
}

.btn.delete {
    background-color: var(--color-delete);
}

.btn_wrap {
    display: flex;
    column-gap: var(--scale-xs);
    width: 100%;
}

/* input form */
.input_wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: var(--scale-s);
}

.input_box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: var(--scale-xxs);
}

.input_box .input_field {
    display: flex;
    align-items: center;
    column-gap: var(--scale-xs);
    width: 100%;
}

.input_box .input_field i {
    font-size: var(--scale-l);
    color: var(--color-black);
}

.input_box .input_field input {
    flex: auto;
}

.input_field:has(input:focus) i {
    color: var(--color-blue);
}

.input_field:has(input.error) i {
    color: var(--color-warn-bd);
}

.input_box p {
    display: none;
    font-size: var(--font-xxs);
    color: var(--color-warn);
}

.input_box p.show {
    display: block;
}

/* pill shape */
.pill {
    display: inline-block;
    padding: 2px 6px;
    border-radius: var(--scale-xs);
    font-size: var(--font-xxs);
    color: var(--color-white);
}

.week2 .pill {
    background-color: var(--color-green2);
}

.week3 .pill {
    background-color: var(--color-green3);
}

.week4 .pill {
    background-color: var(--color-green4);
}

.end_chal .pill {
    background-color: var(--color-gray);
}

.success_chal .pill {
    background-color: var(--color-yellow-txt);
}

/* message box */
.warn_message {
    display: none;
    align-items: center;
    column-gap: var(--scale-xxs);
    padding: var(--scale-xxs);
    border-radius: var(--scale-xxs);
    background-color: var(--color-warn-bg);
}

.warn_message.show {
    display: flex;
}

.warn_message i {
    font-size: var(--scale-s);
    color: var(--color-warn);
}

.warn_message span {
    font-size: var(--font-xxs);
}

.name_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font-s);
}



.wrap {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.side_menu {
    flex-shrink: 0;
    position: relative;
    width: 0;
    transition: width 0.3s;
}

.side_menu.act {
    width: 338px;
}

.side_menu_wrap {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 338px;
    height: 100%;
    padding: var(--scale-l);
    background-color: var(--color-lightGray-bg);
    box-shadow: 10px 0 10px 0 rgba(171, 192, 166, 0.25);
}

.side_menu_wrap .logo {
    height: 46px;
}

.side_menu_wrap .con_box {
    flex: auto;
    display: flex;
    flex-direction: column;
    row-gap: var(--scale-l);
    width: 100%;
    padding: var(--scale-xxl) 0 var(--scale-l);
}

.side_menu_wrap .con_box .name_wrap button {
    font-size: var(--font-xs);
    color: var(--color-gray);
}

.side_menu_wrap .con_box .count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font-xxs);
    color: var(--color-gray);
}

.side_menu_wrap .con_box .count>div>div {
    display: flex;
    align-items: center;
    column-gap: 2px;
}

.side_menu_wrap .con_box .count .ing {
    display: flex;
    align-items: center;
    column-gap: var(--scale-s);
}

.side_menu_wrap .con_box .count .week2 b {
    color: var(--color-green2);
}

.side_menu_wrap .con_box .count .week3 b {
    color: var(--color-green3);
}

.side_menu_wrap .con_box .count .week4 b {
    color: var(--color-green4);
}

.side_menu_wrap .con_box .count .end b {
    color: var(--color-black);
}

.side_menu_wrap .con_box .chal_wrap {
    flex: auto;
    display: flex;
    flex-direction: column;
    row-gap: var(--scale-l);
    height: calc(100vh - 282px);
    padding-right: 6px;
    border-radius: var(--scale-m);
    overflow-y: auto;
}

.side_menu_wrap .con_box .chal_wrap::-webkit-scrollbar {
    width: 4px;
}

.side_menu_wrap .con_box .chal_wrap::-webkit-scrollbar-track {
    background: transparent;
}

.side_menu_wrap .con_box .chal_wrap::-webkit-scrollbar-thumb {
    background-color: var(--color-lightGray-bd);
    border-radius: 2px;
}

.side_menu_wrap .con_box .chal_wrap p {
    font-size: var(--font-xxs);
    color: var(--color-gray);
    text-align: center;
}

.side_menu_wrap .con_box .chal_wrap .chal {
    display: flex;
    flex-direction: column;
    row-gap: var(--scale-s);
    padding: var(--scale-s);
    border-radius: var(--scale-m);
    background-color: var(--color-white);
}

.side_menu_wrap .con_box .chal_wrap .chal .period {
    display: flex;
    align-items: center;
    column-gap: var(--scale-xs);
    border-radius: var(--scale-xs);
    background-color: rgba(116, 202, 95, 0.05);
    font-size: var(--font-xxs);
    white-space: nowrap;
}

.side_menu_wrap .con_box .chal_wrap .chal.end_chal .period {
    background-color: var(--color-lightGray-bg);
}

.side_menu_wrap .con_box .chal_wrap .chal.success_chal .period {
    background-color: var(--color-yellow-bg);
}

.side_menu_wrap .con_box .chal_wrap .chal .title_wrap {
    display: flex;
    flex-direction: column;
    row-gap: var(--scale-xs);
}

.side_menu_wrap .con_box .chal_wrap .chal .title_wrap .title {
    display: flex;
    align-items: start;
    column-gap: var(--scale-xs);
    font-size: var(--font-xs);
    color: var(--color-gray);
}

.side_menu_wrap .con_box .chal_wrap .chal .title_wrap .title b {
    white-space: nowrap;
}

.side_menu_wrap .con_box .chal_wrap .chal .title_wrap .title strong {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-black);
    line-height: 1.1;
}

.side_menu_wrap .con_box .chal_wrap .chal .title_wrap .progress {
    display: flex;
    align-items: center;
    column-gap: var(--scale-xs);
    cursor: pointer;
}

.side_menu_wrap .con_box .chal_wrap .chal .title_wrap .progress .bar {
    flex: auto;
    height: var(--scale-xxs);
    border-radius: 2px;
    background-color: var(--color-lightGray-bg);
    overflow: hidden;
}

.side_menu_wrap .con_box .chal_wrap .chal .title_wrap .progress .bar .color {
    height: 100%;
}

.side_menu_wrap .con_box .chal_wrap .chal.week2 .title_wrap .progress .bar .color {
    background-color: var(--color-green2);
}

.side_menu_wrap .con_box .chal_wrap .chal.week3 .title_wrap .progress .bar .color {
    background-color: var(--color-green3);
}

.side_menu_wrap .con_box .chal_wrap .chal.week4 .title_wrap .progress .bar .color {
    background-color: var(--color-green4);
}

.side_menu_wrap .con_box .chal_wrap .chal.end_chal .title_wrap .progress .bar .color {
    background-color: var(--color-gray);
}

.side_menu_wrap .con_box .chal_wrap .chal.success_chal .title_wrap .progress .bar .color {
    background-color: var(--color-yellow);
}

.side_menu_wrap .con_box .chal_wrap .chal.week2 .title_wrap .progress .count b {
    color: var(--color-green2);
}

.side_menu_wrap .con_box .chal_wrap .chal.week3 .title_wrap .progress .count b {
    color: var(--color-green3);
}

.side_menu_wrap .con_box .chal_wrap .chal.week4 .title_wrap .progress .count b {
    color: var(--color-green4);
}

.side_menu_wrap .con_box .chal_wrap .chal.end_chal .title_wrap .progress .count b {
    color: var(--color-gray);
}

.side_menu_wrap .con_box .chal_wrap .chal.success_chal .title_wrap .progress .count b {
    color: var(--color-yellow-txt);
}

.side_menu_wrap .con_box .chal_wrap .chal .btn_wrap .btn {
    height: 32px;
    padding: 0 var(--scale-s);
}

.side_menu_wrap .con_box .chal_wrap .chal .btn_wrap:has(button:nth-child(2)) button:first-child {
    flex: initial;
}

.side_menu_wrap .con_box .chal_wrap .chal .btn_wrap .btn.complete {
    background-color: var(--color-yellow-bg);
    color: var(--color-yellow-txt);
    font-weight: 700;
}

.weekly_summary_layer {
    position: absolute;
    z-index: 10;
    display: none;
}

.weekly_summary_layer.show {
    display: block;
}

.weekly_summary {
    display: flex;
    flex-direction: column;
    row-gap: var(--scale-xs);
    padding: var(--scale-xs);
    border-radius: var(--scale-s);
    border-top: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
    background: linear-gradient(180deg, rgba(168, 230, 153, 0.30) 0%, rgba(255, 255, 255, 0.10) 100%);
    box-shadow: 0 5px 5px 0 rgba(39, 87, 28, 0.30);
    backdrop-filter: blur(var(--blur));
}

.side_menu_wrap .con_box .chal_wrap .chal .weekly_summary {
    display: none;
}

.weekly_summary .title {
    font-size: var(--font-xxs);
    font-weight: 600;
    color: var(--color-green4);
}

.weekly_summary .box {
    display: flex;
    flex-direction: column;
    row-gap: var(--scale-xxs);
    padding: var(--scale-xs);
    border-radius: var(--scale-xs);
    background-color: var(--color-white);
}

.weekly_summary .box .week {
    display: flex;
    align-items: center;
    column-gap: var(--scale-s);
}

.weekly_summary .box .week .days {
    display: flex;
    column-gap: var(--scale-xxs);
}

.weekly_summary .box .week .days div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--scale-m);
    height: var(--scale-m);
    border-radius: var(--scale-xxs);
    background-color: var(--color-lightGray-bg);
    font-size: var(--font-xxs);
}

.weekly_summary .box .week .result {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--scale-m);
    height: var(--scale-m);
}

.side_menu_wrap>button {
    flex: 0 0 auto;
    width: 100%;
    font-size: var(--font-m);
}

.side_menu_wrap>button:disabled {
    background-color: var(--color-gray);
    color: var(--color-white);
}

.main {
    position: relative;
    flex: auto;
    min-width: 691px;
    height: 100%;
    background: linear-gradient(0deg, #FFF 0%, #F4FFF2 100%);
}

.top_bar {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    column-gap: var(--scale-l);
    width: 100%;
    padding: var(--scale-l) calc(var(--scale-l) + 15px) var(--scale-l) var(--scale-l);
    white-space: nowrap;
}

.top_bar>i,
.top_bar .toggle_my {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--scale-xl);
    height: var(--scale-xl);
    border-radius: var(--scale-m);
    font-size: var(--scale-l);
    color: var(--color-green2);
    cursor: pointer;
}

.top_bar .toggle_my {
    border: 1px solid var(--color-green2);
    font-size: var(--font-s);
}

.side_menu.act+.main .top_bar>i:before {
    content: "\e138";
}

.top_bar .toggle_my.act {
    background-color: var(--color-green2);
    color: var(--color-white);
}

.top_bar .bar_box {
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 var(--scale-xs) 0 var(--scale-s);
    border-radius: 42px;
    background-color: var(--color-white);
    box-shadow: 0 10px 10px 0 rgba(171, 192, 166, 0.25);
    overflow: hidden;
}

.top_bar .bar_box .bar_con {
    position: relative;
    flex: auto;
    height: 100%;
    overflow: hidden;
}

.top_bar .bar_box .bar_con li {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    column-gap: var(--scale-s);
    height: 100%;
    background-color: var(--color-white);
    transition: transform 1s ease;
    will-change: transform;
}

/* default */
.top_bar .bar_box .bar_con li.active {
    transform: translateY(0);
}

/* bottom to top */
.top_bar .bar_box .bar_con li.next {
    transform: translateY(100%);
}

/* top to bottom */
.top_bar .bar_box .bar_con li.prev {
    transform: translateY(-100%);
}

.top_bar .bar_box .bar_con li .txt,
.top_bar .bar_box .bar_con li .count {
    display: flex;
    column-gap: var(--scale-xs);
}

.top_bar .bar_box .bar_con li .count>div {
    display: flex;
    align-items: center;
    column-gap: var(--scale-xxs);
}

.top_bar .bar_box .bar_con li .count>div>span {
    font-size: var(--font-xs);
}

.top_bar .bar_box>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: var(--scale-xl);
    height: var(--scale-xl);
}

.top_bar .bar_box>div i {
    font-size: var(--scale-s);
    color: var(--color-gray);
    cursor: pointer;
}

.feed_wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: auto;
    gap: var(--scale-l);
    align-content: start;
    height: 100%;
    padding: 128px 88px 24px 88px;
    overflow-y: scroll;
}

.feed_wrap:not(:has(:nth-child(4))) {
    grid-template-columns: repeat(auto-fit, minmax(300px, 0.2fr));
}

.feed_card {
    display: flex;
    flex-direction: column;
    row-gap: var(--scale-s);
    padding: var(--scale-l);
    border-radius: var(--scale-m);
    border-bottom: 1px solid var(--color-white);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.20) 100%);
    box-shadow: 0 10px 10px 0 rgba(171, 192, 166, 0.50);
}

.react {
    display: flex;
    align-items: center;
    column-gap: var(--scale-xxs);
    font-size: var(--font-xs);
}

.react i {
    font-size: var(--scale-m);
    cursor: pointer;
}

.react i.act {
    font-weight: 900;
    color: var(--color-warn);
}

.img_wrap {
    display: flex;
    column-gap: var(--scale-l);
}

.img_wrap .img_box {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--scale-xxs);
    overflow: hidden;
    cursor: pointer;
}

.img_wrap .img_box .stamp {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: var(--color-black-50);
    backdrop-filter: blur(var(--blur));
}

.img_wrap .img_box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img_wrap .right {
    display: flex;
    flex-direction: column;
    row-gap: var(--scale-l);
}

.img_wrap .right div {
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: var(--scale-xs);
}

.img_wrap .right div .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: var(--font-m);
    line-height: 1.1;
    cursor: pointer;
}

.img_wrap .right div .status {
    font-size: var(--font-xs);
}

.img_wrap .right div .status b {
    color: var(--color-green2);
}

.end_chal .img_wrap .right div .status b {
    color: var(--color-gray);
}

.success_chal .img_wrap .right div .status b {
    color: var(--color-yellow-txt);
}

.img_wrap .right .date {
    font-size: var(--font-xxs);
    color: var(--color-gray);
}

/* popup */
.popup_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-black-50);
    backdrop-filter: blur(var(--blur));
    z-index: 100;
}

@keyframes popup {
    0% {
        opacity: 0;
        top: 55%;
        transform: translate(-50%, -50%) scale(0.95);
    }

    85% {
        transform: translate(-50%, -50%) scale(1.05);
    }

    100% {
        opacity: 1;
        top: 50%;
        transform: translate(-50%, -50%) scale(1);
    }
}

.popup {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: flex;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    row-gap: var(--scale-xl);
    padding: var(--scale-xxl);
    border-radius: var(--scale-l);
    background-color: var(--color-white);
    animation: popup;
    animation-duration: var(--duration);
    animation-fill-mode: backwards;
    animation-timing-function: ease-in-out;
}


.popup .title_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: var(--scale-s);
}

.popup .title_wrap i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 32px;
    background-color: var(--color-lightGreen);
    font-size: 32px;
    font-weight: 900;
    color: var(--color-green2);
}

.popup .title_wrap .title {
    max-width: 235px;
    font-size: var(--font-m);
}

.popup .grid_wrap {
    display: grid;
    grid-template: repeat(3, 1fr) / repeat(2, 80px 120px);
    align-items: center;
    gap: var(--scale-s);
    padding: var(--scale-s);
}

.popup .grid_wrap.confirm {
    border-radius: var(--scale-xxs);
    background-color: var(--color-lightGray-bg);
}

.popup .grid_wrap b {
    font-size: var(--font-xs);
    color: var(--color-gray);
}

.popup .grid_wrap span {
    font-size: var(--font-s);
    line-height: 1.5;
}

.popup .txt_wrap {
    width: 100%;
    text-align: center;
    line-height: 1.5;
}

.popup .btn_close {
    position: absolute;
    top: var(--scale-s);
    right: var(--scale-s);
    font-size: var(--scale-l);
    color: var(--color-gray);
}

.popup.login .logo {
    width: 240px;
}

.popup.login .input_box .input_field input {
    width: 300px;
}

.popup.start .grid_wrap :nth-child(2) {
    grid-column: 2 / span 3;
}

.popup.upload .grid_wrap {
    grid-template: repeat(2, auto) / 60px 230px;
}

.popup.upload .grid_wrap b {
    line-height: 1.2;
}

.popup.upload .pill {
    margin-right: 4px;
}

.upload_box {
    width: 100%;
}

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

.upload_area {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 230px;
    padding: var(--scale-s);
    border: 1px dashed var(--color-lightGray-bd);
    border-radius: var(--scale-s);
    background-color: var(--color-lightGray-bg);
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
}

.upload_area:hover {
    border-color: #d8d8d8;
    background-color: #F0F6EE;
}

.upload_area.dragover {
    border-color: #cae0c3;
    background-color: #E4F6E0;
}

.popup .grid_wrap span.upload_text {
    font-size: var(--font-xxs);
    line-height: 1.5;
    color: var(--color-gray);
}

.popup.feed_detail {
    row-gap: var(--scale-l);
}

.popup.feed_detail .name_wrap {
    width: 100%;
}

.popup.feed_detail .img_wrap .img_box {
    width: 200px;
    height: 200px;
    border-radius: var(--scale-xs);
    cursor: default;
}

.popup.feed_detail .img_wrap .img_box .stamp img {
    width: 90%;
}

.popup.feed_detail .img_wrap .right {
    justify-content: space-between;
}

.popup.feed_detail .img_wrap .right div .title {
    max-width: 235px;
    -webkit-line-clamp: 2;
    cursor: default;
}

/*##################### 1280px or less ########################*/
@media(max-width: 1280px) {

    .top_bar>i,
    .top_bar .toggle_my {
        background-color: var(--color-white);
        box-shadow: 0 10px 10px 0 rgba(171, 192, 166, 0.25);
    }

    .top_bar .toggle_my {
        border: 0px;
    }

    .feed_wrap {
        padding: 128px 24px 24px;
    }
}