@charset "utf-8";
/*
 * 스킨 공통 및 수정 CSS 파일
 * 작성일: 2025년 3월 21일
 * 이 파일은 모든 CSS 스타일을 수정하는 데 사용됩니다.
 * daontheme_pro12/head.sub.php 연결
 * <link href="<?php echo G5_THEME_URL;?>/css/common.css" rel="stylesheet" type="text/css">
 */

/* 폰트 */
@font-face {
  font-family: 'SBAggroB';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroB.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* xeicon 사용 */
[class^='xi-'] {
  font-family: xeicon;
}

/* 안보이게 */
/* .btn_bo_user a.btn_b01, .btn_b01 {display: none !important;} */
#sub_wrapper .scontents p::after {
  display: none !important;
}
#sub_wrapper .scontents .bg_vline {
  display: none !important;
}

/* 공통 사용 추가 class */

/* title */
.page_sub_title {
  padding-bottom: 16px;
  font-size: 26px;
  font-weight: bold;
  color: #4898ff;
}
/* align */
.flex_center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex_start {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.flex_space_between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex_space_around {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.flex_column {
  flex-direction: column;
}
/* box_shadow */
.box_shadow_basic {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

/* background */
.background_opacity_50 {
  background-color: rgba(255, 255, 255, 0.5);
}

/* border */
.border_radius {
  border-radius: 20px;
}

/* button */
.btn_group_box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_group_box a:nth-of-type(1),
.btn_group_box button:nth-of-type(1) {
  background-color: #fff;
}
.btn_group_box a:nth-of-type(2),
.btn_group_box button:nth-of-type(2) {
  background-color: #111;
  color: #fff;
}

.btn_group_box a:nth-of-type(1):hover,
.btn_group_box button:nth-of-type(1):hover {
  background-color: #eee;
}
.btn_group_box a:nth-of-type(2):hover,
.btn_group_box button:nth-of-type(2):hover {
  background-color: #333;
  color: #fff;
}

@media all and (max-width: 1100px) {
  .page_sub_title {
    font-size: 22px;
  }
  .border_radius {
    border-radius: 16px;
  }
}

@media all and (max-width: 768px) {
  .page_sub_title {
    font-size: 18px;
  }
  .border_radius {
    border-radius: 12px;
  }
}
