:root{
    --pricing-tabs:#fff;
    --pricing-tabs-color:#000;
    --pricing-card-bg:#fff;
    --pricing-card-border:#E3E7ED;
    --pricing-text:#5D6277;
    --pricing-value:#000;
    --open-feature-bg:#F6F8FA;
    --open-feature-text:#2A2C37;
    --custom-pricing-bg:#2A2C37;
    --custom-pricing-text:#fff;
    --custom-toggle-slider-border:#E3E7ED;
    --custom-card-heading:#fff;
    --custom-point-text:#FFFFFF;
    --custom-select-bg:#fff;
    --custom-select-text:#000;
    --custom-select-border:#ced4da;
    --custom-select-hover-text:#000;
    --auto-renewal-toggler:#000;
    --choose-plan-btn:#2A2C37;
    --choose-plan-btn-txt:#fff;
    --toggle-bg:#fff;
    --pricing-contact-btn-txt:#000;
    --pricing-contact-btn-bg:#fff;
    --all-features-bg:#fff;
    --all-features-txt:#000;
    --all-features-border:#E3E7ED;
    --text-color:#000;
    --accordion-close-img:url('accordion-close.png');
    --accordion-open-img:url('accordion-open.png')
}
[data-theme='dark'] {
    --pricing-tabs:#4B4B4B;
    --pricing-tabs-color:#fff;
    --pricing-card-bg:#1D1D1D;
    --pricing-card-border:#4B4B4B;
    --pricing-text:#C4C3C3;
    --pricing-value:#F6F8FA;
    --open-feature-bg:#2E2E2E;
    --open-feature-text:#fff;
    --custom-pricing-bg:#fff;
    --custom-pricing-text:#000;
    --custom-toggle-slider-border:#626262;
    --custom-card-heading:#000;
    --custom-point-text:#1D1D1D;
    --custom-select-bg:#000;
    --custom-select-text:#fff;
    --custom-select-border:#4B4B4B;
    --custom-select-hover-text:#000;
    --auto-renewal-toggler:#fff;
    --choose-plan-btn:#fff;
    --choose-plan-btn-txt:#000;
    --toggle-bg:#000;
    --pricing-contact-btn-txt:#fff;
    --pricing-contact-btn-bg:#000;
    --all-features-bg:#1D1D1D;
    --all-features-txt:#fff;
    --all-features-border:#4B4B4B;
    --text-color:#fff;
    --accordion-close-img:url('accordion-close-dark.png');
    --accordion-open-img:url('accordion-open-dark.png')

}
body{
    font-family: "Poppins", sans-serif;
    background-color: #F6F8FA;
    font-size: 0.9rem;
}
.pricing-container{
    max-width: 1220px;
}
/* Toggle Switch CSS */
.switch{
    position: relative;
    display: inline-block;
    width: 32px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ribbon {
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: absolute;
}
.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 3px solid #F93333;
}
.ribbon span {
  position: absolute;
  display: block;
  width: 68px;
  padding: 0;
  color: #fff;
  font-size: 10px;
  background-color: #F93333;
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
}
.ribbon-top-left {
  top: -3px;
  left: -3px;
}
.ribbon-top-left::before,
.ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}
.ribbon-top-left::before {
  top: 0;
  right: 0;
}
.ribbon-top-left::after {
  bottom: 0;
  left: 0;
}
.ribbon-top-left span {
    right: -4px;
    top: 12px;
    transform: rotate(-45deg);
    text-align: center;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: #ccc; */
    background-color: var(--toggle-bg);
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
    border: 1px solid var( --custom-toggle-slider-border);
}
.auto-renewal-toggler{
    color: var(--auto-renewal-toggler);
}
.sale-value.active{
    color: #29C52CD7;
}
.pricing-container .slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 3px;
    background-color: #ccc;
    /* background-color: white; */
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.pricing-container input:checked+.slider {
    background-color: #0075FF;
}
.pricing-container input:checked+ .auto-renewal-slider {
    background-color: #52CD74;
}

.pricing-container input:focus+.slider {
    box-shadow: 0 0 1px #0075FF;
}

.pricing-container input:checked+.slider:before {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
    background-color: #fff;
}

/* Custom Dropdown */
.custom-dropdown .btn {
    background-color: var(--custom-select-bg);
    color: var(--custom-select-text);
    border: 1px solid var(--custom-select-border);
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.2s ease-in-out;
    min-width: 200px;
    max-width: 100%;
    text-align: left;
}
.custom-dropdown .dropdown-menu {
    border-radius: 8px;
    padding:0;
    border: 1px solid #dee2e6;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    width: 110%!important;
    background-color: var(--custom-select-bg);
}
.custom-dropdown .dropdown-item {
    padding: 0.5rem 1.5rem;
    font-size: 15px;
    color: var(--custom-select-text);
    transition: background-color 0.2s ease;
}
.custom-dropdown .dropdown-item:hover,
.custom-dropdown .dropdown-item.active {
    background-color: #F6F8FA;
    color: var(--custom-select-hover-text);
    background-repeat: no-repeat;
    background-position: center right 10px;
    background-image: url('check.svg');
}
.custom-dropdown .dropdown-toggle::after {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    vertical-align: middle;
    content: "";
    background-image: url('arrow.png"');
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
/* css */
.feature .point {
    background-position: center left;
    text-indent: 26px;
    background-repeat: no-repeat;
    font-size: 14px;
    background-image: url('cross.svg');
}
.feature.open .point {
    background-image: url('check.svg');
}
.key_features .feature.open{
    padding: 0;
    color: var(--open-feature-text)!important;
}

#pills-all .pricing-card .feature.open{
    padding: 20px 10px;
    border-radius: 6px;
    background-color: var(--open-feature-bg);
}
/* Hide .ind_price by default */
.feature .ind_price {
    display: none;
}

/* Show .ind_price only if the .feature has the 'open' class */
.feature.open .ind_price {
    display: block;
}
.dell{
    text-decoration: line-through;
    font-size: 20px !important;
}
.custom .key_features .open{
    padding:10px 10px 10px 0!important;
    margin: 0!important;
    background-color: unset!important;
    color: #fff!important;
}
.custom .feature.open .point{
    color: var(--custom-point-text);
}
.key_features .feature{
    margin: 10px;
    color: #5D6277;
}
.key_features .feature.open{
    margin: 0;
    color: #2B2D38;
    margin-bottom: 10px;
}

.feature .feature_detail{
    display: none;
}
.feature_detail h3{
    font-size: 14px;
    font-weight: 500;
}
.feature.open .feature_detail{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.feature .feature_detail h4{
    font-size: 14px;
    font-weight: 500;
}
.pricing-card{
    border: 1px solid var(--pricing-card-border);
    background: var(--pricing-card-bg);
    border-radius: 8px;
    height: 100%;
    color: var(--pricing-text);
}
.pricing-card:hover{
    transition: .1s ease-in-out;
    transform: scale(1.01);
}
.pricing-card .card_heading{
    color: #0075FF;
    font-size: 14px;
    margin-bottom: 20px;
}
.pricing-card .card_price{
    font-size: 14px;
    font-weight: 500;
    color: var(--pricing-text);
    margin-bottom: 0;
}
.pricing-card .card_price .value{
    font-size: 32px;
    color: var(--pricing-value);
}
.pricing-card .key_features {
    border-top: 1px solid #E3E7ED;
    padding-top: 20px;
}
.pricing-card.custom .key_features {
    border-color: #4C4E57;
}
.pricing-card .key_features h4{
    font-size: 16px;
}
.pricing-card.custom{
    background-color: var(--custom-pricing-bg);
    color: var(--custom-pricing-text);
}
.pricing-card.custom .card_heading{
    color: var(--custom-card-heading);
}
.pricing-card.custom .contact-us{
    padding: 10px;
    width: 100%;
    color: var(--pricing-contact-btn-txt);
    background-color: var(--pricing-contact-btn-bg);
    display: block;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}
.pricing-card.custom .contact-us:hover{
    text-decoration: none;
}
.pricing-card .choose-plan-btn{
    width: 100%;
    color: var(--choose-plan-btn-txt);
    background-color: var(--choose-plan-btn);
    border-color: var(--choose-plan-btn);
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
}
.pricing-card.recomended .choose-plan-btn{
    background: #0075FF;
    border-color: #0075FF;
}
.pricing-card.recomended{
    border: 3px solid #0075FF;
    position: relative;
}
.pricing-card.recomended .recomended-badge{
    position: absolute;
    background-color: #0075FF;
    color: #fff;
    border-bottom-left-radius: 8px;
    /* border-top-right-radius: 8px; */
    padding: 4px 10px;
    top: 0;
    right: 0;
}
#pricing-tabs{
    background-color: var(--pricing-tabs);
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    max-width: fit-content;
}
#pricing-tabs .nav-link{
    border: none;
    color: var(--pricing-tabs-color);
    background: transparent;
    cursor: pointer;
}
#pricing-tabs .nav-link.active{
    background-color: #0075FF;
    color: #fff;
}
/* Plagiarism checker pricing card */
#pills-plagiarism-checker .feature_detail{
    border-bottom: 1px solid #E3E7ED;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
#pills-plagiarism-checker .feature {
    margin: 10px 0;
}
#pills-plagiarism-checker .custom-dropdown .dropdown-menu{
    width: 222px;
}
.price_section .save-badge{
    background-color: #52CD74;
    color: #fff;
    padding: 2px 5px;
}
.ar_benefit{
    color: #52CD74;
}
.ar_benefit.hide{
    display: none;
}
/* IMAGE SEARCH CSS */
#pills-image-search .custom-dropdown .btn{
    width: 190px;
}
#pills-image-search .feature_detail{
    border-bottom: 1px solid #E3E7ED;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
#pills-da-checker .feature_detail,
#pills-img-to-txt .feature_detail,
#pills-paraphraser .feature_detail{
    border-bottom: 1px solid #E3E7ED;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
@media screen and (max-width:992px) {
    .auto-renewal-toggler{
        margin: auto;
    }
}

/* Page Content css */
.all-feature-list{
    background-color: var(--all-features-bg);
    color: var(--all-features-txt);
    border: 1px solid var(--all-features-border);
    border-radius: 10px;
}
.all-feature-list .point{
    margin-bottom: 12px;
}
/* FAQs */
.faq-item {
    padding: 10px 30px;
    background-color: white;
}

.faq-question {
    border: none;
    background: none;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
}
.faq-question h3{
    font-weight: 500;
    font-size: 16px!important;
}

.faq-icon {
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.2s;
    background-image: var(--accordion-close-img);
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
}
.collapsed .faq-icon {
    background-image: var(--accordion-open-img);
}

.card {
    border: none;
    border-radius: 0;
    background-color: var(--all-features-bg) !important;
    color: var(--all-features-txt) !important;
}
.faq-question h3{
    color: var(--all-features-txt) !important;
}

.faqs{
    border: 1px solid var(--all-features-border);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-content h2{
    color: var(--text-color);
}

.card-header {
    background-color: var(--all-features-bg);
    border: none;
    padding-left: 0;
    padding-right: 0;
}

.faq-answer {
    border-bottom: 1px solid var(--all-features-border);
    padding: 0;
    padding-bottom: 1rem;
}
#Mobile-tab-nav{
    width: 100%!important;
}
.free-tag{
    background-color: #0075FF;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 10px;
    margin-right: 10px;
    color: #fff;
}
.cp{cursor: pointer;}



.dnav-section {
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 15px 15px 15px 15px;
    border-bottom: 1px solid #E7E7E7;
}
.logo img {
    height: 28px;
}
.inner-mode-nav {
    text-align: right;
}
a.adsFreeBtn {
    background: #000 url(../pro-img/ad-free-icon.svg) no-repeat;
    background-size: 22px auto;
    background-position: 8px center;
    display: inline-block;
    font-weight: bold;
    color: #fff;
    padding: 5px 15px 5px 40px;
    margin-right: 12px;
}

.switch-section {
    position: relative;
    top: 7px;
}
span.mode_text {
    font-weight: bold;
    display: inline-block;
    position: relative;
    top: -5px;
    margin-right: 4px;
}
.mode-nav .switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 22px;
    margin-bottom: 0;
}

label {
    margin: 0px;
}
.mode-nav .switch input {
    display: none;
}
.mode-nav .slider.round {
    border-radius: 0;
}
.mode-nav .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d4d4d4;
    -webkit-transition: .4s;
    transition: .4s;
}
.mode-nav .slider.round:before {
    border-radius: 0;
}
.mode-nav .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 1px;
    background-color: #fff;
}
.mode-nav input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
    background: #573E92;
    left: 3px;
}
span.mode-sign {
    background: url(../pro-img/light-mode.svg) no-repeat;
    display: inline-block;
    height: 22px;
    width: 22px;
    margin-left: 5px;
    background-size: 100%;
}
.dash_lang {
    position: relative;
    margin-left: 15px;
}
.dash_lang button.dropdown-toggle {
    background: none;
    color: #000;
    font-weight: bold;
    border-radius: 0px;
    border: 1px solid #d4d5dc;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 14px !important;
}
.dash_lang button.dropdown-toggle:focus {
    outline: none;
}
.dash_lang button.dropdown-toggle img {
    margin-right: 5px;
}
.dash_lang .dropdown-menu {
    background: #fff;
}
.lang_drop {
    left: auto !important;
    right: -5.6rem;
    font-weight: 600;
    color: #404040;
    width: 20rem;
}
.lang_drop .col-6 a {
    font-size: 12px;
    color: #000;
}
.lang_drop .col-6 a {
    font-size: 11px;
}
.lang_drop .col-6 a:hover{text-decoration:none}
.lang_drop .col-6 a img {
    width: 20px;
    height: 20px;
}
.lang_drop .dropdown-divider {
    border-color: #e3e7ed;
}
.accountDD {
    position: relative;
    margin-left: 15px;
}
.accountDD a {
    color: #000;
    display: block;
}
.accountDD a.loginUrl {
    color: #000;
    display: block;
    width: 75px;
    text-align: center;
    border: 1px solid #c4c3c3;
    padding: 5px 0;
    font-weight: bold;
    border-radius: 0px;
    text-decoration: none
}
.accountDD a.loginUrl {
    width: 100px;
}
button:focus {
    outline: none !important;
    box-shadow: none !important
}

.bg_f6f8fa {
    background-color: #F6F8FA;
}
.main_fpt {
    border-top: 1px solid #E3E7ED;
    background-color: #ecedef
}
.main_fpt .sub_area {
    width: 1215px;
}
.sub_area .fs22 {
    font-size: 22px;
}
.fw_700 {
    font-weight: 700;
}
.main_area {
    max-width: 1200px;
}
.border1 {
    border: 1px solid #E3E7ED;
}
.sub_headings {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.footer_links {
    color: #000;
    font-size: 13px;
    font-weight: 600;
}
.footer_links:hover{
    text-decoration: none
}
.fpop_tools a {
    width: 60px;
    height: 60px;
    background-color: #9FAEB6;
}
.f_api {
    background-image: url(../pro-img/f_api.svg);
}
.f_wordpress {
    background-image: url(../pro-img/f_wordpress.svg);
}
.fpop_tools a span {
    width: 37px;
    height: 37px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.social_box {
    margin-top: 20px;
    margin-bottom: 20px;
}
.sub_facebook {
    background-image: url(../pro-img/sub_facebook.svg);
}
.sub_twitter {
    background-image: url(../pro-img/sub_twitter.svg);
}
.sub_linkedin {
    background-image: url(../pro-img/sub_linkedin.svg);
}
.sub_youtube {
    background-image: url(../pro-img/sub_youtube.svg);
}
.sub_pinterest {
    background-image: url(../pro-img/sub_pinterest.svg);
}
.social_box a {
    width: 38px;
    height: 38px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media screen and (max-width: 767px) {
        body .logo img {
        height: 21px;
    }
        body .dnav-section {
        padding: 15px 10px 10px 10px;
        display: block;
        /* position: relative; */
    }
    .top-external-links, a.teamBtn, .swith-and-drop .dash_lang, .accountDD, span.mode_text, a.adsFreeBtn {
        display: none !important;
    }
    .switch-section {
        position: absolute;
        top: 20px !important;
        right: 55px;
    }
    span.mode-sign {
        height: 20px;
        width: 20px;
    }
        body nav.navbar.navbar-expand-md {
        padding: 15px 0 0 0;
        display: block;
        text-align: right;
    }
        button.navbar-toggler {
        background: #573E92;
        padding: 5px 7px;
        top: -24px;
        position: absolute;
        right: 0;
    }
    .navbar-dark .navbar-toggler-icon {
        background-image: url(data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E) !important;
    }
    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
        .main_fpt .sub_area div.d-inline-block {
        display: block !important;
        text-align: center !important;
    }
}