@charset "utf-8";

.fullbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 16px;
}
.inbox {
    /* 속박스 */
    position: relative;

    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    /*outline: 1px solid red;*/
}
.d_flex {
    display: flex;
}
.align_self_center {
    align-self: center;
}
.justify_content_center {
    justify-content: center;
}
.text_align_center {
    text-align: center;
}
.admin_container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    min-height: 100%;
    background: #F5F6FB;
    padding: 16px;
}
.row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}
.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0 solid #f6f6f6;
    border-radius: .25rem;
    /*margin-bottom: 24px;*/
    -webkit-box-shadow: 0 0.75rem 1.5rem rgb(18 38 63 / 3%);
    box-shadow: 0 0.75rem 1.5rem rgb(18 38 63 / 3%);
}
.card_body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem 1.25rem;
}
.page_title_wrap {
    position: relative;
    display: flex;
    width: 100%;
    padding-bottom: 24px;
}
.page_title {
    font-size: 24px;
    font-weight: 600;
}
#top > div.inbox {
    z-index: 999;
}

/* Radio Custom3 */
.custom_radio[type="radio"]:checked,
.custom_radio[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.custom_radio[type="radio"]:checked + label,
.custom_radio[type="radio"]:not(:checked) + label {
    position: relative;

    display: inline-flex;
    align-items: center;
    padding-left: 0;

    cursor: pointer;
    text-align: center;

    color: #666;
}
.custom_radio[type="radio"]:checked + label:before,
.custom_radio[type="radio"]:not(:checked) + label:before {

    width: 13px;
    height: 13px;
    margin-right: 8px;

    content: "";

    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.custom_radio[type="radio"]:checked + label:after,
.custom_radio[type="radio"]:not(:checked) + label:after {
    position: absolute;
    left: 3px;

    width: 9px;
    height: 9px;

    content: "";
    -webkit-transition: all .2s ease;
            transition: all .2s ease;

    border-radius: 100%;
    background: #2A3042;
}
.custom_radio[type="radio"]:not(:checked) + label:after {
    -webkit-transform: scale(0);
            transform: scale(0);

    opacity: 0;
}
.custom_radio[type="radio"]:checked + label:after {
    -webkit-transform: scale(1);
            transform: scale(1);

    opacity: 1;
}

/* custom_checkbox */
.flex_check {
    position: relative;

    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-left: 0;

    font-size: 14px;

    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}
.flex_check input {
    position: absolute;

    cursor: pointer;

    opacity: 0;
}
.flex_check .blk_checkmark {
    position: relative;

    width: 20px;
    height: 20px;
    margin-right: 8px;

    border: 1px solid #acacac;
    border-radius: 4px;
    background-color: #fff;
}
.flex_check:hover input ~ .blk_checkmark {
    background-color: #ccc;
}
.flex_check input:checked ~ .blk_checkmark {
    border: none;
    background-color: #333;
}
.blk_checkmark:after {
    position: absolute;

    display: none;

    content: "";
}
.flex_check input:checked ~ .blk_checkmark:after {
    display: block;
}
.flex_check .blk_checkmark:after {
    top: 0;
    left: 6px;

    width: 6px;
    height: 12px;

    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);

    border: solid white;
    border-width: 0 2px 2px 0;
}