@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:wght@400&display=swap');
@import url("https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp");

* {
    font-family: 'Noto Sans KR', sans-serif;
    box-sizing: border-box;
}

:root {
    --muscul-main: rgb(255,102,0);
    --sm-blue: #3081F5;
    --sm-yellow: #FAE100;
    --sm-orange: #FF6600;
    --sm-dark: #32445A;
}

html, body {
    max-width: 100%;
    margin: 0;
}

/*a태그 리셋*/
a {
    text-decoration: none;
    outline: none;
    color: inherit;
}

a:hover, a:active {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

textarea {
    resize: none;
}

/*이미지 사이즈*/
img {
    max-width: 100%;
}

.material-icons-round, .material-icons-sharp {
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
}

.font08 {
    font-size: 8px;
}

.font10 {
    font-size: 10px;
}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font20 {
    font-size: 20px;
}

.table-layout-fixed {
    table-layout: fixed;
}

.table-border-top-dark-bottom-none {
    border-top: 2px solid;
    border-bottom: 0;
}

.table-border-top-dark-bottom-none th {
    border-bottom: 0;
}

.border-top-1em-white {
    border-top: 1em solid white;
}

.pt-54_2 {
    padding-top: 54.2%;
}

.pt-56_25 {
    padding-top: 56.25%;
}

.pt-100 {
    padding-top: 100%;
}

.pt-111 {
    padding-top: 111%;
}

.min-vh-40 {
    min-height: 40vh;
}

@media (min-width: 992px) {
    .vh-lg-50 {
        height: 50vh;
    }
}

.vh-50 {
    height: 50vh;
}

.vh-40 {
    height: 40vh;
}

.vh-30 {
    height: 30vh;
}

.vh-25 {
    height: 25vh;
}

.vh-20 {
    height: 20vh;
}

.vh-15 {
    height: 15vh;
}

.vh-12 {
    height: 12vh;
}

.vh-10 {
    height: 10vh;
}

.vh-5 {
    height: 5vh;
}

.w-2em {
    width: 2em;
}

.w-5em {
    width: 5em;
}

.w-7em {
    width: 7em;
}

.w-max-17em {
    max-width: 17em;
}

.h-2em {
    height: 2em;
}

.w-init {
    width: initial;
}

.text-FF6600 {
    color: var(--sm-orange);
}

.aspect-ratio-1-1 {
    aspect-ratio: 1 / 1;
}

.blue-circle:before {
    content: '';
    position: absolute;
    display: inline-block;
    width: .9em;
    height: .9em;
    top: .2em;
    left: -1.2em;
    margin-right: .2em;
    border-radius: 100rem;
    background-color: white;
    border: 4px solid var(--sm-blue);
}

.blue-circle {
    position: relative;
}

.textCut {
    display: -webkit-box;
    --webkit-line-clamp: 2;
    --webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-break: break-all;
    overflow: hidden;
    line-height: 1.2;
    height: 2.4em;
}

.cursor-pointer {
    cursor: pointer;
}

.shadow-44 {
    box-shadow: 0 4px 4px rgba(0,0,0, .25);
}

.blueBlackBar {
    display: inline-block;
    background-color: black;
    vertical-align: middle;
    width: .2em;
    height: .8em;
}

.blueBlackBar::before {
    content: '';
    display: inline-block;
    background-color: #3081F5;
    vertical-align: top;
    width: .2em;
    height: .4em;
}

.totalLine {
    display: flex;
    align-items: center;
    text-align: center;
}

.totalLine::before, .totalLine::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid black;
}

.totalLine::before {
    margin-right: 1.5rem;
}

.totalLine::after {
    margin-left: 1.5rem;
}

.carousel-indicators [data-bs-target] {
    width: .5em;
    height: .5em;
    border-radius: 50em;
    border: 1px solid transparent;
}

.filter-D6D6D6-to-388C52 {
    filter: invert(48%) sepia(14%) saturate(1675%) hue-rotate(86deg) brightness(92%) contrast(88%);
}

#spinner {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 5px solid grey;
    border-top: 5px solid var(--muscul-main);
    border-radius: 50%;
    animation: loading 1s linear infinite;
    margin: 1.5rem auto;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.project-select:hover {
    background-color: var(--sm-blue) !important;
    color: white!important;
}

.required::after{
    content: "*";
    color: red;
    margin-left: 0.2rem;
}