﻿@charset "UTF-8";

@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    font-display: swap;
    src: local('Pretendard Regular');
    src: url('/assets/fonts/Pretendard-Regular.woff2') format('woff2'),url('/assets/fonts/Pretendard-Regular.woff') format('woff'),url('/assets/fonts/Pretendard-Regular.otf') format('opentype')
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    font-display: swap;
    src: local('Pretendard SemiBold');
    src: url('/assets/fonts/Pretendard-SemiBold.woff2') format('woff2'),url('/assets/fonts/Pretendard-SemiBold.woff') format('woff'),url('/assets/fonts/Pretendard-SemiBold.otf') format('opentype')
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    font-display: swap;
    src: local('Pretendard Bold');
    src: url('/assets/fonts/Pretendard-Bold.woff2') format('woff2'),url('/assets/fonts/Pretendard-Bold.woff') format('woff'),url('/assets/fonts/Pretendard-Bold.otf') format('opentype')
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 900;
    font-display: swap;
    src: local('Pretendard Black');
    src: url('/assets/fonts/Pretendard-Black.woff2') format('woff2'),url('/assets/fonts/Pretendard-Black.woff') format('woff'),url('/assets/fonts/Pretendard-Black.otf') format('opentype')
}

* {
    font-family: 'Pretendard'
}
.btn-sm {
    font-size:13px !important;
    max-width:130px !important;
}
.w-80px {
    width: 80px !important;
}

.w-100px{
    width: 100px !important;
}
.w-125px {
    width: 125px !important;
}
.w-150px {
    width: 150px !important;
}
.w-175px {
    width: 175px !important;
}
.w-200px {
    width: 200px !important;
}
.w-300px {
    width: 300px !important;
}

.min-h-400px{
    min-height:400px;
}

.w-xs-10 { width: 10%!important; }
.w-xs-15 { width: 15%!important; }
.w-xs-20 { width: 20%!important; }
.w-xs-100 { width: 100%!important; }

@media (min-width: 576px) {
    .w-sm-10 { width: 10%!important; }
    .w-sm-15 { width: 15%!important; }
    .w-sm-20 { width: 20%!important; }
    .w-sm-50 { width: 50%!important; }
    .w-sm-100 { width: 100%!important; }
}

@media (min-width: 768px) {
    .w-md-10 { width: 10%!important; }
    .w-md-15 { width: 15%!important; }
    .w-md-20 { width: 20%!important; }
    .w-md-50 { width: 50%!important; }
}

@media (min-width: 992px) {
    .w-lg-10 { width: 10%!important; }
    .w-lg-15 { width: 15%!important; }
    .w-lg-20 { width: 20%!important; }
    .w-lg-50 { width: 50%!important; }
}



.page-item.active .page-link {
    background-color: #546686 !important;
    border-color: #546686 !important;
}

.fw-bold{
    font-weight:700;
}
.text-underline {
    text-decoration:underline;
}
 .icon-right {
    position: relative;
    padding-right: 30px; /* 아이콘 영역 확보 */
    cursor:move;
}
.icon-right::after {
    content: "\f047"; /* Font Awesome user icon unicode */
    font-family: 'FontAwesome';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; 
}