﻿@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,500&subset=korean');

/* new.css
* ============================================================ *
*/
body {
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #1B1A1C;
    color: #fff;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    /*min-width: 1200px;*/
}

a, input {
    outline: none;
}

header {
    background-color: #1B1A1C;
}

.header {
    color: #fff;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    padding: 80px 20px;
    box-sizing: border-box;
}

    .header h1 {
        font-size: 50px;
        font-weight: 500;
        margin: 0;
        position: relative;
        font-weight: 400;
    }

@media ( max-width : 768px ) {
    .header h1 {
        /*font-size: 28px;*/
        font-size: 36px;
        line-height: 55px;
    }
}

.header h1 span {
    /*color: #E8AE00;*/
    color: #D6AF66;
    font-weight: 500;
}

.header h1:before {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    bottom: -35px;
    left: 50%;
    margin-left: -50px;
}

.header p {
    margin: 80px auto 50px;
    color: #9d9d9d;
    font-size: 18px;
}

@media ( max-width : 768px ) {
    .header p {
        font-size: 16px;
    }
}

.cont_body {
    background-color: #ccc;
}

    .cont_body section {
        max-width: 1080px;
        width: 100%;
        margin: 0 auto;
        padding: 30px 0px;
        background-color: #fff;
        box-sizing: border-box;
        box-shadow: 1px 1px 10px #000;
        position: relative;
        top: -80px;
        border-radius: 3px;
        border: 2px solid #231F20;
    }

.srchArea {
    position: relative;
}

    .srchArea:after {
        content: '';
        clear: both;
        display: block;
        width: 100%;
    }

    .srchArea .form-control {
        font-size: 16px;
        height: 50px;
        border: 2px solid #dee2e6;
        padding: 15px 20px;
        box-sizing: border-box;
        width: 100%;
        border-radius: 25px;
    }

/* select */
select {
    border-radius: 0;
    height: 50px;
}

/* table */
table {
    font-size: 14px;
    color: #000;
}

    table th {
        font-weight: normal;
        font-weight: 600;
    }

table {
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
}

    table th, td {
        height: 36px;
        padding: 11px 5px 11px;
        line-height: 22px;
        border-left: 1px solid #e1e1e1;
        border-top: 1px solid #e1e1e1;
        text-align: center;
        width: 179px;
    }

    table th {
        color: #000;
        text-align: center;
        background: #f9f9f9;
    }

    table td {
        background: #fff;
    }

    table th:first-child, .table td:first-child {
        border-left: none;
    }

    table tbody th {
        font-weight: normal;
        background: none;
    }

/* button */
input[type="button"] {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
    width: 50px;
    height: 50px;
    border: none;
    vertical-align: top;
    margin-left: -4px;
    padding: 0;
    background-color: #D6AF66;
    color: #fff;
    cursor: pointer;
    transition: all .5s;
    border-radius: 50%;
    font-weight: bold;
}

input[type="search"] {
    font-size: 16px;
    width: 50px;
    height: 50px;
}

input[type="button"]:hover {
    background-color: #f7AE00;
}

.btnArea {
    margin: 30px auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.btnArea_planinfo {
    margin: 0 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.btn {
    display: inline-block;
}

.btnS {
    font-size: 14px;
    padding: 10px 15px;
    border: 3px;
    background-color: #D6AF66;
    min-width: 80px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all .5s;
}

    .btnS:hover {
        background-color: #f7AE00;
    }

    .btnS:disabled {
        background: #dddddd;
    }

.btnM {
    -webkit-flex: auto;
    flex: auto;
    color: #D6AF66;
    text-decoration: none;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s ease all;
}

    .btnM + .btnM {
        margin-left: 5px;
    }

    .btnM:hover {
        color: #FFF;
    }

    .btnM:focus {
        color: #FFF;
    }

.btnM {
    font-size: 15px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    padding: 10px 15px;
    border: 3px solid #D6AF66;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

    .btnM:before {
        -webkit-transition: 0.5s all ease;
        transition: 0.5s all ease;
        position: absolute;
        top: 0;
        left: 50%;
        right: 50%;
        bottom: 0;
        opacity: 0;
        content: '';
        background-color: #D6AF66;
        z-index: -1;
    }

    .btnM:hover:before {
        -webkit-transition: 0.5s all ease;
        transition: 0.5s all ease;
        left: 0;
        right: 0;
        opacity: 1;
    }

    .btnM:focus:before {
        -webkit-transition: 0.5s all ease;
        transition: 0.5s all ease;
        left: 0;
        right: 0;
        opacity: 1;
    }

/* table */
table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.tblArea {
    margin-top: 30px;
}

/* pagination */
.dataTables_paginate {
    text-align: center;
}

.pagination {
    padding: 30px 0;
    list-style: none;
    display: -webkit-inline-box;
}

    .pagination a {
        display: inline-block;
        padding: 10px 18px;
        color: #222;
        text-decoration: none;
        width: 45px;
        height: 45px;
        box-sizing: border-box;
    }

    .pagination .active {
        background-color: #D6AF66;
        border-radius: 100%;
    }

        .pagination .active.page-item .page-link {
            color: #fff;
            font-weight: bold;
        }

    .pagination .page-item {
        margin: 0 5px;
    }

        .pagination .page-item .page-link:hover {
            color: #fff;
            font-weight: bold;
            background-color: #D6AF66;
            border-radius: 100%;
        }

        .pagination .page-item.previous .page-link:hover, .pagination .page-item.next .page-link:hover {
            color: #D6AF66;
            background-color: transparent;
            border-radius: 0;
            text-decoration: underline;
            font-weight: normal;
        }

    .pagination .previous .page-link, .pagination .next .page-link {
        width: auto;
    }

/* terms
* ============================================================ *
*/
.terms h3 {
    padding: 20px 30px;
    background-color: #1B1A1C;
    color: #fff;
    margin: 0;
    font-size: 20px;
    text-align: left;
}

.terms .cont_box {
    color: #1B1A1C;
    text-align: left;
    padding: 0 30px;
    margin: 30px 0;
}

.terms input[type="button"] {
    background-color: #1B1A1C;
    color: #fff;
    position: relative;
    border-radius: 3px;
    min-width: 120px;
}

/* planinfo 
* ============================================================ *
*/
.planinfo_sect_wrap {
    /*min-height: 75vh;*/
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    background: #1B1A1C;
    background-size: cover;
    color: #fff;
}

.planinfo_header {
    color: #fff;
    text-align: center;
    width: 960px;
    margin: 0 auto;
    padding: 30px 0 0;
}

.planinfo_header_cont {
    color: #000;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 0px 0 10px 0px;
}

.planinfo_sect_tit {
    font-size: 50px;
    font-weight: 500;
    margin: 0;
    position: relative;
    font-weight: 400;
}

/*
.planinfo_sect_tit:before {
	content: '';
	display: block;
	width: 100px;
	height: 3px;
	background-color: #fff;
	position: absolute;
	bottom: -35px;
	left: 50%;
	margin-left: -50px;
}


.planinfo_sect_p {
	margin: 80px auto 50px;
	color: #9d9d9d;
	font-size: 18px;
}
*/
.planinfo_group {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 3em;
}

.planinfo_item {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    align-items: stretch;
    text-align: center;
    -webkit-flex: 0 1 380px;
    flex: 0 1 380px;
    position: relative;
}

    .planinfo_item:hover {
        z-index: 100;
    }

        .planinfo_item:hover::after {
            content: '';
            pointer-events: none;
            position: absolute;
            top: -5px;
            left: -5px;
            width: 100%;
            height: 100%;
            box-sizing: content-box;
            border: 5px solid #D6AF66;
            border-radius: 5px;
        }

    .planinfo_item:active::after {
        content: '';
        pointer-events: none;
        position: absolute;
        top: -5px;
        left: -5px;
        width: 100%;
        height: 100%;
        box-sizing: content-box;
        border: 5px solid #D6AF66;
        border-radius: 5px;
    }

.planinfo_feat_list {
    text-align: left;
}

.planinfo_cont .planinfo_item {
    margin: 1em;
    padding: 3em 2em;
    cursor: default;
    border-radius: 5px;
    background: #1F1F1F;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05), 0 15px 30px -10px rgba(0, 0, 0, 0.3);
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

    .planinfo_cont .planinfo_item:hover {
        background: #141315;
    }

.planinfo_cont .planinfo_item_tit {
    font-size: 2em;
    width: 100%;
    padding: 0 0 0.25em;
    margin: 0 0 0.25em;
    border-bottom: 3px solid rgb(27, 26, 28);
}

.planinfo_cont .channel_info {
    font-size: 1em;
    width: 100%;
    padding: 0 0 1.75em;
    margin: 0 0 1.75em;
    color: #cccccc;
    cursor: pointer;
}

.planinfo_cont .planinfo_price {
    color: #D6AF66;
    padding: 0;
}

.planinfo_cont .planinfo_sent {
    font-weight: bold;
    font-size: 17px;
}

.planinfo_cont .planinfo_feat_list {
    margin-top: 30px;
    padding: 1em 1.25em 2em;
}

.planinfo_as {
    text-decoration: line-through;
    font-size: 1.4em;
}

.planinfo_to {
    font-weight: bold;
    font-size: 2em;
}

.planinfo_add {
    text-align: right;
}

.planinfo_feat {
    margin-bottom: 10px;
    word-break: keep-all;
    color: #ccc;
}

/* modal
* ============================================================ *
*/
.modal .input_tb {
    margin: 60px auto 0;
    width: 100%;
}

    .modal .input_tb th, .modal .input_tb td {
        padding: 5px;
    }

        .modal .input_tb td input[type="text"], .modal .input_tb td input[type="password"] {
            height: 25px;
            padding: 0 5px;
            box-sizing: border-box;
            font-size: 12px;
        }

    .modal .input_tb .tb_title {
        font-weight: bold;
    }

    .modal .input_tb .tb_ckb input {
        width: auto;
    }

    .modal .input_tb .tb_ckb label {
        margin-right: 0;
    }

.modal .signature-pad {
    vertical-align: middle;
}

.modal .input_tb .btn-outline-primary, .modal .input_tb .btn-outline-secondary {
    width: 100px;
    border-radius: 0;
    height: 40px;
    top: 30px;
}

.modal .input_tb .btn-outline-primary {
    right: 140px;
}

.modal .input_tb .btn-outline-secondary {
    right: 30px;
    background-color: #1B1A1C;
}

.modal .modal-body {
    height: 600px;
    overflow-y: auto;
    padding: 30px;
}

center {
    margin: 20px 0;
}
