#fontsizecontent {
    transition: all 0.4s;
    position: fixed;
    right: -120%;
    width: 100%;
    height: 100vh;
    top: 0;
    z-index: 993;
    background: rgba(0, 0, 0, 0.75);
}


.fontsizeinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 650px;
    background: #fff;
    padding: 40px;
}

#fontsizecontent.activefont {
    right: 0;
}

#fontsizecontent h3 {
    font-size: 28px;
    text-align: left;
    margin-bottom: 25px;
}

#fontsizecontent p {
    font-size: 22px;
    font-weight: 400;
}

#fontsizecontent p strong {
    font-weight: 700;
}

#fontsizecontent img {
    width: 75%;
    height: auto;
    max-width: 250px;
}

.fontsizesection {
    margin-bottom: 30px;
}

#closefontsize {
    transition: background-color 0.4s;
    position: absolute;
    top: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
    color: #fff;
    background: #FAB23F;
    border-radius: 50%;
    font-size: 35px;
    text-align: center;
    line-height: 68px;
}

#closefontsize:hover {
    background: #008ECB;
    cursor: pointer;
}

