/*====================
1. Google fonts
======================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
/*====================
2. Theme variables
======================*/ :root {
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Inter', sans-serif;
  --theme-color: #FE7084;
  --theme-color2: #ab6df9;
  --theme-color-light: rgba(88, 151, 251, .08);
  --theme-bg-light: #FFEBED;
  --theme-top-bg: #E5180A;
  --product-bg: #F2FAFE;
  --body-text-color: #333;
  --color-white: #ffffff;
  --color-dark: #333;
  --color-green: #15D4C9;
  --color-blue: #4D86D6;
  --color-skyblue: #4D86D6;
  --color-yellow: #FBA707;
  --color-darkgray: #666;
  --color-gray: #ECECEC;
  --color-red: #E5180A;
  --color-sky-500: rgb(0 166 244);
  --color-sky-600: rgb(0 132 209);
  --color-green-500: oklch(.723 .219 149.579);
  --color-green-600: oklch(.627 .194 149.214);
  --hero-overlay-color: #01060F;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.1);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.12);
  --border-white-color2: rgba(255, 255, 255, 0.07);
  --footer-bg: #222934;
  --footer-text-color: #F5FAFF;
  --text-11: .6875rem;
  --text-13: .8125rem;
  --text-14: .875rem;
  --text-15: .9375rem;
  --text-16: 1rem;
  --text-17: 1.0625rem;
  --text-xs: .75rem;
  --text-xs--line-height: calc(1/.75);
  --text-sm: .875rem;
  --text-sm--line-height: calc(1.25/.875);
  --text-base: .9063rem;
  --text-base--line-height: 1.5;
  --text-lg: 1.125rem;
  --text-lg--line-height: calc(1.75/1.125);
  --text-xl: 1.25rem;
  --text-xl--line-height: calc(1.75/1.25);
  --text-2xl: 1.5rem;
  --text-2xl--line-height: calc(2/1.5);
  --text-3xl: 1.875rem;
  --text-3xl--line-height: 1.2;
  --spacing: .25rem;
  --color-orange-400: oklch(.75 .183 55.934);
  --color-orange-500: #f76030;
  --color-orange-600: #E85223;
  --color-orange-700: oklch(.553 .195 38.402);
  --color-gray-300: oklch(.872 .01 258.338);
  --color-gray-400: oklch(.707 .022 261.325);
  --color-gray-500: oklch(.551 .027 264.364);
  --color-gray-600: oklch(.446 .03 256.802);
  --color-gray-700: oklch(.373 .034 259.733);
  --color-gray-800: oklch(.278 .033 256.848);
  --color-gray-900: oklch(.21 .034 264.665);
  --color-gray-950: oklch(.13 .028 261.692);
}
/*====================
3. General css
======================*/
*, *:before, *:after {
  box-sizing: inherit;
}
* {
  scroll-behavior: inherit !important;
}
html, body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  /*  font-family: var(--body-font);*/
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
}
a {
  color: var(--color-dark);
  display: inline-block;
}
a, a:active, a:focus, a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}
a:hover {
  color: var(--color-blue);
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--color-dark);
  margin: 0px;
  font-weight: 600;
  font-family: var(--heading-font);
  line-height: 1.2;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 35px;
}
h3 {
  font-size: 26px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 16px;
}
p {
  margin: 0px;
}
.picture img{
	max-width: 120px
}

.img, img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}
label {
  color: #333;
  /*  cursor: pointer;*/
  font-weight: 400;
  padding-left: 5px
}
.form-check1 label{
	  color: #000;
  /*  cursor: pointer;*/
  font-weight: 500;
  padding-left: 5px
}



*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}
::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}
::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}
*::-moz-placeholder {
  color: #999;
  font-size: 15px;
  opacity: 1;
}
*::placeholder {
  color: #999;
  ;
  font-size: 15px;
  opacity: 1;
}
textarea.textareast {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
  padding: 5px;
  background: #fff;
}
textarea {
  border: 1px solid #d5d5d5;
  padding: 10px 15px;
  border-radius: 2px;
  outline-color: #FE6B8B;
  margin-bottom:-8px;
}
textarea:focus {
  border: 1px solid red
}
/*===================
5. Theme default css
======================*/
.ovrflow-hidden {
  overflow: hidden;
}
.position-relative {
  position: relative;
  z-index: 1;
}
.text-right {
  text-align: right;
}
.text-red, .table-01 td.text-red {
  color: #E5180A !important
}
.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-pd {
  padding: 0 7rem;
}
.s-pd {
  padding: 0 12rem;
}
.h-100 {
  height: 100%;
}
.h-100vh {
  height: 100vh;
}
.bg {
  background: #FAFAFA;
}
/*====================
6. Margin & padding
======================*/
.py-120 {
  padding: 120px 0;
}
.py-110 {
  padding: 110px 0;
}
.py-100 {
  padding: 100px 0;
}
.py-90 {
  padding: 90px 0;
}
.py-80 {
  padding: 80px 0;
}
.py-60 {
  padding: 60px 0;
}
.py-50 {
  padding: 50px 0;
}
.py-30 {
  padding: 30px 0;
}
.px-0 {
  padding: 0
}
.pt-0 {
  padding-top: 0px;
}
.pt-10 {
  padding-top: 10px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-60 {
  padding-top: 60px;
}
.pt-70 {
  padding-top: 70px;
}
.pt-80 {
  padding-top: 80px;
}
.pt-90 {
  padding-top: 90px;
}
.pt-100 {
  padding-top: 100px;
}
.pt-110 {
  padding-top: 110px;
}
.pt-120 {
  padding-top: 120px;
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pb-90 {
  padding-bottom: 90px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-110 {
  padding-bottom: 110px;
}
.pb-120 {
  padding-bottom: 120px;
}
.mt-0 {
  margin-top: 0px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-90 {
  margin-top: 90px;
}
.mt-100 {
  margin-top: 100px;
}
.mt-120 {
  margin-top: 120px;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-100 {
  margin-bottom: 100px;
}
.my-10 {
  margin: 10px 0;
}
.my-20 {
  margin: 20px 0;
}
.my-30 {
  margin: 30px 0;
}
.my-50 {
  margin: 50px 0;
}
.my-120 {
  margin: 120px 0;
}
.my-110 {
  margin: 110px 0;
}
.my-100 {
  margin: 100px 0;
}
.my-90 {
  margin: 90px 0;
}
.my-80 {
  margin: 80px 0;
}
/*====================
7. Site title css
======================*/
.site-heading {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--theme-color);
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
}
.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 25px;
  color: var(--color-dark);
  margin-top: 4px;
}
.site-title span {
  color: var(--color-red);
}
.site-heading p {
  margin-top: 15px;
}
.site-heading-inline {
  display: flex;
  align-items: center;
  /*  justify-content: space-between;*/
  margin-bottom: 0px;
}
.site-heading-inline .site-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  position: relative;
  z-index: 1;
}
/*
.site-heading-inline .site-title::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background: var(--theme-bg-light);
  border-radius: 0 50px 50px 0;
  width: 80%;
  height: 100%;
  z-index: -1;
}
*/
.site-heading-inline .site-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 43%;
  border-bottom: 3px solid var(--color-red);
  z-index: -1;
}
.site-heading-inline .site-title img {
  width: 32px;
}
.site-heading-inline a {
  font-weight: 500;
  color: var(--body-text-color);
}
.site-heading-inline a:hover {
  color: var(--theme-color);
}
@media all and (max-width: 767px) {
  .site-heading-inline .site-title {
    font-size: 19px;
  }
  .site-heading-inline .site-title img {
    width: 25px;
  }
}
/*====================
8. Theme button
======================*/
.contents_box .btn {
  cursor: pointer;
  border-radius: 4px;
  border-style: var(--tw-border-style);
  padding: 0px 10px;
  font-size: 14px;
  border-width: 1px;
  border-color: #000;
  padding-block: .2625rem;
  transition-duration: .2s;
  transition-timing-function: linear;
  display: inline-block;
  font-weight: 400;
}
.btn2 {
  cursor: pointer;
  border-radius: 4px;
  padding: 2px 4x;
  font-size: 14px;
  border: 1px solid #ccc;
  padding-block: .2625rem;
  transition-duration: .2s;
  transition-timing-function: linear;
  display: inline-block;
  font-weight: 400;
}
.btn2:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color)
}
.btn-blue {
  border-color: var(--color-sky-500);
  background-color: var(--color-sky-500);
  color: var(--color-white) !important;
}
.btn-blue:hover, .btn-blue:focus {
  border-color: var(--color-sky-600) !important;
  background-color: var(--color-sky-600) !important;
  color: var(--color-white) !important;
}
.btn-blue:active {
  background: var(--color-sky-600)
}

.btn-orange {
    border-color: var(--color-orange-500);
    background-color: var(--color-orange-500);
    color: var(--color-white) !important;
}
.btn-orange:hover,.btn-orange:focus {
    border-color: var(--color-orange-600) !important;
    background-color: var(--color-orange-600) !important;
    color: var(--color-white) !important;
}
.btn-orange:active{background: var(--color-orange-600)}

.btn-gray {
    border-color: var(--color-gray-600);
    background-color: var(--color-gray-600);
    color: var(--color-white) !important;
}

.btn-gray:hover, .btn-gray:focus{
     border-color: var(--color-gray-700) !important;
    background-color: var(--color-gray-700) !important;
    color: var(--color-white) !important;
}
.btn-gray:active{background: var(--color-gray-700)}

.btn-light_gray{
       border-color: var(--color-gray-400);
    background-color: var(--color-gray-400);
    color: var(--color-white) !important; 
}
.btn-light_gray:hover{
     border-color: var(--color-gray-500) !important;
    background-color: var(--color-gray-500) !important;
    color: var(--color-white) !important;
}
.btn-white {
  background-color: #fff;
  border:1px solid #999 !important;
  color: #222 !important;
}
.btn-white:hover, .btn-white:focus {
  background-color: #999;
  color: #fff !important;
  border:1px solid #999
}
.btn-white:active {
  background: #999;
  border:1px solid #999;
  color: #fff !important;
}





.contents_box .btn-light_gray:active {
  background: var(--color-gray-500)
}
.btn-green {
  border-color: var(--color-green-500) !important;
  background-color: var(--color-green-500) !important;
  color: var(--color-white) !important;
}
.btn-green:hover, .btn-green:focus {
  border-color: var(--color-green-600) !important;
  background-color: var(--color-green-600) !important;
  color: var(--color-white) !important;
}
.btn-green:active {
  background: var(--color-green-600)
}
.theme-btn {
  position: relative;
  font-size: 16px;
  background: var(--color-orange-500);
  color: var(--color-white);
  padding: 10px 20px;
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
}
.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--color-dark);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
.theme-btn:hover {
  color: var(--color-white);
}
.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}
.theme-btn i {
  margin-left: 5px;
}
.theme-btn span {
  margin-right: 5px;
}
.theme-btn2 {
  font-size: 15px;
  padding: 8px 14px;
  color: var(--color-white);
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
  line-height: 1.35;
  white-space:nowrap
}
.theme-btn3 {
  font-size: 14px;
  padding: 6px 16px;
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
  line-height: 1.35;
  white-space:nowrap
}
.theme-btn4 {
  font-size: 14px;
  padding: 3px 8px;
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
  line-height: 1.35;
  white-space:nowrap
}
.theme-btn5 {
  font-size: 17px;
  padding: 7px 15px;
  color: var(--color-white);
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
  5;
  line-height: 1.353;
  /*  margin-top:-1.5px*/
}
.btn_color1 {
  background: #50B1B1
}
.btn_color1:hover {
  color: var(--color-white);
  background: #339191;
}
.btn_color2 {
  background: #376af7;
  color: var(--color-white);
}
.btn_color2:hover {
  background: #1f51db;
  color: var(--color-white);
}
.btn_color3 {
  background: #489028;
  color: var(--color-white);
}
.btn_color3:hover {
  background: #38771c;
  color: var(--color-white);
}
.btn_color4 {
  background-color: var(--color-orange-500);
  color: #fff;
}
.btn_color4:hover {
  background-color: var(--color-orange-600);
  color: var(--color-white);
}
.btn_color5 {
  background: #fff;
  border: 1px solid #ccc;
  color: #111;
}
.btn_color5:hover {
  background: #333;
  border: 1px solid #333;
  color: #fff;
}
.btn_color6 {
  background-color: var(--color-gray-600);
  color: #fff;
}
.btn_color6:hover {
  background-color: var(--color-gray-700);
  color: var(--color-white);
}
.btn_color7 {
  background-color: var(--color-gray-400);
  color: #fff;
}
.btn_color7:hover {
  background-color: var(--color-gray-500);
  color: var(--color-white);
}
.btn_color8 {
  background-color: #131A6D;
  color: #fff;
}
.btn_color8:hover {
  background-color: #000;
  color: var(--color-white);
}
.btn_color9 {
  background-color: #3399E7;
  color: #fff;
}
.btn_color9:hover {
  background-color: #2385D1;
  color: var(--color-white);
}
.btn_color10 {
  background-color: #F76030;
  color: #fff;
}
.btn_color10:hover {
  background-color: #eb3629;
  color: var(--color-white);
}
/*  Ã«Â²â€žÃ­Å Â¼ Ã­ÂÂ¬ÃªÂ¸Â° */
.btn.btn-xs {
  padding-inline: calc(var(--spacing) * 1.5);
  padding-block: calc(var(--spacing) * 1);
  font-size: var(--text-11);
}
.btn.btn-sm {
  padding-inline: calc(var(--spacing) * 2.2);
  padding-block: calc(var(--spacing) * 1.3);
  font-size: var(--text-14);
  line-height: 1.35;
  min-width:60px
}
.btn.btn-md {
  padding-inline: calc(var(--spacing) * 4);
  padding-block: calc(var(--spacing) * 2);
  font-size: var(--text-16);
}
/*====================
9. Scroll top css
======================*/
#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--color-white);
  background-color: var(--color-red);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--box-shadow2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
#scroll-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top.active {
    bottom: 100px;
  }
}
/*====================
10. Header top css
======================*/
.header-top {
  position: relative;
  padding: 6px 0;
  background: var(--theme-top-bg);
  /*  border-bottom:2px solid red*/
}
.header-top-left p {
  padding-top: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 300
}
.header-top-list li {
  display: inline-block;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0px 8px;
}
.header-top-list li img {
  max-height: 20px;
}
.header-top-list li:last-child {
  border-right: none;
  padding-right: 0;
}
.header-top-list li:first-child {
  padding-left: 0;
}
.header-top-list li a {
  color: rgba(255, 255, 255, 0.6);
  ;
  font-size: 14px;
}
.header-top-list li a:hover {
  color: var(--color-white);
}
.header-top-list li i {
  color: var(--theme-color);
  margin-right: 5px;
}
/*
.header-top-list li:first-child a {
  font-size: 17px;
  color: #fff;
  font-weight: 500
}
*/
.header-top-list li:first-child span {
  font-size: 14px;
  padding-left: 4px;
  font-weight: 300
}
/*로그인 칼라2*/
.header-top-list2 li {
  display: inline-block;
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 400;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 8px;
  margin-bottom: 5px
}
.header-top-list2 li img {
  max-height: 20px;
  filter: invert(40%);
  padding-right: 5px
}
.header-top-list2 li:last-child {
  border-right: none;
  padding-right: 0;
}
.header-top-list2 li:first-child {
  padding-left: 0;
}
.header-top-list2 li a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}
.header-top-list2 li a:hover {
  color: var(--color-dark);
}
.header-top-list2 li i {
  color: var(--theme-color);
  margin-right: 5px;
}
.header-top-list2 li:first-child a {
  font-size: 17px;
  color: #000;
  font-weight: 500
}
.header-top-list2 li:first-child span {
  font-size: 14px;
  padding-left: 4px;
  font-weight: 300
}



/*로그인*/

.header-top-list li {
  display: inline-block;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px 8px;
  margin-bottom: 5px
}
.header-top-list li img {
  max-height: 20px;
  filter: invert(40%);
  padding-right: 5px
}
.header-top-list li:last-child {
  border-right: none;
  padding-right: 0;
}
.header-top-list li:first-child {
  padding-left: 0;
}
.header-top-list li a {
  color: #555;
  font-size: 14px;
}
.header-top-list li a:hover {
  color: var(--color-dark);
}
.header-top-list li i {
  color: var(--theme-color);
  margin-right: 5px;
}

.header-top-list li:first-child span {
  font-size: 14px;
  padding-left: 4px;
  font-weight: 300
}











.header-top-right {
  float: right;
}
.header-top-right .dropdown-menu {
  border: none;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  padding: 10px;
  min-width: 80px;
}
.header-top-right .dropdown-item {
  color: var(--color-dark);
  border-radius: 10px;
  text-align: center;
}
.header-top-right .dropdown-item:hover {
  background: var(--theme-color);
  color: var(--color-white);
}
.header-top-social a {
  margin-left: 8px;
}
.header-top-social a img {
  max-width: 20px;
}
.header-top-social span {
  color: var(--color-dark);
}
.header-top-list li .header-top-social a i {
  margin-right: 0;
  transition: var(--transition);
}
.header-top-social a:hover i {
  color: var(--color-dark);
}
@media all and (max-width: 991px) {
  .header-top-list li {
    border-right: none;
  }
  .header-top-left .header-top-list li.help {
    display: none;
  }
  .header-top-right .header-top-list li {
    padding-right: 0px;
  }
  .header-top .dropdown-toggle::after {
    float: unset;
  }
  .header-top-social span {
    display: none;
  }
}
@media all and (max-width: 767px) {
  .header-top {
    text-align: center;
  }
  .header-top-right {
    float: unset;
  }
  .header-top-social {
    display: none;
  }
}
/*====================
11. Navbar css
======================*/
.navbar {
  background: transparent;
  padding-top: 0px;
  padding-bottom: 0px;
  border-bottom: 1px solid var(--border-info-color);
  z-index: 2;
}
.navbar.fixed-top {
  background: var(--color-white);
  box-shadow: var(--box-shadow2);
  animation: slide-down 0.7s;
}
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.navbar .navbar-brand .logo-display {
  display: block;
}
.navbar .navbar-brand .logo-scrolled {
  display: none;
}
.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}
.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}
.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler-mobile-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}
.navbar-brand {
  margin-right: 0;
}
.navbar-brand img {
  width: 225px;
}
@media all and (max-width: 1198px) {
  .navbar-brand img {
    width: 210px;
  }
}
.home-icon img {
  width: 26px;
  height: auto
}
.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Pro';
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}
@media all and (min-width: 992px) and (max-width: 1199px) {
  .navbar-brand img {
    width: 180px;
  }
}
@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 25px;
    padding: 28px 0 28px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: capitalize;
  }
  .navbar .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }
  .navbar.fixed-top .nav-item .nav-link {
    color: var(--color-dark);
    padding: 22px 0 22px 0;
  }
  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    border: none;
    left: -15px;
    border-radius: 8px;
    background: #fff;
    min-width: 200px;
    padding: 0px 15px;
    box-shadow: var(--box-shadow);
    line-height: 1.4;
  }
  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    transition: var(--transition);
    padding: 8px 15px;
    text-wrap: auto;
    background: url("../img/icon/dot.jpg") no-repeat left center;
    letter-spacing: 0.3px
  }
  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--color-orange-500);
    background: url("../img/icon/dot.jpg") no-repeat left center;
    /*    padding-left: 18px;*/
  }
  /*
  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "\f111";
    position: absolute;
    font-family: "Font Awesome 6 pro";
    left: 8px;
    top: 13px;
    color: var(--color-yellow);
    font-weight: bold;
    font-size: 4px;
    transform: scale(0, 0);
    transition: var(--transition);
    z-index: -1;
  }
*/
  /*
  .navbar .nav-item .dropdown-menu .dot::before {
    content: "\f111";
    position: absolute;
    font-family: "Font Awesome 6 pro";
    left: 8px;
    top: 18px;
    color: var(--color-red);
    font-weight: bold;
    font-size: 4px;
    transform: scale(0, 0);
    transition: var(--transition);
    z-index: -1;
  }
*/
  /*
  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
    visibility: visible;
    transform: scale(1, 1);
  }
*/
  .navbar .nav-item .nav-link {
    position: relative;
  }
  .navbar .nav-item .nav-link.active, .navbar .nav-item:hover .nav-link {
    color: var(--color-red);
  }
  .navbar.fixed-top .nav-item .nav-link.active, .navbar.fixed-top .nav-item:hover .nav-link {
    color: var(--color-red);
  }
  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }
  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }
  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }
  /* nav right */
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .nav-right-link {
    position: relative;
    font-size: 16px;
    color: var(--color-dark);
    font-weight: 500;
  }
  .nav-right-link:hover {
    transition: var(--transition);
    color: var(--color-white) !important;
  }
  .navbar.fixed-top .nav-right-link {
    color: var(--color-dark);
  }
  .navbar.fixed-top .nav-right-link:hover {
    color: var(--color-red) !important;
  }
  /* nav-right-list */
  .nav-right-list li {
    display: inline-block;
  }
  .nav-right-list li .list-link {
    position: relative;
    width: 40px;
    color: var(--color-red);
    font-size: 20px;
    text-align: center;
  }
  .nav-right-list .list-link span {
    position: absolute;
    width: 18px;
    height: 18px;
    line-height: 18px;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: 50px;
    font-size: 12px;
    right: 0px;
    top: -9px;
  }
  /* dropdown cart */
  .dropdown-cart {
    position: relative;
  }
  .dropdown-cart-menu {
    position: absolute;
    right: 0;
    top: 60px;
    background: var(--color-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .dropdown-cart:hover .dropdown-cart-menu {
    opacity: 1;
    visibility: visible;
    top: 48px;
  }
  .dropdown-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-info-color);
  }
  .dropdown-cart-header span, .dropdown-cart-header a {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: uppercase;
  }
  .dropdown-cart-header a:hover {
    color: var(--theme-color);
  }
  .dropdown-cart-list li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid var(--border-info-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .dropdown-cart-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .dropdown-cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .dropdown-cart-item .cart-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    padding: 6px;
    border: 1px solid var(--border-info-color);
  }
  .dropdown-cart-item:hover .cart-img img {
    transform: scale(1.09);
  }
  .dropdown-cart-item .cart-info {
    flex: 1;
  }
  .dropdown-cart-item .cart-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .dropdown-cart-item .cart-info h4 a:hover {
    color: var(--theme-color);
  }
  .dropdown-cart-item .cart-remove {
    color: var(--color-red);
    font-size: 18px;
    transition: var(--transition);
  }
  .dropdown-cart-item .cart-remove:hover {
    color: var(--theme-color);
  }
  .dropdown-cart-bottom {
    padding-top: 10px;
    margin-top: 15px;
    border-top: 1px solid var(--border-info-color);
  }
  .dropdown-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .dropdown-cart-total span {
    text-transform: uppercase;
    color: #222;
    font-size: 13px;
    font-weight: 600;
  }
  .dropdown-cart-total .total-amount {
    font-size: 14px;
  }
  .dropdown-cart-bottom .theme-btn {
    display: block;
    padding: 8px 20px;
    margin-top: 25px;
  }
}
@media all and (min-width: 1199px) and (max-width: 1399px) {
  .navbar .nav-item .nav-link {
    margin-right: 20px !important;
  }
  .navbar.fixed-top .navbar-brand img {
    width: 130px;
  }
  .nav-right {
    margin-left: 15px !important;
  }
  .navbar.fixed-top .nav-right {
    gap: 12px;
  }
}
@media all and (max-width: 1199px) {
  .navbar .nav-right-btn {
    display: none;
  }
}
@media all and (min-width: 992px) and (max-width: 1199px) {
  .navbar .nav-item .nav-link {
    margin-right: 18px;
    font-size: 16px;
  }
}
/* mobile menu */
.mobile-menu-right {
  display: none;
}
@media all and (max-width: 991px) {
  .navbar {
    padding-top: 8px;
    padding-bottom: 8px;
    background: var(--color-white);
  }
  .navbar-brand img {
    width: 200px;
  }
  .navbar .offcanvas {
    width: 320px;
  }
  .navbar .offcanvas-header .btn-close {
    box-shadow: none;
  }
  .navbar .offcanvas-brand {
    width: 180px;
  }
  .navbar .dropdown-toggle::after {
    float: right;
    margin-top: 2px;
  }
  .navbar .nav-item .nav-link {
    color: var(--color-dark);
    font-weight: 500;
    margin-right: 0px;
    transition: var(--transition);
    border-bottom: 1px solid #1E67C8;
  }
  .navbar .nav-item .nav-link:hover {
    color: var(--color-red) !important;
  }
  .navbar-toggler {
    padding: 0;
    border: none;
  }
  .navbar-toggler span {
    display: block;
    width: 22px;
    border-bottom: 3px solid var(--color-red);
    border-radius: 50px;
    margin-top: 5px;
  }
  .navbar-toggler span:first-child {
    margin-top: 0;
  }
  .navbar-toggler span:nth-child(2) {
    width: 15px;
  }
  .mobile-menu-right, .mobile-menu-btn {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .mobile-menu-right .nav-right-link {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--theme-color);
    text-align: center;
    padding: 0;
    position: relative;
  }
  .mobile-menu-right .nav-right-link span {
    position: absolute;
    width: 18px;
    height: 18px;
    line-height: 18px;
    color: var(--color-white);
    background: var(--theme-color);
    border-radius: 50px;
    font-size: 12px;
    right: -10px;
    top: -5px;
  }
  .navbar .dropdown-menu {
    padding-top: 2px;
    padding-bottom: 6px;
    border-radius: 0px;
    border: 0px solid var(--border-info-color);
  }
  .nav-right {
    display: none;
  }
  .container-fluid .row > * {
    padding-left: 6px;
    padding-right: 6px;
  }
  /*
.mega-menu-item .dropdown-item{
    padding-left: 20px;
    border: 1px solid var(--border-info-color);
	border-top:0px ;
    font-weight: 400;
	background:#FFF
    } 
	
.mega-menu-item .dropdown-item:hover{
      color: var( --color-red);
	 background: #f1f1f1;
    }
*/
}
/*============================
12. Mega menu
==============================*/
@media all and (min-width: 992px) {
  .nav-item.mega-menu {
    position: static;
  }
  .navbar .nav-item.mega-menu .dropdown-menu {
    width: 100%;
    left: 50%;
    background: #fff;
    padding: 0px;
    border-radius: 0;
    transform: translateX(-50%)
  }
  .mega-menu .mega-content {
    padding: 0;
  }
  .mega-content .col-lg-9 {
    width: calc(80% + 15px)
  }
  .mega-menu .mega-menu-title {
    font-size: 16px;
    margin: 0px;
    padding: 0;
    display: flex;
    font-weight: 500;
    position: relative
  }
  .mega-menu .mega-menu-title a {
    background: #F2F2FF;
    min-width: 180px;
    padding: 15px 10px;
    color: #000;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    position: relative;
    border-right: 1px solid rgb(204, 204, 204);
  }
  .mega-menu .mega-menu-title a:hover {
    color: #19368D
  }
  .mega-menu .mega-menu-title:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: url('../img/icon/menu_blank_img.png') no-repeat center;
    z-index: 10;
    right: 20px;
    top: 50%;
    margin-top: -7px;
  }
  /*
    .mega-menu .mega-menu-title a:after:hover{
        content: "";
        font-family: 'Font Awesome 6 Pro';
        position: absolute;
        right:12px;
        top:50%;
        transform: translateY(-50%);
		background: red;
		width:500px;
    }
*/
  .mega-menu-img img {
    border-radius: 15px;
  }
  .mega-menu-head_bg {
    background: #506fe1;
    max-width: 230px;
    border-radius: 0;
    /*
	    background: url("../img/banner/menu_bg.jpg")no-repeat;
	    background-size: cover;
	    background-position: center center;
*/
    position: relative
  }
  .mega-menu-head_bg:before {
    content: '';
    background: #506fe1;
    width: 3000px;
    height: 100%;
    position: absolute;
    top: 0px;
    left: -2998px;
    border-bottom: 1px solid #999999;
    z-index: -1;
  }
  @media only screen and (min-width:1192px) and (max-width:1280px) {
    .mega-menu-head_bg {
      max-width: 170px;
    }
    #siteNav div.megamenu li.lvl-1 a.lvl-1 {
      min-width: 145px;
    }
  }
  .mega-menu-headTitle {
    width: 100%;
    color: #fff;
    /*        text-align: center;*/
    line-height: 1.38;
  }
  .mega-menu-item {
    padding: 9px 0px 8px 20px;
    align-items: center;
  }
  .menu_underline {
    border-bottom: 1px solid red
  }
  .container-fluid article.menu_underline:last-child {
    border-bottom: 2px solid #444
  }
  .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item {
    min-width: 210px;
  }
  .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item::before {
    left: 10px;
    ;
  }
  /*
  .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item:hover{
    padding-left: 20px;
  }
*/
  .p--15 {
    margin-left: -15px;
  }
}
@media all and (max-width: 991px) {
  .mega-menu-img, .mega-menu-headTitle {
    display: none;
  }
  .mega-menu .mega-content h5 {
    margin: 0;
  }
  .menu_underline {
    display: flex;
    flex-direction: column
  }
  .mega-menu .mega-menu-title a {
    background: #4D86D6;
    color: #fff;
    display: flex;
    width: 100%;
    padding: 3px 0px 2px 10px;
    /*    border-bottom:1px solid #fff;*/
    font-weight: 500;
    margin: 4px 0px 0;
    font-size: 15px;
    border-radius: 6px 6px 0 0
  }
  .mega-menu .mega-menu-title a:hover {
    background: #444;
    color: #fff
  }
  .mega-menu-item li {
    display: block;
    width: 100%;
    background: #f4f4f4
  }
}
/*============================
13. Multi level dropdown menu
==============================*/
.navbar .nav-item .dropdown-submenu {
  position: relative;
}
.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
  display: none;
}
.navbar .nav-item .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 6.5px;
  font-weight: 600;
}
.navbar .nav-item .dropdown-submenu a:hover {
  background: transparent;
  color: var(--color-white);
}
.navbar .nav-item .dropdown-submenu .dropdown-menu {
  top: 120%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}
.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}
/* navbar dropdown-right */
.navbar .dropdown-right .dropdown-submenu .dropdown-menu {
  left: unset;
  right: 100%;
}
@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: unset;
    visibility: unset;
  }
  .navbar .nav-item .dropdown-submenu a::after {
    top: 4px;
  }
  .navbar .nav-item .dropdown-submenu a:hover {
    color: var(--theme-color);
  }
}
/* ======================
14. Search popup
====================== */
.search-box, .search-box2 {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 38px;
  border-radius: 120px;
  margin: 0 auto;
}
.search-icon, .go-icon {
  position: absolute;
  top: 0px;
  height: 38px;
  width: 120px;
  line-height: 38px;
  text-align: center;
}
.search-icon {
  left: 0px;
  pointer-events: none;
  font-size: 1.0em;
  color: #f8f4f4;
  will-change: transform;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform-origin: center center;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -o-transform-origin: center center;
  transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -moz-transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: transform 400ms 220ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.si-rotate {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
.go-icon {
  top: 2px;
  right: 20px;
  pointer-events: none;
  font-size: 1.38em;
  color: #fff;
  will-change: opacity;
  cursor: default;
  opacity: 0;
  transform: rotate(105deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: opacity 190ms ease-out, transform 260ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: opacity 190ms ease-out, transform 260ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -moz-transition: opacity 190ms ease-out, transform 260ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: opacity 190ms ease-out, transform 260ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.go-in {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transition: opacity 190ms ease-out, transform 260ms 20ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transition: opacity 190ms ease-out, transform 260ms 20ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -moz-transition: opacity 190ms ease-out, transform 260ms 20ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -o-transition: opacity 190ms ease-out, transform 260ms 20ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.search-border {
  display: block;
  width: 100%;
  max-width: 360px;
  height: 38px;
}
.border {
  fill: none;
  stroke: rgba(255, 255, 255, .5);
  stroke-width: 3;
  stroke-miterlimit: 10;
}
.border {
  stroke-dasharray: 740;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
  -webkit-transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
  -moz-transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
  -o-transition: stroke-dashoffset 400ms cubic-bezier(0.600, 0.040, 0.735, 0.990);
}
.border-searching .border {
  stroke-dasharray: 740;
  stroke-dashoffset: 459;
  transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
  -webkit-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
  -moz-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
  -o-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.150, 0.205, 1.000);
}
#search {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 120px;
  border: none;
  background: rgba(255, 255, 255, 0);
  padding: 0 38px 0 75px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.015em;
  outline: none;
}
#search::-webkit-input-placeholder {
  color: #f3f3f3;
  font-size: 14px;
  font-weight: 400;
}
#search::-moz-placeholder {
  color: #f3f3f3;
  font-size: 14px;
  font-weight: 400;
}
#search:-ms-input-placeholder {
  color: #f3f3f3;
  font-size: 14px;
  font-weight: 400;
}
#search:-moz-placeholder {
  color: #f3f3f3;
  font-size: 14px;
  font-weight: 400;
}
#search::-moz-selection {
  color: #f3f3f3;
  background: rgba(0, 0, 0, 0.25);
}
#search::selection {
  color: #f3f3f3;
  background: rgba(0, 0, 0, 0.25);
}
/**/
.search-container, .search-container2 {
  width: 100%;
  height: 38px;
  position: relative;
  padding-right: 10px;
}
input#search-bar {
  margin: 0 auto;
  width: 100%;
  height: 38px;
  padding: 0 15px;
  font-size: 1rem;
  border: 2px solid #ff6d1d;
  background: #f8f8f8;
  border-radius: 4px;
  outline: none;
}
input#search-bar:focus {
  border: 1px solid red;
  transition: 0.35s ease;
  color: #000;
}
input#search-bar:focus::-webkit-input-placeholder {
  transition: opacity 0.45s ease;
  opacity: 0;
}
input#search-bar:focus::-moz-placeholder {
  transition: opacity 0.45s ease;
  opacity: 0;
}
input#search-bar:focus:-ms-placeholder {
  transition: opacity 0.45s ease;
  opacity: 0;
}
.search-container i.at, .search-container2 i.at {
  position: absolute;
  top: 11px;
  right: 20px;
  font-size: 16px;
  font-weight: 600
}
/*====================
15. Hero css 
======================*/
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-slider-wrap {
  background: var(--theme-bg-light);
  border-radius: 10px;
}
.hero-single {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-single .hero-content {
  position: relative;
}
.hero-single .hero-content .hero-sub-title {
  display: inline-block;
  color: var(--theme-color);
  font-size: 22px;
  letter-spacing: 4px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
}
.hero-single .hero-content .hero-title {
  color:black;
  font-size: 34px;
  font-weight: 500;
  margin: 10px 0;
  text-transform: capitalize;
  line-height: 1.48
}
.hero-single .hero-content .ht-02.hero-title {
  color:black;
  font-size: 26px;
  font-weight: 500;
  margin: -170px 0 0 -20px;
  text-transform: capitalize;
  line-height: 1.38
}

.hero-single .hero-content .ht-03.hero-title {
  color:black;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin: -200px 0 0 -20px;
  text-transform: capitalize;
  line-height: 1.68
}
.hero-single .hero-content .ht-01.hero-title span,
.hero-single .hero-content .ht-02.hero-title span,
.hero-single .hero-content .ht-03.hero-title span
{
	color:black;
}



@media all and (max-width: 776px) {
  .hero-single .hero-content .hero-title {
    font-size: 28px;
	 line-height: 1.65;
	 font-weight: 600;
	 padding: 0 
  }

	
.hero-single .hero-content .ht-02.hero-title {
  font-size: 27px;
  font-weight: 500;
  margin: -160px 0 0 -30px;
  text-transform: capitalize;
  line-height: 1.38
}	
	
.hero-single .hero-content .ht-03.hero-title {
  font-size: 26px;
  font-weight: 500;
  margin: -200px 0 0 -10px;
  text-transform: capitalize;
  line-height: 1.38
}	
	
	
	
}
@media all and (max-width: 576px) {
  .mt--30 {
    margin-top: -30px;
  }
  .mb--30 {
    margin-bottom: -30px;
  }
}
.hero-single .hero-content .hero-title span {
  color: var(--theme-color);
}
.hero-single .hero-content p {
  color: var(--color-dark);
  line-height: 30px;
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 25px;
}
.hero-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* hero slider */
.hero-slider, .hero-slider2 {
  position: relative;
}
.hero-slider .owl-dots, .hero-slider2 .owl-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-slider .owl-dots .owl-dot, .hero-slider2 .owl-dots .owl-dot {
  background: var(--color-white);
  margin: 5px;
  border-radius: 50px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}
.hero-slider .owl-dots .owl-dot.active, .hero-slider2 .owl-dots .owl-dot.active {
  background-color: var(--color-white);
  width: 20px;
}
.hero-slider .owl-nav, .hero-slider2 .owl-nav {
  position: absolute;
  font-size: 25px;
  right: 20px;
  bottom: 16px;
}
.hero-slider .owl-nav button, .hero-slider2 .owl-nav button {
  width: 44px;
  height: 44px;
  line-height: 44px;
  background: var(--color-white) !important;
  color: var(--color-dark);
  text-align: center;
  border-radius: 50px;
  transition: var(--transition);
}
.hero-slider .owl-nav button:hover, .hero-slider2 .owl-nav button:hover {
  background: var(--theme-color) !important;
  color: var(--color-white);
}
.hero-slider .owl-nav .owl-prev, .hero-slider2 .owl-nav .owl-prev {
  margin-right: 12px;
}
/* hs-1 */
.hs-1 .hero-slider {
  border-radius: 15px;
  overflow: hidden;
}
.hs-1 .hero-single {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 50px;
  min-height: 443px;
  border-radius: 15px
}
.hs-1 .hero-slider .owl-dots .owl-dot, .hs-1 .hero-slider2 .owl-dots .owl-dot {
  background: var(--color-dark);
}

.hero-bg-pc {
  width: 100%; height: 350px;
  background-size: cover; background-position: center;
  display: block;
}
.hero-bg-mobile {
  width: 100%; height: 350px;
  background-size: cover; background-position: center;
  display: none;
}

@media (max-width: 767.98px) {
  .hero-bg-pc { display: none; }
  .hero-bg-mobile { display: block; }
}




/*========================================*/
.product-slider2 .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.product-slider2 .owl-dots .owl-dot span {
  background: var(--theme-color);
  margin: 5px;
  border-radius: 50px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}
.product-slider2 .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
  width: 20px;
}
/* ==product =====*/
.product-slider .owl-dots {
  text-align: center;
  margin-top: 10px;
}
.product-slider .owl-dots .owl-dot span {
  background: var(--theme-color);
  margin: 5px;
  border-radius: 50px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}
.product-slider .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
  width: 20px;
}
/*=====  brand-slider ============*/
.brand-slider {
  position: relative
}
.brand-slider .owl-dots, .brand-slider2 .owl-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  text-align: center;
  margin-top: 20px;
  transform: translate(-50%)
}
.brand-slider .owl-dots .owl-dot span, .brand-slider2 .owl-dots .owl-dot span {
  background: var(--theme-color);
  margin: 5px;
  border-radius: 50px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}
.brand-slider .owl-dots .owl-dot.active span, .brand-slider2 .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
  width: 20px;
}
/* 회원정보 */
.hs-1 .member_contents {
  position: relative;
  border-radius: 15px;
  background: #F9f9f9;
  min-height: 443px;
}
.hs-1 .member_contents article {
  border-bottom: 1px solid #ccc;
  padding: 15px 0
}
.hs-1 .member_contents article:last-child {
  border-bottom: 0px solid #ccc;
}
.hs-1 .member_contents img {
  border-radius: 15px;
}
.hs-1 .member_contents .member_info {
  position: absolute;
  width: 100%;
  padding: 20px;
}
.hs-1 .member_contents .member_info p {
  color: #444;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0
}
.kca_mark {
  width: 77px;
  height: 77px;
}
.kca_mark a{
  width: 77px;
  height: 77px;
  background: #f76031;
  line-height: 77px;
  border-radius: 50%;
  color:#fff;
  text-align: center;
  font-weight: 600;
}
.kca_mark a:hover{
	background: red;
	color: #fff
}




.hs-1 .member_contents p .level, .hs-1 .member_contents p .status {
  color: #000;
  background: #F6F6F6;
  display: inline-block;
  padding: 0 14px;
  /*	border:1px solid #e8e8e8*/
}
/*
.hs-1 .member_contents p .status{
    color:#fff;
	background:#666;
	display:inline-block;
	padding:0 14px;
	border-radius:10px
}
*/
.member img {
  max-width: 50px
}
.member {
  height: 110px;
}
@media all and (min-width: 1200px) and (max-width: 1399px) {
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%
  }
  .col-xlg-3 {
    flex: 0 0 auto;
    width: 20%
  }
  .col-xlg-4 {
    flex: 0 0 auto;
    width: 30%
  }
}
@media all and (min-width: 1000px) and (max-width: 1399px) {
  .col-lg-6 {
    flex: 0 0 auto;
    width: 45%
  }
  .col-xlg-3 {
    flex: 0 0 auto;
    width: 20%
  }
  .col-xlg-4 {
    flex: 0 0 auto;
    width: 35%
  }
}
@media all and (max-width: 580px) {
  .ban-02 {
    display: none
  }
	
}
@media (max-width: 576px) {
  .ban-03 .d-flex.align-items-center {
    flex-direction: row !important;
    gap: 0.5rem;
    width: 100%;
  }
  .ban-03 .form-group {
    flex: 1 1 0;
    width: 100%;
  }
  .ban-03 .kca_mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }
  .ban-03 .kca_mark a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 77px;
    height: 77px;
   
  }
}
.member_contents .log-btn{
	display: flex;
	flex-wrap: wrap;
	align-items: center
}
.member_contents .log-btn a{
	display: inline-block;
	background: #ccc;
	padding: 4px 10px;
	color:#333;
	text-align: center;
	border-radius: 6px;
}
.member_contents .log-btn a:hover{
	background:#666;
	color:#fff
}
.member_contents .log-btn a:first-child{
	flex:1
}
.member_contents .log-btn a:last-child{
	flex:2
}
.member_info h6 {
  font-size: 14px;
  color: #000;
  min-width: 120px;
}
.hs-1 .member_contents p.mem_name {
  color: #000;
  font-size: 17px;
}
.hs-1 .member_contents .member_info h3 {
  color: var(--color-dark);
  margin: 5px 0 20px 0;
}
.hs-1 .member_contents .member_info .theme-btn {
  padding: 7px 15px;
}
.more {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.25
}
.progress-bar {
  position: relative;
  width: 100%;
  background-color: #E4E4E4;
  line-height: 1.2;
  padding: 0 8px
}
.progress-bar span {
  font-size: 14px;
  font-weight: 300;
  padding: 0 4px
}
/* 충족 시 */
.bg-green {
  background-color: #E4E4E4;
  color: #229719
}
/* 미 충족 시 */
.bg-red {
  background-color: #E4E4E4;
  color: red
}
.bg-red span, .bg-green span {
  color: #333
}
.hs-1 .member_contents .member_info .license p.license_head {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  /*	background-color: rgba(255,255,255,.5);*/
  color: #000;
  padding: 6px 3px;
  margin-top: 8px;
  min-width: 100px;
  line-height: 1.4
}
.hs-1 .member_contents .member_info .license p.license_head2 {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  /*	background-color: rgba(255,255,255,.5);*/
  color: #111;
  padding: 6px 3px;
  margin-top: 8px;
  min-width: 200px;
  line-height: 1.4;
}
.license_head2 span {
  font-weight: 300;
  font-size: 14px;
}
/* hs-2 */
.hs-2 {
  background: var(--theme-bg-light);
  margin-top: -6rem;
}
.hs-2::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 60%;
  background: var(--theme-color2);
  border-radius: 100px 0 0 0;
}
.hs-2 .hero-single {
  padding-top: 180px;
  padding-bottom: 80px;
}
.hs-2 .hero-single .hero-content .hero-sub-title {
  background: var(--theme-color2);
  color: var(--color-white);
  padding: 4px 25px;
  clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0% 100%, 5% 50%, 0% 0%);
}
.hs-2 .hero-img img {
  position: absolute;
  width: 37%;
  right: 100px;
  bottom: 0;
}
.hs-2 .product-title {
  background: var(--color-white);
}
@media all and (min-width: 992px) and (max-width: 1199px) {
  .hs-2::before {
    width: 35%;
  }
  .hs-2 .hero-img img {
    right: 0;
  }
}
@media all and (max-width: 991px) {
  .hs-2 {
    margin-top: 0rem;
  }
  .hs-2::before {
    display: none;
  }
  .hs-2 .hero-single {
    padding-top: 70px;
    padding-bottom: 0px;
  }
  .hs-2 .hero-img {
    display: none;
  }
  .hs-2 .product-wrap {
    margin-top: 50px;
  }
}
/* hs-3 */
.hs-3 .hero-single {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  z-index: 1;
}
.hs-3 .hero-slider .owl-nav {
  position: unset;
}
.hs-3 .hero-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.hs-3 .hero-slider .owl-nav .owl-prev {
  left: 20px;
}
.hs-3 .hero-slider .owl-nav .owl-next {
  right: 20px;
}
@media all and (max-width: 1199px) {
  .hs-3 .hero-slider .owl-nav {
    display: none;
  }
}
/*====================
16. Ã¬Å Â¤Ã¬Â¼â‚¬Ã¬Â¦Â css
======================*/
.sch_list li {
  font-size: 14px;
  color: #666;
  position: relative;
  padding-left: 15px;
  margin-right: 15px;
}
.sch_list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%
}
.sch_list li:nth-child(1)::before {
  background: #d7341f
}
.sch_list li:nth-child(2)::before {
  background: #fa8d00
}
.sch_list li:nth-child(3)::before {
  background: #20ad34
}
.sch_list li:nth-child(4)::before {
  background: #d2d2d2
}
.cal_select {
  display: flex;
  align-items: center;
  padding-top: 0px;
  text-align: right;
}
.cal_select .cal_arrow {
  font-size: 16px;
  padding: 8px 10px;
  border: 1px solid #aaa;
  display: inline-block;
  line-height: 0;
  border-radius: 6px;
}
.cal_select .cal_arrow:hover {
  background: #E0E0E0
}
.cal_select .cal_month {
  font-size: 21px;
  color: var(--color-red);
  margin: 0 30px;
  display: inline-block;
  vertical-align: top;
  font-weight: 700;
}
.cal {
  width: 100%;
  text-align: center;
  padding: 10px 0;
}
button {
  border: 0 none;
  padding: 0;
  margin: 0;
  background: transparent;
  *overflow: visible;
  cursor: pointer;
  vertical-align: middle;
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*====================
21. sub_menu css 
======================*/
/* sidebar */
.sub-sidebar {
  margin-bottom: 30px;
   position: sticky;
  top: 200px;
}
.sub_menu-widget {
  background: var(--color-white);
  margin-bottom: 0px;
  box-shadow: var(--box-shadow);
  border-radius: 15px 15px 0 0;
  /*  background: #4D86D6*/
}
.sub_menu-widget-title {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: #506fe1;
  /*
  background: url("../img/banner/sub_title_bg.jpg")no-repeat;
  background-size: cover;
  background-position: center;
*/
  padding: 15px 0;
  border-radius: 0px 16px 0 0;
}
/* Ã¬â€žÅ“Ã«Â¸Å’ Ã«Â©â€Ã«â€°Â´ */
.ink {
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, .3);
  border-radius: 100%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0)
}
.animate-ink {
  -webkit-animation: ripple .5s linear;
  -moz-animation: ripple .5s linear;
  -ms-animation: ripple .5s linear;
  -o-animation: ripple .5s linear;
  animation: ripple .5s linear
}
@-webkit-keyframes ripple {
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5)
  }
}
@-moz-keyframes ripple {
  100% {
    opacity: 0;
    -moz-transform: scale(2.5)
  }
}
@-o-keyframes ripple {
  100% {
    opacity: 0;
    -o-transform: scale(2.5)
  }
}
@keyframes ripple {
  100% {
    opacity: 0;
    transform: scale(2.5)
  }
}
.sub_list {
  width: 100%;
  /* 	max-width: 360px;*/
  /* 	margin: 30px auto 20px;*/
  background: #FFF;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.sub_list .link {
  cursor: pointer;
  display: block;
  padding: 8px 8px 8px 10px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #dce3fc
}
.sub_list li:last-child .link {
  border-bottom: 0;
}
.sub_list .link:hover {
  background: #b9c1df;
}
.sub_list .link2 a {
  display: block;
  padding: 12px 15px 12px 10px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.38;
  border-bottom: 1px solid #ccc;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #dce3fc;
}
.sub_list .link2 a:hover {
  background: #cdd2e8;
}
.sub_list .link2 a.active {
  background: #F7F2E7;
  color: #E5180A
}
.sub_list li i {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 14px;
  color: #595959;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sub_list li i.fa-chevron-down {
  right: 8px;
  left: auto;
  font-size: 14px;
}
.sub_list li.open .link {
  color: #111;
  background: #dce3fc;
}
.sub_list li.open i {
  color: #000;
}
.sub_list li.open i.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.sub_list li.default .submenu {
  display: block;
}
/**
 * Submenu
 -----------------------------*/
.submenu {
  display: none;
  background: #666;
  font-size: 14px;
  color: #333
}
.submenu li {
  border-bottom: 1px solid #e1e1e1;
}
.submenu a {
  display: block;
  text-decoration: none;
  color: #444;
  padding: 6px 8px 6px 24px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  font-size: 15px;
  font-weight: 400;
  background: #fff;
  line-height: 1.35
}
.submenu a:hover {
  background: #aaa;
  color: #FFF;
}
.submenu li a.active {
  color: #f83528;
  font-weight: 500
}
/*  sidebar banner */
.sub_menu-widget-banner {
  position: relative;
  z-index: 1;
}
.sub_menu-widget-banner .banner-img {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  z-index: -1;
}
.sub_menu-widget-banner .banner-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  z-index: -1;
}
.sub_menu-widget-banner .banner-content {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
.sub_menu-widget-banner .banner-content h6 {
  color: var(--color-white);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-top: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  display: inline-block;
}
.sub_menu-widget-banner .banner-content h4 {
  color: var(--color-white);
  font-size: 28px;
  margin: 15px 0;
}
.sub_menu-widget-banner .banner-content .theme-btn {
  border-radius: 50px;
  padding: 5px 20px;
}
@media all and (max-width: 1000px) {
  .sub-sidebar {
    display: none
  }
}
/*  sort */
.sub_title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-white);
  border-radius: 10px;
  padding: 8px 15px;
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
}
.sub_title-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}
.sub_title-box .nice-select {
  border-radius: 10px;
  padding-left: 13px;
}
.sub_title-box .nice-select::after {
  width: 6px;
  height: 6px;
  right: 15px;
}
.sub_title-box .nice-select .list {
  border: none;
  border-radius: 10px;
  padding-top: 7px;
  padding-bottom: 7px;
  box-shadow: var(--box-shadow);
}
.sub_title-box-gl a {
  background: transparent;
  border: 1px solid var(--border-info-color);
  color: var(--body-text-color);
  text-align: center;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  line-height: 35px;
}
.sub_title-box-grid {
  margin-right: 5px;
}
.sub_title-box-gl .active {
  border-color: var(--theme-color);
  background: var(--theme-color);
  color: var(--color-white);
}
/* sub area 2 */
.content-area {
  padding-top: 50px;
  min-height: 550px
}
@media all and (max-width: 992px) {
  .content-area {
    padding-top: 0px
  }
}
.content-area .sub_menu-widget {
  border: 1px solid var(--border-info-color);
  /*  background: transparent;*/
  box-shadow: none;
}
.content-area .sub_title-box {
  border: 1px solid var(--border-info-color);
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: none;
}
.contents_box {
  min-height: 620px
}
.contents_box h5 span {
  font-size: 15px;
  font-weight: 400;
  color: #666;
  margin-left: 5px
}
h5 span.text-red{color:red}
.bo_content {
  overflow-x: auto;
  background: #fff;
  min-height: 450px;
  border: 1px solid #e3e3e3;
  padding: 10px 15px;
  color: #333;
  font-size: 16px;
  max-width: 100%
}
.bo_content .attach img {
  width: 16px;
  vertical-align: middle
}
.bo_content .attach {
  font-size: 15px;
  color: #666
}
.bo_content2 {
  position: relativere;
/*  overflow-y: auto;*/
  background: #fff;
/*  height: 360px;*/
  border: 1px solid #e3e3e3;
  padding: 10px 15px;
  color: #333;
  font-size: 16px;
  max-width: 100%
}




@media all and (max-width: 767px) {
  .sub_title-box {
    flex-direction: column;
    gap: 5px;
  }
  .sub_title-box-box {
    flex-direction: column;
    width: 100%;
  }
  .sub_title-box-box .nice-select, .sub_title-box-box .nice-select .list {
    width: 100%;
  }
	
.hs-1 .hero-single {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 15px
}	
	
	
	
}
/*===================
23. table css 
=====================*/
.board_table {
  font-size: 15px;
  text-align: center;
  line-height: 1.4;
}
table.board_table th {
  background: #eee;
  border-top: 1px solid #aaa;
  padding: 8px 5px;
  font-weight: 500;
  color: #333;
}
table.board_table.r-line th, table.board_table.r-line td {
  border-right: 1px solid #ccc;
}
table.board_table.r-line th:last-child, table.board_table.r-line td:last-child {
  border-right: 0px solid #ccc;
}
table.board_table tbody tr:last-child {
  border-bottom: 1px solid #aaa
}
.board_table tbody td img{
	max-height: 20px;
	width: auto
}
.bo_table.r-line th[rowspan] {
    border-right: 1px solid #ddd !important;
}
.bt-line{
	 border-bottom: 1px solid #ccc;
}



/*
.board_table td span{
	display: inline-block;
	min-width:80px
}
*/

@media all and (max-width:766px) {
  td .d-flex {
    flex-direction: column;
  }
  .t-footer td .d-flex, .f-r.d-flex, .form-check.d-flex, .e-name .d-flex, .r-line .d-flex {
    flex-direction: row;
  }
}
.table {
  width: 100%;
  margin-bottom: 5px;
  vertical-align: top;
  border-color: var(--bs-table-border-color)
}
.table > :not(caption) > * > * {
  padding: 6px;
  color: #444;
  vertical-align: middle;
/*  background-color: var(--bs-table-bg);*/
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)))
}
.board_table > tbody {
  vertical-align: inherit;
  font-weight: 300;
  font-size: 15px;
  color: #333
}
.board_table > tbody td a {
  color: #111;
  font-weight: 500;
}
.board_table > tbody td a:hover {
  color: #E5180A;
  text-decoration: underline
}

.board_table > tbody td span {
  display: inline-block;
  margin: 0 3px
}


.table > thead {
  vertical-align: middle
}
.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor
}
.caption-top {
  caption-side: top
}
.table-sm > :not(caption) > * > * {
  padding: .25rem .25rem
}
.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width)
}
.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0
}
.table > tbody>td>img {
  height: 20px
}
.table.ticket td img {
  display: inline-block;
  width: 90%;
  height: auto;
  margin: 0 auto;
  text-align: center
}

.bo-line-top{
	border-top:1px solid #ccc
}


/* form */
.border-table {
  overflow-x: auto;
}
.border-table .qq tr:hover{background: rgb(204, 204, 204, 0.3)}
.table_cap {
  font-size: 14px;
  color: #333;
  float: right;
  line-height: 1.35
}
.border-table.py th, .border-table.py td{
    padding: 18px 15px !important;
}

.border-table .cros-line{
	text-decoration: line-through red;
	
}
.border-table td strong span.t-red{color: red !important}
.table_cap span, table th > span {
  color: red
}
.border_bottom-table {
  overflow-x: auto;
}
.bo_table {
  width: 100%;
}
.bo_table thead th:last-child{
  border-right: 0px solid #ccc;
}

.bo_table tbody tr:last-child {
  border-bottom: 1px solid #ccc;
}
.t-footer {
  border-top: 1px solid #ccc
}
.bo_table tr:first-child th {
  border-top: 1px solid #ccc;
 background: #f8f8f8
}
.bo_table tr {
  border-bottom: 1px solid #ccc
}
.bo_table tr td {
  font-size: 15px;
  font-weight: 400;
  color: #000
}
.bo_table tr.t-head {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.bo_table tr.t-head td{
    color:#000;
    font-weight: 400;
    font-size: 15px;
}

.bo_table tr td.title {
  font-weight: 600;
  color: #222;
  font-size: 17px;
}

.bo_table tr td a img {
  height: 22px;
}
.bo_table .icon_img img{
	width:auto;
	height: 22px
}
.board_table > tbody td a img{
    max-height:22px;
	 width:18px
}

.bo_table tr th, .bo_table tr td {
    padding: 8px;
/*  line-height: 1.38*/
}
.bo_table tr th {
  /*    border-right:1px solid #888;*/
  text-align: center;
  background: #f8f8f8;
  /*width:15%;*/
  color: #000;
  font-weight: 500;
  line-height: 1.45;
  font-size: 15px
}
.bo_table tr td span {
  display: inline-block;
  vertical-align: middle;
}
.bo_table tr td.logo_img img{
	max-width:120px;
	height: auto;
}
/*
.bo_table tr td a{
	text-decoration: underline #555
}
*/
tbody .notice_bg{background:#fcf6f2}
/*
.bo_table tr td img {
  width: 18px;
	padding: 20px;
	background: blue

}
*/
/*
table tr td span a img{
  width: 14px !important;
  height: auto;
}
*/
.bo_table td p {
  margin-bottom: 7px;
  padding-left: 5px;
  line-height: 1.35;
  font-size: 15px;
  color: #333
}
.bo_table td p:last-child {
  margin-bottom: 0
}
.bo_table tr td.pay span {
  font-size: 14px;
  background: grey;
  padding: 2px 16px;
  color: #fff;
  border-radius: 15px
}
.bo_table td label p {
  padding-left: 0px;
  color: #333
}
.bo_table.participate th, .bo_table.participate tr td {
  border-right: 1px solid #ccc;
  text-align: center
}
.bo_table.participate tr td:last-child {
  border-right: 0px solid #ccc
}
.bo_table.participate .t-head th {
  border-right: 0px solid #ccc
}
.bo_table.participate th, .bo_table.participate tr td p {
  margin: 0
}
.bo_table td p.text-red{color:red}
span.text-sky{color:deepskyblue}
.border-table td span.rectangle {
  display: inline-block;
  padding: 2px 8px;
  background: gray;
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
}
.border-table .e-name p {
  margin-bottom: 0
}
.bo_table.r-line td, .bo_table.r-line th {
  border-right: 1px solid #ddd
}
.bo_table.r-line td, .bo_table.r-line th:last-child{
	border-right: 0px solid #ddd
}

.bo_table.r-line td, .bo_table.r-line.lc th:last-child {
	border-right: 1px solid #ddd
}


.bo_table.r-line td:last-child {
  border-right: 0px solid #ddd
}
.bo_table.r-line td.left-line {
    border-left: 1px solid #ddd
}


.bo_table .in-table tr:last-child {
  border-bottom: 0px
}
.bo_table .in-table.lc tr:last-child {
  border-bottom: 1px solid #ddd
}

.bo_table .in-table.tr-last {
  border-bottom: 1px solid #ddd
}


.t-head .bk {
  color: #000
}
.in-table {
  width: 100%
}
.in-table td {
  padding: 10px
}
.bo_table .in-table2 tr:last-child {
  border-bottom: 0px
}
.bo_table .in-table2.tr-last {
  border-bottom: 1px solid #ddd
}

.bo_table.r-line td.td-rline{
	border-right: 1px solid #ddd
}

.bo_table th .btn-circle {
  float: right;
  margin-left: 4px; /* 버튼 사이 간격 */
}


.in-table2 {
  width: 100%
}
.in-table2 td {
  padding: 10px
}
.bo_table2 {
  width: 100%;
  overflow-x: auto
}
.bo_table2 tr.t-head {
  border-top: 1px solid #aaa;
}
.bo_table2 tr:last-child {
  border-bottom: 1px solid #aaa;
}
.bo_table2.r-line th {
  background: #f3f3f3;
  text-align: center
}
.bo_table2.r-line th, .bo_table2.r-line td {
  border-right: 1px solid #ddd;
  line-height: 1.35
}
.bo_table2.r-line th:last-child, .bo_table2.r-line td:last-child {
  border-right: 0px solid #ddd;
}
.bo_table2.r-line td, .bo_table2.r-line th {
  padding: 8px 10px;
  font-weight: 500;
  color: #111;
}
.bg-01 {
  background: #fcfbec;
  font-weight: 500;
  color: #000
}
.bg-02 {
  background: #eef8f8;
  font-weight: 500;
  color: #000
}
.bg-03 {
  background: #fff;
  font-weight: 600;
  color: #000
}
.bg-04, #second_level table .in-table tr td.bg-04 {
  background: #f8f8f8;
  font-weight: 500;
  color: #000
}
.bg-05, #second_level table .in-table tr td.bg-05 {
  background: #f8f2ee;
  font-weight: 400;
  color: #000
}
/*표 칼라*/
.bg-1 {
    --bs-bg-opacity: 1;
    background-color: #ECEBEB; !important
}
.bg-2 {
    --bs-bg-opacity: 1;
    background-color: #bfdaf3; !important
}

.bg-2-1 {
    --bs-bg-opacity: 1;
    background-color: #d8e7f6; !important
}

.bg-2-2 {
    --bs-bg-opacity: 1;
    background-color: #edf3f9; !important
}
.bg-3 {
    --bs-bg-opacity: 1;
    background-color: #f7dece; !important
}
.bg-3-1 {
    --bs-bg-opacity: 1;
    background-color: #f9eae0; !important
}
.bg-3-2 {
    --bs-bg-opacity: 1;
    background-color: #faf3ef; !important
}
.bg-3-3 {
    --bs-bg-opacity: 1;
    background-color: #F4FADF; !important
}
.bg-3-4 {
    --bs-bg-opacity: 1;
    background-color: #ECF8C4; !important
}
.bg-4 {
    --bs-bg-opacity: 1;
    background-color: #f8f8f8; !important
}


.border-table tr th.bg-06{
  background: #EDFBEB;
  font-weight: 500;
  color: #000
}
.border-table tr th.bg-07{
  background: #d8e7f6;
  font-weight: 500;
  color: #000
}
.border-table tr th.bg-08{
  background: #FAF9EF;
  font-weight: 500;
  color: #000
}
.border-table tr th.bg-09{
  background: #f8f2ee;
  font-weight: 500;
  color: #000
}
.border-table tr th.bg-10{
  background-color: #f6edfc;
  font-weight: 500;
  color: #000
}


.bg-07, #second_level table .in-table tr td.bg-07 {
  background: #E2F7E0;
  font-weight: 500;
  color: #000
}
.bo_table tr td.pay span.paycomplet {
  background: #75bc37
}
.bo_table tr td.pay span.paywait {
  background: #64605d
}
.bo_table tr td.pay span.payapplication {
  background: #2842c2
}
.bo_table textarea {
  width: 100%;
  background: #fff;
  height: 100px;
  line-height: 1.42;
  margin-bottom: 0px;
  outline: none !important; /* 아웃라인 제거 */
}
.bo_table tr td.text-red{color:red}
.bo_table tr td.text-sky{color:deepskyblue !important}
/*.bo_table td img{max-width: 18px}*/

.border-table p.fs-7 {
  line-height: 1.3
}
.diamond_bg {
  background: #b5e7f7
}
.platinum_bg {
  background: #f0f0f0
}
.gold_bg {
  background: #fce4b8
}
.silver_bg {
  background: #d4d4d4
}
.broze_bg {
  background: #f3b57d
}
.noble_bg {
  background: #e0d5cd
}
tr.attach td:nth-child(1) {
  border-right: 0px solid red;
}
@media all and (max-width:766px) {
  .bo_table td .form-group.d-flex {
    flex-direction: row
  }
}

.d-flex2 {
  display: flex
}
.t-w15 {
  width: 15%
}
.t-w30 {
  width: 30px
}
.t-w40 {
  width: 40px
}
.t-w50 {
  min-width: 50px
}
.t-w70 {
  min-width: 70px
}
.t-w80 {
  min-width: 80px
}
.t-w90 {
  min-width: 90px
}
.t-w100 {
  min-width: 100px
}
.t-w115 {
  min-width: 116.5px
}
.t-w120 {
  min-width: 120px
}
.t-w140 {
  min-width: 140px
}
.t-w150 {
  min-width: 150px
}
.t-w160 {
  min-width: 160px
}
.t-w170 {
  min-width: 170px
}
.t-w175 {
  min-width: 175px
}
.t-w180 {
  min-width: 180px
}
.t-w220 {
  min-width: 220px
}
.t-w230 {
  min-width: 230px
}
.t-w300 {
  min-width: 300px
}
.t-w400 {
  min-width: 400px
}
.t-w600 {
  min-width: 750px
}

.tw50 { width: 50px}
.tw70 {
  min-width: 70px;
  width: 70px
}
.tw90 {
  min-width: 90px;
  width: 90px
}
.tw100 {
  min-width: 100px;
  width: 100px
}
.tw110 {
  min-width: 110px;
  width: 110px
}
.tw130 {
  min-width: 130px;
  width: 130px
}
.tw140 {
  min-width: 140px;
  width: 140px
}
.tw150 {
  min-width: 150px;
  width: 150px
}
.tw155 {
  min-width: 155px;
  width: 155px
}
.tw160 {
  min-width: 160px;
  width: 160px
}
.tw170 {
  min-width: 170px;
  width: 170px
}
.tw200 {
  min-width: 200px;
  width: 200px
}
.tw250 {
  min-width: 250px;
  width: 250px
}
.tw300 {
  min-width: 300px;
  width: 300px
}
.tw400 {
  min-width: 400px;
  width: 400px
}
.tw500 {
  min-width: 500px;
  width: 500px
}
.tw600 {
  min-width: 500px;
  width: 500px
}
/*Ã­â€¦Å’Ã¬ÂÂ´Ã«Â¸â€ Ã¬Å“Â Ã­Ëœâ€¢1*/
.table-clip {
  overflow: auto;
  min-height: 300px;
  white-space: nowrap;
}
.table-clip-auto {
  overflow: auto;
  height: auto;
  border: 1px solid #c1c1c1;
  white-space: nowrap;
}
.table-01 {
  font-size: 15px;
  width: 100%;
  border-collapse: collapse;
  font-weight: 300
}
.table-01 tr:nth-child(even) {
  background: #f9f9f9
}
.table-01 th {
  font-size: 15px;
  background: #f4f4f4;
  border-top: 1px solid #a7a7a7;
  font-weight: 500;
  text-align: center
}
.table-01 th, .table-01 td {
  padding: .75em .7em;
  line-height: 1.3;
  color: #333;
}
.table-01 td {
  border-right: 0px solid #ccc;
  text-align: center;
}
/*
.table-01 td:nth-child(1){
	width:80px;
}
.table-01 td:nth-child(2){
	max-width:90px;
}
.table-01 td:nth-child(3){
	text-align: left
}
.table-clip .public td:nth-child(3){text-align: center}
.table-clip .public td:nth-child(4){text-align: left}
*/
.table-01 td.txt-left {
  text-align: left;
}
.table-01 td:last-child {
  border-right: none;
}
.table-01 > tbody > tr > td.t-center {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding-top: 20px;
  color: #aaa
}
.table-01.t-align td:nth-child(1) {
  text-align: center;
}
.table-01.t-align td:nth-child(2) {
  text-align: left;
}
.table-01 td a {
  font-weight: 500;
  color: #111;
  font-size: 15px
}
.table-01 td a:hover {
  color: #E5180A;
  text-decoration: underline;
}
.table-01 tbody tr:last-child {
  border-bottom: 1px solid #a7a7a7
}
/*
.table-01 > tbody > tr > td.cur-pointer,.table-01 > tbody > tr {
  cursor: pointer
}
*/
.table-01 > tbody > tr > td.cur-pointer:hover, .table-01 > tbody > tr.cur-pointer:hover {
  color: #000;
  text-decoration: underline
}
.table-01 span.t-single-btn, span.t-single-btn {
  font-size: 12px;
  padding: 0px 2px 2px 2px;
  color: #fff;
  border-radius: 2px;
  font-weight: 400
}
.table-01 tr td.v-line {
  border-right: 1px solid #ccc
}

td span{display: inline-block}
td span.apply_pre {
  padding: 5px;
  border-radius: 3px;
  background: #ffde00;
  color: #000;
  font-size: 13px;
  font-weight: 400;
  width: 55px
}
td span.apply_ing {
  padding: 5px;
  border-radius: 3px;
  background: #2ea400;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  width: 55px
}
td span.apply_com {
  padding: 5px;
  border-radius: 3px;
  background: #ea0000;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  width: 55px
}
td span.apply_end {

  color: #222;
  font-size: 13px;
  font-weight: 400;
}
td span.apply_end2 {
  color: #f76030;
  font-size: 13px;
  font-weight: 400;
}
td span.apply_ing2 {
  padding: 5px;
  border-radius: 3px;
  background: #2491ed;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  width: 55px
}
.bo_table tr th span.new, td span.new{
  padding: 1px 3px;
  border-radius: 2px;
  background: #EA6C0F;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
}
/*Ã­â€¦Å’Ã¬ÂÂ´Ã«Â¸â€ Ã¬â€žÂ¸Ã«Â¡Å“Ã­Ëœâ€¢*/
.table-02 {
  max-width: 100%;
  margin-bottom: 0;
  border-spacing: 0;
  overflow-x: scroll;
}
.table-02 thead th:first-of-type {
  text-align: left;
}
.table-02 tbody, .table-02 tr, .table-02 th, .table-02 td {
  display: block;
  padding: 0;
  text-align: left;
  white-space: normal;
  line-height: 1.2;
}
.table-02 tr {
  display: table-row;
}
.table-02 th, .table-02 td {
  padding: 0.5em;
  vertical-align: middle;
  display: table-cell;
  padding: 0.5em;
}
.table-02 tbody.t-02 {
  display: table-row-group;
}
.table-02 tbody.t-02 tr {
  margin-bottom: 1em;
}
.table-02 tbody.t-02 tr:last-of-type {
  margin-bottom: 0;
}
.table-02 tbody.t-02 th[scope=row] {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: #f5f5f5;
  max-width: 18%
}
.table-02 tbody.t-02 td {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  text-align: left;
  width: 32%;
  font-weight: 300
}
.table-02 tbody.t-02 td:last-child {
  border-right: 1px solid #ccc;
}
.table-02 th.t-width {
  width: 18%;
}
.t-btn {
  padding: 2px 4px 4px;
  display: inline-block;
  background: #828282;
  margin-left: 8px;
  border-radius: 2px;
  color: #fff;
}
.t-btn:hover {
  background: #222;
  color: #fff
}
.bs-orange {
  background: var(--bs-orange);
}
.bs-purple {
  background: var(--bs-purple);
}
.bs-red {
  background: var(--bs-red);
}
.bs-green {
  background: var(--bs-green);
}
/*table-03*/
.table-03 {
  font-size: 14px;
  width: 100%;
  border-collapse: collapse;
  font-weight: 300
}
/*
.table-03 tr:nth-child(even) {
  background: #f5f5f5
}
*/
.table-03 th {
  color: #111;
  font-weight: 400;
  /*  background: #eee;*/
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #ccc;
}
.table-03 th, .table-03 td {
  padding: 8px 10px;
  border: none;
  /*    white-space:nowrap;*/
  line-height: 1.2;
  border-bottom: 1px solid #ccc;
}
.table-03 td {
  border-right: 0px solid #ccc;
  text-align: center;
}
.table-03 tbody td.t-first-cell {
  font-size: 14px;
  font-weight: 400;
  max-width: 24px;
  white-space: pre-wrap
}
.table-03 tbody td.t-snd-cell {
  text-align: left;
}
.table-03 td:last-child {
  border-right: none;
}
.table-03 > tbody > tr > td.t-center {
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding-top: 20px;
  color: #aaa
}
.table-03 > tbody > tr > td.cur-pointer {
  cursor: pointer
}
.table-03 > tbody > tr > td.cur-pointer:hover {
  color: #000;
  text-decoration: underline
}
.table-03 span.t-single-btn {
  font-size: 12px;
  padding: .5px 3px;
  color: #fff;
  border-radius: 2px;
  font-weight: 400
}
.table-04 {
  font-size: 13px;
  width: 100%;
  border-collapse: collapse;
}
.table-04 th {
  color: #111;
  font-weight: 500;
  background: #eee;
  text-transform: uppercase;
  text-align: center
}
.table-04 th, .table-04 td {
  padding: .75em;
  border: none;
  /*    white-space:nowrap;*/
  line-height: 1.2
}
.table-04 td {
  border-right: 0px solid #ccc;
  border-bottom: 1px solid #f1f1f1;
  text-align: center;
  font-weight: 400;
  color: #EC0A0E
}
.table-05 {
  font-size: 13px;
  width: 100%;
  border-collapse: collapse;
}
.table-05 td {
  padding: .75em;
  border: none;
  line-height: 1.2;
  font-size: 14px;
}
.table-05 td, .table-05 tr {
  text-align: left;
  font-weight: 400;
  color: #333
}
.table-05 tbody tr:nth-child(2n) {
  background-color: rgba(130, 130, 170, 0.1);
}
.table-05 td a {
  color: #333
}
.table-05 tr:hover, .table-05 td a:hover, .table-05 td:hover {
  color: #000;
  text-decoration: underline
}
.table-05 > tbody > tr.cur-pointer {
  cursor: pointer
}
.table-05 > tbody > tr.cur-pointer:hover {
  color: #000;
  text-decoration: underline
}
/*== on-off-line =====*/
.on-line {
  background: url("../img/icon/online_icon.svg") no-repeat;
  background-size: 24px;
  background-position: center
}
.off-line {
  background: url("../img/icon/offline_icon.svg") no-repeat;
  background-size: 24px;
  background-position: center
}
.t-comment p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5
}
@media all and (max-width:766px) {
  .bo_search form {
    width: calc(85% - 15px);
  }
}
.bo_search form {
  display: flex;
  align-items: center;
  /*     width: calc(45% - 20px);*/
  /*    max-width: 330px;*/
  height: 40px;
  position: relative;
  border: 1px solid #d2d2d2;
  border-right: none;
  border-radius: 5px;
  margin: 6px 0;
}
.bo_search form select {
  width: 26%;
  height: 100%;
  font-size: 15px;
  color: #555;
  padding: 0 8px;
  border: none;
  border-radius: 5px;
  background: #fff
}
.bo_search form input[type="text"] {
  width: calc(70% - 49px);
  /*    height: 100%;*/
  font-size: 14px;
  padding: 0 8px;
  border: none;
  margin-left: 12px;
  border-radius: 5px;
  outline: none;
}
.bo_search form button[type="submit"] {
  position: absolute;
  padding: 5px 0;
  width: 40px;
  /*    height: calc(100% + 2px);*/
  /*    font-size: 1.5rem;*/
  right: 0px;
  color: #222;
  border: 1px solid #f76030;
  background: #f76030;
  border-radius: 5px;
  outline: none;
}
.bo_search form button[type="submit"] i {
  font-size: 16px;
  color: #fff
}
.bo_search form button[type="submit"]:hover {
  background: #333;
  border: 1px solid #333;
  color: #111;
}
.bo_search form .stick {
  width: 0px;
  height: 50%;
  background: #d2d2d2;
  position: absolute;
  left: calc(26% + 6px);
}
.bo_search select option {
  height: 48px;
  line-height: 48px;
  padding-left: 15px;
  cursor: pointer;
  box-sizing: border-box;
  font-size: 15px;
}
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: .125rem;
}
.bo_search2 form {
  display: flex;
  align-items: center;
  height: 40px;
  position: relative;
  border: 1px solid #d2d2d2;
  border-right: none;
  border-radius: 5px;
  margin: 10px 0;
}
.bo_search2 form select {
  width: 35%;
  height: 100%;
  font-size: 14px;
  color: #999;
  padding: 0 8px;
  border: none;
  border-radius: 5px;
  background: #fff
}
.bo_search2 form input[type="text"] {
  width: 70%;
  /*    height: 100%;*/
  font-size: 14px;
  padding: 0 8px;
  border: none;
  margin-left: 12px;
  border-radius: 5px;
  outline: none;
}
.bo_search2 form button[type="submit"] {
  position: absolute;
  padding: 5px 0;
  width: 40px;
  /*    height: calc(100% + 2px);*/
  /*    font-size: 1.5rem;*/
  right: 0px;
  color: #222;
  border: 1px solid var(--color-red);
  background: var(--color-red);
  border-radius: 5px;
  outline: none;
}
.bo_search2 form button[type="submit"] i {
  font-size: 16px;
  color: #fff
}
.bo_search2 form button[type="submit"]:hover {
  background: #333;
  border: 1px solid #333;
  color: #111;
}
.bo_search2 form .stick {
  width: 1px;
  height: 50%;
  background: #d2d2d2;
  position: absolute;
  left: calc(32% + 6px);
}
.bo_search2 select option {
  height: 48px;
  line-height: 48px;
  padding-left: 15px;
  cursor: pointer;
  box-sizing: border-box;
  font-size: 13px;
}
@media all and (max-width: 766px) {
  .form-check {
    display: inline-block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: .125rem;
  }
}
.row01 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row
}
.check {
  display: flex
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em
}
.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0
}
.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  flex-shrink: 0;
  width: 1.33em;
  height: 1.35em;
  /*    margin-top: .4em;*/
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
  cursor: pointer
}
.form-check-input[type=checkbox] {
  border-radius: .25em
}
.week .form-check-input[type=checkbox]{
    margin: 0
}



.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%)
}
.form-check-input:focus {
  border-color: red;
  outline: 0;
}
.form-check-input[type=radio] + label {
  margin-top: 0px;
  cursor: pointer;
}
.form-check-input[type=radio] + label.m-0 {
  margin-top: 0px;
  cursor: pointer
}
.form-check-input[type=checkbox] + label {
    margin-top: 2.6px;
  
}


.form-check-input[type=radio] + label.form-check-label2{
	margin-top: 0px!important;
}




.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")
}
.form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: .5
}
.form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
  cursor: default;
  opacity: .5;
}
.redline-form .form-group {
  margin-bottom: 0px;


}
.form-check-input[type=radio] label {
  margin-top: 10px
}
.redline-form label {
  color: var(--color-dark);
  background: #fff;
  padding: 4.4px 8px /*  margin-bottom: 4px;*/
}
.redline-form .form-control {
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: none;
}
.redline-form input.form-control:read-only{
	background-color: #eee;
    border: 0;
}
.redline-form .nice-select {
  width: 100%;
  font-size: 16px;
  border-radius: 6px;
  height: 41px;
  line-height: 37px;
  padding-left: 10px;
  margin-bottom: 0px;
}
.redline-form .nice-select:after {
  width: 12px;
  height: 12px;
  margin-right: 10px;
  margin-top: -4px;
}
.redline-form .nice-select .list {
  width: 100%;
  height: 300px;
  overflow-y: auto;
  border-radius: 8px;
}
.redline-form .form-control:focus {
  border-color: var(--theme-color);
}
.redline-form .form-check-input {
  margin-top: 7px;
  box-shadow: none;
}
.form-check-input:focus {
  border-color: var(--theme-color);
}

.check-in{position: absolute;
top:10px;
left:10px;
content: "";
display: inline-block;
	z-index: 1
}





.redline-form .form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.redline-form .theme-btn {
  margin-top: 15px;
  margin-bottom: 10px;
}
.redline-form .theme-btn2 {
  background: var(--theme-color);
  color: var(--color-white);
  margin-right: 8px;
}
.redline-form .theme-btn2::before {
  background: var(--color-dark);
}
.date input[type="text"] {
  background-image: url("../img/icon/calendar.svg");
  background-repeat: no-repeat;
  background-position: right 9px center;
  background-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.file-upload {
  display: block;
  text-align: center;
  font-size: 15px;
}
.file-upload .file-select {
  display: block;
  border: 2px solid #ddd;
  color: #34495e;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  text-align: left;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
}
.file-upload .file-select .file-select-button {
  background: #ddd;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}
.file-upload .file-select .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}
.file-upload .file-select:hover {
  border-color: #4D86D6;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}
.file-upload .file-select:hover .file-select-button {
  background: #4D86D6;
  color: #FFFFFF;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}
.file-upload .file-select input[type=file] {
  z-index: 100;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}
.file-upload .file-select.file-select-disabled {
  opacity: 0.65;
}
.file-upload .file-select.file-select-disabled:hover {
  cursor: default;
  display: block;
  border: 2px solid #dce4ec;
  color: #34495e;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  margin-top: 5px;
  text-align: left;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
}
.file-upload .file-select.file-select-disabled:hover .file-select-button {
  background: #dce4ec;
  color: #666666;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}
.file-upload .file-select.file-select-disabled:hover .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}
label.agree {
  font-size: 14px;
  color: #222
}
/* 텍스트 왼쪽*/
.file-upload-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.file-name {
  order: -1;
  color: #555;
  font-size: 14px;
  /*  min-width: 50px;*/
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.8;
  margin-right: 10px
}
.custom-file-upload {
  border: 1px solid #4CAF50;
  padding: 3px 8px;
  cursor: pointer;
  background-color: #f8f8f8;
  border-radius: 4px;
  transition: all 0.3s;
}
.custom-file-upload:hover {
  background-color: #e8f5e9;
}
.file-delete-btn {
  border: 1px solid #f44336;
  padding: 3px 8px;
  cursor: pointer;
  background-color: #ffebee;
  border-radius: 4px;
  transition: all 0.3s;
  color: #d32f2f;
}
.file-delete-btn:hover {
  background-color: #ffcdd2;
}
/*====================
26. Compare css 
======================*/
.compare-table {
  background: var(--theme-bg-light);
  white-space: nowrap;
}
.compare-table th {
  vertical-align: middle;
  background: #eee;
  font-size: 14px;
}
.compare-table th:nth-child(1), .compare-table tbody tr td.txt01 {
  color: orangered
}
.compare-table th:nth-child(7), .compare-table tbody tr td.txt03 {
  color: #4688EA
}
.compare-table tbody tr th, .compare-table tbody tr td {
  padding: 6px 10px;
}
.compare-table tbody tr td {
  font-size: 13px;
  text-align: left;
  padding: 2px 0px 0 6px;
  color: #888;
  height: 35px;
  width: 75px
}
.compare-table tbody tr td span.point {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 2px
}
.point_bg_color_01 {
  background: #d7341f;
}
.point_bg_color_02 {
  background: #fa8d00;
}
.point_bg_color_03 {
  background: #20ad34;
}
.point_bg_color_04 {
  background: #d2d2d2;
}
.schedule1 {
  color: #d7341f;
}
.schedule2 {
  color: #fa8d00;
}
.schedule3 {
  color: #20ad34;
}
.schedule4 {
  color: #d2d2d2;
}
.schedule1:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  left: 0;
  top: 8px;
  background: #d7341f;
}
.schedule2:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  left: 0;
  top: 8px;
  background: #fa8d00;
}
.schedule3:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  left: 0;
  top: 8px;
  background: #20ad34;
}
.schedule4:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  left: 0;
  top: 8px;
  background: #d2d2d2;
}
.schedule_list li {
  font-size: 14px;
  display: flex;
  width: 100%
}
.schedule_list li span:first-child {
  font-weight: 600;
  position: relative;
  padding-left: 15px
}
.schedule_list li a {
  color: #666;
}
.schedule_list li a:hover {
  color: orangered
}
.compare-img {
  position: relative;
}
.compare-img img {
  border-radius: 10px;
}
.compare-remove {
  position: absolute;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  right: 10px;
  top: 10px;
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 50px;
}
.compare-remove:hover {
  background: var(--color-red);
  color: var(--color-white);
}
.compare-title {
  font-size: 17px;
  font-weight: 500;
}
.compare-title:hover {
  color: var(--theme-color);
}
.compare-price {
  color: var(--theme-color);
  font-weight: 600;
}
.compare-rate i {
  color: var(--color-yellow);
}
.compare-table .theme-btn {
  padding: 8px 15px;
}
/*====================
28. Product css 
======================*/
.product-area {
  position: relative;
}
.product-item {
  position: relative;
}
.product-item a {
  width: 100%;
  vertical-align: middle;
}
.product-info {
  padding: 10px 10px;
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid #e4e4e4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.product-item:hover .product-info {
  border-color: var(--color-gray-300);
}
.product-info .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #131A6D;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  z-index: 1;
}
.product-info .icon img {
  height: 32px;
  filter: brightness(0) invert(1);
}
.product-info:hover .icon img {
  transform: scale(1.1);
}
.product-info .content {
  flex: 1;
}
.product-info .content h4 {
  font-size: 16px;
  color: #333;
  transition: all .3s ease-in-out;
}
.product-info:hover .content h4 {
  color: #000;
}
.product-info .content p {
  color: var(--body-text-color);
}
@media all and (max-width: 767px) {
  .product-info {
    flex-direction: column;
    /*    min-height: 185px;*/
    text-align: center;
  }
  .product-info .icon {
    width: 80px;
    height: 80px;
  }
}
@media all and (max-width: 767px) {
  .product-info .content br {
    display: none
  }
}
.product-title {
  position: relative;
  background: rgb(255, 255, 255);
  padding: 15px;
  border-radius: 4px;
  height: 260px;
  border: 1px solid rgb(238, 238, 238);
  overflow: hidden
}
.product-item .type {
  /*  position: absolute;*/
  left: 15px;
  top: 15px;
  display: inline-block;
  background: #131A6D;
  color: var(--color-white);
  font-size: 15px;
  padding: 2px 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
}
/*
.product-item .type.news, .product-item .type.hot{
  background:#666;
}
*/
.product-item .type.oos {
  background: var(--color-red);
}
.product-item .type.discount {
  background: var(--color-yellow);
}
.product-action-wrap {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.product-item:hover .product-action-wrap {
  opacity: 1;
  visibility: visible;
  bottom: 35px;
}
.product-action a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-color);
  color: var(--color-white);
  text-align: center;
  border-radius: 50%;
  margin: 0 3px;
}
.product-action a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}
.product-content a {
  padding-left: 15px;
  font-size: 16px;
  color: #555;
  line-height: 1.35;
  margin-bottom: 20px;
  position: relative;
 text-decoration: underline
}
.product-content a:hover {
  text-decoration: underline
}
.product-content a:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 3px;
  height: 3px;
  background: var(--theme-color2);
}
.product-content span.condition {
  float: right;
  background: #5AAC68;
  color: #fff;
  padding: 3px 6px;
  border-radius: 6px;
  font-size: 12px;
}
.product-title a:hover {
  color: #111;
}
.product-rate {
  color: var(--color-yellow);
  font-size: 15px;
  margin-top: 3px;
}
.product-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.product-price {
  font-size: 16px;
  font-weight: 500;
}
.product-price del {
  margin-right: 5px;
  color: var(--body-text-color);
}
.product-price span {
  color: var(--color-red);
}
.product-cart-btn {
  position: relative;
  border: none;
  background: var(--theme-color2);
  color: var(--color-white);
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  width: 42px;
  height: 42px;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}
.product-cart-btn:hover {
  color: var(--color-white);
  background: var(--theme-color);
}
@media all and (min-width: 992px) and (max-width: 1399px) {
  .product-item {
    padding: 15px;
  }
  .product-cart-btn {
    width: 37px;
    height: 37px;
    font-size: 15px;
  }
  .product-price del {
    font-size: 13px;
  }
}
@media all and (max-width: 767px) {
  .product-wrap {
    margin: 0 15px;
  }
}
/* product slider */
.product-slider .owl-nav button {
  position: absolute;
  background: var(--color-dark) !important;
  color: var(--color-white) !important;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 14px !important;
  text-align: center;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  /*  margin-top: -50px;*/
  top: 50%;
  transform: translateY(-50%);
}
.product-slider .owl-nav button:hover {
  background: var(--color-red) !important;
}
.product-slider .owl-prev {
  left: -16px;
}
.product-slider .owl-next {
  right: -16px;
}
/* product slider 2 */
.product-slider2 .product-item {
  padding: 5px;
  margin-bottom: 0px;
}
.product-slider2 .owl-nav button {
  position: absolute;
  background: var(--color-dark) !important;
  color: var(--color-white) !important;
  width: 38px;
  height: 38px;
  line-height: 38px;
  font-size: 22px !important;
  text-align: center;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  margin-top: -50px;
  top: 8%;
  transform: translateY(-50%);
}
.product-slider2 .owl-nav button:hover {
  background: var(--color-red) !important;
}
.product-slider2 .owl-prev {
  right: 45px;
}
.product-slider2 .owl-next {
  right: 2px;
}
/* item-2 */
.item-2 .product-item {
  padding: 10px;
  border: 1px solid var(--theme-bg-light);
  border-radius: 20px;
  transition: var(--transition);
}
.item-2 .product-item:hover {
  border-color: var(--theme-color);
}
/* item list*/
.item-list .product-item {
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--color-white);
  border-radius: 20px;
  padding: 10px;
  box-shadow: var(--box-shadow);
}
.item-list .product-item::before {
  display: none;
}
.item-list.item-2 .product-item {
  box-shadow: none;
}
.item-list .product-title {
  width: 220px;
}
.item-list .product-content {
  align-items: unset;
  flex-direction: column;
  flex: 1;
}
.item-list .product-content p {
  margin-top: 10px;
  margin-bottom: 15px;
}
.item-list .product-bottom {
  align-items: unset;
}
/* item tab */
.item-tab .nav-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-dark);
  padding: 0px;
  margin-right: 20px;
  border-radius: 0;
  border-bottom: 2px solid transparent;
}
.item-tab .nav-item:last-child .nav-link {
  margin-right: 0;
}
.item-tab .nav-link.active {
  color: var(--theme-color);
  background: transparent;
  border-bottom-color: var(--theme-color);
}
@media all and (max-width: 767px) {
  .item-list .product-item {
    flex-direction: column;
    align-items: unset;
    gap: 5px;
  }
  .item-list .product-title {
    width: 100%;
  }
  .item-tab {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
/*====================
29. Product list css 
======================*/
.product-list {
  position: relative;
}
.product-list-title {
  position: relative;
  font-size: 25px;
  margin-bottom: 40px;
  padding-bottom: 15px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-info-color);
}
.product-list-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.8px;
  width: 40px;
  height: 2px;
  background: var(--theme-color);
}
.event-list-item {
  display: flex;
  gap: 14px;
  /*  background: var(--theme-bg-light);*/
  align-items: center;
  /*  border-radius: 15px;*/
  padding: 5px 0;
  position: relative;
  transition: var(--transition);
}
.event-list-item:last-child {
  margin-bottom: 0;
}
.event-list-item a:first-child {
  font-size: 14px;
  font-weight: 400;
  color: #444;
}
.event-list-item a:first-child:hover {
  color: #000;
  text-decoration: underline
}
.event-list-item span {
  display: inline-block;
}
.event-list p.event-list-item {
  padding: 6px 0;
  border-bottom: 1px solid #ccc
}
.product-list-img {
  background: var(--color-white);
  border-radius: 15px;
  padding: 10px;
}
.product-list-img img {
  width: 100px;
  height: 100px;
}
/*
.event-list-item:hover .product-list-img img{
  transform: scale(1.1);
}
*/
.btn-sm {
  padding: 2px 5px
}
.product-list-content {
  flex: 1;
}
.product-list-content h4 a {
  font-size: 18px;
}
.product-list-content h4 a:hover {
  color: var(--theme-color);
}
.product-list-rate {
  font-size: 15px;
  color: var(--color-yellow);
  margin-top: 4px;
}
.product-list-price {
  margin-top: 4px;
  font-weight: 500;
}
.product-list-price del {
  margin-right: 10px;
}
.product-list-price span {
  color: var(--color-red);
}
.event-list-btn {
  position: absolute;
  right: -3px;
}
@media all and (max-width: 1399px) {
  .product-list-content h4 a {
    font-size: 16px;
  }
}
/*====================
31. Bs custom css 
======================*/
/* tooltip */
.tooltip-inner {
  background: var(--color-skyblue);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
}
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  border-top-color: var(--color-skyblue) !important;
}
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  border-top-color: var(--color-skyblue) !important;
}
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -2.5px !important;
  border-left-color: var(--color-skyblue) !important;
}
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -2.5px !important;
  border-right-color: var(--color-skyblue) !important;
}
.tooltip.show {
  opacity: 1;
}

    .tooltip-custom {
      position: relative;
      display: inline-block;
    }
    
    .tooltip-custom .tooltip-text {
      visibility: hidden;
      width: 310px;
      background-color: #fff;
      text-align: left;
      border-radius: 4px;
	  border:1px solid #333;
	  color: #111;
      padding: 5px 5px;
      position: absolute;
      z-index: 9000;
      top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s;
      white-space: wrap;
	  font-size: 13px;
	  font-weight: 300
    }
    
    .tooltip-custom:hover .tooltip-text {
      visibility: visible;
      opacity: 1;
    }
    
  /* 화살표 스타일 */
  .tooltip-custom .tooltip-text::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
  }
    
    /* Table styling */
    .table-icon {
      font-size: 0.9rem;
      color: #444;
      margin: 5px;
	  padding-top: 3px
    }


/* 툴팁 등장 애니메이션 추가 */
.tooltip-custom .tooltip-text {
  transition: opacity 0.3s, transform 0.2s;
  transform: translateX(-50%) translateY(-5px);
}

.tooltip-custom:hover .tooltip-text {
  transform: translateX(-50%) translateY(0);
}
/*===========================================================*/
.tooltip.show {
  opacity: 1;
}

.tooltip .tooltip-inner {
  background-color: #fff; 
  color: #333;           
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 4px;
  border:1px solid #333;
  max-width:280px;
  text-align: left
}

/* 툴팁 화살표 색깔 맞추기 */
.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #333;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #333;
}
.tooltip.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #333;
}
.tooltip.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: #333;
}





/*====================
34. event css 
======================*/
.event {
  position: relative;
  overflow: hidden;
}
.event-product {
  position: relative;
  background: var(--color-white);
  padding: 0 15px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  height: calc(100% - 50px);
  letter-spacing: -0.5px;
  z-index: 1;
}
.event-product2 {
  position: relative;
  background: var(--color-white);
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  height: calc(100% - 0px);
/*  letter-spacing: -0.5px;box-shadow: var(--box-shadow);*/
  z-index: 1;
}

.event-product .nav {
  border-bottom: 1px solid var(--border-info-color);
}
.event-product .nav-underline .nav-link {
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  height: 56.6px
}
.event-product .nav-underline .nav-link.active {
  color: var(--color-red);
}
@media all and (max-width: 480px) {
  .event-product {
    padding: 5px;
  }
}
.funfact-content .counter-box {
  flex-direction: column;
  padding: 15px 15px 20px 15px;
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
}
.funfact-content .counter-box .counter-amount {
  justify-content: center;
}
.funfact-content .counter-box .counter {
  color: var(--color-dark);
}
.funfact-content .counter-box .counter-sign {
  color: var(--color-dark);
}
.funfact-content .counter-box .title {
  color: var(--color-dark);
}
@media all and (max-width: 991px) {
  .event-product .nav-underline .nav-link {
    font-size: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-product .nav-underline .nav-link {
    font-size: 14px;
  }
}
@media all and (max-width: 484px) {
  .event-product .nav-underline .nav-link {
    font-size: 13px;
  }
}
/*===================
37. Team css 
=====================*/
.partner-area {
  position: relative;
  overflow: hidden;
}
.partner-item, .ethic {
  padding: 10px 10px 8px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  text-align: center;
  position: relative;
  background: var(--color-white);
  border-radius: 15px;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
/*  transition: var(--transition);*/
  font-weight: 400;
  font-size: 15px;
  width: 100%
}
.partner-item ul, .ethic ul {
  background: #eee;
  border-radius: 6px;
  padding: 8px
}
.partner-item ul li, .ethic ul li {
  margin-bottom: 7px;
  padding-left: 4px;
}
.partner-item ul li:last-child, .ethic ul li:last-child {
  font-weight: 600;
  margin-bottom: 0
}
/*
.partner-item:hover, .ethic:hover {
  transform: translateY(-10px);
}
*/
.partner-img img {
  border-radius: 15px;
  margin-top: 5px;
}
.biz-name {
  padding: 0;
}
.partner-item p, .partner-item ul li, .ethic ul li {
  text-align: left
}
.area-name {
  color: #E5180A;
  font-weight: 500;
  font-size: 15px;
  text-align: left;
}
.teacher_img {
  display: inline-block;
  margin-bottom: 10px;
}
.teacher_img img {
  width: auto;
  max-height: 128px;
  border-radius: 8px;
}
.partner-item h6 {
  width: auto;
  font-weight: 500;
  font-size: 15px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 5px 0 15px;
}
.partner-item:hover, .ethic:hover {
  border-color: red;
}



.ethic span.ethic_title {
  color: #E5180A;
  margin-bottom: 2px
}
.ethic h6 {
  font-size: 15px;
  font-weight: 500;
  min-height: 50px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.t-box_head{
    text-align: left;
    page-break-after: 10px;
}
.t-box_head .cat_name{
    font-weight: 600;
    font-size: 16px;
    margin: 4px 0 0px
}
.t-box_head .subject{
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    padding: 2px 4px;
   
}
.t-box_head p.subject{
  border-bottom: 1px solid #eee;
    padding: 10px 5px
} 
.t-box_head p.name{
    padding: 12px 5px
}
ul.detail{
    font-weight: 400;
    font-size: 14px;
}


ul.professor_list li {
  line-height: 1.35
}
ul.professor_list li:first-child {
  font-weight: 600
}
p.professor_text {
  padding-left: 0px;
  line-height: 1.43;
  color: #222;
  font-weight: 300;
  padding-left: 23px;
  position: relative;
  margin-bottom: 10px
}
p.professor_text:before {
  width: 13px;
  height: 3px;
  background: red;
  content: "";
  display: inline-block;
  position: absolute;
  top: 9px;
  left: 0px;
}
ul.history {
  font-size: 15px;
}
.company-name h5 {
  font-size: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-transform: capitalize;
}
.company-name p {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  line-height: 1.3;
  min-height: 43px;
  display: flex;
  justify-content: center;
  align-items: center
}
.company-name h5 a:hover {
  color: var(--theme-color);
}
.movie_content p {
  font-size: 15px;
  color: #666;
}
.movie_body {
  width: auto;
  height: 480px;
  background: #111;
}
.movie_body h4, .movie_body p {
  color: #888
}
.movie-how a {
  font-size: 15px;
  background: #333;
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
}
.movie-how a:hover {
  color: #F39913
}
.rating {
  border-bottom: 1px solid var(--border-info-color);
  margin-top: 10px;
  padding-bottom: 10px;
}
.rating a {
  display: inline-block;
  color: var(--color-white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 4px;
  border-radius: 50px;
  background: var(--theme-color);
  box-shadow: var(--box-shadow);
}
.rating a:hover {
  background: var(--theme-color2);
  color: var(--color-white);
}
.rating span {
  font-weight: 600;
  padding: 8px;
  padding-left: 40px
}
.diamond {
  background: url("../img/partner/diamond.png")no-repeat;
  background-size: 34px;
  background-position: left center
}
.platinum {
  background: url("../img/partner/platinum.png")no-repeat;
  background-size: 34px;
  background-position: left center
}
.gold {
  background: url("../img/partner/gold.png")no-repeat;
  background-size: 34px;
  background-position: left center
}
.silver {
  background: url("../img/partner/silver.png")no-repeat;
  background-size: 34px;
  background-position: left center
}
.bronze {
  background: url("../img/partner/bronze.png")no-repeat;
  background-size: 34px;
  background-position: left center
}
.noble {
  background: url("../img/partner/noble.png")no-repeat;
  background-size: 34px;
  background-position: left center
}
/*===================
38. Play btn
=====================*/
.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: var(--theme-color2);
  color: var(--color-white) !important;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--theme-color2);
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
/*====================
39. Video css 
======================*/
.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
}
.video-content::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, .01);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 20px;
}
.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  height: 400px;
  z-index: 1;
}
.video-wrapper img {
  border-radius: 12px;
}
.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media all and (max-width: 767px) {
  .video-wrapper {
    height: 250px;
  }
}
/*====================
41. Brand css 
======================*/
.brand-area {
  position: relative;
}
.brand-area .site-title {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.brand-area .site-title span {
  color: var(--theme-color);
}
.brand-slider {
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  padding: 12px 20px 2px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.brand-slider2 {
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  padding: 12px 20px;
  margin-top: 10px;
}
/* brand-area2 */
.brand-area2 .brand-item {
  padding: 15px 10px;
  border: 1px solid var(--border-info-color);
  border-radius: 10px;
}
.qualificate {
  border-radius: 0 0 6px 6px;
  background: #fff;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .2);
  min-height: 160px;
  /* height:180px; */
  /* padding: 10px; */
  position: relative
}
.qualificate span.arrow {
  position: absolute;
  color: #fff;
  content: "";
  text-align: center;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000;
  top: 45%;
  right: -22px;
  z-index: 2
}
@media all and (max-width: 991px) {
  .qualificate.num2 span.arrow {
    display: none
  }
}
@media all and (max-width: 767px) {
  .qualificate span.arrow {
    display: none
  }
  .vh_190 {
    min-height: 50px
  }
}
.qualificate h5 {
  font-size: 15px;
  color: #f76030;
  background: #eee;
  border-bottom: 1px solid #ccc;
  letter-spacing: -0.5px
}
.qualificate h4 {
  font-size: 17px;
  padding: 8px
}
.qualificate p {
  line-height: 1.35;
  margin-bottom: 3px;
  padding-left: 18px;
  letter-spacing: -0.5px;
  position: relative;
}
.qualificate p:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: red;
  top: 9px;
  left: 8px;
}
/*====================
43. 분과지역 css 
======================*/
.edu-num {
  font-size: 15px;
  font-weight: 400;
  color: #666
}
.edu-area ul.edu-list li span {
  font-weight: 500;
  color: #222;
  padding-right: 7px;
  width: 30px
}
.edu-area ul.edu-list li.alert-info {
  color: orangered;
  font-size: 14px;
  font-weight: 400
}
.edu-area ul.edu-list li a {
  line-height: 1.7
}
.edu-area ul.edu-list li a:hover {
  text-decoration: underline;
  color: #E5180A;
}
/*====================
44. Faq css 
======================*/
.faq-area {
  position: relative;
}
.faq-area .list-group-item {
  color: var(--body-text-color);
  font-weight: 500;
  font-size: 16px;
  padding: 10px 20px;
}
.faq-area .list-group-item.active {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--color-white);
  font-size: 18px;
  z-index: 1;
}
.faq-area .list-group-item:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.faq-area .list-group-item:last-child {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.faq-area .accordion-item {
  border: 1px solid var(--border-info-color);
  margin-bottom: 15px;
  background: var(--color-white);
  border-radius: 12px !important;
}
.faq-area .accordion-item span {
  width: 65px;
  padding: 5px;
  font-size: 14px;
  margin-right: 10px;
  background: var(--color-orange-500);;
  text-align: center;
  color: var(--color-white);
  border-radius: 4px
}
@media all and (max-width: 767px) {
  .faq-area .accordion-item span {
    max-width: 45px;
  }
}
.faq-area .accordion-button:not(.collapsed) {
  color: var(--color-orange-500);;
  background: transparent;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
.faq-area .accordion-button {
  border-radius: 0px !important;
  background: transparent;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 20px 12px 8px;
  color: var(--body-text-color);
  text-transform: capitalize;
  box-shadow: none !important;
}
.faq-area .accordion-body {
  border-top: 1px solid var(--border-info-color);
  color: #222;
  font-weight: 300;
  font-size: 15px
}
.faq-area .accordion-body p {
  font-size: 15px;
  line-height: 1.4
}
.faq-area .accordion-body p a {
  text-decoration: underline;
  color: red
}
.faq-area .accordion-body p a:hover {
  color: #B311CF
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-right: -5px;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition)
}
@media all and (max-width: 991px) {
  .faq-area .accordion-button {
    font-size: 16px;
  }
}
/*====================
45. login css 
======================*/
.login-form {
  padding: 40px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}
.login-form .login-header {
  text-align: center;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-info-color);
}
.login-form .login-header img {
  width: 200px;
  margin-bottom: 10px;
}
.login-form .login-header h3 {
  color: var(--theme-color);
  margin-bottom: 5px;
  font-weight: 800;
}
.login-form .login-header p {
  font-size: 20px;
}
.login-form .form-group {
  margin-bottom: 20px;
}
.login-form label {
  color: var(--color-dark);
  margin-top: 3px;
}
.login-form .form-group .form-control {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: none;
  transition: .5s;
}
.login-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}
.login-form input::placeholder {
  color: #ccc;
  font-size: 14px;
}
.login-form .form-check-input {
  box-shadow: none;
}
.login-form .form-check-input:focus {
  border-color: var(--theme-color);
}
.login-form .forgot-pass {
  color: var(--theme-color);
  transition: .5s;
}
.login-form .forgot-pass:hover {
  color: var(--theme-color);
}
.login-form .theme-btn {
  width: 100%;
}
.login-form .theme-btn::before {
  width: 660px;
  height: 460px;
}
.login-form .theme-btn i {
  margin-right: 5px;
}
.login-form .form-check-input {
  margin-top: 6.3px;
}
.login-form .form-check-label a {
  color: var(--theme-color);
  transition: .5s;
}
.login-form .form-check-label a:hover {
  color: var(--theme-color);
}
.form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.login-form .login-footer {
  margin-top: 25px;
}
.login-form .login-footer p a {
  color: var(--theme-color);
  transition: .5s;
}
.login-form .login-footer a:hover {
  color: var(--theme-color);
}
.non-member-login {
  border-top: 1px solid #F1F1F1;
  margin-top: 25px;
  padding-top: 15px;
}
.non-member-login h5 {
  color: #f76030;
  margin-bottom: 10px
}
.non-member-login p {
  margin: 5px 0;
  font-size: 13px;
  text-align: left;
  line-height: 1.35;
}
@media all and (min-width: 992px) and (max-width: 1399px) {
  .login-form {
    padding: 30px;
  }
  .social-login-list a {
    margin-right: 4px;
  }
}
@media only screen and (max-width: 991px) {
  .login-form {
    padding: 40px 20px;
  }
}
.sns-item-info h4 a {
  color: var(--color-dark);
}
.sns-item-info h4 a:hover {
  color: var(--theme-color);
}
.sns_webjin {
  width: 50%
}
.sns_webjin p {
  font-size: 14px;
  line-height: 1.35
}
@media all and (max-width: 991px) {
  .sns-item {
    min-height: 280px;
  }
}
@media all and (max-width: 767px) {
  .sns-item {
    min-height: 280px;
  }
}
/*========================
52. Blog single css
==========================*/
/*

.blog-thumb-img {
  margin-bottom: 20px;
}

.blog-single-content img {
  border-radius: 15px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-meta .blog-meta-left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-meta .blog-meta-left ul li{
  font-weight: 500;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-meta a {
  color: var(--body-text-color);
  font-weight: 500;
}

.blog-meta a:hover {
  color: var(--theme-color);
}

.blog-details-title {
  font-size: 34px;
  color:  var(--color-dark);
}

.blockqoute {
  position: relative;
  background: var(--theme-bg-light);
  border-left: 5px solid var(--theme-color);
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
  border-radius: 0px;
}

.blockqoute i{
  position: absolute;
  right: 30px;
  bottom: 8px;
  color: var(--theme-color);
  font-size: 90px;
  opacity: .2;
}

.blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
  color:  var(--color-dark);
}

.blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: var(--theme-color);
  left: 0;
  top: 10px;
}

.blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details-tags h5 {
  color:  var(--color-dark);
}

.blog-details-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details-tags ul a {
  background: var(--theme-bg-light);
  color:  var(--color-dark);
  padding: 4px 18px 5px 18px;
  border-radius: 50px;
  transition: var(--transition);
}

.blog-details-tags ul a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin: 50px 0;
  padding: 20px;
}

.blog-author-img {
  width: 320px;
}

.blog-author-img img {
  border-radius: 15px;
}

.author-name {
  font-size: 22px;
  color: var(--theme-color);
  margin: 8px 0;
}

.author-info {
  padding: 0 20px;
}

.author-social {
  margin-top: 10px;
}

.author-social a {
  width: 35px;
  height: 35px;
  line-height: 31px;
  text-align: center;
  border: 2px solid var(--theme-color);
  border-radius: 50px;
  margin-right: 5px;
  color: var(--theme-color);
  transition: var(--transition);
}

.author-social a:hover {
  color: var(--color-white);
  background: var(--theme-color);
}

.blog-comments {
  margin-bottom: 50px;
}

.blog-comments h3 {
  color:  var(--color-dark);
}

.blog-comments-wrap {
  margin: 30px 0;
}

.blog-comments-item {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-top: 50px;
}

.blog-comments-item img {
  border-radius: 50%;
}

.blog-comments-content {
  padding: 0 0 0 20px;
}

.blog-comments-content span {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 500;
}

.blog-comments-content a {
  font-weight: 500;
  margin-top: 5px;
  color: var(--theme-color);
}

.blog-comments-content a:hover {
  color:  var(--color-red);
}

.blog-comments-content h5 {
  color:  var(--color-dark);
}

.blog-comments-reply {
  margin-left: 50px;
}

.blog-comments-form {
  padding: 30px;
  margin-top: 50px;
  border-radius: 10px;
  background: var(--theme-bg-light);
}

.blog-comments-form h3 {
  margin-bottom: 20px;
}

.blog-comments-form .form-group {
  margin-bottom: 20px;
}

.blog-comments-form .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: var(--transition);
}

.blog-comments-form .form-control:focus {
  border-color: var(--theme-color);
}
*/
@media all and (max-width: 767px) {
  .blog-meta {
    flex-direction: column;
    font-size: 15px;
  }
  .blog-meta .blog-meta-left ul {
    gap: 10px;
  }
  .blog-details-tags {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  .author-info {
    margin-top: 25px;
  }
  .blog-comments-item {
    flex-direction: column;
    text-align: center;
    padding: 30px 0px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    border-radius: 10px;
  }
  .blog-comments-item img {
    margin: 0 auto 20px auto;
  }
  .blog-comments-reply {
    margin-left: 0px;
  }
}
/*=======================
53. Widget sidebar css
=========================*/
.widget {
  background: var(--theme-bg-light);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 15px;
}
.widget .widget-title {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
}
.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 10px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 0;
}
.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 25px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 15px;
}
.widget .search-form .form-control {
  padding: 12px 15px 12px 15px;
  border-radius: 12px;
  box-shadow: none;
}
.widget .search-form {
  position: relative;
}
.widget .search-form .form-control:focus {
  border-color: var(--theme-color);
}
.widget .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--theme-color);
}
.widget .category-list a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border-info-color);
  transition: var(--transition);
}
.widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}
.widget .category-list a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}
.widget .category-list a i {
  margin-right: 5px;
  color: var(--theme-color);
}
.widget .category-list a span {
  float: right;
}
.widget .recent-post-item {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}
.widget .recent-post-item:last-child {
  margin-bottom: 0;
}
.widget .recent-post-img {
  margin-right: 20px;
}
.widget .recent-post-img img {
  width: 120px;
  border-radius: 12px;
}
.widget .recent-post-bio h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.widget .recent-post-bio span {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-color);
}
.widget .recent-post-bio span i {
  margin-right: 5px;
}
.widget .recent-post-bio h6 a:hover {
  color: var(--theme-color);
}
.widget .social-share-link a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  text-align: center;
  margin-right: 5px;
  border-radius: 50px;
  transition: var(--transition);
}
.widget .social-share-link a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}
.widget .tag-list a {
  background: var(--color-white);
  color: var(--color-dark);
  padding: 5px 15px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 8px;
  display: inline-block;
  transition: var(--transition);
}
.widget .tag-list a:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}
/*====================
54. Pagination css 
======================*/
.pagination-area {
  position: relative;
}
.pagination, .pagination1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .page-link {
  border: 1px solid #d4d4d4;
  background: #fff;
  color: #333;
  margin: 0 6px;
  padding: 2px 4px;
  min-width: 32px;
  text-align: center;
  transition: var(--transition);
}
.pagination .page-link:hover, .pagination .page-item.active .page-link {
  background: var(--color-dark);
  color: var(--color-white);
  z-index: 1;
}
.pagination .page-link, .content-area .pagination .page-link {
  border-radius: 6px !important;
}
.product-wrap {
  position: relative
}
.product-wrap .pagination1 {
  position: absolute;
  top: -55px;
  left: 90px
}
@media all and (max-width: 992px) {
  .product-wrap .pagination1 {
    display: none
  }
}


   

.pagination1 li {
  margin: 0 5px;
}
.pagination1 button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 4px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.pagination1 button:hover {
  background-color: #0056b3;
}
.pagination1 .active button {
  background-color: #0056b3;
}
/*====================
55. Breadcrumb css 
======================*/
.site-breadcrumb {
  position: relative;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  /*
  padding-top: 50px;
  padding-bottom: 50px;
*/
  z-index: 1;
}
.site-breadcrumb-bg {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center !important;
  background-size: cover !important;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.site-breadcrumb .breadcrumb-title {
  font-size: 25px;
  color: var(--color-dark);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}
.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: var(--color-dark);
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
}
.site-breadcrumb .breadcrumb-menu li a {
  color: var(--color-dark);
  transition: all 0.5s ease-in-out;
}
.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '\f101';
  font-family: 'Font Awesome 6 Pro';
  right: -21px;
  top: 0px;
  text-align: center;
  font-size: 14px;
  color: #888;
}
.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}
.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}
.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--color-red);
}
.site-breadcrumb .breadcrumb-menu li.active {
  color: var(--color-red);
}
/*===================
56. Featured css 
=====================*/
.featured-area {
  position: relative;
}
.featured-content {
  margin-bottom: 30px;
}
.featured-info p {
  color: var(--body-text-color);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px
}
.featured-info .ch-name p + p {
  margin-bottom: 0
}
.featured {
  background: var(--color-white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--box-shadow);
  min-height: 500px
}
.featured-header {
  margin-bottom: 20px;
  min-height: 500px
}
.featured-header h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark);
}
.boost_info {
  margin: 20px 0;
  background: #f4f4f4;
  padding: 15px
}
.boost_info ul li {
  margin-bottom: 3px;
  font-weight: 500;
  color: #333;
  padding-right: ;
}
.boost_info ul li span {
  color: #000;
  font-weight: 600;
  min-width: 70px;
  display: inline-block;
  text-align: end;
}
.boost_list li {
  top: 5px;
  margin-bottom: 2px;
  padding-left: 8px
}
.boost_list span {
  top: 8px;
  width: 4px;
  height: 4px;
  background: red;
  margin-right: 8px;
  border-radius: 50px
}
.boost_num p {
  font-weight: 500;
  color: #000
}
/*===================
56. Contact us css 
=====================*/
.contact-area {
  position: relative;
}
.contact-content {
  margin-bottom: 50px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 25px 15px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.contact-info:hover {
  transform: translateY(-8px)
}
.contact-info-icon i {
  font-size: 35px;
  color: var(--color-white);
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50px;
  background: var(--theme-color);
}
.contact-info h5 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-dark);
}
.contact-info p {
  color: var(--body-text-color);
  font-weight: 500;
  font-size: 16px;
}
.contact-form {
  background: var(--color-white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--box-shadow);
}
.contact-form-header {
  margin-bottom: 30px;
}
.contact-form-header h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}
.contact-form .form-group {
  margin-bottom: 25px;
}
.contact-form .form-group .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: var(--transition);
}
.contact-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}
.contact-form .form-message.success, .contact-form .form-message.error {
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 10px 18px;
}
.contact-form .form-message.success {
  color: #41BE7D;
  background: rgba(65, 190, 125, .1);
}
.contact-form .form-message.error {
  color: #FF7F7F;
  background: rgba(255, 127, 127, .1);
}
.contact-form .form-message.error {
  color: var(--color-red);
}
.contact-map {
  margin-bottom: -9px;
}
.contact-map iframe {
  width: 100%;
  height: 350px;
}
@media all and (max-width: 991px) {
  .contact-info {
    padding: 35px;
  }
}
@media all and (max-width: 768px) {
  .contact-content {
    margin-top: 50px;
    margin-bottom: 0;
  }
}
/*  = ë©”ì¸ ì›¹ì§„ = */
.sns-area {
  position: relative;
}
.sns-item {
  background: var(--color-white);
  border: 1px solid var(--border-info-color);
  padding: 15px;
  border-radius: 10px;
  min-height: 305px;
  transition: var(--transition);
}
.sns-item-line {
  position: relative;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--border-info-color);
}
.sns-item-img img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  max-height: 210px;
}
.sns-date {
  position: absolute;
  top: 0px;
  right: 0px;
  background: var(--theme-color2);
  color: var(--color-white);
  font-weight: 500;
  border-radius: 50px 0 0 50px;
  padding: 4px 12px 4px 12px;
  box-shadow: var(--box-shadow);
}
.sns-icon {
  position: absolute;
  top: -10px;
  right: -15px;
  background: #555;
  color: var(--color-white);
  font-weight: 500;
  border-radius: 50px 0 0 50px;
  padding: 5px;
  box-shadow: var(--box-shadow);
}
.sns-icon img {
  width: 20px
}
.sns-icon i {
  color: #fff;
  font-size: 18px;
}
/* ========================
57. Gallery css 
=========================== */
.gallery-item {
  position: relative;
  width: 100%;
  text-align: center;
}
.gallery-img {
  position: relative;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.gallery-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-color2);
  transition: all 0.7s ease-in-out;
  transform: translateY(-110%);
}
.gallery-img:hover::before {
  transform: translateY(110%);
}
.gallery-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-color2);
  opacity: .8;
  transition: all 0.7s ease-in-out;
  transform: translateY(-110%);
}
.gallery-img:hover::after {
  transform: none;
}
.gallery-img img {
  width: 100%;
  border-radius: 15px;
}
.gallery-link {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  font-size: 34px;
  color: var(--theme-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--color-white);
  transition: all 200ms 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
}
.gallery-item:hover .gallery-link {
  transform: translate(-50%, -50%) scale(1);
  transition: all 300ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.7s;
}
/* ===================
58. Affiliate css 
====================== */
.affiliate-area {
  position: relative;
}
.affiliate-img {
  position: relative;
}
.affiliate-img::before {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 0;
  width: 50%;
  height: 100%;
  background: var(--theme-color2);
  transform: rotate(5deg);
  border-radius: 20px;
  z-index: -1;
}
.affiliate-img img {
  border-radius: 20px;
  width: 90%;
}
.affiliate-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: var(--theme-bg-light);
}
.affiliate-percentage {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  text-align: center;
  border: 5px solid var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--theme-color);
}
.affiliate-percentage h1 {
  color: var(--color-white);
  font-weight: bold;
}
.affiliate-percentage h1 span {
  font-size: 20px;
  color: var(--color-white);
}
.affiliate-item .level {
  color: var(--color-white);
  font-weight: 500;
}
@media all and (max-width: 991px) {
  .affiliate-img {
    margin-bottom: 35px;
  }
}
/* ===================
59. Cta css 
====================== */
.cta-area {
  position: relative;
  background: var(--footer-bg);
  overflow: hidden;
  z-index: 1;
}
.cta-area::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 30px solid var(--color-white);
  border-radius: 50%;
  left: 50px;
  bottom: -100px;
  opacity: .1;
  z-index: -1;
}
.cta-area::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border: 30px solid var(--color-white);
  border-radius: 50%;
  right: 50px;
  top: -150px;
  opacity: .1;
  z-index: -1;
}
.cta-content {
  text-align: center;
}
.cta-content h6 {
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 5px;
}
.cta-content h1 {
  color: var(--color-white);
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 15px;
}
.cta-content h1 span {
  color: var(--theme-color);
}
.cta-content p {
  color: var(--color-white);
}
.cta-content .theme-btn {
  margin-top: 25px;
}
/* ===================
60. Process css 
====================== */
.process-area {
  position: relative;
}
.process-item {
  padding: 25px;
  border: 1px solid var(--border-info-color);
  border-radius: 15px;
  position: relative;
}
.process-item .icon {
  width: 80px;
  height: 80px;
  line-height: 75px;
  text-align: center;
  background: var(--theme-color2);
  border-radius: 50px;
  margin-bottom: 20px;
}
.process-item .icon img {
  width: 45px;
  filter: brightness(0) invert(1);
}
.process-item .icon span {
  position: absolute;
  right: 20px;
  top: 0;
  font-weight: 800;
  font-size: 40px;
  color: transparent;
  -webkit-text-stroke: 1px var(--theme-color);
}
.process-item h4 {
  color: var(--color-dark);
  margin-bottom: 10px;
}
/* ===================
61. Instagram css 
====================== */
.instagram-area {
  position: relative;
}
.instagram-item {
  position: relative;
}
.instagram-img img {
  border-radius: 15px;
}
.instagram-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  opacity: 0;
  z-index: 0;
  transition: 0.4s;
}
.instagram-item a {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 20px;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  z-index: 2;
  transition: 0.4s;
  transform: translate(-50%, -50%);
}
.instagram-item:hover::after {
  width: 100%;
  opacity: 1;
}
.instagram-item:hover a {
  visibility: visible;
  opacity: 1;
}
/*====================
62. Choose css 
======================*/
.choose-area {
  position: relative;
}
.choose-img img {
  border-radius: 100px;
  box-shadow: var(--box-shadow);
}
.choose-content {
  margin-top: 70px;
}
.choose-item {
  display: flex;
  gap: 18px;
  background: var(--color-white);
  padding: 30px;
  border-radius: 25px;
}
.choose-icon {
  width: 80px;
  height: 80px;
  line-height: 76px;
  text-align: center;
  background: var(--theme-color2);
  border-radius: 50px;
  box-shadow: var(--box-shadow);
}
.choose-icon img {
  width: 50px;
  filter: brightness(0) invert(1);
}
.choose-info {
  flex: 1;
}
.choose-info h4 {
  color: var(--color-dark);
  margin-bottom: 8px;
}
.choose-info p {
  color: var(--body-text-color);
}
/*  Ã¬â€¹Å“Ã­â€”ËœÃ¬ÂÂ¼Ã¬Â â€¢ */
/*====================
64. Footer css 
======================*/
.footer-area {
  background: #f8f8f8;
  position: relative;
  z-index: 1;
}
.introduct-area {
  background: #CFCFCF;
}
.introduct_list .list_items {
  position: relative;
  padding: 4px 8px;
}
.introduct_list .list_items::before {
  content: "|";
  position: absolute;
  top: 8px;
  right: -5px;
  font-size: 12px;
}
.introduct_list .list_items:last-child:before {
  display: none
}
.introduct_list .list_items a {
  font-size: 14px;
}
.introduct_list .list_items a:hover {
  color: var(--color-red)
}

.introduct_logo{
	background: #fff;
	border-top:1px solid #ccc;
	padding: 10px 0
}


.footer-widget-box {
  margin-bottom: 0px;
}
.footer-widget {
  position: relative;
  z-index: 1;
}
.footer-logo img {
  width: 220px;
  margin-bottom: 5px;
}
.footer-list {
  display: flex;
  flex-direction: column;
}
.footer-list li span {
  font-size: 12px;
  padding: 0 10px;
  color: #aaa
}
.footer-list li {
  position: relative;
  color: #666;
  transition: var(--transition);
  font-size: 14px;
  line-height: 1.6
}
.footer-list li::before {
  content: ".";
  position: absolute;
  left: -3px;
  top: .5px;
  font-size: 50px;
  line-height: 0;
  color: var(--theme-color);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.footer-list li a:hover::before {
  opacity: 1;
  visibility: visible;
}
.footer-widget-box p {
  margin-top: 5px;
  color: var(--color-dark);
  font-size: 14px;
}
.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 8px;
}
.footer-contact li a {
  color: var(--footer-text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-contact li i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
  margin-right: 11px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-white);
}
.footer-download h5 {
  color: var(--color-white);
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}
.footer-download-btn {
  display: flex;
  gap: 10px;
}
.footer-download-btn a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px 10px 10px;
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 7px;
  box-shadow: var(--box-shadow);
}
.footer-download-btn a i {
  font-size: 32px;
}
.download-btn-info {
  display: flex;
  flex-direction: column;
}
.download-btn-info span {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}
.download-btn-info h6 {
  color: var(--color-white);
  font-size: 14px;
  margin-top: 5px;
}
.copyright {
  position: relative;
}
.copyright-wrap {
  padding: 28px 0;
  border-top: 1px solid var(--border-white-color);
}
.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  font-size: 16px;
}
.copyright .copyright-text a {
  color: var(--theme-color);
  font-weight: 500;
}
.footer-payment span {
  display: block;
  color: var(--color-white);
  margin-bottom: 8px;
}
.footer-payment img {
  width: 50px;
  margin-right: 2px;
}
.footer-social {
  display: flex;
  gap: 8px;
  justify-content: end;
}
.footer-social a {
  height: 38px;
  width: 38px;
  line-height: 39px;
  text-align: center;
  border-radius: 50px;
  background: #777;
  color: var(--color-white);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}
/* footer area 2 */
.footer-area2 {
  position: relative;
  background: var(--color-white);
}
.footer-area2 .footer-widget-title {
  color: var(--color-dark);
  font-weight: 600;
}
.footer-area2 .footer-widget-title::after {
  background: var(--theme-color);
}
.footer-area2 .footer-widget-box p {
  color: var(--body-text-color);
}
.footer-area2 .footer-contact li {
  margin-bottom: 9px;
}
.footer-area2 .footer-list li a {
  color: var(--body-text-color);
  position: relative;
}
.footer-area2 .footer-list li a:hover {
  color: var(--theme-color);
}
.footer-area2 .footer-contact li, .footer-area2 .footer-contact li a {
  color: var(--body-text-color);
}
.footer-area2 .footer-contact li i {
  background: var(--theme-color);
}
.footer-area2 .footer-newsletter .form-control {
  border-radius: 12px;
  padding: 16px 70px 16px 18px;
  border: 1px solid var(--border-info-color);
}
.footer-area2 .footer-newsletter .theme-btn {
  border-radius: 10px;
  top: 5px;
  right: 5px;
  padding: 9px 18px
}
.footer-area2 .footer-newsletter .theme-btn i {
  margin-left: 0;
}
.footer-area2 .footer-download h5 {
  color: var(--color-dark);
  margin-bottom: 20px;
}
.footer-area2 .footer-download-btn a {
  background: var(--theme-color);
}
.footer-area2 .copyright-wrap {
  border-top: 1px solid var(--border-info-color);
}
.footer-area2 .footer-social span, .footer-area2 .footer-payment span, .footer-area2 .copyright .copyright-text {
  color: var(--body-text-color);
}
.footer-area2 .footer-social a {
  background: var(--theme-color);
}
.footer-area2 .footer-top-link h5 {
  color: var(--color-dark);
}
.footer-area2 .footer-top-link-info a {
  border-color: var(--border-info-color);
  color: var(--body-text-color);
}
.footer-area2 .footer-top-link-info a:hover {
  color: var(--color-white);
}
@media all and (min-width: 1199px) and (max-width: 1399px) {
  .footer-download-btn a i {
    font-size: 27px;
  }
  .download-btn-info span {
    font-size: 10px;
  }
  .download-btn-info h6 {
    font-size: 12px;
  }
  .footer-payment img {
    width: 46px;
  }
}
@media all and (min-width: 992px) and (max-width: 1199px) {
  .footer-payment span, .footer-social span {
    display: none;
  }
  .footer-payment img {
    width: 38px;
  }
}
@media all and (max-width: 991px) {
  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }
  .footer-top-link {
    margin-top: 8px;
  }
  .copyright .copyright-text {
    text-align: start;
  }
}
@media all and (max-width: 760px) {
  .introduct_list .list_items {
    padding: 0px 8px;
  }
  .introduct {
    padding: 4px 0
  }
  .introduct_list .list_items::before {
    content: "|";
    position: absolute;
    top: 4px;
  }
  .gap-1 {
    gap: 0 !important;
  }
}
/*=========sch=============*/
.ev_schedule {
  /*  background: #fafafa;*/
  position: relative;
}
.ev_schedule .line {
  margin-bottom: 10px;
  position: relative;
}
.ev_schedule .line img {
  width: 100%
}
.ev_schedule .line span {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 10px;
  border-radius: 50%;
  display: inline-block;
  background: #ffffff;
  border: 1px solid #fd424d;
}
.ev_schedule::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/banner/big-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  z-index: -1;
}
.ev_schedule h2 {
  color: #fff
}
.ev_schedule .line span.one {
  left: 0;
}
.ev_schedule .line span.two {
  left: 24.5%;
}
.ev_schedule .line span.three {
  left: 49.2%;
}
.ev_schedule .line span.four {
  right: 25%;
}
.ev_schedule .line span.five {
  right: 0;
}
@media (min-width: 1200px) and (max-width: 1367px) {
  .ev_schedule .line {
    display: none;
  }
  .ev_schedule a .single-nav::before {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .ev_schedule .line {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .ev_schedule .line {
    display: none;
  }
}
.ev_schedule .nav-link {
  padding: .5rem 1.28rem !important;
  z-index: 0
}
/*
.ev_schedule .ev-shapes img {
  width: inherit;
}

.ev_schedule .ev-shapes .vec_1 {
  position: absolute;
  top: 5%;
  left: 4%;
}
*/
.ev_schedule a.active .single-nav {
  -webkit-box-shadow: 0px 10px 25px 0px rgba(253, 64, 81, 0.15);
  box-shadow: 0px 10px 25px 0px rgba(253, 64, 81, 0.15);
}
.ev_schedule a.active .single-nav::after {
  background: -webkit-linear-gradient(293deg, #fd4b3d 0%, rgba(253, 44, 121, 0.99608) 100%);
  background: -o-linear-gradient(293deg, #fd4b3d 0%, rgba(253, 44, 121, 0.99608) 100%);
  background: linear-gradient(157deg, #fd4b3d 0%, rgba(253, 44, 121, 0.99608) 100%);
  z-index: 1;
  opacity: 1;
  visibility: visible;
  width: 170px
}
.ev_schedule a.active .single-nav h4 {
  color: #ffffff;
  font-size: 18px;
}
.ev_schedule a.active .single-nav p {
  color: #ffffff;
}
.ev_schedule a.active .single-nav::before {
  content: "\f0de";
  font-size: 45px;
  color: #fd424d;
}
.ev_schedule a .single-nav {
  padding: 25px 25px;
  border-radius: 12px;
  position: relative;
  text-align: center;
  margin-bottom: 10px;
  background: #fff;
  -webkit-box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  width: 170px
}
@media all and (max-width: 446px) {
  .ev_schedule a .single-nav {
    padding: 15px 15px;
  }
  .ev_schedule .nav-link {
    padding: .5rem 0.7rem !important;
  }
}
.ev_schedule a .single-nav::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: -webkit-linear-gradient(293deg, #fd4b3d 0%, rgba(253, 44, 121, 0.99608) 100%);
  background: -o-linear-gradient(293deg, #fd4b3d 0%, rgba(253, 44, 121, 0.99608) 100%);
  background: linear-gradient(157deg, #fd4b3d 0%, rgba(253, 44, 121, 0.99608) 100%);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.ev_schedule a .single-nav::before {
  content: "\f0de";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  z-index: 1;
  font-size: 45px;
  right: 70px;
  top: -28px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .ev_schedule a .single-nav::before {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .ev_schedule a .single-nav::before {
    display: none;
  }
}
.ev_schedule a .single-nav h4 {
  font-size: 18px;
  position: relative;
  z-index: 2;
}
.ev_schedule a .single-nav p {
  margin-bottom: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: 2;
}
.ev_schedule a .single-nav:hover {
  -webkit-box-shadow: 0px 10px 25px 0px rgba(253, 64, 81, 0.15);
  box-shadow: 0px 10px 25px 0px rgba(253, 64, 81, 0.15);
}
.ev_schedule a .single-nav:hover::after {
  background: -webkit-linear-gradient(293deg, #fd4b3d 0%, rgba(253, 44, 121, 0.99608) 100%);
  background: -o-linear-gradient(293deg, #fd4b3d 0%, rgba(253, 44, 121, 0.99608) 100%);
  background: linear-gradient(157deg, #fd4b3d 0%, rgba(253, 44, 121, 0.99608) 100%);
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
.ev_schedule a .single-nav:hover h4 {
  color: #ffffff;
}
.ev_schedule a .single-nav:hover p {
  color: #ffffff;
}
.ev_schedule a .single-nav:hover::before {
  content: "\f0de";
  font-size: 45px;
  color: #fd424d;
}
.sc_tab_cont {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  margin: 0 auto 20px auto;
  width: 80%;
  padding: 10px 0
}
.sc_tab_cont:last-child {
  margin-bottom: 0;
}
.sc_tab_cont .sp_img {
  padding: 20px 0 20px 10px;
}
.sc_tab_cont .sp_img.first {
  background: initial;
}
.sc_tab_cont .sp_img.first h5 {
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .sc_tab_cont .sp_img {
    margin-bottom: 20px;
  }
}
.sc_tab_cont .sp_img img {
  border-radius: 15px;
  -webkit-box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}
.sc_tab_cont .sp_img h5 {
  /*  font-family: "Oswald", sans-serif;*/
  position: relative;
  z-index: 2;
}
.sc_tab_cont .sp_cont {
  padding: 20px;
  background: rgba(255, 255, 255, 0.85);
}
.sc_tab_cont .sp_cont .meta-box span {
  color: #666;
  text-transform: capitalize;
}
@media (max-width: 567.98px) {
  .sc_tab_cont .sp_cont {
    padding: 10px;
    width: 100%
  }
}
/*
.sc_tab_cont .sp_cont .meta-box a {
  color: #221b68;
  text-transform: capitalize;
  margin-right: 10px;
  transition: all .5s ease-in-out;
}

.sc_tab_cont .sp_cont .meta-box a:hover {
  color: #fd424d;
}
*/
.sc_tab_cont .sp_cont p, .sc_tab_cont .sp_cont .meta-box div {
  color: #222;
  font-size: 15px;
}
.sc_tab_cont .sp_cont h5 {
  color: #fd424d;
  margin-bottom: 10px
}
.sc_tab_cont .sp_cont h4 {
  margin-bottom: 10px;
}
.sc_tab_cont .sp_cont h4 a {
  color: #221b68;
}
/*  === tab =====*/
@keyframes content-pop-out {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes content-pop-in {
  from {
    opacity: 1;
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: 1;
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes content-slide-bot {
  from {
    top: 20px;
    opacity: 0;
  }
  to {
    top: 0px;
    opacity: 1;
  }
}
@keyframes content-slide-top {
  from {
    top: -20px;
    opacity: 0;
  }
  to {
    top: 0px;
    opacity: 1;
  }
}
/* used for wrapper animation after the load of the page */
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* tab =====================*/
.group::after, .tabBlock-tabs::after {
  clear: both;
  content: "";
  display: table;
}
.unstyledList, .tabBlock-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tabBlock {
  margin: 0 0 2.5rem;
}
.tabBlock-tab {
  background: #eee;
  color: #666;
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  float: left;
  padding: 5px 10px;
  position: relative;
  transition: 0.1s ease-in-out;
  margin-right: 3px;
  border-radius: 4px 4px 0 0;
}
.tabBlock-tab:hover {
  color: #000;
}
.tabBlock-tab::before {
  content: "";
  display: block;
  height: 0px;
  position: absolute;
  transition: 0.1s ease-in-out;
}
.tabBlock-tab::after {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transition: 0.1s ease-in-out;
}
.tabBlock-tab::before {
  left: 0px;
  right: 0px;
  top: -2px;
}
.tabBlock-tab::after {
  background-color: transparent;
  bottom: -2px;
  left: 0;
  right: 0;
}
.tabBlock .tabBlock-tab a {
  color:
}
.tabBlock .tabBlock-tab a:hover {
  color: #333
}
@media screen and (min-width: 700px) {
  .tabBlock-tab {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.tabBlock-tab.is-active {
  position: relative;
  color: #000;
  font-weight: 600;
  background: #fff;
  z-index: 1;
  border-radius: 6px 6px 0 0;
  border-right: 2px solid red;
  border-left: 2px solid red;
  border-top: 2px solid red;
}
.tabBlock-tab.is-active::before {
  background-color: #975997;
}
.tabBlock-tab.is-active::after {
  background-color: #fff;
}
.tabBlock-content {
  background-color: #fff;
  border-top: 2px solid red;
  padding: 1.25rem;
}
.tabBlock-pane > :last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 500px) {
  .tabBlock-tab {
    display: flex;
    width: calc(50% - 4px);
    flex-wrap: wrap;
    margin: 2px 0;
    position: relative;
    transition: 0.1s ease-in-out;
    margin-right: 3px;
    border-radius: 4px;
    font-size: 15px;
  }
  .tabBlock-tab.is-active {
    position: relative;
    color: #000;
    font-weight: 600;
    background: #ccc;
    z-index: 1;
    border-radius: 4px;
    border: 0px solid red;
    border-left: 0px solid red;
    border-top: 0px solid red;
  }
  .tabBlock-content {
    margin-top: 10px;
    border-top: 2px solid red;
  }
}
/*=============*/
.tabs-wrapper input[type="radio"], .tabs-wrapper2 input[type="radio"] {
  display: none;
}
.tabs-wrapper label {
  transition: background 0.4s ease-in-out, height 0.2s linear;
  width: 32.9%;
  cursor: pointer;
  color: #333;
  font-size: 16px;
  height: 3em;
  background: #f4f4f4;
  text-align: center;
  line-height: 3em;
  border-bottom: 2px solid #c3c3c3;
  border-radius: 6px 6px 0 0
}
.tabs-wrapper label:last-of-type {
  /*  border-bottom: none;*/
}
.tabs-wrapper label:hover {
  background: #666;
  color: #fff;
}
.tabs-wrapper2 label {
  transition: background 0.4s ease-in-out, height 0.2s linear;
  width: 19.5%;
  cursor: pointer;
  color: #333;
  font-size: 16px;
  height: 3em;
  background: #f4f4f4;
  text-align: center;
  line-height: 3em;
  margin-bottom: 4px
}
.tabs-wrapper2 label:last-of-type {
  border-bottom: none;
}
.tabs-wrapper2 label:hover {
  background: #666;
  color: #fff;
}
/*
@media screen and (max-width: 1600px) {
  .tabs-wrapper label {
    width: 24%;
  }
}
*/
@media screen and (max-width: 900px) {
  .tabs-wrapper label {
    width: calc(33% - 1px);
    margin-bottom: 2px
  }
  .tabs-wrapper2 label {
    width: 32.5333%;
    margin-bottom: 4px;
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .tabs-wrapper label {
    width: calc(49.55% - 2px);
    display: inline-block;
    border-bottom: 0px solid #4d4c47;
    border-radius: 0;
    margin-bottom: 3px
  }
  .tabs-wrapper2 label {
    width: calc(49.55% - 2px);
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 600px) {
  .tabs-wrapper {
    margin: 0;
  }
}
/*
#tab1:checked + label,
#tab2:checked + label,
#tab3:checked + label,
#tab4:checked + label {
    border: 1px solid rgb(247, 96, 48);
	border-bottom:2px solid red;
    background: rgb(255, 255, 255);
    color: #000;
	font-weight:500;
    border-radius:6px 6px 0 0
}

.tab-body {
  position: absolute;
  top: -9999px;
  opacity: 0;
  padding: 10px;
}

.tab-body-wrapper {
  background: #fff;
  animation-delay: 0.2s;
  animation-duration: 1.5s;
  animation-name: show;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 600px) {
  .tab-body-wrapper {
    border: none;
    border-radius: 0;
  }
}

#tab1:checked ~ .tab-body-wrapper #tab-body-1,
#tab2:checked ~ .tab-body-wrapper #tab-body-2,
#tab3:checked ~ .tab-body-wrapper #tab-body-3,
#tab4:checked ~ .tab-body-wrapper #tab-body-4,
#tab5:checked ~ .tab-body-wrapper #tab-body-5{
  position: relative;
  top: 0px;
  animation-delay: 0.1s;
  animation-duration: 0.4s;
  animation-name: content-pop-out;
  animation-fill-mode: forwards;

}
*/
/*=====tab2 =======*/
.tabs_02 {
  width: 100%;
  float: none;
  list-style: none;
  position: relative;
  text-align: left;
}
.tabs_02 li {
  float: left;
  display: block;
}
.tabs_02 input[type="radio"] {
  position: absolute;
  top: 0;
  left: -9999px;
}
.tabs_02 label {
  display: block;
  padding: 6px 10px;
  border-radius: 0px 2px 0 0;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  text-transform: uppercase;
  background: #eee;
  cursor: pointer;
  position: relative;
  top: 2px;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tabs_02 label:hover {
  background: var(--theme-color);
  color: var(--color-white);
}
.tabs_02 .tab-content {
  z-index: 2;
  display: none;
  overflow: hidden;
  width: 100%;
  font-size: 15px;
  line-height: 1.5;
  padding: 15px;
  position: absolute;
  top: 43px;
  left: 0;
  background: #fff;
  border-top: 1px solid #ccc;
}
.tabs_02 [id^="tab"]:checked + label {
  top: 0;
  padding-top: 8px;
  background: var(--theme-color);
  color: var(--color-white);
}
.tabs_02 [id^="tab"]:checked ~ [id^="tab-content"] {
  display: block;
}
/*===tab3 ========*/
.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}
.tabset .tab-panel {
  display: none;
}
.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child, .tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2), .tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3), .tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4), .tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5), .tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}
.tab-panels {
  position: relative
}
.tab-panels .tab-panel span {
  position: absolute;
  top: -30px;
  right: 8px;
}
.tabset > label {
  position: relative;
  display: inline-block;
  padding: 4px 10px 2px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
  border-radius: 6px 6px 0 0
}
/*
.tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 22px;
  height: 4px;
  background: #8d8d8d;
}
*/
input:focus-visible + label {
  outline: 2px solid rgba(0, 102, 204, 1);
  border-radius: 3px;
}
.tabset > label:hover, .tabset > input:focus + label, .tabset > input:checked + label {
  color: #333;
  font-weight: 700;
  font-size: 17px;
}
.tabset > label:hover::after, .tabset > input:focus + label::after, .tabset > input:checked + label::after {
  background: #06c;
}
.tabset > input:checked + label {
  border-color: #ccc;
  border-bottom: 2px solid #eee;
  margin-bottom: -1px;
  background: #eee
}
.tab-panel {
  padding: 10px;
  border-top: 1px solid #ccc;
}
/*=============================*/
.tab-slider--nav {
  width: 100%;
  float: left;
  margin-bottom: 20px;
}
.tab-slider--tabs {
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  border-radius: 35px;
  overflow: hidden;
  background: #fff;
  height: 35px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tab-slider--tabs:after {
  content: "";
  width: 30%;
  background: red;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 250ms ease-in-out;
  border-radius: 35px;
}
.tab-slider--tabs.slide:after {
  left: 30%;
}
.tab-slider--trigger {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  padding: 11px 20px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: inline-block;
  transition: color 250ms ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tab-slider--trigger.active {
  color: #fff;
}
.tab-slider--body {
  margin-bottom: 20px;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.credit {
  font-size: 1.2rem;
  float: right;
  margin-top: 0.5em;
}
.credit__link {
  color: #FC5555;
  font-weight: bold;
  text-decoration: none;
}
.credit__link:hover {
  color: #FC5555;
  text-decoration: underline;
}
@media (max-width: 620px) {
  .tabs--sm {
    border: 0px solid #d4d4d4;
  }
  .tabs--sm .tabs__content {
    border-width: 0;
    border-top-width: 1px;
  }
  .tabs--sm .tabs__list {
    background-color: white;
    margin: 0;
    margin-bottom: -1px;
    display: inline-block;
    width: 100%;
  }
  .tabs--sm .tabs__list .tabs__item {
    overflow: hidden;
    position: absolute;
    height: 0;
  }
  .tabs--sm .tabs__list .tabs__item--active {
    height: auto;
    position: relative;
  }
  .tabs--sm .tabs__list--open .tabs__item {
    position: relative;
    height: auto;
  }
  .tabs--sm .tabs__list--open .tabs__item--active > .tabs__link:after {
    content: none;
  }
  .tabs--sm .tabs__item {
    width: 100%;
    max-width: 100%;
    border-right: 0;
    text-align: left;
  }
  .tabs--sm .tabs__item--active > .tabs__link {
    background-color: #333333;
    color: white;
    border: 0;
  }
  .tabs--sm .tabs__item--active > .tabs__link:hover {
    color: white;
  }
  .tabs--sm .tabs__item--active > .tabs__link:after {
    content: "";
    width: 0;
    height: 0;
    border: 0.5em solid transparent;
    border-top-color: #ffffff;
    float: right;
    margin-top: 0.75em;
  }
}
@media (max-width: 760px) {
  .tabs--md {
    border: 0px solid #d4d4d4;
  }
  .tabs--md .tabs__content {
    border-width: 0;
    border-top-width: 0px;
  }
  .tabs--md .tabs__list {
    background-color: white;
    margin: 0;
    margin-bottom: -1px;
    display: inline-block;
    width: 100%;
    border-radius: 0
  }
  .tabs--md .tabs__list .tabs__item {
    overflow: hidden;
    position: absolute;
    height: 0;
  }
  .tabs--md .tabs__list .tabs__item--active {
    height: auto;
    position: relative;
  }
  .tabs--md .tabs__list--open .tabs__item {
    position: relative;
    height: auto;
  }
  .tabs--md .tabs__list--open .tabs__item--active > .tabs__link:after {
    content: none;
  }
  .tabs--md .tabs__item {
    width: 100%;
    max-width: 100%;
    border-right: 0;
    text-align: center;
    margin-bottom: 5px;
    border-radius: 0
  }
  .tabs--md .tabs__item--active > .tabs__link {
    background-color: #333333;
    color: white;
    border: 0;
  }
  .tabs--md .tabs__item--active > .tabs__link:hover {
    color: #fff;
    background: #888;
    border-bottom: 0
  }
  .tabs--md .tabs__item--active > .tabs__link:after {
    content: "";
    width: 0;
    height: 0;
    border: 0.5em solid transparent;
    border-top-color: #ffffff;
    float: right;
    margin-top: 0.75em;
  }
}
@media (max-width: 990px) {
  .tabs--lg {
    border: 1px solid #d4d4d4;
  }
  .tabs--lg .tabs__content {
    border-width: 0;
    border-top-width: 1px;
  }
  .tabs--lg .tabs__list {
    background-color: white;
    margin: 0;
    margin-bottom: -1px;
    display: inline-block;
    width: 100%;
  }
  .tabs--lg .tabs__list .tabs__item {
    overflow: hidden;
    position: absolute;
    height: 0;
  }
  .tabs--lg .tabs__list .tabs__item--active {
    height: auto;
    position: relative;
  }
  .tabs--lg .tabs__list--open .tabs__item {
    position: relative;
    height: auto;
  }
  .tabs--lg .tabs__list--open .tabs__item--active > .tabs__link:after {
    content: none;
  }
  .tabs--lg .tabs__item {
    width: 100%;
    max-width: 100%;
    border-right: 0;
    text-align: left;
  }
  .tabs--lg .tabs__item--active > .tabs__link {
    background-color: #333333;
    color: white;
    border: 0;
  }
  .tabs--lg .tabs__item--active > .tabs__link:hover {
    color: white;
  }
  .tabs--lg .tabs__item--active > .tabs__link:after {
    content: "";
    width: 0;
    height: 0;
    border: 0.5em solid transparent;
    border-top-color: #ffffff;
    float: right;
    margin-top: 0.75em;
  }
}
@media (max-width: 1070px) {
  .tabs--xl {
    border: 1px solid #d4d4d4;
  }
  .tabs--xl .tabs__content {
    border-width: 0;
    border-top-width: 1px;
  }
  .tabs--xl .tabs__list {
    background-color: white;
    margin: 0;
    margin-bottom: -1px;
    display: inline-block;
    width: 100%;
  }
  .tabs--xl .tabs__list .tabs__item {
    overflow: hidden;
    position: absolute;
    height: 0;
  }
  .tabs--xl .tabs__list .tabs__item--active {
    height: auto;
    position: relative;
  }
  .tabs--xl .tabs__list--open .tabs__item {
    position: relative;
    height: auto;
  }
  .tabs--xl .tabs__list--open .tabs__item--active > .tabs__link:after {
    content: none;
  }
  .tabs--xl .tabs__item {
    width: 100%;
    max-width: 100%;
    border-right: 0;
    text-align: left;
  }
  .tabs--xl .tabs__item--active > .tabs__link {
    background-color: #333333;
    color: white;
    border: 0;
  }
  .tabs--xl .tabs__item--active > .tabs__link:hover {
    color: white;
  }
  .tabs--xl .tabs__item--active > .tabs__link:after {
    content: "";
    width: 0;
    height: 0;
    border: 0.5em solid transparent;
    border-top-color: #ffffff;
    float: right;
    margin-top: 0.75em;
  }
}
.tabs__list {
  margin: 0;
  margin-bottom: 0px;
  /*  border: 1px solid #E5180A*/
  display: flex;
}
.tabs__item {
  flex: 1;
  margin-right: 4px;
  margin-bottom: 0px;
  display: inline-block;
  width: auto;
  vertical-align: top;
  background: #eee;
  /*  border: 1px solid #e3e3e3;*/
  border-radius: 8px 8px 0 0
}
.tabs__item:last-child {
  margin-right: 0
}
.tabs__item--active > .tabs__link {
  border: 1px solid #E5180A;
  border-bottom: 2px solid #E5180A;
  background: white;
  position: relative;
  z-index: 1;
  color: #000;
  border-radius: 8px 8px 0 0
}
.tabs__item--active > .tabs__link:hover {
  color: #262626;
  background: #fff;
  border-bottom: 2px solid #E5180A;
}
.tabs__link {
  font-weight: 500;
  color: #444;
  padding: 0.5em 1em;
  line-height: 2;
  display: block;
  text-align: center;
  border-bottom: 2px solid #ccc;
}
.tabs__link:hover {
  background: #888;
  color: #fff;
  border-radius: 8px 8px 0 0;
  border-bottom: 2px solid #555;
  margin-bottom: 0px
}
.tabs__area {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s linear;
  height: 0;
}
.tabs__area--active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s linear;
  height: auto;
}
.tabs__content {
  margin-bottom: 0;
  background: #fff;
  border: 0px solid #dadacb;
  overflow: hidden;
  position: relative;
  clear: both;
  padding: 15px 0;
}
/* title_area  ****************************************************/
.title_area {
  display: flex;
  align-items: center;
}
.title_area span strong {
  color: #f76030;
  font-weight: 600;
}
.title_area select {
  width: 25%;
  height: 38px;
  font-size: 15px;
  color: #444;
  padding: 0px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #ffffff;
  margin-left: 10px;
  font-weight: 400
}
.title_area select:hover {
  border: 1px solid #aaa;
}
.title_area .apply_Tb {
  display: flex;
  align-items: flex-end;
  border-radius: 5px;
  margin-left: auto;
}
.title_area .apply_Tb li {
  border: 1px solid #d2d2d2;
  margin-left: -1px;
}
.title_area .apply_Tb li:first-child {
  border-radius: 5px 0 0 5px;
}
.title_area .apply_Tb li:last-child {
  border-radius: 0 5px 5px 0
}
.title_area .apply_Tb li a {
  display: block;
  padding: 4px 8px;
  font-size: 15px;
}
.title_area .apply_Tb li.on {
  background: #f83528;
  border-color: #f83528;
}
.title_area .apply_Tb li.on a {
  color: #ffffff;
}
#apply_form {
  display: none;
}
@media (max-width:992px) {
  .title_area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .title_area .apply_Tb {
    flex-basis: 100%;
    margin: 20px 0px 0px;
  }
  .title_area select {
    width: 60%;
    margin-left: 15px;
  }
  .title_area .apply_Tb li {
    width: 20%;
    border: 1px solid #d2d2d2;
    margin-left: -1px;
  }
  .title_area .apply_Tb li a {
    padding: 8px 8px;
    font-size: 15px;
    text-align: center
  }
  /* input.inputst { width:40%}*/
}
/*--- button  */
.select_input {
  height: 32px;
  line-height: 32px;
  color: #666;
  font-size: 13px;
  border: 1px solid #d5d5d5;
  vertical-align: middle;
  padding: 0px 10px;
  margin: 2px 0
}
.c_member_list tbody td {
  text-align: center;
  padding: 10px;
}
@media (max-width:567px) {
  .c_member_list tbody td {
    text-align: left;
  }
  /* input.inputst { width:74%; margin-left: 0}*/
  .title_area .apply_Tb li a {
    padding: 4px 4px;
    font-size: 14px;
  }
  .title_area select {
    width: 100%;
    margin-left: 0px;
  }
  .bo_search form .stick {
    left: calc(38% + 6px);
  }
}
.btn_n {
  width: auto;
  height: auto;
  line-height: 1em;
  font-weight: 500;
  border: none;
  color: #fff;
  letter-spacing: -0.05em;
  background: #e95a2f;
  margin: 2px 2px;
  border-radius: 2px;
  padding: 12px 35px;
  cursor: pointer;
}
.btn_n:hover {
  background: #b71d06;
  color: #fff;
}
.btn_blue {
  width: 80px;
  line-height: 40px;
  font-size: 12pt;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.05em;
  background: #72a4ff;
  border: 1px solid #5c8cfe;
  margin: 0 2px;
}
.btn_s {
  font-size: 14px;
  display: inline-block;
  height: auto;
  text-align: center;
  padding: 3px;
  margin: 2px 2px 2px -1px;
  min-width: 50px;
  color: #fff !important;
  letter-spacing: -0.05em;
  background: #f76030;
  justify-content: center;
  align-items: center;
  font-style: normal;
  border: none;
  border-radius: 2px;
  box-sizing: border-box;
  cursor: pointer;
  word-break: keep-all;
}
.btn_s:hover{background:#b71d06;}


/* Ã­ÂÂ¼ Ã¬Å¡â€Ã¬â€ Å’ */

.program_caption {
  width: 100%;
  height: auto;
  padding: 10px 20px;
  background: #f6f6f6;
  border: 1px solid #e8e8e8;
  margin-bottom: 20px;
}
.program_caption p {
  margin: 0;
  color: #000;
  font-size: 15px;
}
.workshop-title {
  font-size: 20px !important;
  color: #E95A2F;
  font-weight: bold;
}
.workshop-title b {
  font-size: 20px !important;
  color: #212121;
  font-weight: bold;
}
/*===   모달  ==============*/
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}
.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
}
.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  pointer-events: none;
}
.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}
.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.modal-header .close {
  padding: 5px;
  margin: -15px -5px -15px auto;
  font-size: 24px;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 15px;
  overflow-y: auto;
  max-height: 700px
}
.modal-body h5{
    line-height: 1.5;
    font-size: 15px;
    color:#444;
}
.modal-body p{
    font-size: 14px;
    color:#666;
    line-height: 1.34;
    margin-bottom: 7px
}
.modal-body h4 span{
    color: orangered
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 15px;
  border-top: 1px solid #e9ecef;
}
.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}
.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 30px auto;
  }
  .modal-sm {
    max-width: 300px;
  }
  .modal-md {
    margin-top: 200px;
    max-width: 500px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    max-width: 1000px;
  }
}
@media (min-width: 1024px) {
  .modal-xlg {
    width: 1600px;
  }
}
/*============old=============*/
/* 프로세스 */
.process_sp .process_1sp .process_1sp_div {
  background: #F7F8FA;
  border-radius: 5px;
  min-height: 160px;
  text-align: center;
}
.process_sp .process_1sp .process_1sp_div .process_1sp_div1 {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DCDCDC;
  font-weight: 600;
  border-radius: 5px 5px 0px 0px;
}
.process_sp .process_1sp .process_1sp_div .process_1sp_div2 {
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d2d2d2;
  border-top: none;
  border-radius: 0 0 5px 5px;
}
.process_sp .process_1sp .process_1sp_div .process_1sp_div2 > ul > li:first-child {}
.process_sp .process_1sp .process_1sp_div .process_1sp_div2 > ul > li:last-child {}
.process_sp .process_1sp .process_1sp_div .process_1sp_div2 > ul > li {
  border: 1px solid #DCDCDC;
  width: 90%;
  display: inline-block;
  margin: 5px 0;
}
.process_1sp a {
  display: block
}
.process_sp .process_1sp .process_1sp_div .process_1sp_div2 > ul > li a {
  display: block;
  padding: 6px 0;
}
.process_sp .process_1sp .process_1sp_div .process_1sp_div2 > ul > li p {
  font-weight: 500;
}
.process_sp {
  display: flex;
  justify-content: space-around;
}
.process_sp .process_1sp .process_1sp_div .process_1sp_div2 > p {
  font-weight: 500;
}
.process_sp .process_1sp {
  width: 20%;
  margin: 10px;
}
.process_sp .process_1sp:last-child {
  margin-right: none;
}
/* 펼쳐지는 형태 */
.license_process_faq {
  margin-top: 20px;
}
.license_process_faq li {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 10px;
}
.license_process_faq li:hover {
  border-color: #d9371e;
}
.license_process_faq li div.tit {
  height: 45px;
  line-height: 45px;
  padding-left: 15px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
}
/*.license_process_faq li.on div.cont{display:block;}*/
.license_process_faq li div.cont {
  border-top: 1px solid #ccc;
  padding: 15px;
  overflow: hidden;
  display: none;
  font-size: 0.9375rem;
}
.license_process_faq li div.cont.on {
  display: block !important;
}
.license_process_faq a.btn_my {
  display: inline-block;
  padding: 5px 10px;
  font-size: 1rem;
  letter-spacing: -0.05em;
  color: #F76030;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
  /* background: #d9371e; */
  border: 1px solid #F76030;
  border-radius: 5px;
  margin-top: 20px;
}
/* 테이블 */
.license_process_faq table.table_col {
  background: #fff;
  border-width: 1px 0 0 1px;
  border-style: solid;
  border-color: #d9371e #aaa #aaa;
}
.license_process_faq table.table_col th, .license_process_faq table.table_col td {
  font-size: 1rem;
  color: #555;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #aaa;
  line-height: 1.5;
  padding: 10px 0px;
}
.license_process_faq table.table_col th {
  height: 23px;
}
.license_process_faq table.table_col td {
  padding: 12px;
}
.license_process_faq table.table_col tr td:last-child {
  text-align: center;
}
.license_process_faq table.table_col thead {}
.license_process_faq table.table_col thead th, .license_process_faq table.table_col thead td {
  font-weight: 600px;
  text-align: center;
  color: #333;
  background: #F6F6F6;
}
.license_process_faq table.table_col thead th {}
.license_process_faq table.table_col thead td {
  text-align: left;
  padding-left: 10px;
}
.license_process_faq table.table_col tbody {}
.license_process_faq table.table_col tbody th, .license_process_faq table.table_col tbody td {
  font-weight: normal;
  text-align: center;
}
.license_process_faq table.table_col tbody th {
  text-align: left;
  padding-left: 10px;
}
.license_process_faq table.table_col tbody td {}
.license_process_faq table.table_col tbody td.t_value {
  text-align: left;
  padding-left: 10px;
}
.license_process_faq table.table_col .bg {
  background: #f2f2f2;
}
p.red {
  font-size: 1rem;
  color: #ff0000;
}
/* jQuery 탭의 컨텐츠 */
.tabCont {
  padding: 20px 0 0;
}
.tabCont div.tit3_2 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  color: #333;
  text-align: center;
  margin: 0 0 10px;
}
@media all and (max-width:768px) {
  .process_sp {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .process_sp .process_1sp {
    width: 30%;
    margin: 5px;
  }
}
.Table_gray {
  border-top: 2px solid #f76030;
}
.Table_gray thead th, .Table_gray thead td {
  background: #f6f6f6;
}
.up_req_point {
  background: #fafafa;
  padding: 20px;
}
/*===========================================*/
.condition_btn {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.condition_btn li {
  width: 16.666%;
  margin: -1px 0 0 -1px;
  position: relative;
}
.condition_btn li.on, .condition_btn li:hover {
  z-index: 2;
}
.condition_btn li a {
  display: block;
  min-width: 100px;
  height: 47px;
  line-height: 46px;
  letter-spacing: -0.05em;
  text-align: center;
  font-weight: 400;
  padding: 0 7px;
  /* margin:5px; */
  border: 1px solid #d2d2d2;
  background: #f8f9fb;
}
/* .condition_btn li a{display:block; width:115px; height:25px; line-height:25px; font-size:13px; letter-spacing:-0.05em; text-align:center; margin:2px; background:#ddd; border:1px solid #ccc;} */
.condition_btn li a:hover, .condition_btn li.on a {
  border: 1px solid #f76030;
  background: #fff;
  color: #f76030;
  box-shadow: 0px 5px 5px #f760301a;
}
/* .condition_btn li a:hover, .condition_btn li.on a{background:#d9371e; border:1px solid #c7240b; color:#fff;} */
.condition_btn li.first, #TCB00 {
  display: none !important;
}
.condition_btn2 {
  font-size: 0;
  margin: 5px 0 0;
}
.condition_btn2 li {
  float: left;
}
.condition_btn2 li a {
  display: block;
  width: auto;
  height: auto;
  line-height: 1em;
  padding: 9px 25px;
  font-size: 13px;
  letter-spacing: -0.05em;
  text-align: center;
  margin: 2px;
  background: #f8f9fb;
  border: 1px solid #ccc;
}
.condition_btn2 li a:hover, .condition_btn2 li.on a {
  border: 1px solid #f76030;
  background: #fff;
  color: #f76030;
  box-shadow: 0px 5px 5px #f760301a;
}
.condition_btn2 li.first, #TCB00 {
  display: none !important;
}
@media all and (max-width:768px) {
  .condition_btn2 li {
    width: 100%;
  }
  .condition_btn2 li a {
    width: 100%;
    padding: 6px 15px;
  }
}

/*
.tabCont {
  clear: both;
  background: #f2f2f2;
  padding: 20px;
}
.tabCont h5 {
  margin: 0 0 10px;
}
.tabCont .txtbox {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}
.tabCont .txtbox p {
  margin: 0 0 5px;
  font-weight: 600;
  color: #333;
  font-size: 13px;
  letter-spacing: -0.05em;
}
*/
@media all and (max-width:768px) {
  .condition_btn li {
    flex-basis: 50%;
  }
  .Table_default.left td {
    text-align: center;
    padding-left: 0px;
  }
}
.t3 {
  border: 5px solid #FDEEEA;
  padding: 15px 20px;
  line-height: 1.7;
  font-size: 1rem;
  text-align: justify;
  word-break: keep-all;
  border-radius: 10px;
}
.t4 {
  padding: 15px 20px;
  line-height: 1.7;
  font-size: 1rem;
  text-align: justify;
  word-break: keep-all;
  border-radius: 10px;
}
.t3 h5 {
  margin: 0 0 5px;
}
/*.contbox{font-size:1rem; line-height:1.7;}*/
.little-titletxt {
  margin-bottom: 10px;
  opacity: 1;
}
.over_warn li {
  font-size: 1.0625rem;
  position: relative;
  padding-left: 10px;
}
.over_warn li:not(:last-child) {
  margin-bottom: 3px;
}
.over_warn li::before {
  content: "";
  width: 6px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 0.8rem;
  left: 0;
}
.Process_quick {
  position: absolute;
  top: 370px;
  left: 50%;
  margin-left: 570px;
}
.Process_quick li {
  margin-bottom: 10px;
  display: block;
  overflow: hidden;
  *height: 95px;
}
.Quick_bar {
  position: absolute;
}
/*==============================*/
.license_process {
  position: relative;
}
.license_process a.btn1 {
  position: absolute;
  left: 56px;
  top: 181px;
  width: 340px;
  height: 50px;
  background: url(../img/contents/license_process_btn.jpg) left top no-repeat;
}
.license_process a.btn1:hover {
  background-image: url(../img/contents/license_process_btnon.jpg);
}
.btn_join {
  margin-left: 10px;
  /* display: inline-block; */
  text-align: center;
  font-size: 1rem;
  padding: 0px 10px;
  font-weight: 400;
  color: #fff !important;
  letter-spacing: -0.05em;
  background: #d9371e;
  /* border: 1px solid #b71d06; */
  border-radius: 5px;
}
/* 다운로드 버튼 */
.btn_download {
  display: inline-block;
  border: 1px solid #ccc;
  padding: 0 15px;
}
.btn_download span {
  display: inline-block;
  line-height: 30px;
  font-size: 1rem;
  letter-spacing: -0.05em;
  color: #333;
  padding-left: 20px;
  background: url(../img/contents/icon_download.gif) left 50% no-repeat;
}
.btn_download:hover {
  border-color: #d9371e;
}
.process2_downbtn {
  background: #F76030;
  color: #fff !important;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
  margin-bottom: 5px;
  font-size: 1.125rem;
  font-weight: 400;
}
/* 프로세스 */
.process_sp .process_1sp .process_1sp_div {
  background: #F7F8FA;
  border-radius: 5px;
  min-height: 160px;
  text-align: center;
}
.process_sp .process_1sp .process_1sp_div .process_1sp_div1 {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DCDCDC;
  font-weight: 600;
  border-radius: 5px 5px 0px 0px;
}
.process_sp .process_1sp .process_1sp_div .process_1sp_div2 {
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d2d2d2;
  border-top: none;
  border-radius: 0 0 5px 5px;
}
.process_sp .process_1sp .process_1sp_div .process_1sp_div2 > ul > li:first-child {}
.process_sp .process_1sp .process_1sp_div .process_1sp_div2 > ul > li:last-child {}
.process_sp .process_1sp .process_1sp_div .process_1sp_div2 > ul > li {
  border: 1px solid #DCDCDC;
  width: 80%;
  display: inline-block;
  margin: 5px 0;
}
.process_sp .process_1sp .process_1sp_div .process_1sp_div2 > ul > li a {
  display: block;
  padding: 6px 0;
}
.process_sp .process_1sp .process_1sp_div .process_1sp_div2 > ul > li p {
  font-weight: 500;
}
.process_sp {
  display: flex;
  justify-content: space-around;
}
.process_sp .process_1sp .process_1sp_div .process_1sp_div2 > p {
  font-weight: 500;
}
.process_sp .process_1sp {
  width: 20%;
  margin: 10px;
}
.process_sp .process_1sp:last-child {
  margin-right: none;
}
/* 펼쳐지는 형태 */
.license_process_faq {
  margin-top: 20px;
}
.license_process_faq li {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 10px;
}
.license_process_faq li:hover {
  border-color: #d9371e;
}
.license_process_faq li div.tit {
  height: 45px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
}
.license_process_faq li div.tit span {
  font-weight: 400;
}
.license_process_faq li div.tit i {
  font-size: 1.125rem;
  color: #f76030;
  margin-left: auto;
}
.license_process_faq li.on div.tit i {
  transform: rotate(180deg)
}
/*.license_process_faq li.on div.cont{display:block;}*/
.license_process_faq li div.cont {
  border-top: 1px solid #ccc;
  padding: 15px;
  overflow: hidden;
  display: none;
  font-size: 0.9375rem;
}
.license_process_faq li div.cont.on {
  display: block;
}
.license_process_faq li.on div.cont {
  display: block !important;
}
.license_process_faq a.btn_my {
  display: inline-block;
  padding: 5px 10px;
  font-size: 1rem;
  letter-spacing: -0.05em;
  color: #F76030;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
  /* background: #d9371e; */
  border: 1px solid #F76030;
  border-radius: 5px;
  margin-top: 20px;
}
/* 테이블 */
.license_process_faq table.table_col {
  background: #fff;
  border-width: 1px 0 0 1px;
  border-style: solid;
  border-color: #d9371e #aaa #aaa;
  margin: 10px 0px;
}
.license_process_faq table.table_col th, .license_process_faq table.table_col td {
  font-size: 1rem;
  color: #555;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #aaa;
  line-height: 1.5;
  padding: 10px 0px;
}
.license_process_faq table.table_col th {
  height: 23px;
}
.license_process_faq table.table_col td {
  padding: 12px 8px;
}
.license_process_faq table.table_col thead {}
.license_process_faq table.table_col thead th, .license_process_faq table.table_col thead td {
  font-weight: 600px;
  text-align: center;
  color: #333;
  background: #F6F6F6;
}
.license_process_faq table.table_col thead th {}
.license_process_faq table.table_col thead td {
  text-align: left;
  padding-left: 10px;
}
.license_process_faq table.table_col tbody {}
.license_process_faq table.table_col tbody th, .license_process_faq table.table_col tbody td {
  font-weight: normal;
  text-align: center;
}
.license_process_faq table.table_col tbody th {
  text-align: left;
  padding-left: 10px;
}
.license_process_faq table.table_col tbody td {}
.license_process_faq table.table_col tbody td.t_value {
  text-align: left;
  padding-left: 10px;
}
.license_process_faq table.table_col .bg {
  background: #f2f2f2;
}
p.red {
  font-size: 1rem;
  color: #ff0000;
}
.license-notice {
  background: #fafafa;
  border: 1px solid #e9e9e9;
  padding: 25px;
}
.license-notice .tit {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  letter-spacing: -0.05em;
}
.license-notice .cont {
  margin: 10px 0 0;
}
.license-notice .cont p {
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin: 5px 0 0;
}
.license-notice .cont p:first-child {
  margin: 0;
}
.license-notice .cont p font {
  display: inline-block;
  border-bottom: 1px solid #999;
}
.license-notice .cont p a {
  color: blue;
}
/* jQuery 탭의 컨텐츠 */
.tabCont div.tit3_2 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  color: #333;
  text-align: center;
  margin: 0 0 10px;
}
/* 추가 */
.line_bottom {
  border-bottom: 1px solid;
}
@media all and (max-width:768px) {
  .process_sp {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .process_sp .process_1sp {
    width: 30%;
    margin: 5px;
  }
}
/* 자격증재발급 */
.about_license {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.about_license .txt_box {
  width: 58%;
}
.about_license .txt_box p {
  font-size: 1.0625rem;
  line-height: 1.67;
  letter-spacing: -0.03em;
  margin-top: 30px;
  word-break: keep-all;
}
.about_license .img_box {
  width: 38%;
  text-align: right;
}
.about_license .img_box img {
  max-width: 100%;
}
.license_tb {
  width: 100%;
  margin-top: 30px;
  border-radius: 10px 10px 0 0;
  border-collapse: collapse;
  overflow: hidden;
}
.license_tb thead th {
  width: 33.33%;
  background: #e95a2f;
  font-weight: 400;
  color: #fff;
  padding: 12px 0;
}
.license_tb tbody td {
  border-bottom: 1px solid #d2d2d2;
  padding: 12px 0;
  text-align: center;
}
.issue_way {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.issue_way li {
  width: 48%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 30px;
}
.issue_way li .way_wrap {
  margin-bottom: 30px;
}
.issue_way li .way_wrap .way {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.issue_way li .way_wrap .way span {
  display: block;
  font-size: 28px;
  font-weight: 500;
  margin-left: 10px;
  letter-spacing: -0.05em
}
.issue_way li .way_wrap .warn p {
  font-size: 0.9375rem;
}
.issue_way li .btn_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.issue_way li .btn_wrap button, .issue_way li .btn_wrap a {
  width: 48%;
  font-size: 1.125rem;
  padding: 5px 0;
  border-radius: 10px;
  text-align: center;
}
.issue_way li .btn_wrap button.btn_ok, .issue_way li .btn_wrap a.btn_ok {
  color: #fff;
  background: #db4835;
}
.issue_way li .btn_wrap button.off, .issue_way li .btn_wrap a.off {
  color: #ccc;
  border: 1px solid #d2d2d2;
}
.my_license_list .my_list_toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  padding: 10px 15px;
  cursor: pointer;
}
.my_license_list .my_list_toggle i {
  font-size: 18px;
  color: #f76030;
}
.my_license_list.off .my_list_toggle i {
  transform: rotate(180deg);
}
.my_license_list .table_wrap {
  background: #fafafa;
  padding: 50px 15px;
}
.my_license_list .table_wrap table td {
  font-weight: 500;
}
.my_license_list .table_wrap table tbody td {
  padding: 10px 0;
}
.my_license_list .table_wrap table tbody a.btn_s {
  height: auto;
  padding: 3px 12px;
}
.my_license_list.off .table_wrap {
  display: none;
}
.in_tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.in_tab .in_btn {
  display: inline-block;
  background: #f76030;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
}
@media all and (max-width:768px) {
  .about_license {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .about_license .img_box {
    width: 100%;
    text-align: left;
  }
  .about_license .txt_box {
    width: 100%;
    margin-top: 30px;
  }
  /* .about_license .txt_box p br {display: none;} */
  .issue_way li {
    width: 100%;
  }
  .issue_way li:not(:last-child) {
    margin-bottom: 30px;
  }
  .issue_way li .way_wrap .way span {
    font-size: 1.5rem;
  }
  .my_license_list .table_wrap {
    padding: 30px 15px;
  }
}
.e-name_modify {
  background: #f2f4fa;
  padding: 7px;
}
/* 자주 묻는 질문 */
@media (max-width:768px) {
  .dep_slnb {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border-left: 1px solid #d2d2d2;
  }
  .dep_slnb li {
    flex: 30%;
  }
  .dep_slnb li:not(:last-child) a {
    border-bottom: none;
  }
  .dep_slnb li.on a {
    border: 1px solid #f76030;
  }
}
table.faq td.qna_title {
  display: block;
  margin-top: 10px;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  background: #fff;
  position: relative;
  z-index: 1;
}
table.faq div.faq-01 {
  width: 100%;
  display: none;
  box-sizing: border-box;
  border: 1px solid #e2e2e2;
  padding: 13px 5px 5px;
  margin: -8px 0 10px;
  background: #f9f9f9;
  border-radius: 0px 0px 10px 10px;
}
table.faq tr td:first-child {
  display: flex;
  align-items: center;
}
table.faq tr td form {
  padding-right: 10px
}
/*===== 마이페이지 =========*/
@media (max-width:768px) {
  #tab5 .c_member_list td:last-child {
    width: 30%;
  }
}
.my-page-notice p {
  color: red;
  font-size: 14px;
  line-height: 1.5
}
.my-page_self {
  width: 100%;
  padding: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  text-align: center
}
/*==== 설문 조사 ======*/
.survey {
  border: 1px solid #e4e4e4;
  padding: 15px 15px 5px;
}
.survey h6 {
  font-size: 17px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px
}
.survey-item li {
  width: calc(100% / 4 - 12px);
  flex-wrap: wrap;
  padding: 3px 10px;
}
.survey-item_pop li {
  width:48%;
  flex-wrap: wrap;
  padding: 3px 10px;
}


@media (max-width:992px) {
  .survey-item li {
    width: calc(100% / 2);
  }
  .survey-item li:last-child {
    width: 100%;
  }
  .survey-item.area li {
    width: calc(100% / 3);
  }
}
@media (max-width:766px) {
  .survey-item.area li {
    width: calc(100% / 2 - 12px);
  }
  .survey td .d-flex {
    flex-direction: row;
  }

}
.check.row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x))
}
.form-control2 {
  display: block;
  width: 100%;
  padding: 4px 10px;
  font-size: 15px;
  font-weight: 400;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}
.form-control3 {
  padding: 0px 10px;
  font-size: 15px;
  font-weight: 400;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}
/*===동의서=====*/
.agree-item {
  background: #fcf6f6;
  padding: 15px;
  border: 1px solid #e2e2e2;
}
.agree-item2 {
  background: #f6f4f4;
  text-align: center;
  padding: 70px 80px 90px;
  border: 1px solid #e2e2e2;
}
.agree-list td:nth-child(2) {
  text-align: left
}
/*===============================================*/
.gnb {
  position: relative;
  left: 0;
  padding: 8px 0;
  background: #fff;
  transition: inherit;
}
.gnb__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
}
.gnb__list {
  display: flex;
  position: relative
}
.gnb__list > *:last-child > *:last-child {
  border-right: 1px solid #D4D4D4;
}
.gnb__item {
  flex: 1;
  text-align: center;
  position: relative
}
.gnb__item a.gnb__link {
  font-weight: 600;
  font-size: 18px;
  color: #111;
}
.gnb__item a.gnb__link:hover {
  color: #E5180A;
}
.gnb__item a.gnb__link.active:before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: #E5180A;
  transform: translateX(-50%);
  transition: 2s;
}
.gnb-depth2 {
  z-index: 10;
  display: none;
  position: absolute;
  top: 41px;
  padding: 0;
  border-left: 1px solid #D4D4D4;
}
.gnb-depth2 > *:first-child {
  padding-top: 0px;
}
.gnb-depth2 > *:last-child {
  padding-bottom: 0;
}
.gnb-depth2__item {
  padding-bottom: 0px;
}
.gnb-depth2__link {
  font-weight: 400;
  font-size: 15px;
  color: #403A3A;
  padding: 6px 0;
  width: 100%;
  color: #333;
}
.gnb-depth2__link:hover {
  background: #506fe1;
  color: #fff;
}
.gnb__bg {
  display: none;
  position: absolute;
  top: 50px;
  left: -900px;
  width: 300%;
  height: 250px;
  background: #fff;
  box-shadow: 4px 3px 9px 0 rgba(0, 0, 0, 0.2);
}
.overlay {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent black */
  z-index: 1; /* Below the submenu */
  display: none; /* Initially hidden */
}




/*===== 전문 상담사검색 ==============*/
.join_form {
  border: none;
}
.join_form tr td {
  padding: 0;
  position: relative;
  height: 100%;
  padding: 0 /*  line-height: 42px;*/
}
.join_form td:not(:nth-child(4), :last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 35%;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.join_form td:nth-child(1), .join_form td:nth-child(5) {
  /*  width: 17%;*/
}
.join_form td:nth-child(2) {
  /*  width: 16%;*/
}
.join_form td:nth-child(3), .join_form td:nth-child(4) {
  /*  width: 23%;*/
  text-align: left;
  /*  background: #d93a1d;*/
  color: #fff;
  font-size: 15px;
}
.join_form td:nth-child(4) {
  /*  width: 27%;*/
}
/*
.join_form td select {
  width: 100%;
  height: unset;
  padding: 16px 0 15px;
  font-size: 16px;
  text-align: center;
  border: none;
  background: #d93a1d;
  color: #fff;
  cursor: pointer
}
*/
.join_form td select > option {
  color: #000;
  background: #fff;
}
/*
.join_form td input {
  width: 35%;
  
  height: 30px;
  line-height: 30px;

  font-size: 15px;
  border-radius: 5px;
  margin-left: 10px;
  margin-top: 0px;
}
*/
.join_form td:nth-child(4) input {
  width: 35%;
}
/*
.join_form td button {
  width: 100%;
  height: 100%;
  font-size: 15px;
  font-weight: 400;
  background: #b53018;
  padding: 15px 0;
  border-radius: 0
}
*/
/*
#second_level th {
  padding: 15px 0;
  background: #fff;
}
#second_level td {
  padding: 15px 0;
  color: #000;
}
*/
#second_level td:nth-child(3), #second_level td:nth-child(4) {
  white-space: normal
}
#second_level table .in-table tr:nth-child(1) {
  border-top: 1px solid #ccc;
}
#second_level table .in-table tr:last-child {
  border-bottom: 1px solid #ccc;
}
#second_level table .in-table tr td {
  background: #fff;
  text-align: left;
  height: auto
}
#second_level table .in-table2 tr:nth-child(1) {
  border-top: 0px solid #ccc;
}
#second_level table .in-table2 tr:last-child {
  border-bottom: 0px solid #ccc;
}
.sub-benner {
  position: relative;
  ;
  float: left;
  width: 100%;
  height: 197px;
  background: url(../old/img/benner_license.jpg) top left no-repeat;
  border-bottom: 1px dotted #ececec;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.sub-benner p {
  position: absolute;
  width: 70%;
  right: 0px;
  top: 50px;
}
.sub-benner p b {}
.join_form select {
  margin: 0px !important;
  border-radius: 0px;
  line-height: 42px;
}
@media (max-width:768px) {
  .join_form select {
    margin: 0px 0px;
  }
  .join_form tr td:first-child select {
    border-radius: 0px 0px 0px 0px;
  }
  .license1 .join_form td button {
    border-radius: 0px 0px 0px 0px;
  }
  .sub-benner {
    background: linear-gradient(#ffefe9, #ffffff);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border: 1px solid #f2aa91;
    border-bottom: none;
  }
  .sub-benner p {
    position: absolute;
    width: 80%;
    right: 10%;
    top: 30px;
  }
  .dep_slnb {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border-left: 1px solid #d2d2d2;
  }
  .dep_slnb li {
    flex: 50%;
  }
  .join_form td {
    display: block;
    clear: both;
    width: 100%;
  }
  .join_form td:nth-child(1), .join_form td:nth-child(5) {
    width: 100%;
  }
  .join_form td:nth-child(2) {
    width: 100%;
  }
  .join_form td:nth-child(3), .join_form td:nth-child(4) {
    width: 100%;
    font-size: 13px;
  }
  .join_form td:nth-child(4) {
    width: 100%;
  }
  .join_form td select {
    width: 100%;
    height: 42px;
    padding: 0px;
    font-size: 13px;
    text-align: center;
    margin: 0px;
    border: none;
    background: #d93a1d;
    color: #fff;
    cursor: pointer
  }
  .join_form td select > option {
    color: #000;
    background: #fff;
  }
  .join_form td input {
    float: right;
    width: 60%;
    height: 32px;
    line-height: 32px;
    font-size: 13px;
    margin-left: 0px;
    margin-right: 10px;
    margin-top: 5px;
  }
  .join_form td:nth-child(4) input {
    width: 60%;
  }
}
.search_box {
  /*	border:3px solid #f4dfdb;*/
  background: #f4dfdb;
  padding: 30px 10px;
}
.search_box ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center
}
.search_box li {
  position: relative;
  height: 37px;
}
.search_box ul li .redline-form .form-control {
  height: 37px;
  border: 0
}
.search_box ul li .form-group input, .search_box ul li .form-group select.nice-select2 {
  border-radius: 0px;
  background: #fff;
  margin-right: -2px;
  border: 0;
}
@media (max-width:1399px) {
  .search_box ul {
    justify-content: start;
  }
  .search_box li {
    margin: 2px 0
  }
  .search_box ul.se2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center
  }
}
@media (min-width:769px) {
  /*
  .search_box li:nth-child(1){width:230px;}
  .search_box li:nth-child(2){width:160px;}	
*/
  /*  .search_box li:nth-child(3){width:170px;}*/
  /*  .search_box li:nth-child(5){width:130px;}*/
  /*  .search_box li:nth-child(4),.search_box li:nth-child(6){width:180px;}*/
}
@media (max-width:768px) {
  .search_box ul li .form-group input[type=text], .search_box ul li .form-group select.nice-select2 {
    width: 100%;
  }
  .search_box label {
    width: 95px
  }
  .search_box button {
    width: 100%
  }
}
/* 검색 조건*/
.advanced-search-container {
  max-width: 100%;
  margin: 10px auto 40px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
}
.advanced-search-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center
}
.search-group1 {
  display: flex;
  /*  flex: 1;*/
  width: 35%;
}
.search-group2 {
  display: flex;
  /*  flex: 1;*/
  width: 57%;
}
.search-group3 {
  max-width: 70%;
  display: flex;
  flex: 1;
}
.search-group4 {
  max-width: 20%;
  display: flex;
/*  flex: 1;*/
}


.search-select {
  padding: 12px;
  border: 1px solid #ccc;
  /*  border-radius: 4px 0 0 4px;*/
  background-color: white;
  cursor: pointer;
  font-size: 15px;
  height: 45px;
  outline:none
}
.search-input {
  /*  flex: 1;*/
  padding: 8px;
  border: 1px solid #ccc;
  border-right: none;
  height: 45px;
  outline: none
}
.logic-select {
  padding: 13px 13px 12px;
  border: 1px solid #ccc;
  border-right: none;
  font-size: 15px;
  height: 45px
}
.logic-select2 {
  padding: 13px 13px 12px;
  border: 1px solid #ccc;
  border-right: none;
  font-size: 15px;
  height: 45px
}


.search-input:first-child {
  width: 60%;
}
.search-input:last-child {
  width: 45%;
}
.logic-select,.logic-select2 {
  flex: 2;
}
.search-select:nth-child(2) {
  width: 24%;
  border-right: none;
} /*전문영역*/
.search-select:nth-child(3) {
  min-width: 18%;
  border-right: none;
} /*지역*/
.search-select:nth-child(4) {
  width: 25%;
  border-right: none;
} 
/*연도별*/
.search-button {
  padding: 0 10px;
  background-color: var(--color-orange-500);
  color: white;
  border: none;
  min-width: 8%;
  cursor: pointer;
  transition: all 0.3s;
/*  height: 35px*/
}
.search-button:hover {
  background-color: var(--color-orange-600);
}
.fa-search {
  margin-right: 1px;
}
.search-group3 .search-select:nth-child(1) {
  width: 30%;
  border-right: none;
}
.search-group3 .search-select:nth-child(2) {
  width: 20%;
  border-right: none;
}
.search-group3 .search-select:nth-child(3) {
  width: 20%;
  border-right: none;
}
.search-group3 .search-select:nth-child(4) {
  width: 30%;
  border-right: none;
}
.search-group4 .search-select:nth-child(2) {
  width: 45%;
  border-right: none;
  border-left:none
}

@media (max-width: 768px) {
  .advanced-search-form {
    flex-direction: column;
  }
  .search-group, .logic-select, .search-button {
    width: 100%;
  }
  .search-input {
    border-left: 1px solid #ddd;
    flex: 1;
  }
  .search-group, .search-select {
    display: flex;
    flex: 1;
    /*  min-width:16%;*/
  }
  .search-group1 {
    flex: 1;
    width: 100%;
  }
  .search-group2 {
    flex: 1;
    width: 100%;
    flex-wrap: wrap
  }
  .search-group3, .search-group4 {
    min-width: 100%;
    flex-wrap: wrap
  }
  .search-group3 .search-select:nth-child(4),.search-group4 .search-select:nth-child(2) {
    width: 30%;
    border-right: 1px solid #ddd
  }
  .logic-select {
    min-width: 100%;
    border-right: 1px solid #ddd;
    border-bottom: none
  }
     .logic-select2 {
    border-right: 1px solid #ddd;
    border-bottom: none
  } 
    
    
  .search-input:last-child {
    border-right: 1px solid #ddd
  }
  .search-input {
    border-bottom: 0px solid #ddd
  }
  .search-select {
    width: 25%;
  } /*연도별*/
  .search-select:nth-child(2) {
    border-right: none;
    bg
  } /*전문영역*/
  .search-select:nth-child(3) {} /*지역*/
  .search-select:nth-child(4) {
    border-right: 1px solid #ddd
  }
  img.no-email{
		max-width:80%;
		text-align: center;
		margin-bottom: 20px
	}
}
@media (min-width: 776px) and (max-width: 1200px) {
  .search-select:nth-child(4) {
    border-right: 1px solid #ddd
  }
  .search-button i {
    display: none
  }
}
@media (max-width: 578px) {
	img.no-email{
		max-width: 35%;
		text-align: center;
		margin-bottom: 20px
	}
}


/*=== 수련자격 =====*/
table.table-license {
  clear: both;
  float: left;
  width: 100%;
  height: auto;
  border-top: 1px solid #ff6600;
}
table.table-license th, .table-license td {
  padding: 6px 12px;
  border-bottom: 1px solid #d2d2d2;
}
table.table-license th {
  background: #fef7f4;
  padding: 10px 0;
  text-align: center
}
table.table-license td {
  text-align: center;
}
table.table-license td a i {
  border: 1px solid #c3c3c3;
  border-radius: 100%;
  padding: 4px;
}
table.table-license td.title-sub {
  background: #f6f6f6;
}
table.table-license td.title-subject {
  background: #fef7f4;
}
table.table-license td a {
  background: #ffffff;
  border: 1px solid #c3c3c3;
  border-radius: 4px;
  padding: 2px 5px;
  margin: 2px 3px;
  font-size: 14px
}
table.table-license td a.on {
  background: #212121;
  border: 1px solid #212121;
  color: #ffffff;
}
table.table-license td a.del, table.table-license td a.add {
  background: #fff;
  border: 0px solid #212121;
  color: #666;
}
table.table-license ul {
  width: 100%;
  clear: both;
}
table.table-license li {
  float: left;
  height: auto;
}
@media all and (max-width:842px) {
  .map_table th, .map_table td {
    padding: 10px 3px;
  }
  .map_table th:nth-child(2), .map_table td:nth-child(2) {
    min-width: 129px;
  }
}
#complete1 ul.complete {
  display: flex;
  align-items: center;
  justify-content: space-between
}
.career article div {
  min-width: 180px
}
.price {
  width: 75%;
  padding: 50px 50px 90px;
  text-align: center;
  background: #f4f2f8;
  margin: 0 auto;
}
/* 심사/시험 결과발표 */
.c_member_list tbody th, .c_member_list tbody td {
  height: auto;
  padding: 8px 2px;
}




/*.result_wrap:not(:first-of-type) {display: none;}*/
.result_wrap {
  display: none;
}
.result_wrap.on {
  display: block;
}
@media (max-width: 768px) {
  .dep_slnb li {
    width: 33.33%;
  }
  #step_status .info_wrap {
    flex-direction: column;
  }
}
.bo_table tr td.user-img img {
  width: 140px;
  height: auto
}
.bo_table.f-6 tr td {
  font-size: 14px;
}
.bo_table.f-6 tr td.num {
  font-weight: 600;
  background: #f7f5fd
}
.bo_table.f-6 tr td.left-line {
  border-right: 1px solid #ddd
}
}
.contents_box input::placeholder {
  color: #aaa;
  font-size: 13px;
}
.form-group input::placeholder {
  color: #a3a3a3;
  font-size: 14px;
  font-weight: 300
}
.redline-form label{
      display: block;
      text-align: left;
      margin-bottom: 2px;
      font-weight: 500;
}
.bo_table > span a{
    background: #ccc;
    font-size: 12px;
    padding: 2px 6px;
}
.bo_table > span a:hover{
    background: #333;
    color:#fff;
	background: green
}


#obstacle p {
  line-height: 1.35
}
.over-line {
  text-decoration: line-through red
}
/*== 지도 ==*/
.area .map_area {
  width: 100%;
  min-height: 400px;
  border: 1px solid #ddd;
}
.map_icon {
  background: #ed7432;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  border-radius: 8px;
}
.area p {
  line-height: 1.32
}
.scrolling-text {
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  animation: scroll 10s linear infinite;
  font-size: 14px;
  color: #333;
}
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*==유의사항=====*/
.note-box ul.note_list {
  padding: 15px;
  background: #fcf4ec;
  color: #111;
  font-style: 15px;
  font-weight: 400;
}
.note-box ul.note_list li {
  position: relative;
  padding-left: 25px;
  line-height: 1.35;
  margin-bottom: 10px
}
.note-box ul.note_list li:last-child {
  margin-bottom: 0
}
.note-box ul.note_list li::before {
  font-family: "Font Awesome 6 Pro";
  display: inline-block;
  content: "\f058";
  font-weight: 700;
  font-size: 17px;
  position: absolute;
  left: 0px;
  top: 0px
}
.note-box .paper div {
  border: 1px solid #ddd;
  padding: 15px;
  margin: 5px
}
.range {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
}
.range_list li {
  font-size: 14px;
  position: relative;
  padding-left: 8px;
  line-height: 1.3;
  margin-bottom: 8px
}
.range_list li:last-child {
  margin-bottom: 0
}
.range_list li:before {
  font-family: "Font Awesome 6 Pro";
  display: inline-block;
  content: "\f04b";
  font-weight: 700;
  font-size: 6px;
  position: absolute;
  left: -1px;
  top: 5px
}
.range h6 {
  padding: 0 8px 5px 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 6px;
  color: #f76030
}
.post_list {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
}
.post_list p {
  line-height: 1.35;
}
#char-counter span {
  font-size: 15px;
  color: #333;
  font-weight: 500
}
#char-counter {
  color: #666;
  font-weight: 400
}
/*수험표*/
.photo {
  display: flex;
  align-items: flex-start;
}
.box {
  border: 0px solid #ddd;
  padding: 8px;
}
.sencond_box {
  height: 300px;
  background: #fff;
  text-align: center;
}
.photo_box {
  /*    border: 1px solid #000000;*/
  height: auto;
  background: #fff;
  display: flex;
  justify-content: center;
}
.picture {
  background: #fff;
  text-align: center;
}
.info_box {
	width:100%;
/*  height: 245px;*/
}
.info_box td {
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
  text-align: center;
}
/*
.right {
  border-left: 3px solid #ccc;
  padding: 5px;
}
*/
.sub_right {
  height: 285px;
  border: 1px solid #aaa;
  border-left: 0px;
}
.sub_right td {
  border-left: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  padding-left: 3px;
}
.box_table2 {
  border: 1px solid #aaa;
}
.subject {
  font-size: 14pt;
  font-weight: bold;
  color: #000;
  padding: 6px 0 10px
}
.subject_title {
  font-size: 13pt;
  font-weight: bold;
}
ul.alert_01 {
  list-style-type: none;
  padding: 8px 4px
}
ul.alert_01 font {
  font-size: 10pt;
  font-weight: bold;
}
ul.alert_01 li {
  font-size: 9pt;
}
/*====== 온라인 수련회 =========*/
.level_item .level {
  border-radius: 50px;
  padding: 4px 15px;
  background: #e5710a;
  color: #fff;
  margin-top: -3px;
  margin-right: 10px;
  font-weight: 600;
  font-size: 15px;
}
@media (max-width: 1199px) {
  .level_item .level {
    text-align: center;
    padding: 2px 10px;
    background: #e5710a;
    color: #fff;
    margin: 3px;
    font-weight: 500;
    font-size: 14px;
  }
}
  @media (max-width: 559px) {
    .level_item .level {
      /*  position: absolute;*/
      text-align: center;
      border-radius: 50px;
      display: block;
      padding: 2px 10px;
      background: #e5710a;
      color: #fff;
      margin: 3px;
      font-weight: 500;
      font-size: 14px;
    }
  }
  @media (min-width: 560px) and (max-width: 900px) {
    .level_item .level {
      display: none
    }
  }


.sub-sidebar2{
	background: #f8f8f8;
	padding: 8px;
	width:100%
	
}
.btn_area{
	background: #f8edec;
	padding: 10px 20px
	
}	
.btn_area_width{
 max-width: 1380px;
  margin: 0 auto
}
.btn_area p{line-height: 1.3}
.btn_list li,.btn_list2 li{
	margin: 4px
}	
.btn_list li a{
	background: #FF7C7C;
	color:#FEEBEB;
	font-weight: 500;
	font-size: 14px;
	padding: 3px 8px;
	border-radius:6px;
}
.btn_list li a:hover{
	background: #FA5050;
	color: #fff
}

.day-list{
    display: flex;
   flex-wrap: wrap;
    font-size: 15px;
}
.day-list p{
    margin: 4px 0
}

.day-list p:first-child{
    background: #777;
    padding: 2px 15px;
    color:#fff;
   border:1px solid #e5e5e5; 
}
.day-list p:last-child{
    background: #f7f7f7;
    border-top:1px solid #e5e5e5;
    border-bottom:1px solid #e5e5e5;
    border-left:0px solid #e5e5e5;
    border-right:0px solid #e5e5e5;
    padding: 2px 20px;
}
.day-list p:last-child{
    border-right:1px solid #e5e5e5;
}
/*
.day-start p:first-child{
    border-radius:8px 0 0 8px
}
*/
.method p:last-child{
    border-right:1px solid #e5e5e5;
/*    border-radius:0 8px 8px 0*/
}
 @media (max-width: 559px) {
   .day-list p:last-child{
      width:100%;
       text-align: left;
     }
  .day-list div{
     width:100%
     }
     .day-list p:first-child{
         width:60%
     } 
   .day-list p:nth-child(1),.day-list p:nth-child(2){
    border-right:1px solid #e5e5e5;
}  
     
     
}




.btn_list2 li a{
	background: #FD9E58;
	color:#fff;
	font-weight: 400;
	font-size: 14px;
	padding: 3px 8px;
	border-radius:6px;
}
.btn_list2 li a:hover{
	background: #E78137;
}
.btn_area_width .m-btn-list li{
	width:100%;
	margin: 0 20px;
	padding: 2px 6px;
	margin-bottom: 0px
}
.btn_area_width .m-btn-list li a{
	background: #ddd;
	padding: 2px;
}
#MobileNav .btn_area_width .m-btn-list li{
	border-top:0px solid #fff
}
#MobileNav .btn_area_width .m-btn-list li a {
	font-size: 14px;
	font-weight: 500
}
#MobileNav .btn_area_width .m-btn-list li a i{
	display: none
}

#vn-click{
cursor:pointer;
display:inline-block
}
#vn-info{
display:none;
text-align:center;
background:#eee;
padding:20px 20px
}
.search_b{
	position: relative
}	
	
.search_b #vn-click{
	position: absolute;
	top:-5.5px;
	right:240px;
	z-index: 1
}	
@media (max-width: 560px) {
  #vn-click {
    padding: 4px 10px;
    color: #fff;
    cursor: pointer;
    display: inline-block
  }
}
.button3 {
  background-color: #f4f4f4;
  color: #333;
  border: none;
	border-left:1px solid #ccc;
  border-right:1px solid #ccc;
  padding: 6.5px 14px;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}
.button3:hover {
  background-color: #ccc;
}
.arrow {
  animation: moveArrow 0.5s infinite alternate;
}
@keyframes moveArrow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.description li{
	margin:5px 0;
	font-size: 14px;
	line-height: 1.35;
    padding-left: 5px;
    color:#666;
    font-weight: 400;
}
.description li span{
	display: inline-block;
	width:110px;
	border:1px solid #e3e3e3;
	padding:2px;
	font-size: 15px;
	color:#111;
	text-align: center;
	margin-right: 6px;
    padding-left:-20px
}	
.description li span.des2{font-weight: 600;text-decoration: line-through}	
.description li span.des3{
   color:#666;
}		
.description li span.des4{
   color:red;
   text-decoration: line-through
}
.description li span.des5{
   color:red;
}
.description p{
        padding-left: 120px
    } 

@media (max-width: 560px) {
	.description li span{
		display: block;
		margin-bottom: 4px;
        margin-left: -7px
	}
	.description li{
		margin-bottom: 12px
	}
    .description p{
        padding-left: 0
    }
	.order-2{order: 1 !important}
	.order-1{order:2 !important}
}
.order a{
	font-size: 13px;
	font-weight: 600;
	border:1px solid #ccc;
	padding: 2px 10px;
    border-radius: 15px;
}
p.info{
	line-height: 1.35;
	margin: 0;
	font-size: 15px;
	color:#666
}
p.info a{
	padding: 4px;
	color:#EE670D;
	font-weight: 600;
	font-size: 14px;
}
p.info a:hover{
	color:#DC3112
}

.bo_table textarea.vh-320{
	height: 320px
}
.hark{
	display: flex;
	align-items: center;
	width:100%
}
.secession{
	font-size:14px;
	color:#333;
	line-height: 1.35;
	background: #f3f3f3;
	padding: 20px;
}
.secession p{
	margin-bottom: 6px
}
form.event{
	background: #e4e4e4;
	padding:16px 20px 23px;
	border-radius: 10px;
}

/*===멤버쉽 카드========*/
.m-card_bg{
   max-width:760px;
   height: 486px;
    background: url("../img/logo/membershipcard02.jpg")no-repeat;
    background-size: cover;
    background-position: center right;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative
}
.name-item{
	display: flex;
    position: absolute;
    top:90px;
    left:50px;
	color: #fff;
}
.name-item h3{color:#fee526}
.member-info{
    position: absolute;
    top:150px;
    left:50px;
	color: #fff;
}
.member-info li{
    margin-bottom: 15px;
	display: flex;
	color:rgba(255,255,255,.5)
}
.member-info li:first-child{
	font-size: 21px;
	color:#db402e
}
.member-info li span{
	display: block;
    font-weight: 500;
    padding-left:15px;
	color:rgba(255,255,255,1)
}
.qrcode{
    position: absolute;
    right:30px;
    bottom:40px;
    width:120px;
    height:120px;
}
.photo{
/*
    position: absolute;
    right:30px;
    top:80px;
*/
/*
    width:150px;
    height:auto;
*/
	border:3px solid #fff
}

.photo2{
    position: absolute;
    right:30px;
    top:90px;
    width:160px;
    height:auto;
    border:3px solid #fff
}


@media (max-width: 780px) {
	.member-info li{
     font-size: 22px;
}
	
.member-info li span{
	font-size: 21px;
	}
	.name-item,.member-info{
		left:35px
	} 
}
@media (max-width: 767px) {
	.name-item{
		flex-direction: column
	}
	.member-info li{
	flex-direction: column	
	}	
	.member-info{
		top:180px;
		line-height: 1.4
	} 
	.member-info li span{
		 padding-left:4px;
		font-size: 16px;
	}
	.photo{
		max-width:110px;
	}
	.qrcode{
		position: absolute;
		max-width:90px;
		bottom:20px
	}
}
/*주간소식====*/
ul.week{
    position: relative
}
ul.week li{
    display: flex;
    align-items: center;
    position: relative;
    line-height: 1.4;
    padding-left:10px;
    margin-top: 8px;
    margin-bottom: 8px
}
ul.week2 li{
    display: flex;
    align-items: center;
    position: relative;
    line-height: 1.4;
    padding-left:25px;
    margin-top: 8px;
    margin-bottom: 8px
}
ul.week li:last-child,ul.week2 li:last-child{
    margin-bottom: 8px
}
/*
ul.week li:before{
    position: absolute;
    display: inline-block;
    content: "";
    top:7px;
    left:6px;
    width:4px;
    height:4px;
    background: red
}
*/
ul.week2 li:before{
    position: absolute;
    display: inline-block;
    content: "";
    top:7px;
    left:15px;
    width:4px;
    height:4px;
    background: red
}
.btn-line{
    display: inline-block;
    font-size: 14px;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    background: #ffffff;
    padding: 5px 12px;
    color: #ff6600;
    margin: 0 0 5px 15px
}
.btn-line:hover{
    background: #EA686A;
    color: #fff;
	border: 1px solid #EA686A;
}

.btn-line2{
    display: inline-block;
    border: 1px solid #ff6600;
    border-radius: 3px;
    background: #ff6600;
    padding: 5px 12px;
    color: #fff;
}
.btn-line2:hover{
    background: #333;
    color: #fff;
	border: 1px solid #333;
}



.program{
	background: #f6f6f6;
	border-radius:6px;
	padding: 20px;
}
.program p{
	margin-bottom: 2px;
}
.week_bg {
    width: 100%;
    height: 115px;
    background: url("../../assets/old/img/title_weekly.jpg") top center no-repeat;
    text-indent: -9999px;

}

/* 갤러리 프레임 ==*/

.gallery-area {
  position: relative;
  overflow: hidden;
}
a.gallery{
	display: flex;
	justify-content: center
}
.gallery-item{
  padding:0;
  border: 1px solid #ddd;
  text-align: center;
  position: relative;
  background: var(--color-white);
  border-radius: 6px;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  width: 100%;
  text-align: left;
  margin-bottom: 25px
}


.gallery_img {
  display: inline-block;
  width:100%;
  max-height: 230px;
  overflow: hidden;
}
.gallery_img img {
  width: auto;
  object-fit:cover;
  display: block;
}
.gallery_body{
	padding: 0px 15px
}
.gallery-item h6 {
  margin:5px 0;
  width: auto;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
}
.gallery-item p{
	font-weight: 400;
	font-size: 14px;
	color:#888;
	padding-bottom: 10px
}


/*==   ====*/
.on-title{
    font-size: 25px;
    font-weight: 500
}
.on-title span{
    color:#1889EB;
    font-size: 25px;
}
ul.pass {
  display: flex;
}

ul.pass li {
  min-width:150px;
  text-align: center;
  padding: 6px 12px;
  border: 1px solid #ccc;
  background-color:#fff;
   color: #ccc;
}

ul.pass li:nth-child(2) {
  border-left: 0;
  border-right: 0;
}

ul.pass li.active:nth-of-type(1) {
  background-color:#5ea010;
  color:#fff
}
ul.pass li.active:nth-of-type(2) {
  background-color: red;
    color:#fff
}
ul.pass li.active:nth-of-type(3) {
  background-color: gray;
    color:#fff
}

/*==온라인수련회-기관용===*/
.dash_box{
  width:100%;
  background: var(--color-white);
  border-radius: 8px;
/*  border:1px solid #ddd;*/
  box-shadow: var(--box-shadow);
}
.dash_box h5{
	font-size: 16px;
	font-weight: 600;
}
.dash_box > div:first-child{
	padding :10px 15px 6px 15px;
}
.dash_head{
	background: #ccc;
	border-radius: 8px 8px 0 0;
    border:1px solid #ccc
}

.dash_body{
	padding: 20px;
	font-size: 15px;
}
/*상담전문가 ==*/

.table-webzine lable{
    font-weight: 400;
}

.table-webzine td>img{
      min-width: 100px !important;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
}
td.text-column{
   padding: 30px 0;
}
.text-column h5{
    font-size: 16px;
}
.text-column p{
    line-height: 1.35;
    margin-top: 10px;
    font-size: 15px;
}
.text-column p, .text-column h5{
    margin-left: 20px
}
.table-webzine tbody tr.under-line td {
  border-bottom: 1px dashed #ccc;
}


.card-new{
	position: relative;
	width:100%;
	height: 250px;
	overflow: hidden
}
.card-new_box{
	border:1px solid #e4e4e4;
}
.card-new_body{
	padding: 5px 15px 15px;
    min-height:110px;
	display: flex;
	flex-direction: column;
	justify-content: space-between
}
.card-new_body h6{
	text-align: left;
	font-weight: 500;
	margin-bottom: 20px
}
.card-new_body p{
	font-weight: 400;
	font-size: 13px;
	font-family: "Pretendard Variable", Pretendard, -apple-system;
}

.newletter{
	position: relative;
	width:100%;
	height:auto;
	
}
.news-img{
	max-width:100%;
}

.sample_img{
    width:100%;
    height: auto;
    padding: 0;
    
}
.image-box {
/*      border: 1px solid #ccc;*/
/*      padding: 16px;*/
      margin-bottom: 16px;
      text-align: center;
      background-color: #f8f9fa;
    margin: 10px
    }

.image-placeholder {
      width: 100%;
      height: auto;
      background-color: #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }

.text-area{
  padding-top: 520px;
}
.gb{
	   position: relative;
       width:1000px;
       height:1230px;
       padding: 20px
}
.gb_img{ 
	background:url("../img/news_thum/bg_case0101.jpg")no-repeat;
	 background-size: contain;
     background-position:top;
}
.gb_img2{ 
	background:url("../img/news_thum/bg_case0201.jpg")no-repeat; 
	background-size: contain;
     background-position:top;
}

.gb_img3{
	background:url("../img/news_thum/bg_case0301.jpg")no-repeat; 
    background-size: contain;
    background-position:top;
}
.gb_img4{
	background:url("../img/news_thum/bg_case0401.jpg")no-repeat; 
    background-size: contain;
    background-position:top;
}
.gb_img5{
	background:url("../img/news_thum/bg_case0501.jpg")no-repeat; 
    background-size: contain;
    background-position:top;
}

.sympathy{
    display: block;
    width:100%;
    text-align: center;
}
.sympathy a{
    background: #f27e1f;
    color:#fff;
    padding: 6px 10px
}

.sympathy a:hover{
    background: #de6c11;
    color:#fff;
    padding: 6px 10px
}


.text-area_body {
    width:90%;
  text-align: center;
  position: absolute;
    top:550px;
    left:50%;
    transform: translateX(-50%);
    padding:0 20px
    }

.text-area_body3{
    width:90%;
    text-align: left;
    position: absolute;
    top:500px;
    left:50%;
    transform: translateX(-50%);
    padding:0 20px
    }
.text-wrap {
      white-space: normal;
      word-break: break-word;
    }
.host{
    padding-bottom: 20px;
    border-bottom:1px solid #eee
}
.date p{
    padding-top: 10px;
    font-size: 14px;
    text-align: left;
    line-height: 1.4;
    
}
/*.host p{text-align: left}*/
.host p:first-child{
    font-size: 18px;
}
@media(max-width:576px){
    .text-area_body {top:250px;}
    .text-area_body3{top:200px;}
}

@media(max-width:1200px){
    .text-area_body {
        top:400px;
    width:90%;
    }
 .text-area_body3{top:380px;}   
}
@media(max-width:992px){
    .text-area_body {top:280px;}
    .text-area_body3{top:350px;}
}

.gb_img h3{color:hotpink}



    .box-left{
      position: fixed;
      top: 150;
      left: 400;
      height: 250px;
      width: 200px;
      padding: 20px;
      box-sizing: border-box;
      z-index: 1000;
    }

/*
    .content-wrapper {
      margin-left: 16.6667%;
    }
*/

    .box-right{
      height: 400px;
      overflow-y: auto;
      background-color: #fff;
      padding: 20px;
      box-sizing: border-box;
    }

    @media (max-width: 575.98px) {
      .box-left {
        position: static;
        width:200px;
        height: 250px;
		 padding-left: 150px;
      }

      .content-wrapper {
        margin-left: 0;
      }
    }

    .box-right p {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 8px 0;
    }

/*FAQ2*/

    .nav-tabs {
      border-bottom: 1px solid #dee2e6;
    }

    .nav-tabs .nav-link {
      border: none;
      border-bottom: 2px solid transparent;
      color: #495057;
      font-weight: 500;
      margin-right: 20px;
      padding: 10px 5px;
    }

    .nav-tabs .nav-link:hover {
      border-bottom: 2px solid #adb5bd;
    }

    .nav-tabs .nav-link.active {
      border-bottom: 2px solid #0d6efd;
      color: #0d6efd;
      background-color: transparent;
    }

/*분과 학회 탭*/


.nav-tabs2 {
      border-bottom: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .nav-tabs2 .nav-link {
      border-radius: 999px;
      border: 1px solid #dee2e6;
      padding:2px 12px;
      color: #555;
	 font-size: 15px;
      background-color: #f8f9fa;
      transition: background-color 0.3s, color 0.3s;
    }

    .nav-tabs2 .nav-link.active {
      background-color: #131A6D;;
      color: #fff;
      border-color: #131A6D;
    }
.tab-pane{
	margin-top: 20px
}
   .nav-tabs2 .tab-content {
/*      border: 1px solid #dee2e6;*/
      border-top: none;
      padding: 1rem;
      border-radius: 0 0 0.5rem 0.5rem;
      background-color: #fff;
    }

    .more-button {
      border: 1px solid #dee2e6;
      background-color: #f8f9fa;
      color: #555;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s, color 0.3s;
    }

    .more-button:hover {
      background-color: #e2e6ea;
      color: #000;
    }










.accordion-header button{
	font-weight: 500;
}
.accordion-body{
	font-size: 14px;
	line-height: 1.35
}
.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    color: var(--bs-accordion-btn-color);
    text-align: left;
    background-color: var(--bs-accordion-btn-bg);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition)
}
 tr.active td:first-child {
      color: red;
      background: 
    }

/*==============================================*/
.qe1 .accordion-item {
      margin: 20px 0;
      border-top: 1px solid #dee2e6;
    }

.qe1 .accordion-item:not(:first-of-type) {
      border-top: 1px solid #dee2e6;
    }

.qe1 .accordion-button:focus {
      box-shadow: none;
      border: 1px solid red;
    }

.qe1 .accordion-body-content {
      display: flex;
      align-items: center;
      gap: 10px;
    }

.qe1 .accordion-body-text {
      flex: 0 0 95%;
      word-break: break-word;
    }

.qe1 .accordion-body-btn {
      flex: 0 0 10%;
      display: flex;
      gap: 5px;
    }


    @media (max-width: 991.98px) {
      .accordion-body-content {
        flex-direction: column;
        align-items: stretch;
      }

.qe1 .accordion-body-text,
      .accordion-body-btn {
        flex: 0 0 100%;
      }

.qe1 .accordion-body-btn {
        margin-top: 10px;
        justify-content: flex-start;
      }
    }

    /* 추가된 번호 클래스 (커스텀 예시 스타일) */
    .accordion-item1 { }
    .accordion-item2 { }
    .accordion-item3 { }

  .custom-select {width: 150px; }


 .icon-box {
     display: flex;
     align-items: center;
     justify-content: center;
      border: 1px solid #ddd;
      padding: 20px;
      text-align: center;
     background: #fff;
  
     border-radius:4px;
    }
.icon-box img{
    width:85%;
    height:auto
}


 @media (max-width: 768.98px) {
    .icon-box{
         margin: 6px
     } 
}

/*---  연차학술대회 메인=============*/
    .scholarly_box {
      width: 100%;

    }

    .banner_box1, .banner_box2 {
      height: 380px;
    }

    .banner_box1{
      background: url("../old/img/visual01.jpg")no-repeat;
      background-size: cover;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 120
    }

    .banner_box2 {
      background: #fff;
	  box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.2);
      padding: 1rem;
      display: flex;
      flex-direction: column;
    }

    .inner-grid {
      display: flex;
      flex-wrap: wrap;
      gap:1rem;
      height: 100%;
    }

    .inner-box {
      flex: 0 0 calc(50% - 0.5rem); 
      max-width: calc(50% - 0.5rem);
      height: calc(50% - 0.5rem);   
      background: #f9f9f9;
	  border:1px solid #ddd;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
	  box-sizing: border-box
    }
.inner-box p img{
    display: inline-block;
   max-width:80px;
    padding: 5px 10px
}
.inner-box p{
    font-size: 18px;
    font-weight: 500;
    color:#000;
}
@media (max-width: 576.98px) {
  .inner-box {
    flex: 0 0 calc(25% - 0.5rem);  /* 가로 4칸 */
    max-width: calc(24% - 0.5rem);
    height: 100px; /* 높이는 내용에 따라 또는 지정 가능 */
    padding: 10px 0;
  }

  .inner-box p img {
    max-width: 60px;
  }

  .inner-box p {
    font-size: 14px;
    line-height: 1.2;
    white-space: normal
  }
   .banner_box2 {
     height: calc(104% - 0.25rem);  
    }
  .banner_box1{
      background: url("../old/img/visual01.jpg")no-repeat;
      background-size: contain;
    height: 200px
    }  
    
}






    .schedule {
      display: flex;
      gap: 1rem;
      padding: 0;
      margin: 0;
      list-style: none;
      margin-bottom: 8px;
    
    }

    .schedule li {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: #f8f9fa;
      padding: 6px 10px;
      border-radius: 8px;
      flex: 1;
    }

    .schedule li > p {
      white-space: nowrap;
      margin: 0;
      font-weight: 500;
    }

    .schedule .dot-line {
      flex-grow: 1;
      height: 1px;
      background: repeating-linear-gradient(
        to right,
        red,
        red 2px,
        transparent 2px,
        transparent 4px
      );
    }

    .schedule li > div {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .schedule li > div p {
      margin: 0;
      font-size: 14px;
      color: #333;
    }

    @media (max-width: 576px) {
      .schedule {
        flex-direction: column;
      }

      .schedule li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0rem;
      }

      .schedule .dot-line {
        width: 100%;
        height: 1px;
        margin: 10px 0;
      }
    }
.schedule_box {
  background: rgb(255, 255, 255);
  padding: 15px;
  border-radius: 4px;
  height: auto;
  border: 1px solid rgb(238, 238, 238);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-height: 550px
}



/* 학회소개-학회소개 */
.intro_top {
  position: relative;
  font-size: 1rem;
  line-height: 1.9;
  text-align: justify;
  letter-spacing: -0.05em;
/*  display: flex;*/
  justify-content: space-between;
}
.intro_top .intro_top_txt > p:first-child {
  font-size: 1.35rem;
  color: #333333;
  text-align: center;
  line-height:1.42
}
.intro_top .intro_top_txt > p:nth-child(2) {
  font-size: 2.375rem;
  line-height: 1.25em;
  text-align: center;
  font-weight: 600
}
.intro_top .intro_top_txt > p:nth-child(2) > span {
  font-size: inherit;
  color: #e95a2f;
}
.intro_top_desc {
  text-align: justify;
}
.intro_top div {
  margin: 0 0 30px;
  align-self: stretch;
}
.intro_top .video {
  width: 100%;
  height: 330px;
  padding: 16px 0 0 6px;

}
.intro_content {
  clear: both;
  float: left;
  width: 100%;
  height: auto;
  margin-top: 50px;
  text-align: center;
  border-top: 1px solid #f7d7d2;
/*  border-bottom: 1px solid #f7d7d2;*/
 margin-bottom: 30px
}
.intro_content > img:first-child {
  max-width: 80%;
  padding: 50px 0px;
  margin: auto;
}
.intro_content > img:nth-child(2) {
  max-width: 100%;
  padding: 50px 0px;
}
.intro_ci {
  display: flex;
  justify-content: space-between;
}
.intro_ci .intro_ci_img {
  width: 48%;
  text-align: center;
  border: 1px solid #bbb;
  padding: 80px 40px;
  align-self: self-start;
}

@media(max-width:567px){
    
  .intro_ci .intro_ci_img {
  width: 48%;
  text-align: center;
  border: 1px solid #bbb;
  padding: 80px 20px;
  align-self: self-start;
}  
}
.intro_ci .intro_ci_txt {
  width: 48%;
}
.intro_ci .intro_ci_txt > div > p:first-child {
  color: #e95a2f;
  font-size: 1.25rem;
  font-weight: 600;
}
.intro_ci .intro_ci_txt > div:first-child {
  color: #e95a2f;
  display: flex;
  justify-content: space-between;
}
.intro_ci .intro_ci_desc {
  font-size: 1rem;
  line-height: 1.8
}
.ci_download{text-align:right; font-size:0; margin:10px 0 0; clear:both;}
.ci_download a{
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #e95a2f;
    margin-left: 10px;
    overflow: hidden;
    border-radius: 10px;
	background: #e95a2f
}
.ci_download a b{float: left;
    font-weight: 500;
    color: #fff;
    font-size: 1.1rem;}

.ci_download a span{float:left; width:28px; height:37px; background:url(../img/contents/icon_download.gif) 50% 50% no-repeat;}

.ci_download a:hover{
	background-color:#111;
	border: 1px solid #111;
	color:#fff;
}


/* 학회소개-학회장 인사말 */


.greeting2 {
  overflow: hidden;
  text-align: justify;
  position: relative;
}
.greeting2 div:first-child {
  position: absolute;
  left: 0px;
  width: 300px;
  height: 343px;
  background: url(../img/contents/kca_greeting_bg.jpg) 0 0 no-repeat;
  text-align: end;
}
.greeting2 div:first-child img {
  width: 100%;
}
.greeting2 .sub_title_txt {
  padding-top: 130px;
  padding-bottom: 100px;
  z-index: 10;
  position: relative;
  margin-left: 350px;
}
.greeting2 .sub_title_txt p:first-child {
  font-size: 1.25rem;
}
.greeting2 .sub_title_txt p:first-child .sub_title_txt_orange {
  color: #e95a2f;
  font-size: 1.25rem;
}
.greeting2 .sub_title_txt p:last-child {
  font-size: 1.875rem;
  margin-bottom: 60px;
  text-shadow: #fff 1px 0 10px;
 line-height: 1.5
}
@media (max-width: 768px) {
    .greeting2 div:first-child>img {
        width: 100%;
        max-width: 100%;
    }
	.greeting2 div {width:100%;}
    .greeting2 div:first-child { position:relative; 0px 20px 0; width:240px; height:274px; margin:0 auto;}
	
	.greeting2 .sub_title_txt {padding-top:30px; padding-bottom:0px; margin-left:0px;}
    .greeting2 div:first-child>img{ width:100%;max-width: 100%;}
	.greeting2 .sub_title_txt p:last-child{font-size:1.5rem; margin-bottom: 20px; letter-spacing: -1.5px;}
}
	


.greeting .sign {
  text-align: right;
  font-size: 1rem;
  color: #666;
  margin: 40px 0 0;
}
.greeting .sign b {
  color: #444;
}
.greeting .sign b strong {
  font-weight: 600;
  color: #000;
}
.greeting .sub_title_txt {
  padding-top: 130px;
  padding-bottom: 100px;
  z-index: 10;
  position: relative;
  margin-left: 350px;
}
.greeting .sub_title_txt p:first-child {
  font-size: 1.25rem;
}
.greeting .sub_title_txt p:first-child .sub_title_txt_orange {
  color: #e95a2f;
  font-size: 1.25rem;
}
.greeting .sub_title_txt p:last-child {
  font-size: 1.875rem;
  margin-bottom: 60px;
  text-shadow: #fff 1px 0 10px;
 line-height: 1.5
}

@media all and (max-width:768px) {
    .intro_top .video {
        width: 100%;
        height: 200px;
        padding: 0px;
        margin-left: 0px;
    }
    .intro_top {
        flex-flow: wrap;
    }
    .intro_top .video {
        margin-left: unset;
    }
    .intro_ci {
        flex-direction: column;
    }
    .intro_ci .intro_ci_img {
        width: 100%;
    }
    .intro_ci .intro_ci_txt {
        width: 100%;
        margin-top: 20px;
    }
    .intro_content > img:first-child {
        width: 100%;
        max-width: 100%;
    }
    .intro_content {
        margin-bottom: 50px;
    }
	
}

.btn-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #666;  
  background-color: #fff; 
  color: #000;             
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.btn-circle:hover {
  background-color: #000;  /* 호버 시 배경 검정 */
  color: #fff;             /* 아이콘 흰색 */
}

.info-box{
	background: #f4f4f4;
	border:2px solid #ccc;
	padding: 15px;
	margin-bottom: 20px;
}
.info-box p{
	position: relative;
	margin-left:15px;
	font-weight: 500;
	color:#000
}
.info-box p:before{
	width:5px;
	height: 5px;
	background: #666;
	content: "";
	position: absolute;
	display: block;
	top:12px;
	margin-left:-12px
}
    .count-input {
      width: 80px;
      margin: auto;
    }
    /* 원형 버튼 스타일 */
    .circle-btn {
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }
    /* 아이콘 색상 흰색 */
    .circle-btn i {
      color: white;
      font-size: 18px;
    }
  .addRowBtn {
    cursor: pointer;
    color: #007bff;
  }
  .addRowBtn:hover {
    color: #0056b3;
  }

/*=============================*/
  .table-container {
    width: 1136px;
/*    margin: 30px auto;*/
	overflow-x: auto;
  }

  /* thead 고정 */
.table-fixed thead th {
  position: sticky;
  top: 0;
  background: #eee;
  z-index: 3; 
  line-height: 1.35;
  height: 41px;
  font-weight: 500;
  border-bottom: 1px solid #ccc; 
  box-shadow: inset 0 -1px 0 #ccc; 
}

/* 두 번째 줄 헤더 */
.table-fixed thead tr:nth-child(2) th {
  position: sticky;
  top: 40px; 
  background: #eee;
  z-index: 3;
  border-bottom: 1px solid #ccc;
  box-shadow: inset 0 -1px 0 #ccc;
}
.table-fixed thead th:nth-child(1){background: #f8f2ee;}


.table-fixed tbody td {
  text-align: center; /* 가운데 맞춤 */
  height: 42px;
  line-height: 1.4
}
.table-fixed tbody tr td:last-child{
	font-weight: 600
}
 .table-fixed {
    min-width: 1120px;
  }
  /* tbody 스크롤 */
  .table-scroll {
    display: block;
/*
    max-height: 800px; 
    overflow-y: auto;
*/
    overflow-x: auto;
    border-bottom: 1px solid #eee;
  }

  /* 모든 셀 1px 라인 */
  .table-scroll .table-bordered > :not(caption) > * > * {
/*    border: 1px solid #ccc;*/
  }

  /* 테이블 좌우 세로 라인 제거 */
  .table-scroll .table-bordered > :not(caption) > * > :first-child {
    border-left: none;
  }
  .table-scroll .table-bordered > :not(caption) > * > :last-child {
    border-right: none;
  }

  /* 가운데 정렬 */
  .table-scroll th,.table-scroll td {
    text-align: center;
    vertical-align: middle;
   font-size: 13px;
  }
.contents_box h5 span.category{
	color:#E5631A;
	font-weight: 500;
	font-size: 18px;
	margin-left: 0
}
 .num-circle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;            
      height: 22px; 
	  line-height: 22px;
      border-radius: 50%;
      background: #0d6efd; 
      color: white !important;
      font-weight: 600;
      font-size: 14px;
      box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    }

.hidden-table {
      display: none;
      margin-top: 20px;
    }

  .search-box {
    max-width: 1136px;
    padding: 0 150px;
    margin: 0 auto;
  }

  .search-form,.search-form2,.search-form3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 0;
    overflow: hidden;
  }


.form-select option {
  text-align: center;
}

.form-select {
  text-align:left;         
}


  .search-form .form-control,
  .search-form .form-select,
  .search-form button {
    border: none;
    border-left: 1px solid #ccc;
    border-radius: 0;
  }
  .search-form > *:first-child {
    border-left: none;
  }

  .search-form2 .form-control,
  .search-form2 .form-select,
  .search-form2 button {
    border: none;
    border-left: 1px solid #ccc;
    border-radius: 0;
  }

.search-form2 > *:first-child {
    border-left: none;
  }

  .search-form3 .form-control,
  .search-form3 .form-select,
  .search-form3 button {
    border: none;
    border-left: 1px solid #ccc;
    border-radius: 0;
  }
.search-form3 > *:first-child {
    border-left: none;
  }



  /* 모바일: 세로 한 줄씩 */
  @media (max-width: 767px) {
      .search-form, .search-form2, .search-form3 {
      flex-wrap: wrap;

    }
    .search-form > * {
      border-left: 1px solid #ccc;
    }
    .search-form > *:first-child,
    .search-form > *:nth-child(3) {
      border-left: none;
	 flex: 0 0 50% !important;
    }
	  .search-form > *:nth-child(4) {
      border-left: 1px solid #ccc;
	 flex: 0 0 50% !important;
    }
    .search-form input:nth-child(1),
    .search-form input:nth-child(2) {
      flex: 0 0 50% !important;
      border-bottom: 1px solid #ccc;
	  height: 45px
    }
    .search-form select:nth-child(3),
    .search-form select:nth-child(4) {
      flex: 0 0 100% !important;
      border-bottom: 1px solid #ccc;
    }
	.search-form2 select:nth-child(4){border-left: 0px solid #ccc;}

	  
    .search-form button {
      flex: 0 0 100% !important;
    }
	  
	.search-form3 > * {
      border-left: 1px solid #ccc;
    }
    .search-form3 > *:first-child,
    .search-form3 > *:nth-child(3) {
      border-left: none;
    }
    .search-form3 input:nth-child(1),
    .search-form3 input:nth-child(2) {
      flex: 0 0 50% !important;
      border-bottom: 1px solid #ccc;
	  height: 45px;
    }
	.search-form3 select:nth-child(3) 
    .search-form3 select:nth-child(4),
    .search-form3 select:nth-child(5) {
      flex: 0 0 100% !important;
      border-bottom: 1px solid #ccc;
	  width:100%
    }
    .search-form3 button {
      flex: 0 0 100% !important;
    }  
	  
	  
	  
	  
  }

  /* 태블릿: 2줄 배치 */
  @media (min-width: 768px) and (max-width: 991px) {
    .search-form {
      flex-wrap: wrap;
    }
    .search-form > * {
      border-left: 1px solid #ccc;
    }
    .search-form > *:first-child,
    .search-form > *:nth-child(3) {
      border-left: none;
	  flex: 0 0 50% !important;
    }
    .search-form > *:nth-child(4) {
      border-left: 1px solid #ccc;
	  flex: 0 0 50% !important;
    }
    .search-form input:nth-child(1),
    .search-form input:nth-child(2) {
      flex: 0 0 50% !important;
      border-bottom: 1px solid #ccc;
	  height: 45px
    }
    .search-form select:nth-child(3),
    .search-form select:nth-child(4) {
      flex: 0 0 100% !important;
      border-bottom: 1px solid #ccc;
    }
    .search-form button {
      flex: 0 0 100% !important;
    }
  }

/* 태블릿 이하(≤ 991.98px): 3개씩 1줄, 버튼은 100% */
@media (max-width: 991.98px) {
 .search-form2 > .form-select,
.search-form2 > .form-control,
.search-form2 > .search-button {
  border-radius: 0;
  border-bottom: 1px solid #ccc; 
  min-width: 0; 
  height:35px
}
  .search-form2 > .form-select,
  .search-form2 > .form-control {
    flex: 0 0 33.333% !important; 
    max-width: 33.333% !important;
  }
  .search-form2 > .search-button {
    flex: 0 0 100% !important; 
    max-width: 100% !important;
	border-right:1px solid #ccc
  }
.search-form2 select:nth-child(4){border-left: 0px solid #ccc;}
   .search-form3 input:nth-child(1),
    .search-form3 input:nth-child(2) {
      flex: 0 0 50% !important;
      border-bottom: 1px solid #ccc;
	  height: 45px;
    }
	.search-form3 select:nth-child(3),
    .search-form3 select:nth-child(4),
    .search-form3 select:nth-child(5) {
      flex: 0 0 33.333% !important;
      border-bottom: 1px solid #ccc;
	  width:100%;
	  height: 45px
    }
  .search-form3 > .search-button {
    flex: 0 0 100% !important; 
    max-width: 100% !important;
  }	
	
	
}


@media (max-width: 575.98px) {
  .search-form2 > .form-select,
  .search-form2 > .form-control {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
  }
  .search-form2 > .search-button {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
   .search-form3 input:nth-child(1),
    .search-form3 input:nth-child(2) {
      flex: 0 0 50% !important;
      border-bottom: 1px solid #ccc;
	  height: 45px;
    }
	.search-form3 select:nth-child(3),
    .search-form3 select:nth-child(4),
    .search-form3 select:nth-child(5) {
      flex: 0 0 33.333% !important;
      border-bottom: 1px solid #ccc;
	  width:100%;
	  height: 45px
    }
	
	
}


.title {
    display: flex;
    align-items: center; 
    justify-content: center; 
    position: relative;
}
.title h5 {
    flex: 0 0 100%;
    text-align: center;
    margin: 0; 
}
.title span {
    position: absolute;
    right: 10px;
}
.min-h-230{
	min-height: 230px
}
.bo-info {
  gap: 0.5rem; /* g-2 유사 간격 */
  list-style: none;
  padding: 0;
  margin: 0;
}

.bo-info li {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.bo-info li:not(:last-child)::after {
  content: "|";
  display: inline-block;
  margin-left: 12px; 
  color: #999;
  font-style: 10px;
}
.bo-info img {
  width: 16px; 
  height: 16px; 
  object-fit: contain;
  display: block; 
}
input[type="image"] {
  width: 100px;
}
.bo_table img.biz-logo {
	display:inline-block;
	width:auto;
	height: 85px;
	margin-left: 10px
	}

.find{
  width: 90%; 
  margin: 0 auto; 	
}
.mail-start{color:#fff; font-size: 17px;}
.mail-start p.top-line{border-top:1px solid rgba(255,255,255,0.3)}
