

/* ADD by ITWork */

/*** 상단으로 바로가기 ***/

#btn-back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    font-size: 22px;
    line-height: 22px;
    bottom: 20px;
    right: 20px;
    display: none;
    border-radius: 0;
    border: 1px solid #ccc;
}

#btn-back-to-top-circle {
position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    line-height: 200px !important;
    background: #000;
}

/*** 상단으로 바로가기 ***/


/*** number_type 화살표 삭제 ***/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox  */
input[type='number'] {
    -moz-appearance: textfield;
}
/*** number_type 화살표 삭제 ***/


/*** 마우스 오버 - 툴팁 ***/

/* 툴팁 기본 스타일 설정 시작 */

.tooltip {
    position: relative;
    display: block;
    opacity: 1;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    /*background-color: black;*/
    /*color: #fff;*/
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

/* 툴팁 기본 스타일 설정 끝 */

/* -------------------------- */

/* 툴팁 화살표 기본 스타일 설정 시작 */

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    border-style: solid;
    border-width: 5px;
}

/* 툴팁 화살표 기본 스타일 설정 끝 */

/* -------------------------- */

/* 툴팁 방향 설정 시작 */

/* 왼쪽 툴팁 시작 */

.tooltip .tooltip-left {
    top: -5px;
    right: 100%;
}

.tooltip .tooltip-left::after {
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-color: transparent transparent transparent black;
}

/* 왼쪽 툴팁 끝 */

/* 오른쪽 툴팁 시작 */

.tooltip .tooltip-right {
    top: -5px;
    left: 100%;
}

.tooltip .tooltip-right::after {
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-color: transparent black transparent transparent;
}

/* 오른쪽 툴팁 끝 */

/* 위쪽 툴팁 시작 */

.tooltip .tooltip-top {
    width: 120px;
    bottom: 150%;
    left: 50%;
    margin-left: -60px;
}

.tooltip .tooltip-top::after {
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-color: black transparent transparent transparent;
}

/* 아래쪽 툴팁 시작 */

.tooltip .tooltip-bottom {
    width: 120px;
    /*top: 150%;*/
    left: 50%;
    margin-left: -60px;
}


.tooltip .tooltip-bottom::after {
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-color: transparent transparent black transparent;
}

/* 아래쪽 툴팁 시작 */

/* 툴팁 방향 설정 끝 */


/*** 마우스 오버 - 툴팁 ***/


/* ADD by ITWork */

