﻿@charset "utf-8";
html {
    scroll-behavior: smooth;
}
body {
    font-size: 16px;
    line-height: 140%;
    font-family: 'Noto Sans KR', 'Lato', sans-serif;
    font-variant:normal;
    height:100%;
    overflow-y:scroll;
}
/* selection */
::selection{
    background:#59abc0;
    color:#fff;
    text-shadow:none;
}
::-moz-selection{
    background:#59abc0; 
    color:#fff; 
    text-shadow:none;
}
::-webkit-selection{
    background:#59abc0; 
    color:#fff; 
    text-shadow:none;
}
/* button */
button{ 
    color:#fff;
    cursor:pointer;
}
/* link */
a,
a:hover,
a:focus {
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
a{ color:#333}
a:hover{ color:#59abc0;}
h1, h2, h3, h4, h5, h6 {
    font-size:1.0rem
}
/* Form Control */
input,textarea,select,label{
     font-size:1.0rem;
}
input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input:-moz-placeholder,
textarea::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder,
textarea:-moz-placeholder {   
    color: #828282;    
}
input[type=text],
input[type=password],
input[type=tel],
input[type=date],
input[type=datetime-local],
input[type=email],
input[type=number],
textarea{
    border:1px solid #ddd; 
    background:#fff;
    padding:5px;
    
}
label{
    display:inline-block;
}
select::-ms-expand { /* IE10, IE11*/
	display: none; 
	display: hidden; 
}
body[class*="ie"] select {
    padding-right: 1% !important;
}
input[type=file]{
    background:#eee; 
}
input[readonly],
input[disabled]{
    background:#eee;
}
@supports (-webkit-overflow-scrolling: touch) { 
    select, textarea, input[type=text], input[type=date] {
        font-size: 14px !important;
    }
}
/* table */
table{
    width:100%;
    word-break:break-all;
}
/* footer */
footer {
   
    width: 100%;    
    font-size: 0.8rem;
  background-image: linear-gradient(135deg, #adbed3 0.5%, #e2e3e6 50%, #bec9d4 100%);
  padding: 50px 0;
}

footer div{   
      text-align: center;
    overflow:hidden;   
      
}
footer div span { display:block;  }
footer div a{
    color:#59abc0
}

/* sideMenu */
.sideMenu {
    position: fixed;
    right: -70px;
    bottom: 5%;
    z-index: 200;
    transition: 0.5s;
}
.sideMenu .quickList li {
    background:#2b2b2b;
    width: 80px;
    overflow:hidden;
}
.sideMenu .quickList li a{
    display:block;
    width:100%;
    padding:10px 0;
    text-align:center;
}
.sideMenu .quickList li a span{
    display:block;
    width:100%;
    padding:10px 0;
    text-align:center;
    color:#fff;
    font-size:11px;
}
.sideMenu .quickList li a:hover {
    background: #a25ee5;
    padding:25px 0;
}
.sideMenu .quickList li a:hover span{
    color:#ecf6ff;
}
.sideMenu .quickList li:first-child{
    border-radius:10px 10px 0 0;    
    overflow:hidden;
}
.sideMenu .quickList li:last-child{
    border-radius:0 0 10px 10px;
    overflow:hidden;    
}
.sideMenu .quickList li:first-child a{
    padding-top:20px
}
.sideMenu .quickList li img{
    width:60%;
}
/* gotoTop */
.gotoTop {
    border-radius: 100%;
    background-color: #5e80e5;
    margin: 0 auto;
    cursor: pointer;
    width: 53px;
    line-height: 53px;
    vertical-align: middle;
    text-align: center;
}
.gotoTop::before {
    margin-top: 10px;
    content: '';
    display: block;
    clear: both
}
.gotoTop a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    width:100%;
    height: 53px;
}
.gotoTop:hover{
    background-color:#e8490a;
}
/* quickBtn */
.quickBtn {
    position: absolute;
    left: -30px;
    top: 10%;
    width: 30px;
    line-height: 30px;
    background: #2b2b2b;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    cursor: pointer;
    border-radius: 10px 0 0 10px;
}
/* etc */
.mbN{display:inline-block!important;}
.pcN{display:none!important;}
.dispN {
    right:-80px;
    animation: animYN 0.5s ease;
}
.dispB{
    right:0;
    animation: animY 0.5s ease;    
}
@keyframes animY {
    0% {right:-80px;opacity:0}
  100% {right:0; opacity:1;display:block;}
}
@keyframes animYN {
    0% {right:0;opacity:1}
  100% {right:-80px; opacity:0;display:none}
}
@-webkit-keyframes animatezoom {
    from { -webkit-transform: scale(0) }
    to { -webkit-transform: scale(1) }
}
@keyframes animatezoom {
    from { transform: scale(0) }
    to { transform: scale(1)}
}
@media screen and (max-width:820px) {
    .mbN{display:none!important}
    .pcN{display:inline-block!important}
}
@media screen and (max-width:540px) {
    .mbsN{display:none!important}
}


