@charset "UTF-8";

.warranty-verify-page {
        display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 30px 0 150px;
}
.warranty-verify-page h1 {
    font-size: 40px;
    color: #fff;
}
.warranty-verify-page .editor-content p {
    color: #fff;
}
.warranty-verify-step .step {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #212529;
    font-size: 14px;
}
.warranty-verify-page:after{
	content: "";
    background: radial-gradient(circle, rgba(101,10,9,1) 53%, rgba(52,12,10,1) 92%);
    position: absolute;
    width: 100%;
    height: 30%;
    top: -70px;
    z-index: -1;
    min-height: 375px;
    max-height: 375px;
}
.wrap-step:after{
	    content: "";
    background: #EFEFEF;
    position: absolute;
    height: 3px;
    width: 105px;
    right: 50%;
    transform: translateX(50%) translateY(50%);
    top: 30%;
}
.warranty-verify-page .warranty-verify-step {
	display: flex;
    max-width: 80%;
    justify-content: center;
    text-align-last: center;
    margin: auto;
    position: relative;
    margin-bottom: 100px;
}

.warranty-verify-page .warranty-verify-step .row {
    width: 100%;
}
.title-site-warranty {
    margin-bottom: 70px;
}
.warranty-verify-page .warranty-verify-step .number {
    display: flex;
    background: #EFEFEF;
    padding: 10px 20px;
    border-radius: 50%;
    font-weight: bold;
    color: #000;
    font-size: 20px;
    width: 56px;
    height: 56px;
    outline: 10px solid #EFEFEF4D;
    justify-content: center;
    align-items: center;
}
.warranty-verify-page .warranty-verify-step .active .number {
    background: var(--color1);
    color: #FFF;
	outline: 10px solid #E9322A4D;
}

.warranty-verify-input-step {
   margin: auto;
    max-width: 80%;
}
.warranty-verify-input-step .error-msg {
    display: none;
    color: #dd2424;
    margin: 5px 0 0 10px;
}
.warranty-verify-input-step label {
    display: block;
    font-size: 17px;
    color: #3D3D3D;
    margin: 0 0 5px 15px;
}
.warranty-verify-input-step input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: #F5F5FA;
    height: 64px;
    border-radius: 14px;
    font-size: 16px;
}
.warranty-verify-input-step .warranty-verify-submit {
    text-align: center;
    margin-top: 40px;
    display: flex;
    gap: 100px;
    justify-content: center;
}
.warranty-verify-input-step-2, #alert-warranty-verify-box, #loading-warranty-verify-box {
    display: none;
}
#loading-warranty-verify-box {
    text-align-last: center;
    margin-top: 20px;
}

.alert-warranty-verify {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    margin-bottom: 5px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    background-color: #FCF8E3;
    border: 1px solid #FBEED5;
    border-radius: 12px;
    font-size: 17px;
    max-width: 80%;
    margin: 30px auto 0;
	position:relative;
}
.alert-warranty-verify.success {
    background-color: #DFF0D8;
    border-color: #D6E9C6;
    color: #468847;
}
.alert-warranty-verify.error {
    background-color: #F2DEDE;
    border-color: #EED3D7;
    color: #B94A48;
}
.alert-warranty-verify:after {
    content: "\e92f";
    position: absolute;
    font-family: icomoon;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 29px;
}
.alert-warranty-verify.success{
	content: "\e931" !important;
	color: #71b84d;
}

.alert-warranty-verify.info {
    background-color: #D9EDF7;
    border-color: #BCE8F1;
    color: #3A87AD;
}

.loading-warranty-verify {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.loading-warranty-verify div {
    position: absolute;
    border: 4px solid var(--color1);
    opacity: 1;
    border-radius: 50%;
    animation: loading-warranty-verify 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loading-warranty-verify div:nth-child(2) {
    animation-delay: -0.5s;
}
@keyframes loading-warranty-verify {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    4.9% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

.data-warranty-verify-box {
    font-weight: bold;
    display: flex;
    justify-content: center;
}
.data-warranty-verify-box span {
    margin: 15px;
}
.button-phone-warranty-verify-box {
    margin-top: 20px;
}
