#text-length {
    text-align: center;
    widows: auto;
}

/* #text-container {
  box-shadow: inset 0 30px 23px -7px black;
} */
.top-wall {
    width: 65%;
    height: 44px;
    background-size: 100%;
    /* box-shadow: inset 0 38px 14px -10px #ae80ae; */
    background-repeat: no-repeat;
    top: -23px;
    left: 50%;
    transform: translate(-50%);
    z-index: 2;
}

.top-wall-diamond {
    left: 50%;
    transform: translate(-50%);
    z-index: 3;
    height: 55px;
    top: -34px;
    opacity: 0;
}

.bottom-wall-diamond {
    left: 50%;
    transform: translate(-50%);
    z-index: 3;
    height: 58px;
    bottom: -16px;
    opacity: 0;
}

.bottom-wall {
    height: 37px;
    background-size: 100%;
    /* box-shadow: inset 0 38px 14px -10px #ae80ae; */
    background-repeat: no-repeat;
    bottom: 8px;
    left: 50%;
    transform: translate(-50%);
    z-index: 2;
    opacity: 0;
}

.right-wall {
    background-size: 100%;
    right: -19px;
    width: 33px;
    background-repeat: no-repeat;
    height: 100%;
    z-index: 3;
    top: -11px;
}

.left-wall {
    background-size: 100%;
    left: -19px;
    width: 33px;
    background-repeat: no-repeat;
    height: 100%;
    z-index: 3;
    top: -11px;
}

/* Chrome, Safari, Edge, Opera */
#text-length::-webkit-outer-spin-button,
#text-length::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
#text-length[type=number] {
    -moz-appearance: textfield;
    background: none;
    color: black;
    border: none;
    width: 60px;
}

/*.text-length-plus, .text-length-minus{*/
/*    position: relative;*/
/*    top: -5px;*/
/*}*/

.text-length-button {
    position: relative;
    top: 7px;
    background: #ff0052;
    color: #fff;
    font-weight: bold;
    width: 22px;
    height: 22px;
    font-size: 20px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
}

.text-length-button span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -55%)
}

/* mouse icon */
.mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #000;
    border-radius: 25px;
    opacity: 0.2;
    box-sizing: content-box;
    transform: scale(0.8);
    position: absolute;
    right: 40px;
    bottom: 17px;
}

.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #000;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
}

.width-on-small-screen.shlish {
    width: 40%;
    z-index: 100;
}

.width-on-small-screen.shne-shlish {
    width: 60%;
    z-index: 100;
}

.select-style {
    order: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.06);
    height: 57px;
    padding: 0 25px;
    background: rgba(35, 42, 92, 0.5);
    color: #fff;
}

.z-index-top {
    z-index: 100;
}
.progress-bar-test-mode .wpm-spin {
    top: -84px;
}

.playBtn{
    top: -157px !important;
}

@media (max-width: 1540px) {
    .width-on-small-screen {
        width: 100% !important;
    }

    .progress-bar-test-mode .wpm-spin {
        left: 50%;
        transform: translate(-50%);
    }
}

@media (min-width: 1540px) {
    .absolute-on-small-screen {
        position: absolute;
        top: 115px;
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* mouse icon */
