/* 형광펜효과 모든페이지 Title */
/*왼쪽에서 오른쪽으로 이동하는 에니메이션*/
.to-right-underline{
  position: relative;
}
.to-right-underline:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0px;
  height: 2px;
  margin: 5px 0 0;
  transition: all 0.2s ease-in-out;
  transition-duration: 0.3s;
  opacity: 0;
  background-color: var(--falcon-primary); /*#8fd3f4*/;        
}
.to-right-underline:hover:after{
  width: 100%;
  opacity: 1;
}

/*왼쪽에서 오른쪽으로 이동하는 에니메이션:끝*/

/*가운데서 좌우로 펼쳐지는 라인 에니메이션*/
.spread-underline {
  color: #333;
  text-decoration: none;
  display: inline-block;
  padding: 15px 0;
  position: relative;
}
.spread-underline:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #ffb000;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.spread-underline:hover:after { 
  width: 100%; 
  left: 0; 
}
/*가운데서 좌우로 펼쳐지는 라인 에니메이션:끝*/

/*형광펜 위로 올라오는 에니메애션*/
.highlight {
  background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
  background-repeat: no-repeat;
  background-size: 100% 30%;
  background-position: 0 88%;
  transition: background-size 0.25s ease-in;
}
.highlight:hover{
  background-size: 100% 100%;
}
/*형광펜 위로 올라오는 에니메애션:끝*/

/*위에서 살짝 떨어지는 밑줄*/
.drop-in-underline {
  position: relative;
  padding-bottom: 10px;
}
.drop-in-underline:before{
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 2px;
  background-color: #b9f;
}
.drop-in-underline:before{
  opacity: 0;
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-transition: opacity 0s, -webkit-transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0s, -webkit-transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0s;
  transition: transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0s, -webkit-transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.drop-in-underline:hover:before{
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 아코디언 색상 */
.accordion-button:focus {
    z-index: 3;
    border-color: var(--falcon-accordion-btn-focus-border-color);
    outline: 0;
    -webkit-box-shadow: var(--falcon-accordion-btn-focus-box-shadow);
    box-shadow: var(--falcon-accordion-btn-focus-box-shadow);
}
.accordion-button:hover { z-index: 2; }
.accordion-button:not(.collapsed){ background-color: #cfe2ff; }
/* .accordion-button{ background-color: rgba(var(--falcon-light-rgb), 1); } */

/* Select Box 색상 */
.bg-rate-secondary{
  background-color: var(--falcon-secondary-bg-subtle)/*#e3e6ea*/;
  color: var(--falcon-secondary-text-emphasis)/*#7d899b*/
}
.bg-rate-danger{
  background-color: var(--falcon-danger-bg-subtle) /*#fad7dd*/;
  color: var(--falcon-danger-text-emphasis)/*#932338*/;
}
.bg-rate-warning{
  background-color: var(--falcon-warning-bg-subtle)/*#fde6d8*/;
  color: var(--falcon-warning-text-emphasis)/*#9d5228*/;
}
.bg-rate-orange{ background-color: #ffffcc; color:#cc6600; }
.bg-rate-success{
  background-color: var(--falcon-success-bg-subtle)/*#ccf6e4*/;
  color: var(--falcon-success-text-emphasis) /*#00864e*/;
}
.bg-rate-green{ background-color: #ccffcc; color: #009966; }
.bg-rate-info{
  background-color: var(--falcon-info-bg-subtle)/*#d4f2ff*/;
  color: var(--falcon-info-text-emphasis) /*#1978a2*/;
} 
.bg-rate-primary{
  background-color: var(--falcon-primary-bg-subtle)/*#d5e5fa*/;
  color: var(--falcon-primary-text-emphasis)/*#1c4f93*/;
}
.bg-rate-purple{ background-color: #ffccff; color: #6f42c1; }
.bg-rate-purpleB{ background-color: #bda6e3; color: #6610f2; }
.bg-rate-dark{
  background-color: var(--falcon-dark-bg-subtle)/*#ced1d4*/;
  color: var(--falcon-dark-text-emphasis)/*#070f19*/;
}

:root {
  --bs-success: #198754;
  --bs-gray-300: #dee2e6;
  /* --theme-color3: #85f523; */
  --theme-color3: #fbd713;
  --falcon-dark-rgb: 11, 23, 39;
}

/*********************************
/* Scroll Up Css Start
*********************************/
.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 1px var(--bs-gray-300);
					box-shadow: inset 0 0 0 1px var(--bs-gray-300);
  /* -webkit-box-shadow: inset 0 0 0 2px rgba(255, 87, 70, 0.3);
          box-shadow: inset 0 0 0 2px rgba(255, 87, 70, 0.3); */          
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
	/* z-index: 1000; */
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "^";  
  content: url(/assets/img/btntop.png);  
  font-family: "Poppins";
  font-weight: 900;
  text-align: center;
  line-height: 46px;
  font-size: 18px;  
  color: var(--theme-color3);
  left: 0;
  top: 0;
	width: 45px;
  height: 45px;  
  cursor: pointer;
  display: block;
  z-index: 100;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  /* stroke: #ff5746; */
  stroke: var(--theme-color3);
  stroke-width: 5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/*********************************
/* Scroll Up Css End
*********************************/