.tootip_wrap {
    position                : absolute; 
    display                 : block; 
    z-index                 : 999999; 
}

.tooltip_wrap * {
    box-sizing              : border-box; 
    -moz-box-sizing         : border-box;
    -webkit-box-sizing      : border-box;
}

.box_tooltip {
    position                : absolute;
    display                 : none;
    z-index                 : 999999; 
    background              : none; 
    text-align              : center;
    min-width               : 200px;
    top                     : 0px;
    transform               : translate(-50%,-100%);
    padding                 : 0 0;
}

.box_tooltip .box_body {
    border                  : 1px solid #999999; 
    /* border-radius:5px; */
    line-height             : 16px; 
    background              : #fff; 
    word-wrap               : break-word; 
    text-align              : center; 
    letter-spacing          : 0; 
    font-weight             : normal;
    font-family             : "굴림" !important;
    font-size               : 9pt;
    color                   : #333333;
	padding                 : 15px 10px 15px 10px; 
    margin                  : 0 0;
}

.box_tooltip .box_body * {
    text-align              : center;
    font-family             : "굴림" !important;
}

.box_tooltip .box_body .box_button {
    display                 : block;
    text-align              : center;
    margin-top              : 15px;
}

.box_tooltip .box_body .box_button a {
    border                  : 1px solid #4b4bd7;
    padding                 : 5px 10px;
    text-align              : center;
    background              : #6666e5;
    color                   : #ffffff;
}

.box_tooltip .box_arrow {
    position                : relative;
    display                 : inline-block;
    width                   : auto;
    margin                  : 0 auto;
}

.box_tooltip .box_arrow::after {
    position                : absolute;
    left                    : 0;
    top                     : -18px;
    content                 : "";
    width                   : 9px;
    height                  : 9px;
    border-top              : 1px solid #666666;
    border-right            : 1px solid #666666;
    transform               : rotate(135deg);
    background              : #ffffff;
    z-index                 : 1000;
}

.box_tooltip .box_close,
.box_tooltip .box_remove {
    display                 : inline-block;
    *display                : inline;
    float                   : right;
    margin                  : 3px 3px 0 0;
    cursor                  : pointer;
}

.box_tooltip .box_close:after,
.box_tooltip .box_remove:after {
    display                 : inline-block;
    content                 : "\00d7";
    font-family             : "굴림체", sans-serif;
    font-weight             : normal;
    font-size               : 14pt;
    color                   : #333333;
}