.view-100.view-auth-result {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: stretch;
    align-items: stretch;
    box-sizing: border-box;
    width: 100%;
    padding: 0;
    margin: 0;
}

.view-100.view-auth-result .st-image {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 15px;
    margin: 0;
    flex: 0 0 300px;

    background-color: var(--c_yellow);
}

.view-100.view-auth-result .st-image .image {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 0;
    margin: 0;
}

.view-100.view-auth-result .st-image .image svg {
    max-width: 100%;
}

.view-100.view-auth-result .st-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    height: 100vh;
    padding: 25px 15px;
    margin: 0;
    flex: 0 1 100%;
    overflow-y: auto;
    position: relative;

    background-color: #fff;
}

.view-100.view-auth-result .link {
    color: #000;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s ease;
    position: relative;
    z-index: +1;
}

.view-100.view-auth-result .link:after {
    content: '';
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 2px;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #ccc;
    transition: all 0.3s ease;
    z-index: -1;
}

.view-100.view-auth-result .link:hover:after {
    left: 100%;
    width: 0;
}

.view-100.view-auth-result .link:hover {
    color: #000;
}

.view-100.view-auth-result .st-success {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.view-100.view-auth-result .st-failure {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.view-100.view-auth-result .st-content .image {
    display: block;
    box-sizing: border-box;
    text-align: center;
    max-width: 110px;
    padding: 0;
    margin: 0 auto 30px auto;
}

.view-100.view-auth-result .st-content .image:last-child {
    margin: 0 auto;
}

.view-100.view-auth-result .st-content .image svg {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.view-100.view-auth-result .text {
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.view-100.view-auth-result .text .title {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 30px;
    font-weight: 700;
    line-height: 125%;
    text-align: center;
    padding: 0;
    margin: 0 0 10px 0;
}

.view-100.view-auth-result .text .title:last-child {
    margin: 0;
}

.view-100.view-auth-result .text .desc {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 20px;
    font-weight: 500;
    line-height: 125%;
    text-align: center;
    padding: 0;
    margin: 0 0 15px 0;
}

.view-100.view-auth-result .text .desc:last-child {
    margin: 0;
}

.view-100.view-auth-result .text .close {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_asap);
    font-size: 14px;
    font-weight: 500;
    line-height: 125%;
    text-align: center;
    padding: 0;
    margin: 0;
}

.view-100.view-auth-result .terms {
    align-self: center;
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 80%;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.view-100.view-auth-result .terms p {
    display: block;
    box-sizing: border-box;
    font-family: var(--f_roboto);
    font-size: 10px;
    font-weight: 400;
    line-height: 120%;
    text-align: center;
    color: #ccc;
    padding: 0;
    margin: 0 0 10px 0;
    cursor: default;
}

@media screen and (max-width: 720px) {
    .view-100.view-auth-result .st-image {
        flex: 0 0 200px;
    }
}

@media screen and (max-width: 550px) {
    .view-100.view-auth-result .st-image {
        flex: 0 0 50px;
    }

    .view-100.view-auth-result .st-image .image {
        display: none;
    }
}

@media screen and (max-width: 440px) {
    .view-100.view-auth-result .st-image {
        display: none;
    }
}

@media screen and (max-width: 360px) {
    .view-100.view-auth-result .st-content .image {
        max-width: 120px;
    }

    .view-100.view-auth-result .text .title {
        font-size: 22px;
    }

    .view-100.view-auth-result .text .desc {
        font-size: 14px;
    }
}
