@charset "utf-8";
/************************************************************************
 * filename     : sub-common.css
 * description  : uvote sub common style CSS
 * date         : 2024.08.26
************************************************************************/

/*===== LAYOUT =====*/
body{
  color:#1F2330;
}
body.modal-open{
  overflow:hidden;
}
.wrapper{
  padding-bottom:25rem;
  position:relative;
}

/*===== HEADER =====*/
#header {
  height: var(--header-height);
  position: fixed;
  top: 0; left: 0; right:0;
  padding: 0 1.5rem;
  background-color: #fff;
  border-bottom:1px solid #D4D4D4;
  z-index: 9;
  transition: all .5s;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, .15);
}
#header.fixed-header{
  position: fixed;
  top: -130px; left: 0; right:0;
  animation: slide-down 0.7s;
  opacity: 0.9;
}
#header-in{
  max-width:1280px;
  margin:0 auto;
  padding:.8rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-toggle {
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
}


/*===== MEDIA QUERIES : MOBILE (NAV) =====*/
@media screen and (max-width: 768px) {

  /*===== HEADER =====*/
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: var(--dark-color);
    color: var(--dark-color);
    width: 100%;
    height: 100vh;
    padding: 1rem 0;
    z-index: var(--z-fixed);
    -webkit-transition: .5s;
    transition: .5s;
  }
  .header-logo {
    display: block;
    padding-right: 50px;
  }
  .nav-top{
    flex-direction: column;
  }
  .nav-top .nav-list-util{
    padding: .8rem 0;
    margin: 1rem 0;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

}

.header-logo{
  display: block;
  font-size:inherit;
}
.header-logo img{
  height:25px;
}
.nav-content {
  padding:0 1.5rem;
}
.nav-top {
  display:flex;
}
.nav-top .nav-list-util {
  flex:1;
}
.nav-top .nav-list-util .nav-link {
  font-size: .9rem;
  color: #666;
  margin-left: 1rem;
  position:relative;
}
.nav-top .nav-list-util .nav-link::after{
  content: '';
  width: 1px;
  height: 11px;
  background-color: rgba(0, 0, 0, .15);
  position: absolute;
  right: -11px;
  top: 4px;
}
.nav-top .nav-list-util .nav-link:last-child::after{
  display:none;
}
.nav-top .nav-list-util .nav-link:hover {
  color: #333;
  filter: brightness(.95);
}

.nav-bottom{
  display:flex;
}
.nav-bottom .nav-close{
  position: absolute;
  right: 1.5rem; top:1rem;
  font-size: 1.3rem;
  padding: .25rem;
  color: #4f5367;
  border-radius: 50%;
  cursor: pointer;
}
.nav-bottom .nav-close:hover{
  filter: brightness(1.5);
}
.nav-bottom .nav-menu {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.nav-bottom .nav-menu .nav-list .nav-item {
  margin: 1.5rem 0;
}
.nav-bottom .nav-menu .nav-list .nav-item .nav-link{
  color: #fff;
  white-space: nowrap;
}
.nav-bottom .nav-menu .nav-list .nav-item .nav-link:hover{
  color: #fff;
  filter: brightness(1.5);
}
.show {
  left: 0;
}
.nav-bottom .nav-menu .nav-list .nav-item .nav-link.active {
  color: #fff;
}


/*===== CONTENT =====*/
#content{
  padding:4.5rem 1.5rem;
}
#content-in{
  max-width:1280px;
  margin:0 auto;
}
.content-header{
  display:flex;
  flex-direction: column;
  padding-bottom:.5rem;
}
.content-header::after{
  content:'';
  display:block;
  clear:both;
}
.content-header .header-title{
  font-size:1.4rem;
  font-weight:600;
  flex-grow: 1;
  padding-bottom:5px;
}
.content-header .header-title small{
  font-size:1.4rem;
  font-weight:600;
  flex-grow: 1;
}
.content-header .header-location .breadcrumb{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}
.content-header .header-location .breadcrumb .breadcrumb-item{
  padding-left: 0.2rem;
  font-size:.85rem;
  color:rgba(31, 35, 48, 0.3);
}
.content-header .header-location .breadcrumb .breadcrumb-item a,
.content-header .header-location .breadcrumb .breadcrumb-item a i{
  font-size:.85rem;
  color:rgba(31, 35, 48, 0.3);
}
.content-header .header-location .breadcrumb .breadcrumb-item.active{
  color:#333;
  font-weight:600;
}
.content-header .header-location .breadcrumb-item+.breadcrumb-item::before {
  font-size:1rem;
  display:inline-block;
  padding-right: 0.2rem;
  color: rgba(31, 35, 48, 0.3);
  content: "\e93f";
  font-family: xeicon !important;
  vertical-align: -2px;
}
.content-header .header-location .breadcrumb .breadcrumb-item i{
  vertical-align: -2px;
}