.mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #000000;
    display: none;
}
.popup-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.popup-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
}
.popup-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.close-popup {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: white;
    color: black;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}
.no-popup-today {
    margin-top: 10px;
    text-align: center;
    color: white;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}

.side-popup-wrapper {
    display: none; /* 처음엔 안 보이도록 설정 */
    position: fixed;
    top: 110px;
    left: 0px;
    /*width: 300px;*/
    padding: 20px;
    border: 2px solid #ccc;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
}

.side-popup-content img {
    width: 100%;
    border-radius: 5px;
}

.close-side-popup {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: red;
    color: white;
    border: none;
    padding: 5px 8px;
    cursor: pointer;
    border-radius: 4px;
}
#no-popup-today {
    display: inline-block;
    float: right;
    text-align: center;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #f0f0f0; /* 부드러운 회색 배경 */
    color: #333; /* 어두운 회색 텍스트 */
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#no-popup-today:hover {
    background-color: #d6d6d6; /* 호버 시 약간 진한 회색 */
    transform: translateY(-2px); /* 살짝 위로 올라가는 효과 */
    /*transform: scale(1.05);  살짝 확대되는 효과 */
}
.agree_modal {
    display: none;
    background-color: #ffffff;
    width: 1100px;
    height: 60%;
    z-index: 1001;
    overflow-x: hidden;
    overflow-y: scroll;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    line-height: 30px;
}
.agree_modal_content{
    padding: 30px;
}
.layer_submit {
    width: 1100px;
    height: 50px;
    font-size: 30px;
    bottom: 0;
    position: absolute;
    background-color: #FFFFFF;
    text-align: center;
    padding: 20px;
}
.agree_button {
    padding: 15px 20px;
    background-color: #42baf6;
    border: 0;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
}
.cscenter_bubble {
	display: none;
    position: fixed;
    text-align: center;
    bottom: 30px;
    left: 0;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 10px;
    background-color: #00adef;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    line-height: 22px;
}
.cscenter_bubble::after {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: 5%;
    border-style: solid;
    border-width: 30px 30px 0 0;
    border-color: #00adef transparent transparent transparent;
}
.cscenter_bubble img{
	width: 30px;
}
.messenger_bubble {
    display: none;
    position: fixed;
    text-align: center;
    bottom: 65px;
    right: 0;
}
.messenger_bubble img{
    width: 70px;
}
#back-to-top {
  display: inline-block;
  background-color: #FF9800;
  width: 70px;
  height: 55px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 0;
  right: 0;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  font-size: 35px;
  padding-top: 15px;
}
#back-to-top::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#back-to-top:active {
  background-color: #555;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.Footer_wrap {width:100%; padding:25px 0; text-align:center; background-color: #EEEEEE;}
.Footer_wrap p {font-style: normal; font-size:13px; color:#666; line-height:40px; font-weight: 600;}
.Footer_wrap address {font-style: normal; font-size:13px; color:#666; line-height:20px;}
.Footer_wrap .copy {display:block; padding-top:5px; font-size:11px, font-weight:bold; color:#999;}


