html {
    overflow-y: scroll;
}
body {
    margin: 0;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
}
.header {
//		    background: #333;
    /*background-color: rgb(0, 88, 80);*/
    /*background-image: url('../img/dimmer_80.png');*/
    background-color: white;
    position: fixed;
    top: 0;
    transition: top 0.2s ease-in-out;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 2px rgba(0,0,0,.2);
    border-bottom: 1px solid #ccc;
    overflow: visible;
}
.title a {
    color: rgb(51, 51, 51);
    text-decoration: none;
}
.sics-subtitle {
    margin: 2.5px 0 0 5px;
}
.sics-subtitle span {
    font-size: 10px;
    display: block;
    letter-spacing: 0;
}
.sics-subtitle span:first-child {
}
.sics-subtitle span:last-child {
    /*letter-spacing: 1.3px;*/
}
.nav-up {
    top: -110px;
    box-shadow: none;
}
.header-content {
    margin: auto auto;
    padding: 0 80px 0 30px;
    /*max-width: 1580px;*/
    height: 60px;
    display: flex;
}
.header-left {
    height: 100%;
    align-items: center;
    display: inline-flex;
    flex-shrink: 0;
}
.header-middle {
    /*height: 100%;*/
    /*align-items: center;*/
    /*display: inline-flex;*/
    /*margin-left: auto;*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.module-title {
    height: 60px;
    line-height: 60px;
    text-align: center;
    /*font-size: 16px;*/
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}
.module-title a, .module-title a:hover {
    color: rgb(51, 51, 51);
    text-decoration: none;
}
.header-right {
    height: 100%;
    align-items: center;
    display: inline-flex;
    margin-left: auto;
    margin-right: 6px;
}
.header-bottom {
    height: 30px;
    background: #333;
}
.header-bottom-content {
    margin: auto auto;
    /*padding: 0 60px;*/
    /*max-width: 1580px;*/
    height: 100%;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}
.user-profile {
    height: 100%;
    align-items: center;
    display: inline-flex;
    margin-left: 30px;
    margin-right: 5px;
}
.user-profile .user-image {
    width: 36px;
    height: 36px;
    margin-right: 12px;
}
.user-image img {
    width: 100%;
    height: 100%;
    /*border: 1px solid #ccc;*/
    border-radius: 50%;
}
.category {
    display: inline-block;
    color: #bbb;
    font-size: 13px;
    font-weight: 400;
    padding: 0 10px;
}
.category a {
    text-decoration: none;
    color: #bbb;
}
.category.selected, .category.selected a {
    color: #fff;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
    font-weight: 500;
}
.subject {
    display: inline-block;
    color: white;
    font-size: 14px;
    font-weight: 400;
    padding: 5px 10px;
}
.subject.current {
    border-radius: 5px;
}
.subject.current a {
    font-weight: 800;
//            background-image: linear-gradient(#fff 0%, #fff 100%);
    /*background-image: linear-gradient(transparent 90%, #fff 40%);*/
}
.subject a {
    text-decoration: none;
    /*color: rgb(51, 51, 51);*/
    color: #888;
    font-weight: 500;
}
.logo {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
}
h1 {
    display: inline-block;
    margin: 0 0 0 15px;
    font-size: 24px;
    font-weight: 400;
}
h1 span {
    font-size: 18px;
    letter-spacing: 1px;
    margin-left: 3px;
}
h2 {
    font-size: 26px;
}

@-webkit-keyframes swing {
    50% { transform: translateY(-7px); }
    100% { transform: translateY(0px); }
}
@keyframes swing {
    50% { transform: translateY(-7px); }
    100% { transform: translateY(0px); }
}
.swing:hover
{
    -webkit-animation: swing 0.4s ease;
    animation: swing 0.4s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.body-container {
    width: 100%;
    display: flex;
    position: relative;
    min-height: 100%;
}
.left {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    border-right: 1px solid #ccc;
    padding: 100px 20px;
    font-weight: 400;
    z-index: 1;
}
.left-item {
  margin: 20px 0;
  font-size: 13px;
    font-weight: 500;
}
.left-item i {
  margin-right: 10px;
}
.left-item a {
  color: #777;
}
.left-item.login-required i, .left-item.login-required a {
  color: #aaa;
}
.left-item.current a {
    font-weight: 600;
}
.main-container {
    flex-grow: 1;
    width: 100%;
}
.main {
  /*position: absolute;*/
  /*right: 0;*/
  // float: right;
  /*width: calc(100% - 200px);*/
  width: 100%;
  /*max-width: calc(100% - 360px);*/
  margin-top: 60px;
  padding: 40px 80px;
  margin-left: auto;
  min-height: calc(100vh - 60px - 155px);
}

.dropdown {
  position: relative;
  display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    padding-right: 20px;
}
.uesrname {
    height: fit-content;
}
.user-more {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.dropdown-content {
    display: none;
    position: absolute;
    border-top: 1px solid #eee;
    background-color: #fff;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.2);
    padding: 12px 30px;
    z-index: 1;
    right: -5px;
    top: 60px;
}
.dropdown-content a {
    color: rgb(51, 51, 51);
    text-decoration: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.sics-tooltip-container {
  position: relative;
/ / margin: 0 5 em;
  display: flex;
  /*align-items: center;*/
  align-items: flex-start;
/ / height: 100 %;
}
.sics-tooltip-content {
  position: absolute;
  top: 0;
  left: -10px;
  margin-top: 10px;
  padding: 18px 22px 14px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  //color: #000;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 12px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  z-index: 10;
}
.sics-tooltip-content.menu-item {
    padding: 10px 22px;
    left: calc(50% + 10px);
    transform: translate(-50%, 0);
}
.sics-tooltip-content.left-align {
    z-index: 20;
    left: 0;
}
.sics-tooltip-container:hover .sics-tooltip-content {
  top: 100%;
  opacity: 1;
}
.sics-tooltip-content-sub {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    display: block;
    margin-top: 5px;
    float: right;
}
.login-btn a {
    font-weight: 500;
    text-decoration: none;
    color: rgb(51, 187, 198);
}
.tooltip-container-left-panel {
  position: relative;
/ / margin: 0 5 em;
  display: flex;
  /*align-items: center;*/
  align-items: flex-start;
/ / height: 100 %;
}
.tooltip-container-left-panel:hover span {
  top: 100%;
  opacity: 1;
}

.tooltip-content-left-panel {
  position: absolute;
  top: 60%;
  right: -10px;
  margin-top: 10px;
  padding: 15px 18px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  //color: #000;
  border-radius: 50px;
  background-color: #eee;
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.07);

  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  z-index: 10;
}

.menu-btn {
    width: 26px;
    height: 26px;
}
.menu-btn.left-menu {
    margin-left: 0;
    margin-right: 20px;
}
.menu-btn.right-menu {
    margin-left: 20px;
    margin-right: 0;
}

a, a:active, a:visited {
    text-decoration: none;
    color: rgb(51, 51, 51);
}

.breadcrumb-top {
    font-size: 12px;
    color: #555;
    margin-left: 3px;
}
.breadcrumb-top a, .breadcrumb-top a:hover {
    color: #555;
    text-decoration: none;
}
.breadcrumb-text {
    margin-left: 10px;
    font-weight: 500;
    color: #555;
}
.breadcrumb-separator {
    margin: 0 5px;
}

.highlight {
    background-color: rgb(255, 247, 167);
}

.footer {
    padding: 40px 80px 40px 55px;
    background-color: #f5f5f5;
    font-size: 12px;
    color: rgb(152,152,152);
}
.footer hr {
    margin: 6px 0;
}
.footer-logo {
    max-width: 100%;
}

.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

.menu-trigger {
	position: relative;
	width: 20px;
	height: 26px;
}

.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2.5px;
	background-color: #555;
	border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
	top: 5px;
}
.menu-trigger span:nth-of-type(2) {
	top: 11px;
    width: 20px;
}
.menu-trigger span:nth-of-type(3) {
	top: 17px;
}
.menu-trigger.back span:nth-of-type(1), .menu-trigger.back span:nth-of-type(3) {
	width : 11px;
}
.menu-trigger.back span:nth-of-type(1) {
	-webkit-transform : translate(-1px, 2px) rotate(-45deg);
	transform : translate(-1px, 2px) rotate(-45deg);
}
.menu-trigger.back span:nth-of-type(3) {
	-webkit-transform : translate(-1px, -2px) rotate(45deg);
	transform : translate(-1px, -2px) rotate(45deg);
}


.side-menu {
    height: 100%;
    width: 0;
    z-index: 5000;
    position: fixed;
    right: 0;
    top: 0;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
}
.side-menu-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.3);
}
.side-menu-container {
    position: fixed;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: 5001;
    transition: width 0.7s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    -moz-transition: width 0.7s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    -webkit-transition: width 0.7s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    -o-transition: width 0.7s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    overflow: hidden;
    box-sizing: border-box;
}
.side-menu-container > div, .side-menu-container > a > div {
    padding-left: 25px;
    padding-right: 25px;
}
.side-menu-container > .side-menu-top {
    line-height: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
}
.side-menu-title {
    width: 196px;
    overflow: hidden;
    font-weight: 400;
    margin-left: 12.5px;
    padding-top: 1px;
}
.side-menu-title img {
    width: 180px;
}
.side-menu-close {
    width: 24px;
    height: 24px;
    overflow: hidden;
}
.side-menu-item {
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    width: 300px;
    overflow: hidden;
    box-sizing: border-box;
}
.side-menu-item.info {
    height: auto;
    margin-bottom: 20px;
    cursor: auto;
    color: #000;
}
.side-menu-item.info::before {
    content: '';
    position: absolute;
    left: 0;
    height: 1px;
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px solid #dbd3d2;
}
.side-menu-item.info div {
    margin-bottom: 5px;
    position: relative;
}
.side-info-title {
    font-size: 13px;
    margin-top: 7px;
}
.side-info-list-info {
    font-size: 12px;
    line-height: 1.7;
    color: #333;
}
.side-menu-item.info::after {
    content: '';
    position: absolute;
    left: 0;
    height: 7px;
    width: 100%;
    border-bottom: 1px solid #dbd3d2;
}
.side-menu-item.feature {
    margin-bottom: 3px;
}
.side-menu-item.feature.active {
    background-color: #eee;
    margin-left: 0;
}
.side-menu-item.feature, .side-menu-item.feature a {
    cursor: pointer;
    color: #162E38;
    font-weight: 800;
    height: 40px;
    line-height: 40px;
}
.side-menu-item.feature .count {
    float: right;
    font-size: 13px;
}
.side-menu-item.feature img {
    height: 20px;
    margin-right: 7px;
    margin-top: -3px;
}
.side-menu-bottom {
    position: absolute;
    bottom: 20px;
}
.side-menu-bottom::before {
    content: '';
    position: absolute;
    left: 0;
    height: 1px;
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px solid #dbd3d2;
}
.side-menu-info {
    font-size: 13px;
    color: #444;
    width: 250px;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.side-menu-info.first {
    margin-bottom: 0;
    padding-top: 10px;
}
.side-menu-info.second {
    font-size: 11px;
}
.side-menu-info.copyright {
    font-size: 12px;
}
.side-menu a, .side-menu a:hover, .side-menu a:visited, .side-menu a:focus {
    text-decoration: none;
    color: rgb(51, 51, 51);
}
.side-menu-top {
    display: flex;
    width: 300px;
    align-items: center;
}
.side-menu-top .logo {
    width: 23px;
    height: 23px;
}
#mobile-search-form {
    margin: 0;
}
.mobile-search-input {
}
.mobile-search-input input {
    border: 0;
    outline: 0;
}

.mobile {
    display: none;
}
.mobile-inline {
    display: none;
}

.mobile-header.expanded {
    height: 200px;
    transition: 0.5s;
    box-shadow: 0px 5px 0px white;
}

.mobile-search-extra {
    display: none;
    height: 50px;
    padding: 0 10px;
    border-top: 1px solid #eee;
    align-items: center;
    justify-content: center;
}
.mobile-search-extra-text {
    flex-shrink: 0;
}
.mobile-search-extra-option {
    display: inline-block;
    font-size: 12px;
    background-color: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 2px 10px;
    margin-left: 5px;
    cursor: pointer;
    box-sizing: content-box;
    position: relative;
}
.mobile-search-extra-option.current {
    padding-right: 22px;
}

.mobile-search-extra-option.current::after {
  content: "\f00c";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 7px;
  top: 3px;
  font-size: 11px;
}

@media screen and (max-width: 1120px) {
    .header-content {
        padding: 0 50px;
    }
    .footer {
        width: 100%;
        padding: 40px;
        max-width: none;
        display: block;
    }
    .tablet {
        display: block;
    }
}

@media screen and (max-width: 800px) {
    .desktop {
        display: none !important;
    }
    .tablet {
        display: none;
    }
    .tablet.mobile {
        display: block;
    }
    .mobile {
        display: block;
    }
    .mobile-inline {
        display: inline-block;
    }
    .header {
        box-shadow: 0 1px 2px rgba(0,0,0,.2);
    }
    .header-content {
        padding: 0 20px;
        height: 50px;
    }
    h1.title {
        font-size: 18px;
    }
    .module-title {
        font-size: 18px;
        height: 50px;
        line-height: 50px;
        padding-top: 0.5px;
    }
    .header-left {
        flex-grow: 1;
    }
    .mobile-search-input {
        width: 100%;
    }
    .mobile-search-input input {
        width: 100%;
        font-size: 18px;
    }
    .main {
        min-height: calc(100vh - 51px - 155px);
    }
}
