/*---------------- add modal -----------------*/
.addSmsAuthModal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.addSmsAuthModal_bg {
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100vh;
    position: absolute;
}

.addSmsAuthModal_content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 500px;
    box-sizing: border-box;
    padding: 2em;
    background: #fff;
    transform: translate(-50%, -50%);
    border-radius: 5px;
}

.addSmsAuthModal_content_inner {
    position: relative;
}
.addSmsAuthModal_content_inner p{	
    font-size: .9rem;
    line-height: 1rem;
}

.smsAuthModalClose_batsu {
	display: block;
	font-size: 1.5em;
	font-weight: bold;
	position: absolute;
    top: -20px;
	right: -15px;
}

.smsAuthModalClose_batsu:hover {
	background: #333;
	border-color: #333;
	color: #FFF;
}

.addSmsAuthModal_desc {
    font-size: 14px;
    text-align: center;
}

.addSmsAuthModal_text_emphasis {
    font-size: 20px;
    font-weight: bold;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: center;
    border-top: solid 3px #00afec;
    border-bottom: solid 3px #00afec;
    border-image: linear-gradient(to right, #00afec 0%, #00afec 100%);
    border-image-slice: 1;
}

.addSmsAuthModal_btnGroup {
    margin-top: 1em;
    text-align: center;
}

.addSmsAuthModal_btnGroup #auth_code {
    width: 120px !important;
    display: initial;
}

.addSmsAuthModal_btn {
    padding: .75em 1em;
    border-radius: 5px;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    background-color: #00afec;
    transition: opacity .6s;
}

.addSmsAuthModal_btn:disabled {
    cursor: not-allowed;
    color: #fff;
    background-color: #808080;
}

.addSmsAuthModal_btn:hover {
    opacity: .7;
}

.addSmsAuthModal_invalid_sms {
    display: none;
    font-size: 0.8em;
}

.sms_auth_ng_area {
    margin-top: 0.5em;
    text-align: center;
}

#sms_auth_ng_text {
    color: red ;
    font-size: 0.8em;
}

.addSmsAuthModal_inquiry {
    margin-top: 0.4em;
    font-weight: bold;
    font-size: 1.2em;
}

@media screen and (max-width: 400px) {
    .addSmsAuthModal_btn {
        margin-top: 1.5em;
        width: 80%;
    }
    .addSmsAuthModal_btn:hover {
        opacity: 1;
    }
    .addSmsAuthModal_invalid_sms {
        display: none;
        font-size: 0.7em;
    }
    .addSmsAuthModal_text_emphasis {
        width: 80%;
    }
}

/*---------------- END add modal -----------------*/
