:root {
    --primary-fonts: "Red Hat Display", sans-serif;
    --dark-color: #313d49;
    --blue-color: #3291ff;
    --body-background: #f0f4f7;
    --dark-gray-color: #9ab1bd;
    --hover-bg-color: #1f2a39;
    --white-color: #ffffff;
    --black-color: #000000;
}

/* Common classes */
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.container {
    max-width: 90%;
    margin: auto;
}

.btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: inherit;
    border-radius: 5px;
    background-color: var(--blue-color);
    padding: 10px 20px;
    color: #fff;
    border: none;
    font-size: 16px;
    -webkit-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
}
.paraphrased_style{
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(180deg, #033E92 42.19%, #012354 100%) !important; 
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.30) inset, 0px -4px 4px 0px #0D4696 inset !important;
}
.start_style{
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 5px !important;
    border: 1px solid #C9D6DD !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #F2F7FA 100%) !important;
    color: #333 !important;
}

.select_file{
    padding: 8px;
    border-radius: 5px;
    border: 1.125px solid #C9D6DD;
    background: linear-gradient(180deg, #FFF 0%, #F2F7FA 100%);

}
.btn:hover {
    cursor: pointer;
    opacity: 0.8;
}
.align_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
body {
    font-family: var(--primary-fonts);
    background-color: var(--body-background);
    overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
}
/* ============================ { Page content style } =============================== */
.faq__section p {
    display: none;
    padding: 0 20px;
}
.faq__section .rotate {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: rotate 0.4s ease-in-out;
    -o-transition: rotate 0.4s ease-in-out;
    transition: rotate 0.4s ease-in-out;
}
.faq__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}
.page_content {
    margin: 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.page_content li {
    margin-left: 38px;
}
.page_content h2,
.page_content h3 {
    line-height: 48px;
    color: var(--dark-color);
    clear: both;
}
.page_content p,
ol li,
p,
ul li {
    font-size: 18px;
    line-height: 2;
    color: #555;
}
.page_content ol li::marker,
.page_content ul li::marker {
    color: var(--blue-color);
    font-weight: 700;
    font-size: 14px;
}
.page_content a {
    color: #266fc3;
    text-decoration: none;
}
.page_content a:hover {
    opacity: 0.6;
}
/* ================ page tempalte desing =============================== */
.body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
h1,
h2 {
    color: #267cdf !important;
}

.body .navigation {
    position: fixed;
    left: 0;
    z-index: 1;
}


.body .main_body {
    width: calc(100% - 4%);
    margin: 0 25px 0 4%;
}
.body .main_body.siderbar-opened {
    width: calc(100% - 11%);
    margin: 0 25px 0 11%;
}
.mobile_header {
    display: none;
}
.d-none{
    display:none;
}
/*============================= side navigation style ================ */
.navigation {
    top: 0;
    bottom: 0;
    left: 0;
    transition: margin-top 0.2s ease; 
}

.side_navigation .main_container{
    height: 100vh;
    width: 57%;
    background-color: var(--dark-color);
    padding: 11px;
    margin-right: 10px;
    display:flex;
    flex-direction: column;
    gap: 5vh;
}
.side_navigation .main_container.clicked {
    width: 90%; /* Adjust the width as needed when clicked */
}

.side_navigation .main_container .uper_portion{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 9px;
}

.side_navigation .text {
    color: var(--dark-gray-color);
    text-decoration: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide overflow */
    text-overflow: ellipsis;
    display:block;
}

.side_navigation .main_container .uper_portion .nav{
    display: flex;
    flex-direction: column;
    gap:20px;
}

.side_navigation .site_logo img {
    /* width: 20px;
    height: 20px; */
    
}
.side_navigation .site_logo{
    padding: 5px;
}
.side_navigation .icon_box{
    display: flex;
    flex-direction: row;
    gap:10px;
    justify-content: center;
}

.side_navigation .site_logo{
    display: flex;
    flex-direction: row;
    gap:7px;
    align-items: center;
    cursor: pointer;
    padding: 8px;
}
.side_navigation .nav_link {
    padding: 7px 20px 6px;
    border-radius: 5px;
}

.main_container a{
    text-decoration: none !important;
}

.side_navigation .nav_link:hover {
    background-color: var(--hover-bg-color);
    color: #3291FF;
}
.side_navigation .nav_link.active {
    background-color: var(--hover-bg-color);
}
.side_navigation .nav_link:hover .icon_box .text {
    color: #3291FF;
}

.side_navigation .nav_link:hover .icon_box .icon {
    -webkit-filter: invert(46%) sepia(37%) saturate(1351%) hue-rotate(179deg)
        brightness(104%) contrast(101%);
    filter: invert(46%) sepia(37%) saturate(1351%) hue-rotate(179deg)
        brightness(104%) contrast(101%);
}
.side_navigation .nav_link.active .icon_box .icon {
    -webkit-filter: invert(46%) sepia(37%) saturate(1351%) hue-rotate(179deg)
        brightness(104%) contrast(101%);
    filter: invert(46%) sepia(37%) saturate(1351%) hue-rotate(179deg)
        brightness(104%) contrast(101%);
}




/* ============ text editor section ================= */

/* My code */

.header_sub_row{
    display:flex;
    flex-direction: row;
}

.ai_header{
    justify-content: center;
    align-items: center;
}

.example_head{
    padding: 0 20px;
    font-weight: 500;
}

/* End My Code */
.checker_body .text_editor_section {
    width: 67%;
    margin-top: 1rem;
}
.home_main_heading {
    line-height: 32px;
}
.checker_body .text_editor_section .home_main_heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--black-color);
}
.checker_body .text_editor_section .input_editor .editor_card {
    background-color: var(--white-color);
    margin-top: 1rem;
    height: auto;
    border: solid 1px #ced5de;
    border-radius: 5px;
    -webkit-box-shadow: 4px 5px 18px -7px #a1a1a1;
    box-shadow: 4px 5px 18px -7px #a1a1a1;
    
}
.checker_body .text_editor_section .input_editor .editor_card .card_header {
    width: 100%;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #fefefe),
        to(#f2f7fa)
    );
    background: -o-linear-gradient(top, #fefefe 0, #f2f7fa 100%);
    background: linear-gradient(180deg, #fefefe 0, #f2f7fa 100%);
    /* padding: 1rem 1rem; */
    border-top-left-radius: 5px;
    border-top-right-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;
    flex-wrap: wrap;
}
.card_text_header{
    padding-top: 10px;
    padding-bottom: 10px;
}
.head_text{
    padding-left: 10px;
}

.checker_body
    .text_editor_section
    .input_editor
    .editor_card
    .card_footer
    .input_text_loader
    .loader_gif,
.checker_body
    .text_editor_section
    .input_editor
    .editor_card
    .card_header
    .input_text_loader
    .loader_gif {
    width: 20px;
    height: 20px;
    -webkit-filter: invert(52%) sepia(45%) saturate(4902%) hue-rotate(196deg)
        brightness(103%) contrast(101%);
    filter: invert(52%) sepia(45%) saturate(4902%) hue-rotate(196deg)
        brightness(103%) contrast(101%);
    display: none;
}
.checker_body
    .text_editor_section
    .input_editor
    .editor_card
    .card_footer
    .input_text_loader
    .loader_gif.rotate,
.checker_body
    .text_editor_section
    .input_editor
    .editor_card
    .card_header
    .input_text_loader
    .loader_gif.rotate {
    display: block;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
.checker_body
    .text_editor_section
    .input_editor
    .editor_card
    .editor
    #input_text_to_check {
        width: 94%;
        max-width: 94%;
        resize: none;
        height: 250px;
        border: none;
        outline: 0;
        padding: 1.2rem 0 1.2rem 1.2rem;
        font-family: "Red Hat Display", sans-serif;
        font-size: 16px;
}
#input_text_to_check::-webkit-scrollbar-track {
    background-color: var(--body-background);
}
#input_text_to_check::-webkit-scrollbar {
    width: 6px;
    background-color: var(--body-background);
}
#input_text_to_check::-webkit-scrollbar-thumb {
    background-color: var(--blue-color);
}
.checker_body .text_editor_section .input_editor .editor_card .card_footer {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: solid 1px #ced5de;
    padding: 0.5rem 1rem;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.output_section .card_header {
    display: -webkit-box;
    display: -ms-flexbox;
    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;
}
.output_section .card_footer {
    height: auto;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 3rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
    border-top: solid 1px #ced5de;
    padding: 1rem 1rem;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.output_section .card_footer .option_item,
.output_section .card_header .option_item {
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    flex-wrap: wrap;
}
.output_section .card_footer .option_item:hover,
.output_section .card_header .option_item:hover {
    cursor: pointer;
}
.output_section .card_footer .option_item .icon,
.output_section .card_header .option_item .icon {
    width: 16px;
    /* height: 16px; */
    -webkit-filter: invert(58%) sepia(38%) saturate(7055%) hue-rotate(199deg)
        brightness(96%) contrast(99%);
    filter: invert(58%) sepia(38%) saturate(7055%) hue-rotate(199deg)
        brightness(96%) contrast(99%);
}
.output_section .card_footer .option_item:hover .icon,
.output_section .card_header .option_item:hover .icon {
    -webkit-filter: invert(58%) sepia(38%) saturate(7055%) hue-rotate(199deg)
        brightness(96%) contrast(99%);
    filter: invert(58%) sepia(38%) saturate(7055%) hue-rotate(199deg)
        brightness(96%) contrast(99%);
}
.output_section .card_footer .option_item .text,
.output_section .card_header .option_item .text {
    font-size: 14px;
    color: var(--blue-color);
}
.output_section .card_footer .option_item:hover .text,
.output_section .card_header .option_item:hover .text {
    color: var(--blue-color);
}
.checker_body
    .text_editor_section
    .input_editor
    .editor_card
    .card_footer
    .words_heading {
    margin-right: 1rem;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-gray-color);
}
.checker_body
    .text_editor_section
    .input_editor
    .editor_card
    .card_footer
    .action_button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}
.checker_body
    .text_editor_section
    .input_editor
    .editor_card
    .card_footer
    .counter {
    margin-right: 0.2rem;
    font-size: 14px;
}
.card_header .h3,
.card_header h3 {
    font-size: 15px;
    font-weight: 700;
}
.download_section a {
    padding: 13px;
    margin: 0;
    border: 1px solid #ced5de;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #fefefe),
        to(#f2f7fa100%)
    );
    background: -o-linear-gradient(top, #fefefe 0, #f2f7fa100%);
    background: linear-gradient(180deg, #fefefe 0, #f2f7fa100%);
    line-height: 0;
    border-radius: 6px;
}
.download_section a:hover {
    background: #fff !important;
    -webkit-box-shadow: 0 4px 5px 0 #cccccca1;
    box-shadow: 0 4px 5px 0 #cccccca1;
}
.download_section a img {
    opacity: 60%;
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
}
.download_section a:hover img {
    opacity: 100%;
}
/* ================== Dripping arrow animation ========================== */
.dripping_arrow_animation {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.dripping_arrow_animation .chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
    -webkit-animation: move 3s ease-out infinite;
    animation: move 3s ease-out infinite;
}
.dripping_arrow_animation .chevron:first-child {
    -webkit-animation: move 3s ease-out 1s infinite;
    animation: move 3s ease-out 1s infinite;
}
.dripping_arrow_animation .chevron:nth-child(2) {
    -webkit-animation: move 3s ease-out 2s infinite;
    animation: move 3s ease-out 2s infinite;
}
.dripping_arrow_animation .chevron:after,
.dripping_arrow_animation .chevron:before {
    content: " ";
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: var(--blue-color);
}
.dripping_arrow_animation .chevron:before {
    left: 0;
    -webkit-transform: skew(0deg, 30deg);
    -ms-transform: skew(0deg, 30deg);
    transform: skew(0deg, 30deg);
}
.dripping_arrow_animation .chevron:after {
    right: 0;
    width: 50%;
    -webkit-transform: skew(0deg, -30deg);
    -ms-transform: skew(0deg, -30deg);
    transform: skew(0deg, -30deg);
}
.dripping_arrow_animation .text {
    display: block;
    margin-top: 60px;
    font-size: 16px;
    font-weight: 700;
    color: var(--black-color);
    text-transform: capitalize;
    white-space: nowrap;
    opacity: 0.3;
    -webkit-animation: pulse 1s linear alternate infinite;
    animation: pulse 1s linear alternate infinite;
}
@-webkit-keyframes move {
    25% {
        opacity: 1;
    }
    33% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}
@keyframes move {
    25% {
        opacity: 1;
    }
    33% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}
@-webkit-keyframes pulse {
    to {
        opacity: 1;
    }
}
@keyframes pulse {
    to {
        opacity: 1;
    }
}
/* ============= result card ====================== */
.checker_body .output_section {
    background-color: var(--white-color);
    margin-top: 2rem;
    border: solid 1px #ced5de;
    border-radius: 5px;
    -webkit-box-shadow: 4px 5px 18px -7px #a1a1a1;
    box-shadow: 4px 5px 18px -7px #a1a1a1;
    position: relative;
}
.checker_body .output_section .loader_animation {
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: 50%;
    right: 50%;
    margin: auto;
    display: none;
}
.checker_body .output_section .loader_animation .loader_icon.rotate {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
.checker_body .input_section .loader_icon.rotate {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.checker_body .text_editor_section .output_section .editor_card .card_header {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #fefefe),
        to(#f2f7fa)
    );
    background: -o-linear-gradient(top, #fefefe 0, #f2f7fa 100%);
    background: linear-gradient(180deg, #fefefe 0, #f2f7fa 100%);
    padding: 1rem 1rem;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.checker_body .output_section .editor_card .editor #output_result_text_field {
    width: 95%;
    height: 250px;
    resize: none;
    border: none;
    outline: 0;
    padding: 1rem;
    overflow-y: scroll;
}
#output_result_text_field::-webkit-scrollbar-track {
    background-color: var(--body-background);
}
#output_result_text_field::-webkit-scrollbar {
    width: 6px;
    background-color: var(--body-background);
}
#output_result_text_field::-webkit-scrollbar-thumb {
    background-color: var(--blue-color);
}

/* =============== file options =========== */
.checker_body .file_options {
    width: 20%;
    margin: 2rem 2rem 0 1rem;
}
.checker_body .file_options .main_settings_container {
    width: 350px;
}
.checker_body .file_options .choose_file_button {
    width: 250px;
    border-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.checker_body .file_options .choose_file_button .icon {
    margin-right: 10px;
}
.checker_body .upload_file_section .file_selector {
    padding: 0;
    margin-bottom: 2px;
}
.checker_body .upload_file_section .file_selector .other_options_drop_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--blue-color);
    width: 40px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: solid 2px #267cdf;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.checker_body
    .upload_file_section
    .file_selector
    .other_options_drop_btn:hover {
    cursor: pointer;
    opacity: 0.8;
}
.checker_body
    .upload_file_section
    .file_selector
    .other_options_drop_btn
    .icon.rotate {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: rotate 0.4s ease-in-out;
    -o-transition: rotate 0.4s ease-in-out;
    transition: rotate 0.4s ease-in-out;
}
.checker_body .upload_file_section .other_options_file_upload {
    background-color: var(--white-color);
    border-radius: 5px;
    padding: 1rem 0;
    -webkit-box-shadow: 4px 5px 18px -7px #a1a1a1;
    box-shadow: 4px 5px 18px -7px #a1a1a1;
    border: solid 1px #ced5de;
    display: none;
}
.checker_body .upload_file_section .other_options_file_upload.active {
    display: block;
}
.checker_body .upload_file_section .other_options_file_upload .item_link {
    padding: 0.7rem 0 0.7rem 1.3rem;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.checker_body .upload_file_section .other_options_file_upload .item_link:hover {
    background-color: #f3f3f3;
    cursor: pointer;
}
.checker_body .upload_file_section .other_options_file_upload .item_link .icon {
    margin-right: 10px;
}
.checker_body .upload_file_section .other_options_file_upload .item_link .text {
    font-size: 14px;
    color: var(--black-color);
    font-weight: 400;
}
.mode_selection_section {
    background-color: var(--white-color);
    border-radius: 5px;
    padding: 1rem 0;
    margin-top: 1rem;
    border: solid 1px #ced5de;
}
.mode_selection_section .item {
    padding: 0 1.3rem;
}
.mode_selection_section .item .icon {
    margin-right: 8px;
}
.mode_selection_section .item .text {
    font-size: 14px;
    color: var(--black-color);
    font-weight: 400;
}
.available_languages .item,
.mode_selection_section .options .item {
    padding: 0 1.5rem;
    margin: 0.6rem 0;
}
.available_languages .item:hover label,
.mode_selection_section .options .item:hover label {
    cursor: pointer;
}
.available_languages .item .radio_btn,
.mode_selection_section .item .radio_btn {
    margin-right: 10px;
}
.language_section {
    margin-top: 1rem;
    position: relative;
}
@media only screen and (max-width: 1490px){
    .body .main_body.siderbar-opened {
        width: calc(100% - 12%);
        margin: 0 25px 0 12%;
    }
}
@media only screen and (max-width: 1365px){
    .body .main_body.siderbar-opened {
        width: calc(100% - 15%)!important;
        margin: 0 25px 0 15%!important;
    }
}
@media only screen and (max-width: 1155px) {
    .body .main_body.siderbar-opened {
        width: calc(100% - 18%) !important;
        margin: 0 25px 0 18% !important;
    }
}
@media only screen and (max-width: 997px) {
    .body .main_body.siderbar-opened {
        width: calc(100% - 22%) !important;
        margin: 0 25px 0 22% !important;
    }
}
@media only screen and (max-width: 940px){
    .language_section{
        padding: 10px;
        width: 100%;
    }
    .header_sub_row{
        width: 100%;
    }
    .w100940{
        width: 100%!important;
    }
    .w33940{
        width: 33%!important;
    }
    .fwm940{flex-wrap: wrap;}
    .displayorder{margin-top: 12px!important;}
    .jcc940{justify-content: center!important;}
    .jcl940{justify-content: left!important;}
}
@media only screen and (max-width: 855px) {
    .body .main_body.siderbar-opened {
        width: calc(100% - 25%) !important;
        margin: 0 25px 0 25% !important;
    }
}
@media only screen and (max-width: 768px) {
    .body .main_body.siderbar-opened {
        width: calc(100% - 0%) !important;
        margin: 0 25px 0 0% !important;
    }
}
@media only screen and (max-width: 500px) {
    .wm100{width: 100%!important;}
    .jclm{justify-content: left!important;}
}
.col-width-3{
    width: 25%;
}
.logo{margin-right: 7px;}
.fs16{font-size: 16px;}
.w100{width: 100%;}
.displayorder{
    display: flex;
    justify-content: end;
}
.footerpara{
    line-height: 24px;
    color: #000;
    margin-top: 15px;
}
.footerheading{
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
    color: #000;
}
.footerlinks{
    line-height: 40px;
    font-size: 16px;
    font-weight: 500;
    display: grid;
}
.footerlinks a{color: #000!important;text-decoration: none;}
.footermain{
    background: #F6F9FC;
    border-top: 1px solid #D2DADD;
}
.ftrmt{margin-top: 40px;padding-bottom: 15px;}
.subfooter{
    background: #F6F9FC; 
    border-top: 1px solid #D2DADD;
    color: #000;
    padding-bottom: 15px;
    padding-top: 15px;
}
.footertxt{font-size: 16px;font-weight: 500;text-align: center;}
.language_section .language_dropdown {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
    background: #fefefe;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #fefefe),
        to(#f2f7fa)
    );
    height: 38px;
    background: -o-linear-gradient(top, #fefefe 0, #f2f7fa 100%);
    background: linear-gradient(180deg, #fefefe 0, #f2f7fa 100%);
    border-radius: 20px;
    border: solid 1px #ced5de;
    margin-right: 15px;
}
.language_section .language_dropdown:hover {
    cursor: pointer;
}
.language_section .language_dropdown .text_area {
    
    padding: 4px 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.language_section .language_dropdown .text_area .icon {
    margin-right: 5px;
}
.language_section .language_dropdown .drop_arrow {

}
.text {
    font-size: 16px;
}
.language_section .language_dropdown .drop_arrow .arrow_icon {
    -webkit-filter: invert(100%) brightness(0);
    filter: invert(100%) brightness(0);
}
.language_section .language_dropdown .arrow_icon.rotate {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.language_section .available_languages {
    background-color: var(--white-color);
    border-radius: 5px;
    padding: 0;
    margin-top: 2px;
    border: solid 1px #ced5de;
    max-height: 170px;
    overflow-y: scroll;
    display: none;
}
.language_section .available_languages.active {
    display: block;
    width: 100%;
    position: absolute;
    z-index: 10;
    -webkit-box-shadow: 4px 5px 18px -7px #a1a1a1;
    box-shadow: 4px 5px 18px -7px #a1a1a1;
}
.language_section .available_languages::-webkit-scrollbar-track {
    background-color: var(--body-background);
}
.language_section .available_languages::-webkit-scrollbar {
    width: 6px;
    background-color: var(--body-background);
}
.language_section .available_languages::-webkit-scrollbar-thumb {
    background-color: var(--blue-color);
}
.language_section .available_languages .item_link {
    text-decoration: none;
    padding: 0.7rem 0 0.7rem 1.3rem;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.language_section .available_languages .item_link .text {
    font-size: 14px;
    color: var(--black-color);
    font-weight: 400;
}
.language_section .available_languages .item_link.active,
.language_section .available_languages .item_link:hover {
    background-color: #f3f3f3;
}
.language_section .available_languages .item_link .icon {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    margin-right: 14px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.language_section .available_languages .item_link.active .icon,
.language_section .available_languages .item_link:hover .icon {
    background: var(--blue-color);
}

/* ========================= Blog Page ============================== */
.blog_page .container {
    margin: 4rem auto;
}
.blog_page a {
    text-decoration: none;
}
.blog_page .container .heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--black-color);
    text-transform: uppercase;
}
.blog_page .container .hero_blog {
    background-color: var(--white-color);
    border-radius: 10px;
    width: 95%;
    /* max-height: 400px; */
    margin-top: 2rem;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 1em;
    
}

@media (max-width:1082px){
    .blog_page .container .hero_blog {
        flex-wrap: wrap;
    }
    .blog_page .container .hero_blog .featured_image img{
       width: 100%;
    }
}
.blog_page .container .hero_blog:hover {
    cursor: pointer;
    -webkit-box-shadow: 4px 5px 18px -7px #a1a1a1;
    box-shadow: 4px 5px 18px -7px #a1a1a1;
}
.blog_page .container .hero_blog .featured_image {
    flex-grow: 2;
    height: auto;
}
.blog_page .container .hero_blog .featured_image img {
    max-height: 350px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}
.blog_page .container .hero_blog .text_portion {
    flex-grow: 1;
    padding: 1rem 1rem 1rem 3rem;
}
.blog_page .container .hero_blog .text_portion .post_title {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    color: var(--black-color);
}
.post_date {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    margin-top: 15px;
    line-height: 24px;
    color: #3777c1;
}
.blog_page .container .hero_blog .text_portion .post_content {
    font-size: 18px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 28px;
}

.blog_page .blog_posts_grid {
    min-height: 500px;
}
.blog_page .blog_posts_grid,
.single_blog_page .related_posts {
    margin-top: 4rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 4rem 1fr 4rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 4rem;
    -moz-column-gap: 4rem;
    column-gap: 4rem;
    row-gap: 4rem;
}

@media (max-width:995px){
    .blog_page .blog_posts_grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

.blog_page .blog_posts_grid .blog_item,
.single_blog_page .related_posts .blog_item {
    width: 100%;
    height: 385px;
    overflow: hidden;
    padding: 1em;
    border-radius: 10px;
    background-color: var(--white-color);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.blog_page .blog_posts_grid .blog_item {
    margin-top: 30px;
}
.single_blog_page .related_posts .blog_item:hover {
    cursor: pointer;
    -webkit-box-shadow: 4px 5px 18px -7px #a1a1a1;
    box-shadow: 4px 5px 18px -7px #a1a1a1;
}
.blog_page .blog_posts_grid .blog_item:hover {
    cursor: pointer;
    -webkit-box-shadow: 4px 5px 18px -7px #a1a1a1;
    box-shadow: 4px 5px 18px -7px #a1a1a1;
    margin-top: 10px;
}
.single_blog_page .related_posts .blog_item .featured_image {
    width: inherit;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
}
.blog_page .blog_posts_grid .blog_item .featured_image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
}
.read__more {
    margin-top: 20px;
}
.single_blog_page .related_posts .blog_item .text_section {
    padding: rem 1rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.blog_page .blog_posts_grid .blog_item .text_section {
    padding: 0.5rem 0.5rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.blog_page .blog_posts_grid .blog_item .text_section .post_title,
.single_blog_page .related_posts .blog_item .text_section .post_title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--black-color);
}

/* =============== Single post page ============================ */

.mobile_header{
    position: relative;
}

.mobile_menu_dropDown {
    top:0;
    width: 100%;
    height: 100vh;
    position: fixed;
    display: flex;
    flex-direction: column;
    z-index: 1;
    background: rgba(37, 37, 51, 0.20);
    backdrop-filter: blur(7.5px);
    overflow: hidden;
}

.mobile_header .toggle_group .menu_toggle{
    -webkit-filter: invert(100%);
    filter: invert(100%);
    line-height: 0;
}

.mobile_menu_logo .active_option{
    border-radius: 10px;
    background: var(--rgb-314257, #1F2A39);
    color: #FFF;

}
.mobile_menu_logo{
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #C9D6DD;
    padding: 25px;
    width: 30%;
    background: var(--rgb-496173, #313D49);
    gap:20px;
    color: #9AB1BD;
    z-index: 2;
    
}


.mobile_menu_options{
    display: flex;
    flex-direction: column;
    padding: 25px;
    width: 30%;
    height: 100%;
    background: var(--rgb-496173, #313D49);
    gap:30px;
    color: #9AB1BD;
    z-index: 2;
    padding-bottom: 20px;
}
.mobile_btn{
    display: flex !important;
    flex-direction:column !important;
    align-items:normal !important;
}
.side_btn{
    text-decoration: none;
    color: #9AB1BD;
}
.menu_logo_style{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px;
    text-decoration: none;
    color: #9AB1BD;
}
#close_menu{
    padding-left: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #9AB1BD;
}
.mobile_footer {
    display: none;
}

.download_section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media only screen and (max-width: 667px){
    .mobile_menu_logo, .mobile_menu_options{
        width: 40%;
    }
}

@media only screen and (max-width: 521px){
    .mobile_menu_logo, .mobile_menu_options{
        width: 45%;
    }

    
}
@media only screen and (max-width: 450px){
    .mobile_menu_logo, .mobile_menu_options{
        width: 55%;
    }
}

@media only screen and (max-width: 367px){
    .mobile_menu_logo, .mobile_menu_options{
        width: 60%;
    }
}

@media only screen and (max-width: 335px){
    .mobile_menu_logo, .mobile_menu_options{
        width: 70%;
    }
}


/* My Code For Header */

.other__tools__top__main {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    padding-top: 10px;
}

.other__tools__top{
    width: 100%;
    display: flex;
    flex-direction:row;
    align-items: center;
    justify-content: space-between;
}
.main_head_icon{
    display: flex;
    flex-direction: row;
    gap:10px;
    align-items: center;
}

.main_head_text{
    display: flex;
    flex-direction: row;
    gap:40px;
    font-weight: 500;
    align-items: center;
}

.premium_buttons{
    gap:10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.login_button{
    width: 95px;
    height:25px;
    padding: 5px;
    border: 0.96px solid #C9D6DD;
    border-radius: 5px;
    color: #313D49;
    background: linear-gradient(180deg, #FFF 0%, #E6EEF3 100%);
    text-align: center;
    cursor: pointer;
    
}
.pricing_button{
    width: 95px;
    height:25px;
    text-decoration: none;
    padding: 5px;
    display: flex;
    color: #FFF;
    font-weight: 200;
    font-size: 16px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: linear-gradient(180deg, #6291FF 1.04%, #155CFF 100%);

}

.des__footer__inner {
    border-top: 1px solid #ccc;
    margin-top: 1em;
}
.des__footer__copy__part {
    width: 100%;
    text-align: center;
}
.des__footer__links__part {
    padding-bottom: 2em;
    padding-top: 1em;
    text-align: center;
    width: 100%;
}
.des__footer__links__part a {
    font-size: 18px;
    text-decoration: none;
    color: #000;
    padding: 10px;
}
.output__btns {
    display: none;
    align-items: center;
    gap: 10px;
}
.output__btns a {
    text-decoration: none;
}

/* {============== 768px ===================================} */
/* ===================================== Reponsive ========================= */
@media (max-width: 1300px) {
    .container {
        max-width: 90% !important;
    }
    .body .main_body {
        margin: 0 0 0 auto;
    }
}
@media (max-width: 992px) {
    .page_content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .container {
        max-width: calc(100% - 30px) !important;
        margin: 0 15px;
    }
    .blog_page .blog_posts_grid,
    .single_blog_page .related_posts {
        row-gap: 0;
    }
    .single_blog_page .hero_featured_image {
        width: 100% !important;
        height: auto !important;
    }
    .blog_page .blog_posts_grid .blog_item,
    .single_blog_page .related_posts .blog_item {
        width: calc(100% - 5rem) !important;
        padding: 0.5rem 0.5em 15%;
    }
    .editor__row {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .citation__div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .citation__div input {
        width: 96% !important;
    }
    .checker_body .text_editor_section .input_editor .editor_card_cite {
        height: 610px !important;
    }
    .cite__tab__label,
    .cite__tab__label_chicago {
        margin-left: 0 !important;
    }
    .des__footer__main,
    .other__tools__top__main {
        display: none;
    }
    .counter {
        font-size: 14px !important;
    }
    .submit_btn_for_checker {
        padding: 10px 10px !important;
        font-size: 13px !important;
    }
    .plag__plagiarized__main__result {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .plag__plagiarized__tab__result {
        padding: 10.3px 7px !important;
        margin-left: -30px !important;
        max-width: 250px !important;
        text-align: justify;
    }
    .plag__plagiarized__tab__label {
        margin-left: -40px !important;
    }
    .plag__unique__tab__result {
        max-width: 241px !important;
    }
    .plag__unique__tab__label {
        margin-left: -32px !important;
    }
    .plag__plagiarized__compare__btn {
        height: 43px;
        width: 100px;
        margin-top: 1rem;
    }
    .output_section .card_header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .download_section a img {
        opacity: 60%;
        width: 25px;
        height: 25px;
    }
    .download_section a {
        padding: 10px;
    }
    .mobile_header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: calc(100% - 3rem);
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 1rem 1.5rem;
        background-color: var(--dark-color);
    }
    /* .mobile_header .toggle_group,
    .mobile_menu_dropDown .toggle_group {
        position: relative;
        padding: 0.3rem 0.5rem;
        border-radius: 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 20px;
        height: 20px;
        -webkit-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }
    .mobile_header .toggle_group.active {
        background-color: var(--blue-color);
    }
    .mobile_header .toggle_group .menu_toggle {
        width: 30px;
        height: 30px;
        line-height: 0;
        -webkit-filter: invert(100%);
        filter: invert(100%);
    }
    .mobile_menu_dropDown .toggle_group .close_toggle {
        position: absolute;
        width: 30px;
        height: 30px;
        -webkit-filter: invert(100%);
        filter: invert(100%);
    }
    .mobile_header .toggle_group.active .menu_toggle {
        display: none;
    }
    .mobile_menu_dropDown .icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-top: 22px;
        margin-right: 22px;
    }
    .mobile_menu_dropDown {
        background-color: #1f2a3990;
        width: 100%;
        height: 0;
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.9);
        overflow-y: hidden;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
    }
    .mobile_menu_dropDown.active {
        visibility: visible;
        height: 100%;
    }
    .mobile_menu_dropDown .m_navigation {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 70%;
        row-gap: 20px;
    }
    .mobile_menu_dropDown .m_navigation a {
        text-decoration: none;
        color: var(--white-color);
        font-size: 22px;
        font-weight: 500;
    } */

    .mobile_logo:hover {
        cursor: pointer;
    }
    
    /* .mobile_menu_dropDown .m_navigation a.active {
        border-bottom: solid 2px var(--blue-color);
    } */
    .mobile_footer {
        display: block;
        background-color: var(--dark-color);
        padding: 2rem 1.5rem;
        width: calc(100% - 3rem);
        margin-top: 2rem;
    }
    .footer_links .m_navigation {
        row-gap: 10px;
        font-size: 14px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0.5rem 0;
    }
    .footer_links .m_navigation a {
        text-decoration: none;
        color: var(--white-color);
    }
    .footer_social {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
    .footer_copy_right p {
        text-align: center;
        color: var(--dark-gray-color);
        font-size: 12px;
    }
    .navigation {
        display: none;
    }
    .navigation.active {
        left: 0 !important;
    }
    .main_body {
        width: 100% !important;
        margin: 0 auto !important;
    }
    .checker_body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .checker_body .text_editor_section .home_main_heading {
        font-size: 24px;
    }
    .checker_body .text_editor_section {
        width: 100%;
    }
    .output_section .card_footer {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 1.5rem 1rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .links__main {
        margin-top: 5px;
    }
    .output__options {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .checker_body .file_options {
        width: 100%;
        margin: 0;
        margin-top: 2rem;
    }
    .checker_body .file_options .main_settings_container {
        width: 100%;
    }
    .checker_body .file_options .choose_file_button {
        width: 230px;
    }
    .checker_body .output_section .loader_animation {
        top: 45%;
        right: 45%;
        left: 45%;
        bottom: 45%;
    }
    .output_section .card_header .option_item .text {
        display: none;
    }
    .blog_page .blog_posts_grid {
        -ms-grid-columns: (1fr) [1];
        grid-template-columns: repeat(1, 1fr);
    }
    .single_blog_page .related_posts {
        -ms-grid-columns: (1fr) [1];
        grid-template-columns: repeat(1, 1fr);
    }
}
/* @media (max-width: 576px) {
    .container {
        max-width: calc(100% - 16px) !important;
        margin: 0 8px;
    }
    .blog_page .container {
        margin: 1rem auto;
    }
    .checker_body
        .output_section
        .editor_card
        .editor
        #output_result_text_field,
    .checker_body .text_editor_section .input_editor .editor_card .card_footer,
    .checker_body .text_editor_section .input_editor .editor_card .card_header,
    .checker_body
        .text_editor_section
        .input_editor
        .editor_card
        .editor
        #input_text_to_check {
        padding: 0.5rem;
    }
} */

@media (max-width: 590px) {

    .header_sub_row{
        font-size: 14px;
        flex-wrap: wrap;
    }
    .header_sub_row .wordChanger{
        
        padding: 0.8rem;
    }
}

@media (max-width: 465px){
    .premium_buttons_style{
        padding: 0.8rem 13.5px 0.8rem !important;
    }
}

.grey_icon {
    -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(139deg)
        brightness(109%) contrast(101%);
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(139deg)
        brightness(109%) contrast(101%);
}
.grey_icon_last {
    -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(139deg)
        brightness(90%) contrast(101%);
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(139deg)
        brightness(90%) contrast(101%);
}
.download_list {
    position: absolute;
    bottom: 28px;
    padding: 10px;
    left: 0;
    border: 1px solid #ccc;
    background: #fff;
    width: 100px;
    border-radius: 3px;
    display: none;
}
.download_output_btn:hover .download_list {
    display: block !important;
}
.download_list ul {
    list-style: none;
}
.output__links {
    display: flex;
    flex-direction: row;
    gap:5px;
    border-radius: 5px;
    padding: 7px;
    font-weight: 400;
    align-items: center;
}
.plag_checker img{
    /* image color to be added */
}
.tool_tip{
    width: 180px;
    height: 180px;
    background-color: #FFF;
    filter: drop-shadow(0px 22.38807487487793px 31.98296356201172px rgba(0, 0, 0, 0.10));
    z-index: 999;
    position: absolute;
    margin:55px 0px 0px -25px;
    border-radius: 15px;
    align-items: center;
    gap: 5px;
    
}
@media(max-width:500px){
    .formal_div{
        margin:55px 0px 0px -46px;
    }
}

@media (max-width:656px){
    .shorten_div{
        margin:55px 0px 0px -46px;
    }
}
@media (max-width:590px){
    
    .shorten_div{
        margin:55px 0px 0px 148px;
    }
}
@media (max-width:453px){
    .tool_tip{
        margin:55px 0px 0px 17px;
    }
}

@media (max-width:395px){
    .tool_tip{
        margin:55px 0px 0px -9px;
    }
}

@media (max-width:336px){
    .shorten_div{
        margin:55px 0px 0px 68px;
    }
    .formal_div{
        margin:55px 0px 0px -41px;
    }
}
@media (max-width:309px){
    .shorten_div{
        margin:55px 0px 0px -54px;
    }
    .formal_div{
        margin:55px 0px 0px -6px;
    }
}
#continue_free{
    cursor: pointer;
}

.popup-btn{
    padding: 7px;
}
.tooltip_heading{
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

.tooltip_text{
    color: rgba(51, 51, 51, 0.70);
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}
.chat_button{
    border-radius: 5px;
    background: linear-gradient(180deg, #033E92 42.19%, #012354 100%);
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.30) inset, 0px -4px 4px 0px #0D4696 inset;
    color: #FFF;
    font-weight: 400;
    padding: 5px 10px 3px 7px;
    font-size: 16px;
    align-items: start;
    justify-content: start;
    gap: 5px;
    cursor: pointer;
}
.tooltip_button{
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(3, 62, 146, 0.12) 42.19%, rgba(1, 35, 84, 0.12) 100%);
    text-decoration: none;
    padding: 3px;
    width: 80%;
}
.btn_content{
    border-radius: 5px;
    background: linear-gradient(180deg, #033E92 42.19%, #012354 100%);
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.30) inset, 0px -4px 4px 0px #0D4696 inset;
    padding: 7px;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tool_tip_btn_img{
    border-radius: 5px;
    border: 0.694px solid #FFF;
    background: linear-gradient(39deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.29) 162.14%);
    box-shadow: 0px 1.38889px 8.33333px 0px rgba(0, 0, 0, 0.25);
    width: 25px;
    height: 25px;
    
}

.tooltip_btn_text{
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
}

.polygon_shape{
    background-color: #FFF;
    width: 20px;
    height: 20px;
    margin: -10px 0px 0px 0em;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.plag_checker{
    color: #FFF;
    background: linear-gradient(180deg, #033E92 0%, #012354 100%);
}

.grammer_checker_btn{
    border: 1px solid #C9D6DD;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #F2F7FA 100%);
}

.output__options {
    height: 30px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 3rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
}
.cursorp {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 500;
}
.language_section {
    margin: 0;
}
.input_text_loader {
    /* display: inline-block; */
}

.language_section .language_dropdown .drop_arrow {
    width: 20px;
    padding: 10px 5px;
}
.file_options {
    display: none !important;
}
.checker_body .text_editor_section {
    width: 100%;
}
.mb-3 {
    margin-bottom: 1rem;
}
.wc_err {
    color: #d1283d;
}
@media (max-width: 992px) {
    .err_col {
        height: 18px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        text-align: center;
    }
}
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.faq__section .arrow_icon {
    -webkit-filter: invert(0%) sepia(100%) saturate(0%) hue-rotate(108deg)
        brightness(38%) contrast(105%);
    filter: invert(0%) sepia(100%) saturate(0%) hue-rotate(108deg)
        brightness(38%) contrast(105%);
    margin-top: 10px;
}


/* ----------------------------Home Page CSS-------------------------------- */

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

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

.flag-n::before {
    width: 110px;
    height: 17px;
    z-index: 10;
    position: absolute;
    background: #000;
    left: -29px;
    font-weight: 700;
    content: attr(data-title);
    top: 60px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
    padding-top: 15px;
    display: none
}

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

.mode-div {
    padding: .5rem 1.3rem !important;
    background-color: var(--blue-color)
}

.select-mode {
    color: #fff;
    font-weight: 700
}

.words_count {
    font-family: "Red Hat Display", sans-serif;
    font-weight: bold;
    font-size: 14px
}

.sw {
    cursor: pointer
}

.sm_syn {
    font-weight: 700
}

.sm_syn:hover {
    cursor: pointer;
    border-bottom: 2px solid var(--blue-color)
}

.synonyms-list {
    background: var(--white-color);
    text-align: center;
    position: absolute;
    z-index: 2;
    max-width: 241px;
    outline: 0;
    border: none;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    border-radius: 10px;
    min-width: 100px;
    -webkit-box-shadow: 1px 1px 30px rgb(0, 139, 255, .16) !important;
    box-shadow: 1px 1px 30px rgb(0, 139, 255, .16) !important;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
    max-height: 240px;
    overflow: auto
}

.synonyms-list .item {
    width: auto;
    border-radius: 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: auto;
    padding: 5px 21px;
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 400;
    background: var(--body-background);
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    white-space: nowrap
}

.synonyms-list .item::-moz-selection {
    background: 0 0
}

.synonyms-list .item::selection {
    background: 0 0
}

.synonyms-list .item::-moz-selection {
    background: 0 0
}

.synonyms-list .item:hover {
    background: var(--blue-color);
    color: var(--white-color)
}

.noselect {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

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

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

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

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



.help-table {
    background: #f0f4f7;
    border: 1px solid #469eff;
    border-radius: 5px;
    padding: 10px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    margin: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
}

.page_content table {
    border-collapse: collapse;
    font-size: 1em;
    width: 80%;
    min-width: 50%;
    border-radius: 5px;
    overflow: hidden;
}

.page_content table tbody tr {
    border-bottom: 3px solid #f0f4f6
}

.page_content table td {
    background: #fff;
    padding: 15px 10px;
    border-left: 5px solid #f0f4f6
}

.page_content table tbody tr:last-of-type {
    border-bottom: 2px solid #469eff
}

@media (max-width:425px) {
    .help-table {
        width: 100%
    }

    .page_content table td {
        padding: 10px
    }
}

/* @media (max-width: 625px) {
    .language_section .language_dropdown .text_area {
        width: 90%
    }

    .input_editor .editor_card .card_header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 10px;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .header_sub_row,
    .language_section {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
} */

.tooltip_main {
    overflow-y: scroll;
    padding: 5px 0;
    overflow-x: hidden;
    position: absolute;
    min-height: 35px;
    max-height: 200px;
    min-width: 150px;
    z-index: 6000;
    -webkit-box-shadow: 0 5px 18px 3px #999;
    box-shadow: 0 5px 18px 3px #999;
    background: #fff;
    padding: 5px 0;
    white-space: nowrap !important;
    border-radius: 5px
}

.tooltip_main::-webkit-scrollbar {
    width: 8px;
    background-color: #f5f5f5
}

.tooltip_main::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: #3291ff
}

.tooltip_main>span {
    cursor: pointer;
    color: #439aff !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 2.5px 5px
}

.tooltip_main>span:hover {
    background: #ddf3ef
}

.sw.sc {
    color: #439aff
}

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

.tooltip_main .line {
    width: 100%
}

.tooltip_main .line~.line {
    background-color: #ddd
}

.tooltip_main hr {
    margin: 0
}

.wordChanger {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5em;
    cursor: pointer;
    flex-grow: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.premium_btn_style{
    flex-grow: 2;
    flex-wrap: wrap;
}

.premium_option{
    opacity: 0.5; 
}


#ai_Changer{
    background: linear-gradient(180deg, #FFF 28.13%, #D0E5F1 100%);
    padding: 1rem 1.2rem;
}

#gpt_4{
    padding: 1rem 1.2rem;
}

@media (max-width:516px){
    #ai_Changer{
        padding: 1rem 0rem;
    }
}
@media (max-width:367px) {
    #ai_Changer{
        padding: 1rem 1rem;
    }
}

/* ----------------------------Home Page CSS End--------------------------- */

/* ----------------------------Plagiarism Checker CSS----------------------- */


    .plag__result__div__main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 1.6rem
    }

    .plag__plagiarized__compare__btn {
        padding: 10px;
        border: 1px solid #9ab1bd;
        background: #f0f4f7;
        border-radius: 4px;
        cursor: pointer
    }

    .plag__plagiarized__result__details {
        border-top: 1px solid #e4eaee;
        display: none
    }

    .plag__plagiarized__result__details p {
        padding: 1em 0;
        overflow: auto
    }

    .plag__plagiarized__result__details a {
        color: #229ce4
    }

    .plag__url__percent {
        color: #9ab1bd
    }

/* ---------------------------------Citation-Generator Page CSS-------------------------------- */

.tooltip4,
.tooltip5 {
    cursor: pointer
}

.tooltip5::after {
    content: 'Copied';
    float: right;
    height: 20px;
    bottom: 10px;
    position: absolute;
    right: 40px;
    width: 20px;
    cursor: pointer
}

.tooltip4::after {
    content: url(/assets/copy_icon.svg);
    float: right;
    height: 20px;
    bottom: 10px;
    position: absolute;
    right: 17px;
    width: 20px;
    cursor: pointer
}

.citation__btn {
    cursor: pointer;
    text-align: center;
    width: 130px;
    margin: 1rem auto;
    padding: 12px 12px;
    color: #fff;
    background: #313d49;
    border-radius: 4px;
    -webkit-box-shadow: 1px 2px 3px #0000007d;
    box-shadow: 1px 2px 3px #0000007d
}

.cite__result {
    width: 100%;
    min-height: 63px;
    padding: 13.3px;
    margin-top: 20px;
    position: relative;
    min-height: 70px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background: #fff;
    border: 1px solid #ced5de;
    -webkit-box-shadow: 1px 1px 7px 1px #00000033;
    box-shadow: 1px 1px 7px 1px #00000033
}

/* Login / Sign Up CSS Code */
.Account_Div{
    position: fixed;
    background: #0000004d;
    width: 100vw !important;
    height: 100vh;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    justify-content: center;
    align-items: center;

}

.Account{
    width: 30%;
    height: auto;
    border-radius: 20px;
    border: 6px solid #FFF;
    background: #FFF;
    box-shadow: 0px 0px 30px 0px rgba(205, 198, 219, 0.30);
    z-index: 2;
}

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

.row_account{
    display: flex;
    flex-direction: row;
}

.center_account{
    justify-content: center;
    align-items: center;
}
.account_body{
    gap:4px;
    justify-content: center;
}

.remove_tab{
    justify-content:end;
    padding: 10px;
    cursor: pointer;
}
.user_icon{
    justify-content: center;
}

.account_image{
    width: 18%;
    flex-shrink: 0;
}
.Sign_in_text{
    justify-content: center;
}

.sign_in{
    color: #000;
    font-family: Red Hat Display;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.google_account{
    width: 100%;
}

.google_box{
    gap: 10px;
    width: 75%;
    margin: 10px;
    padding:8px;
    height: 30px;
    flex-shrink: 0;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid #C9D6DD;
    background: #FFF;
}

.google_sign_in_text{
    color: #000;
    text-align: center;
    font-family: Red Hat Display;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.account_divider{
    justify-content: center;
    width: 100%;
    align-items: center;
}
.account_divider_head{
    justify-content: space-around;
    width: 75%;
    align-items: center;
}

.divider_line{
    width: 25%;
    border: 1px solid #C9D6DD;
}

.divider_text{
    font-size: 12px;
}

.account_form{
    width: 100%;
    justify-content: center;
}

.acount_form_data{
    width: 75%;
    justify-content: flex-start;
    line-height: 26.46px;
    font-weight: 500;
}

.email_form{
    border-radius:10px;
    border: 1px solid #C9D6DD;
    background: #FFF;
    padding: 15px;
}
.pass_form{
    margin-top: 10px;
}
.remember_me_box{
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    border-radius: 5px;
    border: 1px solid #C9D6DD;
    background: #FFF;
}

.form_under_text{
    justify-content: space-between;
    align-items: baseline;
}

.forget_password{
    color: #0984E3;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}
.remember_me{
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
}
.sign_in_button{
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, #44BBFE 0%, #1E78FE 100%);
    border: 2px solid white;
    color: #FFF;
}
.new_user{
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
}
.create_account{
    color: #0984E3;
    cursor: pointer;
}

.last_row{
    padding-bottom: 20px;
}

.sign_up_names{
    width: 100%;
    justify-content: space-between;
    
}

.name_field{
    color:#718096;
    font-style: normal;
    font-size: 14px;
    padding: 14px;
    font-weight: 400;
    border-radius: 10px;
    border: 1px solid #C9D6DD;
    background: #FFF;
}
.name_spaces{
    width: 49%;
}

@media (max-width: 1160px){

    .Account{
        width: 35%;
    }
    .google_sign_in_text{
        font-size: 14px;
    }

    .forget_password, .remember_me, .new_user{
        font-size: 13px;
    }

    .remember_me_box{
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 920px){
    .Account{
        width: 45%;
    }

    .google_sign_in_text{
        font-size: 12px;
    }

    .forget_password, .remember_me, .new_user{
        font-size: 12px;
    }

    .remember_me_box{
        width: 11px;
        height: 11px;
    }
}

@media (max-width: 640px){
    .Account{
        width: 55%;
    }
    
}

@media (max-width: 560px){
    .Account{
        width: 65%;
    }
}

@media (max-width: 450px){
    .Account{
        width: 85%;
    }
}
/* Login / Sign Up Code End */

/* Account Page CSS */

.account_page{
    max-width: 1140px;
    margin: auto;
}
.main_page{
    border-radius: 10px;
    background: var(--rgb-255255255, #FFF);
}

.account_page h2{
    color:#313D49 !important;
    margin-top: 15px;
    margin-bottom: 15px;
}

.account_content{
    color: #000;
    font-family: Red Hat Display;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    gap:30px;
    padding: 35px;
}

.account_sidebar{
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    gap: 10px;
}

.account_sidebar:hover{
    
    color:#3291FF;
    border-radius: 8px;
    background: #F0F5FF;
}
.account_sidebar:hover img {
    filter: invert(46%) sepia(37%) saturate(1351%) hue-rotate(179deg)
            brightness(104%) contrast(101%);
  }

.account_content .active{
    
    color:#3291FF;
    border-radius: 8px;
    background: #F0F5FF;
}

.account_content .active img{
    filter: invert(46%) sepia(37%) saturate(1351%) hue-rotate(179deg)
    brightness(104%) contrast(101%);
}

.user_details{
    width: 90%;
    padding: 0px 0px 0px 30px;
    margin-top: 35px;
    margin-bottom: 35px;
    border-left: 1px solid #C9D6DD;
}

.profile_head{
    width: 95%;
    justify-content: space-between;
    align-items: baseline;
}

.bold_text{
    font-weight: 700;
    color: #FFF;
    font-size: 18px;
    line-height: normal;
    letter-spacing: 1px;
}

.main_premium_head{
    background: linear-gradient(90deg, #A5C9FF 0%, #686EFC 48.78%, #A5C9FF 100%);
    height: 40px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.announcement{
    background: linear-gradient(90deg, #378AFF 0.97%, #9038FA 50.46%, #FF31AD 99.94%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 900;
}
.announcement_text_center{
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.discount_sale{
    color: #FD0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.36px;
}

.announcement_image{
    width: 20%;
    height: 40px;
}
.annuncement_btn{
    border-radius: 18px;
    background: linear-gradient(147deg, #FF9E9A -19.59%, #FF2640 80.25%);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.25);
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 10px;
}

.announcement_other_text{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1px;
}

@media (max-width:1139px){
    .announcement, .discount_sale{
        font-size: 18px;
    }

    .announcement_other_text{
        font-size: 18px;
    }
    .annuncement_btn{
        font-size: 12px;
    }
}

@media (max-width:992px){
    .announcement, .discount_sale{
        font-size: 16px;
    }

    .announcement_other_text{
        font-size: 18px;
    }
    .annuncement_btn{
        font-size: 10px;
    }
}

@media (max-width:889px){
    .announcement, .discount_sale{
        font-size: 20px;
    }

    .announcement_other_text{
        font-size: 18px;
    }
    .annuncement_btn{
        font-size: 12px;
    }

    .announcement_image{
        display: none;
    }

    .main_premium_head{
        justify-content: center;
    }
}

@media(max-width:638px){
    .announcement, .discount_sale{
        font-size: 16px;
    }

    .announcement_other_text{
        font-size: 18px;
    }
    .annuncement_btn{
        font-size: 10px;
    }

    .announcement_image{
        display: none;
    }
}

@media(max-width:542px){
    .bold_text{
        font-size: 16px;
    }
    .announcement, .discount_sale{
        font-size: 14px;
    }

    .announcement_other_text{
        font-size: 16px;
    }
    .annuncement_btn{
        font-size: 8px;
    }
}

@media(max-width:450px){
    .announcement, .discount_sale{
        font-size: 12px;
    }

    .announcement_other_text, .bold_text{
        font-size: 14px;
    }
}

@media(max-width:407px){
    .announcement, .discount_sale{
        font-size: 10px;
    }

    .announcement_other_text, .bold_text{
        font-size: 12px;
    }
}
.edit_profile{
    flex-shrink: 0;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 45px;
    border: 0.963px solid #D9D9D9;
    gap: 5px;
    color: #718096;
    cursor: pointer;
}

.user_name_reset{
    padding: 10px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
}

.first_last_name{
    padding-top: 20px;
    justify-content: flex-start;
    gap: 50%;
}

.name_style{
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
}
.name_text{
    color: #718096;
}

.user_name_text{
    color: #000;
}

.email_details{
    justify-content: flex-start;
    gap: 36%;
}
.profile_details{
    gap:40px;
}
.membership{
    color: #718096;
    font-family: Red Hat Display;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.user_plans{
    gap:10px;
}

.user_plan_details{
    width: 100%;
    gap:60px;
}
.user_plan_card{
    width: 40%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #C9D6DD;
    background: #FFF;
    gap:10px;
}

.plan_name{
    flex-wrap: wrap;
    justify-content: space-between;
}

.font_black_16px{
    color: #000;
    font-family: Red Hat Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.days_left{
    font-size: 14px;
    font-weight: 500;
}

.expiry_date{
    color: #FF5C5C;
    font-family: Red Hat Display;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.font_black_17px{
    color: #000;
    font-family: Red Hat Display;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.font_black_14px{
    color: #000;
    font-family: Red Hat Display;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.plan_text{
    padding-bottom: 10px;
    border-bottom: 1px solid #C9D6DD;
}

.plan_button_style{
    background: linear-gradient(180deg, #44BBFE 0%, #1E78FE 100%);
    color: #FFF;
}

.upgrade_plan_style{
    border-radius: 5px;
    background: linear-gradient(180deg, #033E92 0%, #012354 100%);
    box-shadow: 0px 4px 12px 0px rgba(32, 124, 254, 0.20);
    color: #FFF;
}

.plan_button{
 
    font-size: 14px;
    width: 40%;
    padding: 10px;
    gap: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
   ;
}

.explore_button{
    background: linear-gradient(180deg, #FFF 0%, #E6EEF3 100%);
    color: #000;
    border: 0.963px solid #C9D6DD;
    font-weight: 500;
}

.logout{
    width:20% ;
    border-radius: 5px;
    border: 1px solid #C9D6DD;
    color: #FF5C5C;
    font-weight: 500;
    font-size: 16px;
    justify-content: center;
}

.user_password_settings{
    gap:20px;
    width: 90%;
    padding: 0px 30px 0px 30px;
    margin-top: 35px;
    margin-bottom: 35px;
    border-left: 1px solid #C9D6DD;
}

.pass_text{
    padding-bottom: 40px;
    border-bottom: 1px solid #C9D6DD;;
}

.password_box{
    width: 100%;
    gap: 10em;
}

@media only screen and (max-width:769px){
    .password_box{
        flex-direction: column;
        gap: 10px;
    }
    .password_button {
        justify-content: flex-start !important;
}
}
.password_field_name{
    width: 20%;
}
.password_field{
    width: 60%;
    border-radius: 5px;
    border: 1px solid #C9D6DD;
    padding: 15px;
}

.change_password{
    gap: 3em;
}

.password_text{
    color: #718096;
    font-family: Red Hat Display;
    font-size: 12px;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
}
.new_password_box{
    width: 63%;
    gap:5px;
}
.new_password_field{
    border-radius: 5px;
    border: 1px solid #C9D6DD;
    padding: 15px;
}

.password_button{
    width: 100%;
    justify-content: flex-end;
    gap:10px;
}

.cancel_button{
    padding: 10px 45px;
    border-radius: 5px;
    border: 1px solid #C9D6DD;
    background: var(--rgb-255255255, #FFF);
    color: #000;
    font-family: Red Hat Display;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
}

.update_password{
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #C9D6DD;
    background: linear-gradient(180deg, #44BBFE 0%, #1E78FE 100%);
    color: #FFF;
    font-family: Red Hat Display;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
}

.user_subscription{
    gap: 15px;
    width: 90%;
    padding: 0px 5px 0px 30px;
    margin-top: 35px;
    margin-bottom: 35px;
    border-left: 1px solid #C9D6DD;
}

.upgrade_to_premium_btn{
    width: 30%;
    height: 45px;
    flex-shrink: 0;
    border-radius: 5px;
    background: linear-gradient(180deg, #44BBFE 0%, #1E78FE 100%);
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #FFF;
    font-weight: 500;
}

.plag_text_sub{
    color: #000;
    font-weight: 500;
    font-size: 18px;
}

.subscription_text{
    width: 90%;
    font-weight: 400;
    color: #000;
    font-size: 18px;
    line-height: 30px;
}

.user_plan_sheet{
    gap: 20px;
}

.plan_button_style_2{
    border-radius: 5px;
    border: 1px solid #000;
    color: #000;
    font-weight: 500;
}


.user_plan_detail{
    gap:25px;
    width: 90%;
    padding: 0px 30px 0px 30px;
    margin-top: 35px;
    margin-bottom: 35px;
    border-left: 1px solid #C9D6DD;
}

.user_premium_button{
    color: #F39C18;
    font-weight: 500;
    padding: 7px;
    width: 11%;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    background: #FFF5DF;
}


.or_login{
    cursor: pointer;
}
.membership_detail{
    width: 100%;
    align-items: center;
}

.left_heading{
    width: 40%;
}

.right_heading{
    width: 40%;
    margin-left: 23px;
}


.color718096{
    color: #718096;
}

.change_plan_button{
    width: 20%;
    padding: 10px;
    color: #FFF;
    justify-content: center;
    border-radius: 5px;
    background: linear-gradient(180deg, #44BBFE 0%, #1E78FE 100%);
}

.cancel_plan_button{
    width: 20%;
    padding: 10px;
    justify-content: center;
    color: #FF5C5C;
    border-radius: 5px;
    border: 1px solid #C9D6DD;
}

.user_button{
    border-radius: 5px;
    background: linear-gradient(180deg, #60707F 0%, #313D49 100%);
    width: 30px;
    height: 30px;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.user_button_mobile{
    border-radius: 5px;
    background: linear-gradient(180deg, #60707F 0%, #313D49 100%);
    width: 40px;
    height: 40px;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.page_header_buttons{
    text-decoration: none;
    color: #313D49;
}

@media only screen and (max-width: 769px){
    .main_page{
        flex-direction: column;
    }

    .account_content{
        flex-direction: row;
        flex-wrap: wrap;
        border-bottom: 1px solid #C9D6DD;
        align-items: center;
        justify-content: space-evenly;
        margin-left:30px;
        margin-right: 30px;
    }
    .account_sidebar{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
    }
    .account_sidebar img{
        width: 20px;
        height: 20px;
        
    }

    .first_last_name, .email_details{
        flex-direction: column;
        gap: 20px;
    }
    .user_plan_details{
        flex-direction: column;
    }
    .user_plan_card{
        width: 80%;
    }
    .plan_button_style, .explore_button, .plan_button_style_2{
        width: 95%;
        justify-content: center;
        align-items: center;
    }

    .logout{
        width: 80%;
    }
    
    .profile_head{
        width: 90%;
    }
    .change_plan_button{
        width: 85%;
    }
    .cancel_plan_button{
        width: 85%;
    }

}

@media only screen and (max-width: 1038px) and (min-width: 769px){
    .first_last_name, .email_details{
        flex-direction: column;
        gap: 20px;
    }
    .plan_button_style, .explore_button, .plan_button_style_2{
        width: 90%;
        justify-content: center;
        align-items: center;
    }
    .change_plan_button{
        width: 95%;
    }
    .cancel_plan_button{
        width: 95%;
    }

}
/* Account Page CSS End */

/* Pricing Plan CSS */
.pricing_page{
    max-width: 90%;
    margin: auto;
    gap: 5rem;
}

.price_container{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.page_head{
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.money_back_image{
    padding: 10px;
    width: 95px;
    height: 95px;
    /* filter: drop-shadow(0px 7px 8px #FFF); */
}
.check_style{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.pricing_page .page_head h2{
    color: #313D49 !important;
    margin-top: 20px;
}

.price_sub_head{
    color: #718096;
    font-size: 16px;
}

.price_plans_container{
    background: #FFF;
    border-radius: 20px;
}
.plan_card{
    background: #FFF;
    margin: 45px 0px 45px 30px;
    gap: 20px;
    border-right: 0.5px solid #C9D6DD;
    flex-grow: 1;
    padding-right: 10px;
    width: 28%;
}
.plan_head{
    gap: 8px;
}
.plan_font{
    color: #000;
    font-family: Red Hat Display;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.plan_font_gray{
    color: #718096;
    font-family: Red Hat Display;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.plan_font_gray_16{
    color: #718096;
    font-family: Red Hat Display;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    padding: 5px;
}

.plan_head_font{
    color: #313D49;
    font-family: Red Hat Display;
    font-size: 55px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.plan_bottom_head{
    gap: 3px;
}
.body_plan_detail{
    gap: 10px;
    align-items: center;
}
.plan_body{
    gap: 15px;
}

.plan_button_css{
    border-radius: 5px;
    border: 1px solid #C9D6DD;
    background: linear-gradient(180deg, #FFF 0%, #E6EEF3 100%);
    align-items: center;
    width: 90%;
    text-align: center;
}

.plan_button_font{
    color: #313D49;
    font-family: Red Hat Display;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 10px;
}

.plan_card_special{
    flex-grow: 1;
    margin: -55px 0px 45px 0px;
    padding: 42px 30px 20px 30px;
    gap: 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #44BBFE 0%, #1E78FE 100%);
    width: 28%;
}

.plan_special_image{
    align-items: center;
    justify-content: space-between;
    
}
.plan_special_head{
    gap: 10px;
}

.plan_special_head_text{
    border-radius: 41px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.49) 100%);
    backdrop-filter: blur(9px);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.10);
    color: #FFF;
    font-size: 12px;
    text-align: center;
    padding: 3px 10px 3px;
}

.faq_answer_list ul li{
    font-size: 16px;
}

.plan_special_font{
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
}

.plan_special_font_white{
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
}
.plan_head_specail_font{
    color: #FFF;
    font-size: 60px;
    font-weight: 700;
}

.plan_head_spacial_font_small{
    color: #FFF;
    font-size: 30px;
    font-weight: 500;
    text-decoration-line: strikethrough;
}
.plan_head_font_small{
    font-size: 30px;
    font-weight: 500;
    text-decoration-line: strikethrough;
}
.plan_special_price{
    justify-content: start;
    align-items: baseline;
    gap: 10px;
}

.plan_font_special_white{
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.body_plan_special_detail{
    gap: 5px;
    align-items: center;
}

.plan_special_hook{
    justify-content: flex-end;
    align-items: end;
}
.white_hole{
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background-color: #FFFFFF;
    border-radius: 10px;
    position: absolute;
}

.pricing_page_center{
    gap: 15px;
}

.pricing_center_buttons{
    width: 100%;
    gap: 32px;
    
}
@media(max-width:995px){
    .pricing_center_buttons{
        flex-wrap: wrap;
    }
}

.price_btn{
    border-radius: 15px;
    border: 1px solid #C9D6DD;
    padding: 25px;
    gap: 10px;
    width: 27%;
}

.price_btn_checked{
    background: linear-gradient(180deg, #FFF 0%, #E6EEF3 100%);
}

.logo_img{
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    padding: 10px;
    border-radius: 15px;
    background: #FFF;

}
.tag_text{
    gap: 5px;
}

.tag_text_head{
    color: #313D49;
    font-size: 20px;
    font-weight: 700;
}

.tag_text_sub{
    color: #718096;
    font-weight: 400;
    font-size: 18px;
}

.para_text{
    color: #718096;
}
.pricing_questions{
    gap: 10%;
    width: 100%;
    flex-wrap: wrap;
}

.question_left_side{
    width: 40%;
    gap: 20px;
}

.question_right{
    width: 50%;
    gap: 20px;
}

.faq_question{
    border-radius: 20px;
    background: #FFF;
    padding: 30px;
    gap: 15px;
}

.question_text{
    color: #313D49;
    font-weight: 700;
}

.question_text_sub{
    color: #000;
    font-size: 18px;
    font-weight: 400;
}
.blue_check{
    color: #3291FF;
    font-weight: 500;
    font-size: 18px;
}

.question_answer{
    justify-content: space-between;
    cursor: pointer;
}





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

    .question_left_side{
        width: 100%;
    }
    
}

@media only screen and (max-width: 990px){
    .plan_card_special {
        width: 76%;
        margin: 0;
    }
    .plan_card{
        width: 75%;
        border-radius: 20px;
        border-right: 0.5px #C9D6DD;
        margin: 0;
        padding: 35px;
    }
    .price_plans_container{
        flex-direction: column;
        gap: 20px;
        align-items: center;
        background-color: transparent;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width:1060px){
    .pricing_questions{
        flex-direction: column;
        gap: 20px;
    }
    .question_right{
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

    .faq_question, .price_btn{
        width: 40%;
    }
}

@media only screen and (max-width:865px){
    .faq_question{
        width: 100%;
    }
    .price_btn{
        width: 70%;
    }
}

@media only screen and (max-width:480px){
    .plan_card{
        width: 80%;
    }
    .plan_card_special{
        width: 82%;
    }
    .price_btn{
        width: 100%;
    }
   
}
/* Pricing Plan CSS */

/* Account Settins Bar */

.account_settings {
    width: 85%;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
    position:absolute;
    margin-top: 60px;
    z-index: 2
}

.account_bar{
    padding: 15px;
    border-radius: 10px;
    background: var(--rgb-255255255, #FFF);
    box-shadow: 0px 4.21875px 50px 0px rgba(0, 0, 0, 0.10);
    
}

.account_settings_head{
    gap:12px;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #C9D6DD;
    padding-bottom: 15px;
}
.account_settings_head_mobile{
    gap:12px;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    
}

.user_name{
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.user_name_mobile{
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    width: 120px;
    max-width: 120px;
    overflow-wrap: break-word;
}

.user_email_mobile{
    color: #9AB1BD;
    font-size: 14px;
    width: 120px;
    max-width: 120px;
    overflow-wrap: break-word;
}

.user_email{
    color: #718096;
    font-size: 12px;
}

.account_email{
    justify-content: start;
    align-items: start;
}

.account_settings_options{
    margin-top: 10px;
    color: #000;
    font-weight: 500;
}

.account_options{
    color: #000;
    text-decoration: none;
    cursor: pointer;
    padding: 10px;
}

.account_options:hover{
    color: #3291FF;
    border-radius: 5px;
    background: #E9F0FF;
}
/* End Account Settings Bar */

.sub_active_class{
    gap: 15px;
    flex-wrap: wrap;
}
.sub_active_body{
    gap: 15px;
}
.sub_selected{
    color:#718096;
    font-weight: 500;
    font-size: 18px;
}
.sub_card{
    border-radius: 10px;
    border: 1px solid #C9D6DD;
    background: #FFF;
    width: 40%;
    padding: 20px;
    gap: 15px;
    
}
.plan_details{
    gap:13px;
    flex-wrap: wrap;
}


@media only screen and (max-width:676px){
    .sub_card{
        width: 75%;
    }
    .sub_upgrade_button{
        width: 90%;
    }
}

@media only screen and (max-width:330px){
    .sub_card{
        width: 80%;
    }
    .sub_upgrade_button{
        width: 90% !important;
    }
}
.plan_title{
    font-weight: 500;
    font-size: 20px;
   
}
.sub_active_aclass{
    border-radius: 47px;
    border: 0.5px solid #A5F1BE;
    background: #F4FFF8;
    align-items: center;
    gap: 5px;
    padding: 0px 10px;
}
.active_text{
    color: #313D49;
    font-weight: 500;
}
.sub_plan_duration{
    color: #000;
    font-family: Red Hat Display;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.card_head_detail{
    justify-content: space-between;
    flex-wrap: wrap;
}

.plan_active_detail{
    gap: 10px;
    flex-wrap: wrap;
}

.sub_card_bottom{
    font-weight: 400;
    font-size: 16px;
    border-bottom: 1px solid #C9D6DD;
    padding-bottom: 13px;
}

.sub_upgrade_button{
    text-decoration: none;
    border-radius: 5px;
    background: linear-gradient(180deg, #44BBFE 0%, #1E78FE 100%);
    gap: 10px;
    color: #FFF;
    font-weight: 500;
    width: 50%;
    padding:10px;
    align-items: center;
    justify-content: center;
}


.sub_after_text{
    width: 90%;
    gap: 15px;
    border-bottom: 1px solid #C9D6DD;
    padding-bottom: 30px;
}

.auto_renewal_sub{
    color: #000;
    font-size: 20px;
    font-weight: 700;
}

.auto_text{
    color: #718096;
    font-size: 18px;
    font-weight: 500;
}

.active_sign{
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.sub_advance{
    font-size: 22px;
    font-weight: 700;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

.sub_cancel{
    text-decoration: none;
    align-items: center;
    justify-content: center;
    background: #FFF;
    font-size: 15px;
    cursor: pointer;
}

.faq_answer_display{
    color: #718096;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
}

.premiem_heading{
    color: #313D49;
    font-size: 20px;
    font-weight: 700;
}

.premium_mode_card{
    width: 90%;
    border-radius: 15px;
    background: #FFF;
    padding: 30px 20px 40px;
    gap: 20px;
}

.premium_modes_class{
    gap: 10px;
}

.premium_head_text{
    gap: 5px;
    align-items: center;
}

.premium_mode_detail{
    width: 40%;
    gap: 5px;
}

.premium_head_text_detail{
    color: #718096;
    font-weight: 400;
    font-size: 18px;
}

.premium_mode_orignal{
    border-radius: 15px;
    background: #F9FAFB;
    padding: 20px 30px 20px 20px;
    gap:5px;
    justify-content: start;
    
}

.premium_text_orignal{
    color: #313D49;
    font-weight: 500;
}
.premium_blue{
    color: #3291FF;
}

@media (max-width:768px){
    .premium_mode_card{
        flex-direction: column;
    }

    .premium_mode_detail{
        width: 100%;
    }
}

.prmium_mode_container{
    gap: 10px;
}

.premium_dot{
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background-color:#C9D6DD;
}


.remove_tab_password{
    justify-content: end;
    padding: 10px;
    cursor: pointer;
}

.forget_password_content{
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.forget_password_image{
    width: 85px;
    height: 85px;
    border-radius: 100%;
    background: linear-gradient(180deg, #1E78FE -15.38%, #44BBFE 100%);
    box-shadow: 0px -5.95px 11.9px 0px rgba(255, 255, 255, 0.45) inset, 0px 0.85px 16.15px 0px rgba(0, 0, 0, 0.05) inset;
}

.forget_password_text{
    color: #718096;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.password_form_data{
    justify-content: flex-start;
    line-height: 26.46px;
    font-weight: 500;
}

.password_form{
    justify-content: start;
}

.forget_password_email{
    font-weight: 500;
}

.forget_password_email_form{
    width: 100%;
    height: auto;
}
.forgot_email_class{
    width: 90%;
}
.forget_password_submit{
    border-radius: 10px;
    background: linear-gradient(180deg, #44BBFE 0%, #1E78FE 100%);
    cursor: pointer;
    padding: 14px;
    border: 2px solid white;
    color: #FFF;
    margin-top: 10px;
}

.back_login{
    color: #718096;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 40px;
    cursor: pointer;
}

.message_alert{
    display: flex;
    flex-direction: row;
    width: 80%;
    z-index: 999;
    position: fixed;
    justify-content: end;
}

.message_div{
    display: flex;
    flex-direction: row;
    border-radius: 5px;
    border: 0.2px solid #FFF;
    background: #FFF;
    box-shadow: 0px 0px 30px 0px rgba(205, 198, 219, 0.30);

    padding: 0px 10px 0px;
    align-items: center;
    gap: 5px;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.active_mode, .premium_dot:hover {
    background-color: #3291FF;
  }
.arrow_image{
    cursor: pointer;
}

.popup-btn-upgrade{
    border-radius: 10px;
    background: linear-gradient(180deg, #44BBFE 0%, #1E78FE 100%);
    color: #FFF;
    font-weight: 400;
    font-size:20px;
    display: flex;
    padding: 10px 20px 10px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-bottom: 10px;
    gap: 5px;
}

.faq_answer_list{
    padding-left: 30px;
}

.plan_expire_time{
    justify-content: space-between;
    align-items: center;
}

.expiry_container{
    border-radius: 47px;
    padding: 6px;
    font-weight: 500;
    font-size: 12px;
    color: #f0505c;
}

.tick_image_class{
    background-color: #EAF3FB;
    border-radius: 50%;
    padding: 2px 6px;
}

.download_checker{
    border-radius: 4px;
    box-shadow: 1px 2px 3px #0000007d;
    border: 1.125px solid #C9D6DD;
    background: linear-gradient(180deg, #FFF 0%, #F2F7FA 100%);
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 15px;
    height: 15px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

.loader_class{
    justify-content: center;
    align-items: center;
}
#back_login{
    width: 80%;
}

.error_text{
    font-size: 12px;
    color: #FF5C5C;
}

.side_tooltip{
    position: fixed;
    z-index:2;
    color: #FFF;
    font-size: 12px;
    background-color: var(--dark-color);
    border-radius: 5px;
    padding: 7px;
    margin-left: 4.5em;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.tooltip_remover{
    margin-top: 6.6em;
    display: none;
}

.tooltip_checher{
    margin-top: 11.5em;
    display: none;
}

.tooltip_paraphrase{
    margin-top: 16.3em;
    display: none;
}

.tooltip_article{
    margin-top: 21em;
    display: none;
}

.tooltip_grammer{
    margin-top: 25.8em;
    display: none;
}

.tooltip_summarizer{
    margin-top: 30.5em;
    display: none;
}

.tooltip_citation{
    margin-top: 35.3em;
    display: none;
}


.tooltip_ai_detector{
    margin-top: 40.2em;
    display: none;
}
.tooltip_ai_remover{
    margin-top: 44.8em;
    display: none;
}

.tooltip_account{
    margin-top:50.9em;
    display: none;
}

.remove_text{
    border-radius: 5px;
    border: 1.125px solid #C9D6DD;
    background: linear-gradient(180deg, #FFF 0%, #F2F7FA 100%);
    padding: 5px;
    cursor: pointer;
}

.text_tooltip{
    position: absolute;
    z-index: 2;
    /* width: 15em; */
    justify-content: center;
    padding: 10px;
    margin-top: 50px;
    margin-left: -25px;
    text-align: center;
    border-radius: 10px;
    background-color: #FFF;
    filter: drop-shadow(0px 22.38807487487793px 31.98296356201172px rgba(0, 0, 0, 0.10));
}


@media (max-width:941px){
    #shorten_tooltip{
        margin-left: -90px !important;
    }
}
@media (max-width:589px){
    #shorten_tooltip{
        margin-left: 120px !important;
    }
}
@media (max-width:448px){
    #shorten_tooltip{
        margin-left: -30px !important;
    }
    #formal_tooltip{
        margin-left: 0px !important;
    }
}

@media(max-width:366px){
    #ai_tooltip{
        margin-left: 48px;
    }
    #word_tooltip{
        margin-left: -10px !important;
    }
    #shorten_tooltip{
        margin-left: 52px !important;
    }
    #formal_tooltip{
        margin-left: -79px !important;
    }
}

@media (max-width:328px){
    #ai_tooltip{
        margin-left: 35px !important;
    }
    #word_tooltip{
        margin-left: 35px !important;
    }
    
}

.one_time_access{
    border-radius: 5px;
    background: linear-gradient(180deg, #FF9F0F 0%, #FFBC0F 100%);
    box-shadow: 0px -2px 5px 0px rgba(255, 255, 255, 0.80) inset;
    color: #FFF;
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    padding: 5px 10px;
    gap: 6px;
    justify-content: center;
    align-items: center;
    
}

.premium_image_box{
    border-radius: 5px;
    border: 1px solid #FFF;
    background: linear-gradient(39deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.29) 162.14%);
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.13);
    padding: 2px;
}

#againRootShadow{
    display: flex;
    gap: 5px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

@media(max-width:768px){
    #fc_frame {
        position: fixed !important;
        bottom: 50px !important;
        right: 15px !important;
    }

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

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


/* Ai Content Detector style */

.output_header{
    gap: 10px;
    align-items: center;
}
.output_head_text{
    font-size: 20px;
    font-weight: 700;
}
.output_detail_text{
    font-size: 16px;
    font-weight: 400;
}

@media(max-width: 1068px){
    .sample_btns{
        display: none;
    }
    #selected_text{
        display: flex !important;
        padding: 0.5rem 1.2rem;
        margin: 0.5rem 0;
        border-radius: 20px;
        width: 110px;
        border: 1px solid #C9D6DD;
    }

}

.arrow_class{
    width: 12px;
    height: 12px;
}

.options_class{
    margin-left: 117px;
    position: absolute;
    margin-top: 250px;
    border-radius: 10px;
    border: 1px solid #C9D6DD;
    background: linear-gradient(180deg, #FFF 36.46%, #EAF2F6 100%);
}

.mobile_sample_option {
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFF 36.46%, #EAF2F6 100%) !important;
}

.mobile_sample_option.clicked {
    background: linear-gradient(180deg, #FFF 28.13%, #D0E5F1 100%) !important;
}
.grammar-in{
    max-width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}
.grammar-in img{
    max-width: 80%;
}

@media(max-width: 940px){
    .options_class{
        margin-left: 0px;
        margin-right: 39%;
    }
}

@media(max-width: 840px){
    .options_class{
        margin-right: 32%;
    }
}

@media(max-width: 768px){
    .options_class{
        margin-right: 45%;
    }
}

@media(max-width: 640px){
    .options_class{
        margin-right: 38%;
    }
}

@media(max-width: 640px){
    .options_class{
        margin-right: 30%;
    }
}

@media(max-width: 480px){
    .options_class{
        margin-right: 16%;
    }
}

@media(max-width: 394px){
    .options_class{
        margin-right: 0%;
    }
}

@media(max-width: 330px){
    .options_class{
        margin-right: -15%;
    }
}
#ac-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.6);
    z-index: 2001;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width:640px){
    #ac-wrapper a img {
    width: 90%;
}
}