@import url('setting.css');
@import url('normalize.css');

/***** TOP GNB시작 *****/
*{text-decoration: none;}

.topbox {
    position:sticky;
    width:100%;
    top:0;
    left:0;
    right:0;
    background: #fff;
    height: 120px;
    z-index: 100;
}

.tnb{
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
}

.tnb .logo {
    position: relative;
    left:30px;
    top:35px;
}

.tnb .logo img {
    width: 170px;
    height: auto;
}

.topbox .top-right {
    float:right;
    display: inline-block;
    position: relative;
}

.topbox .top-right .top-search, 
.topbox .top-right .top-member {
    float:left;
    font-size: 14px;
}

.topbox .top-right .top-member {
    background-color: #DE1837;
    background-image: url(../images/top-red-bg.png);
    background-size:cover;
    padding:10px 10px 10px 44px;
    border-bottom-left-radius: 44px;
    color:#fff;
    line-height: 24px;
}

.topbox .top-right .top-search {
    margin-right:20px;
    padding:10px;
    line-height: 28px;
}

.top-search .box {
    font-size: 14px;
    border-radius: 16px;
    line-height: 24px;
    width:180px;
    border:1px solid #8A8D8F;
    background-color:#fff;
    color:#000;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box;
    margin-right:10px;
}

.top-search .box:focus {
    border:1px solid #fff;
    background-color:#fff;
    color:#000;
    box-shadow: 0px 0px 20px #ccc;
}

.c-btn-wnb {
    border-radius: 50%;
    border:2px;
    background-color:#fff;
    color:#000;
    font-weight: bold;
    font-size: 24px;
    float: right;
    
}

.c-btn-wnb:hover {
    color:#ff0000;
}

.tnb .top-right .temp-logout {
    float: left;
    /* background-color: #DE1837; */
    /* background-image: url(../images/top-red-bg.png); */
    background-size: cover;
    border-bottom-left-radius: 44px;
    padding: 10px 10px 10px 44px;
    color:#000;
    font-size: 14px;
    line-height: 24px;
}

.tnb .temp-logout .item {
    margin-left: 25px;
    float: left;
}
.tnb .temp-logout .item a {
    color: #000;
}
.tnb .temp-logout .name {
    float: left;
    margin-left:25px;
    border-left:1px solid #fff; 
    padding-left:25px;
}

/* 상단검색 라디오버튼 */
.top-search .red-radio {
    float: left;
    display: block;
    position: relative;
    padding-left: 25px;
    _margin-bottom: 12px;
    margin-right:20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.top-search .red-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.top-search .checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 19px;
    width: 19px;
    background-color: #fff;
    border-radius: 50%;
    border:1px solid #ccc;
}

/* On mouse-over, add a grey background color */
.top-search .red-radio:hover input ~ .checkmark {
    background-color: #DE1837;
}

/* When the radio button is checked, add a blue background */
.top-search .red-radio input:checked ~ .checkmark {
  background-color: #DE1837;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.top-search .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.top-search .red-radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.top-search .red-radio .checkmark:after {
 	top: 4px;
	left: 4px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: white;
}

/* .topbox .temp-logout button {
    border-radius: 14px;
    color:#fff;
    border:0px;
    background: #000;
    text-align: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    box-sizing: border-box;
    font-size: 12px;
    padding:5px 20px;
}

.topbox .temp-logout button:hover {
    border-radius: 14px;
    font-weight: bold;
    color:#000;
    background: #fff;
} */

.c-btn-logout {
    border-radius: 16px;
    border:2px;
    background-color:#000;
    color:#fff;
    font-weight: bold;
    font-size: 12px;
    line-height: 24px;
    padding:0px 10px;
}

.c-btn-logout:hover {
    background-color:#fff;
    color:#000;
}

.tnb .temp-logout button:active {
    border-radius: 14px;
    color:#fff;
    background: #ddd;
    margin-left:0px;
}

/*TOP GNB END */


/* GNG START */
.nav_box{
    position:absolute;
    top: 55%;
    width:100%;
}
    
.nav_box .nav_tit_box{
    display:flex;
    justify-content: flex-end;
    list-style: none;
    margin:0;
    padding:0;
    cursor: pointer;
}

.nav_box .nav_tit{
    margin:0;
    _padding:0 1rem;
    display:flex;
    flex-direction: column;
    align-items: center;
    width:190px;
}

.nav_box .nav_tit a{
    text-decoration: none;
    transition: .3s;
    color:#222;
}

.nav_box .nav_tit a:hover{
    color:#DE1837;
    transition: .3s;
}   

.nav_sub{
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 1rem 1.5rem;
    transition: .15s;
}

.nav_sub:hover a{
    color:#DE1837;
}

.nav_tit ul{
    padding:0;
    margin-top:1.96rem;
    border:none;
    background:white;
    width:190px;
}

.nav_sub_tit{
    display:none;
}

.nav_tit:hover .nav_sub_tit{
    display:block;
}

.nav_tit_box li:nth-child(1){
    width:190px;
    justify-content: center;
}

.nav_tit_box li:nth-child(1) a{
    display:flex;
    justify-content: center;
}

.nav_sub:hover{
    background:#222;
    transition: .15s;
}

.topMenu {
    display:flex;
    justify-content: flex-end;
    width: 100%;
    height: 40px;
    margin: 30px 0 0;
    text-align: center;
}

.topMenu:after {
    content: "";
    display: block;
    clear: both;
}

.menu01{
    display: flex;
    width:100%;
    max-width: 1240px;
    *background:rgba(255,255,255);
}

.menu01:hover{
    *border-bottom:2px solid #DE1837;
}

.menu01 > li {
    width: 14.28%;   
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}
.menu01 li:hover a {
    color:#de1837;
}

.menu01 > li > a {
    font-size: 16px;
    font-weight: bold;
    color:#222;
}

.menu01 .all_select a{
    color:#222;
    text-decoration: none;
    transition: .3s;
    font-weight: 600;
}

.menu01 .all_select a:hover{
    color:#de1837;
    transition: .3s;
}

.dept01 {
    display: none;
    width: 100%;
    padding:10px 0 0;
}

.menu01 li:nth-child(3) .dept01 > li a,
.menu01 li:nth-child(4) .dept01 > li a {
    word-wrap: break-word;
    word-break: break-word;
}

.menu01 li:nth-child(3) .dept01 li:nth-child(3),
.menu01 li:nth-child(4) .dept01 li:nth-child(3) {
    line-height:150%;
    padding:10px 12px 0;
}

#nop {
    float: none;
    width: 100%;
    text-align: center;
}

#nop:hover a{
    color:#de1837;
}

#nop a{
    color:#fff;
}
/* 
.none:after {
    content: ""; 
    display: block; 
    clear: both;
}

.close{
    width: 100%;
    height: 296px;
    _margin-top: 520px;
    bottom: 0;
    position: fixed;
    display:none;
}

.nav_close{
    top: 0;
    height: 46px;
    _z-index: 13;
} */

.gnb_bg {
    display:none; 
    left:0;
    top:118px;
    width:100%; 
    min-width:1200px; 
    height:222px; 
    margin:0 auto; 
    overflow:hidden; 
    background:rgba(0,0,0,0.9);
    border-bottom:2px solid #DE1837; 
    z-index:10;
}
/* GNG END */

.intro20234 {
    position: relative;
    width:100%;
    height: calc(100vh - 100px);
    overflow: hidden;
    background:#efefef;
    display:table;
}
.intro20234 .intro-item {display:table-cell;position:relative;padding:0;width:50%;height:100%;text-align:center;overflow:hidden;vertical-align:bottom;}
.intro20234 .intro-item img {position:absolute;top:50%;left:50%;width:100%;height:100%;min-width:100%;min-height:100%;transform:translate(-50%,-50%);object-fit:cover;transition:0.3s ease;filter:grayscale(1);}
.intro20234 .intro-item:hover img {transform:translate(-50%,-50%) scale(1.05);filter:grayscale(0);}
.intro20234 .intro-btn {width:100%;position:relative;z-index:1;border:0;color:#fff;padding:20px 0;font-size:26px;}
.intro20234 .intro-left .intro-btn {background:#DE1837;}
.intro20234 .intro-right .intro-btn {background:rgba(39, 39, 39);}

.name_xbtn{
    position:relative;
}
.x_button{
    width:25px; 
    position:absolute; 
    top:-3px;
    right:0;
    cursor: pointer;
}

.add_btn button{
    background: #DE1837;
    border: none;
    color: white;
    margin: 20px 0 0;
    border-radius: 50px;
    width:200px;
    padding:5.5px 25px;
    font-size:14px;
}

/* MAIN START */
.intro-mov {
    position: relative;
    top: -130px;
    width:100%;
    height: 900px;
    overflow: hidden;
}

.vimeo-full-width {
    position: relative;
    padding: 0 0 56.25%; /* 16/9 ratio */
    height: 0;
    margin: 0;
    overflow: hidden;
}

.vimeo-full-width iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.intro-copy {
    z-index: 90;
    width:100%;
    text-align: center;
    color:#fff;
    position: absolute;
    top:340px;
}

.intro-copy h3 {
    font-family: "Gotham Cond SSm A", "Gotham Cond SSm B", sans-serif;
    font-weight: 600;
    font-size: 72px;
    letter-spacing: -0.0137em;
}

.intro-copy p {
    margin-top:30px;
    letter-spacing: 0.01em;
}

.intro-info {
    z-index: 90;
    width:100%;
    text-align: left;
    color:#fff;
    position: absolute;
    color:#222;
}

.intro-info .transbox {
    border:1px solid #ededed; 
    padding:50px; 
    width:70%; 
    margin-top:-230px; 
    margin-left:15%;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    background-color: rgba(255,255,255,0.6);
    display: inline-block;
    position: relative;
}

.intro-info .transbox .dear {
    float:left;
    width:25%;
    padding-top:100px;
    height:480px;
    _background-image: url('../images/main-info-ball.png');
    _background-position: bottom right;
    _background-repeat: no-repeat;
    font-size: 22px;
    
}

.intro-info .transbox .right-box {
    float:right;
    background-color: #fff;
    position: relative;
    width:75%;
    box-shadow:-8px -8px 17px rgba(0,0,0,0.3);
    padding-bottom:30px;
    border-bottom-right-radius: 60px;
}

.intro-info .tit-logo {
    position: absolute;
    top:40px;
    right:40px;
}

.intro-info .welcome {
    margin-top:80px;
    margin-left: 80px;
    margin-right:40px;
    padding-bottom:30px;
    border-bottom:1px solid #ccc;
    font-size: 18px;
}

.intro-info .welcome h4 {
    font-size: 32px;
}

.intro-info .info-title {
    padding:7px 10px 7px 80px;
    color:#fff;
    font-size: 20px;
    font-weight: bold;
    background-color: #DE1837;
    display: inline-block;
    margin-top:30px;
}

.intro-info .main-announce {
    margin-top:50px;
    padding-left:80px;
    padding-right: 40px;
}

.intro-info .main-announce .ill {
    padding:0px 0px 15px 20px;
    background-image: url('../images/ill-dot.png');
    background-position: top left;
    background-repeat: no-repeat;
    font-size: 14px;
    color:#666;
}

.footer {
    color:#fff;
    text-align: center;
    padding:25px;
    background-color: #111;
    font-size: 14px;
    font-family: "Gotham SSm A", "Gotham SSm B", 'Pretendard', Pretendard, sans-serif;
}
/* MAIN END */

/*ㅜㅜㅜㅜㅜㅜpassword changeㅜㅜㅜㅜㅜㅜ*/
.chart table td, .chart table th{
    font-family: 'MalgunGothic';
}
        
.loginpage {
    width:100%;
    text-align: center;
    background-image: url('../images/global-bg.jpg');
    background-position: center center;
    background-size: cover;
    height: 100%;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height:620px;
    flex-direction: column;
}

.pass-change-back {
    width:100%;
    margin-top:6rem;
    z-index: 2;
}

.pass-change-p {
    margin:auto; 
    width:700px;
    color:#fff;
    position: relative;
    _margin-top:80px;
}
        
.logo-login {
    width:206px;
    margin-bottom: 10px;
}

.loginpage h3 {
    font-family: "Gotham Cond M", "Gotham Cond B", sans-serif;
    font-size: 48px;
    letter-spacing: 1px;
    color: #fff;
}
        
.loginpage p {
    font-size:20px;
    line-height: 36px;
    _font-family: 'Noto Sans KR', sans-serif;
    margin-top:10px;
    color:#444;
}

.loginpage input {
    border-radius: 24px;
    line-height: 38px;
    width:300px;
    border:0;
    background:#eee;
    color:#000;
    text-align: center;
    margin-bottom: 15px;
    outline: none;
    box-sizing: border-box;
    font-size: 16px;
}

.loginpage button {
    border-radius: 24px;
    padding:10px 0;
    line-height: 1.4;
    /* width:300px; */
    width: 100%;
    background:#DE1837;
    color:#fff;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
    -webkit-transition: 0.5s;
    border:0;
    transition: 0.5s;
    outline: none;
    box-sizing: border-box;
    font-size: 18px;
}

.loginpage button:hover {
    background:#fd3250;
    color:bisque;
}

.pass-change-p input {
    border-radius: 24px;
    line-height: 32px;
    width:240px;
    border:2px solid #fff;
    background:rgba(222, 222, 222, 0.8);
    color:#fff;
    text-align: center;
    margin-bottom: 15px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    box-sizing: border-box;
}

.pass-change-p input:focus {
    border:2px solid #fff;
    background:rgba(255, 255, 255, 0.7);
    color:#000;
    box-shadow: 0px 0px 15px rgba(255, 260, 122, 0.5);
}

.pass-change-p button {
    border:2px solid #DE1837;
    border-radius: 24px;
    line-height: 38px;
    background:#DE1837;
    color:#fff;
    text-align: center;
    margin-top: 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    box-sizing: border-box;
    font-size: 14px;
    _font-family: 'Noto Sans KR', sans-serif;
    padding:0px 20px;
    width:100%;
}

.pass-change-p button:hover {
    background:#b70027;
    border:2px solid #DE1837;
    color:bisque;
    box-shadow: 0px 0px 15px rgba(255, 260, 122, 0.5);
}

.pass-change-p button:active {
    background:#ff8474;
    border:2px solid #DE1837;
    color:#000;
    box-shadow: 0px 0px 15px rgba(255, 260, 122, 0.0);
}

.loginpage .login-top {
    padding-bottom:50px;
}

.loginpage .w-line {
    border-bottom:1px solid #fff; opacity:0.4; margin-bottom:50px;
}
@media only screen and (max-width:600px) {
    .logo-login {width:160px;}
    .none_box {position:relative;width:100%;left:0;padding:30px 20px;right:0;}
    .loginpage {background-image: url('../images/global-bg-m.jpg');}
    .loginpage input {width:100%;}
}

.pass-change-p .box-title01 {
    position: absolute;
    top:0px;
    left:0px;
    z-index: 10;
    float: left;
}

.pass-change-p .box-title01-mo {
    display: none;
}

.pass-change-p .sub-head {
    position: absolute;
    top:0px;
    left:200px;
    float: left;
    padding:10px;
}

.pass-change-p .change-box {
    position: absolute;
    top:78px;
    left:160px;
    float: left;
    background:rgba(0, 0, 0, 0.2);
    border:1px solid #fff;
    padding:40px;
    border-bottom-right-radius: 60px;
}

.pass-change-p .change-box .fld {
    display:inline-block; 
    margin-top:20px; 
    padding-top:20px; 
    border-top:1px solid #89ac8f; 
    border-bottom:1px solid #89ac8f;
}

.change-box .item {
    width:160px;
    float:left;
    line-height: 42px;
    text-align: right;
    margin-right: 20px;
    font-size: 14px;
}

.change-box ul {
    font-size: 14px;
    margin-top:15px;
    color:#ddd;
}

.change-box h5 {
    color:#DE1837;
    font-weight: 600;
}
.pass-change-p input{
    height:36px;
}
/*ㅗㅗㅗㅗㅗㅗpassword changeㅗㅗㅗㅗㅗㅗ*/


/*ㅜㅜㅜparticipation_indexㅜㅜㅜ*/

.order-back{
    position:relative;
    width: 100%;
    background-image: url('../images/global-bg.jpg');
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-color:rgba(23, 23, 23, 0.36);
    background-blend-mode:overlay;
}

.order-back-end {height:57%;

    background-position: bottom center ; }

.order-top{
    text-align: center;
    width:100%;
    max-width:1300px;
    padding:1rem;
}

.order-top img{
    width:314px;
    margin:0 0 20px;
}

.order-top h3{
    margin:0;
    font-size:48px;
    color: #fff;
}

.order-top h2{
    font-size:42px;
    margin-top:1.4rem;
    font-weight: 600;
    color:white;
    letter-spacing: 2px;
    word-spacing: -10px;
}

.order-go {
    display:inline-block;position:absolute;bottom:3rem;left:50%;transform:translate(-50%);width:32px;height:32px;
    color:#fff;
    font-size:0;text-indent:-9999px;overflow:hidden;white-space:nowrap;
    background:transparent url('../images/i_scroll_down2.svg') no-repeat center;
    background-size:contain;
    animation:order-go-animation .56s ease alternate infinite;
}
@keyframes order-go-animation {
    0% {bottom:3rem;}
    100% {bottom:4rem;}
}

.order-btm{
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding:70px 1rem;
    font-family: "Gotham SSm A", "Gotham SSm B", 'Pretendard', Pretendard, sans-serif;
}

.order-btm .paper-head{
    padding: 24px 0 34px;
    justify-content: center;
    width: 100%;
    position:relative;
}

.order-btm h1{
    font-size:26px;
    color:#111;
}
.order-btm h2{
    font-size: 30px;
    color:#111;
    position:relative;
    font-weight:600;
    margin-bottom:20px;
}
.order-btm h2:after {
    content:'';
    display:inline-block;
    width:44px;
    height:3px;
    /* background:#DE1837; */
    background: linear-gradient(90deg, #DE1837, transparent);
    position:absolute;
    bottom:-22px;
    left:50%;
    transform:translateX(-50%);
}

.paper-head .head-right{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.paper-head .search-wrap{
    padding:30px 0 0;
    border-radius:14px;
}
.paper-head .search-box{
    margin:0 auto;
    display:flex;
    width:360px;
    border-radius:100px;
    overflow:hidden;
    background-color: #f1f1f1;
}
.paper-head .search-box input {
    font-size: 18px;
    line-height: 50px;
    border: 0;
    color: #000;
    text-align: center;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box;
    flex:auto;
}

.search-box button {
    display:flex;
    justify-content: center;
    align-items: center;
    gap:4px;
    font-size:16px;
    width:50px;
    min-width:auto;
    border-radius:100px;
}

.head-right{
    float:right;
}


.order-box{
    display: inline-block;
    overflow: hidden;
    max-width:1300px;
    margin:0 auto;
    width:100%;
}

.c-btn-search{
    border-radius: 16px;
    border: 2px;
    background-color: #DE1837;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    line-height: 24px;
    padding: 3px 20px;
}

.pass_find button {
    font-size:14px;
    background:transparent !important;
    width:auto !important;
    display:block !important;
    border:0 !important;
    box-shadow:none !important;
    text-align:center;
    margin: 0 auto;
    color:#fff;
    padding: 5px;
    line-height: 14px;
}

.header-txt{
    letter-spacing:-0.5px;
    word-spacing: -0.5px;
    margin-top:14px;
    font-size:14px;
    color:#353535;
}

.order-btm .paper{
    width: 100%;
}

.order-btm .steps{
    width: 23%;
    border-radius: 20px;
    color: #000;
    box-shadow: 2px 2px 10px #ddd;
    margin-left: 1%;
    margin-right: 1%;
    float: left;
    overflow: hidden;
    position: relative;
    min-height: 470px;
    min-width: 220px;
    _padding-bottom: 60px;
    margin-bottom: 20px;
}

.order-btm .steps-header{
    text-align: center;
    color: #fff;
    background-color: #3f3f3f;
    line-height: 48px;
    font-weight: 600;
}

.order-btm .steps-body{
    padding:10px 20px;
    text-align: left;
    height: 360px;
    overflow-y: scroll;
}

.order-btm .steps-item{
    /* padding: 12px 0px; */
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
    height:auto;
}

.order-btm .steps-item h5{
    color: #999;
    font-size: 16px;
    font-weight: normal;
}

.steps-item label:not(.red-radio) {
    min-height:30px;
    line-height:2;
}

.steps-item input[type='number'] {
    -webkit-appearance:none;
    -moz-appearance:none;appearance:none;
}
.steps-item input[type='number']::-webkit-outer-spin-button,
.steps-item input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.steps-item input{
    font-size: 14px;
    border-radius: 22px;
    line-height: 30px;
    width: 100%;
    border:0;
    background-color: #ececec;
    color: #000;
    text-align: center;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box;
}

/* ?��?���??�� ?��?��?��버튼 */
.steps-item .red-radio {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.steps-item .red-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.steps-item .checkmark {
    display:block;
    height: 19px;
    width: 19px;
    background-color: #fff;
    border-radius: 50%;
    border:1px solid #ccc;
}

/* When the radio button is checked, add a blue background */
.steps-item .red-radio input:checked ~ .checkmark {
  background-color: #DE1837;
  border-color: #DE1837;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.steps-item .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.steps-item .red-radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.steps-item .red-radio .checkmark:after {
 	top: 6px;
	left: 6px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: white;
}


.steps-item .phonenum{
    width:33%;
}

.step-date .steps-item {
    display: flex;
    justify-content:space-between;
    align-items: center;
}
.step-time .steps-item {
    display: flex;
    justify-content:space-between;
    align-items: center;
}

.nameinput{
    width:100%;
}
.user-item .nameinput{
    margin-bottom:8px;
}

.btn-paper-toggle {position:absolute;margin-left:10px;width:35px;border-radius:100px;height:35px;color:#fff;font-size:0;background:#DE1837;border:0;}
.btn-paper-toggle:after {content:'+';font-size:25px;font-weight:400;}
.btn-paper-toggle.on:after {content:'-';}

#MOBILE_0_1{
    width:33%;
    font-size: 14px;
    border-radius: 12px;
    line-height: 28px;
    border: 1px solid #8A8D8F;
    background-color: #fff;
    color: #000;
    text-align-last: center;
    -ms-text-align-last: center;
    -moz-text-align-last: center;
    text-align: center;
    text-align:-moz-center;
    text-align:-webkit-center;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box;
    height:30px;
}

#MOBILE_0_1 option:nth-child(2){
    display:none;
}

#MOBILE_0_1, #Tb_CompanionList select{
    -webkit-appearance:none; /* ũ�� ȭ��ǥ ���ֱ� */
    -moz-appearance:none; /* ���̾����� ȭ��ǥ ���ֱ� */
    appearance:none; /* ȭ��ǥ ���ֱ� */
    pointer-events: none;
}

.phone_dash{
    text-align: center;
    width: 8%;
    border-bottom: 1.5px solid #222;
    display: inline-block;
    width: 7px;
    vertical-align: middle;
}

.phone_flex{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.phone_flex > select {
    flex:auto;
    -webkit-appearance:none; /* ?? ??? ??? */
    -moz-appearance:none; /* ????? ??? ??? */
    appearance:none; /* ??? ??? */
    text-align-last: center;
    -ms-text-align-last: center;
    -moz-text-align-last: center;
    text-align: center;
    text-align:-moz-center;
    text-align:-webkit-center;
}

.order-btm select {
    padding:0 10px;
    border:0;
    background:#ececec;
    height:30px;
    border-radius:30px;
}


.wrappp {max-width:1300px;margin:0 auto;width:100%;padding:150px 1rem 0;}

.steps-item2{
    font-family:'MalgunGothic';
}

.order-btm .steps-item2{
    padding: 30px 0px 20px 0px;
    border-bottom: 1px solid #ddd;
    height: 80px;
}

.order-btm .steps-body::-webkit-scrollbar{
    width:6px;
}

.order-btm .steps-body::-webkit-scrollbar-thumb {
    background: rgba(35, 35, 35, .5);
    border-radius: 10px;
}

.order-btm .steps-body::-webkit-scrollbar-track {
    _background: transparent;
}

#selCompaninoCnt{
    font-size: 14px;
    border-radius: 12px;
    line-height: 28px;
    border: 1px solid #8A8D8F;
    background-color: #fff;
    color: #000;
    text-align: center;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box;
    width:100%;
    height:30px;
}

#Tb_CompanionList .phone_flex{
    margin-top:.4rem;
}

#Tb_CompanionList select{
    width: 33%;
    font-size: 14px;
    border-radius: 12px;
    line-height: 28px;
    border: 1px solid #8A8D8F;
    background-color: #fff;
    color: #000;
    text-align-last: center;
    -ms-text-align-last: center;
    -moz-text-align-last: center;
    text-align: center;
    text-align:-moz-center;
    text-align:-webkit-center;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box;
    height: 30px;
}

.phonenum{
    font-size: 14px;
    border-radius: 12px;
    line-height: 28px;
    border: 1px solid #8A8D8F;
    background-color: #fff;
    color: #000;
    text-align: center;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box;
    width:33%;
}

.dash{
    display:inline-block;
}

.est-final {
    font-size: 17px;
    color: #333;
    padding:50px 0 30px;
}
.est-final-btm{
    padding:50px 0 20px;
}

.suc_btn_width{
    width:255px;
}

.success_txt b{
    background: #DE1837;
    border-radius: 50px;
    color: white;
    padding: 8px 18px;
    min-width: 155px;
    margin: 0 auto 20px;
    display: inline-block;
    justify-content: center;
    align-items: center;
}

.success_txt .suc_btn_width{
    background:none;
    border:1px solid #222;
    color:#222;
    padding:0 10px;
    border-radius: 50px;
    font-size:14px;
}

/*?��?��?��participation_index?��?��?��*/

.loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .8);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
}

.loader {
    width: 50px;
    height: 50px;
    color: #3498db;
    border: 5px solid;
    border-top-color: transparent;
    border-radius: 50%;
    animation: loader 1.2s linear infinite;
}

@keyframes loader {
    25% {
        color: #2ecc71;
    }

    50% {
        color: #f1c40f;
    }

    75% {
        color: #e74c3c;
    }

    to {
        transform: rotate(360deg);
    }
}

/*?��?�� ?�� 메뉴 */
.status-tab {
    overflow: hidden;
}

/* Style the buttons inside the tab */
.status-tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 18px 16px 12px;
    transition: 0.3s;
    font-size: 17px;
    width:33.3333%;
    border-bottom:1px solid #ccc;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color:#999;
}

/* Change background color of buttons on hover */
.status-tab  button:hover {
    background-color: #ddd;
    color:#000;
}

/* Create an active/current tablink class */
.status-tab  button.active {
    background-color: #fff;
    border:1px solid #ccc;
    border-bottom:none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color:#DE1837;
    font-weight: bold;
}


/* Style the tab content */
.status-tabcontent {
    _display: none;
    padding: 30px 30px;
    border:1px solid #ccc;
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
}

.tab-active{
    _display: block;
} 
/*?��?�� ?�� 메뉴 END*/



.sales-status {
    background: #efefef;
    _box-shadow: 4px 4px 10px rgb(0 0 0 / 30%);
    width: 100%;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    display: inline-block;
    overflow: hidden;
    _margin-top: -100px;
    margin-bottom: 50px;
    _min-width: 1100px;
    padding: 30px;
    background: white;
    border:1px solid #ccc;
}

.payer_section{
    margin-top:35rem;
}

.paper2{
    _background-color: #fff;
    width: 100%;
    max-width: 100%;
    _box-shadow: 0px -10px 10px #ccc;
    padding: 30px 0;
    float: left;
    position: relative;
}

.s-title{
    padding: 0px 0px 10px 0px;
    border-bottom: 1px solid #DE1837;
    font-size: 24px;
    _font-family: 'Noto Sans KR', "Gotham SSm A", "Gotham SSm B", sans-serif;
    font-weight: bold;
    color: #000;
    display: inline-block;
}

.patners{
    width: 100%;
    display: inline-flex;
    padding: 20px 0px 20px 0px;
    position: relative;
}

.opt-info{
    width: 23%;
    margin-left: 1%;
    margin-right: 1%;
    position: relative;
    font-size: 14px;
    display: inline-block;
    float: left;
    height: 42px;
}

.opt-info .opt-item{
    border-radius: 21px;
    border: 1px solid #C1C1C1;
    background: #fff;
    color: #000;
    text-align: center;
    float: left;
    width: 45%;
    z-index: 2;
    line-height: 40px;
    position: absolute;
    left: 0px;
    height: 42px;
}

.opt-info .opt-status{
    border-radius: 21px;
    background: #8A8D8F;
    color: #fff;
    text-align: center;
    width: 73%;
    z-index: 1;
    line-height: 42px;
    position: absolute;
    right: 0px;
    top: 0px;
    padding-left: 15%;
    height: 42px;
}

.chart{
    width: 100%;
    max-width: 100%;
    border-top: 2px solid #000;
    border-bottom: 1px solid #000;
    display: block;
    margin-top: 20px;
    font-size: 0; /* inline-block ?��?��?���? ?��백이 ?���? ?��?�� */
    text-align: center;
    overflow:hidden;
}

.chart div{
    font-size: 14px;
    white-space:normal;
    word-break:break-all;
}

/* .chart.w14 > div > div {
    width:12.5%;
    flex: 1 1 auto;
}

.chart.w16 > div > div {
    width:16.66%;
    flex: 1 1 auto;
}

.chart.w25 > div > div {
    width:25%;
    flex: 1 1 auto;
}

.chart.w33 > div > div {
    width:33.3%;
    flex: 1 1 auto;
} */

.brd-r-pad {
    border-right: 0px solid #ccc;
}

.chart-list {
    width: 33.3%;
    float: left;
    display: inline-block;
    text-align: center;
    line-height: 42px;
    _font-family: 'Noto Sans KR', "Gotham SSm A", "Gotham SSm B", sans-serif;
    border-bottom: 1px solid #ccc;
}

.chart-list .chart-item {
    float: left;
    width: 50%;
    color: #666;
    text-align: center;
    font-size: 14px;
}

.chart-list .chart-status {
    float: left;
    width: 50%;
    text-align: center;
    font-size: 14px;
}

.nextyear {
    display: inline-flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 20px;
}

.nextyear .year {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 25px;
    z-index: 99;
}

.nextyear .percent {
    color: #fff;
    background-color: #DE1837;
    border: 1px solid #9f0f0f;
    border-left: 0px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    margin-left:-25px;
}

.nextyear .year, .nextyear .percent {
    float: left;
    width: 22%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
}

.ss-title {
    border-left: 2px solid #DE1837;
    padding-left: 10px;
    margin:20px 0 5px;
    font-size: 18px;
    font-weight: bold;
    line-height:1;
}

.t-header-pc {
    width: 100%;
    display: table;
    border-bottom: 1px solid #333;
    font-size: 14px;
    table-layout:auto;
}

.t-hd-sec {
    padding: 5px;
    background-color: #efefef;
    text-align: center;
    /* float: left; */
    font-size: 14px;
    padding: 6px 0px;
    display:table-cell;
    line-height:1.6;
    width: 12.5% !important;
}

.brd-r-pc {
    border-right: 1px solid #ccc;
}

.t-body {
    width: 100%;
    border-bottom: 1px solid #666;
    font-size: 0;
    display:table;
    table-layout:auto;
}

.t-body .t-body-sec .big-cat {
    width: 50%;
    float: left;
    color: #000;
}

.t-body .t-body-sec {
    display:table-cell;
    width: 12.5%;
    padding: 9px 0px;
    text-align: center;
    word-break:break-all;
    /* float: left; */
    /* display: flex; */
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    line-height:1.6;
}
.chart.ssstyle .t-hd-sec {
    width: 12.5% !important;
}
.chart.ssstyle .t-body .t-body-sec {
    width: 12.5% !important;
}
.chart.fwstyle .t-hd-sec {
    width: 25% !important;
}
.chart.fwstyle .t-body .t-body-sec {
    width: 25% !important;
}

.total {
    font-weight: bold;
    background-color: #E1E6F2;
    padding: 8px 0px;
    border:none;
    border-bottom: 2px solid #222;
    margin-top:-5px;
}

.brd-t-2 {
    border-top: 1px solid #000;
}

.t-body-status, .t-body-total {
    width: 100%;
    float: none;
    text-align: center;
}

.brd-b-pc{
    border-bottom: 1px solid #ccc;
}

.sales-status section table{
    width:100%;
}

.t-head-mo{
    display:none;
}

.bo-t-header-pc {
    width: 100%;
    border-bottom: 1px solid #333;
    background-color: #efefef;
    text-align: center;
    line-height: 36px;
    font-size: 14px;
}

.impact-red {
    font-weight: bold;
    color: #6B95EB;
}

.impact-blue {
    font-weight: bold;
    color: #DE1837;
}

.paper-flex {
    display:flex;
    gap:1.5rem;
    padding:1.5rem;
    /* border:3px solid #414141; */
    border-radius:25px 0 25px 0;
    background-color: #f1f1f1;
}
.paper-flex .steps {
    float:none;
    margin:0;
    flex:1 1 0;
    background-color: #fff;
}

.order-btm .steps2{
    width: 100%;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    color: #000;
    overflow: hidden;
    position: relative;
    padding: 10px 20px 40px 20px;
    margin-bottom: 20px;
    border: 2px solid #DE1837;
    display: inline-block;
}

.order-btm .steps-body2 {
    display: block;
    width: 100%;
    text-align: left;
    /* font-family: 'MalgunGothic'; */
    /* font-family: 'Gotham-Light'; */
}

.steps2 .est-rslt-box {
    width: 33.3%;
    float: left;
    padding: 0px 25px;
}
.steps2 .est-rslt-box .steps-item:last-child {
    border-bottom:0;
}

.steps2 .est-rslt-box h4 {
    padding: 0px 15px;
    font-size: 20px;
    border-left: 2px solid #DE1837;
    margin-top: 20px;
    margin-left: -15px;
}

.order-btm .steps-item h5 {
    color: #999;
    font-size: 16px;
    font-weight: normal;
}

.private-t {
    margin-top:60px;
    width: 100%;
    padding: 1.5rem;
    border: 2px solid #cdcdcd;
    font-size:16px;
    border-radius: 20px 0 20px 0;
    text-align: left;
}

.private-info {
    text-align:left;
    width: 100%;
    height: 160px;
    overflow: auto;
    padding: 15px;
    border-radius: 16px;
    font-size:14px;
    color: #555;
    background-color:#fdf6f6;
    background-color:#f5f5f5;
}

.private-info p {font-size:14px;}

.sign-btm{
    margin:2rem 0;
}

.participation_btn{
    width: 200px;
    padding: 0 20px;
    border-radius: 50px;
    font-size:14px;
    background-image:none;
}



/*POPUP */

.popup-ctnt {
    border-radius:16px; 
    padding:15px;
}

.popup-body * {
    font-family: 'Noto Sans KR', "Gotham SSm A", "Gotham SSm B",  sans-serif;
}

.popup-body {
    border-radius:10px; 
    padding:40px 20px 15px 20px; 
    border:1px solid #666;
    position: relative;
}

.popup-logo {
    position:absolute;
    top:-10px;
    left:-5px;
    background: #fff;
    padding:0px 10px 10px 0px;
}

.popup-logo img {
    width:90px;
}


.sign-btm {
    text-align:center;
}

.est-final-btm {
    padding:30px 0px;
}

.top-sm {
    width:100%;
    background-image: url(../images/global-bg2.png);
    background-position: center center;
    background-size: cover;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-send-sms {
    border-radius: 12px;
    border:1px solid #ccc;
    width:100%;
    background-color: #efefef;
    padding:14px 10px;
}

.info-send-pi {
    padding:14px 0 20px;
    width:100%;
    display: inline-block;
    font-size: 14px;
}

.info-send-pi .item {
    width:100%;
    margin-bottom:3px;
    line-height: 28px;
}

.info-send-pi .ctnt {
    width:100%;
    margin-bottom:10px;
}

.info-send-pi .ctnt #mobile_0_1 {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding:0;
}

.p-use {
    width:100%;
    font-size: 14px;
}

.p-use .p-use-ctnt {
    margin-top:5px;
    width:100%;
    padding:10px;
    border-radius: 12px;
    overflow: auto;
    height:60px;
    border:1px solid #ccc;
    font-size: 12px;
    margin-bottom:10px;
}

.p-use .p-use-ctnt h6 {
    font-size: unset;
}

.info-send-pi .email_at {
    margin:0 1px;
}
.info-send-pi input {
    font-size: 14px;
    border-radius: 12px;
    line-height: 24px;
    border:1px solid #8A8D8F;
    background-color:#fff;
    color:#000;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box;
    width:31%;
}

.info-send-pi input:focus {
    border:1px solid #fff;
    background-color:#fff;
    color:#000;
    box-shadow: 0px 0px 20px #ccc;
}

.info-send-pi select {
    font-size: 14px;
    border-radius: 12px;
    line-height: 24px;
    border:1px solid #8A8D8F;
    background-color:#fff;
    color:#000;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box;
    width:100%;
    padding:0 4px;
    width:30%;
}

.info-send-pi select:focus {
    border:1px solid #fff;
    background-color:#fff;
    color:#000;
    line-height: 28px;
    box-shadow: 0px 0px 20px #ccc;
}

/* 2023 FW | 2024 SS limit over popup */
.limit-popup {max-width:530px;}
.limit-popup strong {display:block;text-align:center;font-size:20px;color:#111;}
.limit-popup strong em {font-style:normal;color:#DE1837;font-size:inherit;font-weight:inherit;}
.limit-popup p {padding:15px 0 10px;text-align:center;}
/* 2023 FW | 2024 SS intro guide popup�� */
.guide-popup {max-width:900px;}
.guide-popup strong {display:block;text-align:center;font-size:16px;color:#111;}
.guide-popup .popup-body {padding:24px 20px 15px 20px;}
.dot-list {padding:20px 0 30px;}
.dot-list li {display:flex;line-height:1.8;gap:14px;}
.dot-list li + li {margin-top:5px;}
.dot-list li:before {content:'';display:inline-block;margin-top:9px;width:8px;height:8px;border-radius:100px;background:#DE1837;flex:none;}
/* order index */


.ctnt-body {
    position:relative;
    width: 100%;
    margin: 0 auto;
    padding:50px 500px 50px 40px;
}
.ord-chart {
    width:100%;
    border-top:2px solid #000;
    border-bottom:1px solid #000;
    display: inline-block;
    margin-top:20px;
    font-size: 0px;
    font-family: "Gotham SSm A", "Gotham SSm B", 'Pretendard', Pretendard, sans-serif;
}

.ord-chart .header {
    font-size: 14px;
    text-align: center;
    line-height: 42px;
    font-weight: bold;
    width:100%;
    display: inline-block;
    border-bottom: 1px solid #666;
    background-color: #f3f5f6;
}

.ord-chart .list {
    font-size: 14px;
    text-align: center;
    line-height: 36px;
    width:100%;
    display: inline-block;
    border-bottom: 1px solid #ddd;
}

.ord-chart .ctnt {
    font-size: 14px;
    text-align: center;
    line-height: 42px;
    display: inline-block;
}

.ord-chart .brd-b-none {
    border-bottom: 0px;
}

.order-info-down {
    position: absolute;
    top:20px;
    right:30px;
}

.order-info-down2 {
    width:100%;
    text-align: right;
}

.page-announce {
    margin-top:30px;
    display: inline-block;
    width:100%;
}

.page-announce h4 {
    float: left;
    font-size: 18px;
    font-weight: bold;
    padding:20px;
    border-top:5px solid #ccc;
    border-left:5px solid #ccc;
    border-right:5px solid #ccc;
    border-bottom:5px solid #DE1837;
}

.page-announce .infor {
    font-size: 14px;
    padding: 8px 20px;
    float:left;
    line-height: 28px;
}

.margin-t50 {
    margin-top:50px;
}

.sap2 {
    width:50%;
    float:left;
}

.sap3 {
    width:33.33%;
    float:left;
} 

.sap4 {
    width:25%;
    float:left;
} 

.sap5 {
    width:20%;
    float:left;
}

.sap6 {
    width:16.6666%;
    float:left;
}

.c-btn-ssm {
    border-radius: 16px;
    line-height: 24px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 14px;
    _margin-top:5px;
}

.preview-div {
    border:1px solid #ccc; width:100%; height:450px; overflow:hidden;
}
/* ?��?�� Slide */
.container {
    position: relative;
    width:450px;
    max-width:100%;
    overflow: hidden;
    padding: 0px;
    margin:0 0 30px;
}

.container img {
  vertical-align: middle;
}

.prdSlides {
  *display: none;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.prdSlides img {
    width: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cursor {
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.2);
    color:#ff0000;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}
.freemode-wrap{
    padding-bottom: 7px;
}
.freemode-menu .swiper-wrapper{height:auto; cursor: grab;}
.slide-thumb {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px !important;
    height: 70px !important;
    overflow: hidden;
    border-bottom: 0px solid #ff0000;
}
.prd-img  .row>*  {display: flex;flex-wrap:wrap;padding:0;margin-top:10px;}
.thumb {
    opacity: 0.6;
    transition: all 0.3s;    
}
.active .thumb, .slide-thumb:hover .thumb {
    opacity: 1;
}
.slide-thumb.swiper-slide.active {
    display: flex;
    justify-content: center;
}
.active, .slide-thumb:hover {
    opacity: 1;
    border-bottom:1px solid #ff0000;
}
/*?��?��?��?�� END */


.sub-nav {
    width:100%;
    padding:10px 40px;
    font-size: 14px;
    font-family: "Gotham SSm A", "Gotham SSm B", 'Pretendard', Pretendard, sans-serif;
    color:#666;
}

.sub-nav a {
    padding-left:5px;
    color:#666;
}

.sub-nav a:hover {
    cursor: default;
    /* color:#000;
    font-weight: bold; */
}
.order-page {
    display: flex;
    overflow: hidden;
    align-items: start;
    width: 100%;
    margin: 0 0 30px;
    border-bottom: 1px solid #ddd;
}
.prd-img .row {
    width: 100%;
    margin:0;
    display:block;
}
.fwstyle .prd-img .container:before {
    content:'';display:block;position:absolute;width:63px;height:26px;top:20px;left:20px;background:url(../images/icon-fw-gray.png) no-repeat center;background-size:contain;
}
.fwnew .prd-img .container:after {
    content:'';display:block;position:absolute;width:63px;height:26px;top:20px;left:85px;background:url(../images/icon-new.png) no-repeat center;background-size:contain;
}
.ssnew .prd-img .container:after {
    content:'';display:block;position:absolute;width:63px;height:26px;top:20px;left:20px;background:url(../images/icon-new.png) no-repeat center;background-size:contain;
}

.more_wrap {
    width: 100%;
    text-align: center;
}

.more_wrap button {
    border: 2px solid #DE1837;
    background: #fff;
    border-radius: 25px;
    padding: 8px 20px;
    color: #DE1837;
}
.more_wrap button:hover {
    transition: .3s;
    border: 2px solid #DE1837;
    background: #DE1837;
    color: #fff;
}

.prd-img {
    background:#fff;
    z-index: 1;
}
@keyframes shrinkWidthAnimation {
  to {
    width: 0; 
  }
}
.prd-feature.active {
    transform: translateX(-100%);
    animation: shrinkWidthAnimation .8s forwards;
    animation-delay: .2s;
}
.prd-feature {
    width:260px;
    position: relative;
    padding:40px 20px;
    overflow: hidden;
    border:1px solid #ddd;
    border-left: 0;
    min-height: 450px;
    z-index: 0;
    transition: all .4s ease;
}
.fea-title {
    display: block;
    margin-bottom: 20px;
    font-size:20px;
}
.prd-feature ul {
    padding-left:20px;
}
.prd-feature ul li {
    list-style:disc;
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 13px;
}
.fea-close {
    width: 30px;
    height: 30px;
    position: absolute;
    top:20px;
    border: 0;
    right:20px;
}

.prd-order {
    margin-left: 40px;
    flex: auto;
}

.prd-info {
    font-size: 16px;
    color:#666;
}

.prd-info h3 {
    font-weight: bold;
    font-size: 28px;
    color:#000;
    margin-bottom:15px;
    letter-spacing: -0.04em;
}

.prd-tag {
    display: inline-block;
    width:100%;
    padding:15px 20px 23px 20px;;
    border-bottom:1px solid #ddd;
    border-top:1px solid #ddd;
}

.prd-tag .tag-item {
    float:left;
    width:48%;
    margin-left:1%;
    margin-right:1%;
    margin-top:8px;
    overflow: hidden;
    border:1px solid #ccc;
    border-radius: 30px;
    font-size: 14px;
    color:#666;
    display: inline-block;
    text-align: center;
    line-height: 28px;
}

.prd-tag .tag-item .tag-title {
    float: left;
    width:50%;
    border-right:1px solid #ccc;
}

.prd-tag .tag-item .tag-info {
    float: left;
    width:50%;
}

.prd-order-history {
    margin-top:30px;
    border-top:2px solid #DE1837;
    border-bottom:1px solid #ccc;
    padding-bottom:5px;
    font-family: "Gotham SSm A", "Gotham SSm B", 'Pretendard', Pretendard, sans-serif;
}
.prd-order-history table {
    width:100%;
    text-align: center;
}
.prd-order-history tr {
    cursor: pointer;
}
.prd-order-history tr:hover {
    background: #eee;
}
.prd-order-history th {
    border-bottom:1px solid #333;
    line-height: 32px;
    font-size: 14px;
    font-weight: normal;
}

.prd-order-history td {
    line-height: 24px;
    padding:5px;
    font-size: 14px;
}

.prd-order-history input {
    width:40px;
    border-radius: 4px;
    border:1px solid #666;
    text-align: center;
    color:#000;
    font-size: 14px;
    line-height: 20px;
    padding:2px;
}

.prd-order-count {
    margin-top: 30px;
    margin-bottom: 30px;
}

.c-btn-white {
    border:1px solid #333;
    background-color:#fff;
    color:#333;
    line-height: 30px;
    
}

.c-btn-white:hover {
    border:1px solid #000;
    background-color:#a6001a;
    background-position: center left;
    background-color:#eee;
}






/* Main Container */
.orderbox {
    position: relative;
    background: #fff;
    font-family: "Gotham SSm A", "Gotham SSm B", 'Pretendard', Pretendard, sans-serif;
    width: 100%;
}
.orderbox.hide .limitbox {
    max-height:0;
    transition: .5s ease;
}
.orderbox.hide .btnLimitMore:before {
    transform: rotate(180deg) ;
}

.btnLimitMore {
    background: #DE1837;
    padding: 20px 25px;
    border: 0;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    width:100%;
    cursor: pointer;
    position: relative;
    text-align: left;
}
.btnLimitMore:before {
    display: block;
    color: #fff;
    transition: all 0.2s ease;
    font-size: 14px;
    height:100%;
    top:0;
    position: absolute;
    right: 25px;
    /* transform: rotate(180deg) ; */
    cursor: pointer;
    line-height: 4;
}

/* Limit Box */
.limitbox {
    margin-top: 10px;
    padding: 0 20px;
    transition: .7s;
    overflow:hidden;
    max-height:700px ;
    font-family: "Gotham SSm A", "Gotham SSm B", 'Pretendard', Pretendard, sans-serif;
}
.limitbox table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}
.limitbox thead {
    line-height: 37px;
    font-weight:bold;
}
.limitbox th {
    border-bottom: 2px solid #DE1837;
    line-height: 32px;
    font-size: 14px;
}
.limitbox td {
    line-height: 24px;
    padding: 5px;
    font-size: 14px;
    font-weight: 400;
}
.limitbox tbody tr:hover {
    background: #fff7f7;
    transition: .2s;
}

/* Order Count */
.order-count {
    border-radius: 0 0 16px 16px;
    position: fixed;
    top: 120px;
    right: 40px;
    z-index: 8;
    width: 400px;
    display: block;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}
.order-count .countbox {
    font-weight: bold;
    text-align: center;
    font-family: "Gotham SSm A", "Gotham SSm B", 'Pretendard', Pretendard, sans-serif;
}
.order-count .countbox h3 {
    margin-bottom: 0;
}
.order-count .countbox .orderCheck {
    padding: 12px 12px;
    color: #fff;
    background-color: #000000;
    border-radius: 10px;
    font-size: 14px;
    width:100%;
    cursor: pointer;
    display:block;
}


/* Count Box */
.countbox {
    text-align: center;
}
.cnt_left {
    border-top: 1px solid #ccc;
    padding-top: 16px;
    margin: 0 auto;
    font-weight:400;
}
#orderTotalPrice {
    font-size: 30px;
    font-weight:700;
}
.cnt_right {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
}


















.center-ctnt {
    width:100%;
    position: relative;
    padding-bottom:120px;
}

.center-ctnt2 .ctnt-body {
    padding: 50px 0;
    max-width: 1440px;
}
.center-ctnt2 {
    width:100%;
    position: relative;
    padding: 0 0 50px;
    min-height: 729px;
}

.btn-back-list {
    background-position:-260px center;
    background-repeat:no-repeat;
}
.btn-back-list:hover {
    background-position:left center;
    background-size:cover;
    background-color: #DE1837;
}
.c-btn-ss {
    border-radius: 12px;
    line-height: 24px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
}

#order-modify {
    margin-top:25px;
    padding-top:20px;
    width:100%;
    border-top:1px solid #eee;
}

.detail-teaser {
    text-align: center;
    padding:50px 0px;
}

/*?��?��?��?�� ?�� 메뉴 */
.detail-tab {
  overflow: hidden;
    padding-top:30px;
}

/* Style the buttons inside the tab */
.detail-tab  button {
  background-color: inherit;
  float: left;
  border: 1px solid #ccc;
  outline: none;
  cursor: pointer;
  padding: 7px 30px;
  transition: 0.3s;
  font-size: 14px;
    border-radius: 20px;
    color:#999;
    margin-right: 20px;
}

/* Change background color of buttons on hover */
.detail-tab  button:hover {
    background-color: #fff;
    color:#ff0000;
    border: 1px solid #000;
}

/* Create an active/current tablink class */
.detail-tab  button.active {
    background-color: #DE1837;
    border:1px solid #DE1837;
    color:#fff;
    font-weight: bold;
}


/* Style the tab content */
.detail-tabcontent {
    display: none;
    padding: 10px;
    position: relative;
    
}

.tab-active{
    display: block;
}
/*?��?��?��?�� ?�� 메뉴 END*/


.btm-comment {
    font-size: 14px;
    color:#333;
    line-height: 24px;
    margin-top:20px;
    padding:20px 0px;
    border-top:1px solid #ededed;
}

.ga-table {
    border-top:2px solid #DE1837;
    border-bottom:1px solid #8A8D8F;
    font-family: "Gotham SSm A", "Gotham SSm B", 'Pretendard', Pretendard, sans-serif;
    font-size: 14px;
    width:100%;
    margin-top:30px;
}
.ga-table th {
    line-height: 36px;
    border-bottom: 1px solid #ddd;
    background-color: #f3f5f6;
}

.ga-table td {
    line-height: 34px;
    border-bottom: 1px solid #ddd;
}

.ord-chart .list input {
    font-size: 12px;
    border-radius: 12px;
    line-height: 38px;
    border:1px solid #8A8D8F;
    background-color:#fff;
    color:#000;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box;
    padding:4px 10px;
}

.ord-chart .list input:focus {
    border:1px solid #fff;
    background-color:#fff;
    color:#000;
    box-shadow: 0px 0px 20px #ccc;
}

.ord-chart .list select {
    font-size: 12px;
    border-radius: 12px;
    line-height: 38px;
    border:1px solid #8A8D8F;
    background-color:#fff;
    color:#000;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box;
    padding:4px 10px;
    margin-top:4px;
}

.ord-chart .list select:focus {
    border:1px solid #fff;
    background-color:#fff;
    color:#000;
    box-shadow: 0px 0px 20px #ccc;
}


/* order history */
.branchs {
    width: 100%;
    display: inline-flex;
    padding:20px 0px 20px 0px;
    position: relative;
}

.branchs-info {
    width:31.3%;
    min-height:40px;
    margin-left: 1%;
    margin-right: 1%;
    position: relative;
    font-size: 14px;
    display: inline-block;
    background-color: #8A8D8F;
    border-radius: 21px;
    border:1px solid #C1C1C1;
    overflow:hidden;
}

.branchs-info .branchs-item {
    background: #fff;
    min-height:40px;
    height:100%;
    color:#000;
    padding:10px;
    text-align: center;
    border-radius:21px;
    width:50%;
    z-index: 2;
    font-size:14px;
    line-height: 1.4;
    float:left;
}

.branchs-info .branchs-status {
    border-radius: 21px;
    min-height:40px;
    background: #8A8D8F;
    padding:10px;
    color:#fff !important;
    height:100%;
    text-align: center;
    width:50%;
    z-index: 1;
    font-size:14px;
    line-height: 1.4;
    float:left;
}

.order-rec .order-item, .order-rec .order-result {
    width:25%;
    text-align: center;
    float: left;
    /* line-height: 42px; */
    line-height:1.4;
    padding:12px;
}

.order-rec .order-item {
    background-color: #efefef;
}

.tb-section {
    margin-top:40px;
}

.onlypc {
    display:block;
}

.brd-b-mo {
    border-bottom:0px solid #ccc;
}

.t-10-hd {
    width:100%;
    background-color: #efefef;
}

.t-10-hd td {
    width:10%;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    padding:5px 0px;
}

.t-10-sec {
    width:10%;
    float:left;
    text-align: center;
    padding:6px 0px;
}

.t-10-sec-total {
    width:40%;
    float:left;
    font-weight: bold;
    text-align: center;
    padding:6px 0px;
}

.t-9-hd {
    width:100%;
    background-color: #efefef;
}

.t-9-hd td {
    width:11.11%;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    padding:5px 0px;
    line-height:1.5;
}

.t-9-sec {
    width:11.11%;
    float:left;
    text-align: center;
    padding:6px 0px;
}

.t-9-sec-total {
    width:66.67%;
    float:left;
    font-weight: bold;
    text-align: center;
    padding:6px 0px;
}

.unit-title {
    border-top:1px solid #ddd;
    background-color: #f4f4f4;
    font-weight: bold;
    padding:5px 10px;
    text-align: left;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
}
.od-date-list {
    width:100%;
    display: flex;
    font-size: 14px;
}
.od-date-list-total {
    display:inline-flex;
    width:100%;
    line-height: 42px;
    font-weight: bold;
    color: #DE1837;
    border-top:2px solid #666;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
}
.xs-title {
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    padding:10px 5px;
    margin-top:20px;
    color:#666;
}
.xs-dom {
    width:16px;
    height:16px;
    float: left;
    margin-right:10px;
    border-radius: 50%;
    border:4px solid #DE1837;
}

.sect-marin-top {
    margin-top:30px;
}

.ord-est-date {
    width:100%;
    display: inline-block;
    padding:10px 0px;
}
.ord-date-info {
    border-radius: 21px;
    width:20%;
    position: relative;
    min-height:30px;
    font-size: 14px;
    display: inline-block;
    overflow:hidden;
    background: #8A8D8F;
    border:1px solid #C1C1C1;
}
.ord-date-info .sst {
    background: #fff;
    border-radius: 21px;
    color:#000;
    text-align: center;
    float: left;
    padding:4px;
    width:50%;
    min-height:30px;
    z-index: 2;
    line-height: 1.4;
}
.ord-date-info .date {
    border-radius: 21px;
    color:#fff !important;
    text-align: center;
    float: left;
    padding:4px;
    width:50%;
    min-height:30px;
    z-index: 1;
    line-height: 1.4;
}

.od-date-list h5 {
    display: none
}

.od-date-list .sec-5 {
    width:20%;
    text-align: center;
    display: inline-block;
    border-bottom:1px dotted #ddd;
    padding:6px 0px;
}

.od-date-list .sec-10 {
    width:50%;
    float: left;
}

.od-date-list .sec-3 {
    width:33.3%;
    text-align: center;
    display: inline-block;
    border-bottom:1px dotted #ddd;
    padding:6px 0px;
}

.od-date-list .sec-9 {
    width:33.3%;
    float: left;
}

.od-date-list-total .hide-tit {
    display: none;
}


/* order/detailprint */

@media print {
  * {
      margin: 0; 
      padding: 0;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-print-color-adjust: exact;
      print-color-adjust: exact;
  }
  body {
    background: #fff;
    color: #000;
    font-size: 8pt;
    line-height: 150%;
    margin: 0px;
  }
  hr {
    color: #ccc;
    background-color: #ccc;
  }
  h1, h2, h3, h4, h5, h6, code, pre {
    color: #000;
    text-transform: none; /* because sometimes I set all-caps */
  }
  h1 {
    font-size: 11pt;
    margin-top: 1em;
  }
  h2 {
    font-size: 10pt;
  }
  h3 {
    font-size: 9pt;
  }
  h4, h5, h6 {
    font-size: 8pt;
  }
  code, pre {
    font-size: 8pt;
    background-color: transparent;
    /* just in case the user configured browser to print backgrounds */
  }
  a {
    text-decoration: underline;
    color: #000;
  }
}

.print_btn {
    text-align: right;
    padding: 20px 20px 0;
}

.order-print {
    padding:1cm 0.7cm;
    width:100%;
}

.print-header {
    position: relative;
    display: block;
    width:100%;
    box-sizing:border-box;
    border-bottom:2px solid #DE1837;
    padding:0 20px 20px;
    margin-bottom:30px;
    text-align: center;
}

.print-header .logo { 
    position: absolute;
    width:10%;
    left:20px;
    bottom:20px;
}
.print-header .logo img {
    width:100%;
    min-width:150px;
}

.print-header .print-title {
    display:inline-block;
    /* background:#eee; */
    padding-left:1%;
    font-size: 24px;
    font-weight: bold;
    margin:0 auto;
    color:#000;
    line-height: 48px;
}

/* 23.07.07 ���� ���ã�� �˾� */

.dim_input{
    display:flex;
    flex-direction: column;
    gap:15px;
    align-items:center;
}

.dim_input input{
    border-radius: 24px;
    line-height: 38px;
    width: 300px;
    border:0;
    background: #fff;
    color: #111;
    text-align: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    box-sizing: border-box;
    font-size: 16px;
}

.dim_tit{
    font-size:25px;
}

.dim_line{
    display:block;
    width:30px;
    height:3px;
    margin: 5px auto 20px;
    background:#DE1837;
}

.dim_white_line{
    width:1px;
    height: 258px;
    border-left: 1px solid white;
}

.find_pw{
    border: 2px solid #DE1837;
    border-radius: 24px;
    line-height: 38px;
    width: 300px;
    background: #DE1837;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    box-sizing: border-box;
    font-size: 16px;
    margin-top:45px;
}

.find_pw:hover{
    background: #fd3250;
    border: 2px solid #fd3250;
}

.find_pw_mail{
    background:white;
    border-radius: 24px;
    display:flex;
    align-items:center;
    justify-content: center;
    padding:10px 0;
    width:300px;
    color:#222!important;
    font-weight: 600;
    font-size:18px;
    margin:30px auto 40px;
}

.dim_close{
    border: 2px solid #8b8b8b;
    border-radius: 24px;
    line-height: 38px;
    width: 300px;
    background: #8b8b8b;
    color: #fff;
    text-align: center;
    margin-top:20px;
    font-size:15px;
    cursor: pointer;
}

.left-area{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.left-area .point_txt{
    font-size:20px;
    color:#de1837;
    font-weight: 600;
    margin-bottom:.5rem;
}

.left-area strong{
    font-size:25px;
}

#dim1 .dim_last{
    display:flex;
    flex-direction: row;
    max-width: inherit;
    text-align: inherit;
    gap:30px;
}

/* 23.07.07 ���� ���ã�� �˾� */

@media only screen and (max-width: 980px) {
    .branchs {
        width: 100%;
        display: inline-flex;
        padding:20px 0px 20px 0px;
        position: relative;
    }

    .branchs-info {
        width:31.3%;
        margin-left: 1%;
        margin-right: 1%;
        position: relative;
        font-size: 12px;
        display: inline-block;
        float:left;
        height:42px;
    }

    .branchs-info .branchs-item {
        border-radius: 21px;
        border:1px solid #C1C1C1;
        background: #fff;
        color:#000;
        text-align: center;
        float: left;
        width:40%;
        z-index: 2;
        line-height: 40px;
        position: absolute;
        left:0px;
        height: 42px;
    }

    .branchs-info .branchs-status {
        border-radius: 21px;
        background: #8A8D8F;
        color:#fff;
        text-align: center;
        width:80%;
        z-index: 1;
        line-height: 42px;
        position: absolute;
        right:0px;
        top:0px;
        padding-left:15%;
        height: 42px;
    }

    .order-rec .order-item, .order-rec .order-result {
        width:25%;
        text-align: center;
        float: left;
        line-height: 42px;
    }

    .order-rec .order-item {
        background-color: #efefef;
    }

    .tb-section {
        margin-top:40px;
    }

    .onlypc {
        display:block;
    }

    .brd-b-mo {
            border-bottom:0px solid #ccc;
        }

    .t-10-hd {
        width:100%;
        background-color: #efefef;
    }

    .t-10-hd td {
        width:10%;
        font-weight: bold;
        text-align: center;
        font-size: 10px;
        padding:5px 0px;
    }

    .unit-title {
        border-top:1px solid #ddd;
        background-color: #f4f4f4;
        font-weight: bold;
        padding:5px 10px;
        text-align: left;
        border-bottom: 1px solid #ccc;
    }

    .od-date-list {
        width:100%;
        display: flex;
    }
    .t-10-sec {
        width:10%;
        float:left;
        text-align: center;
        padding:6px 0px;
    }

    .t-10-sec-total {
        width:40%;
        float:left;
        font-weight: bold;
        text-align: center;
        padding:6px 0px;
    }

    .od-date-list-total {
        font-weight: bold;
        color: #DE1837;
        line-height: 42px;
        border-top:2px solid #666;
        display:inline-flex;
        width:100%;
    }

    .xs-title {
        font-weight: bold;
        font-size: 14px;
        line-height: 16px;
        padding:10px 5px;
        margin-top:20px;
        color:#666;
    }
    .xs-dom {
        width:16px;
        height:16px;
        float: left;
        margin-right:10px;
        border-radius: 50%;
        border:4px solid #DE1837;
    }

    .sect-marin-top {
        margin-top:30px;
    }

    .ord-est-date {
        width:100%;
        display: inline-block;
        padding:10px 0px;
    }

    .ord-date-info {
        width:40%;
        position: relative;
        font-size: 12px;
        display: inline-block;
        float:left;
        height:42px;
    }

    .ord-date-info .sst {
        border-radius: 21px;
        border:1px solid #C1C1C1;
        background: #fff;
        color:#000;
        text-align: center;
        float: left;
        width:50%;
        z-index: 2;
        line-height: 40px;
        position: absolute;
        left:0px;
        height: 42px;
    }

    .ord-date-info .date {
        border-radius: 21px;
        background: #8A8D8F;
        color:#fff;
        text-align: center;
        width:70%;
        z-index: 1;
        line-height: 42px;
        position: absolute;
        right:0px;
        top:0px;
        padding-left:15%;
        height: 42px;
    }

    .od-date-list h5 {
        display: none
    }

    .od-date-list .sec-5 {
        width:20%;
        text-align: center;
        display: inline-block;
        border-bottom:1px dotted #ddd;
        padding:6px 0px;
    }

    .od-date-list .sec-10 {
        width:50%;
        float: left;
    }

    .od-date-list-total .hide-tit {
        display: none;
    }
}

@media only screen and (max-width: 920px) {
    .order-btm h2 {margin-bottom:0;font-size:22px;}
    .order-btm h2:after {display:none;}
    .print-header .logo {
        position: relative;
    }
    .print-header .logo img {
        min-width:100px;
    }
    .loginpage {
        width:100%;
        text-align: center;
        background-image: url(../images/global-bg-m.jpg);
        background-position: center center;
        background-size: cover;
        height: 100%;
        color:#fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .loginpage p {
        font-size:14px;
        line-height: 24px;
        font-family: 'Noto Sans KR', sans-serif;
        margin-top:15px;
    }
    .loginpage .login-top {padding-bottom:36px;}
    .loginpage .login-top h3 {font-size:34px;}
    .topbox {
        width:100%;
        background: #fff;
        position: relative;
        height: 60px;
    }
    .pass-change-p {
        margin:auto; 
        width:100%;
        color:#fff;
        position: relative;
        margin-top:50px;
    }
    .pass-change-p .box-title01 {
        display: none
    }

    .pass-change-p .box-title01-mo {
        display: block;
        width:80%;
        margin:auto;
        border-top:2px solid #fff;
        border-left:2px solid #fff;
        border-right:2px solid #fff;
        border-bottom:2px solid #DE1837;
        font-weight: bold;
        font-size: 18px;
        text-align: center;
        padding:10px;
    }
    
    .pass-change-p .change-box {
        width:80%;
        top:0px;
        float: none;
        left:00px;
        margin:auto;
        background:rgba(0, 0, 0, 0.2);
        border:1px solid #fff;
        padding:20px;
        border-bottom-right-radius: 30px;
        position: relative;
        text-align: center;
    }
    .pass-change-p .change-box .fld {
        display:inline-block; 
        margin-top:10px; 
        padding-top:20px;
        padding-bottom:5px;
        border-top:1px solid #89ac8f; 
        border-bottom:1px solid #89ac8f;
    }
    .pass-change-p .sub-head {
        position: relative;
        top:auto;
        left:auto;
        width:80%;
        margin: auto;
        padding:10px;
        float: none;
        font-size: 14px;
    }
    .change-box .item {
        width:160px;
        float:left;
        line-height: 42px;
        text-align: right;
        margin-right: 20px;
        font-size: 14px;
        display: none;
    }

    .change-box ul {
        font-size: 12px;
        margin-top:15px;
        color:#ddd;
        text-align: left
    }

    .change-box h5 {
        color:#fff;
        text-align: left;
        font-size: 16px;
        font-weight: bold;
    }
    .pass-change-p button {
        border:2px solid #DE1837;
        border-radius: 24px;
        line-height: 38px;
        background:#DE1837;
        color:#fff;
        text-align: center;
        margin-top: 20px;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        outline: none;
        box-sizing: border-box;
        font-size: 14px;
        font-family: 'Noto Sans KR', sans-serif;
        padding:0px 20px;
        width:240px;
    }
    .topbox .logo {
        padding:15px 0px 0px 15px;
    }
    
    .topbox .logo img {
        width:100px;
        height:auto;
    }
    .topbox .temp-logout {
        position: absolute;
        float: right;
        right:0px;
        top:0px;
        background-color: #DE1837;
        border-bottom-left-radius: 40px;
        padding: 10px 10px 10px 40px;
        color:#fff;
        font-size: 12px;
        line-height: 12px;
    }

    .topbox .temp-logout button {
        border-radius: 14px;
        color:#fff;
        border:0px;
        background: #000;
        text-align: center;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        outline: none;
        box-sizing: border-box;
        font-size: 12px;
        font-family: 'Noto Sans KR', sans-serif;
        padding:5px 20px;
        margin-left:10px;
    }
    
    .order-top {
        color:#fff;
        text-align: center;
        width:80%;
        margin-top:-5%;
    }
    
    .top-sm {
        width:100%;
        background-image: url(../images/global-bg2.png);
        background-position: center center;
        background-size: cover;
        height: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .order-top .logo {
        width:180px;
        margin: 10px;
    }

    .order-top .w-line {
        border-bottom:1px solid #fff; 
        opacity:0.4; 
        margin-bottom:2%;
    }

    .order-top h3 {
        font-family: "Gotham Cond SSm A", "Gotham Cond SSm B", sans-serif;
        font-weight: 600;
        font-size: 36px;
        letter-spacing: -0.0137em;
        margin-bottom:2%;
    }

    .order-top h2 {
        font-size: 24px;
        font-weight: bold;
        line-height: 50px;
    }
    
    
    .sales-status {
        background: #000;
        box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
        width:90%;
        border-top-left-radius: 40px;
        border-bottom-right-radius: 40px;
        display: inline-block;
        margin-left:5%;
        overflow: hidden;
        margin-top:-100px;
        margin-bottom:50px;
        min-width:300px;
    }
    
    .paper-head {
        padding:20px 10px 10px 10px;
        display:flex;
        flex-direction: column;
        width:100%;
    }
    .paper-head h1 {
        float: none;
        font-size: 18px;
        margin-bottom:20px;
        text-align: center;
        border-bottom:1px solid #333;
        padding-bottom:15px;
        margin-top:0;
    }
    
    .paper-head h2 {
        font-size: 22px;
        text-align: center;
    }
    
    .paper-head .head-right {
        float: none;
    }
    
    .paper-head .search-box {
        width:85%;
    }
    .order-btm .paper-head {
        position:relative;
        padding:40px 0 25px;
    }
    .paper-head input{
        width:100%;
    }
    
    .paper-head .header-txt {
        line-height: 1.35;
        font-size: 14px;
        max-width:210px;
        margin:14px auto 0;
    }
    .paper {
        background-color: #fff;
        width:100%;
        padding:30px 50px;
    }
    
    .paper2 {
        background-color: #fff;
        width:100%;
        padding:30px 30px;
        float: left;
        position: relative;
    }
    
    .order-btm .steps {
        width:100%;
        border-radius: 20px;
        color:#000;
        box-shadow: 2px 2px 10px #ddd;
        margin-left:1%;
        margin-right: 1%;
        float:left;
        overflow: hidden;
        position: relative;
        min-height:470px;
        min-width:inherit;
        padding-bottom:60px;
        margin-bottom:20px;
    }
    .order-btm .steps:last-child {margin-bottom:0;}
    
    .order-btm .steps-body {
        padding: 10px 20px;
    }
    
    .order-btm .steps-body2 {
        padding: 10px 20px;
        display: inline-block;
        width:100%;
    }
    .fl-l-pc{
        float: none;
    }
    .order-btm {
        width:100%;
        position: relative;
        font-size: 16px;
    }
    .paper-flex {
        flex-direction:column;
    }
    .order-btm .steps2 {
        width:100%;
        border-top-left-radius: 20px;
        border-bottom-right-radius: 20px;
        color:#000;
        box-shadow: 2px 2px 10px #ddd;
        overflow: hidden;
        position: relative;
        padding:10px 30px 25px 30px;
        margin-bottom:20px;
        border:2px solid #DE1837;
        display: inline-block;
    }

    .steps2 .est-rslt-box {
        width:100%; 
        float:none; 
        padding:0px 25px;
    }
    
    .patners {
        width: 100%;
        display: inline-block;
        padding:20px 0px 20px 0px;
        position: relative;
    }
    
    .opt-info {
        float: none;
        width:48%;
        margin-left: 1%;
        margin-right: 1%;
        position: relative;
        font-size: 14px;
        display: inline-block;
        margin-bottom: 10px;
        float:left;
    }

    .chart {
        width:100%;
        border-top:2px solid #000;
        border-bottom:1px solid #000;
        display: inline-block;
        margin-top:20px;        
    }

    .chart div{
        font-size: 10px;
    }

    .chart-list {
        width:33.3%;
        float: left;
        display: inline-block;
        line-height: 32px;
        font-family: 'Noto Sans KR', "Gotham SSm A", "Gotham SSm B",  sans-serif;
        border-bottom: 1px solid #ccc;
    }

    .chart-list .chart-item {
        float:left;
        width:100%;
        color:#666;
        text-align: center;
        padding-left:0px;
        font-size: 12px;
        letter-spacing: -0.05em;
    }

    .chart-list .chart-status {
        float:left;
        width:100%;
        text-align: center;
        padding-right:0px;
        font-size: 12px;
    }
    
    .t-header-pc {
        border-bottom:1px solid #333;
        font-size: 10px;
    }

    .bo-t-header-pc {
        width:100%;
        border-bottom:1px solid #333;
        background-color:#efefef;
        text-align: center;
        line-height: 18px;
        font-size: 10px;
    }
    
    .t-hd-sec {
        background-color: #efefef;
        text-align: center;
        font-size: 10px;
        padding:10px 0px;
    }

    .brd-r-pc {
        border-right:0px solid #ccc;
    }

    .brd-l-pc {
        border-left:0px solid #ccc;
    }

    .brd-t-pc {
        border-top:1px solid #ccc;
    }

    .brd-b-pc {
        border-bottom:1px solid #ccc;
    }
    
    .brd-r-pad {
        border-right:1px solid #ccc;
    }
    
    .nextyear .year-empt {
        display: none;
    }

    .nextyear .year {
        float: left;
        width: 70%;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        padding:10px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }
    
    .nextyear .percent {
        float: left;
        width: 30%;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        padding:10px;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .nextyear .year {
        background-color: bisque;
        border:1px solid #ccc;
    }
    .total {
        font-weight: bold;
        background-color: #E1E6F2;
        padding:0px 0px;
    }
    
    
}

@media only screen and (max-width: 600px) {
    .print_btn {
        text-align: center;
        padding: 20px 0 0;
    }
    .print-header {
        flex-direction: column;
        padding: 0;
    }
    .print-header .logo {
        width: 25%;
    }
    .print-header .print-title {
        line-height: 130%;
        padding: 15px 0;
    }
    .sales-status {
        background: #000;
        box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
        width:90%;
        border-top-left-radius: 40px;
        border-bottom-right-radius: 40px;
        display: inline-block;
        margin-left:5%;
        overflow: hidden;
        margin-top:-100px;
        margin-bottom:50px;
        min-width:300px;
    }
    
    .paper-head {
        padding:20px 10px 10px 10px;
        display: inline-block;
        width:100%;
    }
    .paper-head h1 {
        float: none;
        font-size: 18px;
        margin-bottom:20px;
        text-align: center;
        border-bottom:1px solid #333;
        padding-bottom:15px;
    }
    .paper-head .head-right {
        float: none;
    }
    
    .paper {
        background-color: #fff;
        width:100%;
        padding:0;
    }
    .order-btm#sec_input {padding-bottom:60px;}
    .btn-paper-toggle {position:relative;top:0;width:30px;height:30px;}
    .participation_order .paper-head {padding:20px 0 10px;}
    .participation_order .paper {padding:0;}
    .paper2 {
        background-color: #fff;
        width:100%;
        padding:20px;
        float: left;
    }
    
    .order-btm .steps {
        width:100%;
        border-radius: 16px;
        color:#000;
        box-shadow: 2px 2px 10px #ddd;
        overflow: hidden;
        position: relative;
        /* min-height:470px; */
        min-height:auto;
        min-width:inherit;
        padding-bottom:1rem;
        flex:1 1 auto;
    }
    
    .order-btm .steps-body {
        padding: 10px 20px;
        height:auto;
        max-height:auto;
    }
    .fl-l-pc{
        float: none;
    }
    .order-back {
        width:100%;
        height: 100%;
        min-height:auto;
        display: flex;
        justify-content: center;
        align-items: center;
        background-position:center center;
        background-size:auto 110vh;
        background-repeat:no-repeat;
        background-image: url('../images/global-bg-m.jpg');
    }
    .order-back-end {
        height: 45%;
        background-size:auto 100%;
    }

    @supports ( -webkit-touch-callout : none) {
        .order-back {
            background-attachment:scroll;
        }
    }

    @supports not ( -webkit-touch-callout : none) {
        .order-back {
            background-attachment: fixed;
        }
    }
    .order-btm {
        width:100%;
        position: relative;
        font-size: 16px;
        padding:0;
    }
    .order-box {border-radius: 0;box-shadow:none;padding:0 1rem 1rem;}
    
    .order-btm .steps-body2 {
        padding: 0px 20px;
        width:100%;
        display: inline-block;
    }
    
    .order-btm .steps2 {
        width:100%;
        color:#000;
        box-shadow: none;
        overflow: hidden;
        position: relative;
        padding:1rem;
        margin-bottom:0;
    }

    .steps2 .est-rslt-box {
        width:100% ;
        float:none; 
        padding:0px 0px;
    }
    
    .private-t {
        width:100%;
        margin-top:20px;
        padding:0;
        border:0px solid #ccc;
    }

    .add_btn button {
        margin:10px 0 0;
    }
    .private-t h1 {
        font-size: 18px;
    }

    .private-info {
        width:100%;
        height:150px;
        overflow: auto;
        padding:10px;
        border: 1px solid #8a8d8f;
        border-radius: 16px;
        color:#666;
        margin-top:15px;
    }
    .sign-btm {
        margin:26px 0 0;
        padding:0 0px 50px 0px;; 
        text-align:center;
    }
    
    .patners {
        width: 100%;
        display: inline-block;
        padding:20px 0px 20px 0px;
        position: relative;
    }
    
    .opt-info {
        float: none;
        width:100%;
        margin-left: 0%;
        margin-right: 0%;
        position: relative;
        font-size: 14px;
        display: inline-block;
        margin-bottom: 5px;
    }
    
    .chart {
        width:100%;
        border-top:2px solid #000;
        border-bottom:1px solid #000;
        display: inline-block;
        margin-top:0px;
    }

    .chart div {
        font-size: 14px;
    }
    
    .chart-list {
        width:100%;
        float: left;
        display: inline-block;
        line-height: 42px;
        font-family: 'Noto Sans KR', "Gotham SSm A", "Gotham SSm B",  sans-serif;
        border-bottom: 1px solid #ccc;
    }

    .chart-list .chart-item {
        float:left;
        width:50%;
        color:#666;
        text-align: left;
        padding-left:10px;
        font-size: 14px;
        letter-spacing: -0.05em;
    }

    .chart-list .chart-status {
        float:left;
        width:50%;
        text-align: right;
        padding-right:10px;
        font-size: 14px;
    }
    .chart.w14 > div > div {
        width:100%;
    }

    .chart.w16 > div > div {
        width:100%;
    }

    .brd-r-pc {
        border-right:0px solid #ccc;
        /* border-bottom: 1px solid #ccc; */
    }
    .sap4.brd-r-pc {
        /* border-right:0px solid #ccc; */
        border-bottom: 1px solid #ccc;
    }

    .brd-l-pc {
        border-left:0px solid #ccc;
    }

    .brd-t-pc {
        border-top:1px solid #ccc;
    }

    .brd-b-pc {
        border-bottom:1px solid #ccc;
    }
    
    .brd-r-pad {
        border-right:0px solid #ccc;
    }
    
    .t-header-pc {
        width:100%;
        display: none;
    }
    .t-head-mo{
        display: block;
        font-size: 14px;
        color:#666;
        text-align: left;
        float:left;
        width:65%;
        padding-left:10px;
        letter-spacing: -0.05em;
    }
    .t-body {
        width:100%;
        display: inline-block;
    }

    .t-body .t-body-sec {
        width:100%;
        padding:9px 0px;
        text-align: center;
        float: left;
        display: inline-block;
        padding-right:10px;
    }
    .t-body-status {
        width:35%;
        float:left;
        text-align: right;
    }

    .t-body .t-body-sec .big-cat {
        width:50%;
        float:left;
        color:#000;
    }

    .t-body .t-body-sec .small-cat {
        width:50%;
        float:left;
        color:#333;
    }
    
    .t-body-total {
        width:100%;
        text-align: center;
        float: none;
    }
    .bo-t-header-pc {
        display: none;
    }
    .nextyear .year-empt {
        display: none;
    }

    .nextyear .year {
        float: left;
        width: 70%;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        padding:10px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }
    
    .nextyear .percent {
        float: left;
        width: 30%;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        padding:10px;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .nextyear .year {
        background-color: bisque;
        border:1px solid #ccc;
    }

    .nextyear .percent {
        background-color: #DE1837;
        color:#fff;
        border:1px solid #9f0f0f;
        border-left: 0px;
    }
    .total {
        font-weight: bold;
        background-color: #E1E6F2;
        padding:8px 0px;
    }
    
    .top-sm {
        width:100%;
        background-image: url('../images/global-bg2.png');
        background-position: center center;
        background-size: cover;
        height: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .s-title {
        padding:10px 0px 10px 0px;
        border-bottom:0px solid #DE1837;
        font-size: 18px;
        font-family: 'Noto Sans KR', "Gotham SSm A", "Gotham SSm B",  sans-serif;
        font-weight: normal;
        color:#fff;
        display: inline-block;
        width:100%;
        background-color: #000;
        text-align: center;
        border-radius: 20px;
    }
    
    .info-send-pi {
        padding:20px 5px;
        width:100%;
        display: inline-block;
        font-size: 12px;
    }

    .info-send-pi .item {
        width:100%;
        float: left;
        margin-bottom:10px;
    }

    .info-send-pi .ctnt {
        width:100%;
        float: left;
        margin-bottom:10px;
    }
    
    .info-send-pi  input {
        font-size: 12px;
        border-radius: 12px;
        line-height: 20px;
        border:1px solid #8A8D8F;
        background-color:#fff;
        color:#000;
        text-align: center;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        outline: none;
        box-sizing: border-box;
        width:30%;
    }

    .info-send-pi  input:focus {
        border:1px solid #fff;
        background-color:#fff;
        color:#000;
        box-shadow: 0px 0px 20px #ccc;
    }

    .info-send-pi  select {
        font-size: 12px;
        border-radius: 12px;
        line-height: 20px;
        border:1px solid #8A8D8F;
        background-color:#fff;
        color:#000;
        text-align: center;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        outline: none;
        box-sizing: border-box;
        padding:4px;
        width:30%;
    }

    .info-send-pi select:focus {
        border:1px solid #fff;
        background-color:#fff;
        color:#000;
        box-shadow: 0px 0px 20px #ccc;
    }
    
    .mdcomment {
        width:100%;
        height:100px;
        padding:10px;
        font-size: 12px;
        color:#666;
        overflow: auto;
        margin-top:20px;
        border:1px solid #ccc;
        margin-bottom: 20px;
        text-align: left;
        border-bottom-right-radius: 0px;
        border-top:2px solid #333;
    }

    .branchs {
        width: 100%;
        display: inline-block;
        padding:20px 0px 20px 0px;
        position: relative;
    }

    .branchs-info {
        float: none;
        width:100%;
        margin-left: 0%;
        margin-right: 0%;
        position: relative;
        font-size: 14px;
        display: inline-block;
        margin-bottom: 5px;
    }
    .branchs-info .branchs-item {
        border-radius: 21px;
        border:1px solid #C1C1C1;
        background: #fff;
        color:#000;
        text-align: center;
        float: left;
        width:40%;
        z-index: 2;
        line-height: 40px;
        position: absolute;
        left:0px;
        height: 42px;
    }

    .branchs-info .branchs-status {
        border-radius: 21px;
        background: #8A8D8F;
        color:#fff;
        text-align: center;
        width:80%;
        z-index: 1;
        line-height: 42px;
        position: absolute;
        right:0px;
        top:0px;
        padding-left:15%;
        height: 42px;
    }

    .onlypc {
        display:none;
    }
    
    .order-rec .order-item {
        width:60%;
        text-align: center;
        float: left;
        line-height: 42px;
    }
    
    .order-rec .order-result {
        width:40%;
        text-align: center;
        float: left;
        line-height: 42px;
    }

    .order-rec .order-item {
        background-color: #fff;
        text-align: left;
        padding-left:10px;
    }
    
    .order-rec .order-result {
        text-align: right;
        padding-right:10px;
    }
    .brd-b-mo {
        border-bottom:1px solid #ccc;
    }
    
    .od-date-list {
        width:100%;
        display: inline-block;
        border-bottom: 1px solid #ccc;
    }
    
    .od-date-list h5 {
        display: block;
        font-size: 12px;
        color:#999;
        line-height: 0px;
        padding-top:6px;
    }
    
    .t-10-sec {
        width:50%;
        float:left;
        text-align: center;
        padding:6px 0px;
        border-bottom:1px dotted #ddd;
    }
    
    .ord-est-date {
        width:100%;
        display: inline-block;
        padding:10px 0px;
    }

    .ord-date-info {
        width:100%;
        position: relative;
        font-size: 14px;
        display: inline-block;
        float:left;
        height:42px;
    }
    
    .od-date-list .sec-5 {
        width:100%;
        text-align: center;
        display: inline-block;
        border-bottom:1px dotted #ddd;
        padding:10px 0px 4px 0px;
    }

    .od-date-list .sec-10 {
        width:50%;
        float: left;
    }
    
    .od-date-list-total {
        font-weight: bold;
        color: #DE1837;
        line-height: 36px;
        border-top:2px solid #666;
        display:inline-block;
        width:100%;
        background-color: #efefef;
    }
    
    .od-date-list-total .t-10-sec-total {
        width:100%;
        float:left;
        font-weight: bold;
        text-align: left;
        padding:6px 10px;
        font-size: 16px;
    }
    
    .od-date-list-total .t-10-sec {
        width:100%;
        text-align: right;
        padding:0px 10px;
    }
    
    .od-date-list-total .hide-tit {
        display: block;
        float:left;
        color:#333;
        font-size: 14px;
        font-weight: normal;
    }

    .center-ctnt2 .ctnt-body{
        padding-top: 10px;
    }
    #order-history > p{
        display: none;
    }
    .center-ctnt2{
        padding: 0 0 10px;
    }
    .status-tab{
        height: 82px;
    }
    .status-tab button{
        height: 100%;
    }

}















