::selection {
    color: var(--a-color);
    background:var(--nav-color);
}

.wrapper {
    text-align: center;
    width:100%;
    background: transparent;
    padding: 0;
    border-radius: 20px;
}

.wrapper .input-field {
    opacity: 0;
    z-index: -999;
    position: absolute;
}

.content-box {
    margin: 0;
    padding: 1%;
    border-radius:20px;
    border: 1px solid var(--border-color);
    background-color: var(--background-color);
    box-shadow: 1px 1px 10px var(--border-color)
}

.content-box h1{
    width:100%;
    border-radius:20px;
}

.content-box .typing-text {
    overflow: scroll;
    height:350px;
}
.typing-text{
	padding:20px;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.typing-text::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.typing-text {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.typing-text p {
	font-size: 21px;
	line-height: 1.8;	
	text-align: justify;
	letter-spacing: 1px;
	color:var(--text-color);
	padding:10px;
}
.typing-text p span {
    position: relative;
}
.typing-text p span.correct {
    color: #4CAF50;
}
.typing-text p span.incorrect {
    color: #FF5722;
}
.typing-text p span.active {
    color: var(--a-color);
	border-left:2px solid var(--text-color);
}
.typing-text p span.active::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    bottom: 0;
    left: 0;
    opacity: 0;
    border-radius: 5px;
    background: var(--a-color);
    animation: blink 1s ease-in-out infinite;
}
@keyframes blink {
    50% {
        opacity: 1;
    }
}
.content-box .content {
    margin-top: 0px;
    display: flex;
    padding: 12px 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-top: 0px solid var(--border-color);
}
.content button {
    outline: none;
    border: none;
    width: 105px;
    color: #fff;
    padding: 8px 0;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease;
}
.content button:active {
    transform: scale(0.97);
}
.content .result-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: calc(100% - 140px);
    justify-content: space-between;
}
.result-details li {
    display: flex;
    height: 20px;
    list-style: none;
    position: relative;
    align-items: center;
    color:var(--text-color);
}
.result-details li:not(:first-child) {
    padding-left: 22px;
    border-left: 1px solid var(--border-color);
}
.result-details li p {
    font-size: 18px;
}
.result-details li span {
    display: block;
    font-size: 18px;
    margin-left: 10px;
}
li span {
    font-weight: 900;
}

li:not(:first-child) span {
    font-weight: 500;
}


.note{
    max-width: 100%;
    padding: 1%;
}
@media (max-width: 768px) {
    .wrapper {
        padding: 20px;
    }

    .content-box {
        text-align: center;
    }

    .content-box .content {
        padding: 20px 0;
    }

    .content-box .typing-text {
        max-height: 100%;
    }

    .typing-text p {
        font-size: 16px;
        text-align: left;
    }

    .content button {
        width: 100%;
        font-size: 15px;
        padding: 10px 0;
        margin-top: 20px;
    }

    .content .result-details {
        width: 100%;
    }

    .result-details li:not(:first-child) {
        border-left: 0;
        padding: 0;
    }

    .result-details li p,
    .result-details li span {
        font-size: 16px;
    }
}

@media (max-width: 518px) {
    .wrapper .content-box {
        padding: 10px 15px 0;
    }

    .typing-text p {
        font-size: 16px;
    }

    .result-details li {
        margin-bottom: 10px;
    }

    .content button {
        margin-top: 10px;
    }
}