@charset "utf-8";

#TAIL { 
    overflow: hidden; 
    background: #020a18; 
    border-top: 1px solid #1e273a; 
}
#TAIL section { 
    overflow: hidden;
    text-align: center;
 }
.Table_Left {
    float:left;
    padding: 20px 0px 20px 30px;
}
.Table_Logo img {
    width: 320px;
    height: auto;
    padding-top: 30px;
    -webkit-filter: grayscale(100%); /* 크롬, 사파리, 오페라 등 */
    filter: grayscale(100%);         /* 표준 */
}
.Table_Logo img:hover {
    -webkit-filter: grayscale(0%); /* 크롬, 사파리, 오페라 등 */
    filter: grayscale(0%);         /* 표준 */
    transition: filter 0.5s ease;
}

.Table_Right {
    float:right;
}

.Table_Notice {
    text-align: right;
    padding: 20px 20px 20px 20px;
}
.Table_Notice img {
    -webkit-filter: grayscale(100%); /* 크롬, 사파리, 오페라 등 */
    filter: grayscale(100%);         /* 표준 */
    margin-left: 20px;
    width: 80px;
}
.Table_Notice img:hover {
    -webkit-filter: grayscale(0%); /* 크롬, 사파리, 오페라 등 */
    filter: grayscale(0%);         /* 표준 */
    transition: filter 0.5s ease;
}
/* 이미지 툴팁 (상단 풍선 도움말) */
.Table_Notice a[data-tooltip] {
    position: relative;
    display: inline-block;
}
.Table_Notice a[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 200;
    border: 1px solid #0c338d;
    border-radius: 4px;
    background: #083aaf;
    padding: 10px 30px;
    margin-left: 7px;
}
.Table_Notice a[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: 100%;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #083aaf;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 200;
    margin-left: 7px;
}
.Table_Notice a[data-tooltip]:hover::before,
.Table_Notice a[data-tooltip]:hover::after {
    opacity: 1;
}
.Table_Notice button {
    background: #0f172a;
    border: 1px solid #1e293b;
    color: #f8fafc;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 7px;
    padding: 10px 40px;
    transition: all 0.7s;
}
.Table_Notice button:hover {
    background: #213fc5;
    color: #fff;
    border-color: #0f1791;
}
.Terms_Policy {
    display:inline-block;
    border-top: 1px solid #1e273a;
    color: #cfcfcf;
    padding:10px 30px 30px 30px;
    font-size: 14px;
}
.Terms_Policy a {
    color: #fff;
    padding: 0px 10px;
    
}
.Terms_Policy a:hover {
    color: #00ff00;
}
.Data_Info {
    color: #555;
    text-align: right;
    padding: 0px 20px 15px 0px;
}
.Terms_Policy span{
    color: #7c7d80;
}