/* 로딩 */
.wrap-loading{ /*화면 전체를 어둡게 합니다.*/
    position: fixed;
    z-index: 2080;
    left:0;
    right:0;
    top:0;
    bottom:0;
    /*background: rgba(0,0,0,0.2); !*not in ie *!*/
    filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr='#20000000', endColorstr='#20000000');    /* ie */
}

.wrap-loading div{ /*로딩 이미지*/
    position: fixed;
    top:50%;
    left:50%;
    margin-left: -21px;
    margin-top: -21px;
}

/* 로딩 */
.wrap-loading1{ /*화면 전체를 어둡게 합니다.*/
    position: fixed;
    z-index: 2000;
    left:0;
    right:0;
    top:0;
    bottom:0;
    /*background: rgba(0,0,0,0.2); !*not in ie *!*/
    filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr='#20000000', endColorstr='#20000000');    /* ie */
}

.wrap-loading1 div{ /*로딩 이미지*/
    position: fixed;
    top:50%;
    left:50%;
    margin-left: -21px;
    margin-top: -21px;
}


/* 로딩2 */
.wrap-loading2{ /*화면 전체를 어둡게 합니다.*/
    position: fixed;
    z-index: 32;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background: rgba(0,0,0,0.2); /*not in ie */
    filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr='#20000000', endColorstr='#20000000');    /* ie */
}

.wrap-loading2 div{ /*로딩 이미지*/
    position: fixed;
    top:50%;
    left:50%;
    margin-left: -21px;
    margin-top: -21px;
}

.display-none{ /*감추기*/
    display:none;
}


.down_menu {
    background-color: var(--dark-color);
    /*background-color: #14c1c1;*/
    padding: 10px;
    position: fixed;
    width: 100%;
    height: 60px;
    bottom: 0;
    left: 0;
    z-index: 1100;
    /*display: table;*/
    /*table-layout: fixed;*/
}

.down_menu-details ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    /*display: table-cell;*/
    display: flex;
    justify-content: space-around;
}

.down_menu-details ul li {
    display: inline-block;
    margin-right: 10px;
}

.down_menu-details ul li a {
    color: #333;
    text-decoration: none;
}


/*공통 버튼*/
.common-button {
    width: 50%;
    background-color: #14c1c1;
    /*color: #FFFFFF;*/

    /*box-shadow: 0px 0px #74a3b0;*/

    /*display: block;*/
    /*position: relative;*/
    /*float: left;*/
    padding: 0;
    margin: 10px 20px 10px 0;
    font-weight: 600;
    text-align: center;
    line-height: 40px;
    color: #FFF;
    /*border-radius: 0px;*/
    border: none;
    transition: all 0.2s ;
}

/*플로팅 버튼*/
.floating-button {
    display: flex;
    position: fixed;
    right: 10%;
    bottom: 80px;
    z-index: 999;
}

/*플로팅 버튼*/
.floating-button_biz {
    display: flex;
    position: fixed;
    right: 11%;
    bottom: 50%;
    z-index: 1005;
}

/*친구 추가 플로팅 버튼*/
.profile-floating-button {
    display: flex;
    position: fixed;
    right: 30px;
    top: 225px;
    z-index: 999;
}

/*플로팅 버튼 아이콘 공용 스타일*/
.guest-btn::before {
    width: 100%;
    height: 100%;
    opacity: 1;
    border-radius: 50%;
    font-size: 1.15em;
    font-family: 'Font Awesome 5 Pro';
    /*플로팅 버튼 아이콘 색상 수정O*/
    color: #b67700;
}

/*플로팅 버튼 스타일*/
.move-guestBook {
    float: left;
    display: flex;
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    /*사용자 설정 파트*/
    font-weight: 700;
    background-color: #00000000;
    border: 2px solid #b67700;
}

/*프로필 사진*/
.box {
    width: 45px;
    height: 45px;
    border-radius: 70%;
    overflow: hidden;
}
.profile {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*라디오 버튼*/
.radio-container {
    display: inline-block;
    position: relative;
    margin-right: 20px;
}

.hidden-radio {
    display: none;
}

.radio-container img {
    width: 20px; /* 이미지 크기 조절 */
    height: 20px;
    cursor: pointer;
}

.radio-container input[type="radio"]:checked + img {
    border: 2px solid #cccccc; /* 선택된 상태에 대한 스타일 설정 */
    /* 추가적인 스타일링 가능 */
}

.circular-crop {
    width: 100px; /* 원하는 너비 조절 */
    height: 100px; /* 원하는 높이 조절 */
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}

.rate{background: url(/static/images/star_bg02.png) no-repeat;width: 121px;height: 20px;position: relative;}
.rate span{position: absolute;background: url(/static/images/star02.png); width: auto; height: 20px;}

.popup-menu {
    /* 팝업 메뉴 스타일 설정 */
}

.popup-menu .dot {
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 50%;
    margin: 5px auto;
}

.upmenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 50px;
    padding: 1rem;
    color: white;
    background: white;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 900;
}

.tooltip-inner{white-space: pre-wrap; text-align: left;}

@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.heartbeat {
    animation: heartbeat 1s infinite;
}


/*.tab-menu {*/
/*    list-style: none;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    border-bottom: 1px solid #ccc;*/
/*    font-size: 12px;*/
/*}*/

/*.tab-menu li {*/
/*    flex: 1;*/
/*    text-align: center;*/
/*    margin: 0;*/
/*}*/

/*.tab-menu li a {*/
/*    display: block;*/
/*    padding: 10px;*/
/*    color: #333;*/
/*    text-decoration: none;*/
/*}*/

/*.tab-menu li.active a {*/
/*    background-color: #ccc;*/
/*    color: #fff;*/
/*}*/

/*.tab-content {*/
/*    display: none;*/
/*    font-size: 12px;*/
/*    color: #333333;*/
/*    margin-top: 10px;*/
/*    margin-left: 10px;*/
/*}*/

/*.tab-content.active {*/
/*    display: block;*/
/*    font-size: 12px;*/
/*    color: #333333;*/
/*    margin-top: 10px;*/
/*    margin-left: 10px;*/
/*}*/


/*팝업 레이어*/

.pop-layer {
    display: none;
    position: fixed;
    top: 40%;
    left: 50%;
    width: 95%;
    height: 70%;
    background-color: #fff;
    border: 1px solid #ff69b4;
    z-index: 10;
    overflow: auto;
}

.pop-layer .pop-container {
    padding: 5px 10px;
    width: 100%;
    height: 100%;
}

.pop-layer .pop-container .pop-conts{
    width: 100%;
    height: 90%;
}

.pop-layer p.ctxt {
    color: #666;
    line-height: 25px;
}

.pop-layer .btn-r {
    width: 100%;
    margin: 10px 0 20px;
    padding-top: 10px;
    border-top: 1px solid #DDD;
    text-align: right;
}

.pop-layer .btn-l {
    width: 100%;
    margin: 10px 0 20px;
    padding-top: 10px;
    border-top: 1px solid #DDD;
    text-align: left;
}

/*팝업 레이어2*/

.pop-layer2 {
    display: none;
    position: fixed;
    top: 35%;
    left: 50%;
    width: 380px;
    height: 390px;
    background-color: #fff;
    border: 0px;
    z-index: 10;
    overflow: auto;
}

.pop-layer2 .pop-container {
    padding: 5px 10px;
    width: 100%;
    height: 100%;
}

.pop-layer2 .pop-container .pop-conts{
    width: 100%;
    height: 90%;
}

.pop-layer2 p.ctxt {
    color: #666;
    line-height: 25px;
}

.pop-layer2 .btn-r {
    width: 100%;
    margin: 10px 0 20px;
    padding-top: 10px;
    /*border-top: 1px solid #DDD;*/
    text-align: right;
}

.pop-layer2 .btn-l {
    width: 100%;
    margin: 10px 0 20px;
    padding-top: 10px;
    border-top: 1px solid #DDD;
    text-align: left;
}

a.btn-layerClose2 {
    display: inline-block;
    height: 20px;
    padding: 0 14px 0;
    border: 1px solid #ff69b4;
    background-color: #ff69b4;
    font-size: 13px;
    color: #fff;
    line-height: 25px;
}

a.btn-layerClose2:hover {
    border: 1px solid #091940;
    background-color: #1f326a;
    color: #fff;
}


/*팝업 레이어3 전체 창*/

.pop-layer3 {
    display: none;
    position: fixed;
    top: 40%;
    left: 50%;
    width: 100%;
    height: 80%;
    background-color: #fff;
    border: 0px;
    z-index: 10;
    overflow: auto;
}

.pop-layer3 .pop-container {
    padding: 5px 10px;
    width: 100%;
    height: 100%;
}

.pop-layer3 .pop-container .pop-conts{
    width: 100%;
    height: 90%;
}

.pop-layer3 p.ctxt {
    color: #666;
    line-height: 25px;
}

.pop-layer3 .btn-r {
    width: 100%;
    margin: 10px 0 20px;
    padding-top: 10px;
    /*border-top: 1px solid #DDD;*/
    text-align: right;
}

.pop-layer3 .btn-l {
    width: 100%;
    margin: 10px 0 20px;
    padding-top: 10px;
    border-top: 1px solid #DDD;
    text-align: left;
}

a.btn-layerClose {
    display: inline-block;
    height: 25px;
    padding: 0 14px 0;
    border: 1px solid #ff69b4;
    background-color: #ff69b4;
    font-size: 13px;
    color: #fff;
    line-height: 25px;
}

a.btn-layerClose:hover {
    border: 1px solid #091940;
    background-color: #1f326a;
    color: #fff;
}

/* */
.dim-layer {
    display: none;
    position: fixed;
    _position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.dim-layer .dimBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    filter: alpha(opacity=50);
}

.dim-layer .pop-layer {
    display: block;
}

a.btn-layerClose {
    display: inline-block;
    height: 25px;
    padding: 0 14px 0;
    border: 1px solid #ff69b4;
    background-color: #ff69b4;
    font-size: 13px;
    color: #fff;
    line-height: 25px;
}

a.btn-layerClose:hover {
    border: 1px solid #091940;
    background-color: #1f326a;
    color: #fff;
}

/*내 위치 버튼*/
.image-toggle {
    cursor: pointer;
}

/* 오늘 하루 다시 보지 않기 */
/* CSS */
.contents {margin:0 auto; max-width:800px;}
.contents .title {margin:10px 0; font-size:25px; font-weight:600; text-align:center;}
.contents p {line-height:20px; font-size:14px;}

.layerPopup {display:none;}
.layerPopup:before {display:block; content:""; position:fixed; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,.5);}
.layerPopup .layerBox {position:fixed; left:50%; top:50%; transform:translate(-50%, -50%); padding:30px; background:#fff; border-radius:6px;}
.layerPopup .layerBox .title {margin-bottom:10px; padding-bottom:10px; font-weight:600; border-bottom:1px solid #d9d9d9;}
.layerPopup .layerBox .cont {margin-bottom:40px;}
.layerPopup .layerBox p {line-height:20px; font-size:13px;}
.layerPopup .layerBox .btnClose {display:inline-block; position:absolute; right:30px; top:25px; padding:6px 12px; color:#444; font-size:12px; text-decoration:underline;}
.layerPopup .layerBox .btnTodayHide {font-size:13px; font-weight:600; text-decoration:underline;}


.control-container {
    display: flex;
    position: relative;
}
.control-container + .control-container {
    margin-top: 0.7em;
}
.screen-reader { /* 스크린 리더를 고려해서 체크박스를 화면에서 숨김 */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    margin: -1px;
    clip-path: inset(50%);
}
.label-box {
    position: relative;
}
.check-icon {
    width: 1.4em;
    height: 1.4em;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid gray;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.check-icon::before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    width: 30%;
    height: 55%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-70%) rotateZ(40deg);
    border-right: 1.7px solid gray;
    border-bottom: 1.7px solid gray;
}
label {
    padding-left: 2.2em;
    position: relative;
    cursor: pointer;
}
[type="checkbox"]:checked + .label-box .check-icon {
    border-color:  yellowgreen;
    background-color: yellowgreen;
}
[type="checkbox"]:checked + .label-box .check-icon::before {
    border-color: #fff;
}

.video-wrapper {
    position: relative;
}

.copy-video-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 20;
    opacity: 0.85;
}

.copy-video-btn:hover {
    opacity: 1;
}
