



:root {
            --primary: #0099e0;
            --primary-dark: #007fe0;
            --primary-sub: #006db9;
            --accent: #2A3642;
            --bg-gradient: linear-gradient(135deg, #FDFBFB 0%, #F4F6F9 100%);
            --text-main: #2A3642;
            --text-sub: #7A8B9E;
            --border-color: #E2E8F0;
        }

    .pagination-bar { width: 100%; margin: 22px 0; text-align: center; font-size: 14px; }
    .pagination-bar a { display: inline-block; padding: 7px 12px; margin: 0 2px; border-radius: 8px; color: #007fe0; text-decoration: none; font-weight: 600;background: #ddd; }
    .pagination-bar a:hover { background: #007fe0;color:#fff }
    .pagination-bar strong { display: inline-block; padding: 7px 12px; margin: 0 2px; border-radius: 8px; background: #007fe0; color: #fff; }
    .pagination-bar a.pager-nav { display: inline-flex; align-items: center; justify-content: center; padding: 7px 10px; }
    .pagination-bar a.pager-nav .btn-ico { margin-right: 0; }

    /* 버튼/링크 글자 왼쪽에 붙는 공용 아이콘 */
    .btn-ico { width: 15px; height: 15px; flex-shrink: 0; vertical-align: -3px; margin-right: 6px; }
    button .btn-ico, a.btn .btn-ico, a.btn-action .btn-ico, a.btn-back-list .btn-ico,
    a.btn-reset .btn-ico, .btn-search .btn-ico, .info-btn .btn-ico,
    .btn-history-open .btn-ico, .btn-report-toggle .btn-ico, .tab-nav a .btn-ico,
    .pager a .btn-ico, .pv-label .btn-ico { display: inline-block; }


        
        * { margin: 0; padding: 0; box-sizing: border-box; text-decoration:none; }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: var(--bg-gradient);
            min-height: 100vh;
            color: var(--text-main);
            display: flex;
            flex-direction: column;
            padding-bottom: 108px;
            font-size: 17px;
            line-height: 1.6;
        }
        
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }


        
        .nav-container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
.nav-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 72px;
            transition: all 0.3s ease;
        }

        .logo {font-family:'Arial',
            font-size: 24px;
            font-weight: 800;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        /* 스크롤 시 축소 */
        .header-scrolled .nav-top {
            height: 52px;
        }
        .header-scrolled .logo {
            font-size: 20px;
            gap: 8px;
        }
        .header-scrolled .logo-icon {
            width: 28px;
            height: 28px;
            font-size: 16px;
        }
        .user-area {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .user-email {
            font-size: 15.5px;
            color: var(--text-sub);
            font-weight: 500;
        }

        .logout-link {
            color: #ef4444;
            text-decoration: none;
            font-size: 15.5px;
            font-weight: 500;
        }

        .login-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        .lang-select-wrapper {
            position: relative;
        }

        .lang-select {
            appearance: none;
            background: white;
            border: 1px solid var(--border-color);
            padding: 9px 6px 9px 14px;
            border-radius: 12px;
            font-size: 13px;
            cursor: pointer;width:110px
        }

        .lang-select:focus {
            outline: none;
            border-color: var(--primary);
        }

        @media (max-width: 640px) {

            .nav-container { padding: 0 14px; }

            .nav-top {
                height: auto;
                min-height: 60px;
                padding: 10px 0;
                flex-wrap: wrap;
                row-gap: 8px;
            }
            .header-scrolled .nav-top {
                height: auto;
                min-height: 52px;
            }

            .logo { font-size: 17px; gap: 6px; }
            .logo-icon { width: 30px; height: 30px; font-size: 14px; border-radius: 8px; }

            .user-area { flex-wrap: wrap; justify-content: flex-end; gap: 8px 10px; width:100%}
            .user-area .admin-badge { order: 1; font-size: 11px; }
            .user-area .user-email {
                order: 2; font-size: 12.5px; max-width: 92px;
                overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
            }
            .user-area .logout-link,
            .user-area .login-link { order: 3; font-size: 12.5px; }
            .user-area .lang-select-wrapper {
                order: 4;

                display: flex;
                justify-content: flex-end;
            }

            .lang-select {width:150px; padding: 6px 26px 6px 10px; font-size: 12.5px; border-radius: 9px; }

            .email-domain { display: none; }

            .header-mini .nav-top {
                min-height: 40px;
                padding: 6px 0;
                row-gap: 0;
            }
            .header-mini .logo { font-size: 14px; gap: 5px; }
            .header-mini .logo-icon { width: 22px; height: 22px; font-size: 11px; border-radius: 6px; }
            .header-mini .user-area .admin-badge,
            .header-mini .user-area .user-email,
            .header-mini .user-area .logout-link,
            .header-mini .user-area .login-link {
                display: none;
            }
            .header-mini .user-area .lang-select-wrapper {
                flex-basis: auto;
            }
            .header-mini .lang-select { padding: 4px 22px 4px 8px; font-size: 11.5px; border-radius: 7px; }
        }



        .fixed-bottom-nav {
            position: fixed;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            width: 94%;
            max-width: 560px;
            background: rgba(255, 255, 255, 0.62);
            background: rgba(1, 1, 1, 0.1);
            background: rgba(1, 1, 1, 0.64);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 22px;
            padding: 8px 4px 6px;
            box-shadow:
                0 8px 24px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.4);
            z-index: 1000;
        }

        .bottom-menu {
            display: flex;
            justify-content: space-between;
        }

        .menu-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            color: var(--text-sub);
color:#aaa;
            text-decoration: none;
            font-size: 12.5px;
            padding: 6px 2px;
            border-radius: 16px;
            transition: color 0.2s ease;
        }


        .menu-item svg {
            width: 22px;
            height: 22px;
            stroke: currentColor;stroke :#aaa;
            stroke-width: 1.7;
            fill: none;
            transition: all 0.2s ease;
        }





        .menu-item span {
            font-weight: 500;
            letter-spacing: -0.2px;
            white-space: nowrap;
        }





.menu-item.active {
    color: var(--primary);
    color: #12b4ff;color:#0096ff;
    font-weight: 600;
    background: none;

}







.menu-item.active svg {
    stroke: var(--primary);stroke : #0096ff;
}
        .menu-item.active svg {
    stroke: #12b4ff;stroke : #0096ff;
        }

        @media (min-width: 641px) {
            .fixed-bottom-nav { max-width: 680px; }

        }

        @media (max-width: 380px) {
            .fixed-bottom-nav { width: 97%; padding: 6px 2px 5px; }
            .menu-item { font-size: 11px; padding: 5px 1px; }
            .menu-item svg { width: 20px; height: 20px; }
        }

        @media (max-width: 340px) {
            .menu-item span { display: none; }
            .menu-item { gap: 0; padding: 8px 2px; }
        }

        .site-footer {
            background: var(--accent);
            color: #94A3B8;
            padding: 48px 24px 32px;
            margin-top: auto;
        }



        .menu-item {
            color: '#ffffff';
stroke:"#ffffff";
        }
.menu-item:hover {
    color: #fff;
}

.menu-item:hover svg {
    stroke: #fff;
}

        .footer-container {
            max-width: 1180px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
        }
.admin-badge {
            color: #cbaae1;
            font-weight: bold;
        }



    .contents-container {
        width: 100%; margin: 0 auto;
    }
/* 모바일/좁은 화면에서는 좌우 패딩 줄임 */
@media (max-width: 768px) {
    .contents-container {
        max-width: 100%;

    }
}
    .inside-container {display:block;
        width: 100%; margin: 0 0 22px; background: #fff; border-radius: 20px;
        padding: 22px 26px; box-shadow: 0 10px 30px rgba(17,17,38,0.06);
        border: 1px solid #f0f0f5
    }




.page-layout {width:100%;max-width:900px;

            margin: 24px auto;
            padding: 0 24px;
            display: flex;
            align-items: flex-start;
            gap: 24px;
        }
        .ad-slot {
            flex: 0 0 60px;
            position: sticky;
            top: 88px;           /* header 높이 + 여백 */
            align-self: flex-start;
        }
        .ad-box {
            width: 160px;
            min-height: 600px;
            border-radius: 14px;
            background: linear-gradient(180deg, #f6f6fa 0%, #eef0f5 100%);
            border: 1px dashed #d8d9e3;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a9abb8;
            font-size: 12px;
            text-align: center;
        }

        @media (max-width: 900px) {
            .page-layout { flex-direction: column; padding: 0; }
            .ad-slot { position: static; width: 100%; }
            .ad-box { width: 100%; min-height: 120px; border-radius: 0; }
              .content-col { order: 1; width: 100%; padding: 0; }


    .inside-container, body .penpal-item {
border-radius: 0;border-left: none; border-right: none; 
    }

.inside-container {padding:10px 13px}



        .logo span {font-size:13pt;
            display:block;width:21px
	        }
        }
.info-subtitle {padding:0 20px}

    /* ---- 프로필 읽기 화면 (profile.php view mode) ---- */
    .pv-grid {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 28px;
        align-items: start;
        margin-top: 18px;
    }
    .pv-photos {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .pv-photo-btn {
        display: block;
        width: 100%;
        aspect-ratio: 3 / 4;
        border-radius: 16px;
        overflow: hidden;
        border: none;
        padding: 0;
        cursor: pointer;
        background: #f1f2f7;
        box-shadow: 0 6px 16px rgba(17,17,38,0.08);
        transition: transform .15s ease, box-shadow .15s ease;
        position: relative;
    }
    .pv-photo-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(17,17,38,0.14); }
    .pv-photo-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .pv-photo-btn .pv-main-badge {
        position: absolute; left: 8px; top: 8px; background: rgba(17,17,38,0.6); color: #fff;
        font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 999px;
    }
    .pv-no-photo {
        aspect-ratio: 3 / 4; border-radius: 16px; background: #f4f5f9; border: 1px dashed #d7d8e3;
        display: flex; align-items: center; justify-content: center; color: #a9abb8; font-size: 12.5px;
    }

    .pv-info { min-width: 0; }
    .pv-row {
        display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: baseline;
        padding: 11px 0; border-bottom: 1px dashed var(--border-color);
    }
    .pv-row:first-child { padding-top: 0; }
    .pv-row .pv-label {
        flex: 0 0 190px; color: var(--text-sub); font-size: 13.5px; font-weight: 700; letter-spacing: .2px;
    }
    .pv-row .pv-value { flex: 1 1 200px; font-size: 15.5px; color: var(--text-main); }
    .pv-intro {
        margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--border-color);
    }
    .pv-intro .pv-label { display: block; margin-bottom: 8px; color: var(--text-sub); font-size: 13.5px; font-weight: 700; }
    .pv-intro-body { font-size: 15.5px; line-height: 1.85; white-space: pre-line; word-break: break-word; }

    @media (max-width: 640px) {
        .pv-grid { grid-template-columns: 1fr; gap: 18px; }
        .pv-photos { flex-direction: row; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
        .pv-photos .pv-photo-btn, .pv-photos .pv-no-photo { flex: 0 0 116px; width: 116px; }
        .pv-row .pv-label { flex-basis: 100%; }
    }

    /* 이미지 라이트박스: 클릭 시 큰 이미지를 최상단 오버레이로 표시 */
    .pv-lightbox {
        display: none; position: fixed; inset: 0; z-index: 3000;
        background: rgba(15,15,25,0.86);
        align-items: center; justify-content: center;
        padding: 16px; overflow-y: auto;
    }
    .pv-lightbox.open { display: flex; }
    .pv-lightbox img {
        max-width: min(92vw, 720px); max-height: 88vh; border-radius: 14px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    .pv-lightbox-close {
        position: fixed; top: 18px; right: 22px; width: 40px; height: 40px; border-radius: 50%;
        background: rgba(255,255,255,0.15); color: #fff; border: none; font-size: 20px; cursor: pointer;
        display: flex; align-items: center; justify-content: center;
    }
    .pv-lightbox-close:hover { background: rgba(255,255,255,0.28); }


.content-footer {
    margin: 32px 0 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.content-footer-line {
padding:0 10px;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(0,0,0,0.45);
    margin: 0 0 4px;
}
.content-footer-link {
    color: rgba(0,0,0,0.45);
    text-decoration: none;
}
.content-footer-link:hover {
    text-decoration: underline;
}


    /* 신고 상세사유 패널은 profile.php 자체 CSS에서 정적(static)·전체 너비 블록으로 렌더링됨 */

    /* ---- 공통 탭 내비게이션 (밑줄 스타일) ----
       function.php의 renderTabNav()에서 생성되는 마크업에 대응.
       my_penpal.php, message.php 등 탭이 있는 모든 페이지에서 공용으로 사용 */
    .tab-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 28px;
        margin-bottom: 18px;
        border-bottom: 1px solid var(--border-color);
    }
    .tab-nav a {
        padding: 10px 2px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        border-bottom: 2px solid transparent;
        color: var(--text-sub);
        margin-bottom: -1px;
    }
    .tab-nav a.active {
        border-bottom-color: var(--primary);
        color: var(--accent);
    }

    /* 모바일: 탭을 세로로 한 줄에 하나씩, 각 탭 폭 100% + 옅은 회색 구분선 */
    @media (max-width: 640px) {
        .tab-nav {
            flex-direction: column;
            gap: 0;
            border-bottom: none;
        }
        .tab-nav a {
            width: 100%;
            box-sizing: border-box;
            margin-bottom: 0;
            padding: 12px 4px;
            border-bottom: 1px solid #e5e5e5;
        }
        .tab-nav a.active {
            border-bottom: 1px solid #e5e5e5;
        }
    }

    /* ---- 공통 성별 뱃지 (my_penpal.php 등 목록형 페이지에서 공용으로 사용) ---- */
    .gender-badge {
        display: inline-block; font-weight: 600; font-size: 12px;
        padding: 2px 10px; border-radius: 999px; background: #eef0f5; color: #6b7280;
        vertical-align: middle;
    }
    .gender-badge-male { background: #e3f0ff; color: #1c6fd1; }
    .gender-badge-female { background: #ffe6f0; color: #d1327e; }
    .gender-badge-other { background: #dff7e6; color: #0f8a44; }

    /* ==== 공통 버튼 디자인 시스템 ====
       사이트 전역에서 쓰는 버튼의 크기/모양/색상을 이 한 곳에서만 관리합니다.
       (기존에 profile.php / notice.php / penpal_list.php / message.php / function.php에
       각자 다른 값으로 흩어져 있던 버튼 CSS를 여기로 모으고, 색상은 --primary 등
       공통 토큰 기준으로 통일했습니다. 클래스 이름은 각 페이지에서 쓰던 것을 그대로
       유지해 마크업/JS는 전혀 건드리지 않았습니다.)

       크기 스케일: large(기본 CTA) 11px 22px / radius 10px / 16px
                    medium(보조 액션)  9px 18px / radius 8px  / 14.5px
                    small(작은 링크형) 8px 16px / radius 8px  / 13.5px
                    pill(태그형 토글)  7px 13px / radius 999px / 13.5px
       색상 톤: primary(파랑, 기본 CTA) / secondary(회색) / muted(연회색)
               / outline(흰 배경+테두리) / outline-danger(흰 배경+빨강)          */

    /* -- 메인 CTA 버튼: 프로필 등록/수정/목록, 검색 등 (profile.php .btn-action, penpal_list.php .btn-search) -- */

/* =======================================================================
   공통 버튼 스타일
   ======================================================================= */

.btn-action,
.btn-search,
.btn-back-list,
.btn-send-message,
.btn-reset,
.btn-report-toggle,
.report-reason-btn,
.btn-history-open,
.notice-back-btn,
.info-btn,
.actions button,
.actions a.btn {

    /* ===== 공통 크기 ===== */
    --btn-padding: 11px 17px;
    --btn-radius: 15px;
    --btn-font-size: 14px;
    --btn-line-height: 1.3;

    /* ===== 버튼 색상 ===== */
    --btn-bg: #fff;
    --btn-bg-hover: #f4f5f9;
    --btn-color: #333;
    --btn-border: transparent;

    padding: var(--btn-padding);
    border-radius: var(--btn-radius);
    font-size: var(--btn-font-size);
    line-height: var(--btn-line-height);

    background: var(--btn-bg);
    color: var(--btn-color);
    border: 1px solid var(--btn-border);

    text-decoration: none;
    font-weight: 700;
    cursor: pointer;

    box-shadow:
        0 3px 8px rgba(0,0,0,.08),
        0 1px 2px rgba(0,0,0,.05);

    transition:
        background .18s ease,
        color .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}
.info-btn {padding:10px}
.btn-action:hover,
.btn-search:hover,
.btn-back-list:hover,
.btn-send-message:hover,
.btn-reset:hover,
.btn-report-toggle:hover,
.report-reason-btn:hover,
.btn-history-open:hover,
.notice-back-btn:hover,
.info-btn:hover,
.actions button:hover,
.actions a.btn:hover {

    background: var(--btn-bg-hover);
    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(0,0,0,.15),
        0 2px 6px rgba(0,0,0,.08);
}

.btn-action:active,
.btn-search:active,
.btn-back-list:active,
.btn-send-message:active,
.btn-reset:active,
.btn-report-toggle:active,
.report-reason-btn:active,
.btn-history-open:active,
.notice-back-btn:active,
.info-btn:active,
.actions button:active,
.actions a.btn:active{
    transform:translateY(0);
}

.btn-action:disabled,
.btn-search:disabled,
.info-btn:disabled,
.btn-send-message:disabled,
.actions button:disabled{
    opacity:.6;
    cursor:not-allowed;
    transform:none;
}

/* =======================================================================
   메인 버튼
   ======================================================================= */

.btn-action,
.btn-search{

    --btn-bg:var(--primary);
    --btn-bg-hover:var(--primary-dark);
    --btn-color:#fff;
    --btn-border:var(--primary);
}


/* =======================================================================
   목록 / 메세지
   ======================================================================= */

.btn-back-list{



    --btn-bg:#eeeeee;
    --btn-bg-hover:#ddd;
    --btn-color:#111;
    --btn-border:#efefef;
}

.btn-send-message{


    --btn-bg:var(--primary);
    --btn-bg-hover:var(--primary-dark);
    --btn-color:#fff;
    --btn-border:var(--primary);
}


/* =======================================================================
   초기화 / 목록
   ======================================================================= */

.btn-reset{


    --btn-bg:#eef0f5;
    --btn-bg-hover:#e2e6ee;
    --btn-color:var(--accent);
    --btn-border:#d9dde7;
}

.notice-back-btn{

    white-space:nowrap;

    --btn-padding:8px 16px;
    --btn-radius:8px;
    --btn-font-size:13.5px;

    --btn-bg:#eef0f5;
    --btn-bg-hover:#e2e6ee;
    --btn-color:var(--accent);
    --btn-border:#d9dde7;
}


/* =======================================================================
   신고
   ======================================================================= */

.btn-report-toggle{

    --btn-bg:#fff;
    --btn-bg-hover:#fef2f2;
    --btn-color:#dc2626;
    --btn-border:#f3c6c6;
}

.report-reason-btn{

    --btn-padding:7px 13px;
    --btn-radius:999px;
    --btn-font-size:13.5px;
    --btn-line-height:1.2;

    --btn-bg:#fff;
    --btn-bg-hover:#fef2f2;
    --btn-color:#dc2626;
    --btn-border:#f3c6c6;
}


/* =======================================================================
   중립 아웃라인
   ======================================================================= */

.btn-history-open{



    --btn-bg:#fff;
    --btn-bg-hover:#f4f5f9;
    --btn-color:var(--text-main);
    --btn-border:var(--border-color);
}


/* =======================================================================
   안내화면 버튼
   ======================================================================= */

.info-btn{

    width:60%;
    margin:0 auto;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    --btn-padding:16px 50px;
    --btn-radius:12px;
    --btn-font-size:17px;

    --btn-bg:var(--primary);
    --btn-bg-hover:var(--primary-dark);
    --btn-color:#fff;
    --btn-border:var(--primary);
}

.info-btn-icon{
    font-size:24px;
}


/* =======================================================================
   쪽지 액션 버튼
   (크기/곡률/폰트는 다른 버튼들과 동일하게 공용 기본값을 그대로 쓰고,
    배경색/글자색/border색/mouseover색만 이 버튼들만의 톤으로 다르게 지정)
   ======================================================================= */

.actions button,
.actions a.btn{

    margin-left:6px;

    --btn-bg:#fff;
    --btn-bg-hover:#f4f5f9;
    --btn-color:var(--text-main);
    --btn-border:var(--border-color);
}

.actions button.danger{

    --btn-bg:#fff;
    --btn-bg-hover:#fef2f2;
    --btn-color:#dc2626;
    --btn-border:#f3c6c6;
}

.actions a.btn.primary{

    --btn-bg:var(--primary);
    --btn-bg-hover:var(--primary-dark);
    --btn-color:#fff;
    --btn-border:var(--primary);
}
.presence-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #1b9e5a;
    margin-left: 6px;
    vertical-align: middle;
    white-space: nowrap;
}

.name-line .presence-badge {
    font-size: 15.5px;
}

.name-line .presence-dot {
    width: 9px;
    height: 9px;
}

.presence-badge-lg {
    font-size: 16.5px;
    gap: 6px;
}

.presence-badge-lg .presence-dot {
    width: 10.5px;
    height: 10.5px;
}

.presence-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: presenceBlink 1.8s ease-in-out infinite;
}


@keyframes presenceBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}


/* 모바일 전체 폰트 크기 */
@media (max-width: 768px) {

.info-notice {padding:0 25px}
.info-btn {width:80%}
}
