ion-icon.logout {
    position: fixed;
    right: 1%;
    top: 3%;
    width: 50px;
    height: 50px;
    color: red;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    border: 2px dashed #292b31;
    transition: 0.3s;
    z-index: 100;
    background-color: #17181c;
}

ion-icon.logout:hover {
    scale: 1.05;
    border-color: red;
}

form.sw {
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

form.sw div.sa {
    width: 100%;
    height: 100vh;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
}

div.sa h1 {
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: #e8e7ea;
    font-size: 70px;
}

div.sa h1 span {
    color: #5d51de;
}

div.sa h2.annot {
    padding-top: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: #ffb800;
    font-size: 20px;
    text-align: right;
}

div.back {
    position: relative;
    height: fit-content;
    padding-top: 110px;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

div.choice {
    display: flex;
    align-items: center;
    height: 100px;
}

span.line {
    width: 100%;
    height: 2px;
    background-color: #1e1f23;
}

input[type=radio] {
    position: absolute;
    visibility: hidden;
}

div.choice label {
    position: relative;
    cursor: pointer;
    font-weight: 700;
    font-size: 40px;
    color: #abacb0;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    padding-left: 70px;
    transition: 0.25s;
}

div.choice label:hover {
    color: #FFFFFF;
}

div.choice label::before {
    content: '';
    position: absolute;
    border: 5px solid #abacb0;
    border-radius: 100%;
    height: 40px;
    width: 40px;
    left: 10px;
    top: 22%;
    transition: 0.45s;
}

div.choice label:hover::before {
    border-color: #FFFFFF;
}

div.choice label::after {
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 15px;
    width: 15px;
    top: 41%;
    left: 22.5px;
    transition: 0.25s linear;
}

input[type=radio]:checked~label.true::before {
    border: 5px solid #0DFF92;
    transition-delay: 0.1s;
}

input[type=radio]:checked~label.true::after {
    border: 5px solid #0DFF92;
}

input[type=radio]:checked~label.true::after {
    background: #0DFF92;
}

input[type=radio]:checked~label.true {
    color: #0DFF92;
    transition-delay: 0.1s;
}

input[type=radio]:checked~label.false {
    color: #FF033E;
    transition-delay: 0.1s;
}

input[type=radio]:checked~label.false::before {
    border: 5px solid #FF033E;
    transition-delay: 0.1s;
}

input[type=radio]:checked~label.false::after {
    border: 5px solid #FF033E;
}

input[type=radio]:checked~label.false::after {
    background: #FF033E;
}

div.back textarea {
    resize: none;
    background-color: #17181c;
    color: #abacb0;
    font-size: 20px;
    padding: 20px;
    outline: none;
    border: 5px solid #1e1f23;
    box-shadow: 1.25px 1.25px 2px 0.75px #0000000a;
    border-radius: 15px;
}

form.sw button {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    right: 1%;
    bottom: 3%;
    width: fit-content;
    height: fit-content;
    color: #0DFF92;
    padding: 0;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    border: 2px dashed #292b31;
    transition: 0.3s;
    z-index: 100;
    background-color: #17181c;
}

form.sw button ion-icon {
    width: 50px;
    height: 50px;
}

form.sw button:hover {
    scale: 1.05;
    border-color: #0DFF92;
}

@keyframes animate_fade {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate {
    animation-name: animate_fade;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

/* result page */

div.result {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    padding-bottom: 25px;
}

div.result img.venturyimg {
    width: 500px;
    height: 200px;
    object-fit: cover;
}

div.result img.upyneimg {
    height: 150px;
    object-fit: cover;
    margin: 5px 0 50px 0;
}

div.result h1.rtext {
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #e8e7ea;
    text-align: center;
    font-size: 50px;
    margin-top: -60px;
    padding-bottom: 10px;
}

h1.rtext span.color {
    text-transform: uppercase;
    color: #ffb800;
}

div.result div.view {
    position: relative;
    width: 100%;
    height: fit-content;
    background-color: #1e1f23;
    border-radius: 15px;
    box-shadow: 1.25px 1.25px 2px 0.75px #0000000a;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
}

div.block {
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}

div.block:nth-child(2){
    border-left: 2px solid #17181c;
}

h3.reg {
    color: #e8e7ea;
    padding-bottom: 25px;
    font-size: 28px;
}

span.pts {
    color: #5d51de;
}

p.sp {
    display: inline-block;
    padding: 0 5px;
    width: 500px;
    height: 350px;
    word-wrap: break-word;
    white-space: pre-line;
    overflow: hidden;
    color: #abacb0;
    text-align: justify;
    line-height: 1.5;
    overflow-y: scroll;
}

/* expand */

p.spa {
    display: inline-block;
    padding: 0 15px;
    width: 100%;
    word-wrap: break-word;
    white-space: pre-line;
    overflow: hidden;
    color: #abacb0;
    text-align: justify;
    line-height: 1.5; 
}

.ha {
    justify-content: center;
}
