/*모바일*/
@import "login_mobile.css";
/*태블릿*/
@import "login_tablet.css";
/*PC*/
@import "login_desktop.css";
/*대형 PC*/
@import "login_desktop_XL.css";

body{
    font-size: 14px;
}
p {
    color: white;
}
#btn_login {
    background: #f8ba41;
}
#btn_join {
    background: #d9534f;
}
.btn-block {
    display: block;
    width: 100%;
}
.btn-lg, .btn-group-lg>.btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
}
.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}
.hr-line-dashed {
    border-top: 1px dashed #e7eaec;
    color: #ffffff;
    background-color: #151618;
    height: 1px;
    margin: 20px 0;
}

.layer{
    position:absolute;
    top:0;right:0;bottom:0;left:0;
    display:flex;
    align-items:center;
    justify-content:center;
    display:-webkit-flex;
    -webkit-align-item: center;
    -webkit-justify-content:center;

    background-image: url(/img/login/login_bg.jpg);
    min-height: 100%;
    background-position: center;
    background-size: cover;
}
.layer .divPosition>h2{
    font-size: 30px;
}
.divPosition {
    background-color: rgba( 0, 0, 0, 0.7 );
    border: 1px solid #5D5D5D;
    position:absolute;
    height:350px;
    width: 460px;
    padding: 20px;
}
.col-xs-6 {
    display: flex;
    align-items: center;
    margin: 5px 0;
    padding: 0;
}
.col-xs-6>p{
    margin-left: 20px;
    margin-bottom: 0;
    font-size: 14px;
}
.row {
    margin: 5px 0;
}
.form-control{
    display: block;
    width: 46%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.col-xs-12{
    padding: 0;
    margin-top: 10px;
}
.col-xs-12>button{
    margin: 5px 0;
}

/*채팅*/
#chat_icon_back{
    width: 100px;
    height: 130px;
    border: none;
    float: right;
    position: fixed;
    bottom: 45px;
    right: 15px;
    z-index: 100 !important;
}
.btn-success{
    width: 100px;
    border: none;
    float: right;
    position: fixed;
    bottom: 5px;
    right: 15px;
    z-index: 100 !important;
}
.chat_area .btn_chat{
    background: url("/img/ico/ico-support.png") no-repeat;
    width: 100px;
    height: 130px;
    border: none;
    float: right;
    position: fixed;
    bottom: 5px;
    right: 15px;
    z-index: 100 !important;
}
.chat_area .btn_chat:focus{
    outline: none;
}
.chat_area .chat_window{
    display: none;
    background-color: #ffffff;
    border: 1px solid #D2D2D2;
    position: fixed;
    bottom: 155px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 999;
}
.chat_area .chat_window .window_header{
    border-bottom: solid 1px #d2d2d2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    height: 9%;
}
.chat_area .chat_window .window_header .title{
    margin-left: 10px;
}
.chat_area .chat_window .window_close{
    cursor: pointer;
    font-size: 30px;
    margin-right: 5px;
}
/*채팅 내용*/
.chat_area .chat_window #ul_chatting_list{
    overflow-y: auto;
    height: 82%;
    display: flex;
    flex-direction: column;
}

.chat_area .chat_window #ul_chatting_list .li_chat{
    max-width: 60%;
    min-width: 30%;
    display: flex;
    flex-direction: column;
    margin: 6px;
    padding: 10px 5px;
    border-radius: 10px;
}
.chat_area .chat_window #ul_chatting_list .li_chat .time{
    font-size: 11px;
    color: #878787;
    margin-top: 3px;
}

.chat_area .chat_window #ul_chatting_list .company{
    background-color: #F7F7F7;
    float: left;
    text-align: left;
    margin-right: auto;
    position: relative;
}
.chat_area .chat_window #ul_chatting_list .company:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top-color: #F7F7F7;
    transform: translateY(100%);
}
.chat_area .chat_window #ul_chatting_list .user{
    background-color: #FFF446;
    float: right;
    text-align: right;
    margin-left: auto;
    position: relative;
}
.chat_area .chat_window #ul_chatting_list .user:after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 15px;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top-color: #FFF446;
    transform: translateY(100%);
}

.chat_area .chat_window #ul_chatting_list .li_chat .message{
    word-break: keep-all;
    overflow-wrap: break-word;
}
.chat_area .chat_window #ul_chatting_list .li_chat .footer{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.chat_area .chat_window #ul_chatting_list .li_chat .footer a{
    font-size: 13px;
}


/*보내는 메세지*/
.chat_area .chat_window .send_message_area{
    display: flex;
    align-items: center;
    border-top: 1px solid #d2d2d2;
    bottom: 0;
    position: sticky;
    width: 100%;
    height: 9%;
}

.chat_area .chat_window .send_message_area .input_imageButton{
    background: url("/img/ico/ico-send.png") no-repeat;
    width: 30px;
    height: 30px;
    border:none
}
.chat_area .chat_window .send_message_area #input_sendMessage_login{
    margin: 0 5px;
    border: none;
    padding: 5px;
    height: 100%;
    font-size: 15px;
}
.chat_area .chat_window .send_message_area #input_sendMessage_login:focus{
    outline: none !important;
}

