@import url('/assets/css/fonts.css');
:root {
    --white: #fff;
    --black: #000;
    --primary: #46AEFF;
    --grey: #838383;
    --grey-02: #D9D9D9;
    --grey-03:  #D7D7D7;
    --grey-04:  #636363;
    --grey-05:  #D3D3D3;

    --bg-01: #EAF6FF;
    --bg-02: #F8F9FA;

    --border-01: #DEE2E6;

    --font-01: #343A40;
    
}

html, body, * {
    font-family: "Noto Sans KR", sans-serif, Arial, Helvetica !important;
    line-height: 100%;
    font-weight: 400;
    letter-spacing: 0%;
    word-break: keep-all; 
    overflow-wrap: break-word;
    line-height: 20px;
    font-synthesis: none;
    
}

body {
	height:100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
        color: var(--black);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--black);
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.bold {
    font-weight: bold;
}

.p-4 {
	padding: 22px 20px !important;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0;
}

option {
    min-height: 100%;
}

input, textarea, button {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
input, input[type="text"], select, input[type="date"] {
    font-size: 13px !important;
    border: 1px solid #D3D3D3;
    border-radius: 5px;
    height: 25px;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    position: relative;
    width: 13px;
    height: 13px;
    min-width: 13px;
    min-height: 13px;
    margin: 1px;
    border: 0.5px solid var(--grey-04);
    display: inline-block;
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    vertical-align: middle;
}

input:disabled, input[type="radio"]:disabled, input[type="checkbox"]:disabled, input[type="text"]:disabled {
	background: #e8e8e8; 
	border: 0.5px solid #cfcfcf;
}



/* 체크 표시 (V자 모양) */
/* input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    display: block;
    width: 13px;
    height: 20px;
    border: solid var(--white);
    border-width: 0 2.5px 2.5px 0;
    background-image: url();
    top: -13px;
    left: 0px;
    transform: rotate(45deg);
    opacity: 1;

} */



/* 체크된 배경색 */
input[type="checkbox"]:checked {
    background-image: url('/assets/img/체크박스.png');
    border: none;
    
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
}



input[type="radio"] , .search-bar input[type="radio"] , .dropdown-menu .dropdownMenu-item .radio-wrap input[type="checkbox"].radio-style  {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    border: 1px solid var(--grey-05);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    display: inline-block;
    transition: border-color 0.2s;
}

input[type="radio"]:checked::before, .search-bar input[type="radio"]:checked::before , .dropdown-menu .dropdownMenu-item .radio-wrap input[type="checkbox"].radio-style:checked::before {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    border-radius: 50%;
    background: var(--primary);  /* primary 컬러 */
    transform: translate(-50%, -50%);
}

.radio-wrap input[type="checkbox"].radio-style {
    appearance: none;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    border: 1px solid #aaa;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
}
.radio-wrap input[type="checkbox"].radio-style:checked {
    border-color: #3498db;
    /* background-color: #3498db; */
    background-image: none !important;
}

.radio-wrap input[type="checkbox"].radio-style:checked::before {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    border-radius: 50%;
    background: var(--primary);  /* primary 컬러 */
    transform: translate(-50%, -50%);
}

.navbar-header {
	padding:0;
}

.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.justify-end {
    justify-content: flex-end;
}

.align-center {
    align-items: center;
}



.justify-center {
    justify-content: center;
}

.mt-40 {
    margin-top: 40px;
}

.btn4025 {
    width: 40px;
    height: 25px;
    border-radius: 25px;
    font-size: 10px;
    font-weight: 700;
}

.btn5025 {
    width: 50px;
    height: 25px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
}

.btn-w {
    color: var(--primary);
    background-color: var(--white);
    border: 1px solid var(--primary);
}

.btn-d {
    color: var(--primary);
    background-color: var(--white);
    border: 1px solid var(--primary);
}

.btn-ts01 {
    color: var(--primary);
    background-color: var(--white);
    border: 1px solid var(--primary);
}

.btn-b {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-p {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-g {
    background-color: var(--white);
    color: var(--grey-04);
    border: 1px solid var(--grey-04);
}

.btn-gb {
    background-color: var(--grey-04);
    color: var(--white);
    border: 1px solid var(--grey-04);
}

.btn-8035 {
    width: 80px;
    height: 35px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: bold;
}

.btn-8032 {
    width: 80px;
    height: 32px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: bold;
}

.row {
	margin-right: 0px !important;
    margin-left: 0px !important;
}

.swal2-container .swal2-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--black);
    /* min-height: 190px; */
    margin: 64px 116px 0;
    padding: 0;
}
.swal2-container .swal2-actions {
    margin: 50px auto 37px !important;
    gap: 8px;
}
.swal2-container .swal2-actions.addScheduleActions {
    margin: 15px auto 20px !important;
}

.swal2-container .swal2-actions.titleTextActionBtn {
    margin: 37px auto 37px !important;
}
div:where(.swal2-container).swal2-center>.swal2-popup {
    min-height: 190px;
    display: grid;
    justify-content: center;
    align-content: center;
	width: max-content;
    max-width: 80%;
    padding: 0;
}

/* 그림자 */

.shadow-wrap {
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    margin: 20px auto 0;
}


@media screen and (max-width: 600px) 
{
    .swal2-container .swal2-title {
        margin: 44px 96px 0;
    }
    .swal2-container .swal2-actions {
        margin: 30px auto 17px !important;
    }
}



@media screen and (max-width: 500px) 
{
    .swal2-container .swal2-title {
        margin: 34px 56px 0;
    }
    .swal2-container .swal2-actions {
        margin: 20px auto 7px !important;
    }

    div:where(.swal2-container).swal2-center>.swal2-popup {
        max-width: 90%;
    }
}

@media screen and (max-width: 400px) 
{
    .swal2-container .swal2-title {
        margin: 34px 36px 0;
    }

}