.fl {
    float: left;
}
.fr {
    float: right;
}
.on_link {
    cursor: pointer;
}
.fa_j {
    text-align: justify;
}

/****************************************** 타이틀 관리 **/
.h1-title {
    position: relative;
    width: 100%;
    font-size: 35px;
}
.h1-title a.the-more-link {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    font-size: 15px;
}
.h1-title a.the-more-link img {
    position: relative;
    margin-top: -3px;
    margin-left: 8px;
    height: 13px;
}
/******** input checkbox */
input[type="checkbox"] {
    display: none;
}
input[type="checkbox"] + label {
    cursor: pointer;
}
input[type="checkbox"] + label span {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin: -3px 10px 0 0;
    border-radius: 5px;
    vertical-align: middle;
    background: var(--color-white);
    border: 1px solid var(--color-Graybc);
    cursor: pointer;
}
input[type="checkbox"]:checked + label span {
    margin-right: 10px;
    background: var(--color-Red) url("/img/svg/check_icon_on.svg") 60% 50%
        no-repeat;
    background-size: auto 14px;
    border: 1px solid var(--color-Red);
}
input[type="checkbox"]:disabled + label span {background-color: #ddd;cursor: default;}
input[type="checkbox"]:disabled + label p {color:#9b9b9b;}

.terms_check_all input[type="checkbox"] + label span {
    display: inline-block;
    width: 180px;
    height: 48px;
    line-height: 45px;
    margin: 0 0 0 0;
    text-align: center;
    vertical-align: middle;
    text-indent: 0;
    border: 1px solid var(--color-Graybc);
    color: var(--color-Graybc);
    background: var(--color-white) url("/img/svg/check_icon.svg") 40px 50%
        no-repeat;
    background-size: auto 0px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}
.terms_check_all input[type="checkbox"]:checked + label span {
    text-indent: 35px;
    background: url("/img/svg/check_icon.svg") 40px 50% no-repeat;
    background-size: auto 16px;
    border: 1px solid var(--color-Red);
    color: var(--color-Red);
}

input[type="radio"] {
    display: none;
}
input[type="radio"] + label {
    cursor: pointer;
}
input[type="radio"] + label span {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin: 0 10px 0 0;
    border-radius: 3px;
    vertical-align: middle;
    background: var(--color-white) url("/img/svg/check_icon_on.svg") 58% 50%
        no-repeat;
    background-size: auto 0px;
    border: 1px solid var(--color-Graybc);
    cursor: pointer;
}
input[type="radio"]:checked + label span {
    margin-right: 10px;
    background: var(--color-Red) url("/img/svg/check_icon_on.svg") 58% 50%
        no-repeat;
    background-size: auto 14px;
    border: 1px solid var(--color-Red);
}

input.inp-style {
    width: 100%;
    height: 50px;
    line-height: 48px;
    color: var(--color-black);
    font-size: 15px;
    border: 1px solid var(--color-Graybc);
    text-indent: 15px;
    border-radius: 5px;
}
input.inp-style:hover {
    background: var(--color-Grayf9);
    border: 1px solid var(--color-Gray77);
}
input.inp-style::-webkit-input-placeholder {
    color: var(--color-GrayA);
}
input.inp-style:-ms-input-placeholder {
    color: var(--color-GrayA);
}
input.inp-style::placeholder {
    color: var(--color-GrayA);
}
input.inp-style-max {
    width: 50%;
    width: 200px;
}
input.inp-style-max_65 {
    width: 65%;
}
input.inp-style-max_30 {
    margin-left:10px;
    width: 30%;
    width: 100px;
    text-indent:0;
    text-align:center;
}
textarea.inp-style {
    padding: 15px;
    width: 100%;
    min-height: 250px;
    line-height: 160%;
    color: var(--color-black);
    font-size: 15px;
    border: 1px solid var(--color-Graybc);
    border-radius: 5px;
}
textarea.inp-style2 {
    padding: 15px;
    width: 100%;
    min-height: 80px;
    line-height: 160%;
    color: var(--color-black);
    font-size: 15px;
    border: 1px solid var(--color-Graybc);
    border-radius: 5px;
}

.modal_Webinar .terms_check input[type="checkbox"] + label span {
    position: relative;
    top: 0px;
}

/**************************************** specialty-select */
.specialty-select {
    position: relative;
}
.specialty-select select {
    display: none; /*hide original SELECT element:*/
}
.select-selected {
    border: 1px solid var(--color-Graybc);
}
.select-selected:after {
    position: absolute;
    content: "";
    top: 25px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: var(--color-Graybc) transparent transparent transparent;
}
.select-selected.select-arrow-active:after {
    border-color: transparent transparent var(--color-Graybc) transparent;
    top: 18px;
}

.select-items div,
.select-selected {
    color: var(--color-black);
    min-height: 50px;
    line-height: 50px;
    text-indent: 15px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}
.select-items {
    position: absolute;
    color: var(--color-white);
    background-color: #555555;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}
.select-items div {
    color: var(--color-white);
}
.select-hide {
    display: none;
}
.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.35);
}
.inner-textarea {
    padding: 10px;
    color: var(--color-black);
    width: 100%;
    min-height: 250px;
    line-height: 160%;
    border-radius: 5px;
    border: 1px solid var(--color-Graybc);
}
/* new input title */
.inp-text {
    color: var(--color-black);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.05em;
}
/* 버튼 */
.btn-container {
    /* 하단 버튼 컨테이너*/
    display: inline-block;
    margin: 0;
    padding: 60px 0 140px 0;
    width: 100%;
    text-align: center;
}
button.login {
    display: inline-block;
    width: 100%;
    height: 50px;
    font-size: 16px;
    color: var(--color-white);
    background: var(--color-black);
    border: none;
    border-radius: 8px;
}
button.login:hover {
    background: var(--color-Red);
}
input.btn_style_red,
button.btn_style_red {
    display: inline-block;
    width: 46%;
    max-width: 290px;
    height: 50px;
    font-size: 16px;
    color: var(--color-white);
    background: var(--color-Red);
    border: none;
    border-radius: 8px;
}
input.btn_style_black,
button.btn_style_black {
    display: inline-block;
    width: 46%;
    max-width: 290px;
    height: 50px;
    font-size: 16px;
    color: var(--color-white);
    background: var(--color-black);
    border: none;
    border-radius: 8px;
}
input.btn_style_Gray,
button.btn_style_Gray {
    display: inline-block;
    width: 46%;
    max-width: 290px;
    height: 50px;
    font-size: 16px;
    color: var(--color-white);
    background: var(--color-GrayA);
    border: none;
    border-radius: 8px;
}
a.btn_W {
    display: inline-block;
    width: 100%;
    min-width: 55px;
    text-align: center;
    line-height: 40px;
    background: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-Graydc);
    border-radius: 5px;
}
a.btn_R {
    display: inline-block;
    width: 100%;
    min-width: 55px;
    text-align: center;
    line-height: 40px;
    background: var(--color-Red);
    color: var(--color-white);
    border: 1px solid var(--color-Red);
    border-radius: 5px;
}
button.btn_R {
    display: inline-block;
    width: 100%;
    min-width: 55px;
    text-align: center;
    line-height: 40px;
    background: var(--color-Red);
    color: var(--color-white);
    border: 1px solid var(--color-Red);
    border-radius: 5px;
}
a.btn_B {
    display: inline-block;
    width: 100%;
    min-width: 55px;
    text-align: center;
    line-height: 40px;
    background: var(--color-black);
    color: var(--color-white);
    border: 1px solid var(--color-black);
    border-radius: 5px;
}

a.btn_G {
    display: inline-block;
    width: 100%;
    min-width: 55px;
    text-align: center;
    line-height: 40px;
    background: var(--color-Gray81);
    color: var(--color-white);
    border: 1px solid var(--color-Gray81);
    border-radius: 5px;
}
a.btn_GG {
    display: inline-block;
    width: 100%;
    min-width: 55px;
    text-align: center;
    line-height: 40px;
    background: var(--color-Green);
    color: var(--color-white);
    border: 1px solid var(--color-Green);
    border-radius: 5px;
}
a.btn_G2 {
    display: inline-block;
    width: 100%;
    min-width: 55px;
    text-align: center;
    line-height: 40px;
    background: var(--color-Graybc);
    color: var(--color-white);
    border: 1px solid var(--color-Graybc);
    border-radius: 5px;
}
span.btn_G {
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 40px;
    background: var(--color-Gray81);
    color: var(--color-white);
    border: 1px solid var(--color-Gray81);
    border-radius: 5px;
}
.search_btn {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: url("/img/svg/search_icon.svg") no-repeat 50% 50%;
    background-size: 20px auto;
    border: none;
    text-indent: -10000px;
}
/**************************** SMS 특정 ***/
input.inp-add,
input.inp-sms {
    width: 70%;
}
input.inp-email {
        width: 36%;
}
input.btn_add,
input.btn_SMS,
input.btn_email {
    float: right;
    display: inline-block;
    width: calc(30% - 4px);
    height: 50px;
    font-size: 15px;
    color: var(--color-white);
    background: var(--color-black);
    border: none;
    border-radius: 8px;
}
/*************************************************************/
.board-paging {
    position: relative;
    display: inline-block;
    margin-top: 80px;
    margin-bottom: 35px;
    width: 100%;
    text-align: center;
}
.board-paging a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin:0 2px;
    line-height: 30px;
    border-radius: 3px;
}
.board-paging a:hover {
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-Red);
    border: 1px solid var(--color-Red);
}
.board-paging a img {
    height: 15px;
}
.board-paging a.on {
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-Red);
    border: 1px solid var(--color-Red);
}
.board-paging a.prev,
.board-paging a.next {
    background: var(--color-white);
    border: none;
}
.board-paging a.prev:hover,
.board-paging a.next:hover {
    background: var(--color-white);
    border: none;
}
.board-paging a.prev:hover {
    margin-right: 8px;
}
.board-paging a.next:hover {
    margin-left: 8px;
}

/* 첨부파일 기능 */
.file_s1 {margin-bottom:2px;padding-left:10px;height:50px;line-height:50px;background:#000;color:#fff;:;border:none;}
.file_s1 button.file {float:right;padding: 0 30px;height:50px;line-height:50px;background:#baaa9b;color:#000;border:none;}
.file_s1 button.delete {float:right;padding: 0 30px;height:50px;line-height:50px;background:#812922;color:#fff;border:none;}
.file_s1 .icon {margin-right:20px;background:none !important;color:#baaa9b;}
.file_s1 .text {}
/*************************************************************/
section,
div,
ul,
li,
dl,
dt,
dd,
a,
p,
span,
img,
input {
    transition: all 0.6s;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
}

/****************/
.btn-container-adm {
    padding: 50px 0 120px 0;
    text-align: center;
}
.btn-container-adm button {
    width: 25%;
    max-width: 160px;
}
.space_5 {
    display: block;
    margin: 0;
    width: 100%;
    font-size: 0;
    padding: 5px 0 0 0;
}
