/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

:root {
    --color-light-purple: #758bfd;
    --color-light-green: #0bd2aa;
    --color-primary-purple: #8172d5;
    --color-primary-purple-hover: #7161cb;
    --color-paragraph: #363347;
    --color-p-gray: #94929c;
    --color-purple: #931ffc;
    --color-gray-white: #f2f5f8;
    --color-gray: #555555;
    --color-light-gray: #c7cbd7;
    --color-black: #000000;
    --color-white: #ffffff;
    --font-size-large: 36px;
    --font-size-medium: 24px;
    --font-size-default: 18px;
    --font-size-small: 14px;
    --font-size-tiny: 12px;
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Inter Fallback", Arial, sans-serif;
    letter-spacing: 0.2px;
}

@font-face {
    font-family: "Inter Fallback";
    src: local("Arial");
    ascent-override: 90.20%;
    descent-override: 22.48%;
    line-gap-override: 0%;
    size-adjust: 107.40%;
}

body:not(.premium-users) #chat-widget-container:has(#chat-widget-minimized[style*="display: block"]) {
    display: none !important;
}

body #chat-widget-container {
    bottom: 0px !important;
}

#chat-widget-container.d-block {
    display: block !important;
}

.display_none {
    display: none !important;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.mobile-view-show {
    display: none !important;
}

header {
    background-color: var(--color-gray-white);
}

.w-100 {
    width: 100% !important;
}

.section-container {
    width: 1200px;
    max-width: 100%;
    padding: 10px 0;
    margin: 0 auto;
    background-color: var(--color-gray-white);
    padding: 15px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.display-inline {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.not-visible {
    visibility: hidden;
}

.visible {
    visibility: visible;
}

.select-none {
    user-select: none !important;
}

/* Utilities */

h1 {
    text-align: center;
    margin: 20px 0;
    font-size: var(--font-size-large);
    font-weight: bold;
}

h2 {
    font-size: 30px;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--color-gray);
}

p {
    font-size: var(--font-size-default);
    line-height: 1.8;
    margin: 10px 0;
}

#captcha {
    right: 0;
    bottom: 50px;
    z-index: 9999;
}

#captcha2 {
    right: 8px;
    z-index: 9999;
}

#captcha-auth {
    bottom: 147px !important;
}

.captcha-contact-us {
    bottom: 0 !important;
    right: 0 !important;
}

img {
    max-width: 100%;
}

.text-center {
    text-align: center;
}

.mt-80 {
    margin-top: 80px;
}

/* .logo-wrapper a img,
  .footer-logo img { */
/* width: 100%; */
/* height: 36px; */
/* } */
.footer-section {
    background: var(--color-gray-white);
}

.footer-section div div a img {
    width: 157px;
    height: 49px;
}

.footer-section div ul {
    margin: 8px 0 5px;
}

.head img {
    width: 43px;
    height: 43px;
}

.navbar nav ul {
    display: flex;
    align-items: center;
    gap: 10px;
    /* flex-wrap: wrap; */
}

/* Buttons */
.contactbtn {
    border: none;
}

.contactbtn a {
    color: white !important;
    background-color: #171618;
    padding: 7px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.contactbtn a:hover {
    background-color: #000;
}

.contactbtn a img,
.contactbtn img {
    vertical-align: bottom;
    width: 18px;
    height: 17px;
}

#clearBtn {
    margin-left: 5px;
}

.btn {
    background: #eee;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.cursor-pointer {
    cursor: pointer;
}

.btn.btn-dark {
    background-color: #000;
    color: white;
}

.btn.btn-purple {
    background: var(--color-primary-purple);
    color: white;
}

.btn.btn-green {
    background: var(--color-light-green);
    color: white;
}

.btn.btn-purple-outline {
    border: 1px solid #e3e3e3;
    color: var(--color-gray);
    background: transparent;
    padding: 5px 7px;
    line-height: 18px;
    font-size: 14px;
    min-width: 69px;
}

.btn.btn-purple-outline:hover {
    color: #000000;
    border: 1px solid #363347;
}

.btn.btn-green-outline {
    border: 1px solid var(--color-gray);
    color: var(--color-gray);
    background: transparent;
    padding: 7px;
}

.btn-padding1 {
    padding: 0 5px;
}

.btn-padding2 {
    padding: 8px 5px;
}

.tool-submit-btn,
.tool-reset-btn {
    padding: 8px 30px;
    font-size: 16px;
}

/* output section's tooltip */
.tooltip {
    position: absolute;
    padding: 5px;
    font-size: 12px;
    text-align: center;
    background: black;
    color: white;
    bottom: 150%;
    left: 50%;
    transform: translate(-50%);
    display: none;
}

.tooltip::after {
    content: "";
    border: 10px transparent solid;
    border-top: 10px solid black;
    display: inline-block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
}

.remove_none_after_result,
.action-btn,
#submit-btn-container {
    height: 30px;
    cursor: pointer;
}

.remove_none_after_result,
#submit-btn-container {
    display: flex;
    align-items: center;
    position: relative;
    pointer-events: auto;
}

.tool-input-section .remove_none_after_result img {
    height: 24px;
    width: 24px;
}

.remove_none_after_result:hover .tooltip,
.action-btn:hover .tooltip,
#submit-btn-container:hover .tooltip {
    display: block;
}

/* output section's tooltip */
.tool-submit .tool-submit-btn {
    margin: 0 auto;
}

.tool-wrapper .tool-button {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
}

.hide {
    display: none;
}

.popup_model {
    display: none;
    position: fixed;
    z-index: 1;
    padding: 100px 15px 0 15px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    text-align: center;
}

#login_Modal.popup_model {
    z-index: 3;
}

/* While a tool request is in flight the tool sections carry a `.overlay`
   (z-index 2). `.popup_model` sits at z-index 1, so a modal raised from that
   same flow — premium/pricing, error, text-limit — painted *under* the overlay
   and looked greyed out. Keep the tool-flow modals above it. */
#pricing_plan_popup.popup_model,
#error_Modal.popup_model,
#status_Modal.popup_model,
#text-limit-exceed.popup_model {
    z-index: 3;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

/*********  Modals CSS Start *********/
.modal-box {
    max-width: 591px;
    text-align: left;
}

.close-modal {
    right: 10px;
    top: 10px;
    padding: 5px;
}

/* Pricing plan modal css */
.plan-type {
    background: #f7f7f7;
    color: var(--color-primary-purple);
    padding: 4px 9px;
    border-radius: 6px;
    width: fit-content;
    margin-right: 18px;
}

.hidden {
    display: none !important;
}

.plan-item {
    padding: 12px;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    width: 50%;
}

/* get input placeholder */
input::-webkit-input-placeholder {
    color: #C2C1C7;
}

.plan-des {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.pricing-plan-box-modal {
    justify-content: center;
    gap: 10px;
    width: 100%;
}

/* .benefits-section,
.pricing-plan-box-modal {
    padding: 16px 0;
} */

p.plan-des {
    font-size: var(--font-size-tiny);
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    color: #5d5d5d;
}

p.price-type {
    font-size: var(--font-size-small);
    color: var(--color-p-gray);
    margin: 0;
}

span.price {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
}

.select-box {
    right: 10px;
    top: 10px;
}

.popup-header-container {
    display: flex;
    flex-direction: column;
}

.plan-selected {
    background-color: #f7f7f7;
    border-color: var(--color-primary-purple);
}

.heading-modal {
    font-size: var(--font-size-default);
    font-weight: 600;
}

.heading-desc {
    font-size: var(--font-size-default);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.2px;
    color: #555555;
}

.benefits {
    flex-wrap: wrap;
    gap: 15px;
}

.benefits-heading {
    font-size: var(--font-size-small);
    font-weight: 500;
    line-height: 16px;
    color: var(--color-p-gray);
    margin-bottom: 10px;
}

.benefits-items>span {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: #171618;
    white-space: nowrap;
}

.benefits-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.btn-gray {
    padding: 10px 16px;
    border: 1px solid #e3e3e3;
    background: #f7f7f7;
}

.btn-primary {
    padding: 10px 16px;
    background: var(--color-primary-purple);
    color: var(--color-white);
}

.buttons-sections {
    gap: 10px;
    justify-content: flex-end;
}

.modal-footer {
    margin-top: 10px;
}

/*---------- End Pricing Modal -----------------*/
.login_modal-content {
    width: 350px;
    position: relative;
}

.popup_modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
}

.popup_modal-content.cancel_membership-content {
    max-width: 300px;
}

.logim-model-title {
    font-size: var(--font-size-medium);
    font-weight: 600;
    text-align: center;
}

.cancel-membership-content-cotainer .cancel-model-title {
    color: #171618;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    margin-top: 16px;
}

.cancel-membership-content-cotainer .cancel-model-slogan {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #363347;
    margin-top: 10px;
}

.forget_password_modal_content,
.forget_password_email_sended_content_model {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

#forget_pass:hover {
    cursor: pointer;
}

.back-to-login-sended {
    text-align: center;
    display: block;
    /* margin: 0 auto; */
    margin-top: 20px;
    border: none;
    width: 290px;
    background: var(--color-primary-purple);
    color: white;
    border-radius: 5px;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.forget-pass-title,
.forget-pass-email-sended-title {
    font-family: Inter;
    font-size: var(--font-size-default);
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    color: #171618;
}

.resend_link,
.signup_link {
    font-family: Inter;
    font-size: var(--font-size-tiny);
    font-weight: 400;
    line-height: 25px;
    text-align: center;
    color: #171618;
}

.forget-pass-text,
.forget-pass-email-sended-text {
    font-family: Inter;
    font-size: var(--font-size-tiny);
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    color: var(--color-paragraph);
}

.back-to-login-container {
    margin-top: 5px;
}

.back-to-login {
    padding: 8px;
    gap: 6px;
    border-radius: 6px;
    border: 1px;
    background-color: transparent;
    border: 1px solid #e3e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: auto;
    margin-top: 10px;
    color: var(--color-paragraph);
}

.dont-have-account {
    color: #94929c;
    font-family: Inter;
    font-size: var(--font-size-tiny);
    font-weight: 400;
    line-height: 25px;
    text-align: center;
}

.forget-pass-icon-container,
.forget-pass-email-sended-icon-container {
    background: #8172d514;
    padding: 10px;
    width: 65px;
    border-radius: 8px;
    /* opacity: 0; */
    margin: auto;
}

.tool-sample-upload-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    display: flex;
    cursor: pointer;
    gap: 5px;
    /* flex-wrap: wrap; */
}

.upload_sample_text {
    display: flex;
}

.upload-sample_btn {
    border: 1px dashed var(--color-primary-purple);
    border-radius: 4px;
    flex: 1;
    font-size: var(--font-size-tiny);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 8px;
    min-width: 102px;
}

.upload-sample_btn:hover {
    background-color: var(--color-gray-white);
    color: var(--color-primary-purple);
}

#sampleBtn {
    border: 1px solid var(--color-primary-purple) !important;
}

#pasteBtn {
    border: 1px solid var(--color-primary-purple) !important;
}

.correction-arrow {
    width: 36px;
    text-align: center;
    border-radius: 5px;
}

.correction-arrow-btn {
    margin-bottom: 10px;
    background: var(--color-gray-white);
    padding: 6px;
    border-radius: 5px;
    cursor: pointer;
}

.correction-arrow-btn:hover {
    border: 1px solid var(--color-purple);
    color: var(--color-purple);
    padding: 5px;
}

.d_flex {
    display: flex;
}

.word-bg {
    background: var(--color-gray-white);
}

.login_modal-content img {
    /* margin-top: 20px; */
    width: 150px;
    height: 125px;
}

/* .login_modal-content .cross-img {
    margin-top: 20px;
    width: 150px;
    height: 125px;
    position: absolute;
    top: 0;
    right: 10px;
    height: 30px;
    width: 30px;
}

.login_modal-content .cross-img:hover {
    cursor: pointer;
} */

.auth-popup-container {
    background: #F2F5F8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_modal-content a img {
    margin: 0;
    width: 30px;
    height: 30px;
}

.login_modal-content a p {
    color: white !important;
}

.error_modal-content {
    width: 310px;
}

.header_background {
    background: var(--color-gray-white);
    padding: 25px 0;
    border-radius: 10px;
}

.popup_model_close,
.upgrade_plan {
    background: #171618;
    border: none;
    padding: 8px 10px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    display: inline-block;
}

.popup_model_close:hover,
.upgrade_plan:hover {
    background: #000;
    color: white;
}

.upgrade_plan {
    background: var(--color-primary-purple);
}

.error_modal-content .header {
    justify-content: center;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}



#text-limit-exceed.popup_model {
    padding: 0;
    justify-content: center;
    align-items: center;
}

.text-limit-exceed {
    position: relative;
    background: white;
    /* top: 0; */
    /* left: 0; */
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px;
    border-radius: 16px;
    width: 350px;
}

.text-limit-exceed .content,
.text-limit-exceed .content .content-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text-limit-exceed .content .content-body {
    gap: 8px;
}

.text-limit-exceed .content-body .header {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
}

.text-limit-exceed .content-body .body {
    font-size: 12px;
    line-height: 16px;
}

.text-limit-exceed button {
    font-size: 16px;
    width: 100%;
    background-color: #8172D5;
    padding: 10px 12px;
    border-radius: 4px;
    border: none;
    color: white;
    line-height: 24px;
    cursor: pointer;
}

.text-limit-exceed .cross-icon {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

p.desc {
    font-size: 12px;
    line-height: 16px;
}

p.heading {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
}

.text-limit-exceed * {
    margin: 0;
}


.flex-basis-30 {
    flex-basis: 30% !important;
}

.flex-col {
    flex-direction: column !important;
}

.add_password {
    color: var(--color-purple);
    text-decoration: underline;
}

/* Navigation */

.navbar-wrapper {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
}

.nav-icon {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}

.nav-link {
    display: inline-block;
}

.nav-link.page {
    padding: 5px 12px;
}

.chat__button {
    cursor: pointer;
}

.chat__button a {
    background: var(--color-white);
    padding: 7px 10px;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.chat__button a img {
    vertical-align: bottom;
    height: 20px;
    width: 20px;
}

#chat-widget-container {
    /*margin-bottom: 110px !important;*/
    /*max-height: 614px !important;*/
}

.logout_btn {
    color: red;
}

.nav_inner_ul {
    list-style: none;
    line-height: 2;
    background: white;
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    margin-top: 15px;
    box-shadow: 0 0 5px var(--color-light-gray);
    margin-left: -20px;
    z-index: 1;
}

.nav_outer_li {
    cursor: pointer !important;
}

.nav_outer_a img {
    width: 15px;
    vertical-align: middle;
}

.nav_inner_a {
    display: block;
    padding: 5px 9px 5px 5px;
}

.nav_inner_a img {
    vertical-align: middle;
    border: 1px solid var(--color-light-gray);
    padding: 4px;
    border-radius: 4px;
    width: 30px;
    background: white;
}

.nav_inner_li {
    margin-bottom: 3px;
    /* padding: 0 9px; */
}

.nav_inner_li:hover {
    background: var(--color-gray-white);
    border-radius: 5px;
}

.nav_inner_li a:hover {
    color: var(--color-black) !important;
}

.nav_inner_ul::before {
    content: "";
    /* width: 32px; */
    /* height: 20px; */
    display: block;
    position: absolute;
    background: #0000;
    top: -28px;
    left: 25px;
    border-style: solid;
    border-width: 15px;
    border-color: #0000 #0000 white #0000;
}

.nav-link a:focus,
.nav-link a:hover {
    color: var(--color-purple);
}

.banner-ads {
    text-align: center;
    min-height: 105px;
    width: auto;
    margin-bottom: 25px;
}

.after-tool-ads {
    width: auto;
    min-height: 225px;
    text-align: center;
    align-self: center;
    margin: 20px auto;
}

.result-box-ads {
    width: auto;
    max-width: 275px;
    min-height: 275px;
    text-align: center;
    align-self: center;
    margin: 20px auto;
}

.get_premium_nav_btn {
    min-width: 170.34px;
}

.get_premium_nav_btn a {
    color: white !important;
    background: var(--color-primary-purple);
    padding: 7px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;

}

.get_premium_nav_btn a:hover {
    background: var(--color-primary-purple-hover);
}

.get_premium_nav_btn a img {
    vertical-align: bottom;
    width: 20px;
    height: 20px;
}

.get_premium_nav_btn a:hover {
    color: white !important;
}

.squar-ads {
    margin-top: 10px;
    text-align: center;
    width: 300px;
    height: 250px;
    margin: 20px auto;
}

.grammar-checker-captcha-btn,
.plagiarism-checker-captcha-btn {
    text-align: center;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Tool Section */


.progress-section {
    display: flex;
    font-weight: 500;
    width: 92.1%;
    margin-left: 4.25%;
}

.tool-progress-bar {
    width: 400px;
    height: 5px;
    background: -webkit-gradient(linear,
            right top,
            left top,
            from(var(--color-purple)),
            to(var(--color-light-green)));
    background: -o-linear-gradient(right,
            var(--color-purple),
            var(--color-light-green));
    background: linear-gradient(to left,
            var(--color-purple),
            var(--color-light-green));
    position: relative;
    margin: 0 10px;
}

.tool-progress-bar::before {
    width: 10px;
    position: absolute;
    height: 10px;
    background-color: var(--color-light-green);
    border-radius: 50%;
    left: -2px;
    top: -2.5px;
    content: "";
}

.tool-progress-bar::after {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-purple);
    right: -2px;
    top: -2.5px;
    content: "";
}

.right-tool-header-bar .r {
    color: var(--color-purple);
    margin-top: 20px;
}

.left-tool-header-bar .l {
    color: var(--color-light-green);
    margin-top: 20px;
}

/* Tool Section */
.tool_action_btn {
    display: none;
    gap: 10px;
    align-items: center;
}

.tool_action_btn_item {
    padding: 6px 8px;
    background-color: #F7F7F7;
    border-radius: 4px;
    border: 1px solid #E5E5E5;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    line-height: 18px;
    color: #171618;
}

.tool {
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    row-gap: 20px;
}

.justify-center-btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tool-input-section,
.tool-output-section {
    /* display: flex; */
    position: relative;
    padding: 10px 0;
    background: #fff;
    border-radius: 6px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.512);
    top: 0;
    left: 0;
}

.summarizer-tool-section {
    width: 49%;
    min-height: 420px !important;
}

.pointer-events-none {
    pointer-events: none;
}

.left-side,
.right-side {
    width: 49%;
}

.tool-input-section {
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    border: 1px solid var(--color-light-gray);
    overflow: hidden;
}

/* .tool-input-section:focus-within,
  .grammar-tool-input-section:focus-within {
    box-shadow: 0 0 0 7px #8172d521;
  } */

.reescriber {
    cursor: pointer;
}

.tool-footer .selectdiv {
    position: absolute;
    border: 1px solid;
    width: 106px;
    margin-bottom: 3px;
    height: 30px;
    right: 18px;
    padding: 5px;
    border-radius: 4px;
    margin-top: 5px;
    margin-right: -8px;
    font-size: var(--font-size-small);
    cursor: pointer;
}

.tool-footer .selectdiv ul {
    background: #fff;
    text-align: left;
    margin: 0;
    padding: 0;
    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: none;
}

.tool-footer .selectdiv::after {
    content: "<>";
    cursor: pointer;
    font:
        17px Consolas,
        monospace;
    color: #333;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 1px;
    top: 2.5px;
    padding: 0 0 2px;
    border-bottom: 1px solid #999;
    position: absolute;
    pointer-events: none;
}

.tool-footer .selectdiv ul li img {
    min-width: 20px;
}

.tool-footer .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%;
}

.tool-footer .selectdiv ul li:hover {
    background-color: var(--color-light-gray);
    color: white;
}

.tool-output-section {
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    border: 1px solid var(--color-light-gray);
    background: var(--color-gray-white);
}

.tool-output-section:has(.overlay) {
    overflow: hidden !important;
}

.right-p {
    padding-right: 10px;
}

.tool-footer {
    /* flex-wrap: wrap; */
    /* flex-direction: column; */
    gap: 10px;
}

.tool-footer,
.grammar-tool-footer,
.plagio-tool-footer {
    align-items: center;

    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 10px 0 10px;
}

.grammar-tool-footer,
.plagio-tool-footer {
    justify-content: start;
    min-height: 40px;
    gap: 10px;
}

.tool-submit {
    margin-top: 10px;
    text-align: center;
}

.tool-short-detail {
    text-align: center;
    margin-bottom: 10px;
}

.grammar-tool-input-section,
.essay-tool-input-section,
.plagiarism-tool-input-section {
    width: 100%;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    border: 1px solid var(--color-light-gray);
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/* to show tooltip on grammar check tool */
/* .grammar-tool-input-section {
    overflow: visible;
} */
/* to show tooltip on grammar check tool */

.inputCountSection {
    gap: 0;
    color: var(--color-gray);
    font-size: 14px;
}

.output-word-counter {
    color: var(--color-gray);
    font-size: 14px;
}

.green-text {
    color: green;
}

.red-text {
    color: red;
}

.tool .input-textarea,
.grammar-input-textarea,
.essay-input-textarea,
.plagiarism-input-textarea {
    width: 100%;
    height: 300px;
    font-family: "Inter";
    font-size: 16px;
    border: unset;
    resize: none;
    padding: 0 10px;
    line-height: 1.5rem;
    letter-spacing: 0;
    overflow-y: scroll;
}

.essay-input-textarea {
    padding: 0 20px 0 10px;
}

.input-textarea::-webkit-scrollbar,
.result::-webkit-scrollbar,
.grammar-input-textarea::-webkit-scrollbar,
.plagiarism-input-textarea::-webkit-scrollbar,
.essay-input-textarea::-webkit-scrollbar,
.essay-output-text-area::-webkit-scrollbar,
.result-output-right-compare::-webkit-scrollbar,
.result-output-left-text::-webkit-scrollbar,
#result::-webkit-scrollbar,
.lang-dropdown ul::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 7px;
}

.input-textarea::-webkit-scrollbar-thumb,
.grammar-input-textarea::-webkit-scrollbar-thumb,
.plagiarism-input-textarea::-webkit-scrollbar-thumb,
.essay-input-textarea::-webkit-scrollbar-thumb,
.essay-output-text-area::-webkit-scrollbar-thumb,
.result-output-right-compare::-webkit-scrollbar-thumb,
.result::-webkit-scrollbar-thumb,
.result-output-left-text::-webkit-scrollbar-thumb,
#result::-webkit-scrollbar-thumb,
.lang-dropdown ul::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.options::-webkit-scrollbar-thumb,
.creative_options::-webkit-scrollbar-thumb,
.type_options::-webkit-scrollbar-thumb {
    background: var(--color-primary-purple);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: var(--color-light-gray);
    border-radius: 10px;
}

.essay-tool-input-section #input_box::-webkit-scrollbar-thumb {
    cursor: pointer;
}

.essay-output-text-area::-webkit-scrollbar-thumb {
    cursor: pointer;
}

.options::-webkit-scrollbar,
.creative_options::-webkit-scrollbar,
.type_options::-webkit-scrollbar {
    width: 7px;
}

.options::-webkit-scrollbar-track,
.creative_options::-webkit-scrollbar-track,
.type_options::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.tool .input-textarea:focus,
.grammar-input-textarea:focus,
.essay-input-textarea:focus,
.plagiarism-input-textarea:focus {
    outline: unset;
}

/* #essay-result-container {
    padding-bottom: 16px;
} */

.resultAdd {
    overflow-y: scroll;
    overflow-x: hidden;
}

.feature-section .section-container .left li {
    line-height: 2;
    font-size: var(--font-size-default);
    margin-left: 20px;
}

p>a,
div>a {
    color: var(--color-purple);
}

p>a:hover,
div>a:hover {
    color: var(--color-light-green);
}

p>li,
div>li {
    margin-left: 30px;
    line-height: 1.8;
    font-size: var(--font-size-default);
}

#output_box>.sw:hover {
    background-color: #ebebeb;
    cursor: pointer;
}

.sw,
.result b {
    cursor: pointer;
    color: #8172d5;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

#output_box>span>.sc {
    font-weight: bold;
}

.tooltip_main {
    margin-top: 5px;
    position: absolute;
    min-height: 35px;
    max-height: 169px;
    min-width: 150px;
    z-index: 2;
    box-shadow: 0 5px 18px 3px #999;
    background: #fff;
    padding: 5px 5px 5px 5px;
    white-space: nowrap !important;
    border-radius: 5px;
}

.tooltip_main_2 {
    overflow-y: auto;
    min-height: 30px;
    max-height: 110px;
}

.tooltip_main_2:has(.line) {
    overflow-y: hidden;
}

.after {
    pointer-events: none;
    min-height: 30px;
}

/* cursor changed for scrolling in Inputbox field */
div#textarea_inputbox::-webkit-scrollbar-thumb,
#output_box::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: var(--color-primary-purple);
}

/* .tooltip_main::before {
    content: '';
    display: block;
    position: absolute;
    background: #0000;
    top: -18px;
    left: 6px;
    border-style: solid;
    border-width: 10px;
    border-color: #0000 #0000 white #0000;
} */

.tooltip_main_2::-webkit-scrollbar {
    width: 7px;
    background-color: #efefef;
}

.tooltip_main_2::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--color-primary-purple);
}

.tooltip_main_2 span {
    cursor: pointer;
    display: flex;
    padding: 5px;
}

.tooltip_main_2 span:hover {
    background: var(--color-gray-white);
    border-radius: 5px;
}

#output_box>span>b,
#output_box>b {
    color: var(--color-primary-purple);
}

.tooltip_main_2>.line {
    float: left;
    width: 140px;
    height: 20px;
    margin-top: 12px;
    background-image: linear-gradient(90deg,
            #f4f4f4 0,
            rgba(229, 229, 229, 0.8) 40px,
            #f4f4f4 80px);
    background-size: 600px;
    animation: shine-lines 2s infinite ease-out;
}

.tooltip_main_2 .line {
    width: 100%;
}

.tooltip_main_2 .line~.line {
    background-color: #ddd;
}

/*Submit button */
.tool-input-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-button {
    border-radius: 4px;
    cursor: pointer;
    padding: 10px 12px;
    font-size: 18px;
    background: var(--color-primary-purple);
    color: var(--color-white);
    font-weight: 400;
    border: none;
    line-height: 20px;
}

#submit-btn-container .tooltip {
    width: 100%;
}

.submit-button:hover {
    background-color: var(--color-primary-purple-hover);
}

.ppct-price-btn {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 7px 12px;
    border: 1px solid #E3E3E3;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    max-width: 148px;
    color: #000000;
}

/* end other tools */

@keyframes shine-lines {
    0% {
        background-position: -100px;
    }

    40%,
    100% {
        background-position: 140px;
    }
}

@keyframes shine-avatar {
    0% {
        background-position: -32px;
    }

    40%,
    100% {
        background-position: 208px;
    }
}

/* modes section start */
.modes-section {
    overflow: hidden;
    border-radius: 6px;
    display: inline-flex;
    padding: 4px;
    margin-bottom: 10px;
    border: 1px solid var(--color-light-gray);
    position: relative;
    gap: 2px;
}

.not_for_tab_mobile {
    position: relative;
    margin-top: 25px;
}

.clickBlocker {
    display: none;
    width: 100%;
    position: absolute;
    height: 100%;
}

.select_mode img {
    width: 20px;
    height: 20px;
    margin-bottom: -4px;
}

.happy-with-result {
    border-radius: 5px;
    display: inline-block;
    background: var(--color-gray-white);
    padding: 4px 10px;
    margin-bottom: 10px;
    border: 1px solid var(--color-light-gray);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;

    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 10px auto;
    height: 42px;
}

.happy-with-result-box {
    /* height: 52px; */
}

.modes-section .modes,
.happy-with-result .yes_no {
    border: 1px solid transparent;
    padding: 7px 14px;
    font-size: var(--font-size-small);
    cursor: pointer;
    border-radius: 4px;
    color: var(--color-black);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.mobile_mode_img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.yes_no {
    padding: 6px 5px !important;
    margin: 0 5px !important;
}

.yesNoBtn {
    background-color: #c7cbd752;
}

.happy-with-result .yes_no_color,
.happy-with-result .yes_no_req_color {
    background: #f2f5f8;
    -webkit-box-shadow: 0 0 5px #ddd;
    box-shadow: 0 0 5px #ddd;
    border-radius: 5px;
    border: 1px solid #e3e3e3;
}

.modes-section .modes_color {
    background: #f7f7f7;
    border: 1px solid #e3e3e3;
}

.modes-section .modes:hover,
.happy-with-result .yesNoBtn:hover {
    border: 1px solid #ddd;
}

.mode_icon {
    width: 20px;
    margin-bottom: -4px;
}

.surprise_btn {
    background-image: -webkit-gradient(linear,
            left top,
            right top,
            from(#f9e5fa),
            color-stop(#fbedf1),
            color-stop(#faf2e9),
            color-stop(#f1f8e8),
            to(#e3fcf3)) !important;
    background-image: -o-linear-gradient(left,
            #f9e5fa,
            #fbedf1,
            #faf2e9,
            #f1f8e8,
            #e3fcf3) !important;
    background-image: linear-gradient(to right,
            #f9e5fa,
            #fbedf1,
            #faf2e9,
            #f1f8e8,
            #e3fcf3) !important;
    border-bottom: 3px solid var(--color-purple);
    -webkit-box-shadow: 0 0 5px #817a7a !important;
    box-shadow: 0 0 5px #817a7a !important;
}

.surprise_btn_icon {
    width: 20px;
    margin-bottom: -1px;
}

.bg-none {
    background: none !important;
}

.bg-white {
    background-color: var(--color-white);
}

.tool-header-bar {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 68em;
    margin-left: 1em;
}

.left-tool-header-bar {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 50%;
}

/* modes section end */

/* Result Section */

.result.before-result {
    font-size: 25px;

    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-light-gray);
}

.result {
    width: 100%;
    height: 307px;
    line-height: 1.5rem;
    padding: 0 12px;
    font-size: 16px;
    font-family: "Inter";
    letter-spacing: 0;
    outline: none;
}

.result>b {
    color: var(--color-light-green);
}

.result-actions {
    margin-left: auto;

    display: flex;
    gap: 10px;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    /* margin-top: 23px; */
}

.error_tab {
    display: flex;
}

.error_tab_single {
    background: #f1f3f9;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 5px;
    font-size: var(--font-size-small);
    display: flex;
    align-items: center;
}

.error_tab_single .error_label {
    margin-top: 3px;
}

.error_tab_single .error_val {
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 24px;
    margin-right: 5px;
    color: white;
}

.grammar_error,
.modified {
    background: #f2b24c;
}

.spelling_error,
.spelling {
    background: #ef2850;
}

.other_error,
.addition,
.deletion {
    background: #8f7fff;
}

s .grammarCheck_new {
    cursor: pointer;
}

.register-user {
    cursor: pointer;
}

/* Feartures Section */
.feature-section .section-container {
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.feature-section .left {
    width: 40%;
    padding: 0 20px;
}

.feature-section .right {
    width: 60%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-box .box {
    width: 100%;
    border-radius: 5px;
    background: white;
    padding: 20px;
}

.feature-box .box.green {
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(var(--color-light-green)),
            to(#066955));
    background: -o-linear-gradient(var(--color-light-green), #066955);
    background: linear-gradient(var(--color-light-green), #066955);
    color: white;
}

.feature-box .box.black {
    color: white;
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(#0b3a4f),
            to(#000000));
    background: -o-linear-gradient(#0b3a4f, #000000);
    background: linear-gradient(#0b3a4f, #000000);
}

.feature-box .box.purple {
    color: white;
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(var(--color-primary-purple)),
            to(#204179));
    background: -o-linear-gradient(var(--color-primary-purple), #204179);
    background: linear-gradient(var(--color-primary-purple), #204179);
}

.feature-box .box.green p,
.feature-box .box.black p,
.feature-box .box.purple p {
    color: white;
}

.feature-box .box .head {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.feature-box .box .text {
    font-weight: 500;
    font-size: var(--font-size-default);
    width: 70%;
    display: block;
    margin-top: 30px;
}

/* FAQs Section */

.faq-wrapper,
.toolUser-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr;
    margin-top: 20px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.grammar-faq-wrapper {
    margin-top: 20px;
}

.faq,
.toolUser {
    background: white;
    border-radius: 5px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-bottom: 20px;
}

.faq .question,
.toolUser .question {
    padding: 20px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

.faq .question img {
    transform: rotate(0deg);
}

.faq .question img.rotate,
.grammar-question img.rotate {
    transform: rotate(180deg);
}

.faq .grammar-question {
    background-color: #eee;
    padding: 20px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

.faq .answer,
.toolUser .answer {
    padding: 10px 20px;
}

/* start download-apps */
.outer-block-apps {
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    margin-top: 20px;
}

.single-app-block {
    background-color: var(--color-white);
    width: 24%;
    padding: 20px 25px;
    border-radius: 7px;
}

.app-link-block {
    display: flex;
    margin-top: 20px;
}

.app-link-block a {
    margin-top: 3px;
}

.app-link-block img {
    width: 26px;
    height: 26px;
    margin-right: 20px;
}

/* end download-apps */

/* FOOTER */
footer .section-container {
    text-align: center;
    gap: 10px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer p {
    width: 700px;
    max-width: 100%;
}

footer .social-icons {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0;
}

footer .social-icons>a {
    display: inline-block;
    width: 40px;
    height: 40px;

    border-radius: 50%;

    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 10px;
}

footer .icon {
    height: 20px;
}

footer .social-icons>a:hover {
    background: white;
    -webkit-box-shadow: 2px 2px 5px #ddd;
    box-shadow: 2px 2px 5px #ddd;
}

/* Blog */

.home-blog-wrapper {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 20px 0;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.post {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 250px;
    max-width: 100%;
    background: white;
    border-radius: 5px;
    padding: 10px;
    color: var(--color-gray);
    font-weight: 500;
    text-decoration: none;
    margin: 10px 0;
}

.post:hover {
    -webkit-box-shadow: 2px 2px 5px #ddd;
    box-shadow: 2px 2px 5px #ddd;
}

.post>a:hover {
    color: var(--color-light-purple);
}

.post img {
    width: 100%;
    height: 130px;
}

.post .title {
    font-size: var(--font-size-default);
    padding: 10px;
    display: block;
}

.post .date {
    color: var(--color-gray);
    font-size: var(--font-size-tiny);
    /* margin-top: 10px; */
    display: block;
    padding: 10px;
    font-weight: 300;
}

/* Blog Section */
.blog .main-container,
.cards .main-container,
.contcat .main-container {
    background-color: var(--color-gray-white);
    padding: 35px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.home-blog-wrapper .title:hover {
    color: var(--color-light-green);
}

.home-blog-wrapper .title {
    color: var(--color-purple);
}

.latestblog {
    display: flex;
    background-color: white;
    border-radius: 8px;
    padding: 15px;
}

.latestblog .blog_image {
    width: 60%;
    block-size: -webkit-fit-content;
    block-size: -moz-fit-content;
    block-size: fit-content;
}

.latestblog .Blog_info {
    width: 40%;
    padding: 20px 50px;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* justify-content: space-between; */
}

.Blog_info .title {
    font-size: var(--font-size-medium);
    line-height: 1em;
    color: var(--color-purple);
    margin-left: -15px;
}

.Blog_info .title:hover {
    color: var(--color-light-green);
}

.publish_date {
    margin-top: auto;
    color: var(--color-gray);
}

.date_time {
    color: var(--color-gray);
    padding: 0;
    margin: 0 0 10px 0;
    line-height: 0;
    text-align: right;
    font-size: 12px;
}

/* contcat page */
.contact_nav .main-container {
    background-color: var(--color-gray-white);
    padding: 10px 25px;
}

.contact-section .section-container {
    display: flex;
    padding: 35px;
}

.pricing-section .section-container,
.contact-section .section-container {
    min-height: calc(100vh - 287px);
}

.pricing-page-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tabs {
    display: flex;
    justify-content: center;
    width: max-content;
    /* margin-top: 28px; */
    /* margin-bottom: 24px; */
    border: 1px solid #E3E3E3;
    padding: 4px;
    border-radius: 50px;
    background: #F9FAFC;
}

.tab-btn,
.tab-btn-credit,
.tab-btn-2 {
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 999px;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    background: transparent;
    min-width: 88px;
}

.display-none {
    display: none !important;
}

.tab-btn.active,
.tab-btn-credit.active,
.tab-btn-2.active {
    background-color: #FFFFFF;
    color: #000000;
    /* box-shadow: 1px 1px 6px -1px #00000033;
 */
    -webkit-box-shadow: 1px 1px 6px -1px #00000033;
    box-shadow: 1px 1px 6px -1px #00000033;
}

.plan-allow-list {
    position: relative;
    display: flex;
    gap: 4px;
    align-items: center;
}

.plan-box-footerplan-box-footer {
    padding: 10px 12px;
    width: 100%;
    background: #8172D5;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-plan-btn {
    color: #ffffff !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 20px !important;
    cursor: pointer !important;
}

.icon-wrapper {
    display: flex
}

span:has(.icon-wrapper):hover .tooltip-info {
    display: block
}

.tooltip-info {
    background: #000;
    padding: 4px 8px;
    font-weight: 200;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 32px;
    display: none;
    text-align: center;
    cursor: default;
    max-width: 140px;
    width: 100%;
}

.tooltip-info::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -13px;
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent #000 transparent transparent
}

/* .tab-btn.active:hover,
.tab-btn-2.active:hover {
    background-color: #111e52;
} */

/* Compare Plan Section */
.compare-plan-section {
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.credit-table-heading {
    font-size: 30px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0.2px;
    color: #000000;
}

.credit-table-container {
    padding: 24px;
    width: 100%;
    /* max-width: 1122px; */
}

.pricing-table {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    font-family: Arial, sans-serif;
    width: 100%;
}

/* Header */
.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    /* padding: 12px 16px; */
    background: #F2F5F8;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    height: 56px;
}

/* Rows */
.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    /* padding: 12px 16px; */
    color: #444;
    border-bottom: 1px solid #e6e6e6;
    transition: background 0.2s ease;
}

.table-row:last-child {
    border-bottom: none;
}

/* Hover effect */
.table-row:hover {
    background: #f0f4ff;
}

/* Align center for numbers */
.table-header div:nth-child(2),
.table-header div:nth-child(3),
.table-row div:nth-child(2),
.table-row div:nth-child(3) {
    text-align: center;
}


.ppct-wrapper {
    padding: 24px 15px;
    max-width: 1200px;
    width: 100%;
}

/* Header */
.ppct-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: start;
    /* margin-bottom: 10px; */
}

.ppct-title h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.2px;
}

/* Toggle */
.ppct-toggle {
    /* margin-top: 8px; */
}

.ppct-toggle span {
    font-size: 12px;
    padding: 4px 10px;
    background: #e9e9ea;
    border-radius: 20px;
    margin-right: 5px;
    cursor: pointer;
}

.ppct-toggle .active {
    background: #fff;
    border: 1px solid #ddd;
}

/* Plans */
.ppct-plan {
    text-align: center;
    padding: 16px 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.ppct-plan-name {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    /* margin-bottom: 4px; */
}

.ppct-price {
    font-size: 28px;
    font-weight: 600;
    /* margin-bottom: 6px; */
    line-height: 34px;
    letter-spacing: 0.2px;
}

.ppct-plan button {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 7px 12px;
    border: 1px solid #E3E3E3;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    max-width: 148px;
}

/* Section Titles */
.ppct-section {
    font-size: 16px;
    color: #000000;
    /* margin-top: 15px; */
    font-weight: 600;
    padding: 24px 0 16px 0;
    border-bottom: 1px solid #e3e3e3;
}

/* Rows */
.ppct-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    /* padding: 10px 0; */
    border-bottom: 1px solid #ececec;
    font-size: 13px;
    color: #444;
}

.ppct-row div {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.2px;
    color: #363347;
}

/* Center values */
.ppct-row div:not(:first-child) {
    justify-content: center;
}

/* Hover (very subtle like screenshot) */
.ppct-row:hover {
    background: rgba(0, 0, 0, 0.02);
}



.contact-section .contact_info {
    width: 55%;
    padding: 0 40px;
}

.contact-section .contact_form {
    width: 90%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background-color: white;
    border-radius: 8px;
    padding: 35px 45px;
}

.contact_form h2 {
    margin-bottom: 20px;
}

.contact_info p {
    font-size: var(--font-size-default);
    color: #000;
    margin: 10px 0 60px 0;
}

.contact_boxes {
    width: 100%;
    height: auto;

    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contact_boxes .email h4:first-child,
.phon_email h4:first-child,
.address_box h4:first-child {
    margin: 0 0 10px 0;
}

.contact_boxes .email,
.phon_email {
    width: 100%;
    display: block;
    position: relative;
    height: auto;
    /* margin-top: 20px; */
    padding: 15px;
    border-radius: 8px;
    color: white;
    font-size: var(--font-size-default);
}

.address_box {
    display: block;
    position: relative;
    width: -webkit-fill-available;
    height: auto;
    padding: 50px 50px 30px 15px;
    border-radius: 8px;
    color: white;
    margin: 20px 0;
    font-size: var(--font-size-default);
    background: #0a4661;
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(#0a4661),
            color-stop(50%, #051c27),
            to(#000000));
    background: -o-linear-gradient(top, #0a4661 0%, #051c27 50%, #000000 100%);
    background: linear-gradient(to bottom,
            #0a4661 0%,
            #051c27 50%,
            #000000 100%);
}

.phon_email {
    background: #0bcda6;
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(#0bcda6),
            color-stop(50%, #099e80),
            to(#066955));
    background: -o-linear-gradient(top, #0bcda6 0%, #099e80 50%, #066955 100%);
    background: linear-gradient(to bottom,
            #0bcda6 0%,
            #099e80 50%,
            #066955 100%);
}

.contact_boxes .email {
    background: var(--color-primary-purple);
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(var(--color-primary-purple)),
            color-stop(50%, #4c57a3),
            to(#204179));
    background: -o-linear-gradient(top,
            var(--color-primary-purple) 0%,
            #4c57a3 50%,
            #204179 100%);
    background: linear-gradient(to bottom,
            var(--color-primary-purple) 0%,
            #4c57a3 50%,
            #204179 100%);
}

.phon_email img,
.contact_boxes .email img,
.address_box img {
    position: absolute;
    top: 10px;
    right: 10px;
}

.contact_us input,
.contact_us textarea,
.contact_us select {
    width: -webkit-fill-available;
    height: auto;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid var(--color-primary-purple);
    outline: none;
    resize: vertical;
}

.error-border {
    border: 1px solid red !important;
}

.contact_us small {
    color: red;
    width: 100%;
    text-align: right;
    display: inline-block;
}

.contact_us small.in_visible {
    visibility: hidden;
}

/*

  .contact_us button:hover,
  .contact_us button:focus {
    background: var(--color-primary-purple);
    background: -webkit-gradient(linear, left top, left bottom, from(var(--color-primary-purple)), color-stop(50%, #4c57a3), to(#204179));
    background: -o-linear-gradient(top, var(--color-primary-purple) 0%, #4c57a3 50%, #204179 100%);
    background: linear-gradient(to bottom, var(--color-primary-purple) 0%, #4c57a3 50%, #204179 100%);
  } */

.contact_us input:hover,
.contact_us textarea:hover,
.contact_us textarea:focus,
.contact_us input:focus-visible {
    border: 1px solid #0bcda6;
    -webkit-box-shadow: 0 0 0 2px rgba(10, 70, 97, 0.26);
    box-shadow: 0 0 0 2px rgba(10, 70, 97, 0.26);
}

.contact-page {
    width: 100%;
}

.contact_form_info {
    display: flex;
}

/* post page */
.blog_post .section-container {
    padding: 40px;

    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blog_post .article {
    width: 70%;
    height: auto;
    background-color: white;
    padding: 30px 40px;
    border-radius: 8px;
}

.article_title {
    margin: 10px 0 20px 0;
    position: relative;
    /* padding: 40px 10px; */
}

.blog_post .side-post {
    width: 30%;
    height: auto;
    padding: 30px 40px;
    display: block;
    background-color: var(--color-light-green);
}

.side_post .sidecard {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    width: 290px;
    /* height: 235px; */
    position: relative;
    margin: 30px 0;
}

.side_post .sidecard:hover {
    -webkit-box-shadow: 2px 2px 5px #ddd;
    box-shadow: 2px 2px 5px #ddd;
}

.side_post .sidecard:first-child {
    margin-top: 0;
}

.side_post .sidecard:last-child {
    margin-bottom: 0;
}

.sidecard .card_title {
    padding: 10px;
}

.postdate {
    /* position: absolute; */
    bottom: 20px;
    left: 30px;
    font-size: var(--font-size-tiny);
    color: var(--color-gray);
}

.nav-icon img {
    width: 35px;
    height: 35px;
}
.nav-icon .menu-cross-icon{
    width: 20px !important;
    height: 20px !important;
    margin:5px 5px 0px 0px;
}
.navbar-wrapper .menu-cross-icon,
.navbar-wrapper.show .menu-icon{
    display: none;
}
.navbar-wrapper.show .menu-cross-icon,
.navbar-wrapper .menu-icon{
    display: block;
}
.input_loader {
    display: flex;
    background: rgba(255, 255, 255, 0.863);
    height: 100%;
    width: 100%;
    position: absolute;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 100px 0 100px 0;
    z-index: 3;
    top: 0;
}

.summarizer_input_loader {
    /* margin-top: 40px; */
}

.input_loader img {
    width: 100px;
    object-fit: contain;
}

.flag-n {
    position: relative;
    cursor: pointer;
    padding: 7px 7px;
}

.flag-n:hover::after,
.flag-n:hover::before {
    display: block;
}

.flag-n2::before {
    left: -5px !important;
}

.flag-n::before {
    padding: 0 10px;
    width: max-content;
    height: 21px;
    z-index: 10;
    position: absolute;
    background: #000;
    left: -27px;
    font-weight: 700;
    content: attr(data-title);
    top: -36px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: var(--font-size-tiny);
    padding-top: 5px;
    display: none;
    margin-right: 30px;
}

.flag-n::after {
    width: 0;
    height: 0;
    position: absolute;
    left: 13px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-top: 5px solid #000;
    top: -11px;
    display: none;
    content: "";
}

.arrowBtnTooltip {
    position: relative;
    cursor: pointer;
}

.arrowBtnTooltip:hover::after,
.arrowBtnTooltip:hover::before {
    display: block;
}

.arrowBtnTooltip::before {
    width: 120px;
    height: 21px;
    z-index: 10;
    position: absolute;
    background: #000;
    left: -130px;
    font-weight: 700;
    content: attr(data-title);
    top: 2px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: var(--font-size-tiny);
    padding-top: 5px;
    display: none;
    margin-right: 30px;
}

.arrowBtnTooltip::after {
    width: 0;
    height: 0;
    position: absolute;
    -webkit-transform: rotate(269deg);
    -ms-transform: rotate(269deg);
    transform: rotate(269deg);
    left: -10px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-top: 5px solid #000;
    top: 10px;
    display: none;
    content: "";
}

.nav-link-footer {
    display: inline-block;
    margin-right: 20px;
}

.nav-link-active a {
    color: var(--color-purple);
}

.nav-link-footer a {
    color: black;
    text-decoration: none;
}

.nav-link-footer a:hover,
.nav-link-footer a:focus {
    color: var(--color-purple);
}

.plagiarism-result-output-section {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    order: 1;
}

.result-output-left {
    width: 49%;
    height: 700px;
    background: white;
    border: 1px solid var(--color-light-gray);
    border-radius: 5px;
    padding: 10px 0 10px 10px;
}

.result-output-left-text {
    overflow-y: scroll;
    height: 100%;
    padding: 0 5px 0 0;
    line-height: 2;
}

.result-output-right {
    width: 49%;
    max-height: 550px;
}

.result-output-right-state {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: white;
    padding: 10px 10px;
    border-radius: 5px 5px 0 0;
    border: 1px solid var(--color-light-gray);
}

.result-plag,
.result-unique {
    display: flex;
    width: 49%;
    padding: 3px 10px;
    border-radius: 5px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.result-output-right-compare {
    background: white;
    /* padding: 10px; */
    border: 1px solid var(--color-light-gray);
    border-radius: 0 0 5px 5px;
    height: calc(550px - 91px);
    overflow-y: scroll;
    border-top: 0;
}

.result-plag {
    background-color: #f1f3f9;
}

.result-text {
    line-height: 28px;
}

.result-unique {
    background-color: #f7f7f7;
}

.result-compare-list {
    display: flex;
    background: #f7f7f7;
    /* margin-bottom: 5px; */
    padding: 5px 10px;
    border-radius: 5px;
}

#modeShadowRoot:hover {
    -webkit-box-shadow: 0 0 5px #ddd;
    box-shadow: 0 0 5px #ddd;
    border-radius: 5px;
    padding: 5.5px 0 !important;
}

.modeShadowRoot {
    background-color: white;
    -webkit-box-shadow: 0 0 5px #ddd;
    box-shadow: 0 0 5px #ddd;
    border-radius: 5px;
    padding: 5.5px 0 !important;
}

.index_no {
    background: #fee1e1;
    width: 15px;
    height: 15px;
    border-radius: 4px;
    margin: auto;
    font-size: var(--font-size-tiny);
    padding: 2px 4px;
    color: #ef2850;
    font-weight: 600;
    text-align: center;
    margin-right: 5px;
}

.plag_link a,
.sentance_wise_link a {
    color: var(--color-light-purple);
    font-size: var(--font-size-small);
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-break: anywhere;
}

.match_url_title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-break: anywhere;
}

.short_text {
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
}

.url_icon {
    margin-left: 4%;
}

.compare_link {
    margin-top: 13px;
    margin-left: 4%;
}

.result-compare-list button {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    background: #eaeaec;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 5px;
}

.circular_progress .percent {
    position: relative;
}

.circular_progress svg {
    position: relative;
    width: 50px;
    height: 50px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.circular_progress svg circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #13C39C;
    stroke-width: 7;
    stroke-linecap: round;
    border-radius: 10px;

}

.circular_progress svg circle:last-of-type {
    stroke-dasharray: 125px;
    stroke-dashoffset: calc(125px - (125px * var(--percent)) / 100);
}

.url_download_box {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 16px 16px 8px 16px;
    color: #363348;
    font-size: 12px;
}

/* .url_download_box button {
    cursor: pointer;
} */

/* .url_sentance {
    background: none;
    border: none;
    color: #94929C;
} */

/* .url_sentance.active {
    color: black;
    text-decoration: underline 1px solid black;
    text-underline-offset: 3px;
} */

.url_download_box .active {
    font-weight: 500;
    padding: 0 0 4px 0;
}

.sentance_wise_detail {
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-break: anywhere;
}

#unique_result {
    stroke: #06b491;
}

#plag_result {
    stroke: #FF767A;
}

.result-plag div div div {
    color: #FF767A;
}

.result-unique div div div {
    color: #13C39C;
}

.percentage p {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.percentage {
    gap: 12px;
    display: flex;
}

.progress-container {
    display: flex;
    padding: 8px 0;
    gap: 12px;
}

span#plag_result_val {
    font-size: 24px;
    color: #FF767A;
    line-height: 32px;
    font-weight: 600;
}

#plag_result_val+span {
    color: #FF767A;
}

span#unique_result_val {
    font-size: 24px;
    color: #13C39C;
    line-height: 32px;
    font-weight: 600;
}

#unique_result_val+span {
    color: #13C39C;
}

.icons-container .icon {
    border: 1px solid #E3E3E3 !important;
    border-radius: 4px;
    padding: 6px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.icons-container .resolve-btn p {
    margin: 0;
    font-size: 14px;
}

.icons-container .resolve-btn {
    width: unset;
    gap: 4px;
}





.resumedo_tool_header {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 10px;
    align-items: center;
    min-height: 34px;
    height: 100%;
    margin-bottom: 10px;
}

.val_container {
    min-width: 35px;
}

.range_box input {
    cursor: pointer;
    -webkit-appearance: none;
    width: 150px;
    height: 8px;
    border-radius: 5px;
    background: #d7dcdf;
    outline: none;
    padding: 0;
    margin: 0;
    background: -webkit-gradient(linear,
            left top,
            right top,
            color-stop(60%, rgb(129, 114, 213)),
            color-stop(60%, rgb(215, 220, 223)));
    background: -o-linear-gradient(left,
            rgb(129, 114, 213) 60%,
            rgb(215, 220, 223) 60%);
    background: linear-gradient(90deg,
            rgb(129, 114, 213) 60%,
            rgb(215, 220, 223) 60%);
    position: relative;
}

.range_box input {
    position: relative;
    -webkit-appearance: none;
    appearance: none;
}

.range_box input::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    pointer-events: none;

    background:
        radial-gradient(circle at center, #999 2px, transparent 2px) 3% 50%,
        radial-gradient(circle at center, #999 2px, transparent 2px) 21% 50%,
        radial-gradient(circle at center, #999 2px, transparent 2px) 41% 50%,
        radial-gradient(circle at center, #999 2px, transparent 2px) 59% 50%,
        radial-gradient(circle at center, #999 2px, transparent 2px) 79% 50%,
        radial-gradient(circle at center, #999 2px, transparent 2px) 97% 50%;

    background-repeat: no-repeat;
    background-size: 4px 4px;
}

input[type="range"]::-webkit-slider-thumb {
    width: 12px;
    -webkit-appearance: none;
    height: 12px;
    background: var(--color-light-green);
    border-radius: 12px;
}

.pricing-page p {
    text-align: center;
    font-weight: 500;
}

.plan-boxs {
    display: flex;
    justify-content: center;
    column-gap: 3rem;
    row-gap: 1rem;
    margin: 0 auto;
    flex-wrap: wrap;
}

.plan-box {
    background: white;
    box-shadow: 0 0 18px 3px #0000001a;
    padding: 24px;
    border-radius: 8px;
    position: relative;
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: fit-content;
    margin-top: 10px;
    justify-content: space-between;
    row-gap: 16px;
}

.plan-box-heading .content {
    display: flex;
    padding-bottom: 16px;
    flex-direction: column;
    gap: 8px;
}

.plan-box-body span:first-child {
    padding: 0px 0px 8px 0px;
    color: #94929C;
}

.plan-box-body span {
    display: flex;
    padding: 8px 0;
    gap: 12px;
}

.plan-box-dis {
    background-repeat: no-repeat;
    position: absolute;
    height: 76px;
    margin-left: 175px;
    margin-top: -17px;
    color: white;
    width: 65px;
    text-align: center;
    padding: 17px 21px;
}

.plan-box-dis-green {
    background-image: url("/web_assets/frontend/img/plan-disc-green-icon.svg");
}

.popular {
    /* background: var(--color-light-green); */
    background-image: url("/web_assets/frontend/img/popular-package-icon.svg");
    position: absolute;
    color: white;
    text-align: center;
    padding: 8px 0;
    height: 44px;
    width: 111px;
    right: -12px;
}

.plan-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
}

.popular-plan {
    background-color: #8172D526;
    padding: 2px 6px;
    border-radius: 99px;
    display: flex;
    align-items: center;
}

.popular-plan span {
    color: #8172D5;
    font-size: 12px;
    font-weight: 500 !important;
}

.plan-box-dis-black {
    background-image: url("/web_assets/frontend/img/plan-disc-black-icon.svg");
}

.active-plan-box {
    background: var(--color-primary-purple) !important;
    margin-top: 0 !important;
    row-gap: 34px;
}

.plan-box-heading {
    /* background: var(--color-gray-white); */
    border-bottom: 1px solid #E3E3E3;
    /* padding: 15px; */
    /* border-radius: 8px; */
}

.active-plan-box-heading {
    background: white !important;
    padding: 30px 15px;
}

.plan-box-heading h2,
.plan-box-heading span {
    font-weight: 600;
}

.plan-box-heading h2 del {
    font-size: 16px;
    margin-left: 5px;
}

.plan-box-body {
    display: flex;
    flex-direction: column;
    /* gap: 22px; */
}

.active-plan-box-body span {
    color: white !important;
}

.active-plan-box-body span img {
    filter: invert(1);
    -webkit-filter: invert(1);
}

.plan-box-body span img {
    vertical-align: middle;
    /* margin-right: 10px; */
}

.plan-box-footer {
    background: var(--color-primary-purple);
    text-align: center;
    margin-top: 20px;
    width: 100%;
    cursor: pointer;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.plan-box-footer:hover {
    color: white;
}

.active-plan-box-footer {
    background: white !important;
    color: #000 !important;
}

.active-dropdown {
    /* color: #8172D5 !important; */
    background: rgba(249, 248, 253, 1) !important;
    font-weight: 400px;
}

.active {
    /* color: #8172D5 !important; */
    /* background: rgba(249, 248, 253, 1) !important; */
    font-weight: 400px;
}

.rotate-180 {
    transform: rotate(180deg);
}

.rotate-90 {
    transform: rotate(90deg);
}

.login-image-box {
    display: flex;
    justify-content: center;
}

.login-form-side-box {
    text-align: center;
    width: 500px;
    border: 1px solid #dcdbf4;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 3px 15px #0000001a;
    padding: 20px 0;
    border-right: 0;
}

.login-img-side-box .logo {
    width: 250px;
    margin: 0 auto;
}

.login-img-side-box .login-image {
    margin-top: 40px;
    margin-bottom: 40px;
}

.login-img-side-box .create-an-account {
    font-weight: 600;
}

.singin-singup-btn button:hover {
    background: white;
    border-radius: 5px;
    color: var(--color-primary-purple);
}

.singin-singup-btn .button-active {
    background: white;
    border-radius: 5px;
    color: var(--color-primary-purple);
}

.login-img-side-box {
    border: 1px solid #dcdbf4;
    background: var(--color-gray-white);
    border-radius: 0 10px 10px 0;
    width: 500px;
    padding: 20px 0;
    text-align: center;
    display: flex;
    align-content: space-around;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    box-shadow: 3px 0 15px #0000001a;
}

.login_error_message {
    margin-top: 5px;
}

.remember-me-forgot-pass {
    font-size: var(--font-size-tiny);
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 16px;
    line-height: 25px;
    margin-bottom: 24px;
}

.remember-me-forgot-pass .remember-me input {
    border: none;
}

.remember-me-forgot-pass a {
    color: var(--color-light-purple);
    font-style: italic;
    background: none;
    display: inline;
    min-height: auto;
}

.input-container input {
    width: 100%;
    height: 45px;
    border: 1px solid #E3E3E3;
    border-radius: 5px;
    /* margin-top: 16px; */
    outline: none;
    padding: 10px 10px 10px 50px;
    /* color: #171618; */
}

.img_filter {
    filter: invert(1);
}

.input-container img {
    position: absolute;
    /* margin-top: 25px; */
    /* margin-left: 15px; */
    border-right: 1px solid var(--color-light-gray);
    padding-right: 6px;
    width: 25px;
    height: 22px;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.singin-singup-btn button {
    border: none;
    width: 115px;
    height: 28px;
    cursor: pointer;
}

.signin_btn,
.signup_btn {
    cursor: pointer;
    padding: 8px 12px;
    border: none;
    color: #808080;
    flex: 1;
    font-size: 12px;
    font-weight: 500;
    background: #F8F8F8;
    line-height: 18px;
}

.singin-singup-btn {
    background: #f0eff2;
    padding: 3px 7px;
    width: 250px;
    margin: 0 auto;
    border-radius: 5px;
}

.popup-signin-signup {
    background: #F8F8F8;
    padding: 6px;
    width: 100%;
    margin-top: 24px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    /* flex: 1; */
}

#popupLoginBtn {
    margin: 0;
}

.popup-signin-signup a {
    padding: 8px 12px;
    cursor: pointer;
    color: #808080;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    flex: 1;
}

.popup-signin-signup a:hover {
    color: black;
}

.popup-signin-signup .button-active {
    background: white;
    border-radius: 3px;
    color: #8172D5;
    /* width: 100px; */
    font-size: 12px;
    line-height: 18px;

    white-space: nowrap;
    /* flex: 1; */
}

.login_register_btn {
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    border: none;
    width: 290px;
    background: var(--color-primary-purple);
    color: white;
    border-radius: 5px;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
}

.register-page .login_btn {
    background: #F7F7F7;
    padding: 10px;
    border-radius: 5px;
    color: #171618;
    text-align: center;
}

#login_btn a:hover {
    background-color: #343434;
}

#login_btn {
    cursor: pointer;
}

.google-btn {
    margin: 0 auto;
    margin-top: 10px;
    border: none;
    width: 100%;
    background-color: white !important;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 3px 7px 3px #0000000F;
    color: black;
    min-height: 40px !important;
    line-height: 2.5;
}

.popupBtn {
    /* margin: 24px auto 0px; */
    border: none;
    width: 100%;
    background: rgb(129, 114, 213);
    color: white;
    border-radius: 5px;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
}

.popupBtn:hover {
    background: var(--color-primary-purple-hover);
}

.have-login-acount-box {
    margin-top: 50px;
    font-size: var(--font-size-small);
}

.have-login-acount-box a {
    color: var(--color-light-purple);
    cursor: pointer;
    background: none;
    display: inline;
}

.for_mobile,
.for_tab_mobile {
    display: none;
}

.mobile_modes {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
    width: 185px;
    padding: 5px;
    background: var(--color-gray-white);
    border: 1px solid var(--color-light-gray);
    border-radius: 5px;
}

.selected-option {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    display: none;
    padding: 0;
    margin: 10px 5px 0 0;
    list-style: none;
    background-color: #fff;
    width: calc(100% - 10px);
    border-radius: 3px;
    box-shadow:
        0 0 0 5px #fff,
        0 15px 30px -10px rgb(0 0 0 / 50%);
}

.dropdown-menu li {
    padding: 10px;
    cursor: pointer;
    margin-left: 5px;
}

.dropdown-menu span {
    font-size: var(--font-size-small);
    font-weight: 500;
    color: var(--color-gray);
}

.dropdown-menu li:hover {
    background-color: #f2f2f2;
}

.dropdown-icon {
    /* background: var(--color-black); */
    border-radius: 3px;
    padding: 2px;
    height: 21px;
}

.dropdown-icon img {
    transition: 100ms all ease-in-out;
}

.dropdown-icon.visible img {
    transform: rotate(180deg);
}

.unlock_premium_box {
    width: 180px;
    background: var(--color-white);
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.161);
    border-radius: 10px;
    position: absolute;
    z-index: 1000;
    margin-top: 35px;
    padding: 10px;
    text-align: center;
}

.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: 11px;
    font-weight: 500;
    line-height: 1.5;
}

.unlock_premium_box a {
    color: var(--color-white);
    background: var(--color-purple);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: var(--font-size-small);
}

.selected-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 7px;
    gap: 7px;
    justify-content: space-between;
    border-radius: 5px;
    /* background: white; */
}

.register-page .price-plan-change-btn {
    background: #fbfbfc;
    padding: 4px;
    width: 256px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    border-radius: 6px;
    margin-bottom: 20px;
}

.register-page .price-plan-change-btn button {
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    width: 124px;
    height: 36px;
    cursor: pointer;
    background: none;
    color: #808080;
}

.register-page .price-plan-change-btn button img {
    width: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.register-page .price-plan-change-btn button span {
    vertical-align: middle;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.register-page .price-plan-change-btn button:hover {
    background: white;
    border-radius: 5px;
    color: var(--color-black);
}

.register-page .price-plan-change-btn .button-active {
    background: white;
    border-radius: 5px;
    box-shadow: 0px 2px 4px #dddddd;
    color: var(--color-black);
}

.register-page {
    max-width: 994px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.register-page .page-short-desc {
    text-align: center;
}

.register-page .register-page-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.register-page .register-page-content h1 {
    line-height: 44px;
    margin: unset;
}

.register-page .register-page-content p {
    line-height: 33px;
    margin: unset;
}

.register-page .account-plan {
    display: flex;
    gap: 30px;
}

.register-page .left-box {
    flex-basis: 70%;
    display: flex;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.102);
    background-color: #ffffff;
}

.register-page .right-box {
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.register-page .left-box h2 {
    font-weight: 600;
    font-size: 28px;
}

.register-page .left-box p {
    margin: unset;
}

.register-page .left-box {
    padding: 24px;
}

.register-page .left-free {
    border-right: 1px solid #e3e3e3;
    border-radius: 5px 0 0 5px;
}

.register-page .left-free a {
    cursor: pointer;
    text-align: center;
    border: 1px solid #e3e3e3;
    padding: 10px;
    border-radius: 5px;
    background: #f7f7f7;
    display: inline-block;
    width: 100%;
    color: #171618 !important;
}

.register-page .left-free a:hover {
    color: var(--color-purple);
}

.register-page .plan-box-list {
    margin-bottom: 40px;
}

.register-page .plan-box-list span {
    font-weight: 600;
    display: block;
    padding: 10px 0;
}

.register-page .plan-box-list span img {
    vertical-align: middle;
    margin-right: 10px;
}

.register-page .plan-box-content {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.register-page .plan-box-list li {
    font-weight: 400;
    display: block;
    line-height: 40px;
}

.register-page .plan-box-list li img {
    vertical-align: middle;
    margin-right: 10px;
}

.register-page .left-free,
.register-page .left-premium {
    flex-basis: 50%;
}

.register-page .left-premium {
    padding-left: 32px;
}

.register-page .left-free {
    padding-right: 32px;
}

.register-page .left-box p {
    font-size: var(--font-size-small);
    font-weight: 400;
    color: #808080;
    line-height: 24px;
}

.register-page .right-box .box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--color-white);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    border: 1px solid #d3d1e5;
    cursor: pointer;
}

.register-page .right-box .box.active {
    border: 1.5px solid var(--color-primary-purple) !important;
}

.register-page .right-box .box input.plan_select {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 24px;
    height: 24px;
    accent-color: var(--color-primary-purple);
    cursor: pointer;
}

.register-page .right-box .box div {
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 10px;
    padding: 15px 0;
    gap: 10px;
}

.register-page .right-box .box a {
    background: var(--color-purple);
    padding: 10px;
    border-radius: 5px;
    color: white;
    text-align: center;
}

.register-page .right-box .box .title {
    font-weight: 600;
}

.register-page .right-box .box .price {
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
}

.register-page .right-box .box .price small {
    line-height: 32px;
    font-size: 18px;
    font-weight: 400;
}

.register-page .right-box .box .type {
    font-weight: 400;
    color: #808080;
    font-size: var(--font-size-small);
}

.logo-wrapper a,
.footer-logo {
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo-wrapper a span,
.footer-logo span {
    color: black;
    font-size: 20px;
    font-weight: 700;
}

/* feedback start  */
.text-danger {
    font-size: 12px;
    color: red;
}

.text-black {
    color: black !important;
}

.feedback-block {
    display: flex;
    gap: 25px;
    margin-top: 15px;
    justify-content: end;
}

.feedback-block .feedback-label,
.feedback-form .feedback-label {
    font-weight: 600;
    display: flex;
    align-items: center;
}

.feedback-block .feedback-icon,
.feedback-form .feedback-icon {
    display: flex;
    gap: 15px;
}

.feedback-block .feedback-icon span img,
.feedback-form .feedback-icon span img {
    filter: grayscale(1);
}

.feedback-block .feedback-icon span,
.feedback-form .feedback-icon span {
    border: 1px solid var(--color-light-gray);
    border-radius: 5px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.feedback-block .feedback-icon span:hover img,
.feedback-form .feedback-icon span:hover img {
    filter: initial;
}

.feedback-block .feedback-icon span:hover,
.feedback-form .feedback-icon span:hover {
    border: 1px solid #ffce52;
    cursor: pointer;
}

.feedback-form .feedback-label,
.feedback-form .feedback-icon {
    justify-content: center;
}

.feedback-form .feedback-icon {
    margin-bottom: 20px;
}

.feedback-form {
    border-radius: 5px;
    border: 1px solid var(--color-light-gray);
    box-shadow: 0 15px 25px 0 #0000001a;
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 15px;
    width: 350px;
    background: #fefefe;
    margin: auto;
}

.feedback-form input {
    border: 1px solid var(--color-light-gray);
    border-radius: 5px;
    padding: 10px;
    outline: none;
}

.feedback-icon-span-hover {
    border: 1px solid #ffce52 !important;
}

.feedback-icon-span-hover-img {
    filter: initial !important;
}

.feedback-form textarea {
    border: 1px solid var(--color-light-gray);
    border-radius: 5px;
    padding: 10px;
    resize: none;
    outline: none;
}

.feedback-form .note {
    font-size: var(--font-size-tiny);
    text-align: left;
}

.feedback-form .cancel-submit-btns {
    display: flex;
    justify-content: space-between;
}

.feedback-form .cancel-submit-btns button {
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
}

.feedback-form .cancel-submit-btns .not_interested_btn {
    background: none;
    color: black;
    height: 35px;
}

.feedback-form .cancel-submit-btns .not_interested_btn:hover {
    background: #dbdbdb;
}

/* feedback end  */

/* #chat-widget-minimized {
    display: none !important;
} */

/* other tools */

.other-tools {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.tool-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 50px;
    justify-content: center;
    align-items: center;
}

.tools-list {
    display: flex;
    justify-content: start;
    align-items: center;
    min-width: 253px;
    padding: 1px 10px;
    gap: 11px;
    text-align: start;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(0, 0, 0, 1);
}

.tools-list:hover {
    cursor: pointer;
    background: var(--color-gray-white);
    color: #000000;
}

.other-tools-title {
    font-weight: 500;
    font-size: 30px;
    text-align: center;
}

.tool-name {
    font-size: var(--font-size-default);
    font-weight: 400;
}

[contenteditable][placeholder]:empty:before,
[contenteditable][placeholder].empty:before {
    content: attr(placeholder);
    position: absolute;
    color: #c8c8c8;
    background-color: transparent;
}

.suggestion_paragraphs:hover {
    cursor: pointer;
    background: #931ffc3b;
}

.range_box {
    display: flex;
    font-size: 14px;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.cancel-membership-content-cotainer textarea#cancel-membership-reason {
    border: 1px solid #e3e3e3;
    max-width: 260px;
    height: 80px;
    border-radius: 6px;
    padding: 8px;
    width: 100%;
    resize: none;
    margin-top: 24px;
    outline: none;
    color: #171618;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

.cancel-membership-content-cotainer .cancel-membership-btn-container {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.cancel-membership-content-cotainer button {
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    border: none;
}

.cancel-membership-content-cotainer button.not-now {
    border: 1px solid #e3e3e3;
    background: #f7f7f7;
    color: #171618;
}

.cancel-membership-content-cotainer button.cancel-membership-confirm {
    border: 1px solid #e3e3e3;
    background: white;
    color: #ff767a;
}

.cancel-membership-content-cotainer button.cancel-membership-confirm:disabled {
    background: white;
    cursor: not-allowed;
}

.feedback-container {
    gap: 10px;
    display: flex;
    position: relative;
    min-width: 70px;
}

.feedback-container button {
    -webkit-tap-highlight-color: transparent;
}

.icons-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.feedback-container .like,
.feedback-container .dislike {
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-container .like:not(.active):hover,
.feedback-container .dislike:not(.active):hover {
    background: #fafafa;
}

.feedback-popup-container::after {
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-top: 10px solid #ffffff;
    content: "";
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.feedback-popup-container {
    position: absolute;
    box-shadow: 0 4px 24px 0 #00000014;
    min-width: 300px;
    width: 100%;
    background: #ffffff;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-content: center;
    gap: 12px;
    bottom: 50px;
    left: var(--after-left, 70%);
    transform: translateX(-50%);
}

.like-popup {
    left: 30%;
}

.dislike-popup {
    left: 70%;
}

.feedback-popup-container strong,
.feedback-strong {
    color: #171618;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}

.feedback-popup-container .feedbackPopupSlogan,
.feedback-text {
    color: #363347;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    margin: 6px 0;
}

.feedback-popup-container .feedbackTextArea {
    border: 1px solid #e3e3e3;
    width: 100%;
    height: 80px;
    resize: none;
    border-radius: 6px;
    padding: 12px;
    background: #fcfcfd;
    outline: none;
}

.feedback-popup-container .feedbackTextArea::placeholder {
    color: #c2c1c7;
}

.feedback-popup-container .cross {
    position: absolute;
    right: 10px;
    cursor: pointer;
}

.feedback-popup-container .feedbackBtnSubmit {
    background: #8172d5;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    padding: 6px 8px;
    border-radius: 4px;
    border: none;
    width: 100%;
    margin-top: 8px;
    cursor: pointer;
}

.popupHeadingContainer {
    text-align: center;
}

.dislike.active {
    filter: brightness(0) saturate(100%) invert(66%) sepia(62%) saturate(3306%) hue-rotate(313deg) brightness(100%) contrast(103%);
}

.like.active {
    filter: brightness(0) saturate(100%) invert(84%) sepia(35%) saturate(607%) hue-rotate(49deg) brightness(101%) contrast(104%);
}

.feedback-container .success-conformation,
.feedback-container .error-conformation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.error-modal .header strong {
    font-size: 18px !important;
    font-weight: 600 !important;
}

.error-modal #errorModelText {
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 0px 15px !important;
}

@media screen and (max-width: 1024px) {
    .plan-boxs {
        column-gap: 1rem;
    }

    .logo-wrapper a {
        max-width: fit-content;
    }

    .contactbtn a {
        padding: 7px 8px;
    }

    .nav-icon {
        display: block;
    }

    .navbar nav ul {
        display: block;
        text-align: center;
        max-width: 200px;
        margin: auto;
    }

    .not_for_some_devices {
        display: none;
    }

    .navbar-wrapper,
    .nav-link {
        display: block;
    }

    .profile-dropdown-menu {
        position: relative !important;
        top: 5px !important;
    }

    .navbar-wrapper {
        overflow: hidden;
        height: 40px;
        /* overflow-y: scroll; */
    }

    .nav-link {
        margin: 10px 0;
        /* padding: 15px 5px; */
    }

    .not_for_tab_mobile {
        display: none;
    }

    .for_tab_mobile {
        margin-top: 25px;
        display: block;
    }

    /* .answer img {
        width: -webkit-fill-available;
    } */

    .show {
        height: auto !important;
    }

    .section-container:has(.navbar-wrapper.show) {
        padding: 15px 0px;
        min-height: 70px;
    }

    .navbar-wrapper.show .logo-wrapper,
    .navbar-wrapper.show .nav-icon {
        padding: 0px 15px;
    }

    .navbar-wrapper.show {
        position: absolute;
        background: var(--color-gray-white);
        z-index: 123;
        left: 0%;
        width: 100%;
        height: auto !important;
    }

    .post {
        width: 300px;
    }

    .latestblog .blog_image {
        width: 100%;
    }

    .contact_boxes .email,
    .phon_email {
        width: 100%;
    }

    .side_post .sidecard {
        width: 250px;
        /* height: 300px; */
    }

    .blog_post .article {
        width: 65%;
    }

    .tool-header-bar {
        margin-left: 0.5em;
    }

    .left-tool-header-bar>.l,
    .right-tool-header-bar>.r {
        display: none;
    }
}

.plan-box-body>ul li {
    display: flex;
    line-height: 36px;
    font-size: 14px;
    align-items: center;
}

.plan-box-body {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 787px) and (max-width: 900px) {
    .tool-footer {
        flex-wrap: wrap;
    }
}

@media screen and (max-width:768px) {
    .remove_none_after_result {
        cursor: default;
    }

    .range-header,
    .resumedo_tool_header .output-section {
        display: none;
    }

    .resumedo_tool_header {
        justify-content: end;
    }

    #submit-btn-container .tooltip {
        display: none !important;
    }
}

@media screen and (max-width: 786px) {
    .active-plan-box-heading {
        padding: 15px;
    }

    .left-premium {
        margin-top: 10px !important;
        padding-left: unset !important;
    }

    .active-plan-box {
        gap: 0;
    }

    .plan-box {
        height: auto !important;
    }

    .account-plan {
        justify-content: center;
    }

    .register-page .left-box {
        /* flex-basis: 100%; */
        flex-direction: column;
    }

    .register-page .left-free {
        border-right: 1px solid #e3e3e3;
        border-radius: 5px;
    }

    .error_tab_single .error_val {
        font-size: 10px;
        width: 17px;
        height: 17px;
        line-height: 16px;
    }

    .error_tab_single {
        background: #f1f3f9;
        padding: 5px 2px;
        border-radius: 5px;
        margin-right: 5px;
        display: flex;
        font-size: var(--font-size-tiny);
    }

    .error_tab_single .error_label {
        margin-top: 0;
    }

    .error_tab {
        display: flex;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .plan-box,
    .active-plan-box {
        margin-top: 10px !important;
    }

    .nav_inner_ul {
        margin-left: -5px;
    }

    .nav_inner_ul::before {
        left: 10px;
    }

    .result-output-right-compare {
        height: calc(350px - 84px);
    }

    .not_for_some_devices {
        display: inline;
    }

    .left-side,
    .right-side {
        width: 100%;
    }

    .plagiarism-result-output-section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }

    .icons-container,
    .progress-container {
        justify-content: center;
    }

    .progress-container .percentage {
        width: unset !important;
    }

    .result-output-right {
        order: -1;
    }

    .result-output-left {
        width: 100%;
    }

    .result-output-right {
        width: 100%;
    }

    .grammar-tool-footer {
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        flex-wrap: wrap;
        justify-content: start;
        gap: 10px;
    }

    .result-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        -webkit-box-pack: right;
        -ms-flex-pack: right;
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
        width: 100%;
    }

    .wordCount {
        width: 100%;
    }

    .outer-block-apps {
        margin-top: 20px;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1rem 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .single-app-block {
        width: 100%;
    }

    .progress-section {
        display: none;
    }

    .tool-header-bar {
        margin-left: 0em;
    }

    .login_modal-content {
        width: 290px;
    }

    .faq-wrapper,
    .toolUser-wrapper {
        display: unset;
    }

    .modes-section {
        margin-bottom: -10px;
    }

    .column,
    .faq,
    .toolUser,
    .feature-section .left,
    .feature-section .right,
    .tool-input-section,
    .tool-output-section {
        width: -webkit-fill-available;
    }

    .feature-section,
    .feature-section .right {
        display: block;
    }

    .home-blog-wrapper {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .tool-input-section {
        -webkit-box-flex: 100%;
        -ms-flex: 100%;
        flex: 100%;
    }

    .feature-section .left {
        padding: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }

    .nav_list {
        flex-direction: column;
        gap: 5px;
        justify-content: start;
        align-items: start !important;
    }

    .latestblog {
        display: block;
    }

    .latestblog .blog_image,
    .latestblog .Blog_info,
    .latestblog .blog_image img {
        width: 100%;
        padding: 0;
    }

    .old_blogs .blogcard {
        width: 320px;
    }

    .old_blogs {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .Blog_info .title {
        font-size: 28px;
        line-height: 35px;
        padding: 50px 0;
    }

    /* contcat */
    .contact-section .section-container {
        display: block;
    }

    .contact-section .contact_info,
    .contact-section .contact_form {
        width: 100%;
    }

    .address_box {
        padding: 59px 0 45px 15px;
    }

    .contact_boxes .email,
    .phon_email {
        width: 100%;
    }

    .blog_post {
        display: block;
        -webkit-box-pack: unset;
        -ms-flex-pack: unset;
        justify-content: unset;
    }

    .blog_post .article,
    .blog_post .side_post {
        width: 100%;
    }

    .blog_post .section-container {
        display: inline-block;
        padding: 0 !important;
    }

    .blog_post .article {
        margin-bottom: 30px;
    }

    .blog_post .side_post {
        display: none;
        /* display: flex;
      flex-wrap: wrap;
      margin: 10px;
      justify-content: space-between;
      text-align: left; */
    }

    .side_post .sidecard {
        margin: 10px 0;
        width: 315px;
    }

    .side_post .sidecard:first-child {
        margin: 10px 0;
    }

    .side_post .sidecard:first-child {
        margin-left: 0;
    }

    .side_post .sidecard:last-child {
        margin-right: 0;
    }

    .tool-progress-bar {
        width: 180px;
    }

    ul .contactbtn,
    ul .contactbtn a {
        /* width: 112px; */
    }

    .contact_form_info {
        display: block;
    }

    .tool-input-section {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .tool-submit {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .tool-output-section {
        display: none;
    }

    .squar-ads-left {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .tool-output-section {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .squar-ads-right {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    #chat-widget-container:has(#chat-widget-minimized[style*="display: block"]) {
        display: none !important;
    }
}

@media screen and (max-width: 650px) {
    .plan-boxs {
        flex-wrap: wrap;
    }

    .result-outer-main {
        display: block;
    }

    .custom-dropdown {
        flex: 1;
    }

    .result-outer-main .essay-input {
        max-width: unset;
        border-bottom: 1px solid #e2e4e6;
    }

    .action-btns-container {
        justify-content: center;
        gap: 20px;
    }

    .result-outer-main .easy-output {
        border-left: none;
        display: none;
    }
}

@media screen and (max-width: 526px) {
    /* .plan-desc {
        visibility: hidden !important;
    } */

    .plan-item {
        flex-direction: column-reverse;
        flex: 1;
        justify-content: space-between;
    }

    .select-box {
        right: 4px;
        top: 0px;
    }

    /* .mobile-view-hide {
        display: none;
    } */
    .mobile-view-show {
        display: block !important;
    }

    .footer-section .section-container>ul {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
}

@media screen and (max-width: 475px) {

    .register-page .account-plan {
        flex-direction: column;
    }

    .feedback-popup-container {
        min-width: 250px;
    }

    .heading-desc {
        display: none;
    }
}

@media screen and (max-width: 426px) {
    .resumedo_tool_header .range_box {
        width: 100%;
        text-align: center;
    }

    h1 {
        font-size: 25px;
    }

    .benefits-items {
        width: 100%;
    }

    .feedback-block .feedback-label {
        justify-content: center;
    }

    .feedback-block {
        flex-direction: column;
    }

    .feedback-block .feedback-icon {
        justify-content: center;
    }

    .register-page .account-plan {
        flex-direction: column;
    }

    .for_mobile {
        display: inline;
    }

    .happy-with-result-box {
        /* height: 52px; */
        display: none;
    }

    .login-img-side-box {
        display: none;
    }

    .login-form-side-box {
        border-radius: 10px;
        border: 1px solid #dcdbf4;
    }

    .result-output-right-compare {
        height: calc(350px - 152px);
    }

    .not_for_some_devices,
    .not_for_mobile {
        display: none;
    }

    .range_box input {
        width: 70%;
    }


    .happy-with-result {
        width: 100%;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 80px;
    }

    .result-output-right-state {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }

    .result-plag,
    .result-unique {
        width: 100%;
    }

    .outer-block-apps {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .contact_boxes .email,
    .phon_email {
        width: -webkit-fill-available;
        margin: 15px 0;
    }

    .essay_ref_single_option {
        font-size: var(--font-size-tiny);
        padding: 3px 5px;
    }

    .select_type_option_result_page {
        font-size: 16px;
    }

    .contcat .contact_form {
        padding: 30px 25px;
    }

    .contcat .main-container {
        padding: 20px 10px;
    }

    .contcat .contact_info {
        padding: 0;
    }

    .article_title h2 {
        font-size: 26px;
    }

    .article_title {
        padding: 0;
        margin: 0;
    }

    .blog_post .side_post {
        margin: 0;
    }

    .blog_post .article {
        width: 100%;
        padding: 15px;
    }

    .article p {
        margin: 0;
    }

    .feature-section .section-container {
        display: block;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .tool-progress-bar {
        width: 70px;
    }

    .nav-icon img {
        width: 30px;
        height: 30px;
    }

    .contact_form_info {
        display: block;
    }

    .contact_us button {
        width: 100%;
    }

    .contact_boxes div div {
        font-size: var(--font-size-tiny);
    }

    .other-tools-title {
        font-size: 25px;
    }

    .tool-list-container {
        row-gap: 0;
    }

    .contact-section .section-container {
        padding: 10px;
    }

    .contact-section .contact_form {
        padding: 15px;
    }

    .forget_password_modal_content,
    .forget_password_email_sended_content_model {
        width: 300px;
    }

    .popup_modal-content {
        padding: 10px;
    }

    .tool-input-right {
        gap: 8px;
    }

    .tool-footer {
        gap: 0px;
        row-gap: 0px;
        padding: 6px 6px 0 6px;
    }

    .tooltip-info {
        max-width: unset;
        width: unset;
    }
}

@media screen and (max-width: 355px) {
    .error_tab_single .error_val {
        margin-right: 2px;
    }

    .grammar-tool-footer {
        padding: 10px 5px;
    }

    .dropdown-menu li {
        font-size: 14px;
    }

    .tool-footer {
        flex-direction: column;
        row-gap: 5px;
    }

    .result-actions {
        justify-content: center !important;
    }

    .submit-button {
        padding: 8px;
    }

    .inputCountSection {
        width: 100%;
        justify-content: start;
    }

    .tool-input-right {
        width: 100%;
        justify-content: end;
    }

    .like-popup,
    .dislike-popup {
        left: 90px;
    }

    .feedback-popup-container.dislike-popup::after {
        left: 35%;
    }

    .feedback-popup-container.like-popup::after {
        left: 20%;
    }
}

@media screen and (max-width: 320px) {
    .feedback-form {
        width: 290px;
    }

    .tool-sample-upload-btn {
        flex-wrap: wrap;
        padding: 13px;
    }

    .pricing-plan-box-modal {
        flex-wrap: wrap;
    }
}

.grammar-checker-submit {
    margin-top: 10px;
}

/* dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown button {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown button img {
    width: 12px;
    height: 12px;
    rotate: 180deg;
    transition: transform 0.3s ease;
}

.dropdown ul {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    position: absolute;
    bottom: 100%;
    left: 0;
    min-width: 114px;
    max-height: 200px;
    overflow: auto;
    margin-bottom: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 10;
}

.dropdown ul li a {
    text-align: left;
    padding: 7px 12px;
    font-size: 14px;
    display: block;
    cursor: pointer;
    white-space: nowrap;
}

.dropdown ul li a:hover {
    background: #f1f5f9;
    color: #4f46e5;
}

.dropdown ul.show {
    display: block;
}

.suggestion_paragraphs:hover {
    text-decoration: underline !important;
    background-color: #f3f7fb !important;
    cursor: pointer !important;
}

mark {
    color: #150d34;
    background: transparent !important;
}

.login-section {
    background-color: var(--color-gray-white);
}