* {
    font-family: "Open Sans", sans-serif !important;
}
.center {
    display: flex;
    justify-content: center;
}
a {
    text-decoration: none;
}
.btn-primary {
    color: #fff;
    background-color: #cd400b !important;
    border-color: #cd400b;
}
.btn-primary:hover {
    color: #fff;
    background-color: #cd400b !important;
    border-color: #cd400b;
}
.btn-primary:focus {
    color: #fff;
    background-color: #cd400b !important;
    border-color: #cd400b !important;
    box-shadow: 0 0 0 0.25rem rgb(205 64 11 / 50%) !important;
}
.navbar{
    padding-bottom: 0.0rem;
    padding-top: 0.0rem;
}
.navbar-nav > li > a {
    font-size: 14px !important;
    font-weight: 600 !important;
    border: 1px solid transparent;
}
.paraphrasing_levels.active,
.paraphrasing_results.active {
    border-radius: unset;
    background: #f9f9f9;
    opacity: 1;
}
.toolSection {
    margin-top: 50px !important;
}
.feature_part {
    margin-top: 7px !important;
}
.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
    border-bottom: 3px solid #cd400b;
}
.navbar-nav .nav-item {
    margin-left: 5px;
    align-self: center;

}
.nav-link:focus,
.nav-link:hover {
    color: black !important;
    border-bottom: 3px solid #cd400b;
}
.paraphrasing_levels.active,
.paraphrasing_results.active {
    margin-bottom: 0 !important;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #e5e5e5;
}
::-webkit-scrollbar-thumb {
    background: #aaaab1;
}
::-webkit-scrollbar-thumb:hover {
    background: #aaaab1;
}
.selectdiv {
    position: absolute;
    border: 1px solid;
    width: 106px;
    margin-bottom: 3px;
    height: 35px;
    z-index: 5;
}

.selectdiv ul {
    background: #fff;
    text-align: left;
    margin: 0px;
    padding: 0px;
    list-style: none;
    position: absolute;
    bottom: 33px;
    border: 1px solid;
    border-radius: 5px;
    left: -1px;
    width: 106px;
    height: auto;
    max-height: 178px;
    overflow: auto;
    /* display: block; */
}

.selectdiv ul li {
    padding-left: 12px;
    cursor: pointer;
    font-size: 13px;
    border-bottom: 1px solid #ccc;
    color: #000;
    font-weight: 500;
    line-height: 25px;
    width: 100%;
}
.selectdiv ul li:hover {
    background-color: #c9c9c9;
    color: #000;
}
.selectdiv em {
    text-align: left;
    position: absolute;
    left: 7px;
    font-size: 13px;
    top: 7px;
    font-style: normal;
    cursor: pointer;
}
.selectdiv:after {
    content: "<>";
    cursor: pointer;
    font: 17px "Consolas", monospace;
    color: #333;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 1px;
    top: 5px;
    padding: 0 0 2px;
    border-bottom: 1px solid #999;
    position: absolute;
    pointer-events: none;
}
.fmenu span {
    color: #3d2922;
    font-size: 20px;
    font-weight: 700;
    margin-top: 67px;
    margin-bottom: 20px;
}

[data-tooltip] {
    position: relative;
    z-index: 10;
}

/* Positioning and visibility settings of the tooltip */
[data-tooltip]:before,
[data-tooltip]:after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 50%;
    bottom: calc(100% + 5px);
    /* 5px is the size of the arrow */
    pointer-events: none;
    transition: 0.2s;
    will-change: transform;
}

/* The actual tooltip with a dynamic width */
[data-tooltip]:before {
    content: attr(data-tooltip);
    padding: 10px 18px;
    min-width: 50px;
    max-width: 300px;
    width: max-content;
    width: -moz-max-content;
    border-radius: 6px;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.9);
    background-image: linear-gradient(
        30deg,
        rgba(0, 0, 0, 0.44),
        rgba(0, 0, 0, 0.44),
        rgba(0, 0, 0, 0.44)
    );
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: center;
    white-space: pre-wrap;
    transform: translate(-50%, -5px) scale(0.5);
}

/* Tooltip arrow */
[data-tooltip]:after {
    content: "";
    border-style: solid;
    border-width: 5px 5px 0px 5px;
    /* CSS triangle */
    border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
    transition-duration: 0s;
    /* If the mouse leaves the element, 
    the transition effects for the 
    tooltip arrow are "turned off" */
    transform-origin: top;
    /* Orientation setting for the slide-down effect */
    transform: translateX(-50%) scaleY(0);
}
@media only screen and (min-width: 768px) {
    /* Tooltip becomes visible at hover */
    [data-tooltip]:hover:before,
    [data-tooltip]:hover:after {
        visibility: visible;
        margin-bottom: 3px;
        opacity: 1;
    }
    /* Scales from 0.5 to 1 -> grow effect */
    [data-tooltip]:hover:before {
        /* transition-delay: 0.3s; */
        transform: translate(-50%, -5px) scale(1);
    }

    /* 
  Arrow slide down effect only on mouseenter (NOT on mouseleave)
*/

    [data-tooltip]:hover:after {
        /* transition-delay: 0.5s; */
        /* Starting after the grow effect */
        transition-duration: 0.2s;
        transform: translateX(-50%) scaleY(1);
    }
}

/*
  That's it for the basic tooltip.

  If you want some adjustability
  here are some orientation settings you can use:
*/

/* LEFT */
/* Tooltip + arrow */
[data-tooltip-location="left"]:before,
[data-tooltip-location="left"]:after {
    left: auto;
    right: calc(100% + 5px);
    bottom: 50%;
}

/* Tooltip */
[data-tooltip-location="left"]:before {
    transform: translate(-5px, 50%) scale(0.5);
}

[data-tooltip-location="left"]:hover:before {
    transform: translate(-5px, 50%) scale(1);
}

/* Arrow */
[data-tooltip-location="left"]:after {
    border-width: 5px 0px 5px 5px;
    border-color: transparent transparent transparent rgba(55, 64, 70, 0.5);
    transform-origin: left;
    transform: translateY(50%) scaleX(0);
}

[data-tooltip-location="left"]:hover:after {
    transform: translateY(50%) scaleX(1);
}

/* RIGHT */
[data-tooltip-location="right"]:before,
[data-tooltip-location="right"]:after {
    left: calc(100% + 5px);
    margin-left: 5px;
    bottom: 50%;
}

[data-tooltip-location="right"]:before {
    transform: translate(5px, 50%) scale(0.5);
}

[data-tooltip-location="right"]:hover:before {
    transform: translate(5px, 50%) scale(1);
}

[data-tooltip-location="right"]:after {
    border-width: 5px 5px 5px 0px;
    border-color: transparent rgba(0, 0, 0, 0.9) transparent transparent;
    transform-origin: right;
    transform: translateY(50%) scaleX(0);
}

[data-tooltip-location="right"]:hover:after {
    transform: translateY(50%) scaleX(1);
}

/* BOTTOM */
[data-tooltip-location="bottom"]:before,
[data-tooltip-location="bottom"]:after {
    top: calc(100% + 5px);
    bottom: auto;
}

[data-tooltip-location="bottom"]:before {
    transform: translate(-50%, 5px) scale(0.5);
}

[data-tooltip-location="bottom"]:hover:before {
    transform: translate(-50%, 5px) scale(1);
}

[data-tooltip-location="bottom"]:after {
    border-width: 0px 5px 5px 5px;
    border-color: transparent transparent rgba(55, 64, 70, 0.9) transparent;
    transform-origin: bottom;
}

.example-elements {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
}

.example-elements span {
    display: inline-block;
}

/* Thumbnail settings */
@media (max-width: 750px) {
    .example-elements {
        max-width: 150px;
    }

    .example-elements span:before,
    .example-elements span:after {
        visibility: hidden;
        opacity: 1;
    }

    .example-elements span:before {
        content: "Tooltip";
        font-size: 20px;
        transform: translate(-50%, -5px) scale(1);
    }

    .example-elements span:after {
        transform: translate(-50%, -1px) scaleY(1);
    }

    [data-tooltip]:after {
        bottom: calc(100% + 3px);
    }

    [data-tooltip]:after {
        border-width: 7px 7px 0px 7px;
    }
}
.g-recaptcha {
    -ms-transform: scale(0.85);
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
    width: 304px !important;
    height: 78px !important;
    margin: 0 auto;
}
ol li {
    font-size: 18px;
}
@media only screen and (max-width: 820px) {
    .article_logo_class,
    .rewriter_logo_class {
        font-size: 19px !important;
    }
    #blog_button {
        text-align: right;
        padding-top: 25px;
    }

    #blog_button a {
        font-size: 18px;
    }
    .unlock_premium_box{
        margin-left: 310px !important;
    }
}
@media only screen and (max-width: 480px) {
.unlock_premium_box{
    margin-left: 189px !important;
    margin-top: 75px !important;

}
}
.paraphrasing_levels.active,
.paraphrasing_results.active {
    margin-bottom: 10px;
}

.vertical-center {
    margin: auto 0;
    margin-left: 5px;
}

.toolBtn {
    min-height: 55px;
    height: auto;
    padding: 10px 7px;
}

[data-tooltip] {
    position: relative;
    z-index: 10;
}

/* Positioning and visibility settings of the tooltip */
[data-tooltip]:before,
[data-tooltip]:after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 50%;
    bottom: calc(100% + 5px);
    /* 5px is the size of the arrow */
    pointer-events: none;
    transition: 0.2s;
    will-change: transform;
}

/* The actual tooltip with a dynamic width */
[data-tooltip]:before {
    content: attr(data-tooltip);
    padding: 10px 18px;
    min-width: 50px;
    max-width: 300px;
    width: max-content;
    width: -moz-max-content;
    border-radius: 6px;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.9);
    background-image: linear-gradient(
        30deg,
        rgba(0, 0, 0, 0.44),
        rgba(0, 0, 0, 0.44),
        rgba(0, 0, 0, 0.44)
    );
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: center;
    white-space: pre-wrap;
    transform: translate(-50%, -5px) scale(0.5);
}

/* Tooltip arrow */
[data-tooltip]:after {
    content: "";
    border-style: solid;
    border-width: 5px 5px 0px 5px;
    /* CSS triangle */
    border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
    transition-duration: 0s;
    /* If the mouse leaves the element, 
                              the transition effects for the 
                              tooltip arrow are "turned off" */
    transform-origin: top;
    /* Orientation setting for the
                              slide-down effect */
    transform: translateX(-50%) scaleY(0);
}

.after-rewite {
    display: inline-flex;
    margin-left: 3px;
    font-weight: 500 !important;
    color: #5E5E5E !important;
    border-radius: 5px !important;
    border: 1.304px solid #AAA !important;
    background: #FFF !important;
    box-shadow: -4px -4px 0px 0px #E9EDFC inset !important;

}

.after-rewite:hover {
    display: inline-flex;
    font-weight: 500 !important;
    border-radius: 5px !important;
    color: #000 !important;
    border: 1px solid #304158 !important;
    background: #FFF !important;
    box-shadow: -5px -5px 0px 0px rgba(224, 229, 251, 0.50) inset !important;
}

/* 
  Arrow slide down effect only on mouseenter (NOT on mouseleave)
*/
@media screen and (min-width: 768px) {
    /* Tooltip becomes visible at hover */
    [data-tooltip]:hover:before,
    [data-tooltip]:hover:after {
        visibility: visible;
        margin-bottom: 3px;
        opacity: 1;
    }

    /* Scales from 0.5 to 1 -> grow effect */
    [data-tooltip]:hover:before {
        /* transition-delay: 0.3s; */
        transform: translate(-50%, -5px) scale(1);
    }

    [data-tooltip]:hover:after {
        /* transition-delay: 0.5s; */
        /* Starting after the grow effect */
        transition-duration: 0.2s;
        transform: translateX(-50%) scaleY(1);
    }
}

/*
  That's it for the basic tooltip.

  If you want some adjustability
  here are some orientation settings you can use:
*/

/* LEFT */
/* Tooltip + arrow */
[data-tooltip-location="left"]:before,
[data-tooltip-location="left"]:after {
    left: auto;
    right: calc(100% + 5px);
    bottom: 50%;
}

/* Tooltip */
[data-tooltip-location="left"]:before {
    transform: translate(-5px, 50%) scale(0.5);
}

[data-tooltip-location="left"]:hover:before {
    transform: translate(-5px, 50%) scale(1);
}

/* Arrow */
[data-tooltip-location="left"]:after {
    border-width: 5px 0px 5px 5px;
    border-color: transparent transparent transparent rgba(55, 64, 70, 0.5);
    transform-origin: left;
    transform: translateY(50%) scaleX(0);
}

[data-tooltip-location="left"]:hover:after {
    transform: translateY(50%) scaleX(1);
}

/* RIGHT */
[data-tooltip-location="right"]:before,
[data-tooltip-location="right"]:after {
    left: calc(100% + 5px);
    margin-left: 5px;
    bottom: 50%;
}

[data-tooltip-location="right"]:before {
    transform: translate(5px, 50%) scale(0.5);
}

[data-tooltip-location="right"]:hover:before {
    transform: translate(5px, 50%) scale(1);
}

[data-tooltip-location="right"]:after {
    border-width: 5px 5px 5px 0px;
    border-color: transparent rgba(0, 0, 0, 0.9) transparent transparent;
    transform-origin: right;
    transform: translateY(50%) scaleX(0);
}

[data-tooltip-location="right"]:hover:after {
    transform: translateY(50%) scaleX(1);
}

/* BOTTOM */
[data-tooltip-location="bottom"]:before,
[data-tooltip-location="bottom"]:after {
    top: calc(100% + 5px);
    bottom: auto;
}

[data-tooltip-location="bottom"]:before {
    transform: translate(-50%, 5px) scale(0.5);
}

[data-tooltip-location="bottom"]:hover:before {
    transform: translate(-50%, 5px) scale(1);
}

[data-tooltip-location="bottom"]:after {
    border-width: 0px 5px 5px 5px;
    border-color: transparent transparent rgba(55, 64, 70, 0.9) transparent;
    transform-origin: bottom;
}

.example-elements {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
}

.example-elements span {
    display: inline-block;
}

/* Thumbnail settings */
@media (max-width: 750px) {
    .example-elements {
        max-width: 150px;
    }

    .example-elements span:before,
    .example-elements span:after {
        visibility: hidden;
        opacity: 1;
    }

    .example-elements span:before {
        content: "Tooltip";
        font-size: 20px;
        transform: translate(-50%, -5px) scale(1);
    }

    .example-elements span:after {
        transform: translate(-50%, -1px) scaleY(1);
    }

    [data-tooltip]:after {
        bottom: calc(100% + 3px);
    }

    [data-tooltip]:after {
        border-width: 7px 7px 0px 7px;
    }
}
@media (max-width: 767px) {
    .hidden-mobile {
        display: none;
    }

    #upload_btnn img {
        width: 80%;
        height: auto;
    }
}

#outer {
    width: 100%;
    text-align: center;
}

.inner {
    display: inline-block;
}
.ufBtn2 {
    float: left;
}

.paraphraser_option_box,
.paraphraser_result_box {
    display: flex;
    background: white;
    justify-content: center;
    align-items: end;
}

.paraphrasing_levels.active,
.paraphrasing_results.active {
    border-bottom: solid 3px #cd400b;
    border-radius: unset;
    border-right: none !important;
}
.paraphrasing_levels.active - 1{
    border-right:none !important;
}

.paraphrasing_levels,
.paraphrasing_results {
    text-align: left;
    padding: 8px 0 10px 0 !important;
    font-size: 16px;
    font-weight: 600;
    color: black;
    opacity: 0.5;
    z-index: 1111;
    filter: grayscale(1);
    width: 20%;

}
.paraphrasing_levels.free {
    opacity: 1 !important;
    filter: none !important;

}
.paraphrasing_levels.unlocked{
    opacity: 1 !important;
    filter: none !important;
}
.inner_title.active,
.result_inner_title.active {
    opacity: 1;
    color: #cd400b;
}
.inner_title{
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
}
.paraphrasing_levels:hover {
    cursor: pointer;
}
.paraphrasing_levels img.lock {
    filter: brightness(0.85);

}
.blueIconBox img {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

.numbering {
    background-image: url("https://www.articlerewriter.net/assets/frontend/images/learning_img_bg.png");
    padding: 10px;
    background-size: 70px;
    background-repeat: no-repeat;
}

.numbering img {
    width: 35px !important;
}
.paraphrasing_levels{
    text-align: center;
}
.paraphrasing_levels:not(:last-child){
    border-right: 1px solid #D2D1D1;
}
.paraphraser_option_box .display_none{
    display: none;
}
@media screen and (max-width: 640.5px) {
    .ufBtn2 {
        float: unset;
    }

    .flex_for_buttons_ #changelanguage {
        margin-top: 11px;
    }
}

@media screen and (max-width: 991.5px) {
    #output-content,
    .toolBtn {
        border-left: solid 1px #e6e6e6;
    }

    #output-box {
        display: none;
    }

    .paraphrase-loader {
        width: 100%;
        left: 0;
    }
}

#edpd_global_copy_alert {
    position: fixed;
    right: -55px;
    top: 150px;
    z-index: 9999;
    background: #17a881;
    color: white;
    padding: 4px;
    border: 1px solid #17a881;
    border-radius: 5px;
    font-size: 14px;
    transition: opacity 0.5s;
}

#edpd_global_copy_alert.edpd-deactive-alert {
    transform: translate(210px);
    transition: transform 1s ease;
}

#edpd_global_copy_alert.edpd-active-alert {
    transition: transform 1s ease;
    transform: translate(-20px);
    right: 55px;
}

#upload_btnn {
    width: 35px;
    height: 35px;
}

#upload_btnn img {
    width: 100%;
    height: auto;
}

.ubtn {
    background: black;
    color: #fff;
    padding: 4px 6px;
    border-radius: 4px;
    cursor: pointer;
}

label {
    margin-bottom: 0;
}

.toolBtn button {
    background: #cd400b;
    border: none;
    color: #fff;
    padding: 7px 8px !important;
    border-radius: 4px;
}

label.ufBtn {
    background: black;
    color: #fff;
    padding: 3px 6px;
    border-radius: 4px;
    margin: 2px;
    cursor: pointer;
}

.left {
    float: left;
}

.right {
    float: right;
}

.info {
    font-family: "-apple-system";
}

.info img {
    width: 30px;
    height: auto;
    margin-left: 10px;
}

.counting-word {
    visibility: hidden;
    float: left;
}

@media (max-width: 820px) {
    .navbar-nav{
        gap: 10px;
    }
    .navbar-nav .nav-item{
        align-self: baseline;
        width: auto;
        margin: 0 auto;
    }
    .paraphraser_option_box{
        height: auto;
    }
    .ad-before-btn {
        display: none;
    }
    .ad-after-btn {
        margin-top: 30px;
    }
    .toolBtn button {
        width: auto;
        margin-top: 0;
        padding: 8px 8px;
        font-size: 12px;
    }

    .paraphrasing_levels {
        text-align: left;
        font-size: 10px;
    }

   
    .d-mbl-none {
        display: none;
    }

    .paraphrasing_levels,
    .paraphrasing_results {
        text-align: left;
        padding: 8px 15px 8px 15px !important;
        font-size: 16px;
        color: black;
    }
    .blog-box{
        width: 100% !important;
    }
    section.blog div.d-flex{
        flex-direction: column !important;
        row-gap: 20px !important;
    }
}

/* #home_recaptcha {
        display: none;
    } */

.ad_blocker {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2em;
    z-index: 9999999;
    row-gap: 20px;
}

.blocker_container {
    background-color: #f3f7fa;
    padding: 2em;
    max-width: 400px;
    background-repeat: no-repeat;
    background-position: top left;
    border-radius: 10px;
    position: relative;
    background: url(/web_assets/frontend/img/contact.png) #f4fafa;
}

.blocker_close {
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    background-color: #f66d6d;
    border-radius: 50%;
    padding: 0 6px;
    float: right;
}

span.blocker_close:first-child {
    position: absolute;
    right: 10px;
    border-radius: 4px;
    z-index: 1111;
}

.blocker_heading {
    color: #000027;
    font-size: 36px;
    font-weight: 700;
    margin-top: 0.725em;
}

.blocker_text {
    color: #606060;
    line-height: 1.5;
    text-align: center;
    margin: 0.725em;
    font-size: 16px !important;
}

.blocker_btn {
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 4px;
    background-color: #f66d6d;
    color: #fff;
    margin: 0 auto;
}

.blocker_image {
    filter: hue-rotate(110deg);
}

.reset-btn {
    width: auto;
    padding: 5px;
    float: right;
    margin: 0 auto;
    cursor: pointer;
    display: none;
    background-color: #efeeee;
    padding: 7px;
    border-radius: 3px;
}

.paraphrase-loader {
    position: absolute;
    top: 180px;
    display: none;
    padding: 0px 100px;
}

.progress-bar {
    width: 0;
    height: 10px;
    float: left;
    background-color: #cd400b;
}

#afteroutput {
    
}

#afteroutput button {
    border: none;
    border-radius: 5px;
    padding: 5px 5px;
}
#output-content b {
    color: #cd400b;
}
.ngray_section img {
    width: 50px !important;
    margin-bottom: 20px;
}


.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.socialLink .widget .social li {
    display: inline-block;
}
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}
ul li {
    font-size: 18px;
}
.socialLink .widget .social li a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px -2px rgb(0 0 0 / 20%);
    box-shadow: 0 5px 10px -2px rgb(0 0 0 / 20%);
}
.socialLink .widget .social li a img {
    vertical-align: middle;
    width: 30px;
    height: 30px;
}
.socialLink .widget .social li a:hover {
    color: #fff;
    box-shadow: 0 0 10px #00000091;
}
@media only screen and (max-width: 768px) {
    .cpyText {
        text-align: center;
    }
}


/* #feedback_moddel_trigger_btn{
    background: #CD400B;
    color: white;
    padding: 10px 20px;
    position: fixed;
    transform: rotate(90deg);
    left: -40px;
    border:0;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    top: calc(50% - 20px);
    z-index: 12;
    box-shadow: 0 0 0 0 transparent;
    font-size: 16px;
}
#feedback_moddel_trigger_btn_mobile{
    position: fixed;
    display: none;
    bottom: 20px;
    z-index: 11;
    left: 20px;
    padding: 5px;
    background: #222;
    border-radius: 50%;
    cursor:pointer;
} */
/* #feedback_moddel_trigger_btn:hover{
    box-shadow: 0 -2px 10px -1px #aaa;
} */
/* The Modal (background) */
.edtpd-feedback-modal {
    display: none;
    position: fixed; /* Stay in place */
    z-index: 13; /* Sit on top */
    padding-top: 40px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
/* .edtpd-feedback-modal .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 400px;
  }
  .edtpd-feedback-modal .modal-content .feedback-form {
      display: flex;
      flex-direction: column;
      row-gap: 15px;
      margin-top: 20px;
      justify-content: right;
      position: relative;
  }
  .edtpd-feedback-modal .modal-content .feedback-form.loader-element:before {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: #0007;
      content: 'Sending Feedback....';
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .edtpd-feedback-modal .modal-content .feedback-form input[type="email"],
  .edtpd-feedback-modal .modal-content .feedback-form textarea{
      padding: 5px;
      font-size: 16px;
      border: 1px solid #ccc;
  }
  .edtpd-feedback-modal .modal-content .feedback-form input[type="email"]:focus,
  .edtpd-feedback-modal .modal-content .feedback-form textarea:focus
  {
      border-color: #333;
  }
  .edtpd-feedback-modal .modal-content .feedback-form textarea{
      height: 120px;
      font-family: Arial, Helvetica, sans-serif;
  }
  .edtpd-feedback-modal .modal-content .feedback-form button{
      width: 120px;
      padding: 5px;
      background: #CD400B;
      color: white;
      border: 0;
      cursor: pointer;
  }
  .edtpd-feedback-modal .modal-content p.responseMsg {
      text-align: center;
      display: none;
      color: green;
  } */
/* The Close Button */
/* .edtpd-feedback-modal .edtpd-feedback-close {
    color: #aaaaaa;
    float: right;
    line-height: 10px;
    font-weight: bold;
  }
  
  .edtpd-feedback-modal .edtpd-feedback-close:hover,
  .edtpd-feedback-modal .edtpd-feedback-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  } */

/*  -- SHaker Css */
.shaker-element {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

@media screen and (max-width: 992px) {
    #feedback_moddel_trigger_btn {
        display: none;
    }
    /* #feedback_moddel_trigger_btn_mobile{
          display: block;
      } */
    .g-recaptcha {
        -ms-transform: scale(0.7) !important;
        transform: scale(0.7) !important;
        -webkit-transform: scale(0.7) !important;
    }
    .edtpd-feedback-modal .modal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 20px;
        border: 1px solid #888;
        width: 100%;
        max-width: 280px;
    }
}
.paraphrase-loader {
    position: absolute;
    top: 180px;
    display: none;
    padding: 0px 100px;
}

.progress-bar {
    width: 0;
    height: 10px;
    float: left;
    background-color: #cd400b;
}


#output-content b {
    color: #cd400b;
}
.ngray_section img {
    width: 50px !important;
    margin-bottom: 20px;
}

/* Base styles for larger screens */
.feature-table {
    display: flex;
    justify-content: center;
}

.feature-table .table-wrapper {
    border: 2px solid #304158;
    border-radius: 10px;
    overflow: hidden;
}

.feature-table table {
    width: auto;
    background-color: #FFF;
    box-shadow: -15px -15px 0px 0px rgba(224, 229, 251, 0.50) inset;
    border-collapse: collapse;
}

.feature-table table tr td {
    text-align: start;
    color: #000;
    font-family: "Open Sans", sans-serif !important;
    font-size: 16px;
    padding: 15px 5em;
    border-bottom: 2px solid #304158;
}

.feature-table table tr td:first-child {
    border-right: 2px solid #304158;
}

.feature-table table tr:last-child td {
    border-bottom: none;
}

/* Responsive styles for smaller screens */
@media (max-width: 992px) {
    .feature-table table {
        width: 100%; /* Make the table full width on smaller screens */
    }
    .feature-table{
        margin-bottom: 20px;
    }

    .feature-table table tr td {
        padding: 10px; /* Reduce cell padding for smaller screens */
        font-size: 12px; /* Reduce font size for smaller screens */
    }
}





/*==============FAQS==========*/

.question {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    column-gap: 10px;
    cursor: pointer;
    position: relative;
    user-select: none;
    padding: 10px;
    align-items: baseline;
    border-top: 2px solid white;
}
/* .question::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    right: 10px;
    background-image: url(/web_assets/frontend/img/close.svg);
    background-size: cover;
    transition: all ease-in-out .1s;
} */
.answer {
    padding: 10px;
    margin-top: -30px;
}
.faq .question .numberingcount {
    background-image: url(/web_assets/frontend/img/num-back.svg);
    background-size: 50px;
    background-repeat: no-repeat;
    font-weight: 600;
    text-align: unset;
    font-size: 25px !important;
    width: 50px;
    text-align: center;
    height: 50px;
    padding: 6px;
    color: #cd400b;
}

.faq .question p {
    margin-left: 10px;
}
.answer p {
    margin-left: 70px;
}
.answer ul{
    margin-left: 70px;
}
.question-wrap:hover {
    cursor: pointer;
}
/* .answer {
    display: none;
} */

/* .question-wrap.active .answer {
    background-color: #FFF8F5;
    display: block;
    animation: fade-out 1s;
} */

.question-wrap:not(:hover) .answer {
    background-color: white;
    
    /* animation: fade-out 1s; */
}

.question-wrap:hover .answer {
    background-color: #fff8f5;
  
}
.question-wrap {
    margin-bottom: 28px;
}
@keyframes fade-in {
    from {
        opacity: 0;
        margin-top: -40px;
    }
    to {
        opacity: 1;
        margin-top: 0px;
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.question-wrap:hover .question {
    background-color: #fff8f5;
    border-top: 2px solid #cd400b;
}
.question-wrap:hover .numberingcount {
    background-image: url(/web_assets/frontend/img/num-back-white.svg);
    background-size: 50px;
    background-repeat: no-repeat;
}
.faq h2 {
    font-weight: 600;
    color: #000;
    font-size: 34px;
    line-height: normal;
    text-align: center;
    margin:40px 0px;
}

.blog-box {
    position: relative;
    width: 30%;
    background-color: #fff;
    display: flex;
    border: 1px solid lightgray;
    height: 405px;
    flex-direction: column;
}

.blog-box .graphic {
    width: 100%;
    height: auto;
    display: flex;
}

.blog-box .graphic img {
    width: 100%;
}

.blog-box .blog-date {
    color: var(--color-gray-text);
    font-size: var(--font-size-xsmall);
}
section.blog div.d-flex {
    display: flex;
    flex-direction: revert;
    justify-content: space-evenly;
}
section.blog .section-header {
    margin: 40px;
    text-align: center;
}
.blog-box .dates {
    display: flex;
    justify-content: space-between;
}
.box-blog-title p {
    color: #000;
    margin-top: 10px;
    font-weight: 600;
}
.box-blog-title{
    margin-bottom: 30px;
}
.blog-innerbox {
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.blog-innerbox a {
    float: right;
}
.blog-innerbox a.btn {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 0.25rem;
    color: #fff;
    font-size: 14px;
    margin-top: 6px !important;
    margin-bottom: 10px;
}
.blog-box:hover {
    background-color: #fff8f5;
    border: 1px solid #fff8f5;
}
.btn-div {
    position: absolute;
    right: 0;
    bottom: 0;
}
#loader{
    position: absolute;
    margin-left: 35%;
    margin-top: 2%;
}

/* unlock premium div absolute */
.unlock_premium_box {
    width: 180px;
    background-color: white;
    color: black;
    box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.161);
    position: absolute;
    z-index: 11111;
    margin-top: 56px;
    padding: 8px 4px 14px;
    text-align: center;
    border-bottom: 4px solid #ffc300;
  }
  .unlock_premium_box::before {
    content: '';
    display: block;
    position: absolute;
    background: #0000;
    top: -18px;
    left: 80px;
    border-style: solid;
    border-width: 10px;
    border-color: #0000 #0000 white #0000;
  }
  
  .unlock_premium_box p {
    font-size: 14px !important;
    line-height: 1.5;
    padding-top: 5px;
    color: black;
  }
  
  .unlock_premium_box a {
    
    text-decoration: none;
    background: #FFC300;
    border-radius: 3px;
    font-size: 14px;
    padding: 5px 20px;
    text-align: center;
    color: white;
    align-items: center;
    margin: 0 auto;
    font-weight: 400;
    justify-content: center;
    border: 1px solid #D79F03;
  }
  
  .unlock_premium_box a:hover {
    cursor: pointer;
  }

  
.for_tab_mobile{
    display: none;
    width: 100%;
    padding: 5px;
  }
  .mobile_modes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    
  }
  .mobile_modes span{
    font-weight: 600;
    display: flex;
    gap: 15px;
    align-items: center;
  }
  .mobile_modes span img{
    height: 24px;
  }
  .custom-dropdown {
    position: relative;
    display: inline-block;
    width: 70%;
    border: 1px solid lightgray;
    border-radius: 3px 3px 0px 0px;
    border-bottom: 3px solid #CD400B;
    font-weight: 600;
  }
  
  .selected-option {
    cursor: pointer;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    display: none;
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: 14px;
    width: calc(100% - 10px);
    margin-left: 5px;
    border-radius: 3px;
    box-shadow: 0 0 0 5px #fff, 0 15px 30px -10px rgb(0 0 0 / 50%);
    border: 0px;
  }
  
  .dropdown-menu li {
    padding: 10px;
    cursor: pointer;
    margin-left: 5px;
    font-weight: normal;
    gap: 15px;
    display: flex;
    align-items: center;
    font-size: 16px;
  }
  .dropdown-menu li.paid{
    filter: grayscale(0.8);
  }
  .dropdown-menu li img{
    height: 24px;
  }
  .dropdown-menu span {
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    color: #AAAAAA;
    padding-left: 14px;
  }

  .dropdown-menu li:hover {
    background-color: #f2f2f2;
  }
  
  .dropdown-icon {
    border-radius: 3px;
    padding: 2px;
    height: 21px;
  }
  
  .dropdown-icon img {
    margin-top: -3px;
    height: 25px;
    transition: 100ms all ease-in-out;
  }
  
  .dropdown-icon.visible img {
    transform: initial;
  }
  .dropdown-icon img {
    transform: rotate(180deg);
  }
  .selected-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 7px;
    gap: 7px;
    justify-content: space-between;
    border-radius: 5px;
    background: white;
  }
  @media only screen and (max-width: 1210px)
  {
.for_tab_mobile {
    display: block !important;
    width: 100%;
    padding: 0px;
    margin: 8px 0px 0px;
}
.paraphrasing_levels {
    display: none;
}
.paraphraser_option_box{
    padding: 0;
    min-height: 6vh;
    max-height: 20vh;
}
  }

.modes_section h2{
    font-weight: 700;
    font-size: 34px;
}

.coloum_section{
    display: flex;
    flex-direction: column;
}

.box_content{
    width: 64.5%;
    height: auto;
    min-height: 405px;
    background-color: #F9F9F9;
    padding: 20px;
    margin-top: 40px;
}

.box_content_width{
    width: 95% !important;
}
.title_text{
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
}
@media(max-width:1201px){
    .box_content{
        width: 100% !important;
        margin-top: 20px;
    } 
}
@media(max-width:992px){
    .box_content{
        width: 95% !important;
    }

    .box_item_div{
        justify-content: start !important;
    }
}

@media(max-width:768px){
    .box_center{
        justify-content: center !important;
        align-items: center !important;
    }
}

