/*:root {*/
/*    --main-color: #0D5CAB;*/
/*    --text-email: #0671E0;*/
/*}*/

/*html {*/
/*    font-family: "Noto Sans", sans-serif;*/
/*    font-size: 16px;*/
/*    width: auto;*/
/*}*/

/*h1 {*/
/*    font-size: 36px;*/
/*    color: var(--main-color);*/
/*}*/

/*h2 {*/
/*    font-size: 30px;*/
/*    color: var(--main-color);*/
/*}*/

/*h3 {*/
/*    font-size: 16px;*/
/*    color: var(--main-color);*/
/*}*/

/*h4 {*/
/*    font-size: 16px;*/
/*    color: var(--main-color);*/
/*}*/

/*label {*/
/*    color: #ACACAC;*/
/*}*/

/*custom-button*/
.btn-round-primary {
    font-family: 'Noto San KR';
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: #005A9C;
    border-radius: 30px;
}

.btn-round-primary:hover {
    color: #FFFFFF;
}

.btn-round-secondary {
    font-weight: 700;
    font-size: 20px;
    color: #005A9C;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 30px;
    border: 1px solid #0D5CAB;
}

.btn-round-secondary:hover {
    color: #005A9C;
}

/*custom input*/
input[type="text"],
input[type="password"],
input[type="email"],
select.form-control {
    background: white;
    border: none;
    border-bottom: 1px solid #ECECEC;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    color: #444;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.white-background-color {
    background-color: white !important;
    border: 1px solid #E8EBED !important;
}

.input-min-width {
    min-width: 25vw;
}

.required {
    color: #ACACAC;
}

.required:after {
    content: " *";
    color: #ACACAC;
}

.underline {
    padding-bottom: 2rem;
    border-bottom: 1px solid #ECECEC;
}

.underline-find-id {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(68, 68, 68, 0.6);
}

.app-border-right {
    padding-right: 5px;
    padding-left: 5px;
    border-right: 1px solid #C7C7C7;
}

/*custom nav*/
.nav-underline {
    width: 9rem;
    height: 4rem;
    margin-bottom: 1px;
    background: 0 0;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    border-bottom: 1px solid #D6D6D6;
}

.nav-underline.active {
    width: 9rem;
    height: 4rem;
    color: #495057;
    background-color: #fff;
    border-bottom: 3px solid #0671E0;
}

@media screen and (max-width:600px) {
    .quick-menu-ctn {
        bottom: 155px;
        right: 5px;
        padding: 0px;
    }
    .btn-round-secondary {
	 	font-size: 15px;
}
}