@charset "utf-8";

@font-face {
    src:url('../fonts/krub/Krub-Light.eot?#iefix-rdmvgc') format('embedded-opentype');
    font-family: "Krub";
    src: url("../fonts/krub/Krub-Light.ttf") format("truetype");
    font-weight: 400;
}
@font-face {
    src:url('../fonts/krub/Krub-Medium.eot?#iefix-rdmvgc') format('embedded-opentype');
    font-family: "Krub";
    src: url("../fonts/krub/Krub-Medium.ttf") format("truetype");
    font-weight: 500;
}
@font-face {
    src:url('../fonts/krub/Krub-SemiBold.eot?#iefix-rdmvgc') format('embedded-opentype');
    font-family: "Krub";
    src: url("../fonts/krub/Krub-SemiBold.ttf") format("truetype");
    font-weight: 600;
}
@font-face {
    src:url('../fonts/krub/Krub-Bold.eot?#iefix-rdmvgc') format('embedded-opentype');
    font-family: "Krub";
    src: url("../fonts/krub/Krub-Bold.ttf") format("truetype");
    font-weight: 700;
}
@font-face {
    src:url('../fonts/roboto/Roboto-Light.eot?#iefix-rdmvgc') format('embedded-opentype');
    font-family: "Roboto";
    src: url("../fonts/roboto/Roboto-Light.ttf") format("truetype");
    font-weight: 300;
}
@font-face {
    src:url('../fonts/roboto/Roboto-Regular.eot?#iefix-rdmvgc') format('embedded-opentype');
    font-family: "Roboto";
    src: url("../fonts/roboto/Roboto-Regular.ttf") format("truetype");
    font-weight: 400;
}
@font-face {
    src:url('../fonts/roboto/Roboto-Medium.eot?#iefix-rdmvgc') format('embedded-opentype');
    font-family: "Roboto";
    src: url("../fonts/roboto/Roboto-Medium.ttf") format("truetype");
    font-weight: 500;
}
@font-face {
    src:url('../fonts/roboto/Roboto-Bold.eot?#iefix-rdmvgc') format('embedded-opentype');
    font-family: "Roboto";
    src: url("../fonts/roboto/Roboto-Bold.ttf") format("truetype");
    font-weight: 600;
}
@font-face {
    src:url('../fonts/Josefin_Sans/JosefinSans-Light.eot?#iefix-rdmvgc') format('embedded-opentype');
    font-family: "Josefin_Sans";
    src: url("../fonts/Josefin_Sans/JosefinSans-Light.ttf") format("truetype");
    font-weight: 300;
}
@font-face {
    src:url('../fonts/Josefin_Sans/JosefinSans-Regular.eot?#iefix-rdmvgc') format('embedded-opentype');
    font-family: "Josefin_Sans";
    src: url("../fonts/Josefin_Sans/JosefinSans-Regular.ttf") format("truetype");
    font-weight: 400;
}
@font-face {
    src:url('../fonts/Josefin_Sans/JosefinSans-Medium.eot?#iefix-rdmvgc') format('embedded-opentype');
    font-family: "Josefin_Sans";
    src: url("../fonts/Josefin_Sans/JosefinSans-Medium.ttf") format("truetype");
    font-weight: 500;
}
@font-face {
    src:url('../fonts/Josefin_Sans/JosefinSans-SemiBold.eot?#iefix-rdmvgc') format('embedded-opentype');
    font-family: "Josefin_Sans";
    src: url("../fonts/Josefin_Sans/JosefinSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
}
@font-face {
    src:url('../fonts/Josefin_Sans/JosefinSans-Bold.eot?#iefix-rdmvgc') format('embedded-opentype');
    font-family: "Josefin_Sans";
    src: url("../fonts/Josefin_Sans/JosefinSans-Bold.ttf") format("truetype");
    font-weight: 700;
}

/* 공통 */
body{
    /* font-family: 'Krub', sans-serif; */
    font-family: 'Roboto', sans-serif;
    letter-spacing: .1px;
    font-weight: 400;
    min-height: 100vh;
    /* mobile viewport bug fix */
    min-height: -webkit-fill-available;
    /* padding-bottom:calc(65px + env(safe-area-inset-bottom)); */
    background: #fff;
}
button{
    font-family: 'Krub', sans-serif;
}
input{
    font-family: 'Roboto', sans-serif;
}

/* 일반셀러 / 방송셀러 */
.oir_cel_pf .box_tile .section1{
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    border-radius:5px;
    margin:15px 20px 0;
    padding:15px;
    background:#F5F5F5
}
.oir_cel_pf .box_tile .pf_lay_box{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
}
.oir_cel_pf .box_tile .pf_lay_box .thumbnail{
    flex: 1;
    margin-right: 10px;
    max-width: 60px;
    max-height: 60px;
    min-width:60px;
    min-height:60px;
    border-radius:50%;
    overflow:hidden
}
.oir_cel_pf .box_tile .pf_lay_box .thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ebebeb;
}
.oir_cel_pf .box_tile .pf_lay_box .pf_txt{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:column;
    flex-direction:column;
    justify-content: center;
}
.oir_cel_pf .box_tile .pf_lay_box .pf_txt .cel_info{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    align-items: center;
    font-family: 'Krub', sans-serif;
}
.oir_cel_pf .box_tile .pf_lay_box .pf_txt .cel_info .cel_name{
    margin-right:5px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    max-width: 160px;
    font-size:1.8rem;
    font-weight:600
}
.oir_cel_pf .box_tile .pf_lay_box .pf_txt .cel_info .qual_name{
    padding:0 8px;
    height:20px;
    line-height:23px;
    border-radius:44px;
    background:#E7E8FB;
    font-size:.8rem;
    font-weight:500;
    color: #fff;
    background: #A39CFE;
    font-family: 'Josefin_Sans', sans-serif;
}
.oir_cel_pf .box_tile .pf_lay_box .pf_txt .cel_info .mark{
    margin-right:2px;
    vertical-align: baseline;
}
.oir_cel_pf .box_tile .pf_lay_box .pf_txt .status_box{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    margin-top:7px;
    align-items: center;
    font-size:1.3rem;
    font-weight:400;
    color:#36546A
}
.oir_cel_pf .box_tile .pf_lay_box .pf_txt .status_box .length{
    font-size:1.4rem;
    font-weight:500;
    color:#2BA5A5
}
.oir_cel_pf .box_tile .pf_lay_box .pf_txt .status_box .tile{
    margin-right:10px
}
.oir_cel_pf .box_tile .pf_lay_box .pf_txt .status_box .tile:last-child{
    margin-right:0
}
.oir_cel_pf .box_tile .section1 button{
    display:none;
}
.oir_cel_pf .box_tile .section2{
    margin:10px 20px 0;
    font-weight:500
}

/* I AM CELEB일 때 */
.oir_cel_pf .box_tile .section2.onair .btn_tab .tile{
    background: #F5F5F5;
    color:#2BA5A5;
    font-family: 'Krub', sans-serif;
}
.oir_cel_pf .box_tile .section2.onair .btn_tab .tile.active{
    background:#2BA5A5;
    color:#fff
}
.oir_cel_pf .box_tile .section2.onair .contents_box{
    background: linear-gradient(94.93deg, #2BA5A5 22.79%, #3A7EA4 101.96%), #F5F5F5;
    color: #fff;
}
.oir_cel_pf .box_tile .section2.onair .contents_box .status_box .ma_tile .sub_txt{
    color:#fff
}
.oir_cel_pf .box_tile .section2.onair .contents_box.cont_2 .list_title .tile{
    color:#fff
}
.oir_cel_pf .box_tile .section2.onair .contents_box.cont_2{
    background: linear-gradient(94.93deg, #2BA5A5 22.79%, #3A7EA4 101.96%), #F5F5F5;
    color:#fff
}
.oir_cel_pf .box_tile .section2.onair .contents_box.cont_2 .team_list_wrap{
    margin-top: 25px;
    display:none
}
.oir_cel_pf .box_tile .section2.onair .contents_box.cont_2 .btn_view{
    padding-top:10px;
    text-align:center
}
.oir_cel_pf .box_tile .section2.onair .contents_box.cont_2 .btn_view img{
    transition: .3s;
}
.oir_cel_pf .box_tile .section2.onair .contents_box.cont_2 .btn_view img.flip{
    transform: rotate(-180deg);
}
.oir_cel_pf .box_tile .section2.onair .contents_box.cont_2 .list_cont .tile{
    border:0
}
.oir_cel_pf .box_tile .section2.onair .contents_box .status_box .ma_tile:first-child{
    border-right:0;
}
/* 여기까지 */

.oir_cel_pf .box_tile .section2 .btn_tab{
    -webkit-display:flex;
    display:flex;
    -webkit-direction:row;
    direction:row;
}
.oir_cel_pf .box_tile .section2 .btn_tab .tile{
    width:76px;
    height: 30px;
    line-height: 32px;
    margin-right:5px;
    text-align:center;
    border-radius:5px 5px 0 0;
    font-size:1.3rem;
    font-weight: 500;
    color:#fff;
    transition: .3s;
    background: #2BA5A5;
}
/* .oir_cel_pf .box_tile .section2 .btn_tab .tile:nth-of-type(1){
    background: linear-gradient(180deg, #FFAF51 -16.07%, #D65B35 208.93%);
}
.oir_cel_pf .box_tile .section2 .btn_tab .tile:nth-of-type(2){
    background:linear-gradient(180deg, #2BA5A5 0%, #645EAE 246.43%);
}
.oir_cel_pf .box_tile .section2 .btn_tab .tile:nth-of-type(3){
    background: linear-gradient(180deg, #867CF9 -12.5%, #3A3296 182.14%);
} */
.oir_cel_pf .box_tile .section2 .btn_tab .tile.active{
    color:#2BA5A5;
    background:#F4F4F4;
    box-shadow:none;
}
.oir_cel_pf .box_tile .section2 .contents_box{
    padding: 20px;
    /* box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);*/
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    border-radius: 0px 5px 5px 5px;
    background: #F5F5F5;
}
.oir_cel_pf .box_tile .cont_tit{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    align-items: center;
    margin:15px 20px 0;
    font-size:1.4rem;
    font-weight:600;
    color:#36546A
}
.oir_cel_pf .box_tile .cont_tit .icon{
    margin-right:5px;
}
.oir_cel_pf .box_tile .date{
    margin-left:3px;
    font-size:1.2rem;
    font-weight:400;
    color:#9FA5B6
}
.oir_cel_pf .box_tile .section2 .contents_box .status_box{
    height:52px;
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    text-align: center;
    align-items: center;
}
.oir_cel_pf .box_tile .section2 .contents_box .status_box .ma_tile:first-child{
    flex: 1.5;
    border-right: 1px solid #999;
}
.oir_cel_pf .box_tile .section2.onair .contents_box .status_box .ma_tile:first-child{
    flex: 1;
}
.oir_cel_pf .box_tile .section2.onair .contents_box .status_box .ma_tile:last-child{
    flex:1
}
.oir_cel_pf .box_tile .section2 .contents_box .status_box .ma_tile:first-child .ma_txt{
    font-size:2rem
}
.oir_cel_pf .box_tile .section2 .contents_box .status_box .ma_tile .ma_txt{
    font-family: 'Krub', sans-serif;
}
.oir_cel_pf .box_tile .section2 .contents_box .status_box .ma_tile:first-child .ma_txt .length{
    font-weight:500
}
.oir_cel_pf .box_tile .section2 .contents_box .status_box .ma_tile .sub_txt{
    margin-top: 5px;
    font-weight: 300;
    font-size: 1.2rem;
    color: #9FA5B6;
}
.oir_cel_pf .box_tile .section2 .contents_box .status_box .ma_tile:last-child{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    flex: 2;
    justify-content: center;
    margin-top: 2px;
}
.oir_cel_pf .box_tile .section2 .contents_box .status_box .sub_tile{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:column;
    flex-direction:column;
    justify-content:center;
}
.oir_cel_pf .box_tile .section2 .contents_box .status_box .sub_tile:first-child{
    flex:1
}
.oir_cel_pf .box_tile .section2 .contents_box .status_box .sub_tile:last-child{
    flex:.5
}
.oir_cel_pf .box_tile .section2.onair .contents_box .status_box .sub_tile:last-child{
    flex:1
}
.oir_cel_pf .box_tile .section2 .contents_box .status_box .sub_tile .length{
    font-size:1.6rem;
    font-weight:500
}
.oir_cel_pf .box_tile .section2.onair .contents_box .status_box .sub_tile .length{
    font-size:2rem
}
.oir_cel_pf .box_tile .section2 .contents_box.cont_2{
    padding: 20px 20px 10px;
    background: #f5f5f5;
    color:#222
}
.oir_cel_pf .box_tile .section2 .contents_box.cont_2 .list_title{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    margin-bottom:10px;
}
.oir_cel_pf .box_tile .section2 .contents_box.cont_2 .list_title .tile{
    flex:1;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    color:#9FA5B6;
    font-size:1.3rem;
    font-weight: 400;
}
.oir_cel_pf .box_tile .section2 .contents_box.cont_2 .list_cont .tile {
    padding: 7px 0;
    border-bottom:1px solid #EBEBEB;
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    align-items: center;
    font-size:1.4rem;
    font-weight: 400;
}
.oir_cel_pf .box_tile .section2 .contents_box.cont_2 .list_cont .tile:first-child{
    padding-top:0
}
.oir_cel_pf .box_tile .section2 .contents_box.cont_2 .list_cont .tile:last-child{
    border:0;
    padding-bottom:0
}
.oir_cel_pf .box_tile .section2 .contents_box.cont_2 .list_cont .item{
    flex:1;
    text-align:center
}
.oir_cel_pf .box_tile .section2 .contents_box.cont_2 .list_cont .item:first-child{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    align-items: center;
}
.oir_cel_pf .box_tile .section2 .contents_box.cont_2 .list_cont .thumbnail{
    width:20px;
    height:20px;
    border-radius:50%;
    overflow:hidden;
    margin-right:8px
}
.oir_cel_pf .box_tile .section2 .contents_box.cont_2 .list_cont .thumbnail img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.oir_cel_pf .box_tile .section2 .contents_box.cont_2 .list_cont .cel_nick{
    display: block;
    white-space: nowrap;
    overflow: hidden;
    max-width: 44px;
    text-overflow: ellipsis;
}
.oir_btn_block .box_tile .section1{
    margin: 15px 20px;
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    max-height:215px
}
.oir_btn_block .section1 .btn_1{
    background: linear-gradient(180deg, #F16C74 75%, #FFEAD2 25%);
    box-shadow: 0px 1px 8px rgba(64, 75, 84, 0.25);
    border-radius: 5px;
    padding:25px 15px;
    position:relative;
    flex:1;
    margin-right:4%;
    overflow: hidden;
    max-width:48%
}
.oir_btn_block .section1 .col_wrap{
    flex:1;
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:column;
    flex-direction:column;
}
.oir_btn_block .section1 .col_wrap .btn_2,
.oir_btn_block .section1 .col_wrap .btn_3{
    flex:1;
    max-height:100px;
    padding:15px;
    box-shadow: 0px 1px 8px rgba(64, 75, 84, 0.25);
    border-radius: 5px;
    position:relative;
    overflow:hidden
}
.oir_btn_block .section1 .col_wrap .btn_2{
    background: #7179F9;
    margin-bottom:15px
}
.oir_btn_block .section1 .col_wrap .btn_3{
    background:#FFC75B;
}
.oir_btn_block .section1 .btn_1 .txt_box .ma_tit{
    margin-bottom:7px;
    font-size:2rem;
    font-weight:500;
    font-family: 'Krub', sans-serif;
    color:#fff
}
.oir_btn_block .section1 .btn_2 .txt_box .ma_tit,
.oir_btn_block .section1 .btn_3 .txt_box .ma_tit{
    margin-bottom:5px;
    line-height:1.3;
    font-size:1.4rem;
    font-weight:500;
    font-family: 'Krub', sans-serif;
    color:#fff
}
.oir_btn_block .section1 .btn_1 .txt_box .sub_txt{
    line-height:1.4
}
.oir_btn_block .section1 .txt_box .sub_txt{
    font-size:1.3rem;
    font-weight:300;
    color:#fff
}
.oir_btn_block .section1 .ani_img img{
    position:absolute;
}
.oir_btn_block .section1 .btn_1 .ani_img .main_btn1_1{
    bottom:20px;
    right:0; 
    opacity:0
}
.oir_btn_block .section1 .btn_1 .ani_img .main_btn1_2{
    bottom: 50px;
    right: 8px;
    opacity:0
}
.oir_btn_block .section1 .btn_2 .ani_img .main_btn2_1{
    bottom:5px;
    right:35px;
    z-index:10;
    opacity:0
}
.oir_btn_block .section1 .btn_2 .ani_img .main_btn2_2{
    bottom:0;
    right:10px;
    opacity:0
}
.oir_btn_block .section1 .btn_3 .ani_img .main_btn3_1{
    bottom:0%;
    right:5px;
    opacity:0
}
.oir_btn_block .section1 .btn_3 .ani_img .main_btn3_2{
    right:40px;
    bottom:40px;
    opacity:0
}
.oir_btn_block .section1 .btn_3 .ani_img .main_btn3_3{
    right:-8px;
    bottom:21px;
    opacity:0
}
.oir_btn_block .section1 .btn_3 .ani_img .main_btn3_4{
    right:49px;
    bottom:12px;
    opacity:0
}
.oir_btn_block .section1 .btn_3 .ani_img .main_btn3_5{
    right:11px;
    bottom:6px;
    opacity:0
}
.oir_btn_block .section1 .btn_3 .ani_img .btn3_2wrap,
.oir_btn_block .section1 .btn_3 .ani_img .btn3_3wrap,
.oir_btn_block .section1 .btn_3 .ani_img .btn3_4wrap,
.oir_btn_block .section1 .btn_3 .ani_img .btn3_5wrap{
    opacity:0
}
.oir_btn_block .box_tile .section2 {
    /* box-shadow: 2px 2px 3px rgba(64, 75, 84, 0.25); */
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin: 15px 20px;
    padding: 15px;
    background:#f5f5f5
}
.oir_btn_block .box_tile .section2 .sec_tit{
    margin-bottom:14px;
    font-size:1.4rem;
    font-weight:700;
    font-family: 'Krub', sans-serif;
}
.oir_btn_block .box_tile .section2 .sec_tit img{
    position: relative;
    top: -1px;
    left:3px;
}
.oir_btn_block .box_tile .section2 .list_tile{
    height:20px;
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    align-items: center;
    justify-content: space-between;
    margin-bottom:5px;
    font-size:1.3rem;
    font-weight:400;
}
.oir_btn_block .box_tile .section2 .list_tile .flex_wrap{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
}
.oir_btn_block .box_tile .section2 .list_tile .date{
    color:#9FA5B6
}
.oir_btn_block .box_tile .section2 .list_tile:last-child{
    margin-bottom:0;
}
.oir_btn_block .box_tile .section2 .list_tile .con_tit{
    margin-right:5px
}
.oir_btn_block .box_tile .section2 .list_tile .con_txt{
    margin-right:5px;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    font-size: 1.4rem;
}
.oir_btn_block .box_tile .section2 .list_tile .cir_dot{
    width:17px;
    height:17px;
    line-height:18px;
    position: relative;
    top: -2px;
    border-radius:50%;
    background:#EF5668;
    color:#fff;
    text-align:center;
    font-weight:400;
    font-size:1rem
}
.btn_adminCt_m{
    margin:0 20px
}
.btn_adminCt_m button{
    width:100%;
    height:52px;
    border-radius:5px;
    border:none;
    color:#2BA5A5;
    font-size:1.6rem;
    font-weight:600;
    background: #2BA5A5;
    box-shadow: 0px 1px 8px rgba(64, 75, 84, 0.2);
    color:#fff
}

/* 일반회원 */
.ur_pf_wrap .pf_sec{
    position:relative;
    /* margin:0 20px; */
}
.ur_pf_wrap .pf_sec .fixed_bg{
    max-width: 480px;
    margin: 0 auto;
    height:151px;
    position:absolute;
    top:-5px;
    left:0;
    right:0;
    background:url('../img/urMain/pf_bg.png') no-repeat;
    background-size: cover;
    /* z-index: -1; */
}
.ur_pf_wrap .pf_sec .pf_txt_box{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    align-items: center;
    position: relative;
    padding:30px 20px 15px
}
.ur_pf_wrap .pf_sec .pf_txt_box .thumbnail{
    flex: 1;
    position: relative;
    margin-right: 10px;
    max-width: 70px;
    max-height: 70px;
    min-width: 70px;
    min-height: 70px;
    border-radius: 50%;
    overflow: hidden;
}
.ur_pf_wrap .pf_sec .pf_txt_box .thumbnail img{
    position:absolute;
    left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
}
.ur_pf_wrap .pf_sec .pf_txt_box .txt_des{
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:column;
    flex-direction:column;
    color:#fff
}
.ur_pf_wrap .pf_sec .pf_txt_box .txt_des .ur_nick{
    margin-bottom: 10px;
    font-family: 'Krub', sans-serif;
    font-size:2rem;
    font-weight:600
}
.ur_pf_wrap .pf_sec .pf_txt_box .txt_des .ur_nick img{
    margin-left:2px;
    margin-top:-2px;
}
.ur_pf_wrap .pf_sec .pf_txt_box .txt_des .txt_becelo{
    font-size:1.4rem;
    font-weight:400;
}
.ur_pf_wrap .btn_main_sec{
    margin:0 20px;
    position:relative;
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    border-radius:5px;
    background:#F5F5F5;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}
.ur_pf_wrap .btn_main_sec .tile{
    flex:1;
    padding:15px;
    border-right:1px solid #E6E6E6;
    text-align:center
}
.ur_pf_wrap .btn_main_sec .tile:last-child{
    border-right:0
}
.ur_pf_wrap .btn_main_sec .tile .txt_num{
    margin-bottom:10px;
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    align-items: center;
    justify-content: center;
    font-size:1.6rem;
    font-weight:600;
    font-family: 'Krub', sans-serif;
    color:#36546A
}
.ur_pf_wrap .btn_main_sec .tile .txt_num .length{
    margin-left:5px;
}
.ur_pf_wrap .btn_main_sec .tile .txt_type{
    font-size:1.2rem;
    font-weight:400;
    color:#36546A
}
.ur_pf_wrap .btn_sub_sec{
    position:relative;
    margin:15px 20px 0;
    -webkit-display:flex;
    display:flex;
    -webkit-flex-direction:row;
    flex-direction:row;
    flex-flow: wrap;
    border-radius:5px;
    background:#F5F5F5;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}
.ur_pf_wrap .btn_sub_sec .tile{
    min-height:95px;
    padding:15px;
    min-width:50%;
    flex:1;
    position:relative;
    overflow:hidden
}
.ur_pf_wrap .btn_sub_sec .tile:nth-child(odd){
    border-right:1px solid #E6E6E6
}
.ur_pf_wrap .btn_sub_sec .tile:nth-of-type(1),
.ur_pf_wrap .btn_sub_sec .tile:nth-of-type(2){
    border-bottom:1px solid #E6E6E6
}
.ur_pf_wrap .btn_sub_sec .tile .txt_type{
    margin-bottom:5px;
    font-size:1.4rem;
    font-weight:600;
    font-family: 'Krub', sans-serif;
}
.ur_pf_wrap .btn_sub_sec .tile .txt_small{
    font-size:1.2rem;
    font-weight:400;
    color:#9FA5B6
}
.ur_pf_wrap .btn_sub_sec .tile .ani_img{
    position:absolute;
    right:15px;
    bottom:10px
}
.ur_pf_wrap .btn_sub_sec .tile:nth-child(odd) .ani_img{
    right:10px
}
.ur_pf_wrap .btn_sub_sec .tile:last-child .ani_img{
    right:25px
}
.ur_pf_wrap .btn_sub_sec .tile .btn_flw2{
    position:absolute;
    right:35px;
    bottom:25px
}
.ur_pf_wrap .btn_sub_sec .tile .btn2_img3{
    position:absolute;
    right:-4px;
    bottom:40px
}
.ur_pf_wrap .btn_sub_sec .tile .btn_flw4{
    position:absolute;
    bottom: 8px;
    left: -1px;
}
.ur_pf_wrap .btn_sub_sec .tile .btn2_img2,
.ur_pf_wrap .btn_sub_sec .tile .btn2_img4,
.ur_pf_wrap .btn_sub_sec .tile .btn_faq2,
.ur_pf_wrap .btn_sub_sec .tile .btn_faq3,
.ur_pf_wrap .btn_sub_sec .tile .btn_faq4,
.ur_pf_wrap .btn_sub_sec .tile .btn_faq5{
    opacity:0
}
.ur_pf_wrap .btn_sub_sec .tile .main_btn3_2{
    position:absolute;
    right: 40px;
    bottom: 46px;
    opacity:0
}
.ur_pf_wrap .btn_sub_sec .tile .main_btn3_3{
    position:absolute;
    right: -4px;
    bottom: 37px;
    opacity:0
}
.ur_pf_wrap .btn_sub_sec .tile .main_btn3_4{
    position:absolute;
    right: 42px;
    bottom: 16px;
    opacity:0
}
.ur_pf_wrap .btn_sub_sec .tile .main_btn3_5{
    position:absolute;
    right: 6px;
    bottom: 10px;
    opacity:0
}
.ur_pf_wrap .btn_sub_sec .tile .btn4_img1{
    opacity:0
}
.ur_pf_wrap .btn_sub_sec .tile .btn_faq2{
    position:absolute;
    top: -13px;
    right: 10px;
}
.ur_pf_wrap .btn_sub_sec .tile .btn_faq3{
    position:absolute;
    right: -1px;
    top: -12px;
}
.ur_pf_wrap .btn_sub_sec .tile .btn_faq4{
    position:absolute;
    top: -3px;
    right: -11px;
}
.ur_pf_wrap .btn_sub_sec .tile .btn_faq5{
    position:absolute;
    right: -12px;
    top: 7px;
}
.ur_pf_wrap .ur_not_sec {
    position:relative;
    box-shadow: 2px 2px 3px rgb(0 0 0 / 20%);
    border-radius: 5px;
    margin: 15px 20px;
    padding: 15px;
    background: #f5f5f5;
}
.ur_pf_wrap .ur_not_sec .sec_tit {
    margin-bottom: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Krub', sans-serif;
}
.ur_pf_wrap .ur_not_sec .list_tile {
    height: 20px;
    -webkit-display: flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 1.3rem;
    font-weight: 400;
}
.ur_pf_wrap .ur_not_sec .list_tile .flex_wrap {
    -webkit-display: flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
}
.ur_pf_wrap .ur_not_sec .list_tile .con_txt {
    margin-right: 5px;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    font-size: 1.4rem;
    max-width:250px
}
.ur_pf_wrap .ur_not_sec .list_tile .cir_dot{
    width:17px;
    height:17px;
    line-height:18px;
    position: relative;
    top: -2px;
    border-radius:50%;
    background:#EF5668;
    color:#fff;
    text-align:center;
    font-weight:400;
    font-size:1rem
}
.ur_pf_wrap .ur_not_sec .list_tile .date{
    color: #9FA5B6;
}
.nav-container .nav-col input{
    min-height:32px;
}

@media (min-width:600px){
    .nav-container .nav-col input{
        height:100%;
        font-size:1.6rem;
    }
    .nav-container .nav-col:last-child .fa-solid {
        min-width: 23px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
    }
}
@media (min-width:500px){
    .bi_modal .bi_m_con{
      max-height:670px;
      }
    .follow_wrap .follow_list .item .thumbnail_wrap .new_dot {
      position: absolute;
      top: 0;
      right: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #2BA5A5;
      color: #fff;
      font-size: 1.2rem;
      font-weight: 500;
    }
    .follow_wrap .follow_list .item .celo_name{
      font-size:1.6rem
    }
    .follow_wrap .follow_list .item .item_like{
      font-size:1.4rem
    }
    .li_follow.btn_more button{
      font-size: 1.6rem;
    }
}
@media (min-width:480px){
    .reply_empty {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      height: calc(100vw * (150/375));
      max-width: 480px;
      max-height: 300px;
      text-align: center;
      background: #fff;
    }
}
@media (max-width: 340px){
    .oir_btn_block .box_tile .section2 .list_tile .con_txt,
    .ur_pf_wrap .ur_not_sec .list_tile .con_txt{
        max-width: 140px;
    }
    .sel_ql_list .sel_ql_cont .list_wrap .tile .list_head .sts_tit{
        max-width:125px
    }
}
@media (max-width: 320px) {
    .review_wrap .review_list .head .user_name {
      margin-right: 5px;
      font-weight: 500;
      font-size: 1.4rem;
    }
    .main.celo_pfBox .th_box {
        flex: 1;
        margin-right: 10px;
    }
    .main.celo_pfBox .thumbnail{
        height: 30px;
        padding: 0;
        margin-top:0;
        width: 55px;
        height: 55px;
    }
    .main.celo_pfBox .pfText {
        margin-right:0;
        flex: 1;
        -webkit-display: flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        justify-content: center;
    }
    .main.celo_pfBox {
        margin: 15px 20px 0;
        padding: 10px;
        border-radius: calc(100vh * (10/640));
        border: 1px solid #EDEDED;
    }
    .main.celo_pfBox .pfText .celo_name {
        margin-right:5px;
        color: #222;
        font-weight: 500;
        font-size: 1.4rem;
    }
    .main.celo_pfBox .rightArrow{
      max-width:45px;
    }
    .main.celo_pfBox .pfText .pfList .text {
        color: #999;
        font-weight: 400;
        font-size: 1.2rem;
    }
    .main.celo_pfBox .pfText .pfList .length {
        font-size: 1.3rem;
        font-weight: 500;
        color: #2BA5A5;
    }
    .main.celo_pfBox .pfText .pfList li {
        margin-right: 9px;
        text-align: center;
    }
    .main.col_history .bottom_box .s_m_th span.celo_name{
      width: 40px;
      font-weight:400;
      font-size:1.4rem;
      display:block;
      white-space: nowrap;
      overflow:hidden;
      text-overflow: ellipsis;
    }
    .main.row_history .item {
      max-width: 200px;
      width: calc(100vw * (270/640));
      padding: 15px;
      margin-right: 10px;
      box-sizing: border-box;
      display: inline-block;
      overflow: hidden;
      border-radius: 10px;
      text-align: center;
      border: 1px solid #EDEDED;
      background: #fff;
  }
  .follow_wrap .follow_list .item .thumbnail_wrap .new_dot{
    position:absolute;
    top: 0;
    right: calc(100vw * (5/375));
    display: flex;
    align-items: center;
    justify-content: center;
    width:15px;
    height:15px;
    border-radius:50%;
    background:#2BA5A5;
    color:#fff;
    font-size:1rem;
    font-weight:500
  }
  .oir_btn_block .box_tile .section2 .list_tile .con_txt,
  .ur_pf_wrap .ur_not_sec .list_tile .con_txt{
    max-width: 95px;
  }
  .fb_navi .tile:nth-of-type(3){
    width: 45px;
    max-width: 45px;
    min-height: 45px;
    height: 45px;
    max-height: 45px;
    min-width: 45px;
  }
  .nav-container .nav-col:nth-of-type(1){
    flex:.5
  }
  .nav-container .nav-col:nth-of-type(2){
    margin: 0 0 0 10px;
    min-width:130px;
    flex:1.5
  }
  .nav-container .nav-col:last-child{
    padding-left:0
  }
  .oir_cel_pf .box_tile .pf_lay_box .pf_txt .cel_info .cel_name{
    font-size: 1.5rem;
  }
  .oir_cel_pf .box_tile .section2 .contents_box .status_box .sub_tile .length{
    font-size: 1.4rem;
  }
  .oir_cel_pf .box_tile .section2 .contents_box .status_box .ma_tile:last-child{
    margin-top:3px
  }
  .oir_cel_pf .box_tile .pf_lay_box .pf_txt .status_box .tile{
    text-align:center
  }
  .oir_btn_block .section1 .txt_box .sub_txt{
    font-size: 1.2rem;
  }
  .oir_btn_block .section1 .btn_1 .ani_img .main_btn1_1{
    bottom:20px;
    right:-19px;
    opacity:0
    }
.oir_btn_block .section1 .btn_1 .ani_img .main_btn1_2{
    bottom: 50px;
    right: 2px;
    opacity:0
    }
.oir_btn_block .section1 .btn_2 .ani_img .main_btn2_1{
    bottom:8px;
    right:9px;
    z-index:10;
    opacity:0
    }
.oir_btn_block .section1 .btn_2 .ani_img .main_btn2_2{
    bottom:0;
    right:-15px;
    opacity:0
    }
.oir_btn_block .section1 .btn_3 .ani_img .main_btn3_1{
    bottom:0;
    right:-23px;
    opacity:0
    }
.oir_btn_block .section1 .btn_3 .ani_img .main_btn3_2{
    right:16px;
    bottom:40px;
    opacity:0
    }
.oir_btn_block .section1 .btn_3 .ani_img .main_btn3_3{
    right:-11px;
    bottom:21px;
    opacity:0
    }
.oir_btn_block .section1 .btn_3 .ani_img .main_btn3_4{
    right:30px;
    bottom:12px;
    opacity:0
    }
.oir_btn_block .section1 .btn_3 .ani_img .main_btn3_5{
    right:5px;
    bottom:6px;
    opacity:0
    }
.oir_cel_pf .box_tile .pf_lay_box .pf_txt .cel_info .cel_name{
    max-width: 80px;
    }
.oir_btn_block .section1 .btn_1{
    padding: 13px 15px;
    }
}

@media (max-width: 280px){
    .nav-container .nav-col:last-child{
        padding-left:10px
    }
    .nav-container .nav-col:nth-of-type(2){
        margin:0 0 0 5px;
    }
    .oir_cel_pf .box_tile .pf_lay_box .pf_txt .cel_info .cel_name{
        font-size: 1.1rem;
    }
    .oir_btn_block .section1 .btn_3 .ani_img .main_btn3_2{
        right: 4px;
    }
    .onboard_cont button{
        height:50px;
        font-size:1.6rem
    }
}