@charset "UTF-8";

/*
    Document	: buttons.css
    Created on	: 15. 02. 01
    Author		: Nexist
    Description	: 버튼 스타일 시트입니다.
*/

#buttons{padding:50px;text-align:center}
.btnArea { padding: 20px 20px 40px 20px; text-align: center; }
/* 버튼 설정 */
.btn {
    display:inline-flex;
    font-family: 'NanumBarunGothic', 'Nanum Barun Gothic', AppleGothic, "Nanum Gothic", "돋움", Dotum, sans-serif;
    overflow:visible;
    position:relative;
    font-size: 13px;
    font-weight: 300;
    margin:0;
    padding: 0 8px;
    height: 25px;
    background: #fff;
    border: solid 1px #ddd;
    border-radius: 3px;
    /*box-shadow: 0 0 0px 1px #ddd;*/
    color: #666;
    text-decoration:none !important;
    white-space:nowrap;
    cursor:pointer;
    align-items: center;
    justify-content: center;
    outline: none;
    vertical-align: middle;
}

.btn.small {
    padding: 0px 6px;
    font-size: 11px;
    height: 20px;
    font-weight: 300;
    border-radius: 2px;
}

.btn.large {
    font-family: 'Nanum Square', 'NanumSquare';
    padding: 0 12px;
    font-size: 17px;
    height: 33px;
    font-weight: 300;
    background: #fff;
    border: solid 1px #ddd;
    border-radius: 3px;
}

.btn.on,
.btn:hover,
.btn:focus  { background: #2bc5c5; color: white; border: solid 1px #26b4b3; text-shadow: 0 0 3px rgba(0,0,0,0.4); transition: 0.3s ease-out; }
.btn:active { background: #e3624c; color: white; border: solid 1px #ee6644; text-shadow: 0 0 3px rgba(0,0,0,0.4); transition: 0.1s ease-out; }

/* //버튼 설정 */
.btn.ready {
    opacity: 0.4;
}
.btn.red {
    color: #fff;
    background: #e3624c;
    border: solid 1px #ee6644;
    border-radius: 3px;
    text-decoration:none !important;
    white-space:nowrap;
    cursor:pointer;
}

.toggleBtn {
    display:inline-block;
    overflow:hidden;
    position:relative;
    margin:0;
    color: #666;
    text-decoration:none !important;
    text-align: center;
    white-space:nowrap;
    cursor:pointer;
    padding: 3px 3px 3px 34px;
    height:37px;
    width: 68px;
    font-size: 0;
    line-height: 300%;
    background: #ddd;
    border: none;
    border-width: 0 0 0 34px;
    border-radius: 20px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2) inset;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -ms-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}
.toggleBtn:after {
    display:inline-block;
    overflow:hidden;
    position:relative;
    margin:0;
    color: #666;
    background: white;
    text-decoration:none !important;
    white-space:nowrap;
    cursor:pointer;
    padding: 0;
    height:31px;
    width: 31px;
    font-size: 0;
    content: ' ';
    border-radius: 20px;
    box-shadow:0px 0px 3px rgba(0,0,0,0.2);
}
.toggleBtn.on {
    background: #82D889;
    border-color: #82D889;
}
.toggleBtn.off {
    padding: 3px 34px 3px 3px;
    background: #e3624c;
    border-color: #e3624c;
}

.toggleBtn.small {
    padding: 2px 0 2px 16px;
    height:20px;
    width: 36px;
}
.toggleBtn.small.off {
    padding: 2px 16px 2px 0;
    background: #e3624c;
    border-color: #e3624c;
}

.toggleBtn.small:after {
    height:16px;
    width: 16px;
    box-shadow:0px 0px 2px rgba(0,0,0,0.2);
}

.toggleBtn.disabled {
    background: #eee !important;
    border-color: #eee !important;
}

.btn.disabled {
    color: #ddd !important;
    background: #f3f3f3 !important;
    border-color: #eee !important;
    cursor: no-drop;
}
.btn.disabled:hover,.btn.disabled.on,.btn.disabled:focus { text-shadow: none; }

.btn_group {
    display: inline-flex;
    vertical-align: middle;
    border: solid 1px #ddd;
    border-radius: 3px;
    overflow: hidden;
    height: 33px;
}
.btn_group .btn {
    border: none;
    border-left: solid 1px #ddd;
    border-radius: 0;
    height: 100%;
}
.btn_group .btn:first-child {
    border-left: none;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.btn_group .btn:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}