:root {
    --ppsbox-success-color: #3acd99;
    --ppsbox-danger-color: #ff3535;
    --ppsbox-warning-color: #ffd341;
    --chat-logo: url(../img/chat-icon.png);
}

*:not([class^="ace"]) {
    font-family: "Roboto", sans-serif;
}

html {
    font-size: 16px;
}

.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

body {
    scroll-behavior: smooth;
}

.logo_container a {
    display: inline-block;
}

.main-logo {
    height: 32px;
    width: 148px;
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-thumb {
    background-color: #00b698;
    border-radius: 30px;
    border: 4px solid transparent;
    background-clip: content-box;
}

*::-webkit-scrollbar-track {
    background-color: none;
}

textarea.form-control {
    resize: vertical;
}

.position-relative {
    position: relative;
}

.full-width-tool-ad {
    margin-top: 20px;
    padding: 0 10px;
}

.main-container-fluid {
    display: flex;
}

.pps-spr-sidebar {
    float: unset;
}

.rightcol {
    height: 100%;
}

.feedback-msg {
    resize: none;
}

.feedback-form label {
    display: initial;
}

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

.resize-x-none {
    resize: vertical;
}

.hides {
    display: none;
}

.text-xl {
    font-size: 20px;
    color: #1467c0 !important;
}

.text24 {
    font-size: 24px;
}

.text30 {
    font-size: 30px;
}

.chat-logo {
    text-decoration: none !important;
    color: #000000 !important;
    background-color: white;
    border: 1px solid #e2e2e2;
    position: relative;
}

.chat-logo:hover {
    background-color: white !important;
    border: 1px solid #000000;
}

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

.online-indication {
    background-color: #3acd99;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    position: absolute;
    top: 4px;
    right: 4px;
}

.shine_btn_div {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    padding: 3px 10px;
}

.tools_list li a {
    display: inline-block;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 6px 10px 0 10px;
    border-left: 1px solid #eee;
    text-decoration: none;
}

.tools_list li a:hover {
    color: #5e766d;
}

.tools_list {
    /* gap: 10px; */
}

.main__left {
    align-items: flex-end;
    gap: 10px;
}

.header_wrapper {
    padding: 8px;
    align-items: center;
    justify-content: space-between;
}

.main__right {
    align-items: center;
    gap: 10px;
}

.logregBtn {
    margin-top: unset;
    margin-left: unset;
}

.logregBtn:hover {
    background-color: #333333;
}

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

.nav-list.beta a:after {
    position: absolute;
    content: "NEW";
    /* Adds the text */
    background: linear-gradient(90deg, #37CC99 0%, #1EAEA9 100%);
    border-radius: 99px;
    color: #ffffff;
    padding: 3px 4px;
    font-size: 10px;
    line-height: 12px;
    font-weight: 500;
    margin-left: 4px;
}

ol,
ul {
    margin-top: unset;
    margin-bottom: unset;
}

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

.d-block {
    display: block;
}

.pps-spr {
    background: #f5f5f5;
}

.cursor-p {
    cursor: pointer;
}

.o-hidden {
    overflow: hidden;
}

.o-auto {
    overflow: auto;
}

.position-a {
    position: absolute;
}

.position-f {
    position: fixed;
}

.position-r {
    position: relative;
}

.w100 {
    width: 100%;
}

.h100 {
    height: 100%;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.row-wrap {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    clear: both;
}

.clear-both {
    clear: both;
}

.col-xs-auto,
.col-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

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

#exampleLoad {
    display: flex;
    align-items: center;
    /* gap: 4px; */
    padding: 6px 10px;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    font-size: 14px;
    /* font-weight: 500; */
    color: #000000;
    /* width: 30px; */
    /* height: 30px; */
}

#exampleLoad img {
    width: 20px;
    height: 20px;
}

.select-separator {
    border-left: 1px solid #e2e2e2;
    padding: 0 10px;
    transition: transform 0.01s ease;
}

.selected-item.active .select-separator {
    transform: rotate(180deg);
    border-left: unset;
    border-right: 1px solid #e2e2e2;
}

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

.justify-content-evenly {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
}

.align-self-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

.align-self-start {
    -webkit-box-align: start;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

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

.shadowBox #checkBtn:last-child,
.shadowBox .btn.btn-lg.btn-success:last-child,
.shadowBox .btn.btn-lg.btn-success.active:last-child {
    margin-right: 10px;
}

.shadowBox #checkBtn.btn.btn-danger.btn-lg {
    box-shadow: 3px 3px 0 0 #ac2925;
}

div.text-uppercase.text-muted,
span.text-uppercase.text-muted {
    display: none;
}

.btn.active,
.btn:active {
    box-shadow: 0 3px 5px rgb(0 0 0 / 13%);
}

.g-recaptcha {
    -ms-transform: scale(0.85);
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
    width: 304px !important;
    height: 78px !important;
    margin: 0 auto;
}

.mb-2 {
    margin-bottom: 5px !important;
}

.m-auto,
.my-0 {
    margin: 0 auto;
}

.bdr {
    border: 1px solid #eee;
}

#floorad-wrapper {
    background: #f2f7f9 !important;
    width: 100%;
    bottom: 0;
    position: fixed;
    box-shadow: 0 0 4px rgb(0 0 0 / 0.8);
    text-align: center;
    padding-top: 4px;
    z-index: 6000;
}

#close-floorad-btn {
    color: #000 !important;
    display: inline-block;
    height: 18px;
    padding: 2px;
    background: #fff;
    cursor: pointer;
    float: right;
    box-shadow: 0 0 4px rgb(0 0 0 / 0.8);
    border-radius: 8px 0 0 0;
    margin-top: -28px;
}

.sidebarR {
    margin: 20px 0;
}

.top-hBtn-sm {
    display: none;
}

.top-hBtn-sm,
.top-hBtn {
    height: 40px;
    padding: 6px;
    border-left: 1px solid #eee;
}

.top-hBtn-sm a,
.top-hBtn a {
    padding: 6px !important;
    color: #fff !important;
    border-radius: 4px !important;
    border-left: none !important;
}

.ad-free-btn-top {
    background: linear-gradient(256deg, #3971b0, #49aad7);
}

.ad-free-btn-top:hover {
    background: linear-gradient(45deg, #49aad7, #3971b0) !important;
    color: #fff !important;
}

.premium-plns-btn {
    width: fit-content !important;
    background: linear-gradient(90deg, #37cc99 0%, #1eaea9 100%) !important;
    color: #fff !important;
}

.premium-plns-btn:hover {
    background: linear-gradient(90deg, #37cc99 0%, #1eaea9 100%);
}

.get-prem-btn {
    margin: unset !important;
    padding: 5px !important;
    border-radius: 3px;
}

.premium-plns-btn:hover {
    background: linear-gradient(45deg, #3acd99, #00b698) !important;
    color: #fff !important;
}

.shine-box {
    position: relative;
    overflow: hidden;
    align-items: center;
}

.shine-box:before {
    position: absolute;
    top: 0;
    left: -500px;
    width: 120px;
    height: 500px;
    background: rgb(255 255 255 / 0.6);
}

.seacrh-input {
    border: none;
    background: 0;
    margin: 0 auto;
    font-size: 22px;
    display: block;
    width: 90%;
    margin-bottom: 10px;
    margin-top: 8px;
}

.seacrh-input:focus {
    outline: 0;
}

.sbNew {
    height: 75px !important;
    top: 53px !important;
}

.sbNewinner::after,
.cross {
    top: 5px !important;
}

@-webkit-keyframes shine {
    from {
        left: -500px;
    }

    to {
        left: 655px;
    }
}

@keyframes shine {
    from {
        left: -500px;
    }

    to {
        left: 655px;
    }
}

.shine-box-before-avtive::before {
    content: "";
    -webkit-transform: skew(-50deg);
    -ms-transform: skew(-50deg);
    transform: skew(-50deg);
    -webkit-animation: shine 3s ease infinite;
    animation: shine 3s ease infinite;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.g-recaptcha {
    margin: 0 auto !important;
}

.captcha-heading {
    font-size: 19px;
    padding: 9px;
    color: #000;
    text-transform: capitalize;
    font-weight: 500;
    border-radius: 20px;
}

.captcha-model {
    background: rgb(0 0 0 / 0.4);
    display: none;
    height: 100%;
    position: fixed;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

.captcha-model .helper-span {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.captcha-model>div {
    background-color: #fff;
    -webkit-box-shadow: 10px 10px 60px #555;
    box-shadow: 10px 10px 60px #555;
    display: inline-block;
    padding: 0px !important;
    height: auto;
    max-height: 100%;
    max-width: 360px;
    min-width: 300px;
    vertical-align: middle;
    width: 50%;
    position: relative;
    border-radius: 20px;
    padding: 0 0 40px;
}

.captcha-footer {
    margin: 12px;
}

body {
    background: #f4f8f9;
}

.home-heading {
    font-size: 48px;
    font-weight: 300;
}

.sub-h {
    font-style: italic;
    padding-bottom: 20px;
}

.hS {
    background: rgb(255 255 255 / 0.15);
    border: 1px solid #fff;
    font-size: 16px;
    display: block;
    width: 96%;
    padding: 10px 8px;
    color: #fff;
    position: relative;
    opacity: 0.8;
    margin-inline: auto;
}

input.hS:focus {
    border-color: #fff !important;
    outline: none;
    opacity: 1;
}

input.hS::placeholder {
    color: #fff;
    opacity: 0.5;
}

input.hS:-ms-input-placeholder {
    color: #fff;
    opacity: 0.5;
}

input.hS::-ms-input-placeholder {
    color: #fff;
    opacity: 0.5;
}

.sG {
    position: relative;
}

.sG::before {
    position: absolute;
    font-family: "FontAwesome";
    top: 1px;
    right: 15px;
    content: "\f002";
    color: #fff;
    font-size: 28px;
    opacity: 1;
}

.fts {
    margin-top: 50px;
}

.sib {
    padding: 3px;
}

.sib a {
    max-height: 128px;
    border: 1px solid #fff;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    display: block;
    padding: 30px 2px;
    transition: ease-in-out 0.15s all;
    transform: scale(0.95);
    box-sizing: border-box;
}

.sib a:hover {
    transform: scale(1);
    background: rgb(255 255 255 / 0.25);
    color: #fff;
}

.sib a:hover span {
    border: 1px solid #fff;
}

.sib a i {
    font-size: 36px;
    display: block;
    padding-bottom: 10px;
}

.sib a:hover {
    opacity: 1;
}

.hero-tools {
    height: 40px;
    width: 40px;
    margin-inline: auto;
    margin-bottom: 5px;
}

.rfs {
    color: #fff;
    text-align: right;
    padding-top: 8px;
}

.rfs a {
    width: 160px;
    display: inline-block;
    text-align: center;
    height: 125px;
    background: #fff;
    color: #06666f;
    font-weight: 700;
    margin: 2px;
    float: right;
}

.rfs a:active,
.rfs a:focus {
    text-decoration: none;
}

.rfs a .icon {
    display: block;
    margin: 27px 0 10px;
}

.rfs a:hover {
    color: #000;
    opacity: 1;
}

.rfs a.org .icon {
    color: #f6ad34;
}

.rfs a.blue .icon {
    color: #5aa4e9;
}

.rfs a.red .icon {
    color: #ff8585;
}

.rfs a.prp .icon {
    color: #9f6a93;
}

.rfs a .arrow {
    opacity: 0;
    transition: ease-in-out all 0.25s;
    font-size: 16px;
    display: inline-block;
    padding-right: 25px;
}

.rfs a:hover .arrow {
    color: #000;
    opacity: 1;
    padding-right: 0;
}

.mkimg {
    width: 100%;
    margin-top: 30px;
    margin-bottom: -70px;
    transform: scale(0.9);
}

.sBarN {
    padding: 0 0 0 20px;
}

.langBtn {
    margin: 3px;
}

.loadfeedbackwrapper {
    display: none !important;
}

.blist li {
    padding: 10px 0;
}

.tln ul {
    padding: 0;
    margin: 0;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    display: flex !important;
}

.tln ul li {
    padding: 4px 8px 4px 0;
    -webkit-box-flex: 1;
    -ms-flex: 0 1 calc(850px / 3);
    flex: 0 1 calc(850px / 3);
}

.tln.sBar ul li {
    width: 100%;
    background: #fcfcfc;
    padding: 4px 0;
}

.tln.sBar ul li a {
    background: #fcfcfc;
}

.tln.sBar ul li a:hover {
    font-weight: 700;
}

.tln.sBar .hh {
    margin-bottom: 0;
}

.tln {
    border-radius: 5px;
    overflow: hidden;
}

.tln ul li a {
    color: #000;
    font-size: 15px;
    display: block;
    position: relative;
    background: #f2f7f9;
    border-radius: 3px;
    padding: 8px;
}

.tln ul li a::before {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translate(0, -50%);
    color: #b3b3b3;
    content: "\f0a9";
    font-family: "FontAwesome";
    transition: ease-in-out all 0.25s;
    opacity: 0.2;
}

.tln ul li:hover a::before {
    color: #000;
    opacity: 1;
}

.hh {
    background: linear-gradient(90deg, #1bacaa, #fff);
    padding: 10px;
    color: #fff;
    border-radius: 4px;
    font-size: 18px;
}

.hh i {
    width: 20px;
    height: 20px;
}

.hc1 {
    background: linear-gradient(90deg, #1bacaa, #fff);
}

.hc2 {
    background: linear-gradient(90deg, #ff8585, #fff);
}

.hc3 {
    background: linear-gradient(90deg, #9f6a93, #fff);
}

.hc4 {
    background: linear-gradient(90deg, #0897b6, #fff);
}

.hc5 {
    background: linear-gradient(90deg, #f6ad34, #fff);
}

body.dark_mode_ui .tln ul li a {
    border: 1px solid;
}

img[hidden] {
    display: none !important;
}

.shadowBox #checkBtn,
.shadowBox .btn.tool_btn_submit,
.shadowBox .btn.btn-lg.btn-success,
.shadowBox .btn.btn-lg.btn-success.active {
    margin-right: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    /* min-width: 260px; */
    padding: 6px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px !important;
    outline: none;
}

.colorLink {
    color: #3175af;
}

.linux-icon {
    margin-right: 5px;
}

.linux-icon img {
    background-color: #fff;
    border-radius: 1px;
    padding: 1px;
    margin: 0 auto;
}

.ppsbox-model {
    background: rgb(0 0 0 / 0.4);
    display: none;
    height: 100%;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 10000;
}

.ppsbox-model .helper-span {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.ppsbox-model>div {
    background-color: #fff;
    -webkit-box-shadow: 10px 10px 60px #555;
    box-shadow: 10px 10px 60px #555;
    display: inline-block;
    height: auto;
    max-height: 100%;
    max-width: 360px;
    min-width: 300px;
    vertical-align: middle;
    width: 50%;
    position: relative;
    border-radius: 20px;
    padding: 0 0 40px;
}

.ppsbox-model>div:after {
    width: 100%;
    content: "";
    height: 40px;
    z-index: 26;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 0 20px 20px;
}

.ppsbox-model>div.success:after {
    background-color: var(--ppsbox-success-color);
}

.ppsbox-model>div.danger:after {
    background-color: var(--ppsbox-danger-color);
}

.ppsbox-model>div.warning:after {
    background-color: var(--ppsbox-warning-color);
}

.ppsbox-model>div.info:after {
    background-color: var(--ppsbox-success-color);
}

.ppsbox-close {
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    font-family: arial;
    font-weight: 700;
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 25px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
}

.ppsbox-close.success {
    background-color: var(--ppsbox-success-color);
}

.ppsbox-close.info {
    background-color: var(--ppsbox-success-color);
}

.ppsbox-close.danger {
    background-color: var(--ppsbox-danger-color);
}

.ppsbox-close.warning {
    background-color: var(--ppsbox-warning-color);
    background-size: contain;
}

.ppsbox-trigger {
    cursor: pointer;
    font-size: 20px;
    margin: 20px;
    display: inline-block;
    font-weight: 700;
}

.ppsbox-img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background-size: contain !important;
}

.ppsbox-img.success {
    background: url(../img/msg-box-success.png);
}

.ppsbox-img.danger {
    background: url(../img/msg-box-danger.png);
}

.ppsbox-img.warning {
    background: url(../img/msg-box-warning.png);
}

.ppsbox-img.info {
    background: url(../img/msg-box-info.png);
}

.ppsbox-heading {
    font-size: 25px;
    color: #000;
    text-transform: capitalize;
    font-weight: 500;
}

.ppsbox-msg {
    font-size: 15px;
    color: #000000bf;
    padding: 20px 15px;
    min-height: 60px;
}

.success .ppsbox-msg {
    background-color: #fbfffb;
}

.danger .ppsbox-msg {
    background-color: #fffbfb;
}

.warning .ppsbox-msg {
    background-color: #fffffb;
}

.info .ppsbox-msg {
    background-color: #fbfeff;
}

.help-us {
    bottom: 5px;
    position: absolute;
    z-index: 28;
    color: #fff;
    left: 50%;
    -webkit-transform: translate(-50%, -5px);
    -ms-transform: translate(-50%, -5px);
    transform: translate(-50%, -5px);
    width: 100%;
    font-size: 15px;
}

.help-us a {
    font-weight: 700;
    color: #fff;
}

.buyBtn {
    display: block;
    background: #000;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    margin: 12px auto;
}


.buyBtn:focus,
.buyBtn:hover,
.buyBtn:active {
    background: #333;
}

.rgsBtn {
    font-size: 14px;
    line-height: 24px;
    color: #000;
}

.rgsBtn a {
    text-decoration: underline;
}

.phrsing-pro {
    border-radius: 5px !important;
    border: none !important;
}

.buyBtn-pro {
    background: #0000 linear-gradient(252deg, #3acd99 0%, #0796b6 100%) !important;
    color: #fff;
    width: fit-content !important;
}

.show-buy-btn {
    display: block !important;
}

.captcha-pro {
    background: #0000 linear-gradient(91deg, #ff3535 0%, #c6a4a4 100%) !important;
}

.os-icon {
    padding: 3px 8px;
    text-indent: 0 !important;
    margin: 0;
}

.os-icon:hover>img {
    background: #3acd99;
}

#improveTool {
    background: #277c55 !important;
}

.search-results .selected.match a {
    background: #e7f0f4;
    color: #000;
}

.leftcol .tool-content a {
    word-break: break-word;
}

body.dark_mode_ui input::-moz-placeholder,
body.dark_mode_ui input:-ms-input-placeholder,
body.dark_mode_ui input::-webkit-input-placeholder {
    color: #ccc;
}

body.dark_mode_ui {
    background: #333 !important;
    color: #fff !important;
}

body.dark_mode_ui :is(div:not(.pps-spr-lumba-daba,
        .pps-spr-lumba-daba div,
        .ppsbox-model *,
        .gigaparts-sale-banner,
        .border-dark-none),
    span:not(.ars,
        .line,
        .btn,
        .go-pro,
        .bx-export,
        .slash,
        .info-tooltip,
        .skeleton-box,
        .dark-trans),
    a:not(.dark-a),
    .tln ul li a,
    small,
    div:before,
    textarea,
    footer:not(.footer-dark),
    input,
    select,
    form) {
    background: #333 !important;
    color: #fff !important;
    border-color: #aaa !important;
}

body.dark_mode_ui :is(div:not(.ring-1),
    span:not(.ring-1),
    a:not(.ring-1),
    input:not(.ring-1),
    select:not(.ring-1),
    textarea:not(.ring-1),
    form:not(.ring-1),
    small:not(.ring-1)) {
    box-shadow: none !important;
}

body.dark_mode_ui header {
    box-shadow: none;
    border-bottom: 1px solid #dbdbdb;
}

body.dark_mode_ui .btn.btn-ad-share,
body.dark_mode_ui .loadfeedbackwrapper {
    background: #fff !important;
    color: #333 !important;
    border-color: #aaa !important;
}

body.dark_mode_ui #feedback {
    border: 0;
    background: #333 !important;
    line-height: normal;
}

body.dark_mode_ui .btn:not(#feedback, .btn-dark, #uploadBtn) .fa {
    color: #333 !important;
}

body.dark_mode_ui :is(.fa, h1, h2, h3, h4, h5, label) {
    color: #fff;
}

body.dark_mode_ui .shareit img {
    filter: grayscale(1) invert(1) !important;
}

body.dark_mode_ui .hh {
    background: linear-gradient(90deg, #666, #333) !important;
}

body.dark_mode_ui .leftcol,
body.dark_mode_ui .toc_container {
    border: 1px solid #333 !important;
}

body.dark_mode_ui .model-box {
    border: 1px solid #eee;
}

body.dark_mode_ui .slash {
    background: transparent !important;
}

body.dark_mode_ui .table>tbody>tr {
    background: none !important;
}

body.dark_mode_ui .pps-spr,
body.dark_mode_ui .pps-spr.pps-spr-sidebar,
body.dark_mode_ui :is(.pps-spr span,
    .card-dark,
    .plan-box.card-dark,
    .bg-dark-mode,
    .ppsbox-model > div,
    .ppsbox-msg,
    .ppsbox-heading,
    .a-dark) {
    background: #4e4e4e !important;
}

body.dark_mode_ui :is(.border-dark,
    #capDiv,
    .card-dark,
    .plan-box.card-dark .rtbg,
    .greybox,
    .rBtns) {
    border: 1px solid #aaa !important;
}

body.dark_mode_ui .border-dark-none {
    border-color: #0000 !important;
}

body.dark_mode_ui .banner-feature i.fa-circle {
    color: #6d6d6d !important;
}

body.dark_mode_ui .toolheadng::before,
body.dark_mode_ui :is(.shine-box.premium-plns-btn,
    .btn.btn-default,
    .InputAddOn button,
    #improveTool,
    .btn.btn-success,
    .go-pro,
    .popover_btn) {
    background: #6d6d6d !important;
    color: #fff;
}

.privacy-disclaimer {
    font-size: 14px;
    color: #817c7c;
    font-style: italic;
    font-weight: 700;
    margin-top: 10px;
}

body.dark_mode_ui p,
body.dark_mode_ui .ppsbox-msg,
body.dark_mode_ui .price:before,
body.dark_mode_ui .price:after {
    color: #fff !important;
}

body.dark_mode_ui>div>footer>div.container,
body.dark_mode_ui>div>footer>div.container>div>div.noP>a,
body.dark_mode_ui>div>footer>div.container>div,
body.dark_mode_ui>div>footer>div.container>div>div.noP,
body.dark_mode_ui footer.footer-dark {
    border: 0;
    background: #4e4e4e !important;
}

body.dark_mode_ui .dark-img {
    filter: grayscale(0.5);
}

body.dark_mode_ui .popup li:hover {
    background-color: #6d6d6d !important;
}

body.dark_mode_ui .sActv,
body.dark_mode_ui span.ars:hover {
    background-color: #6d6d6d !important;
}

body.dark_mode_ui .tooltip_main>.line {
    background-image: -o-linear-gradient(90deg,
            #6d6d6d,
            0,
            #333 40px,
            #6d6d6d 80px);
    background-image: linear-gradient(90deg,
            #6d6d6d,
            0,
            #333 40px,
            #6d6d6d 80px);
}

body.dark_mode_ui .langSelectBox ul li:hover,
body.dark_mode_ui select.langAbs option:hover {
    background: #6d6d6d;
}

body.dark_mode_ui .leftcol .tool-content a {
    color: #337ab7 !important;
}

body.dark_mode_ui :is(.leftcol .tool-content a, .acc_content a) {
    color: #337ab7 !important;
}

body.dark_mode_ui .skeleton-box {
    background-color: #6d6d6d !important;
}

body.dark_mode_ui .close span {
    background: transparent !important;
    color: #000 !important;
}

body.dark_mode_ui .ppsbox-model>div {
    box-shadow: none;
}

.account-nav li {
    display: inline-block;
}

.rounded {
    border-radius: 5px;
}

.search-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.langnamesearch span {
    border-bottom: 1px solid #f5f0f0;
    font-size: 10px;
    padding: 5px;
}

.noresult {
    color: #4d4d4d;
    padding: 8px 0;
}

.search-results {
    border: 1px solid #ccc;
    border-top: 0;
    display: none;
    max-height: 250px;
    min-height: 50px;
    padding: 5px;
    z-index: 50;
    top: 100%;
    border-radius: 0 0 5px 5px;
}

.search-results .match {
    padding: 2px 5px;
}

.search-results .match a {
    font-weight: 400;
    background: #f5f9fa;
    border-radius: 3px;
    padding: 8px;
    font-size: 16px;
    color: #464646;
}

/* Tooltip CSS   */
[data-tooltip] {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    padding: 6px 8px;
    width: max-content;
    max-width: 250px;
    color: #fff;
    background-color: #3b4850e6;
    border-radius: 4px;
    font-size: 14px;
    white-space: normal;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-tooltip]:hover::after {
    opacity: 0.9;
    visibility: visible;
}

[data-tooltip]:not([data-placement])::after {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
}

[data-tooltip][data-placement="top"]::after {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
}

[data-tooltip][data-placement="right"]::after {
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-left: 8px;
}

[data-tooltip][data-placement="bottom"]::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
}

[data-tooltip][data-placement="left"]::after {
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    margin-right: 8px;
}

[data-tooltip]::before {
    content: "";
    position: absolute;
    border-style: solid;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

[data-tooltip]:hover::before {
    opacity: 0.9;
    visibility: visible;
}

[data-tooltip]:not([data-placement])::before {
    border-width: 6px 6px 0 6px;
    border-color: #374046e6 transparent transparent transparent;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 2px;
}

[data-tooltip][data-placement="top"]::before {
    border-width: 6px 6px 0 6px;
    border-color: #374046e6 transparent transparent transparent;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 2px;
}

[data-tooltip][data-placement="right"]::before {
    border-width: 6px 6px 6px 0;
    border-color: transparent #374046e6 transparent transparent;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-left: 2px;
}

[data-tooltip][data-placement="bottom"]::before {
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #374046e6 transparent;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 2px;
}

[data-tooltip][data-placement="left"]::before {
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent #374046e6;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    margin-right: 2px;
}

[data-tooltip]::after,
[data-tooltip]::before {
    pointer-events: none;
}

.hide-tooltip[data-tooltip]::before,
.hide-tooltip[data-tooltip]::after {
    opacity: 0;
    visibility: hidden;
}

input[type="radio"] {
    cursor: pointer;
}

.search-results .match a:hover {
    background: #e7f0f4;
    color: #000;
}

.mobile-menu-wrapper {
    background: #f4f8f9;
}

.radio-group :is(span, label, input[type="radio"]) {
    cursor: pointer;
}

.output-div {
    overflow-x: hidden;
}

.title__copy__button i {
    font-weight: 600;
    font-size: 16px;
    transform: rotateY(180deg);
}

.output-div {
    overflow-x: hidden !important;
    outline: none !important;
}

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

@media screen and (min-width: 1400px) {
    .mobile-menu-wrapper {
        display: none;
    }
}

.mobile-toggle-btn {
    width: 32px;
    height: 32px;
    font-size: 24px !important;
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
}

.topsearch {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 7px;
}

.topsearch img {
    width: 18px;
    height: 18px;
}

.topsearch img:hover {
    filter: brightness(0) saturate(100%) invert(44%) sepia(11%) saturate(581%) hue-rotate(106deg) brightness(96%) contrast(84%);
}

.cursor-pointer {
    cursor: pointer;
}

#generate_btn,
.default-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    background: #3acd99;
    padding: 6px 32px;
    margin: 0 auto;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: white;
    cursor: pointer;
    border: none;
}

#generate_btn:hover,
.default-button:hover {
    color: #fff;
    background-color: #33dba0;
}

.tool-span>textarea {
    min-height: 70px;
}

.option_wrapper input {
    background-color: white;
}

.option_wrapper .custom-select {
    border: 1px solid #e2e2e2 !important;
    background-color: white !important;
}

.footer-container {
    max-width: 1280px !important;
}

.footer-services,
.footer-resources {
    display: flex;
    flex-direction: column;
}

.footer-services a,
.footer-resources a {
    width: max-content;
}

.reset-btn {
    background-color: #000 !important;
}

.reset-btn:hover,
.reset-btn:focus,
.reset-btn:active {
    background-color: #333 !important;
}


/* DIALOG CSS */
.modal-lg {
    max-width: 550px !important;
}

.word-limit-modal {
    padding: 50px;
    border-radius: 5px;
    border: 0;
    position: relative;
}

.close-dialog {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.word-limit-modal::backdrop {
    background: rgba(0, 0, 0, 0.4);
}

.word-limit-modal[open],
.word-limit-modal::backdrop {
    animation: show 500ms ease;
}

.word-limit-modal {
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0px 5px 49px 0px #6980e226;
}

.modal-heading {
    color: black;
    font-size: 20px;
    font-weight: bold;
}

.modal-text {
    color: #333333;
    font-size: 14px;
}

.choose-plan {
    margin: 10px 0;
    display: flex;
    gap: 10px;
}

.plan {
    cursor: pointer;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 24px 16px 12px 16px;
    border-radius: 8px;
    border: 1px solid #d0e9e1;
    gap: unset;
    position: relative;
}

.offPriceIcon {
    position: absolute;
    top: 0;
    left: 0;
}

.offPriceIcon img {
    width: 74px;
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
    margin-top: 24px;
}

.offPriceText {
    text-align: left;
    color: rgba(127, 131, 132, 1);
    font-size: 14px;
    line-height: 14px;
    text-decoration: line-through;
}

.plan.active {
    border: 1px solid #3acd99;
}

.plan-price {
    font-size: 28px;
    line-height: 28px;
    font-weight: bold;
    margin: unset;
}

.plan-price span {
    color: #333333;
    font-size: 14px;
    font-weight: 400;
}

.plan-duration {
    color: #7f8384;
    font-size: 14px;
    line-height: 20px;
}

.plan-duration-price {
    margin-top: 8px;
    color: #333333;
    font-size: 14px;
}

.plan-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 10px;
}

.feature-item {
    display: flex;
    gap: 5px;
}

.upgrade-btn {
    background: linear-gradient(270.22deg,
            #3acd99 0.19%,
            #20d2bd 55.98%,
            #0d9cb3 99.81%);
    color: white;
    padding: 6px 30px;
    border-radius: 8px;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 18px;
}

.upgrade-btn:hover {
    color: white;
}

/*
PLAN CHOOSE
 */
.plan-radio {
    position: absolute;
    top: 5px;
    right: 10px;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #9da9b5 !important;
    margin: unset !important;
    padding: unset !important;
    border-radius: 50%;
    background-color: white;
    outline: none;
    cursor: pointer;
}

.plan-radio:checked {
    border-color: #a28cff;
}

.plan-radio:checked::before,
.plan-radio:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.plan-radio:checked::before {
    width: 5px;
    height: 5px;
    background-color: white;
    z-index: 1;
}

.plan-radio:checked::after {
    width: 10px;
    height: 10px;
    background-color: #3acd99;
    z-index: 2;
}

/*
PLAN CHOOSE END
 */
@keyframes show {
    0% {
        opacity: 0;
    }
}

/* DIALOG CSS END */
@media (max-width: 1370px) {
    .toggle-at-md {
        display: none !important;
    }
}

@media (max-width: 1250px) {
    .toggle-at-md {
        display: block;
    }

    .mobile_menu_items li {
        padding: 10px 12px;
        transition: all ease 0.3s;
    }

    .navbar-collapse.collapse {
        width: auto !important;
    }

    .mobile_menu_items li a {
        color: #000000;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        line-height: normal;
        display: block;
        width: 100%;
    }

    .mobile_button_section {
        flex-direction: column;
    }

    .mbl-prem-btn {
        width: 200px !important;
        justify-content: center;
        background: linear-gradient(90deg, #37cc99 0%, #1eaea9 100%);
        color: #fff;
        border-radius: 6px;
        padding: 6px 10px;
    }

    .mbl-navbar-btns {
        width: 200px;
        text-align: center;
        background: #000;
        font-size: 14px;
        padding: 6px 10px;
        border-radius: 6px;
        font-weight: 500;
    }

    .chat-logo {
        width: 200px;
        text-align: center;
        padding: 6px 10px;
        border-radius: 6px;
    }

    .btns-div {
        justify-content: center;
        flex-wrap: wrap;
        padding-bottom: 10px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn__div {
        gap: 10px;
        align-items: center;
        justify-content: center;
    }

    .seacrh-input {
        width: 80%;
    }

    .sbNewinner::after {
        left: 8px !important;
    }

    .sbNew {
        height: 70px !important;
        top: 55px !important;
    }

    .sbNewinner::after,
    .cross {
        top: 0px !important;
    }

    .top-hBtn-sm,
    .top-hBtn {
        height: unset;
        padding: 9px;
        border-left: 1px solid #eee;
        padding: 6px;
        align-items: center;
        display: flex;
    }

    .premium-plns-btn {
        display: flex !important;
        border-radius: 5px;
    }

    .tools_wrapper,
    .get-prem-btn,
    .logregBtn,
    .dark-mode-btn {
        display: none !important;
    }

    .mobile-toggle-btn {
        display: flex;
    }

    .top-hBtn-sm {
        margin: unset !important;
    }
}

@media (width <=1024px) {
    .rightcol {
        display: none;
    }
}

@media (width<=992px) {
    .navbar-collapse.collapse {
        width: 100% !important;
    }

    .hide-on-8 {
        display: none;
    }

    .tln ul li {
        flex: 1 1 calc(850px / 3);
    }
}

@media (width <=768px) {
    .container {
        width: 100vw;
    }

    .bps2 {
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }

    .sub-h {
        padding-bottom: 0;
    }

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

    .fts {
        margin-top: 10px;
    }

    .fts .sib {
        width: 50%;
        float: left;
    }

    .sBarN {
        padding: 0;
    }

    .topHContain {
        padding: 0 8px 10px !important;
    }

    .home-heading {
        font-size: 36px;
    }

    .rightcol {
        height: unset;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .top-hBtn-sm {
        padding: 9px 10px !important;
        margin: 8px 10px 0 0 !important;
        border-radius: 4px;
        height: 34px !important;
        display: block !important;
    }

    .navbar-collapse {
        position: relative;
        background: #fff;
        z-index: 2;
        box-shadow: inset -2px -2px 5px 1px #ddd;
    }

    .bps2 {
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }

    .sub-h {
        padding-bottom: 0;
    }

    .fts {
        margin-top: 10px;
    }

    .fts .sib {
        width: 50%;
        float: left;
    }

    .sBarN {
        padding: 0;
    }

    .topHContain {
        padding: 0 8px 10px !important;
    }

    .home-heading {
        font-size: 36px;
    }

    .rightcol {
        height: unset;
    }

    .footer-inner-links>.noP {
        padding: 8px !important;
    }

    .footer-services,
    .footer-resources {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .col-auto {
        width: 100%;
        padding: 0 15px;
    }

    .hide-xs {
        display: none;
    }

    .fbtn {
        margin-top: 2px;
    }
}

@media (max-width: 452px) {
    .search-results .match {
        width: 100%;
    }

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