@charset 'utf-8';

/* ===================================================================
    * Netkey WebClient Style
    * Last Edit : 2018. 05. 14
    =================================================================== */

@import url('https://fonts.googleapis.com/css?family=Noto+Sans');

/* -- Common Style -- */
* {
    padding: 0;
    margin: 0;
}
body {
    font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	line-height: 1.618;
	color: #212121;
    background-color: #414141;
}
a {
    color: #414141;
    text-decoration: none;
}
li {
    list-style: none;
}
.container {
    width: 100%;
    max-width: 640px;
    min-width: 360px;
    margin: 5% auto 0;
    padding: 10% 0;
    border-radius: 30px 0;
    background-color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08);
}
.hide {
	display: none !important;
}

/* Button Styles */
.button {
    display: block;
    background-color: #27ae60;
    width: 100px;
    height: 36px;
    line-height: 36px;
    margin: 30px auto 0;
    padding: 0 5px;
    color: #fff;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
}
.button span,
.button .icon {
    display: block;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
}
.button span {
    width: 72%;
    line-height: inherit;
    font-size: 13px;
    text-transform: uppercase;
    left: 0;
    transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
}
.button span:after {
    content: "";
    background-color: #2b85d2;
    width: 2px;
    height: 70%;
    position: absolute;
    top: 15%;
    right: -1px;
}
.button .icon {
    width: 28%;
    right: 0;
    transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
}
.button.success span, .button:hover span {
    left: -72%;
    opacity: 0;
}
.button.success .icon, .button:hover .icon {
    width: 100%;
}
.button:hover {
    opacity: 0.9;
}
.button:active {
    opacity: 1;
}

/* -- Priview Style -- */
#mainWrap .logo {
    margin-bottom: 20px;
    text-align: center;
}
#mainWrap .logo img {
    width: 150px;
}
#mainWrap #greCAPTCHAShow {
    margin-bottom: 20px;
}
#mainWrap #greCAPTCHAShow div {
	margin: 0 auto;
}

/* -- Netkey Search Box Style -- */
#webClient_search {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    box-sizing: border-box;
    transition: all 0.2s;
    z-index: 3;
    text-align: center;
}
#webClient_search.leftbar {
    width: 300px;
}
#webClient_search .logo {
    margin: 30px 0 40px;
    text-align: center;
}
#webClient_search .logo img {
    width: 180px;
}
#webClient_search .mobile-plus {
    display: none;
}
/* First Step */
#first_step label {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 500;
    color: #414141;
    text-align: center;
}
#first_step input[type="text"] {
    width: 50%;
    height: 36px;
    line-height: 36px;
    margin-bottom: 15px;
    padding: 0 10px;
    border: 1px solid #c1c1c1;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.2s;
}
.leftbar #first_step input[type="text"] {
    width: 100%;
}
#first_step input[type="text"]:hover,
#first_step input[type="text"]:focus {
    border: 3px solid #414141;
}
#first_step span {
    display: block;
    font-size: 12px;
    text-align: center;
}
#first_step span i {
    position: relative;
    top: 1px;
    font-size: 14px;
}
#first_step span.msg-success {
    color: #27ae60;
}
#first_step span.msg-fail {
    color: #c0392b;
}
#first_step .button {
    background-color: #229aff;
}
/* Second Step */
#second_step > label {
    display: block;
    text-align: center;
}
#second_step ul {
    margin-top: 5px;
    text-align: center;
}
#second_step li {
    display: inline-block;
}
#second_step li input[type=checkbox] {
    display:none;
}
#second_step li input[type=checkbox] + label {
    display: inline-block;
    cursor: pointer;
    width: 85px;
    line-height: 80px;
}
#second_step li:first-child input[type=checkbox] + label {
    background: url('/webClient/image/ftp_off.png') center/60px no-repeat;
}
#second_step li:first-child input[type=checkbox]:checked + label {
    background-image: url('/webClient/image/ftp_on.png');
}
#second_step li:first-child input[type=checkbox]:disabled + label {
    background-image: url('/webClient/image/ftp_connect.png');
}
#second_step li:nth-child(2) input[type=checkbox] + label {
    background: url('/webClient/image/ssh_off.png') center/60px no-repeat;
}
#second_step li:nth-child(2) input[type=checkbox]:checked + label {
    background-image: url('/webClient/image/ssh_on.png');
}
#second_step li:nth-child(2) input[type=checkbox]:disabled + label {
    background-image: url('/webClient/image/ssh_connect.png');
}
#second_step li label span {
    display: block;
    position: relative;
    left: 0;
    top: 50px;
    font-size: 13px;
    font-weight: bold;
}
#second_step span.select-fail {
    display: block;
    margin-top: 30px;
    font-size: 12px;
    text-align: center;
    color: #c0392b;
}
#second_step span.select-fail i {
    position: relative;
    top: 1px;
    font-size: 14px;
}
#second_step #btn_chkservice {
    margin-top: 40px;
    background-color: #27ae60;
}
#second_step #btn_chkservice span:after {
    background-color: #1b7742;
}
/* -- Netkey Result Box Style -- */
#webClient_result {
    overflow: hidden;
    margin-left: 300px;
    padding-top: 30px;
}
#webClient_result .client-ip {
    position: fixed;
    top: 0;
    width: calc(100% - 300px);
    line-height: 30px;
    text-align: center;
    background-color: #000;
    color: #fff;
    z-index: 2;
}
#webClient_result .card {
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    perspective: 1000;
    position: relative;
    width: 320px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    margin: 20px auto;
}
#webClient_result .card.hover .wrapper {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
#webClient_result .wrapper,.front,.back {
    width: 320px;
    height: 200px;
}
#webClient_result .wrapper {
    position: static;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    -ms-transition: 0.6s;
    transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
#webClient_result .front,.back {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 15px;
    background: #FFF;
    text-align: center;
    box-sizing: border-box;
}
#webClient_result .front {
    z-index: 4;
    text-align: center;
    border: 3px solid #27ae60;
}
#webClient_result .front dl {
    margin-top: 10px;
}
#webClient_result .front dt {
    margin-top: 2px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}
#webClient_result .front dt small {
    display: block;
    color: #818181;
}
#webClient_result .front dd.point {
    font-weight: bold;
    color: #27ae60;
}
#webClient_result .front dd.time {
    display: inline-block;
    min-width: 200px;
    line-height: 24px;
    margin-top: 8px;
    padding: 0 10px;
    border: 1px solid #c1c1c1;
    box-sizing: border-box;
    background-color: #f0f0f0;
    color: #414141;
    font-size: 12px;
}
#webClient_result .line-scale-pulse-out-rapid {
    font-size: 0;
}
#webClient_result .line-scale-pulse-out-rapid > div {
    width: 3px;
    height: 28px;
    background-color: #27ae60;
}
#webClient_result .back {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
#webClient_result .close {
    position: relative;
    top: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 24px;
    font-size: 26px;
    text-align: right;
    color: #DDD;
    cursor: pointer;
    z-index: 999;
}
#webClient_result .back p {
    font-size: 16px;
    text-align: center;
    color: #212121;
    margin-top: 60px;
    margin-bottom: 10px;
}
#webClient_result .yes,.no {
    padding: 4px 0;
    width: 40px;
    display: inline-block;
    font-size: 24px;
    color: #212121;
    cursor: pointer;
}
#webClient_result .yes {
    color: #27ae60;
}
#webClient_result .no {
    color: #c0392b;
}

/* Preloader */
.preloaderWrap {
    margin-top: 200px;
    text-align: center;
}
.preloaderWrap i {
    margin: 0 10px;
    font-size: 24px;
    color: #fff;
}
.preloaderWrap span {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #fafafa;
}

/* -- Footer Style -- */
footer .copyright {
	display: inline-block;
    position: fixed;
    left: 20px;
    bottom: 20px;
    font-size: 12px;
    color: #818181;
    z-index: 3;
}
@media all and (max-width: 767px) {
    #webClient_search #first_step input[type="text"] {
        width: 100%;
    }
    #webClient_search.leftbar {
        bottom: auto;
        width: 100%;
        height: auto;
        padding: 0;
    }
    #webClient_search.leftbar .logo {
        height: 70px;
        margin: 0 auto;
        font-size: 0;
    }
    #webClient_search.leftbar .logo img {
        float: left;
        width: auto;
        height: 50px;
        margin-top: 10px;
        margin-left: 20px;
    }
    #webClient_search.leftbar .search-box {
        overflow: hidden;
        height: 0;
        padding: 0;
        transition: all 0.2s;
    }
    #webClient_search.leftbar .search-box.open {
        height: auto;
        padding: 30px;
    }
    #webClient_result {
        margin-top: 70px;
        margin-left: 0;
    }
    #webClient_search.leftbar .mobile-plus {
        display: block;
        float: right;
        position: relative;
        top: 5px;
        line-height: 62px;
        margin-right: 30px;
    }
    #webClient_search.leftbar .mobile-plus a {
        font-size: 24px;
        color: #2b85d2;
    }
    #webClient_result .client-ip {
        top: 70px;
        width: 100%;
    }
    footer .copyright {
        display: block;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 30px;
        line-height: 30px;
        background-color: rgba(0,0,0,0.8);
        color: #fff;
        text-align: center;
    }
}
