:root {
    --color-hover-dard-blue: #045cd8;
    --color-blue: #0065ef;
    --color-white: #ffffff;
    --color-light-blue: #f5f9ff;
    --color-gray-text: #7d8188;
    --color-dark: #2a3241;
    --color-black: #000000;
    --color-light-gray: #fbfcfe;
    --color-border-gray: #e3e3e3;
    --bg-color-gray: #f6f9fd;
    --placeolder-color: #9fa3aa;
    --font-size-h1: 36px;
    --font-size-h2: 30px;
    --font-size-h3: 24px;
    --font-size-h4: 21px;
    --font-size-mobile-h1: 32px;
    --font-size-mobile-h2: 26px;
    --font-size-mobile-h3: 22px;
    --font-size-mobile-h4: 18px;
    --font-size-default: 18px;
    --font-size-small: 16px;
    --font-size-xsmall: 14px;
    --border-radius-default: 16px;
    --border-radius-8px: 8px;
    --box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1), 0 1px 26px 0 rgba(0, 0, 0, 0.1);
    --default-padding: 10px;
    --default-margin: 10px;
    --margin-auto: auto;
    --background-color-light-blue: #f6f9fd;
}

* {
    outline: unset;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Lato", sans-serif;
    color: var(--color-dark);
    font-size: var(--font-size-small);
}

/* Use this overlay globaly */
.overlayLoading {
    display: none;
    background-color: #0065ef1f;
    position: absolute;
    width: 100%;
    z-index: 1;
    top: 50%;
    left: 50%;
    border-radius: var(--border-radius-default);
    height: 100%;
    text-align: center;
    backdrop-filter: blur(1px);
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.overlayLoading-logo {
    width: 50px;
    height: 50px;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body {
    background-color: var(--background-color-light-blue);
}

/*Dynamic Custom Modal for all page*/
/* The Modal (background) */
.custom__modal {
    display: none;
    position: fixed;
    z-index: 3;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

#closeButton {
    right: 15px;
    top: 10px;
}

/* Modal Content */
.custom__modal__content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    max-width: 340px;
    border-radius: var(--border-radius-default);
}

.ignore-button.custom__modal__close {
    color: #2a3241;
    float: right;
    font-size: 16px !important;
    border: 1px solid #e7eaef !important;
    font-weight: 500 !important;
    line-height: 24px;
    background: #fcfcfe !important;
    padding: 8px;
    max-height: 40px;
}

.custom__modal__close:hover,
.custom__modal__close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.ignore-button.custom__modal__close:hover {
    text-decoration: none;
    cursor: pointer;
    background: #f8f8fa !important;
}

img.image-modal {
    width: 160px;
    margin: auto;
}

span.heading-modal {
    font-size: 18px;
    font-weight: 700;
}

p.description-modal {
    font-size: 16px;
    text-align: center;
}

.custom-modal-bottons-tool {
    margin-left: auto;
    margin-right: auto;
    gap: 0px !important;
    justify-content: space-between;
}

.custom-modal-bottons {
    width: 278px;
    margin-left: auto;
    margin-right: auto;
    gap: 0px !important;
    justify-content: space-between;
}

.custom__modal__content.d-flex.flex-column {
    gap: 6px;
}

/*END Dynamic modal*/

a {
    text-decoration: none;
}

.absolute {
    position: absolute;
}

.border-none {
    border: none;
}

.bg-danger {
    background: #ff5555 !important;
}

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

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

.text-white {
    color: var(--color-white) !important;
}

.text-black {
    color: #0b0b0b;
    gap: 8px;
    display: flex;
}

.button-border {
    border-bottom: 1px solid var(--color-gray-text);
}

.cursor-pointer {
    cursor: pointer;
}

.custom_select {
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius-8px);
    background-color: var(--background-color-light-blue);
    color: var(--color-dark);
    cursor: pointer;
}

.custom_select:focus {
    outline: none;
}

.button {
    padding: 10px;
    background: var(--color-white);
    border-radius: var(--border-radius-8px);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    min-width: 135px;
    border: 1px solid var(--color-gray-text);
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.blue-button {
    background: var(--color-blue) !important;
    border: none;
    color: var(--color-white) !important;
}

.border-radius-8px {
    border-radius: var(--border-radius-8px);
}

.bottom-padding {
    padding-bottom: 10px;
}

img {
    max-width: 100%;
}

section {
    padding: 20px 30px;
    background: var(--color-white);
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.mobile_view {
    display: none;
}

.text-danger {
    color: red;
}

.text-success {
    color: green;
}

.wrapper {
    margin-top: 20px;
}

/* Flex classes */
.d-flex {
    display: flex;
}

.gap-10 {
    gap: 10px;
}

.gap-12 {
    gap: 12px;
}

.gap-20 {
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

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

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

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

.flex-wrap {
    flex-wrap: wrap;
}

.d-flex-center-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-row {
    flex-direction: row !important;
}

.d-inline-flex {
    display: inline-flex;
}

/* End Flex classes*/

.errorPopup {
    padding: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-black);
}

.qtip-content {
    padding: 0;
}

#errorType {
    margin-bottom: 10px;
}

.error {
    color: red;
}

.success {
    color: green;
}

.default-radius {
    border-radius: var(--border-radius-default);
}

.d-block {
    display: block;
}

.d-none {
    display: none;
}

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

.d-grid {
    display: grid;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.border-shadow {
    box-shadow: var(--box-shadow);
}

.btn {
    padding: 8px 16px;
    border-radius: var(--border-radius-8px);
    font-size: var(--font-size-small);
    line-height: 24px;
    background: transparent;
    cursor: pointer;
}

.custom-btn {
    padding: 7px 10px;
    border-radius: var(--border-radius-8px);
    font-size: var(--font-size-small);
    background: var(--color-white);
    color: var(--color-gray-text);
    border: 1px solid var(--color-border-gray);
    cursor: pointer;
    min-width: 82px;
}

.btn.lg {
    padding: 8px 16px;
    font-size: var(--font-size-default);
}

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

.bg-primary {
    background-color: var(--color-blue);
    color: var(--color-white) !important;
}

.btn.dark-border {
    background-color: var(--color-white);
    color: black;
    border: 2px solid black;
}

.label {
    padding: 5px 10px;
    border-radius: var(--border-radius-8px);
    font-size: var(--font-size-xsmall);
}

.label.blue {
    background: var(--color-light-blue);
}

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

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

.container {
    width: 1280px;
    margin: 0 auto;
    max-width: 100%;
}

p,
ul,
li,
a {
    font-size: var(--font-size-default);
    line-height: 1.5;
    margin: 10px 0;
}

ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    color: #000;
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
    margin: 20px 0 10px;
}

h3 {
    font-size: var(--font-size-h3);
    margin: 20px 0 10px;
}

.navbar {
    justify-content: space-between;
    padding: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.inner-nav ul {
    display: flex;
    column-gap: 20px;
}

.inner-nav li {
    list-style: none;
}

.navbar a.nav-link {
    font-size: var(--font-size-default);
}

.right-nav {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.navbar a.nav-link:hover {
    color: var(--color-blue);
}

/********** START Custom Modal for other tools */
.other-tools {
    position: relative;
}

/* CSS code for styling a modal element */
.modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    max-width: 572px;
    padding: 1.3rem;
    position: absolute;
    z-index: 999;
    background-color: var(--color-white);
    border: 1px solid #ddd;
    border-radius: var(--border-radius-default);
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: min(583px, 90vw);
}

.modal input {
    padding: 0.7rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-8px);
    font-size: 0.9em;
}

.modal p {
    font-size: 0.9rem;
    color: #777;
    margin: 0.4rem 0 0.2rem;
}

.btn-close {
    right: 0;
    cursor: pointer;
    border: none;
    background: none;
}

.hidden {
    display: none;
}

.closeMenuLayer {
    padding: 50px;
    width: 100%;
    top: 80px;
}

/********** END Custom Modal */

/*Other Tools Modal inside css*/
.all-other-tools-section {
    flex-wrap: wrap;
    flex-grow: 1;
}

.all-other-tools-section a:hover {
    transition: 0.2s;
    border-radius: var(--border-radius-8px);
    background: var(--background-color-light-blue);
}

.single-other-tool-box {
    align-items: center;
    gap: 10px;
    width: min(253px, 90vw);
    padding: 5px;
}

.tools-icon {
    border-radius: var(--border-radius-8px);
    border: 1px solid var(--color-border-gray);
    padding: 10px;
}

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

.heading {
    margin: 30px 0 10px 0;
}

.heading-des,
.heading-des p {
    text-align: center;
    font-size: var(--font-size-default);
    width: 100%;
    margin: 10px auto;
}

.heading-des,
.heading-des p span {
    font-size: var(--font-size-default);
}

.faqhead-des {
    line-height: 1.5;
}

.header_text {
    margin-bottom: 40px;
    line-height: 45px;
}

.logo-text span {
    font-size: 16px;
    font-weight: 900;
    line-height: 16px;
}

.input textarea {
    font-size: var(--font-size-default);
    color: var(--color-dark);
}

.input .tabs {
    min-width: 172px;
    background-color: var(--color-blue);
    align-items: flex-end;
    border-top-left-radius: var(--border-radius-default);
    border-bottom-left-radius: var(--border-radius-default);
    padding: 20px 0 0px;
    display: flex;
    flex-direction: column;
}

.input .tabs .tab-ul {
    width: 96%;
}

.premium-taj {
    margin-left: auto;
}

.input .tabs .tab-li {
    list-style: none;
    padding: 8px 16px 8px 12px;
    border-radius: 30px 0 0 30px;
    margin-bottom: 8px;
    cursor: pointer;
    user-select: none;
    display: flex;
    column-gap: 8px;
    color: var(--color-white);
    font-size: 15px;
    align-items: center;
    font-weight: 600;
}

.input .tabs .tab-li:hover {
    background-color: var(--color-hover-dard-blue);
}

.input .tabs .tab-li.active {
    background-color: var(--color-white);
    color: var(--color-dark);
}

/*change svg color on changing the modes */
.input .tabs .tab-li.active svg path {
    fill: var(--color-hover-dard-blue);
}

.input .tabs .tab-li.active .stroke-color path {
    stroke: var(--color-hover-dard-blue);
    fill: none;
}

.input .tabs .tab-li span {
    color: var(--color-white);
}

.input .tabs .tab-li.active span {
    color: var(--color-dark);
}

.input .box {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: var(--color-white);
}

.tabs .tool_tab {
    width: 160px;
    cursor: pointer;
    padding: 8px 0;
    margin: 12px 0;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    color: var(--color-white);
    background-color: var(--color-blue);
}

.input_output_container {
    flex-direction: row;
    gap: 8px;
}

.input {
    width: 59%;
}

.text-wrapper .title {
    position: absolute;
    top: 0;
    margin: auto;
    width: 100%;
}

.input-wrapper {
    margin: 10px 10px 0px 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--color-light-gray);
    border: 2px #8080802e;
    border-style: dashed;
    border-radius: 10px;
}

.input-wrapper #ab {
    width: 100%;
    height: 350px;
    padding: 12px 32px 32px 12px;
    font-size: var(--font-size-default);
    border-radius: var(--border-radius-8px);
    resize: none;
    border: none;
    /*padding-bottom: 34px;*/
    background: transparent;
    border-bottom: 36px solid var(--color-light-gray);
}

.word-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: var(--font-size-xsmall);
    color: var(--color-gray-text);
}

.tool-footer {
    display: flex;
    padding: 12px 0px;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    margin: 0px 10px;
}

.foot__body {
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
}

.icon-set {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rate_heading {
    font-size: 14px;
    color: var(--color-gray-text);
}

#star_rating {
    gap: 4px;
}

.feedback_main .star {
    width: 20px;
    height: 20px;
    display: block;
    position: relative;
    cursor: pointer;
    transition: all 0.1s ease-in;
}

.feedback_main .star:hover {
    filter: brightness(0) saturate(240%) invert(50%) sepia(100%) saturate(600%) hue-rotate(13deg) brightness(118%) contrast(105%);
}

.rate_container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feedBack_modal {
    background-color: rgba(0, 0, 0, 0.315);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    display: flex;
    justify-content: center;
    padding-top: 100px;
}

.feedback {
    padding: 32px;
    background-color: var(--color-white);
    box-shadow: 5px 5px 10px #00000031;
    width: 450px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 16px;
}

.feedback_heading {
    font-size: 22px;
    text-align: left;
}

.feedback_subheading {
    font-size: 16px;
    text-align: left;
    margin: 0;
}

#feedback_message {
    width: 100%;
    height: 152px;
    background-color: #f6f9fd;
    border-radius: 10px;
    resize: none;
    padding: 12px 16px;
    border-color: #d6d6d6;
}

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

.feedback_btn {
    flex: 1;
    padding: 10px 16px;
    background-color: #e7eaef;
    border: none;
    border-radius: 8px;
    color: black;
    cursor: pointer;
}

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

.feedback_submit_btn:disabled {
    background-color: #b9bdc4;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.icon-set .icon {
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    cursor: pointer;
}

.icon-set .icon img {
    width: 25px;
}

.advance-phrasebtn-output {
    padding: 6px 16px;
    font-size: var(--font-size-default);
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 03px;
    transition: 0.3s ease;
    margin: 0px !important;
}

.advance-phrasebtn-output:hover {
    background-color: #EAF3FF;
    ;
}

.simple-box textarea,
.simple-box {
    background-color: #fbfcfe;
}

.color-not-premium {
    color: #b3b3b3 !important;
}

.tabs button.active {
    background-color: var(--color-white);
    color: var(--color-black);
}

.boxs {
    display: none;
}

.box .active {
    display: block;
}

.box-button {
    height: auto;
    margin-top: 35px;
    background-color: var(--color-white);
}

.action-btns-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.feedback-and-action-btns-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.summarizer_action_btns {
    padding: 5px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.btn-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.paraphrase_btn {
    padding: 8px 20px;
    background-color: var(--color-blue);
    color: var(--color-white);
}

.inputs {
    width: 85%;
    bottom: 25px;
    padding: 8px 10px;
    margin-left: 25px;
    position: absolute;
    background-color: transparent;
}

.lang_tool {
    width: auto;
    border: 1px solid #e7eaef;
    border-radius: 8px;
    cursor: pointer;
}

.menu--main {
    display: flex;
    position: relative;
    text-align: center;
    gap: 5px;
    border-radius: 8px;
    padding: 8px;
    max-height: 42px;
}

.menu--main:hover {
    background: #EAF3FF;
}

.sub-menu li:hover {
    background: #EAF3FF !important;
}

.lang-tag {
    display: none;
    background-color: var(--color-white);
    font-weight: 600;
    border-radius: var(--border-radius-8px);
    margin: auto;
    font-size: 12px;
    padding-right: 5px;
    text-align: center;
    color: var(--color-blue);
}

.menu--main li {
    list-style: none;
    cursor: pointer;
    color: #000000;
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

.lang-item-main .lang-text {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.sub-menu::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    scroll-padding-top: 10%;
}

::-webkit-scrollbar-track {
    border-radius: var(--border-radius-8px);
}

::-webkit-scrollbar-thumb {
    background: #cbe0fe;
    border-radius: var(--border-radius-8px);
    cursor: default;
}

.lang-item-main img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.menu--main.open .sub-menu {
    max-height: 100px;
    width: 100%;
    visibility: visible;
    overflow-y: auto;
    bottom: 110%;
    z-index: 2;
    border-radius: var(--border-radius-8px);
    left: 0;
    transition: all 0.4s linear;
    background-color: var(--color-white);
}

.sub-menu {
    display: block;
    visibility: hidden;
    position: absolute;
    box-shadow: none;
    max-height: 0;
    width: 85%;
    right: 15px;
    overflow: hidden;
    scroll-margin: 50px 0 0 50px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.226);
}

.sub-menu li {
    text-align: left;
    display: block;
    cursor: pointer;
    font-size: 13px;
    padding: 5px 12px;
    color: #000;
    font-weight: 500;
    line-height: 25px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-menu a:hover li {
    color: var(--color-blue);
    background-color: #EAF3FF;
}

.dropdown-menu div {
    padding: 8px 0;
}

.dropdown-menu div:hover {
    color: var(--color-blue);
}

.dropdown .dropdown-menu {
    right: 0;
    left: 0;
    top: -180px;
    padding: 8px;
    display: none;
    height: 150px;
    overflow-y: scroll;
    overflow-x: hidden;
    color: var(--color-black);
    position: absolute;
    background-color: var(--color-white);
    border: solid 1px var(--color-border-gray);
}

.dropdown.show .dropdown-menu {
    display: block;
    z-index: 1;
}

.dropdown .icon {
    margin-top: -10px;
}

.output {
    width: 45%;
    padding: 10px 10px 0px 10px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-default);
}

.outputbox {
    display: flex;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background-color: var(--color-light-gray);
    border: 2px #8080802e;
    border-style: dashed;
    border-radius: 10px;
    overflow: hidden;
}

.output .tool-footer {
    display: flex;
    justify-content: end;
}

.outputbox::-webkit-scrollbar {
    display: none;
}

.output-btn {
    margin-top: 30px;
}

.output-btn div {
    margin-right: 15px;
    padding: 5px 15px;
}

section.tool {
    padding-top: 0;
    background-color: transparent;
}

.card-wrapper {
    margin: 50px 0;
}

.feature-card-wrapper {
    display: flex;
    column-gap: 30px;
}

.feature-card {
    width: 390px;
    height: auto;
    margin: 20px 0;
    padding-bottom: 20px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-light-blue);
    border-radius: var(--border-radius-default);
}

.feature-card .thumbnail {
    min-height: 250px;
}

.feature-card p {
    padding: 0 20px;
}

.howwork-wrapper {
    flex: 1 1;
}

.howwork-wrapper .list,
.howwork-wrapper .graphic {
    flex: 1;
}

.howwork-wrapper .graphic img {
    max-width: 85%;
    float: right;
}

.howwork-wrapper .list li,
.howuse-cont .list .in-list {
    list-style: none;
    padding-left: 46px;
    position: relative;
}

.howuse-cont .list {
    display: flex;
    flex-wrap: wrap;
}

.howwork-wrapper .list li::before {
    content: attr(data-number);
    background-image: url(../images/list-style.png);
    position: absolute;
    width: 30px;
    background-size: 25px;
    height: 31px;
    font-size: var(--font-size-h2);
    text-indent: 5px;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
    background-position: bottom right;
    display: flex;
    align-items: end;
}

.howuse-cont .list .in-list::before {
    content: attr(data-number);
    background-image: url(../images/list-style.png);
    position: relative;
    width: 75px;
    background-size: 33px;
    height: 34px;
    font-size: 20px;
    font-weight: 600;
    text-indent: 5px;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
    background-position: bottom right;
    display: flex;
    align-items: center;
}

.faq-user .list .in-list:before {
    position: relative;
    background-size: 99px;
    font-size: 20px;
    font-weight: 600;
    width: 85px;
    height: 85px;
    background-position: center;
}

.faq-user .list .in-list:first-child:before {
    background-image: url(../images/students-faq.svg);
}

.faq-user .list .in-list:nth-child(2):before {
    background-image: url(../images/teacher-faq.svg);
}

.faq-user .list .in-list:nth-child(3):before {
    background-image: url(../images/content-faq.svg);
}

.faq-user .list .in-list:nth-child(4):before {
    background-image: url(../images/seo-faq.svg);
}

.faq-user .list .in-list:nth-child(5):before {
    background-image: url(../images/blog-faq.svg);
}

.faq-user .list .in-list:nth-child(6):before {
    background-image: url(../images/digital-faq.svg);
}

.faq-user .list .in-list .half .use-ul .use-list {
    list-style-type: disc !important;
    margin-bottom: 3px;
    display: revert !important;
}

.faq .container {
    column-gap: 30px;
}

.graphic-col {
    flex: 2;
}

.questions-col {
    flex: 3;
}

.question-wrap {
    margin-top: 14px;
    margin-bottom: 14px;
}

.question {
    background-color: var(--color-light-blue);
    padding: 15px 10px;
    font-size: var(--font-size-h4);
    font-weight: 700;
    display: flex;
    column-gap: 10px;
    border-radius: var(--border-radius-default);
    cursor: pointer;
    position: relative;
    user-select: none;
}

.question span {
    align-self: center;
}

.question-wrap .answer p {
    margin: 0;
}

.question.active::before {
    transform: rotate(180deg);
}

.answer {
    background-color: var(--color-light-blue);
    padding: 10px;
}

.qtext {
    margin-bottom: 0;
}

.questionbox .active {
    height: auto;
}

.questionbox .active .open {
    display: none;
}

.questionbox .active .close {
    display: block;
}

footer {
    background-color: var(--color-white);
    padding: 60px 20px 0px 20px;
}

.ftcontent {
    width: 40%;
}

.ftcontent p {
    margin-top: 20px;
}

.information,
.Modes {
    width: 15%;
}

.information h3,
.Modes h3,
.follow h3 {
    margin-bottom: 20px;
}

.information div,
.Modes div {
    margin: 30px 0;
    color: var(--color-gray-text);
}

.information div {
    margin: 10px 0;
}

.follow {
    width: 20%;
}

.follow img {
    padding: 0px !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.copyright {
    padding: 20px 0;
    color: var(--color-gray-text);
    font-size: var(--font-size-small);
    background-color: var(--bg-color-gray);
    border-top: 1px solid var(--color-gray-text);
}

.contcat {
    padding-bottom: 40px;
}

.contcat h2 {
    margin: 0;
    padding-top: 50px;
}

.intouch {
    width: 46%;
    height: 100%;
    padding: 20px 40px;
    background-color: var(--color-white);
}

.tochimg {
    width: 70%;
    margin-top: 20px;
}

.contcat-from {
    width: 50%;
    height: 100%;
    background-color: var(--color-white);
    padding: 30px;
}

.input1 {
    width: 100%;
}

.firstname,
.lastname {
    width: 45%;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 8px 40px 8px 10px;
    font-size: 16px;
    border-radius: 5px;
    background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 32px;
    cursor: pointer;
}

input,
select,
.message textarea {
    border: none;
    resize: none;
    padding: 0 8px;
    height: 55px;
    margin-bottom: 30px;
    margin-top: 10px;
    background-color: #f0f4f8;
    width: 100%;
}

.message textarea {
    height: 145px;
    padding: 10px 16px;
}

.contcat-from button {
    border: 0;
    padding: 8px 50px;
    color: var(--color-white);
    background-color: var(--color-blue);
}

.inner-contact {
    display: flex;
    align-items: center;
    height: 650px;
}

.blog-latest-sec {
    display: flex;
    column-gap: 30px;
}

.blog-carosel-wrapper {
    display: flex;
    background: var(--color-white);
    border-radius: var(--border-radius-default);
    flex: 8;
    padding: 10px;
    box-shadow: 0 0 20px rgba(164, 203, 255, 0.25);
}

.carousel-item {
    display: flex;
    height: 100%;
    column-gap: 20px;
}

.img-sec {
    flex: 3;
    display: flex;
}

.img-sec img {
    object-fit: contain;
}

.info-sec {
    flex: 4;
    padding: 20px;
}

.info-sec .title {
    font-size: var(--font-size-h4);
    font-weight: 700;
    margin: 20px 0;
    display: block;
    line-height: 1.5;
}

.info-sec .title:hover {
    color: var(--color-blue);
}

.info-sec p {
    color: var(--color-gray-text);
    font-size: var(--font-size-small);
    margin-bottom: 30px;
}

.info-sec .blog-date {
    color: var(--color-gray-text);
    font-size: var(--font-size-xsmall);
}

.blog-box {
    width: 100%;
    background-color: var(--color-white);
    border-radius: var(--border-radius-default);
    padding: 16px;
    display: block;
    box-shadow: 4px 8px 24px rgba(164, 203, 255, 0.25);
}

.blog-box .graphic {
    width: 100%;
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
}

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

.blog-box .blog-date {
    color: var(--color-gray-text);
    font-size: var(--font-size-xsmall);
}

.blog-box .label {
    color: var(--color-blue);
}

.blog-box .title {
    font-size: var(--font-size-default);
    display: block;
    margin: 25px 0 15px 0;
    font-weight: 700;
    justify-content: left !important;
}

.blog-box .title:hover {
    color: var(--color-blue);
}

.all-blogs .container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 300px);
    justify-content: space-between;
}

.all-blogs .blog-box {
    flex: 1;
}

.single-blog-head .container {
    width: 600px;
}

.single-blog-content ul li {
    list-style: inside;
    line-height: 1.5;
}

.single-blog-head h1 {
    margin: 40px 0 10px;
}

.read-time {
    font-size: var(--font-size-xsmall);
    color: var(--color-gray-text);
}

.single-blog-head p {
    color: var(--color-gray-text);
}

.single-blog-content .container {
    width: 700px;
}

.single-blog-content .container img {
    height: auto;
}

.single-blog-content .container a {
    color: var(--color-blue);
    font-size: 18px;
}

.single-blog-content .container a:hover {
    transform: scale(1.1);
    color: #339fff;
    text-decoration: underline;
}

.social-icon {
    column-gap: 10px;
    justify-content: center;
    margin: 20px 0;
    align-items: center;
}

.question.active .faq-arrow-img {
    rotate: 180deg;
}

.faq-arrow-img {
    width: 16px;
    margin-left: auto;
    rotate: 0deg;
}

.topnav .logo .icon {
    display: none;
}

.overlay {
    display: none;
    background-color: #0065ef1f;
    position: absolute;
    width: 100%;
    z-index: 5;
    margin: auto;
    border-radius: var(--border-radius-8px);
    height: 100%;
    text-align: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.overlay img {
    width: 40px;
    height: 40px;
    margin: auto;
}

.forgetPasswordOverlay {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-logo {
    width: 50px;
    height: 50px;
    margin: auto;
}

#authorize_button {
    display: none;
}

#gdrive-file-label {
    cursor: pointer;
    margin-bottom: 0;
}

#gdrive-file {
    display: none;
}

#signout_button {
    display: none;
}

#dropbox-container {
    display: none;
}

.onedrive-launcher {
    display: none;
}

section.contcat .d-flex {
    justify-content: space-between;
}

footer .information h3,
footer .follow h3 {
    margin-top: 0;
}

footer .container {
    justify-content: space-between;
}

.tooltip-reset .tooltiptext-reset,
.tooltip-copy .tooltiptext-copy,
.tooltip-reset .tooltiptext-reset,
.tooltip-download .tooltiptext-download,
.tooltip-dropbox .tooltiptext-dropbox,
.tooltip-gdrive .tooltiptext-gdrive,
.tooltip-onedrive .tooltiptext-onedrive {
    visibility: hidden;
    width: fit-content;
    background-color: var(--color-blue);
    color: var(--color-white);
    text-align: center;
    border-radius: var(--border-radius-8px);
    padding: 5px;
    font-size: 12px;
    position: absolute;
    z-index: 11111;
    margin-bottom: 60px;
    margin-left: 20px;
    white-space: nowrap;
}

.tooltip-upload .tooltiptext-upload {
    visibility: hidden;
    width: 150px;
    background-color: var(--color-blue);
    color: var(--color-white);
    text-align: center;
    border-radius: var(--border-radius-8px);
    padding: 5px 0;
    font-size: 12px;
    position: absolute;
    z-index: 11111;
    margin-bottom: 100px;
    margin-left: 100px;
}

.tooltip-reset:hover .tooltiptext-reset,
.tooltip-copy:hover .tooltiptext-copy,
.tooltip-download:hover .tooltiptext-download,
.tooltip-dropbox:hover .tooltiptext-dropbox,
.tooltip-gdrive:hover .tooltiptext-gdrive,
.tooltip-onedrive:hover .tooltiptext-onedrive,
.tooltip-upload:hover .tooltiptext-upload {
    visibility: visible;
}

/* Tooltip code */
.tool__tip {
    position: relative;
    display: inline-block;
}

img.lock-icon {
    margin-left: auto;
}

.tool__tip .tool__tiptext {
    visibility: hidden;
    width: 120px;
    background-color: var(--color-white);
    color: var(--color-black);
    text-align: center;
    border-radius: var(--border-radius-8px);
    padding: 0;
    position: absolute;
    z-index: 10;
    left: 102%;
    opacity: 0;
    transition: opacity 0.3s;
    height: 160px;
    min-width: 261px;
}

.tool__tip .tool__tiptext::before {
    content: "";
    position: absolute;
    top: 44%;
    padding: 7px;
    left: -7px;
    background: var(--color-white);
    box-shadow: var(--box-shadow) !important;
    transform: rotate(45deg);
}

.tool__tip:hover .tool__tiptext {
    visibility: visible;
    opacity: 1;
}

.tooltip_header {
    background: var(--background-color-light-blue);
    padding: 13px;
    border-radius: var(--border-radius-8px) var(--border-radius-8px) 0 0;
}

.tooltip_header>span {
    color: var(--color-black) !important;
    font-size: 18px;
    font-weight: bold;
}

span.upgrade-button.tooltip_upgrade {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.tooltip_body {
    padding: 10px;
    font-size: 14px;
    text-align: left;
    color: var(--color-gray-text) !important;
}

/* End Tooltip css*/

.upld-toltip {
    visibility: hidden;
}

.upld-toltip:hover .tooltiptext-upload {
    visibility: visible;
}

.blogs-row {
    column-gap: unset;
    gap: 1.5rem;
    justify-content: space-around;
}

.blog-card {
    flex-basis: 30%;
    box-shadow: #abcefd 0 7px 29px 0;
    border-radius: 35px;
    height: 400px;
    transition: transform 1s;
}

.blog-card:hover {
    box-shadow: #9197a0 0 11px 29px 0;
    transform: scale(1.1);
}

.blog-card-container {
    margin-top: 1em;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    row-gap: 1.2em;
}

.blog-card-container .metades {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #868080;
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.blog-img-wrapper {
    display: flex;
    justify-content: center;
    padding: 1em;
    background-color: var(--color-light-blue);
    background-size: cover;
    background-position: center center;
    position: relative;
    transition: all ease 1s;
    height: 40%;
}

.blog-img-wrapper img {
    z-index: 9;
}

.blog-card .title {
    color: #000;
    line-height: 25px;
}

.blog-card .title:hover {
    color: var(--color-blue);
}

.blog-card .read_more {
    color: var(--bg-color-gray);
    display: flex;
    column-gap: 1em;
}

.blog-card .read_more img {
    width: 14px;
}

.blogs .title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blogs .morebtn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
}

.blogs .morebtn .btn {
    border-radius: 100px;
    box-shadow: var(--color-blue) 0 1px 16px 0;
    font-size: 18px;
    padding: 14px;
    transition: transform 1s;
    border: 1px solid var(--color-blue);
    color: var(--color-blue);
    background-color: #dae9ff;
}

.blogs .morebtn .btn:hover {
    transform: scale(1.1);
    background-color: var(--color-blue);
    color: var(--color-white);
    border: none;
}

.copied-pop {
    display: none;
}

.output .icon-set {
    display: none;
}

.howuse-cont {
    margin-top: 4%;
    font-size: var(--font-size-default);
}

.howuse-cont .list .u-list {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-flow: row wrap;
    row-gap: 0;
    padding-right: 10px;
}

.howuse-cont .list .u-list .in-list {
    display: flex;
    column-gap: 1em;
    margin: 10px 0px;
}

.faq-user .list .u-list .in-list {
    column-gap: unset;
    flex: 50%;
    max-width: 635px;
}

.lastOption {
    max-width: 50%;
}

.howuse-cont .list .u-list .in-list .half {
    width: 79%;
    display: flex;
    flex-flow: column wrap;
    row-gap: 2em;
}

.faq-user .list .u-list .in-list .half {
    row-gap: 0px;
}

.howuse-cont .list .u-list .in-list .half div {
    font-size: var(--font-size-default);
}

.howuse-cont .list .u-list .in-list .half span {
    line-height: 1.5;
    margin-top: 3%;
    font-size: var(--font-size-default);
    min-width: 20px;
}

.howuse-cont .list .u-list .in-list .half .step-1 {
    background-color: #f0f8ff;
    height: auto;
    width: 82%;
    line-height: 1.5;
    padding: 14px;
    border: 3px dashed #dadada;
    border-radius: var(--border-radius-default);
    font-size: var(--font-size-xsmall);
}

.use-ul {
    list-style-position: inside;
    padding-right: 10px;
}

.howuse-cont .list .in-list .half .use-ul .use-list {
    list-style-type: none;
    margin-bottom: 3px;
    display: flex;
    column-gap: 8px;
}

.faq-user .list .in-list .half .use-ul .use-list {
    line-height: 1.5;
}

.faq-user .list .in-list .half .use-ul .use-list::marker {
    color: var(--color-blue);
}

.arr-box img {
    width: 50%;
    margin-left: 5%;
}

.faq a,
.howwork-sec a,
.feature-sec a,
.howuse-sec a {
    color: var(--color-blue);
    cursor: pointer;
    font-size: 18px;
}

.howwork-sec {
    overflow-x: hidden !important;
}

.faq a:hover,
.howwork-sec a:hover,
.feature-sec a:hover,
.howuse-sec a:hover {
    text-decoration: underline;
    transform: scale(1.1);
    color: #339fff;
}

.about-sec .container a {
    color: var(--color-blue);
    cursor: pointer;
}

.about-sec .container a:hover {
    text-decoration: underline;
}

.text-changer {
    width: 96%;
    position: absolute;
    bottom: 1px;
    height: 34px;
    outline: unset;
    left: 9px;
    background-color: var(--color-light-gray);
}

.text-changer-output {
    width: 99%;
    position: absolute;
    bottom: 0;
    height: 34px;
    outline: unset;
    left: 3px;
    z-index: 2;
    background-color: transparent;
}

.scroll-div {
    overflow-y: scroll;
    height: 350px;
}

#output_text {
    width: 100%;
    overflow-y: scroll;
    position: relative;
    height: 350px;
    padding: 10px 10px 34px 10px;
    font-size: var(--font-size-default);
    border-bottom: 36px solid var(--color-light-gray);
    margin-bottom: 1px;
}

.upload-btn-tool {
    display: none;
}

.language-selector {
    bottom: 6px;
    position: absolute;
    z-index: 111;
    left: 8px;
}

.language-selector-tool {
    bottom: 6px;
    position: absolute;
    z-index: 1;
    right: 70px;
    display: none;
}

.menu--main-tool {
    display: block;
    position: absolute;
    bottom: 0;
}

.menu--main-tool li {
    display: inline-block;
    cursor: pointer;
    padding: 0 2px 4px 8px;
    text-align: left;
    transition: all 0.2s;
    border: 1px solid #d2d2d2;
    left: 0;
    color: var(--color-gray-text);
    font-size: var(--font-size-small);
    width: 58px;
}

.sub-menu-tool {
    display: block;
    visibility: hidden;
    position: absolute;
    left: 0;
    box-shadow: none;
    max-height: 0;
    width: 150px;
    overflow: hidden;
}

.sub-menu-tool li {
    display: block;
    cursor: pointer;
    font-size: 13px;
    border-bottom: 1px solid #d3d3d3;
    color: #000;
    font-weight: 500;
    line-height: 25px;
    width: 58px;
    background-color: var(--color-light-blue);
}

.sub-menu-tool li a {
    padding: 4px 33px 8px 0;
}

.menu--main-tool::after {
    content: "<>";
    cursor: pointer;
    font: 17px consolas, monospace;
    color: var(--color-gray-text);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 2px;
    top: 1px;
    padding: 0 0 2px;
    border-bottom: 1px solid #999;
    position: absolute;
    pointer-events: none;
}

.menu--main-tool.open .sub-menu-tool {
    max-height: 300px;
    visibility: visible;
    bottom: 100%;
    transition: all 0.4s linear;
}

.sub-menu-tool li:hover {
    background-color: #ddebff;
    color: var(--color-white);
}

.about-sec a {
    color: var(--color-blue);
    font-size: 18px;
}

.about-sec a:hover {
    transform: scale(1.1);
    color: #339fff;
    text-decoration: underline;
}

.custom_page ol,
.custom_page ul {
    list-style-position: inside;
    padding-left: 20px;
}

.privacy-policy a {
    color: var(--color-blue);
    font-size: 18px;
}

.privacy-policy a:hover {
    transform: scale(1.1);
    color: #339fff;
    text-decoration: underline;
}

.terms-condition a {
    color: var(--color-blue);
    font-size: 18px;
}

.terms-condition a:hover {
    transform: scale(1.1);
    color: #339fff;
    text-decoration: underline;
}

.tooltip_main {
    position: absolute;
    width: 90%;
    min-height: 50px;
    max-height: 200px;
    padding: 10px;
    height: auto;
    overflow: auto;
    z-index: 6000;
    box-shadow: 0 5px 30px -10px #999;
    background: var(--color-white);
}

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

#list-syn li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#list-syn li span:hover {
    cursor: pointer;
    background-color: #cbe0fe;
}

.line {
    width: 100%;
}

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

.p-dropdown {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2A3241;
    margin: 0;
}

.custom-dropdown {
    background: #F6F9FD !important;
    border-radius: 8px;
    justify-content: space-between;
    border: 1px solid #E7EAEF;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.custom-dropdown p {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.custom-dropdown-menu {
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 32px 0px #A4CBFF52;
    z-index: 1;
}

.custom-dropdown-menu p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    padding: 5px 10px;
    margin: 0;
    border-radius: 8px;
}

.custom-dropdown-menu p.active,
.custom-dropdown-menu p:hover {
    cursor: pointer;
    background-color: #F6F9FD;
}

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

/* =========== Feedback on contact page===============*/

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

.login_modal-content {
    width: 40%;
}

.account_modal-content {
    width: 50%;
}

.popup_modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: var(--border-radius-8px);
}

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

.popup_model button {
    margin-top: 40px;
    border: none;
    width: 36%;
    transition: 300ms all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup_model button:hover {
    transform: scale(1.1);
    box-shadow: 0 1px 9px 0 #808080de;
}

/* =========== End Feedback on contact page===============*/

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

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

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

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

/*========= Front table design ============*/
div.table-home {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.faq-box,
td {
    border: 1px solid #ddd;
    text-align: left;
    padding: 15px;
}

.faq-box {
    border-collapse: collapse;
    width: 550px;
    border-style: hidden;
    background: var(--color-white);
    border-radius: var(--border-radius-default);
    box-shadow: 0 0 20px 2px #deebff;
    margin-top: -20px;
    max-width: 540px;
}

td {
    padding: 20px;
}

.back-table {
    margin-top: 40px;
    background-image: url(../images/back-table.svg);
    background-repeat: no-repeat;
    background-size: contain;
    align-items: center;

    background-position: top;
    display: flex;
    justify-content: center;
    height: 400px;
}

table tr td:first-child {
    width: 200px;
}

.sub-heading-table {
    width: 60%;
    margin: 13px auto;
}

section.table {
    padding-top: 60px;
}

.tool-sample-upload-btn {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    cursor: pointer;
    gap: 12px;
}

.main-tool-btn {
    min-width: 252px;
}

.sample_box_btn {
    border: 1px solid #286fff;
    border-radius: var(--border-radius-8px);
    padding: 8px;
    font-size: 16px;
    min-width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
}

.footer_action_section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.footer_section_box_btn {
    border: 1px solid #e7eaef;
    border-radius: var(--border-radius-8px);
    padding: 8px 16px;
    font-size: 16px;
    line-height: 24px;
    min-width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.delete-icon {
    padding: 5px;
    position: absolute;
    right: 6px;
    top: 4px;
    cursor: pointer
}

.hover-btn:hover {
    background-color: #EAF3FF;
    border-radius: 8px;
}

.sample-btn:hover {

    background-color: #EAF3FF;
}

.sample_box_btn img {
    width: 20px;
    height: 20px;
}

.upload_sample_text {
    font-size: var(--font-size-small);
    font-weight: 500;
    line-height: 20px;
    text-align: center;
}

/*====== SYNONYM CSS FOR WORD CHANGER ========*/
.words {
    color: var(--color-dark);
    font-size: var(--font-size-default);
    font-weight: bold;
    cursor: pointer;
}

.words .tooltip_main {
    font-weight: normal;
    font-size: 16px;
}

.qtiperar {
    color: black !important;
}

/*Login page*/
.login-box-right {
    padding: 44px;
    flex-direction: column;
    background: var(--color-white);
}

.are-you-sure {
    text-align: center;
}

.flex-item {
    flex: 1;
}

.login-box {
    margin: 42px auto;
    border-radius: var(--border-radius-default);
    max-width: 1066px;
    flex-wrap: wrap-reverse;
}

.login-box-left img {
    border-radius: 16px 0 0 16px;
    height: 100%;
    min-width: 300px;
}

.recaptcha {
    z-index: 100;
    left: 0;
    bottom: 59px;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.btn-box.disabled::after {
    cursor: not-allowed;
}

.form-control {
    border-radius: var(--border-radius-8px);
    margin-bottom: 13px;
}


.form-box {
    align-items: center;
}

.btn-login {
    cursor: pointer;
    background: #0c6af3;
    padding: 12px 20px;
    position: relative;
    border-radius: var(--border-radius-8px);
    margin: 23px 0;
    font-size: 20px;
    text-align: center !important;
    border: none;
    color: var(--color-white);
}

.btn-login button {
    background: #0c6af3;
    font-size: 20px;
    text-align: center !important;
    border: none;
    cursor: pointer;
    color: var(--color-white);
}

.btn-login:hover {
    border: 1px solid none;
    outline: 1px solid #4d91fa;
}

.login-box-form {
    display: flex;
    flex-direction: column;
}

.hr-text hr {
    flex: 1;
    border: none;
    height: 1px;
    background: #333;
}

.hr-text span {
    margin: 0 10px;
}

.display-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-with-google {
    color: #0b0b0b;
    background: none;
    border: 1px solid;
    justify-content: center;
}

.forget-password {
    right: 0;
    align-self: flex-end;
    text-decoration: underline;
}

.are-you-sure a {
    margin-left: 7px;
    color: #0c6af3;
    font-weight: bold;
}

.gray-button {
    background: #e7eaef;
    color: black;
    outline: 1px solid #aaaaaa;
    padding: 16px 20px;
    border-radius: var(--border-radius-8px);
    font-size: 20px;
    text-align: center !important;
}

.check-email-forget-password {
    display: none;
}

/* End Login page*/

/* Pricing Plan*/

.no-available>svg,
.no-available>span {
    opacity: 60%;
}

.premium-plan-box {
    display: flex;
    gap: 22px;
    background: none;
    padding: 10px;
    flex-wrap: wrap;
}

.premium-plan-item {
    flex: 1;
    padding: 20px;
    border-radius: var(--border-radius-default);
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 275px;
}

.premium-plan-item:hover {
    transition: 0.3s;
}

.popular-price-plan {
    background: #1e2e50;
}

.popular-text-white * {
    color: var(--color-white) !important;
}

.premium-plan-item:hover .upgrade {
    background: var(--color-blue);
    color: var(--color-white) !important;
}

.premium-plan-item:hover .upgrade svg path {
    fill: var(--color-white);
}

.radio-info p {
    font-size: 17px;
}

.price {
    font-size: 50px;
    font-weight: 800;
    margin-right: 7px;
}

hr.hr-pricing {
    margin-bottom: 10px;
}

.features-item {
    margin: 10px 0;
    font-size: 16px;
}

.features-item span {
    margin-left: 7px;
}

.upgrade {
    padding: 10px;
    background: var(--background-color-light-blue);
    border-radius: var(--border-radius-8px);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    min-width: 256px;
}

#changeUserPassword input {
    height: 48px;
    padding-right: 30px;
    margin-top: 12px;
}

.show-icon {
    position: absolute;
    right: 10px;
    top: 46px;
    cursor: pointer;
}

.rel-input {
    position: relative;
}

.right-arrow-pricing {
    right: 15px;
    bottom: 50%;
    transform: translateY(10px);
}

/* End Pricing plan*/

/* Create new account page*/
.premium-plan-box-1 {
    display: flex;
    background: none;
    flex-wrap: wrap;
    border-radius: var(--border-radius-8px);
    overflow: hidden;
    flex: 2;
}

.premium-plan-item-1 {
    flex: 1;
    padding: 20px;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.display-plan {
    background: var(--color-light-gray);
}

.create-premium-plan {
    gap: 20px;
}

.choose-plan-radio {
    float: left;
    margin: 3px 8px 0 0;
    height: 29px;
    width: 30px;
}

.radio-heading span {
    padding: 6px;
}

.popular {
    left: 50%;
    padding: 5px 10px;
    margin-left: 5px;
    background: #e4f3ff;
    color: var(--color-blue);
    border-radius: var(--border-radius-8px);
}

.radio-container {
    background-color: var(--color-white);
    border-radius: var(--border-radius-8px);
    padding: 24px;
    flex-direction: row;
    align-items: flex-start;
    max-width: 500px;
}

.radio-heading {
    font-size: 17px;
    font-weight: bold;
}

.active-plan-label {
    outline: 3px solid #89bbff;
    border-radius: var(--border-radius-8px);
}

.premium_plans:hover {
    outline: 3px solid #89bbff;
    border-radius: var(--border-radius-8px);
}

/*End Premium create account*/

/*Account Setting*/
.setting-svg.active * {
    stroke: black;
}

.account-right-menu {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    border-right: 1px solid var(--color-border-gray);
}



.label-account {
    min-width: 70px;
}

.user-details {
    display: none;
}

.user-details.active {
    display: block;
}

.account-right-menu div:hover {
    cursor: pointer;
}

.account-box.d-flex.flex-row {
    background: var(--color-white);
    min-height: 600px;
}

.account-settings.d-flex {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.account-settings {
    flex: 5;
}

.info-label {
    gap: 100px;
    padding: 12px 0;
}

.change-password-details {
    margin-top: 16px;
}

.upgrade-button {
    padding: 10px 25px;
    background: var(--color-blue);
    border-radius: var(--border-radius-8px);
    color: var(--color-white) !important;
    cursor: pointer;
}

.gray-button {
    background: #e7eaef;
    color: black;
    outline: 1px solid #aaaaaa;
}

.user-setting {
    border: 1px solid var(--color-border-gray);
    background: #fcfcfe;
    padding: 16px;
    margin-top: 12px;
}

.setting-heading h4 {
    padding: 4px 0;
}

.setting-heading {
    border-top: 1px solid var(--color-border-gray);
    border-bottom: 1px solid var(--color-border-gray);
}

.setting-heading,
.setting-other-details {
    padding: 24px;
}

.account-info {
    margin-bottom: 24px;
}

.user-details {
    height: 100%;
}

.account-setting * {
    color: var(--color-gray-text);
}

/* Plan Detail*/
progress.plans-bar {
    width: 100%;
}

.plan-card {
    max-width: 474px;
    width: 100%;
    padding: 24px;
    border: 1px solid var(--color-border-gray);
    border-radius: var(--border-radius-default);
    gap: 24px;
    flex-wrap: wrap;
}

/*Membership setting*/
.plan-box-modal {
    padding: 20px 10px;
    justify-content: center;
}

.plan-box-buttons {
    padding: 20px 10px;
    justify-content: space-around;
}

.membership-details {
    width: 100%;
    overflow-x: auto;
}

#membership-table {
    width: 100%;
}

#membership-table td,
th {
    border: none;
    text-align: left;
}

#membership-table th {
    padding: 20px;
    background: var(--bg-color-gray);
}

table#membership-table {
    border-collapse: collapse;
}

.single-blog-content {
    width: 100%;
    overflow-x: auto;
}

.single-blog-content,
table {
    width: 100% !important;
}

/*End account setting */

.premium_plans {
    width: 100%;
}

.plan-choose-radio {
    flex: 1;
    gap: 10px;
    padding: 5px;
}

.radio-details {
    width: 100%;
}

.show_alert_msg {
    background: #ff3131;
    color: white;
    font-size: 14px;
    font-weight: 400;
    padding: 8px;
    border-radius: 9px;
    display: none;
}

.show_success_msg {
    background: #338301;
    color: white;
    font-size: 14px;
    font-weight: 400;
    padding: 8px;
    border-radius: 9px;
    display: none;
}

/*************************************************************
***************************************Other Tools */

/* Text Summarizer tool */
.summary-length-tab * {
    color: var(--color-white);
}

.summary-heading {
    color: #c4c4c5;
}

.summary-length-box input {
    height: 19px;
    margin: 0;
}

.summary-length-box.tab-ul * {
    color: var(--color-white);
}

.summary-length-box.d-flex.flex-column {
    gap: 16px;
    margin: 10px 10px 10px 0;
}

.summary-label {
    padding: 15px;
    border-radius: var(--border-radius-8px);
    background: #1c77f3;
    border: 1px solid #1c77f3;
}

.summary-label.checked {
    border: 1px solid white;
}

.summary-label input {
    width: 19px;
    background-color: #1c77f3;
}

.summary-label:hover {
    background: var(--color-hover-dard-blue);
}

/* End summarizer text tool */

/* Grammer Checker Tool */
.issues {
    padding: 20px;
    max-width: 303px;
    position: relative;
}

.issues-results {
    padding: 6px 16px;
    background: var(--background-color-light-blue);
    margin: 10px 0px;
    border-radius: var(--border-radius-8px);
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

.red-circle {
    background: #ff5555;
}

.orange-circle {
    background: #ffb865;
}

.red-circle,
.orange-circle {
    padding: 5px;
    border-radius: 100%;
    width: 8px;
    height: 8px;
}

.count-errors {
    margin-left: auto;
    padding: 7px 16px;
    background: var(--color-white);
    border-radius: var(--border-radius-8px);
    font-weight: bold;
}

.color-red,
.grammer-error-count {
    color: #ff5555;
}

.grammer-warning-count {
    color: #ffb865;
}

.grammer-tool-btn {
    padding: 10px;
    border-radius: var(--border-radius-default);
    width: 120px;
    gap: 3px;
    cursor: pointer;
}

.grammerbtn {
    gap: 15px;
    margin-top: 10px;
}

.grammer-tool-btn {
    gap: 5px;
    border: none;
}

.org {
    margin-left: 20px;
}

.output-grammar-checker {
    padding: 15px;
    max-width: 975px;
}

/*grammer response css */
.deletion,
.grammar_mistake,
.redundant_mistake {
    color: #FA6767;
    cursor: pointer;
}

.spelling,
.spelling_mistake {
    color: #FF8B00;
    cursor: pointer;
}

.modified {
    color: #8148FF;
    cursor: pointer;
}


#strokeWord {
    text-decoration: line-through;
}

span.suggestionsWord {
    background: #d9e8ff !important;
    color: var(--color-blue) !important;
    border: 2px solid #89bbff;
    min-width: auto;
}

.main_span_tag span,
.main_span_tag {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
}

.output-grammar-checker .outputbox #output_text span {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

#output_text span.sw {
    font-size: 18px !important;
}

#list-syn span.sw,
.change,
#output_text span.sw .change {
    color: var(--color-blue);
}

.selected {
    text-decoration: underline;
}

.crossed-out {
    text-decoration: line-through;
}

.alert-popup {
    cursor: pointer;
    text-decoration: underline;
}

.highlighted {
    color: var(--color-black) !important;
}

div.suggestionsWord {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.set-icon-grammar {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.grammer-tool-btn span {
    font-size: 14px;
}

.grammar-captcha {
    bottom: 0;
}

/*END Grammer checker tool*/

/* ===== Essay Writter ========*/
.tool-menu {
    gap: 20px;
    padding: 15px;
    background: white;
    border-radius: var(--border-radius-default);
    min-width: 305px;
}

.text-box {
    outline: none;
    padding: 10px;
    resize: none;
    width: 100%;
    height: 100%;
    min-height: 72px;
    border-radius: var(--border-radius-8px);
    border: none;
    background-color: var(--background-color-light-blue);
}

.tool-menu span * {
    font-size: 16px;
}

.essay-tool-box {
    gap: 20px;
}

.outputBox {
    max-height: 684px !important;
    height: auto !important;
}

.tool-output-box {
    min-height: 418px;
    width: 100%;
    padding: 10px 13px;
}

.action_btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
    padding: 5px;
    gap: 10px;
}

/* .position-absolute-custom{
    position: absolute;
} */
.disclaimer {
    text-align: center;
    margin: 20px 0 0 auto;
    max-width: 955px;
    padding: 10px;
    background: #fcf8e3;
    border: 1px solid #faebcc;
    border-radius: var(--border-radius-default);
    font-size: var(--font-size-default);
}

.output-text-essay {
    background-color: var(--color-light-gray);
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-8px);
}

.essay_image {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.essay-icon-set {
    position: relative;
}

.clear-input {
    font-size: 14px;
}

img.essay-loader {
    margin-top: 150px;
}

/*=== End Essay tool*/

/* ----- Thesis Statement Generator */
.thesis-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 33px;
    gap: 50px;
}

.thesis-input-wrapper {
    width: 960px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0px 40px 99px 0px #a4cbff40;
    background-color: var(--color-white);
    overflow-y: hidden;
}

.thesis-output-wrapper {
    max-width: 960px;
    margin: 0 auto;
    display: none;
    border-radius: 15px;
    box-shadow: 0px 40px 99px 0px #a4cbff40;
    background-color: var(--color-white);
    padding: 24px;
}

.thesis-output {
    padding: 15px;
    line-height: 28px;
    height: 610px;
    overflow-y: auto;
}

.thesis-footer {
    padding-top: 15px;
}

.thesis-scroll {
    position: absolute;
    top: 50%;
    left: 12px;
    z-index: 999;
    transform: translate(0, -50%);
    cursor: pointer;
}

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

.thesis-input {
    padding: 15px;
    position: relative;
}

#thesis-captacha {
    position: absolute;
    top: 90%;
    left: 26%;
    transform: translate(-50%, -50%);
}

.recaptchaThesis {
    z-index: 100;
    transform: scale(0.9);
    left: 0;
    bottom: 0;
}

#thesisForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.thesis-input-footer {
    display: flex;
    justify-content: center;
}

.thesis-input-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.thesis-input-box label {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    text-align: left;
    color: var(--color-dark);
}

.thesis-input-box textarea {
    margin-bottom: 0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    text-align: left;
    color: var(--color-dark);
    background: var(--background-color-light-blue);
    padding: 10px;
    resize: none;
    outline: none;
    border: none;
    height: 100px;
}

.thesis-input-box input {
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    font-weight: 500;
    line-height: 19.2px;
    text-align: left;
    color: var(--color-dark);
    background: var(--background-color-light-blue);
    margin: 0;
    height: 100%;
    padding: 9px 10px;
}

.thesis-input-box input::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    color: var(--placeolder-color);
}

.thesis-flex-input {
    display: flex;
    align-items: center;
    gap: 16px;
}

.generateThesisStatement {
    max-width: 10%;
}

.thesis-generate-example {
    border: 1px solid var(--color-blue);
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21.6px;
    text-align: left;
    color: var(--color-blue);
}

.generate-thesis {
    background-color: var(--color-blue);
    color: var(--color-white);
    border-radius: 10px;
    border: 1px solid var(--color-blue);
    font-size: 14px;
    font-weight: 600;
    line-height: 21.6px;
    text-align: left;
    padding: 9px 12px;
}

.thesis-input-wrapper,
.thesis-output-wrapper {
    transition: width 0.5s ease;
    /* Adjust the duration and easing as needed */
}

.thesis-input-wrapper.hidden-thesis {
    width: 0%;
}

.thesis-input.thesis-input-hide {
    display: none;
    overflow-y: hidden;
}

.thesis-output-wrapper.expanded {
    width: 100%;
    height: 610px;
}

.thesis-output-points {
    padding-left: 5px;
}

.select-type {
    cursor: pointer;
}

.custom-dropdown {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border-radius: 8px;
    border: 1px solid #e4e7f1;
    background: var(--color-white);
}

.selected-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

.dropdown-arrow {
    display: flex;
    text-align: right;
    margin-right: 10px;
    rotate: 180deg;
    position: relative;
}

.dropdown-options {
    display: none;
    position: absolute;
    bottom: 118%;
    width: 100%;
    left: 0;
    z-index: 99;
    background-color: var(--color-white);
    box-shadow: 0px 4px 32px 0px #a4cbff52;
    padding: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 8px;
}

.dropdown-options.flex-visible {
    display: flex !important;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.dropdown-options li {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    color: #2a3241;
    display: flex;
    width: 50%;
    align-items: center;
    padding: 10px;
}

.dropdown-options li:hover {
    background-color: var(--background-color-light-blue);
    cursor: pointer;
}

.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* End Thesis Statement Generator */

/* Cover Letter Generator */
.cover-letter-output {
    margin-top: 50px;
}

.cover-letter-footer {
    margin-top: 20px;
}

.cover-letter-wrapper {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.cover-letter-input {
    padding: 15px;
    border-radius: var(--border-radius-default);
    background-color: var(--color-white);
    box-shadow: 0px 40px 99px 0px #a4cbff40;
}

.cover-letter-text-area label {
    margin-top: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: var(--color-dark);
}

.cover-letter-text-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cover-letter-text-area textarea {
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    font-size: var(--font-size-default);
    background-color: var(--color-light-blue);
    height: 122px;
    border-radius: 10px;
    padding: 12px;
    color: var(--color-dark);
}

.cover-letter-text-area textarea::placeholder {
    color: var(--color-gray-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
}

.cover-letter-input-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.cover-letter-button {
    margin-top: 14px;
    text-align: center;
}

.cover-letter-topic {
    width: 100%;
}

.cover-letter-topic label {
    margin-top: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: var(--color-dark);
}

.cover-letter-topic input {
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    font-size: var(--font-size-default);
    background-color: var(--color-light-blue);
    height: 40px;
    border-radius: 10px;
    padding: 12px;
    color: var(--color-dark);
    margin-bottom: 0;
}

.cover-letter-job-title {
    width: 100%;
}

.cover-letter-job-title label {
    margin-top: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: var(--color-dark);
}

.cover-letter-job-title input {
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    font-size: var(--font-size-default);
    background-color: var(--color-light-blue);
    height: 40px;
    border-radius: 10px;
    padding: 12px;
    color: var(--color-dark);
    margin-bottom: 0;
}

#cover-letter-captcha {
    position: absolute;
    top: 90%;
    left: 30%;
    transform: translate(0, -50%);
}

/* END Cover Letter Generator */

/*END Other Tools */

.output-wordcount {
    z-index: 1;
    bottom: 10px;
    right: 10px;
}

.word-count span {
    color: var(--color-gray-text);
}

.graphic-col img {
    max-height: 290px;
}

.mt-0 {
    margin-top: unset !important;
}

.other-tools-section {
    text-align: center;
}

.other-tools-title {
    font-size: var(--font-size-h2);
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.other-tools-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--color-dark);
}

.other-tools-grid {
    max-width: max-content;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    margin: auto;
}

.tool-item {
    max-width: 31git 0px;
    background-color: #f6f9fd;
    padding: 16px;
    border-radius: 16px;
    font-weight: 500;
    color: #2a3241;
    transition: background-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tool-item span {
    font-size: 18px;
    font-weight: 600;
}

.tool-item:hover {
    background-color: #dae9ff;
}

.tool-icon {
    padding: 8px;
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 8px;
}

.verify_email {
    background-color: var(--color-blue);
    padding: 8px 16px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    border: none;
    min-width: 62px;
    height: fit-content;
}

#name {
    display: flex;
    align-items: center;
}

#edit-name {
    cursor: pointer;
}

.email_verification_container {
    display: flex;
    position: relative;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
}

.email_send_msg {
    display: none;
    right: 5px;
    position: absolute;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    top: 38px;
}

.tooltip-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    cursor: default;
}

.email_image {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.verify_email_content span {
    font-size: 22px;
    font-weight: 700px;
    line-height: 30px;
    color: #2a3241;
}

.verify_email_content p {
    font-size: 18px;
    font-weight: 400px;
    line-height: 28px;
    color: var(--color-gray-text);
}

.tooltip-text {
    position: absolute;
    bottom: 24px;
    left: 36px;
    transform: translateX(-50%);
    background-color: #0f172a;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 20%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #0f172a transparent transparent transparent;
}

.phrasebtn {
    line-height: 24px;
}

.tooltip-wrapper:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.text-primary {
    color: #286fff;
}

.footer-delete-icon {
    padding: 0px;
}

.timer-label,
.timer-number,
.timer-wait-label {
    background: #0c6af3;
    font-size: 20px;
    text-align: center !important;
    border: none;
    cursor: pointer;
    color: var(--color-white);
}

.submenu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.submenu-btn>img {
    display: none;
}

#premium-modal {
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
}

.close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.premium-modal {
    padding: 16px;
    background-color: #FFFFFF;
    max-width: 600px;
    width: 100%;
    display: flex;
    gap: 24px;
    border-radius: 16px;
    height: fit-content;
    position: relative;
}

.premium-modal .plan-desc {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-color: #F6F9FD;
    border-radius: 12px;
    max-width: 240px;
    width: 100%;
    padding: 12px;
    position: relative;
}

.features-heading {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
}

.plan-desc ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-desc ul li span,
.plan-desc ul li {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    list-style: none;
    color: #000000;
}

.plan-desc>div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.show-feat {
    top: 16px;
    right: 12px;
    color: #0065ef;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.free-button {
    width: 100%;
    padding: 8px;
    color: #2A3241;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #E7EAEF;
    cursor: pointer;
    margin: 0;
    text-align: center;
}

.pricing-container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    gap: 24px;
}

.pricing-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-heading {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #7D8188;
}

.popup-plans {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e6e6e6;
    border-radius: 10px;
    padding: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.main-essay-option>div {
    width: 100% !important;
}

.tool-option>div {
    width: 100%
}

.plan-box input {
    margin: 0;
    margin-right: 8px;
    accent-color: #0a6cff;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.plan-box .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.plan-box input:checked+.content,
.plan-box:has(input:checked) {
    background: #eef5ff;
    border-color: #0a6cff;
    border-width: 2px;
}

.premium-error,
.footer-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

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

@media screen and (max-width: 1074px) {
    .mob-upload-btn {
        display: none;
    }
}

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

    .topnav .buttons .btn1,
    .topnav .buttons a {
        padding: 0 6px;
    }

    .topnav .buttons .btn2 {
        padding: 10px 14px;
    }

    .inputs {
        margin-left: 0;
    }

    .ftcontent p {
        width: auto;
    }
}

@media (min-width : 993px) {
    .mein-tool-foot {
        flex-wrap: wrap !important;
        gap: 8px;
    }
}

@media screen and (max-width: 992px) {
    body {
        background-position-y: 0;
    }

    .mob-upload-btn {
        display: block;
    }

    .phrasebtn {
        width: fit-content;
        margin: auto;
    }

    .heading-des,
    .heading-des p {
        width: auto;
        font-size: var(--font-size-default);
    }

    .heading-des p:nth-child(2) {
        display: none;
    }

    .input_output_container {
        flex-direction: column;
    }

    .output {
        width: 100%;
        margin-top: 5px;
    }

    .input .tabs .tab-li {
        flex: 33%;
        font-size: 10px;
        row-gap: 10px;
        flex-direction: column;
        padding: 6px;
        border-radius: var(--border-radius-8px);
        margin-bottom: 0;
        justify-content: space-between;
        text-align: center;
    }

    .input .tabs .tab-li img {
        width: 30%;
    }

    .input .tabs {
        width: 100%;
        padding: 10px;
        display: flex;
        border-radius: 16px 16px 0 0;
        flex-direction: column;
    }

    .language-selector-tool {
        display: block !important;
    }

    .word-count {
        left: 10px;
    }

    .input .box {
        width: 70%;
    }

    .icon-set {
        font-size: var(--font-size-xsmall);
    }

    .heading {
        font-size: var(--font-size-h1);
    }

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

    .feature-card-wrapper {
        display: block;
    }

    .howwork-wrapper {
        display: block;
    }

    section.faq div.container .d-flex {
        display: block;
    }

    section.faq h2 {
        text-align: center;
    }

    .feature-card {
        width: auto;
    }

    footer {
        padding: 20px 15px;
    }

    footer div.container {
        display: block;
        text-align: center;
    }

    .follow,
    .ftcontent {
        width: 100%;
    }

    .information {
        display: inline-table;
        width: 49%;
    }

    .Modes {
        display: inline-table;
        width: 49%;
    }

    .information h3,
    .Modes h3,
    .follow h3 {
        margin-bottom: 38px;
    }

    .input .box {
        width: 100%;
        border-radius: 0 0 16px 16px;
    }

    .input .box p {
        font-size: var(--font-size-xsmall);
    }

    .output p {
        font-size: var(--font-size-xsmall);
    }

    .output {
        display: none;
    }

    .inner-nav {
        background-color: var(--color-white);
        box-shadow: var(--box-shadow);
    }

    /*    Grammer chacker tool for mobile */
    .d-block-grammer {
        flex-wrap: wrap;
    }

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

    .graphic-col img {
        max-width: 420px;
    }

    footer .top-ftcontent {
        text-align: left;
    }

    footer .information,
    footer .information h3,
    footer .follow h3 {
        margin: unset;
    }

    footer .information div {
        margin: 10px auto;
    }

    .social-icon {
        gap: 5px;
    }

    .input {
        width: 100%;
    }

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

    .closeMenuLayer {
        display: none;
    }

    .input .tabs .tab-ul {
        display: none !important;
    }

    .modes__container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-direction: row;
    }

    span.tool-mobile-mode {
        padding: 10px;
        border-radius: 8px;
    }

    span.tool-mobile-mode:hover {
        background: #EAF3FF;
    }

    .modes__container>p {
        flex: 1;
        color: var(--color-white);
    }

    .modes__container .title {
        display: block;
        padding-left: 10px;
        width: 100%;
        height: 100%;
    }

    .modes__container .modes__list {
        flex: 2;
        padding: 8px 16px;
        background: var(--color-white);
        border-radius: var(--border-radius-default);
        position: relative;
    }

    .modes__container .modes__list .selected_mode {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        width: 100%;
    }

    .modes__container .modes__list .selected_mode img {
        width: 20px;
    }

    .modes__container .modes__list .modes {
        position: absolute;
        display: none;
        background: var(--color-white);
        padding: 10px 20px;
        border-radius: var(--border-radius-default);
        flex-direction: column;
        gap: 3px;
        z-index: 1;
        width: 100%;
        right: 0;
        top: 50px;
        transition: all 0.3s ease;
        max-height: 350px;
        overflow-y: auto;
    }

    .modes__container .modes__list .modes.show {
        display: flex;
        border: 1px solid var(--color-dark);
        border-radius: var(--border-radius-default);
    }

    .modes__container .modes__list .modes .mode {
        padding: 10px;
    }

    .modes__container .modes__list .modes .mode:hover {
        background-color: #abcefd;
    }

    .topnav .nav-a {
        display: none;
    }

    .topnav .logo .icon {
        float: right;
        display: block;
        color: #000;
    }

    .topnav.responsive {
        position: relative;
        display: block;
    }

    .topnav.responsive .icon {
        color: #000;
    }

    .topnav.responsive .nav-a {
        float: none;
        display: block;
        border: none;
        color: #000;
        text-align: center;
    }

    .topnav.responsive ul {
        display: inline-block;
        width: 100%;
    }

    .topnav.responsive .right-nav {
        display: block;
        background-color: #c1b3d394;
        width: 100%;
        margin-top: 39px;
    }

    .topnav.responsive .nav-a {
        margin-top: 35px;
        font-size: var(--font-size-default);
        font-weight: 700;
    }

    .topnav.responsive .right-nav a {
        margin-top: 0;
        padding: 10px 0;
        font-size: var(--font-size-default);
    }

    .topnav.responsive .right-nav .btn.primary {
        background-color: transparent;
    }

    .logo {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .input .tabs .tab-ul {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .input {
        flex-direction: column;
    }

    .inner-nav ul {
        column-gap: 0;
    }

    .blog-latest-sec {
        flex-direction: column;
        flex-wrap: wrap;
        row-gap: 1em;
    }

    .carousel-item {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .blog-box {
        width: 100%;
    }

    .all-blogs .container {
        display: flex;
        flex-direction: column;
    }

    img.image-modal {
        width: 50px;
        margin: auto;
    }

    .issues {
        max-width: 100%;
        width: 100%;
    }

    .premium-plan-box-1 {
        flex-direction: column;
    }

    .plan-choose-radio {
        justify-content: start;
    }

    .thesis-input-wrapper {
        width: 100%;
    }

    .thesis-flex-input {
        flex-direction: column;
    }

    .recaptchaThesis {
        left: 50%;
        bottom: 50px;
        transform: translateX(-50%);
    }

    .cover-letter-wrapper {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    h2 {
        margin: 10px 0 10px;
    }

    h3 {
        margin: 10px 0 10px;
    }

    .wrapper,
    .input1,
    .work-wrapper {
        display: block;
    }

    .radio-container {
        max-width: unset !important;
    }

    .create-premium-plan {
        flex-direction: column-reverse;
    }

    .input,
    select,
    .output,
    .header_text,
    .feature .feature_text,
    .firstname,
    .lastname,
    .work-wrapper .workboxs,
    .work-wrapper .workimg {
        width: 100%;
    }

    .tabs .tool_tab {
        width: 160px;
    }

    .header_text br {
        display: none;
    }

    .card-wrapper {
        justify-content: center;
    }

    .input .tabs .tab-ul {
        display: none !important;
    }

    .questionbox {
        width: 55%;
    }

    .blogs-row {
        flex-direction: column;
    }

    .upload-btn-tool {
        display: block !important;
    }

    .text-changer {
        visibility: hidden;
    }

    .upload-btn-tool {
        visibility: visible;
    }

    .cover-letter-input-flex {
        flex-direction: column;
    }

    .inner-contact {
        flex-direction: column;
        height: auto;
    }

    .intouch {
        width: 100%;
    }

    .contcat-from {
        width: 100% !important;
    }

    .other-tools-grid {
        grid-template-columns: auto auto;
    }

    .essay-main-tool {
        flex-wrap: wrap;
    }

    .essay-tool-menu {
        min-width: unset;
        width: 100% !important;
    }

    .main-essay-option>div {
        width: 48% !important;
    }
}

@media (max-width: 671px) {
    .change-password-details {
        margin-right: 30px;
    }
}

@media screen and (max-width: 670px) {
    .essay-tool-box {
        flex-wrap: wrap;
    }

    .tool-output-box {
        padding: 10px 13px 80px 13px;
    }


    /*on mobile view hide the outbox*/
    .mobile-output {
        display: none;
    }

    .position-absolute-custom {
        position: relative;
        bottom: 0px !important;
    }

    .tool-menu {
        min-width: unset;
        width: 100% !important;
    }

    .howuse-cont .list .in-list {
        padding-left: 0px;
    }
}

@media screen and (max-width: 600px) {
    .main-essay-option>div {
        width: 100% !important;
    }

    .change-password-details {
        margin-right: 0;
    }

    .feedback {
        width: 300px;
    }

    .feedback_heading {
        font-size: 18px;
    }

    .feedback_subheading {
        font-size: 12px;
    }

    h1 {
        font-size: var(--font-size-mobile-h1) !important;
    }

    h2 {
        font-size: var(--font-size-mobile-h2) !important;
    }

    h3 {
        font-size: var(--font-size-mobile-h3) !important;
    }

    h4 {
        font-size: var(--font-size-mobile-h4) !important;
    }

    .lastOption {
        max-width: 100%;
    }

    .faq-user .list .in-list:before {
        background-size: 57px;
        width: 42px;
        height: 63px;
    }

    .account-settings,
    .vertical-line-settings {
        display: none;
    }



    .user-setting {
        flex-direction: column;
    }

    .wrap * {
        word-wrap: break-word;
    }

    .submenu-btn {
        display: flex;
        align-items: center;
        padding: 10px 12px;
        justify-content: space-between;
    }

    .submenu-btn>img {
        display: block;
    }

    .account-right-menu {
        padding: 12px;
        border-right: none;
        gap: 16px;
        width: 100%;
    }

    #goBack {
        padding: 12px;
        gap: 12px;
        position: sticky;
        top: 0;
        background-color: white;
    }

    .text-black {
        font-weight: 400;
        color: var(--color-dark);
        display: flex;
    }

    .setting-heading,
    .setting-other-details {
        padding: 16px;
    }

    .mob-display-col {
        flex-direction: column;
        gap: 12px;
        align-items: start;
    }

    .email_verification_container {
        gap: 12px;
        background-color: #F6F9FD;
        padding: 12px;
        border-radius: 8px;
    }

    section {
        padding: 10px 12px;
    }

    .back-table {
        height: 300px;
    }

    .other-tools-grid {
        grid-template-columns: auto;
    }

    .gram_down {
        margin-left: 30px !important;
    }
    section.table{
        min-height: 760px;
    }
}

@media (max-width: 496px) {
    .mobile-none {
        display: none !important;
    }

    .mobile-show {
        display: flex !important;
    }

    .premium-modal {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .premium-modal .plan-desc {
        max-width: 100%;
    }

    .mob-upload-btn {
        display: none;
    }

}

@media (max-width: 386px) {

    .home_down,
    .text_sum_down {
        margin-left: 0px !important;
    }
}

@media screen and (max-width: 435px) {
    .thesis-footer {
        justify-content: space-between;
        align-items: baseline;
        gap: 0px;
    }

    .icon-set {
        column-gap: 0px;
    }

    .feedback-and-action-btns-container {
        flex-direction: column-reverse;
        align-items: self-end;
    }
    .thesis-word-counter{
        min-width: fit-content;
    }

    .heading {
        margin: 15px 0 10px 0;
    }

    .tool-output-box {
        padding: 10px 13px 0px 13px;
    }

    .box-button,
    .question .container {
        display: block;
    }

    .feature-card {
        margin-bottom: 0px;
        padding: 1px;
    }

    .questionbg,
    .intouch {
        margin-bottom: 30px;
    }

    .tabs .tool_tab {
        font-size: 16px;
    }

    .information,
    .Modes {
        width: 100%;
        margin: 20px 0;
    }

    .simple-box,
    .outputbox,
    #output_text {
        height: 315px !important;
        overflow: hidden;
    }

    #output_text {
        overflow: auto;
        padding-bottom: 10px;
    }

    .howuse-cont .list .u-list .in-list {
        display: block !important;
        flex: unset !important;
    }

    .faq-user .list .u-list .in-list {
        display: flex !important;
        margin: unset !important;
    }

    .faq-user .list .u-list .in-list .half {
        margin-top: 0 !important;
    }

    .howuse-cont .list .u-list .in-list .half {
        width: 100% !important;
        margin-top: 8%;
    }

    .howuse-cont .list .in-list {
        padding-left: 0;
        line-height: 32px;
    }

    .howuse-cont {
        margin-top: 12%;
    }

    .arr-box img {
        width: 72% !important;
    }
}

@media screen and (max-width: 425px) {
    .sub-heading-table {
        width: 100%;
    }

    table {
        width: 87%;
    }

    table tr td:first-child {
        width: auto;
    }

    td {
        padding: 10px;
    }

    .login_modal-content {
        width: 90%;
    }

    .footer_section_box_btn {
        width: 40px !important;
    }

    .mob-upload-btn {
        display: none;
    }
}

@media (max-width: 400px) {
    .main-essay-icon-set {
        bottom: 6px !important;
    }

    .main-essay-icon-set .icon {
        padding: 0px 5px;
    }
}

@media screen and (max-width: 375px) {
    .grammer-tool-btn span {
        display: none;
    }

    .grammer-tool-btn {
        width: auto;
    }

    .grammerbtn {
        flex-wrap: nowrap;
    }

    .container {
        overflow-x: hidden !important;
    }
}

@media screen and (max-width: 340px) {
    .howwork-wrapper .list li {
        padding-left: 35px;
    }

    .popular-price-plan {
        align-items: center !important;
    }

    .tabs .tool_tab {
        width: 70px;
        font-size: 13px;
        margin: 6px 0;
        padding: 8px 0;
    }

    .dropdown div {
        font-size: 14px;
    }

    .input .box,
    .output {
        width: auto;
        padding: 8px;
    }

    .tabs .tool_tab img,
    .dropdown .icon {
        display: none;
    }

    .inputs,
    .dropdown {
        padding: 0;
        margin-left: 0;
        text-align: right;
    }

    .dropdown .dropdown-menu {
        left: 10px;
    }

    .simple-box,
    .outputbox {
        height: 200px;
    }

    #outputbox {
        height: 200px;
    }

    .qtext {
        margin-left: 20px;
    }

    .custom__modal__content {
        margin-left: 10px;
        margin-right: 10px;
    }

    .custom-modal-bottons {
        flex-direction: column;
        gap: 10px !important;
    }
}

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

.chat-widget-hide {
    width: 0px !important;
    height: 0px !important;
}

.plan-to-cancel {
    display: flex;
    max-width: 166px;
    gap: 12px;
    margin: auto;
}

.plan-to-cancel .plan-name {
    color: #2a3241;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.cancel-membership-popup-description {
    margin: unset;
    margin-top: 6px;
}

.cancel-membership-popup-description,
.plan-to-cancel .plan-des {
    color: var(--color-gray-text);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

.cancel-membership-popup .custom__modal__content {
    gap: 24px !important;
}

.plan-to-cancel-detail-container {
    text-align: center;
    padding: 12px 0px;
    border-top: 1px solid #e7eaef;
    border-bottom: 1px solid #e7eaef;
    width: 100%;
}

#customModalForCancel .plan-detail {
    text-align: left;
}

#customModalForCancel .custom__modal__content {
    padding: 32px 0px !important;
}

.reason-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reason-modal-for-cancel {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 450px;
    padding: 32px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reason-modal-for-cancel .heading {
    font-size: 22px;
    margin-top: 0;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2a3241;
}

.reason-modal-for-cancel .slogan {
    color: var(--color-gray-text);
    font-size: 16px;
    line-height: 24px;
    margin: unset;
}

.reason-label {
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    color: #333;
}

.reason-modal-for-cancel .option {
    display: flex;
    align-items: flex-start;
}

.reason-modal-for-cancel .radio-input {
    margin-right: 10px;
    margin-top: 3px;
    margin-bottom: 3px;
    width: 16px;
    height: 16px;
    accent-color: #3a86ff;
}

.reason-modal-for-cancel .option-text {
    flex: 1;
    color: #555;
}

.reason-modal-for-cancel .text-input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    margin-top: 5px;
    display: none;
    background-color: #f6f9fd;
    color: #9fa3aa;
    font-size: 16px;
    resize: none;
    min-height: 90px;
}

.reason-modal-for-cancel .buttons {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.reason-modal-for-cancel .cancel-btn {
    background: #fcfcfe;
    border: 1px solid #e7eaef;
    color: #2a3241;
}

.reason-modal-for-cancel .cancel-btn,
.reason-modal-for-cancel .confirm-btn {
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
}

.reason-modal-for-cancel .confirm-btn {
    background-color: #ff5a5f;
    border: none;
    color: white;
}

@media(max-width: 400px) {
    .home-tool-btns-custom {
        justify-content: center;
        flex-wrap: wrap;
        left: 50% !important;
    }
}

@media(max-width: 340px) {

    .upgrade {
        min-width: 230px;
    }

    .footer-delete-icon {
        padding: 0px;
    }
}

.tool-custom {
    padding-bottom: 60px;
}

.information div a {
    font-size: var(--font-size-default);
}

.information h3 {
    font-size: var(--font-size-default);
    font-weight: 700;
}

.tool-sample-upload-btn {
    flex-wrap: nowrap;
}

@media(max-width: 360px) {
    .lang-text {
        display: none;
    }
}

@media(max-width: 340px) {
    .tool-sample-upload-btn {
        flex-wrap: wrap;
    }
}
