::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: white;
    overflow-x: auto;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar {
    width: 2px;
    background-color: #7400ff;
    height: 0;
}

body {
    color: #222;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #d1cce9;
}

a {
    text-decoration: none;
    color: #555;
}

.website-title {
    color: #fff;
    font-size: 25px;
    text-decoration: none;
}

.header {
    text-align: center;
    background-color: #10109b;
}

.header a {
    text-decoration: none;
}


/* left side menu */

.leftsection {
    float: left;
    width: 23%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    background: #2a5fd2;
    box-shadow: 5px 1px 4px 0 rgba(0, 0, 0, .08);
    display: none;
}

@media only screen and (max-width: 850px) {
    .leftsection {
        width: 40%;
    }
}

@media only screen and (max-width: 450px) {
    .leftsection {
        width: 70%;
    }
}

.leftsection .close {
    position: absolute;
    right: -45px;
    top: 10px;
    font-size: 18px;
    padding: 10px 17px;
    border: none;
    background: #ff5722;
    color: #fff;
    border-radius: 0;
    cursor: pointer;
    z-index: 3;
}

.leftsection h2 {
    text-align: center;
    margin: 5px;
    font-size: 1.4rem;
}

.leftsection h2 a {
    color: #fff;
    text-transform: none;
    font-size: 18px;
}

.bookmarks a {
    display: block;
    text-align: right;
    padding: 10px 15px;
    color: #ffffff85;
    text-transform: uppercase;
}

#mobile-fly-menu {
    display: block;
    position: absolute;
    cursor: pointer;
    width: 50px;
    height: 40px;
    float: left;
    top: 35px;
    left: 90px;
}

@media only screen and (max-width: 850px) {
    #mobile-fly-menu {
        left: 5%;
    }
}

@media only screen and (max-width: 450px) {
    #mobile-fly-menu {
        left: 2%;
    }
}

#mobile-fly-menu:hover span {
    background: #fff;
}

#mobile-fly-menu span:nth-child(1) {
    top: 10px;
    width: 36px;
}

#mobile-fly-menu span:nth-child(2) {
    top: 19px;
    width: 32px
}

#mobile-fly-menu span:nth-child(3) {
    top: 28px;
    width: 28px
}

#mobile-fly-menu span {
    display: block;
    position: absolute;
    left: 12px;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    height: 4px;
    background: #ffffff8f
}

.site-link {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding-bottom: 20px;
}

.site-link a {
    font-size: 20px;
    display: block;
    padding: 3px 20px;
    text-align: left;
}

.site-link a:hover {
    color: #fff9;
}

.bookmarks a:hover {
    background: #fff;
    color: #000;
}

#scroll {
    display: none;
    position: fixed;
    bottom: 20%;
    right: 0;
    background: transparent;
    z-index: 99;
    color: #10109b;
    font-size: 20px;
    border: 1px solid;
    outline: none;
    cursor: pointer;
    padding: 12px 14px;
    box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, .21);
    border-radius: 4px;
}

.inputarea {
    font-size: 18px;
    text-align: center;
    width: 60%;
    padding: 6px;
    border: 0;
    border-radius: 8px;
    position: relative;
    outline: 0;
}

@media only screen and (max-width: 850px) {
    .inputarea {
        width: 68%;
        font-size: 13px;
    }
}

@media only screen and (max-width: 450px) {
    div#result {
        margin-left: 3%;
    }
}

@media only screen and (max-width: 400px) {
    h1 {
        font-size: 18px;
    }
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: auto;
}

@media only screen and (max-width: 650px) {
    img {
        width: 250px;
    }
}

@media only screen and (min-width: 950px) {
    img {
        width: 650px;
    }
}

h2 {
    font-size: 22px;
}

#result {
    margin-left: 15%;
    margin-right: 22%;
}

#footer h2 {
    font-weight: 600;
    text-shadow: 1px 1px 1px #d1cce9, 3px 3px 9px #4b4bff;
}

.output-letters {
    font-size: 18px;
    text-align: left;
    box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.288);
    display: block;
    width: 100%;
    padding: 20px 12px;
    margin: 12px 0;
    transition: 0.6s;
    border: 1px solid #e2e2e2;
    border-radius: 10px 0 0 10px;
    position: relative;
    outline: 0;
}

@media only screen and (max-width: 850px) {
    .output-letters {
        width: 100%;
        font-size: 14px;
    }
}

.output-letters:hover {
    border-color: #10109b;
    color: #c34949;
    cursor: pointer;
}

.copybtn:hover {
    color: #fff;
    background-color: #10109b;
    transition: 0.4s;
    background: linear-gradient(-45deg, transparent 17px, #10109b 7px);
    transition: background 2s ease;
}

span.copybtn {
    background-color: white;
    border-radius: 0px 8px 8px 0px;
    color: #000;
    border: solid 1px;
    border-color: #10109b;
    padding: 21px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    right: 272px;
    margin-top: -76px;
    position: absolute;
    /* Cut the corner */
    background: linear-gradient(-45deg, #10109b 17px, white 7px);
    transition: background 2s ease;
}

@media only screen and (max-width: 1280px) {
    span.copybtn {
        margin-top: -71px;
        font-size: 12px;
        right: 250px;
    }
}

@media only screen and (max-width: 1024px) {
    span.copybtn {
        margin-top: -71px;
        font-size: 12px;
        right: 110px;
    }
}

@media only screen and (max-width: 950px) {
    span.copybtn {
        margin-top: -71px;
        font-size: 12px;
        right: 110px;
    }
}

@media only screen and (max-width: 750px) {
    span.copybtn {
        right: 90px;
    }
}

@media only screen and (max-width: 600px) {
    span.copybtn {
        right: 60px;
    }
}

@media only screen and (max-width: 450px) {
    span.copybtn {
        right: 10px;
        margin-top: -69px;
        padding: 18px 32px;
    }
}

@media only screen and (max-width: 250px) {
    span.copybtn {
        padding: 20px 12px;
        font-size: 12px;
        right: 0px;
    }
}

#loadmoretext {
    font-size: 20px;
    padding: 12px 180px;
    border: 1px solid#4f0086;
    border-radius: 4px 4px 4px 4px;
    color: #4f0086;
    margin: 15px 0 5px;
    cursor: pointer;
    background: #fff;
    text-align: center;
    outline: 0;
}

#loadmoretext:hover {
    background-color: #2a5fd2;
    color: #fff;
}

p.loadmore {
    text-align: center;
    clear: both;
}

@media only screen and (max-width: 450px) {
    #loadmoretext {
        padding: 9px 70px;
        font-size: 17px;
    }
}

#footer {
    background: #fff;
    padding: 4em;
    margin-left: 17%;
    margin-right: 17%;
    border-radius: 25px;
}

p,
li {
    color: #555;
    line-height: 2rem;
}

@media only screen and (max-width: 400px) {
    #footer {
        margin-left: 7%;
        margin-right: 7%;
        padding: 2em;
    }
}

@media only screen and (max-width: 970px) {
    .website-title {
        font-size: 20px;
    }
}

.social-share {
    float: right;
    margin-top: 10px;
    color: grey;
    font-size: 15px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 850px) {
    .social-share {
        font-size: 13px;
        margin: 5px;
        color: #fff;
    }
}

#paginas {
    text-align: center;
    margin: 20px;
}

#paginas a {
    color: #4f0086;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border: 1px solid #4f0086;
    border-radius: 4px 4px 4px 4px;
    font-size: 12px;
    padding: 9px 13px;
    margin: 2px 0;
    margin-bottom: 8px;
}

#paginas a:hover {
    background-image: linear-gradient( to right, #f20051, #d80064, #b40075, #880081, #4f0086);
    transition: 0.4s;
    color: #fff;
}

@media screen and (max-width: 450px) {
    #paginas a {
        font-size: 8px;
    }
}

.resp-sharing-button__icon,
.resp-sharing-button__link {
    display: inline-block;
}

.resp-sharing-button__link {
    text-decoration: none;
    color: #fff;
}

.resp-sharing-button {
    border-radius: 10px 10px 10px 10px;
    transition: 25ms ease-out;
    padding: 0.5em 1em;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.resp-sharing-button__icon svg {
    width: 1em;
    height: 1em;
    margin-right: 0.4em;
    vertical-align: top;
}

.resp-sharing-button--small svg {
    margin: 2px;
    vertical-align: middle;
}

.resp-sharing-button__icon {
    stroke: #fff;
    fill: none;
}

.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
    fill: #fff;
    stroke: none;
}

.resp-sharing-button--facebook {
    background-color: #3b5998;
}

.resp-sharing-button--twitter {
    background-color: #55acee;
}

.resp-sharing-button--email {
    background-color: #EA4335;
}

.resp-sharing-button--reddit {
    background-color: #5f99cf;
}

.resp-sharing-button--whatsapp {
    background-color: #25d366;
}

.resp-sharing-button--telegram {
    background-color: #54a9eb;
}

.resp-sharing-button--facebook:active,
.resp-sharing-button--facebook:hover,
.resp-sharing-button--reddit:active,
.resp-sharing-button--reddit:hover,
.resp-sharing-button--telegram:hover,
.resp-sharing-button--twitter:active,
.resp-sharing-button--twitter:hover {
    background-color: #4b97d1;
}

.share-button {
    float: right;
    margin-top: 30px;
    color: grey;
    font-size: 15px;
}

.resp-sharing-button--whatsapp:active,
.resp-sharing-button--whatsapp:hover {
    background-color: #1da851;
    border-color: #1da851;
}

.ads1,
.ads2 {
    text-align: center;
}

@media only screen and (min-width: 970px) {
    .ads1 {
        margin-bottom: 6%;
    }
}

.faqs p {
    line-height: 0.8rem;
    font-size: 14px;
    text-decoration: underline;
}