* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    display: block !important;
}

html.popup_active, body.popup_active {
    overflow: hidden;
}

html.popup_active_fixed, body.popup_active_fixed {
    position: fixed;
    height: 100%;
}

a {
    text-decoration: none !important;
    color: inherit; 
}

body {
    margin: 0px;
    font-family: 'Noto Sans KR', sans-serif;
}

body.nav_active {
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    width: 100%; height: 100%;
    left: 0; top: 0;
    transition: 0.3s;
    visibility: hidden;
}

body.nav_active::before {
    background: rgba(0, 0, 0, 0.2);
    visibility: visible;
    z-index: 4;
}

div {
    display: block;
}

.bgcover {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    z-index: 100000001;
    display: none;
    background: rgba( 0, 0, 0, 0.5 );
    background-image: url('../asset/form/ic_loading.gif');
    background-position: center;
    background-repeat: no-repeat;
}

.bgcover.active {
    position: fixed;
    display: block;
}

.popup {
    font-family: 'Noto Sans KR', sans-serif;
    width: 650px; height: 450px;
    left: 50%; top: 50%;
    margin-left: -325px; margin-top: -207.5px;
    padding: 50px;
    box-sizing: border-box;
    position: fixed;
    background-color: white;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    z-index: 5;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    -webkit-transition: 250ms all cubic-bezier(.25, .45, .45, .95);
    -moz-transition: 250ms all cubic-bezier(.25, .45, .45, .95);
    -o-transition: 250ms all cubic-bezier(.25, .45, .45, .95);
    transition: 250ms all cubic-bezier(.25, .45, .45, .95);
    transform: scale(1.5);
    text-align: left;
}

.popup.active {
    visibility: visible;
    opacity: 1;
    -webkit-transition: 250ms all cubic-bezier(.25, .45, .45, .95);
    -moz-transition: 250ms all cubic-bezier(.25, .45, .45, .95);
    -o-transition: 250ms all cubic-bezier(.25, .45, .45, .95);
    transition: 250ms all cubic-bezier(.25, .45, .45, .95);
    transform: scale(1.0);
}

.popup .close {
    position: absolute;
    right: 10px; top: 10px;
    width: 26px; height: 26px;
}

.popup .close img {
    width: 100%; height: 100%;
}

.popup .logo {
    width: 128px;
}

.popup h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 19px 0;
}

.popup p {
    font-size: 15px;
    margin: 15px 0;
}

.popup p:last-of-type {
    margin-bottom: 0;
}

#browser_popup .browser {
    width: 33%;
    height: 30px;
    margin-top: 10px;
    float: left;
}

#browser_popup .browser img {
    width: 25px;
    margin-right: 5px;
    vertical-align: text-top;
}

.fab_button {
    position: fixed !important;
    bottom: 96px;
    display: block !important;
    overflow: initial !important;
    z-index: 10000000 !important;
    right: 24px;
    visibility: hidden;
}

    .faq_button {
        position: relative !important;
        font-weight: 500;
        min-width: 60px !important;
        height: 60px !important;
        overflow: initial !important;
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-align-items: center !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
        background-size: cover !important;
        box-shadow: 2px 1px 2px 2px rgba(0,0,0,0.2) !important;
        -webkit-transition: box-shadow 0.2s ease-out !important;
        transition: box-shadow 0.2s ease-out !important;
        box-sizing: border-box !important;
        background-color: #fff !important;
        border: 0 solid #fff !important;
        border-radius: 30px !important;
        -webkit-animation: eLtMsx 0.2s cubic-bezier(0.1,0,0.6,1) !important;
        animation: eLtMsx 0.2s cubic-bezier(0.1,0,0.6,1) !important;
        cursor: pointer !important;
        color: #0a723f;
    }

@media screen and (max-width: 650px), screen and (max-height: 415px){
    .popup {
        width: 100%; height: 100%;
        left: 0; top: 0;
        margin: 0;
        padding: 25px;
    }
    
    #browser_popup .browser {
        width: 100%;
        float: none;
    }
}