/*===================================== 
Font Family 
--------------
font-family: 'Poppins', sans-serif;
font-weight: 300 | 400 | 500 | 600 | 700;

======================================*/

/*======================================
1. GENERAL CSS Start
======================================*/
html,
body {
  height: 100%;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

a {
  color: #222;
  outline: 0 none;
  text-decoration: none;
  transition: all 0.5s ease;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: 0 none;
}

a:active,
a:hover,
a:focus {
  color: #ff5858;
  transition: all 0.5s ease;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ff5858 !important;
}
button,
button:hover {
  transition: all 0.5s ease;
}
button,
input,
optgroup,
select,
textarea {
  outline: none !important;
}
img {
  max-width: 100%;
}
::selection {
  background: #ff5858;
  color: #fff;
}

::-moz-selection {
  background: #ff5858;
  color: #fff;
}

::-webkit-selection {
  background: #ff5858;
  color: #fff;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.corefeatures,
.formfeatures,
.corefeatureslt,
.formfeatureslt {
  display: none;
}
.loading-area {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  overflow: hidden;
}
.loading-box {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 9999;
}
.loading-pic {
  width: 100%;
  position: absolute;
  top: 50%;
  z-index: 99999;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.loading-pic i {
  color: #ff5858;
}
.loading-pic img {
  display: inline-block;
}
.scroltop {
  position: absolute;
  left: 50%;
  height: 50px;
  width: 50px;
  background: #ff5858;
  border: 0;
  padding: 0 0 25px 0;
  cursor: pointer;
  color: #fff;
  border-radius: 50%;
  transition: all 0.2s linear;
  z-index: 0;
  margin-left: -25px;
  margin-top: -25px;
  font-size: 22px;
}
.scroltop:hover {
  transition: all 0.2s linear;
  box-shadow: 0 0px 10px rgba(255, 88, 88, 0.8);
}
/*======================================
2. HEADING & TITLE 
======================================*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
  vertical-align: middle;
}

h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 32px;
}
h3,
.h3 {
  font-size: 22px;
  font-weight: 500;
}
h4,
.h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
h5,
.h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
h6,
.h6 {
  font-size: 16px;
  font-weight: 500;
}

p {
  line-height: 26px;
  margin-bottom: 1.5rem;
}
/*-------------------------------------
 text size
------------------------------------ */
.font-12 {
  font-size: 12px;
  line-height: 18px;
}
.font-16 {
  font-size: 16px;
  line-height: 20px;
}
.font-18 {
  font-size: 18px;
  line-height: 24px;
}
.font-20 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}
.font-22 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
}
.font-24 {
  font-size: 24px;
  line-height: 30px;
}
.font-28 {
  font-size: 28px;
  line-height: 35px;
  font-weight: 600;
}
.font-30 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 500;
}
.font-40 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
}
.font-45 {
  font-size: 45px;
  line-height: 45px;
  font-weight: 700;
}
.font-50 {
  font-size: 50px;
  line-height: 65px;
  font-weight: 700;
}

.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-lowecase {
  text-transform: lowercase;
}

.font-light {
  font-weight: 300;
}
.font-bold {
  font-weight: 700;
}
.font-medium,
strong {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
/*-------------------------------------
	Color 
--------------------------------------- */
/*-------------------------------------
	1. text
-------------------------------------*/
.text-white {
  color: #fff !important;
}
.text-primary {
  color: #3d44b4 !important;
}
.text-orange {
  color: #ff5858 !important;
}
.text-gray {
  color: #686c72 !important;
}
.text-dark {
  color: #222222 !important;
}

/*-------------------------------------
	2. background color
-------------------------------------*/
.bg-transparent {
  background-color: transparent;
}
.bg-primary {
  background-color: #3d44b4 !important;
}
.bg-white {
  background-color: #fff;
}
.bg-light {
  background-color: #f9fafc !important;
}
/*-------------------------------------
	 Buttons 
--------------------------------------- */
.btn,
.edd-manage-license-back,
.search-submit,
a.edd-add-to-cart .edd-add-to-cart-label {
  font-size: 16px;
  font-weight: 400;
  border: 0;
  padding: 6px 25px;
  transition: all 0.5s ease;
  font-family: "Poppins", sans-serif;
  transition: all 0.2s linear;
  position: relative;
  border-radius: 50px;
}
.btn:hover,
.btn:focus,
.btn.focus,
.edd-manage-license-back:hover,
.edd-manage-license-back:focus,
a.edd-add-to-cart .edd-add-to-cart-label:hover,
a.edd-add-to-cart .edd-add-to-cart-label:focus {
  text-decoration: none;
  transition: all 0.2s linear;
  box-shadow: none;
}
.btn .fa-arrow-right,
.ticketlist .btn i {
  font-size: 14px;
  margin-left: 5px;
  transition: all 0.2s linear;
  position: relative;
  right: 0;
}
.btn:hover .fa-arrow-right {
  right: -5px;
  transition: all 0.2s linear;
}
.btn-lg {
  font-size: 18px;
  padding: 15px 30px;
  min-width: 220px;
}
.btn-lg .fa-arrow-right {
  font-size: 16px;
  margin-left: 15px;
}
.btn-default {
  background: #fff;
  color: #222222;
  border: 1px solid #dadada;
  font-size: 14px;
  padding: 6px 18px;
  font-weight: 500;
  margin: 0 5px;
}
.btn-default:hover,
.btn-default:focus,
.btn-default.focus {
  background: #ff5858;
  color: #fff;
  border: 1px solid #ff5858;
}
.btn-primary,
.search-submit {
  background: #ff5858;
  color: #fff;
  box-shadow: 3px 3px 12px rgba(255, 88, 88, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  background: #3d44b4;
  color: #fff;
  box-shadow: 3px 3px 12px rgba(79, 89, 255, 0.28);
}
.btn-secondary,
a.edd-add-to-cart .edd-add-to-cart-label {
  background: #3d44b4;
  color: #fff;
  box-shadow: 3px 3px 12px rgba(79, 89, 255, 0.28);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  background: #ff5858;
  color: #fff;
  box-shadow: 3px 3px 12px rgba(255, 88, 88, 0.2);
}
.btn-white {
  background: #fff;
  color: #6c727e;
  box-shadow: 3px 3px 12px rgba(108, 114, 126, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  background: #3d44b4;
  color: #fff;
  box-shadow: 3px 3px 12px rgba(79, 89, 255, 0.28);
}
.section-title {
  text-align: center;
}
.ui-border {
  margin-bottom: 35px;
  position: relative;
}
.ui-border::after {
  position: absolute;
  content: "";
  background-color: #ff5858;
  width: 56px;
  height: 4px;
  left: 50%;
  bottom: -15px;
  margin-left: -28px;
}
.ui-border-1 {
  margin-bottom: 45px;
  position: relative;
}
.ui-border-1::after {
  position: absolute;
  content: "";
  background-color: #ff5858;
  width: 40px;
  height: 5px;
  left: 0;
  bottom: -15px;
}
.custom-content a {
  color: #ff5858 !important;
}
.custom-content ul li {
  margin: 15px 0;
  padding-left: 25px;
  position: relative;
  text-align: left;
}
.custom-content ul {
  width: 100%;
}
.custom-content ul li:first-child,
.custom-content ol li:first-child {
  margin-top: 0px;
}
.custom-content ul li > p,
.custom-content ol li > p {
  margin: 0;
  line-height: inherit;
}
.custom-content ul li:before {
  content: "\f058";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 600;
  position: absolute;
  color: #ff5858;
  left: 0;
}
.custom-content ol {
  list-style-type: decimal;
  padding-left: 15px;
}
.custom-content h1,
.custom-content h2,
.custom-content h3,
.custom-content h4,
.custom-content h5,
.custom-content h6 {
  margin-bottom: 0.8rem;
}
.custom-content ol li {
  margin: 15px 0;
  position: relative;
  text-align: left;
}
.custom-content h3 {
  font-size: 20px;
  color: #ff5858 !important;
  margin-bottom: 15px;
  display: block;
  width: 100%;
  margin-top: 15px;
}
.custom-content p {
  width: 100%;
}
.slick-list .slick-slide .slide p {
  font-size: 15px;
}
.cta-section .get-started div {
  line-height: 38px;
}
ul.index-list {
  list-style-type: inherit;
  margin-left: 15px;
}

.gform_wrapper {
  max-width: 1140px;
  margin: 0 auto;
}
.gform_wrapper form {
  background: #fff;
  border: 1px solid #eaeaea;
  padding: 50px 70px;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  max-width: 630px;
  margin: 0 auto;
}
.gform_wrapper .ginput_container .medium,
.gform_wrapper .ginput_container .large {
  border: 2px solid #e2e2e2;
  border-radius: 30px;
  padding: 15px 25px !important;
  box-shadow: none;
  font-family: inherit !important;
  color: #222222 !important;
  background: #fff;
  width: 100%;
}
.gform_wrapper ul li.gfield {
  padding: 0 !important;
}
.gform_wrapper .top_label .gfield_label,
.gform_wrapper legend.gfield_label {
  font-weight: normal;
  margin-left: 30px;
}
.gform_wrapper .gform_footer {
  text-align: center;
}
.gform_wrapper .gform_footer .gform_button,
#edd-purchase-button {
  padding: 15px 35px;
  font-size: 18px;
  min-width: 220px;
  line-height: 18px;
}
.gform_wrapper.gform_validation_error .top_label input.medium,
.gform_wrapper.gform_validation_error .top_label select.medium {
  width: 100%;
}
.gform_wrapper input[type="submit"],
#edd-purchase-button {
  font-size: 16px;
  font-weight: 400;
  border: 0;
  padding: 6px 25px;
  transition: all 0.5s ease;
  font-family: "Poppins", sans-serif;
  transition: all 0.2s linear;
  position: relative;
  border-radius: 50px;
  background: #ff5858;
  cursor: pointer;
  color: #fff;
  box-shadow: 3px 3px 12px rgb(255 88 88 / 20%);
}
.gform_wrapper input[type="submit"]:hover {
  text-decoration: none;
  transition: all 0.2s linear;
  box-shadow: none;
  background: #3d44b4;
  color: #fff;
  box-shadow: 3px 3px 12px rgb(79 89 255 / 28%);
}
body .gform_wrapper ul li.gfield {
  margin-top: 0px;
}
.custom-content #gform_1 ul li {
  margin: 8px 0px;
}
.gform_wrapper li#field_1_1 {
  text-align: center;
}
.custom-content p a {
  color: #ff5858;
}
div#gform_confirmation_wrapper_1 {
  text-align: center;
  margin: 0px auto;
  font-size: 22px;
}
.product-section .plugin-price {
  font-size: 32px;
}
.product-section .awards {
  margin: 20px 0;
  text-align: center;
}
.product-section .package {
  font-size: 18px;
}
.product-section .package .fas.fa-check-circle {
  color: #72b12f;
  margin-right: 5px;
}
.product-section .plugin-name {
  font-size: 28px;
  line-height: 40px;
}
h4.h4-center {
  text-align: center;
  margin-bottom: 20px;
}
.testimonials-bg {
  background: #f7ecec !important;
}
.testimonial-section.testimonials-bg .quotes {
  color: #000;
  font-weight: 300;
}
.testimonial-section.testimonials-bg .blockquote .blockquote-footer {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}
.testimonial-section.testimonials-bg .blockquote .fa-star {
  color: #000;
}
.product-info .icon-box {
  height: 85px;
  width: 85px;
  margin: 0 0 5px 0;
}
.product-info .icon-box img {
  max-width: 50px;
}
.product-price .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e9edf2;
}
.product-price .price-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  background-color: #f4f5f9;
}
.single article.post.post-detail ul,
.single article.post.post-detail ol {
  margin-top: 15px;
}
.class-font-license {
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  background: #eff3f7;
  padding: 15px;
}
.spec-class {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  display: block;
}
h3.class-font-34 {
  font-size: 34px;
  font-weight: 700;
}
.font-line-height {
  line-height: 42px;
  margin-top: 30px;
}

.plugin-description p {
  text-align: center;
  font-size: 16px;
}
.new-points ul li h4 span {
  font-size: 12px;
}
.nav-tabs {
  border-bottom: 0;
  justify-content: center;
  display: inline-flex;
  background: #dee2e6;
  border-radius: 30px;
}
.nav-tabs .nav-link {
  margin-bottom: 0;
  background: 0 0;
  border: 0;
  border-radius: 30px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #333;
  padding: 0.6rem 1.8rem;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #fff;
  background-color: #ff5858;
  box-shadow: 0px 5px 7px rgba(82, 67, 194, 0.230196);
}
.pricing-plan-row nav {
  width: 100%;
}
.price-table .pricing-plan-row .card {
  border: 0;
  border-radius: 8px;
  color: #92969d;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 14px;
  font-weight: 400;
  /* filter: drop-shadow(0px 13.8877px 16.0338px rgba(0, 0, 0, 0.3)); */

  border: 1px solid #e7e7e7;
  box-shadow: 0px 5px 40px 8px rgba(34, 34, 34, 0.1);
  border-radius: 30px;
}
.price-table .pricing-plan-row .card .card-body h4 {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}
.price-table .pricing-plan-row .card .card-body {
  padding: 3rem 2.5rem;
  text-align: center;
}
.price-table .pricing-plan-row .card .card-body small {
  font-size: 14px;
  margin-left: 5px;
  text-align: left;
}
.price-table .pricing-plan-row .card .card-body h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 10px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-table .pricing-plan-row .card .badge.bg-info {
  background-color: #e5f4ff !important;
  color: #0c77de;
  padding: 12px;
  font-size: 15px;
  border-radius: 20px;
  position: absolute;
  right: 15px;
  top: 15px;
}
/* .price-table .pricing-plan-row .card.popular {
  transform: translateY(-20px);
  filter: drop-shadow(0px 22.8877px 61.0338px rgba(0, 0, 0, 0.1));
} */
.price-table .pricing-plan-row .card .list-unstyled li {
  line-height: 32px;
}
.price-table .pricing-plan-row .card .list-unstyled li i {
  margin-right: 5px;
}
.price-table .pricing-plan-row .card.basic i,
.price-table .pricing-plan-row .card.basic h4 {
  color: #3d44b4;
}
.price-table .pricing-plan-row .card.premium i,
.price-table .pricing-plan-row .card.premium h4 {
  color: #ff5858;
}
.price-table .pricing-plan-row .card.enterprise i,
.price-table .pricing-plan-row .card.enterprise h4 {
  color: #ff8c05;
}
.price-table .pricing-plan-row .download-btn a img {
  margin-top: 0.25rem;
}
.basic .card-body ul li,
.premium .card-body ul li,
.enterprise .card-body ul li,
.basic .card-body p,
.premium .card-body p,
.enterprise .card-body p {
  color: #000;
}
.pricing-faq-section .faq-text a {
  color: #ff5858;
}
.pricing-faq-section .faq-text a:hover {
  color: #3d44b4;
}
.edd-account-pending a {
  color: #f15b5b;
}
.icon-box.pink {
  background: #fcefff;
  border: 2px solid #eddcf1;
}
.product-description .new-points ul li a {
  color: #ff5858;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
  background-position: center;
}
.testimonial-section.product-testimonial #testimonials .row {
  display: flex !important;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-section.product-testimonial #testimonials {
  margin-bottom: 20px;
}
.chage-log-section h5 {
  font-weight: 600;
  margin-bottom: 20px;
}
.chage-log-section {
  min-height: 300px;
}
.chage-log-section li a {
  color: #ff5858;
}
.page-template-page-newpluginpage .functionality-section .row {
  justify-content: center;
}
.page-template-page-pricing
  .testimonial-section
  .rating-avatar-box
  .avatar-content
  h4,
.home .testimonial-section .rating-avatar-box .avatar-content h4 {
  text-align: left;
}
.page-template-page-pricing .testimonial-box .rating-avatar-box .avatar-image,
.home .testimonial-box .rating-avatar-box .avatar-image {
  width: 60px;
}
.page-id-437 .testimonial-section .testimonial-box.first-box .plugin-name {
  margin: 0 0 10px;
}
.page-id-437 .testimonial-section .testimonial-box.first-box .plugin-name h3 {
  margin: 0px;
}
.page-id-437 .testimonial-section .testimonial-box.first-box time {
  font-weight: 500;
}
.blog-pagination ul li {
  flex: 1;
}
.blog-pagination ul li .blog-prev {
  justify-content: flex-start;
}
.blog-pagination ul li .blog-next {
  justify-content: flex-end;
}

/* Submit Review Page CSS */

.page-id-5379 .product-section #gform_2 label.gfield_label.gform-field-label,
.page-id-5379 .product-section #gform_2 legend.gfield_label.gform-field-label {
  margin-left: 0%;
  font-weight: 600;
}

.page-id-5379 .product-section #gform_2 div#input_2_5 {
  margin-left: 2%;
}
.page-id-5379 .product-section #gform_2 .gform_footer.top_label {
  justify-content: center;
}

.page-id-5379 .product-section #gform_2 .gsurvey-rating label {
  line-height: 2.5;
  background-size: 35px;
  width: 35px;
  margin-right: 10px;
  color: transparent;
}
.page-id-5379
  .product-section
  #gform_2
  .ginput_container.gsurvey-rating-wrapper {
  margin-left: 2%;
}
.page-id-5379 .product-section #gform_2 .gchoice {
  margin-bottom: 1%;
}
.page-id-5379 div#gform_wrapper_2 {
  width: 100%;
}
.page-id-5379 .product-section form#gform_2 {
  max-width: 100%;
}
/* End */

/* to start left and right li in same line */
.page-template-page-newpluginpage .new-points .list-style li {
  min-height: unset;
}
.page-id-6018 a.wp-block-button__link.has-white-color.has-text-color.has-background.has-link-color.has-text-align-left.wp-element-button {
    color: #fff !important;
}
.home-banner .new-points .list-style li {
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
    text-align: left;
}
.home-banner .new-points h2
{
    font-weight: normal;
    font-size: 24px;
    margin: 15px 0px;
}
.home-banner ul.list-style
{
  margin-right: 111px;
}
@media (max-width: 1439px) {
  h1,
  .h1 {
    font-size: 34px;
  }
  h2,
  .h2 {
    font-size: 30px;
    line-height: 38px;
  }
  h3,
  .h3 {
    font-size: 20px;
  }
  h4,
  .h4 {
    font-size: 18px;
  }
  h5,
  .h5 {
    font-size: 16px;
  }
  .lead {
    font-size: 16px;
  }
  .font-20 {
    font-size: 18px;
  }
  .font-30 {
    font-size: 26px;
  }
  .font-50 {
    font-size: 36px;
    line-height: 45px;
  }
  .custom-font {
    font-size: 17px;
  }
  body {
    font-size: 14px;
  }
  .single h2,
  .single .h2 {
    font-size: 32px;
    line-height: 42px;
  }
  .single h3,
  .single .h3 {
    font-size: 27px;
    line-height: 38px;
  }
}
@media (max-width: 991px) {
  h1,
  .h1 {
    font-size: 32px;
  }
  h2,
  .h2 {
    font-size: 28px;
  }
  .font-50 {
    font-size: 35px;
    line-height: 45px;
  }
  .text-container {
    text-align: center;
  }
  .ui-border-1::after {
    left: 50%;
    margin-left: -20px;
  }
  .price-table .pricing-plan-row .card.popular {
    transform: scale(1);
  }
  .price-table .pricing-plan-row .tab-content .tab-pane .col {
    width: 100%;
    flex: 0 0 auto;
  }
  body.halloweeen .header-offer .container {
    flex-direction: column;
    gap: 10px;
  }
  header .navbar .nav-item a {
    color: #fff;
  }
  header .sub-menu .nav-item a {
    color: #222;
  }
}
/*======================================
1. GENERAL CSS End
======================================*/

/************************* 
YOU CAN WRIGHT CUSTOME CSS 
***************************/
/* Header CSS Start*/

@media (min-width: 1439px) {
  .container {
    max-width: 1356px;
  }
}
@media (min-width: 1379px) {
  .custom-width {
    max-width: inherit;
  }
}
@media (min-width: 1024px) {
  .custom-awards p {
    width: 390px;
  }
  h1.font-line-height
  {
    margin-right: 90px;
  }
  .custom-awards img {
    margin: 0px auto;
    text-align: center;
    display: block;
  }
  .custom-awards h3 {
    text-align: center;
    width: 390px;
    line-height: 32px;
    font-size: 26px;
  }
  .customers-section .award-icon {
    top: -64px !important;
  }
  .plugin-description h2 {
    font-size: 35px;
  }
}
.container-fluid {
  max-width: 1440px;
}
header {
  position: fixed;
  width: 100%;
  padding: 0px 0 5px;
  top: 0;
  z-index: 9999;
}
.header-contaner {
  padding-top: 5px;
}
.inner-page header {
  /*position: relative;
	padding: 5px 0;*/
  background: #fff;
}
header.sticky {
  position: fixed;
  background: #fff;
  z-index: 99;
  width: 100%;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
header.sticky .navbar-nav > .nav-item > a,
.inner-page header .navbar-nav > .nav-item > a {
  color: #222222;
}
.navbar {
  padding: 0;
}
.navbar-expand-lg .navbar-collapse {
  justify-content: flex-end;
}
.nav-item a {
  font-size: 18px;
  color: #222;
  padding: 25px 20px;
  display: inline-block;
}

.nav-item a:hover,
.inner-page header .navbar-nav > .nav-item > a:hover {
  color: #ff5858;
}
.sub-menu {
  position: absolute;
  background: #fff;
  z-index: 999;
  top: 100%;
  display: none;
  padding: 15px;
  max-width: 240px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}
.sub-menu::before {
  content: "";
  border-top: 0;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  position: absolute;
  left: 25px;
  top: -7px;
}
.menu-item-has-children:hover > .sub-menu {
  display: block;
}
.menu-item-has-children .icon {
  display: none;
}
.menu-item-has-children > a::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  top: 48%;
  position: absolute;
}
.sub-menu .nav-item a {
  font-size: 15px;
  padding: 8px 20px;
  position: relative;
  color: #222;
}
header .sub-menu .nav-item a:hover {
  color: #ff5858;
}
.sub-menu .nav-item a::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
  position: absolute;
  left: 5px;
  top: 15px;
}
@media (max-width: 1439px) {
  .nav-item a {
    font-size: 16px;
    padding: 25px 18px;
  }
}
@media (max-width: 1024px) {
  .ticketlist table {
    overflow-x: auto;
    display: block;
  }
  /* to start left and right li in same line */
  .page-template-page-newpluginpage .new-points .list-style li {
    min-height: 130px;
  }
}
@media (max-width: 991px) {
  header .row > div,
  header nav.navbar {
    position: static;
  }

  .logo img {
    width: 200px;
  }
  .navbar {
    justify-content: flex-end;
  }
  .navbar-toggler {
    font-size: 25px;
    padding: 0;
  }
  .navbar-collapse {
    position: absolute;
    width: 100%;
    background: #202132;
    top: 85px;
    right: 0;
    z-index: 999;
  }
  header.sticky .navbar-collapse {
    top: 60px;
  }
  #navbar > .btn {
    display: none;
  }
  .nav-item a {
    font-size: 16px;
    padding: 20px;
    display: block;
  }
  .menu-item-has-children > a::after {
    display: none;
  }
  .menu-item-has-children .icon {
    display: flex;
    right: 0;
    top: 0;
    width: 50px;
    height: 65px;
    position: absolute;
    z-index: 99;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.05);
  }
  .menu-item-has-children .icon.open::after {
    content: "\f068";
  }
  .menu-item-has-children .icon::after {
    display: inline-block;
    color: #fff;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "\f067";
    font-family: "Font Awesome\ 5 Free";
    font-weight: 600;
  }
  li.menu-item.nav-item {
    border-top: 1px solid #3d3d3d;
  }
  li.menu-item.nav-item.menu-item-has-children {
    position: relative;
  }
  .menu-item-has-children:hover > .sub-menu {
    display: none;
  }
  .sub-menu {
    position: relative;
    padding: 0;
    max-width: 100%;
    box-shadow: none;
  }
  .sub-menu::before {
    display: none;
  }
  .sub-menu .nav-item {
    width: 100%;
  }
  .sub-menu .nav-item a {
    padding: 15px 40px;
  }
  .sub-menu .nav-item a::before {
    left: 15px;
    top: 22px;
  }
  header.sticky .navbar-nav > .nav-item > a {
    padding: 20px;
    color: #fff;
  }
  header.sticky .sub-menu .nav-item a {
    padding: 15px 40px;
    color: #fff;
  }
  .navbar-toggler.open .fa-bars::before {
    content: "\f00d";
    transition: all 0.5s ease;
  }
  header.header-pricing #navbar > .btn {
    display: inline-block;
  }
  header.header-pricing #navbar.login-btn-div {
    display: flex;
    position: unset;
    background: transparent;
  }
  header.header-pricing .logo {
    text-align: left;
  }
}
@media (max-width: 767px) {
  header {
    padding: 0px 0 10px;
  }
  .header-contaner {
    padding-top: 10px;
  }
  /*.navbar-toggler {
	position: absolute;
	right: 15px;
	top: 22px;
}*/
  header.sticky .navbar-toggler,
  .inner-page header .navbar-toggler {
    top: 15px;
  }
  .navbar-collapse {
    right: 0;
    top: 75px;
  }
  .logo {
    text-align: center;
  }
  header.sticky .sub-menu .nav-item a {
    font-size: 12px;
  }
}
/* Header CSS End*/

/* footer CSS Start */
.footer-logo {
  margin-top: 45px;
  padding: 0px 30px;
}
.flinks h5,
.social h5 {
  margin-bottom: 35px;
  position: relative;
}
.flinks h5::after,
.social h5::after {
  position: absolute;
  content: "";
  background-color: #ff5858;
  width: 36px;
  height: 4px;
  left: 0;
  bottom: -10px;
}

.flinks a {
  padding: 5px 0;
  display: block;
  font-weight: 500;
}

.social a {
  background: #c8cdd8;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  border-radius: 50%;
  color: #fff;
  margin-right: 20px;
}
.social a:hover {
  background: #ff5858;
  box-shadow: 0 0px 10px rgba(255, 88, 88, 0.8);
}
.copyright {
  color: #fff;
  font-weight: 700;
}
.site-credit {
  text-align: center;
  color: #fff;
}
.site-credit a {
  color: #fff;
}
.site-credit a:hover {
  color: #ff5858;
}
.disclaimer {
  text-align: center;
  color: #9ca0d6;
  background: #353cac;
  padding: 8px 0;
  font-size: 12px;
}
@media (max-width: 1439px) {
  .social a {
    margin-right: 10px;
  }
}
@media (max-width: 991px) {
  .flinks {
    margin-left: 0;
    margin-bottom: 25px;
  }
  .footer-logo {
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
  }
  .footer-logo img {
    max-width: 350px;
  }
  .site-credit,
  .copyright {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .flinks,
  .social {
    text-align: center;
  }
  .footer-logo img {
    max-width: 250px;
  }
  .flinks h5::after,
  .social h5::after {
    left: 50%;
    margin-left: -18px;
  }
  .pipe {
    display: block;
    height: 0;
  }
}
/* footer CSS End */

.hero-banner {
  padding: 100px 0 30px 0;
  background-image: url("../images/banner-bg.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto;
  display: flex;
  align-items: center;
}
.slider-image {
  position: relative;
}

.slider-image .icon {
  margin: 20px 0;
}
.slider-image .caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 640px;
}
.slider-image .caption h4 {
  font-size: 22px;
  text-align: center;
  line-height: 28px;
  margin-bottom: 0px;
}
.hero-banner .slick-dots {
  position: absolute;
  right: -30px;
  top: 38%;
}
.hero-banner .slick-dots li button {
  background: none;
  border: 0;
  text-indent: -9999px;
  width: 0;
  height: 0;
  padding: 0;
}
.hero-banner .slick-dots li {
  background: #fff;
  border: 0;
  text-indent: -9999px;
  width: 8px;
  height: 8px;
  padding: 0;
  margin: 10px 0;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.5s;
}
.hero-banner .slick-dots li.slick-active {
  background: #ff5858;
  height: 25px;
  transition: all 0.5s;
}
.hero-banner .slider-image .bg-round {
  transition: all 1.5s;
}
.hero-banner .slick-active .slider-image .bg-round {
  transform: rotate(180deg);
}
.hero-banner .slider-caption ul li a:hover {
  color: #222222;
  cursor: default;
}
.hero-banner .woocommerce li.active a,
.hero-banner .woocommerce li.active a:hover,
.hero-banner .woocommerce .caption h4,
.hero-banner .woocommerce .slider-caption h4 {
  color: #ff5858;
}
.hero-banner .elemetor li.active a,
.hero-banner .elemetor li.active a:hover,
.hero-banner .elemetor .caption h4,
.hero-banner .elemetor .slider-caption h4 {
  color: #b10e71;
}
.hero-banner .contact-form li.active a,
.hero-banner .contact-form li.active a:hover,
.hero-banner .contact-form .caption h4,
.hero-banner .contact-form .slider-caption h4 {
  color: #14a098;
}
.hero-banner .gravity-form li.active a,
.hero-banner .gravity-form li.active a:hover,
.hero-banner .gravity-form .caption h4,
.hero-banner .gravity-form .slider-caption h4 {
  color: #3e1e99;
}
.hero-banner .wpform li.active a,
.hero-banner .wpform li.active a:hover,
.hero-banner .wpform .caption h4,
.hero-banner .wpform .slider-caption h4 {
  color: #e58647;
}
.hero-banner .ninja-forms li.active a,
.hero-banner .ninja-forms li.active a:hover,
.hero-banner .ninja-forms .caption h4,
.hero-banner .ninja-forms .slider-caption h4 {
  color: #414141;
}
.hero-banner .slider-caption ul,
.hero-banner .slider-caption h4,
.hero-banner .slider-caption li.active {
  position: relative;
}
.hero-banner .slider-caption ul::before {
  position: absolute;
  content: "";
  width: 3px;
  left: -22px;
  bottom: -30px;
}
.hero-banner .woocommerce .slider-caption ul::before {
  background: #ff5858;
  height: 326px;
}
.hero-banner .elemetor .slider-caption ul::before {
  background: #b10e71;
  height: 270px;
}
.hero-banner .contact-form .slider-caption ul::before {
  background: #14a098;
  height: 215px;
}
.hero-banner .gravity-form .slider-caption ul::before {
  background: #3e1e99;
  height: 160px;
}
.hero-banner .wpform .slider-caption ul::before {
  background: #e58647;
  height: 105px;
}
.hero-banner .ninja-forms .slider-caption ul::before {
  background: #414141;
  height: 50px;
}
.hero-banner .slider-caption h4::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 3px;
  left: -22px;
  bottom: 8px;
  border-radius: 0;
}
.hero-banner .slider-caption li.active::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 3px;
  left: -22px;
  top: 19px;
  border-radius: 0;
}
.hero-banner .woocommerce .slider-caption h4::before,
.hero-banner .woocommerce .slider-caption li.active::before {
  background: #ff5858;
}
.hero-banner .elemetor .slider-caption h4::before,
.hero-banner .elemetor .slider-caption li.active::before {
  background: #b10e71;
}
.hero-banner .contact-form .slider-caption h4::before,
.hero-banner .contact-form .slider-caption li.active::before {
  background: #14a098;
}
.hero-banner .gravity-form .slider-caption h4::before,
.hero-banner .gravity-form .slider-caption li.active::before {
  background: #3e1e99;
}
.hero-banner .wpform .slider-caption h4::before,
.hero-banner .wpform .slider-caption li.active::before {
  background: #e58647;
}
.hero-banner .ninja-forms .slider-caption h4::before,
.hero-banner .ninja-forms .slider-caption li.active::before {
  background: #414141;
}
.numbers .h4 {
  font-weight: 500;
  letter-spacing: 5px;
  opacity: 0.5;
}

.get-started {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.key-features {
  background-image: url("../images/circle-bg-1.png");
  background-position: center 200px;
  background-repeat: no-repeat;
  min-height: 800px;
}
.key-features .features-box {
  background: #fff;
  min-height: 145px;
  border-radius: 10px;
  margin: 1px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all 0.2s linear;
  cursor: pointer;
}
.key-features .features-box:hover {
  background: #3d44b4;
  color: #fff;
  transition: all 0.2s linear;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}
.key-features .features-box .icon img {
  transition: all 0.2s linear;
}
.key-features .features-box:hover .icon img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  transition: all 0.2s linear;
}
.key-features .features-box .tag {
  background: #ff5858;
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 10px;
  padding: 2px 10px;
  font-size: 10px;
  color: #fff;
}
.key-features .features-box .icon {
  margin: 20px 0;
}
.key-features .features-box .title {
  font-size: 14px;
  line-height: 16px;
}
.functionality-section {
  position: relative;
}
.functionality-section .container {
  position: relative;
  z-index: 1;
}
.functionality-section .content-box {
  padding: 50px;
  border-radius: 30px;
  text-align: center;
  transition: all 0.2s linear;
  margin: 0 15px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.functionality-section .content-box p {
  font-size: 16px;
  font-weight: 400;
}

.functionality-section::after {
  content: "";
  background-image: url("../images/circle-bg.png");
  width: 895px;
  height: 895px;
  position: absolute;
  left: -370px;
  top: 50px;
  z-index: 0;
}
.functionality-section .slick-dots {
  position: absolute;
  top: 35%;
  right: -30px;
}
.functionality-section .slick-dots li button {
  background: none;
  border: 0;
  text-indent: -9999px;
  width: 0;
  height: 0;
  padding: 0;
}
.functionality-section .slick-dots li {
  background: #ddd;
  border: 0;
  text-indent: -9999px;
  width: 8px;
  height: 8px;
  padding: 0;
  margin: 10px 0;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.5s;
}
.functionality-section .slick-dots li.slick-active {
  background: #ff5858;
  height: 25px;
  transition: all 0.5s;
}
.functionality-section .content-box .icon-box {
  background: #fff;
  border: 1px solid transparent;
}
.functionality-section .content-box.red .icon-box {
  border-color: #fee2e2;
  box-shadow: 5px 5px 35px rgba(255, 88, 88, 0.25);
}
.functionality-section .content-box.orange .icon-box {
  border-color: #fdeac1;
  box-shadow: 5px 5px 35px rgba(255, 140, 4, 0.25);
}
.functionality-section .content-box.blue .icon-box {
  border-color: #dde3ff;
  box-shadow: 5px 5px 35px rgba(105, 127, 225, 0.25);
}
.functionality-section .content-box.green .icon-box {
  border-color: #c6fae1;
  box-shadow: 5px 5px 35px rgba(40, 162, 103, 0.25);
}
.functionality-section .content-box.teal .icon-box {
  border-color: #c5eef7;
  box-shadow: 5px 5px 35px rgba(27, 169, 202, 0.25);
}
.functionality-section .content-box.purple .icon-box {
  border-color: #fcd9f2;
  box-shadow: 5px 5px 35px rgba(160, 92, 140, 0.25);
}

.functionality-section .content-box.red {
  background: #f7ecec;
}
.functionality-section .content-box.orange {
  background: #f6f0e6;
}
.functionality-section .content-box.blue {
  background: #e9ecf6;
}
.functionality-section .content-box.green {
  background: #e9f6f0;
}
.functionality-section .content-box.teal {
  background: #eef7f9;
}
.functionality-section .content-box.purple {
  background: #f9edf5;
}
.icon-box {
  display: inline-flex;
  height: 128px;
  width: 128px;
  margin-bottom: 25px;
  border-radius: 25px;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 0;
  transition: all 0.2s linear;
}
.icon-box.new-designs {
  height: 90px;
  width: 90px;
  margin-bottom: 15px;
}
.icon-box.new-designs img {
  width: 50px;
}
.content-box:hover .icon-box {
  top: -5px;
  transition: all 0.2s linear;
}
.icon-box.red {
  background: #ffefef;
  border: 2px solid #fee2e2;
}
.icon-box.orange {
  background: #fff4df;
  border: 2px solid #fdeac1;
}
.icon-box.blue {
  background: #ebefff;
  border: 2px solid #dde3ff;
}
.icon-box.green {
  background: #e1faee;
  border: 2px solid #c6fae1;
}
.icon-box.teal {
  background: #dff9ff;
  border: 2px solid #c5eef7;
}
.icon-box.purple {
  background: #ffebf9;
  border: 2px solid #fcd9f2;
}

.essential-features {
  background-image: url("../images/circle-bg.png");
  background-position: 130% 95%;
  background-repeat: no-repeat;
}
.essential-features .step-1::after,
.essential-features .step-3::after {
  position: absolute;
  content: "";
  background-image: url("../images/dotted-line-1.png");
  background-position: center;
  width: 317px;
  height: 220px;
  top: 85%;
  right: -150px;
}
.essential-features .step-2::after {
  position: absolute;
  content: "";
  background-image: url("../images/dotted-line-2.png");
  background-position: center;
  width: 317px;
  height: 220px;
  top: 80%;
  left: -150px;
}
.essential-features .text-container > p {
  font-size: 17px;
  line-height: 28px;
}
.benifit-section .content-box {
  padding: 0 25px;
}
.plugin-section,
.benifit-section {
  position: relative;
  overflow: hidden;
}
.plugin-section .container,
.benifit-section .container {
  position: relative;
  z-index: 1;
}
.plugin-section::before {
  content: "";
  background-image: url("../images/circle-bg.png");
  width: 895px;
  height: 895px;
  position: absolute;
  right: -370px;
  top: 100px;
  z-index: 0;
}
.plugin-section::after {
  content: "";
  background-image: url("../images/circle-bg.png");
  width: 895px;
  height: 895px;
  position: absolute;
  right: -370px;
  bottom: -100px;
  z-index: 0;
}
.benifit-section::before {
  content: "";
  background-image: url("../images/circle-bg.png");
  width: 800px;
  height: 800px;
  position: absolute;
  left: -200px;
  top: -100px;
  z-index: -1;
  background-size: cover;
}

.testimonial-section {
  position: relative;
}
.testimonial-section::after {
  content: "";
  background-image: url("../images/circle-bg.png");
  width: 750px;
  height: 750px;
  position: absolute;
  left: -280px;
  top: -220px;
  z-index: 0;
  background-size: cover;
  opacity: 0.1;
}
.testimonial-section .container {
  position: relative;
  z-index: 1;
}
.testimonial-section .slick-dots {
  position: relative;
  text-align: center;
  bottom: -20px;
}
.testimonial-section .slick-dots li button {
  background: none;
  border: 0;
  text-indent: -9999px;
  width: 0;
  height: 0;
  padding: 0;
}
.testimonial-section .slick-dots li {
  background: #fff;
  border: 0;
  text-indent: -9999px;
  width: 8px;
  height: 8px;
  padding: 0;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.5s;
  display: inline-block;
}
.testimonial-section .slick-dots li.slick-active {
  background: #ff5858;
  width: 25px;
  transition: all 0.5s;
}
.testimonial-section .slick-list {
  padding: 0 !important;
}
.testimonial-section .blockquote {
  padding: 0 15px;
  color: #fff;
}
.testimonial-section .quotes {
  padding: 0 30px;
  border: 1px solid #ff5858;
  display: flex;
  height: 200px;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  opacity: 1;
  font-weight: 400;
}
.testimonial-section .quotes::after {
  position: absolute;
  content: "";
  border-top: 8px solid #ff5858;
  border-bottom: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  bottom: -8px;
  left: 20px;
}
.testimonial-section .slick-center .quotes::after {
  border-top: 8px solid #ff5858;
}
.testimonial-section .quotes .fa-quote-right {
  font-size: 25px;
  margin-right: 15px;
  position: relative;
  top: -30px;
}
.testimonial-section .slick-center .quotes {
  border: 2px solid #ff5858;
  opacity: 1;
}
.testimonial-section .slick-center .quotes .fa-quote-right {
  color: #ff5858;
}
.testimonial-section .blockquote .blockquote-footer {
  font-size: 16px;
  color: #fff;
}
.testimonial-section .blockquote .blockquote-footer::before {
  content: "";
}
.testimonial-section .blockquote .fa-star {
  font-size: 14px;
}

/* inner page */
.inner-header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 99px;
}
.product-section {
  background-image: url("../images/circle-bg.png");
  background-position: -300px -300px;
  background-repeat: no-repeat;
}
.product-summery .reviews .fa-star {
  color: #ff5858;
}
/*.product-summery .product-info {
	border-radius: 20px;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.11);
}*/
.product-summery .product-price {
  border: 2px solid #eff3f7;
  border-radius: 20px;
  overflow: hidden;
}
.video-thumbs {
  position: relative;
}
.video-thumbs a .play-btn {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  background: rgba(255, 88, 88, 0.9);
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  transition: all 0.5s;
}
.video-thumbs a .play-btn i {
  font-size: 26px;
  color: #fff;
  line-height: 60px;
}
.video-thumbs a .play-btn:hover {
  box-shadow: 0 0px 10px rgba(255, 88, 88, 0.8);
  transition: all 0.5s;
}
.list-style li {
  margin: 20px 0;
  padding-left: 25px;
  position: relative;
  text-align: left;
}
.list-style li > p {
  margin: 0;
  line-height: inherit;
}
.list-style li:before {
  content: "\f058";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 600;
  position: absolute;
  color: #ff5858;
  left: 0;
}
.new-points .list-style li {
  margin: 35px 0;
  padding-left: 25px;
  position: relative;
  text-align: left;
}
.new-points .list-style li h4 {
  font-size: 22px;
  margin-bottom: 20px;
}
.page-template-page-plans .new-points .list-style li h4 {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 28px;
}
.new-points .list-style li > p {
  margin: 0;
  line-height: inherit;
}
.new-points .list-style li:before {
  content: "\f058";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 600;
  position: absolute;
  color: #ff5858;
  left: 0;
}
.page-template-page-plans .new-points .list-style li:before {
  top: 4px;
}

.accordion .card {
  border: none;
  margin-bottom: 1px;
}
.accordion .card .h2 {
  background: #f76666;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 20px;
  position: relative;
}
.accordion .card .h2.collapsed {
  background: #eef0f4;
  color: #222222;
  font-weight: 400;
}
.accordion .card .h2:after {
  content: "\f063";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 600;
  position: absolute;
  color: #fff;
  right: 10px;
}
.accordion .card .h2.collapsed:after {
  content: "\f061";
  color: #727475;
}
.accordion .card-body {
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #f76666;
}
.faq-section,
.how-it-work {
  position: relative;
  overflow: hidden;
}
.faq-section .container,
.how-it-work .container {
  position: relative;
  z-index: 1;
}
.faq-section::before {
  content: "";
  background-image: url("../images/circle-bg.png");
  width: 800px;
  height: 800px;
  position: absolute;
  left: -200px;
  top: -100px;
  z-index: -1;
  background-size: cover;
}
.product-description {
  background-image: url("../images/circle-bg.png");
  background-position: 130% 95%;
  background-repeat: no-repeat;
}
.how-it-work::before {
  content: "";
  background-image: url("../images/circle-bg.png");
  width: 895px;
  height: 895px;
  position: absolute;
  left: -370px;
  top: 100px;
  z-index: -1;
}
.how-it-work::after {
  content: "";
  background-image: url("../images/circle-bg.png");
  width: 895px;
  height: 895px;
  position: absolute;
  right: -370px;
  bottom: -100px;
  z-index: -1;
}

.newsletter-subscribe .get-started {
  display: block;
  border: 1px solid #eaeaea;
}
.newsletter-subscribe .get-started form .mc4wp-form-fields {
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-subscribe .get-started form .mc4wp-form-fields .fas.fa-arrow-right {
  display: none;
}
.form-control {
  border: 2px solid #e2e2e2;
  border-radius: 30px;
  padding: 15px 25px;
}
.form-control:focus {
  border-color: #f7a4a4;
  box-shadow: 0 0 0 0.2rem rgba(255, 88, 88, 0.25);
}
.newsletter-subscribe .get-started form .form-control {
  margin: 0 15px;
}
.blog-posts {
  position: relative;
  overflow: hidden;
}
.blog-posts .container {
  position: relative;
  z-index: 1;
}
.blog-posts::before {
  content: "";
  background-image: url("../images/circle-bg.png");
  width: 895px;
  height: 895px;
  position: absolute;
  left: -250px;
  top: -120px;
  z-index: 0;
}
.blog-posts::after {
  content: "";
  background-image: url("../images/circle-bg.png");
  width: 895px;
  height: 895px;
  position: absolute;
  right: -370px;
  bottom: 0;
  z-index: 0;
}
article.post {
  position: relative;
  margin: 15px;
}
article.post .post-image {
  /*border: 1px solid #ececec;*/
  overflow: hidden;
}
article.post .post-image a {
  display: block;
}
/*article.post .post-image a:hover img{
	transform: scale(1.2) rotate(5deg);
	transition: all 0.5s;
}*/
article.post .post-image img {
  width: 100%;
  transition: all 0.5s;
  max-width: 100% !important;
}
article.post .post-date {
  position: absolute;
  top: 50px;
  left: -30px;
  background: #f0f0f0;
  padding: 5px;
  width: 60px;
}
article.post .post-date .bg-white {
  background: #fff;
  border: 1px solid #e5e5e5;
  text-align: center;
  padding: 5px;
}
article.post .post-date strong {
  font-size: 18px;
  font-weight: 600;
}
article.post .post-date span {
  font-size: 13px;
  text-transform: uppercase;
  line-height: 15px;
  display: block;
}
article.post .post-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
article.post .post-author .rounded {
  border-radius: 50% !important;
}
article.post .post-title {
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
}
article.post .read-more {
  color: #838383;
  font-size: 14px;
}
article.post .read-more:hover {
  color: #ff5858;
}
.plugins-box {
  text-align: center;
  padding: 25px;
  margin: 10px 0;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 200px;
}
.plugins-box.box1 {
  background: #fdebeb;
}
.plugins-box.box3 {
  background: #fbedf6;
}
.plugins-box.box4 {
  background: #e2f9f8;
}
.plugins-box.box5 {
  background: #efebfb;
}
.plugins-box.box6 {
  background: #fbf0e9;
}
article.post.post-detail .post-date {
  top: 110px;
}
article.post .social-share {
  position: absolute;
  left: -80px;
  top: 5px;
}
article.post .social-share li {
  margin-bottom: 10px;
}
article.post .social-share a {
  background: #ff5858;
  width: 40px;
  height: 40px;
  display: flex;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  border-radius: 50%;
  color: #fff;
  margin: 0 0 10px 0;
  justify-content: center;
  align-items: center;
}
article.post .social-share a:hover {
  background: #3d44b4;
  box-shadow: 0 0px 10px rgba(61, 68, 180, 0.8);
}
article.post blockquote {
  border-left: 5px solid #eaeaea;
  padding-left: 15px;
  font-size: 22px;
}
.comments-title {
  padding: 10px 20px;
  border-bottom: 1px solid #e3e3e3;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: normal;
}
.comment-list .comment {
  display: flex;
  margin: 15px 0;
  padding: 15px 20px;
  border-bottom: 1px solid #e3e3e3;
}
.comment-list .comment .avtar {
  width: 135px;
  margin-right: 20px;
}
.comment-list .comment .avtar img {
  border-radius: 50px;
}
.comment-metadata {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  position: absolute;
  right: 0;
  top: 0;
}
.comment-metadata .author {
  font-size: 18px;
  font-weight: 500;
}
.comment-metadata time {
  color: #959595;
}
.comment-content p {
  font-size: 14px;
  margin-bottom: 10px;
}
.comment-respond {
  margin-top: 25px;
}
.comment-list .comment .comment-body {
  width: 100%;
  padding-left: 80px;
  position: relative;
}
.comment-list .comment .comment-body .avatar {
  position: absolute;
  left: 0;
  border-radius: 50%;
}
.comment-author .says,
.comment-metadata .edit-link {
  display: none;
}
.comment-content {
  margin-top: 10px;
}
.comment-reply-title {
  font-weight: normal;
  font-size: 22px;
  margin-bottom: 10px;
}
#commentform label {
  margin-left: 25px;
}
#commentform #author,
#commentform #email,
#commentform #url {
  border: 2px solid #e2e2e2;
  border-radius: 30px;
  padding: 15px 25px;
  width: 100%;
}
#wp-comment-cookies-consent {
  margin-left: 25px;
}
#comment-form-cookies-consent label {
  margin: 0;
}
.comment-form-comment #comment {
  border: 2px solid #e2e2e2;
  border-radius: 30px;
  padding: 15px 25px;
  width: 100%;
}
.comment-respond .form-submit .submit {
  font-size: 18px;
  font-weight: 400;
  border: 0;
  padding: 15px 30px;
  transition: all 0.5s ease;
  font-family: "Poppins", sans-serif;
  transition: all 0.2s linear;
  position: relative;
  border-radius: 50px;
  background: #ff5858;
  color: #fff;
  max-width: 220px;
  box-shadow: 3px 3px 12px rgba(255, 88, 88, 0.2);
  cursor: pointer;
}
.comment-respond .form-submit .submit:hover,
.comment-respond .form-submit .submit:focus,
.comment-respond .form-submit .submit:active {
  background: #3d44b4;
  color: #fff;
  box-shadow: 3px 3px 12px rgba(79, 89, 255, 0.28);
}
.blog-pagination {
  padding: 30px 0;
  border-bottom: 1px solid #e3e3e3;
  border-top: 1px solid #e3e3e3;
}
.blog-pagination ul {
  display: flex;
}
.blog-pagination ul li {
  padding: 0 15px;
  position: relative;
  border-left: 1px solid #e3e3e3;
}
.blog-pagination ul li:first-child {
  border-left: 0;
}
.blog-prev,
.blog-next {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.blog-pagination ul li .content {
  padding: 0 15px;
}
.blog-pagination ul li .blog-next .content {
  text-align: right;
}
.blog-pagination .blog-image {
  width: 180px;
}
.blog-pagination ul li .content h4 {
  margin-bottom: 0;
}
.blog-pagination ul li .content a.link {
  color: #b0aeae;
  text-transform: uppercase;
  margin: 10px 0;
}
.featured-post .feature-list {
  padding: 0 10px;
  border: 1px solid #ececec;
}
.featured-post .feature-list li {
  padding: 10px 5px;
  border-bottom: 1px solid #ececec;
  font-weight: 500;
}
.featured-post .feature-list li:last-child {
  border-bottom: 0;
}
.reviews-section .container {
  position: relative;
}
.reviews-section {
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: "";
  background-image: url("../images/circle-bg.png");
  width: 895px;
  height: 895px;
  position: absolute;
  left: -250px;
  top: -120px;
  z-index: 0;
}
.reviews-section .social-share {
  position: absolute;
  left: 0;
  top: 5px;
}
.reviews-section .social-share li {
  margin-bottom: 10px;
}
.reviews-section .social-share a {
  background: #ff5858;
  width: 40px;
  height: 40px;
  display: flex;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  border-radius: 50%;
  color: #fff;
  margin: 0 0 10px 0;
  justify-content: center;
  align-items: center;
}
.reviews-section .social-share a:hover {
  background: #3d44b4;
  box-shadow: 0 0px 10px rgba(61, 68, 180, 0.8);
}
.reviews-section .reviews-wrap {
  padding: 30px 10px;
  border-top: 1px solid #e3e3e3;
  margin: 0;
}
.reviews-section .reviews-wrap .avtar img {
  border-radius: 50px;
}
.review-star .reviews {
  color: #ff5858;
}
.review-star {
  text-align: right;
}
.review-star time {
  color: #959595;
  text-transform: uppercase;
}
.reviews-section .reviews-wrap .review-title {
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 5px;
}
.reviews-section .reviews-wrap .author {
  color: #ff5858;
  font-weight: 600;
  font-size: 20px;
}
.reviews-section .reviews-wrap .review-body {
  margin-left: -20px;
}

.sidebar-left {
  position: sticky;
  top: 50px;
}
.page-template-page-myaccount .docs-nav {
  background: #fbedf6;
  border-radius: 20px;
  padding: 5px 20px;
  border: 1px solid #fadeed;
  margin-right: 0;
}
.page-template-page-myaccount .docs-nav li a::after {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 600;
  right: 0px;
  font-size: 14px;
}
.page-template-page-myaccount .docs-nav li a {
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  display: block;
  color: #635f61;
}

.page-template-page-myaccount a.edd_download_file_link,
.page-template-page-myaccount td.edd_license_key a,
#edd_user_history .edd_purchase_row .edd_invoice a {
  color: #f15b5b;
}
.page-template-page-myaccount li.active a {
  font-weight: 600;
  color: #f15b5b;
}
/* .page-template-page-myaccount .text-white{
	padding-top: 20px;
} */
#edd-discount-code-wrap .edd-submit.button.blue {
  background-color: #428bca !important ;
}
tr.edd_sl_license_row a {
  color: red;
}

.page-template-page-newpluginpage .faq-no {
  background-color: #ff5858;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  color: #fff;
  text-align: center;
  padding-top: 3px;
}
.page-template-page-newpluginpage p.faq-que-label {
  font-weight: 900;
}

.page-id-313 .container .reviews-pagination,
.page-id-437 .container .reviews-pagination {
  justify-content: center;
}

.page-id-313 .container .reviews-pagination .page-numbers,
.page-id-437 .container .reviews-pagination .page-numbers {
  box-shadow: 3px 3px 12px rgb(255 88 88 / 20%);
  padding: 5px 15px 5px 15px;
  margin-right: 5px;
  border-radius: 5px;
  font-weight: 600;
}

.page-id-313 .container .reviews-pagination .current,
.page-id-437 .container .reviews-pagination .current {
  background: #ff5858;
  color: #ffffff;
}

.page-id-313 .container .pagination a:hover,
.page-id-437 .container .pagination a:hover {
  background: #6644ae;
  color: #ffffff !important;
}

/* ============ Updated Blog Page CSS 06-06-23 */
.page-template-page-blog-php {
  background-color: #f9f9ff;
}
.page-template-page-blog-php .main-blog-row {
  background: #ffffff;
  box-shadow: 0px 2px 14px rgba(112, 112, 112, 0.2);
  border-radius: 15px;
  padding: 20px;
}

.page-template-page-blog-php .blog-section .main-blog-row .blog-img {
  margin: 0;
}

.page-template-page-blog-php .blog-section .blog-img img {
  border-radius: 15px;
  width: 100%;
}

.page-template-page-blog-php .main-blog-row .blog-details {
  padding: 0px 30px;
}

.page-template-page-blog-php .blog-section .blog-metas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-template-page-blog-php .blog-section .blog-profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.page-template-page-blog-php
  .blog-section
  .blog-profile
  .blog-profile-name-img {
  flex: 1;
  text-align: left;
}

.page-template-page-blog-php .blog-section .blog-profile .blog-date {
  flex: 0 0 120px;
  text-align: right;
}
.page-template-page-blog-php .blog-profile-name-img .blog-profile-image {
  border-radius: 100%;
  width: 35px;
  min-width: 35px;
}
.page-template-page-blog-php .blog-section .blog-date,
.page-template-page-blog-php .blog-profile-name-img .blog-profile-name {
  color: #7e7e7e;
}

.page-template-page-blog-php .blog-section .blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.page-template-page-blog-php .blog-section .blog-tag {
  background: #fddbdb;
  border-radius: 10px;
  padding: 6px 10px;
  color: #ff5858;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 18px;
}

.page-template-page-blog-php .blog-section .main-blog-row h3 {
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.page-template-page-blog-php .blog-section .second-blog-row h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.page-template-page-blog-php .blog-section .blog-types .blog-tab {
  display: flex;
  flex-direction: row;
  list-style-type: none;
}

.page-template-page-blog-php .blog-section .blog-types .blog-tab li a {
  margin-right: 20px;
  text-decoration: none;
  color: #545454;
  border: 1.2px solid #545454;
  border-radius: 100px;
  padding: 8px 20px;
}

.page-template-page-blog-php .blog-section .blog-types .blog-tab li a.active {
  background: #ff5858;
  color: #ffffff;
  border-color: #ff5858;
}

.page-template-page-blog-php .blog-section .other-blogs .blog {
  background: #ffffff;
  box-shadow: 0px 2px 14px rgba(112, 112, 112, 0.2);
  border-radius: 15px;
  padding: 10px;
}

.page-template-page-blog-php .blog-section .other-blogs .blog h3 {
  color: #222222;
  font-weight: 700;
  font-size: 23px;
}

.page-template-page-blog-php .blog-section .other-blogs .blog p,
.page-template-page-blog-php .blog-section .other-blogs .blog .blog-date {
  font-size: 14px;
}

.page-template-page-blog-php
  .blog-section
  .other-blogs
  .blog
  .blog-profile-name {
  font-size: 14px;
}
.page-template-page-blog-php .blog-section .card {
  border-radius: 10px;
  border: none;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
}
.page-template-page-blog-php .blog-section .card .card-body .card-title {
  font-weight: 900;
}
.page-template-page-blog-php .blog-section .card a img {
  border-radius: 7px 7px 0px 0px;
}
.page-template-page-blog-php .blog-section .card .card-body {
  min-height: 295px;
}
.page-template-page-blog-php .blog-section .blog-pages .page-count {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  justify-content: center;
}

.page-template-page-blog-php .blog-section .blog-pages .page-count li {
  margin-right: 1%;
}

.page-template-page-blog-php .blog-section .blog-pages .page-count li {
  text-decoration: none;
  color: #545454;
  border: 1.2px solid #545454;
  border-radius: 0%;
  padding: 10px 18px;
  font-weight: 700;
}

.page-template-page-blog-php .blog-section .blog-pages .page-count li.active {
  background-color: #ff5858;
  color: #ffffff;
  border: #ff5858;
}

/* End */

/* ============================================================================================================================================== */
/* Blogs */
.single-post .blog-posts .custom-content p,
.single-post .blog-posts .custom-content ol,
.single-post .blog-posts .custom-content ul {
  font-size: 18px;
  line-height: 30px;
}
.single-post .blog-posts .wp-block-image {
  margin: 5% 0%;
}
.single-post body {
  background-color: #f9f9ff;
}
.single-post .blog-posts .container {
  border-radius: 10px;
  border: none;
  box-shadow: 0 5px 10px 10px rgb(40 39 39 / 5%);
}
.single-post .blog-posts h2 {
  color: #ff5858;
  font-size: 26px;
  margin: 3% 0%;
}
.single-post .blog-posts h3 {
  margin: 3% 0%;
  font-size: 22px;
}
.single-post .blog-posts .post-image {
  margin: 30px 30px 30px -30px;
  border-radius: 10px;
}
.single-post .inner-header div div {
  font-size: 28px;
}
/* .single-post .custom-content ol li{
  font-weight: 600;
} */

.single-post article.post.post-detail .post-date {
  top: 0.1%;
  left: -2%;
}

.single-post .blog-posts .post-image { margin: 0px 0px 30px 0px; }
.single-post .blog-post-content { border-right: 1px solid rgb(224, 224, 224); padding-right: 100px; }
.single-post .post-sidebar { padding-left: 30px;  }
.single-post .have-questions-section { border: 1px solid rgb(224, 224, 224); padding: 20px; border-radius: 10px; margin-bottom: 30px; }
.single-post .post-categories-section { border-top: 1px solid rgb(224, 224, 224); padding-top: 30px; margin-bottom: 30px; }
.single-post .post-tags-section { border-top: 1px solid rgb(224, 224, 224); padding-top: 30px; }
.single-post .have-questions-section .icon svg { width: 21px; }
.single-post .post-categories-section ul li a,
.single-post .post-tags-section ul li a { display: inline-block; margin-bottom: 8px; text-transform: uppercase; font-size: 13px; }
.single-post .post-detail { padding-top: 15px; }
.single-post article.post.post-detail .post-date { top: 7px; left: 24px; }
.single-post .post-categories-section ul li a, .single-post .post-tags-section ul li a
{
    background: #ff5858;
    color: #ffffff;
    border-color: #ff5858;
    text-decoration: none;
    color: #fff;
    border-radius: 100px;
    padding: 8px 20px;
    text-transform: capitalize;
}
.single-post .have-questions-section a.custom-button
{
  color: #ff5858;
  padding: 0px;
  font-size: 15px;
  text-decoration: underline;
}
/* ============================================================================================================================================== */
/************************* 
	Responsive CSS 
***************************/
@media (max-width: 1680px) {
}
@media (max-width: 1439px) {
  .hero-banner {
    background-position: 480px center;
    min-height: 100%;
    background-size: contain;
  }
  .hero-banner .slider-caption h4::before {
    bottom: 6px;
  }
  .hero-banner .slider-caption ul::before {
    bottom: -28px;
  }
  .hero-banner .woocommerce .slider-caption ul::before {
    height: 310px;
  }
  .hero-banner .elemetor .slider-caption ul::before {
    height: 258px;
  }
  .hero-banner .contact-form .slider-caption ul::before {
    height: 205px;
  }
  .hero-banner .gravity-form .slider-caption ul::before {
    height: 150px;
  }
  .hero-banner .wpform .slider-caption ul::before {
    height: 98px;
  }
  .hero-banner .ninja-forms .slider-caption ul::before {
    height: 45px;
  }
  .inner-page .functionality-section .content-box {
    padding: 40px 30px;
    margin: 0;
  }
  .inner-page .functionality-section .content-box h6 {
    font-size: 14px;
    line-height: 26px;
  }
}
@media (min-width: 1400px) {
  .inner-header {
    margin-top: 110px;
  }
  .page-template-page-newpluginpage .faq-no {
    padding-top: 1px;
  }
}
@media (max-width: 1400px) {
  .page-template-page-myaccount .text-center {
    vertical-align: middle !important;
    text-align: center !important;
  }
}
@media (max-width: 1359px) {
}
@media (max-width: 1151px) {
  .slider-image .icon {
    margin: 25px 0;
    max-width: 50px;
  }
  .functionality-section .content-box {
    padding: 25px;
  }
  .functionality-section .slick-dots,
  .hero-banner .slick-dots {
    right: -10px;
  }
}

@media (max-width: 991px) {
  .hero-banner {
    padding: 110px 0 50px 0;
    min-height: auto;
    background-size: cover;
    background-position: 250px center;
  }
  .essential-features .step-1::after,
  .essential-features .step-2::after,
  .essential-features .step-3::after {
    display: none;
  }
  .plugin-section::before,
  .plugin-section::after {
    width: 450px;
    height: 550px;
    right: 0px;
    background-size: cover;
  }
  .benifit-section::before {
    width: 500px;
    height: 500px;
    left: -100px;
    top: -30px;
  }
  .hero-banner .woocommerce .slider-caption ul::before {
    height: 300px;
  }
  .hero-banner .elemetor .slider-caption ul::before {
    height: 248px;
  }
  .hero-banner .contact-form .slider-caption ul::before {
    height: 196px;
  }
  .hero-banner .gravity-form .slider-caption ul::before {
    height: 145px;
  }
  .hero-banner .wpform .slider-caption ul::before {
    height: 94px;
  }
  .hero-banner .ninja-forms .slider-caption ul::before {
    height: 44px;
  }
  .hero-banner .slider-image .btn-default {
    font-size: 12px;
    padding: 5px 10px;
    margin: 0;
  }
  .benifit-section .content-box {
    text-align: center;
  }
  .product-image {
    text-align: center;
    margin-bottom: 30px;
  }
  .video-thumbs > img {
    width: 100%;
  }
  .newsletter-subscribe .get-started form .mc4wp-form-fields {
    flex-direction: column;
  }
  .newsletter-subscribe .get-started form .form-control {
    margin: 10px 0;
  }
  article.post .social-share {
    position: relative;
    left: 0;
    top: 0;
  }
  article.post .social-share ul {
    display: flex;
  }
  header.sticky .navbar-nav > .nav-item > a,
  .inner-page header .navbar-nav > .nav-item > a {
    color: #fff !important;
  }
  .reviews-section .social-share {
    position: relative;
  }
  .reviews-section .social-share ul {
    display: flex;
    justify-content: center;
  }
  .menu-item-has-children button.sub-menu-toggle {
    display: flex;
    right: 0;
    top: 0;
    width: 50px;
    height: 65px;
    position: absolute;
    z-index: 99;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 0;
    color: #fff;
  }
  .menu-item-has-children button.sub-menu-toggle .svg-icon {
    height: 30px;
    width: 30px;
  }
  .menu-item-has-children button.sub-menu-toggle .screen-reader-text,
  .menu-item-has-children button.sub-menu-toggle .icon-minus,
  .menu-item-has-children button.sub-menu-toggle.open .icon-plus {
    display: none;
  }
  .menu-item-has-children button.sub-menu-toggle.open .icon-minus {
    display: block;
  }
  header.sticky .sub-menu .nav-item a {
    color: #222;
  }
  /* -=-=-=-=- New Blog Page Responsive*/
  .blog-section .main-blog-row .blog-tag {
    margin-top: 10px;
  }

  .blog-section .blog-types .blog-tab li a {
    padding: 8px 13px;
    margin-right: 3px;
  }
  /* Blog Single Post*/
  .single-post article.post.post-detail .post-date {
    top: 0.1%;
    left: -3%;
  }
  .single-post article.post .social-share .addtoany_shortcode .addtoany_list {
    display: flex;
    margin-top: 5%;
  }
  .single-post article.post .social-share .addtoany_shortcode .addtoany_list a {
    margin-left: 5%;
  }
  /* End */
}

@media (max-width: 767px) {
  .hero-banner {
    padding: 75px 0 25px 0;
    background: none;
  }
  header.sticky .navbar-nav > .nav-item > a,
  .inner-page header .navbar-nav > .nav-item > a {
    color: #fff !important;
  }

  .functionality-section::after {
    width: 300px;
    height: 300px;
    left: -90px;
    top: 30px;
    background-size: cover;
  }
  .get-started {
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 15px;
    text-align: center;
  }
  .testimonial-section .quotes {
    padding: 20px 10px;
    height: auto;
  }
  .testimonial-section::after {
    width: 450px;
    height: 450px;
    left: -180px;
    top: -50px;
    background-size: cover;
    opacity: 0.1;
  }
  .product-info .action .btn {
    margin-bottom: 15px;
    width: 100%;
  }
  article.post .post-date {
    top: 0;
    left: 0;
  }
  .comment-form .form-control {
    margin-bottom: 10px;
  }
  .blog-pagination ul {
    display: block;
  }
  .blog-pagination ul li {
    padding: 0 15px;
    position: relative;
    border-left: 0;
    margin: 10px 0;
  }
  .blog-pagination ul li .blog-next {
    flex-direction: row-reverse;
  }
  .blog-pagination ul li .blog-next .content {
    text-align: left;
  }
  .get-started {
    padding: 25px !important;
  }
  .get-started .btn-primary {
    margin-top: 15px;
  }

  .page-template-page-myaccount .gform_wrapper.mb-5 {
    padding-top: 50px;
  }
  /* -=-=-==-=-=-=-=-=-==-=-=--=-==-=-=-=-=-=-=-=-=-=-=-==-=-=-=-=-=-= */
  /* ============================== Blog =============================*/
  .single-post article.post.post-detail .post-date {
    top: 0.25%;
    left: -7%;
  }
  .single-post article.post .social-share .addtoany_shortcode .addtoany_list {
    display: flex;
    margin-top: 5%;
  }
  .single-post article.post .social-share .addtoany_shortcode .addtoany_list a {
    margin-left: 5%;
  }
  .single-post .blog-posts h2,
  .single-post .blog-posts h3,
  .single-post .inner-header div div {
    font-size: 19px;
  }

  /* to start left and right li in same line */
  .page-template-page-newpluginpage .new-points .list-style li {
    min-height: 110px;
  }
}

@media (max-width: 413px) {
  .functionality-section::after,
  .plugin-section::before,
  .plugin-section::after,
  .benifit-section::before {
    width: 300px;
    height: 300px;
  }
  header.header-pricing #navbar > .btn {
    font-size: 14px;
    padding: 5px 10px;
  }
  header.header-pricing .container .col-2,
  header.header-pricing .container .col-10 {
    padding-left: 5px;
    padding-right: 5px;
  }
  .moneyBackGuarantee {
    flex-direction: column;
    margin-left: 15px;
    margin-right: 15px;
  }
  .moneyBackGuarantee_left {
    text-align: center;
    margin: 0px 0px 10px !important;
  }
  .price-table .pricing-plan-row .card {
    margin-left: 15px;
    margin-right: 15px;
  }
  /* Submit Review Page */
  .page-id-5379 .product-section #gform_2 {
    padding: 25px 40px;
  }
  .page-id-5379 .container {
    width: 90%;
  }
  /* End */
}
/* .page-id-1370 form#edd_checkout_cart_form,
.page-id-1370 fieldset#edd_discount_code,
.page-id-1370 p#edd_final_total_wrap {
  display: none;
} */

div#edd_checkout_form_wrap {
  margin-top: 20px;
}

.page-id-1370 .gform_wrapper form {
  max-width: 750px;
}
#edd_login_form .edd-input, .affwp-form input[type=text], .affwp-form input[type=password], .affwp-form input[type=email], .affwp-form input[type=url] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #e2e2e2;
  border-radius: 30px;
  padding: 15px 25px;
  background: #fff;
  min-height: 55px;
  display: block;
  width: 100%;
}
.affwp-form textarea
{
-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #e2e2e2;
  border-radius: 30px;
  padding: 15px 25px;
  background: #fff;
  display: block;
  width: 100%;
}
#edd_login_form p {
  margin-bottom: 10px;
}
#edd_login_form label {
  margin-left: 25px;
  padding: 0;
  margin-bottom: 5px;
}
#edd_login_form legend,
#edd_login_form label,
#edd_login_form p.edd-lost-password a {
  font-style: normal;
}
#edd_sl_license_keys,
#edd_sl_license_sites {
  text-align: left;
  width: 100%;
  border-top: 1px solid #f0f0f0;
  border-bottom: none;
}
#edd_sl_license_keys td,
#edd_sl_license_keys th,
#edd_sl_license_sites td,
#edd_sl_license_sites th,
.ticketlist th,
.ticketlist td {
  text-align: left;
  padding: 3px 5px;
  border-bottom: 1px solid #f0f0f0;
  border-top: none;

  line-height: 35px;
}
#edd_user_history td,
#edd_user_history th,
.ticketlist th,
.ticketlist td {
  line-height: 30px;
}
#edd_user_history td.edd_download_latest_version,
#edd_user_history td.edd_download_recently_updated_date,
#edd_user_history th.edd_download_latest_version,
#edd_user_history th.edd_download_recently_updated_date {
  text-align: center;
}
#edd_sl_license_keys th,
#edd_sl_license_sites th,
.ticketlist th {
  font-weight: 700;
  background: #f5f5f5;
}
#edd_sl_license_keys td,
.ticketlist td {
  line-height: 35px;
  vertical-align: middle;
}
.edd-submit.button.gray {
  color: #ffffff !important;
  background-color: #ff5858;
}
.edd-submit.button.gray:hover {
  background: #3d44b4;
  color: #fff;
  box-shadow: 3px 3px 12px rgb(79 89 255 / 28%);
}
.page-id-1373 th.edd_purchase_amount,
.page-id-1373 td.edd_purchase_amount,
.page-id-1373 th.edd_invoice,
.page-id-1373 td.edd_invoice,
.page-id-1373 th.edd_purchase_details,
.page-id-1373 td.edd_purchase_details,
#edd_checkout_form_wrap span#edd-email-description,
#edd_login_form legend {
  display: none;
}
#edd-purchase-button {
  padding: 12px 25px;
}
#edd_checkout_form_wrap legend {
  font-size: 20px;
}
#edd_checkout_form_wrap label {
  font-size: 16px;
}
#edd_checkout_form_wrap span.edd-description {
  font-size: 13px;
}
.edd-privacy-policy-agreement {
  margin-bottom: 10px;
  margin-top: 5px;
}
.edd-privacy-policy-agreement label {
  font-size: 14px !important;
}
form#edd_sl_license_add_site_form {
  margin-top: 20px;
  max-width: 688px;
}
form#edd_sl_license_add_site_form > div {
  text-align: center;
}
form#edd_sl_license_add_site_form input.edd-input {
  margin-top: 20px;
}

.caption .award-logo {
  max-width: 200px;
}
.page-template-page-about .wp-block-image img {
  height: auto;
  border-radius: 4px;
}
.customers-section .award-icon {
  position: absolute;
  right: -50px;
  top: -92px;
}
.page-id-1432 .inner-header
{
    margin-top: 86px;
}
#affwp-affiliate-dashboard li.affwp-affiliate-dashboard-tab.active {
    background-color: #BA1B1B;
    border: 1px solid #BA1B1B;
    z-index: 99;
}
#affwp-affiliate-dashboard .nav-tabs .nav-item {
    flex: 1 1 auto;
    text-align: center;
}
#affwp-affiliate-dashboard ul#affwp-affiliate-dashboard-tabs {
    margin-bottom: 1.875rem;
}
#affwp-affiliate-dashboard ul li
{
	background-color: #ff5858;
    border: 1px solid #ff5858;
    border-radius: 5px;
    color: #ffffff;
    margin: .125rem;
    padding: .5rem 1.125rem;
    position: relative;
}
#affwp-affiliate-dashboard ul li:before
{
	content: '';
}
#affwp-affiliate-dashboard #affwp-affiliate-dashboard-tabs li
{
	padding: 6px 10px;
    margin-right: 15px;
}
#affwp-affiliate-dashboard #affwp-affiliate-dashboard-tabs li a
{
	color: #fff !important;
}
#affwp-affiliate-dashboard .button
{
	background: #ff5858;
    color: #fff;
    box-shadow: 3px 3px 12px rgba(255, 88, 88, 0.2);
	color: #fff;
	font-size: 14px;
    font-weight: 400;
    border: 0;
    padding: 6px 25px;
    transition: all 0.5s ease;
    font-family: "Poppins", sans-serif;
    transition: all 0.2s linear;
    position: relative;
    border-radius: 50px;
	cursor: pointer;
}
div#affwp-affiliate-dashboard {
    width: 100%;
}
@media (max-width: 991px) {
  .caption .award-logo {
    max-width: 120px;
  }
  .customers-section .award-icon {
    position: relative;
    right: 0;
    top: 20px;
  }
}
@media (max-width: 767px) {
  .caption .award-logo {
    max-width: 100px;
  }
  .customers-section .text-container img.alignnone {
    max-width: 120px;
    height: auto;
  }
  .page-id-313 .container .reviews-pagination .page-numbers,
  .page-id-437 .container .reviews-pagination .page-numbers {
    padding: 2px 7px 2px 7px;
  }
}

@media (max-width: 380px) {
  .page-id-313 .container .reviews-pagination .page-numbers,
  .page-id-437 .container .reviews-pagination .page-numbers {
    padding: 2px 6px 2px 6px;
    font-size: smaller;
  }
  .how-it-work .text-orange {
    margin-top: 25px;
  }
}

.error404 .search-form label {
  display: none;
}
.error404 input#search-form-1 {
  border: 2px solid #e2e2e2;
  border-radius: 30px;
  padding: 6px 25px;
  box-shadow: none;
  font-family: inherit !important;
  color: #222222 !important;
  max-width: 100%;
  background: #fff;
  margin-bottom: 15px;
}

/* new banner 11/2/2022 */

.home-banner {
  padding: 120px 0 30px 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fbf9fb+0,faf1f1+100 */
  background: #FFFFFF; /* Old browsers */
  /*background: -moz-linear-gradient(
    -45deg,
    #fbf9fb 0%,
    #faf1f1 100%
  ); 
  background: -webkit-linear-gradient(
    -45deg,
    #fbf9fb 0%,
    #faf1f1 100%
  );
  background: linear-gradient(
    135deg,
    #fbf9fb 0%,
    #faf1f1 100%
  ); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbf9fb', endColorstr='#faf1f1',GradientType=1 ); 
  */
  display: flex;
  align-items: center;
}
header .logo {
  margin-top: 15px;
}
.numbers .h4 {
  letter-spacing: 3px;
  opacity: 1;
  font-size: 18px;
}
@media (max-width: 991px) {
  .home-banner {
    text-align: center;
  }
  .font-45 {
    font-size: 35px;
  }
  .home-banner .row {
    flex-direction: column-reverse;
  }
  header.sticky .navbar-nav > .nav-item > a,
  .inner-page header .navbar-nav > .nav-item > a {
    color: #fff !important;
  }
}

@media (min-width: 1500px) {
  .home-banner {
    padding-bottom: 5rem;
  }
  .home-banner figure {
    /*margin-top: 3rem;*/
  }
  .home-banner .btn {
    margin-top: 15px;
  }
}

@media (max-width: 1378px) {
  .font-line-height {
    line-height: normal;
    margin-top: 0;
  }
  .home-banner .text-container.mb-5 {
    margin-bottom: 1.5rem !important;
  }
  .home-banner .my-lg-4 {
    margin: 0.5rem 0 !important;
  }
  .home-banner .align-items-center {
    -webkit-box-align: flex-start !important;
    -ms-flex-align: flex-start !important;
    align-items: flex-start !important;
  }
  .home-banner .award-icon .custom-width {
    max-width: 230px;
  }
}
.edd-submit.button.blue,
.edd-submit.button.blue:hover,
.edd-submit.button.blue:focus {
  background: none;
  border: none;
}
div#edd_payment_mode_select_wrap {
  margin-top: 15px;
}
#edd_checkout_form_wrap .edd-payment-icons {
  display: block;
  text-align: center;
  margin: 30px 0px;
}
#edd_checkout_form_wrap .edd-gateway-option.edd-gateway-option-selected {
  background: #fff;
  border: 2px solid #ff5858;
}
#edd_checkout_form_wrap .edd-gateway-option {
  padding: 15px 25px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}
#edd_checkout_form_wrap .edd-payment-icons img.payment-icon {
  max-height: none;
}
.edd_download_purchase_form + .action {
  display: none;
}
a.edd-add-to-cart .edd-add-to-cart-label {
  background: #3d44b4;
  color: #fff;
  box-shadow: none;
  padding: 15px 20px;
  display: block;
  font-size: 18px;
  min-width: 220px;
}
a.edd-add-to-cart .edd-add-to-cart-label::after {
  content: "\f061";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 600;
  margin-left: 10px;
}
a.edd-add-to-cart .edd-add-to-cart-label:hover {
  background: #ff5858;
}
.edd_download_purchase_form .edd_price_options li label {
  margin: 0;
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
}
.edd_download_purchase_form .edd_price_options li {
  padding: 10px 0;
  border-bottom: 1px solid #e9edf2;
  text-align: left;
}
.edd_download_purchase_form .edd_price_options span.edd_price_option_price {
  margin-left: auto !important;
  font-size: 28px;
  font-weight: 500;
}
.edd-loading {
  border-top: 0.2em solid rgba(255, 88, 88, 0.2);
  border-right: 0.2em solid rgba(255, 88, 88, 0.2);
  border-bottom: 0.2em solid rgba(255, 88, 88, 0.2);
  border-left: 0.2em solid #ff5858;
}
.edd_purchase_submit_wrapper a.edd-add-to-cart.edd-has-js {
  display: inline-block;
  padding: 0;
  position: relative;
}
.edd_download_purchase_form .edd_price_options span.edd_price_option_sep {
  display: none !important;
}
.edd_download_purchase_form .edd_price_options span.edd_price_option_name {
  font-size: 18px;
  padding-left: 10px;
}
.edd_download_purchase_form .edd_price_options input[type="radio"] {
  opacity: 0;
}
.edd_download_purchase_form
  .edd_price_options
  input[type="radio"]
  + .edd_price_option_name::before {
  content: "";
  border-radius: 20px;
  width: 18px;
  height: 18px;
  border: 1px solid #72b12f;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 12px;
}
.edd_download_purchase_form
  .edd_price_options
  input[type="radio"]:checked
  + .edd_price_option_name::before {
  content: "\f00c";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 600;
  padding-left: 5px;
  background: #72b12f;
  color: #fff;
  font-size: 10px;
  text-indent: -1px;
  line-height: 16px;
}
#edd_checkout_form_wrap legend {
  display: none;
  width: auto;
  padding: 0 10px !important;
}
#edd_checkout_form_wrap fieldset {
  border: 0 !important;
  padding: 0 !important;
  margin-bottom: 20px;
}
div#edd_payment_mode_select_wrap {
  text-align: center;
}
#edd_checkout_form_wrap input[type="email"],
#edd_checkout_form_wrap input[type="password"],
#edd_checkout_form_wrap input[type="tel"],
#edd_checkout_form_wrap input[type="text"],
#edd_checkout_form_wrap textarea {
  background: #ffffff;
  border: 1px solid #d9dde2;
  border-radius: 12px;
  padding: 5px 14px;
  height: 44px;
}
.edd-stripe-card-element.StripeElement,
.edd-stripe-card-exp-element.StripeElement,
.edd-stripe-card-cvc-element.StripeElement {
  padding: 8px 10px !important;
  border: 1px solid #bfbfbf !important;
}
#edd_checkout_form_wrap select.edd-select {
  width: 70%;
  border: 1px solid #bfbfbf;
  background: #fff;
  padding: 8px;
}
#edd_final_total_wrap {
  color: #3d44b4 !important;
  font-size: 25px;
  font-weight: bold;
  padding: 10px !important;
}
#edd-purchase-button {
  padding: 15px 30px;
  width: 100%;
  font-size: 22px;
}
.functionality-section .content-box h6 {
  min-height: 127px;
}

.page-id-1373 .edd-table .edd_sl_license_row th.edd_sl_key,
.page-id-1373 .edd-table .edd_sl_license_row th.edd_sl_upgrades {
  display: none;
}
.page-id-1373 .edd_sl_table .edd_sl_license_row td:nth-child(2),
.page-id-1373 .edd_sl_table .edd_sl_license_row td:nth-child(7) {
  display: none;
}
.page-id-2997 .edd-submit.button.blue,
.page-id-3012 .edd-submit.button.blue {
  background: #3d44b4;
  color: #fff;
  box-shadow: 3px 3px 12px rgb(79 89 255 / 28%);
  font-size: 18px;
  min-width: 220px;
  font-size: 16px;
  font-weight: 400;
  border: 0;
  padding: 15px 30px;
  transition: all 0.5s ease;
  font-family: "Poppins", sans-serif;
  transition: all 0.2s linear;
  position: relative;
  border-radius: 50px;
}
.ticketlist th,
.ticketlist td {
  padding: 3px 10px;
}
.ticketlist .add-ticket {
  float: right;
}
.ticketlist td a {
  color: #ff5858;
}
.ticketlist table {
  width: 100%;
}
.ticketlist .ticket-type {
  font-size: 14px;
  opacity: 0.8;
}
.ticketlist .ticket-id {
  width: 150px;
}

.price-table .pricing-plan-row .card .card-body ul {
  text-align: left;
}
.price-table .pricing-plan-row .card .card-body .btn-primary {
  padding: 12px 10px;
  min-width: 180px;
}
.sites-annual-tabs {
  text-align: center;
  width: 100%;
  position: relative;
}
.sites-tabs {
  position: absolute;
  right: 0;
  top: 5px;
}
.sites-tabs ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
  background: #f4f4f4;
  border-radius: 40px;
}
.sites-tabs label {
  margin: 0;
}
.sites-tabs ul li {
  margin: 0 2px;
}
.sites-tabs ul li input[type="radio"] + label {
  padding: 5px 15px;
  border-radius: 40px;
  font-size: 14px;
  line-height: 21px;
  color: #222222;
  cursor: pointer;
}
.sites-tabs ul li input[type="radio"]:checked + label {
  background-color: #3d44b4;
  color: #fff;
}
.sites-tabs ul li input[type="radio"] {
  display: none;
}
.radio-list li input[type="radio"] + label {
  margin-left: 3px;
}

.moneyBackGuarantee {
  margin-bottom: 48px;
  padding: 45px 50px;
  background: #ebeff5;
  border-radius: 12px;
  display: flex;
  /*max-width: 1100px;*/
  margin: 0 auto;
  gap: 44px;
}
.moneyBackGuarantee_left {
  min-width: 180px;
}
.moneyBackGuarantee_right h3 {
  font-weight: 600;
  margin: 0 0 12px;
  font-size: 22px;
  color: #222;
}
.moneyBackGuarantee_right p {
  font-weight: 400;
  font-size: 14px;
  line-height: 176.6%;
  margin-bottom: 12px;
}
.moneyBackGuarantee_right .uael-infobox {
  display: flex;
  gap: 15px;
  align-items: center;
}
.moneyBackGuarantee_right .uael-image {
  width: 70px;
}
.moneyBackGuarantee_right .uael-image img {
  border-radius: 100%;
  border: 1px solid rgba(34, 34, 34, 0.3);
}
.moneyBackGuarantee_right .uael-content h4 {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #222222;
}
.moneyBackGuarantee_right .uael-content p {
  margin: 0;
  font-size: 14px;
  line-height: 28px;
}

.price-table .pricing-plan-row p.pricing-subtext {
  min-height: 105px;
}

.faqs-accordion .accordion-content {
  display: none;
  background: #ffffff;
  width: 100% !important;
  border: 1px solid #d9dde2;
  border-radius: 0px 0px 12px 12px;
  padding: 10px 20px !important;
}
.faqs-accordion .accordion-content p {
  font-weight: 400;
  font-size: 15px;
  line-height: 176.6%;
  margin: 0;
}
.faqs-accordion .accordion-title:before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.faqs-accordion .accordion-title.open:before {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.faqs-accordion .new-points .list-style li {
  margin: 0 0 20px;
  padding: 0;
}
.faqs-accordion .accordion-title {
  background: #fcfcfc;
  border: 1px solid #d9dde2;
  border-radius: 12px;
  padding: 10px 42px 10px 20px;
  cursor: pointer;
  position: relative;
}
.faqs-accordion .new-points .list-style li h4 {
  color: #222222;
  font-weight: 500;
  font-size: 16px;
  line-height: 176.6%;
  margin: 0;
}
.faqs-accordion .new-points .list-style li::before {
  display: none;
}
.faqs-accordion .accordion-title.open {
  border-radius: 12px 12px 0 0;
  border-bottom: 0;
}
.pricing-faq-section h4.h4-center {
  margin-bottom: 64px;
}

.testimonial-section .rating-avatar-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.testimonial-section .testimonial-box.first-box .rating-avatar-box {
  justify-content: center;
  gap: 50px;
}
.testimonial-section .rating-avatar-box .avatar-infobox {
  display: flex;
  gap: 15px;
}
.testimonial-section .rating-avatar-box .avatar-content h4 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: #222222;
}
.testimonial-section .rating-avatar-box .avatar-content p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 22px;
}

.testimonial-section .testimonial-box {
  border: 1px solid #d9dde2;
  border-radius: 12px;
  padding: 20px 30px 30px;
  margin-bottom: 25px;
  text-align: left;
}
.testimonial-section .testimonial-box.first-box {
  text-align: center;
}
.testimonial-section .testimonial-box h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 176.6%;
  color: #222222;
  margin: 0 0 10px;
}
.testimonial-section .testimonial-box p {
  font-weight: 400;
  font-size: 14px;
  line-height: 176.6%;
  color: #222222;
  margin: 0 0 22px;
}
.testimonial-section .rating-avatar-box .rating-box {
  display: flex;
  align-items: center;
  gap: 5px;
}
.testimonial-section .rating-avatar-box .rating-box strong {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #222222;
}
.testimonial-section .rating-avatar-box .rating-box span {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  color: #a5a5a5;
}
.testimonial-section {
  padding-top: 30px;
}
.testimonial-section p strong {
  font-weight: normal;
}
.testimonial-box .rating-avatar-box .avatar-image {
  width: 47px;
}
.testimonial-box .rating-avatar-box .avatar-image img {
  border-radius: 100%;
  border: 1px solid rgba(34, 34, 34, 0.3);
}

.checkout-right {
  border: 1px solid #d9dde2;
  border-radius: 12px;
  padding: 20px 30px 30px;
}
.checkout-right .rating-avatar-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.checkout-right .testimonial-box.first-box .rating-avatar-box {
  justify-content: center;
  gap: 50px;
}
.checkout-right .rating-avatar-box .avatar-infobox {
  display: flex;
  gap: 15px;
}
.checkout-right .rating-avatar-box .avatar-content h4 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: #222222;
}
.checkout-right .rating-avatar-box .avatar-content p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 22px;
}

.checkout-right .testimonial-box {
  margin-bottom: 20px;
  text-align: left;
  border-bottom: 1px solid #d9dde2;
  padding-bottom: 30px;
}
.checkout-right .testimonial-box.first-box {
  text-align: center;
}
.checkout-right .testimonial-box h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 176.6%;
  color: #222222 !important;
  margin: 0 0 10px;
}
.checkout-right .testimonial-box p {
  font-weight: 400;
  font-size: 14px;
  line-height: 176.6%;
  color: #222222;
  margin: 0 0 22px;
}
.checkout-right .rating-avatar-box .rating-box {
  display: flex;
  align-items: center;
  gap: 5px;
}
.checkout-right .rating-avatar-box .rating-box strong {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #222222;
}
.checkout-right .rating-avatar-box .rating-box span {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  align-items: center;
  color: #a5a5a5;
}
.checkout-right p strong {
  font-weight: normal;
}
.checkout-right .moneyBackGuarantee_top {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.checkout-right .moneyBackGuarantee_img img {
  min-width: 90px;
  width: 90px;
}
.checkout-right .moneyBackGuarantee_title h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #222222 !important;
}
.checkout-right .moneyBackGuarantee_descriptio p {
  font-size: 14px;
  line-height: 176.6%;
  font-weight: 400;
  margin: 0;
}
.checkout-container.gform_wrapper form {
  box-shadow: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.product-awards {
  padding: 15px 0px 40px;
  text-align: center;
}
.screenshots-features ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 10px;
  justify-content: center;
  max-width: 450px;
  margin: 0 auto;
}
.screenshots-features {
  padding: 30px 0 0;
}
.screenshots-features ul li {
  margin: 0;
  list-style: none;
}
.recentyUpdated-text,
.screenshots-features ul li a {
  margin: 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid #ecedf6;
  border-radius: 30px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #222222;
}
.latestVersion-text {
  text-align: center;
  padding: 20px 0 0;
  font-size: 14px;
  line-height: 18px;
  color: #222222;
  font-weight: 400;
  border: 1px solid #ff5858;
  border-radius: 30px;
  padding: 8px 15px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.latestVersion-text:after {
  content: "\f058";
  font-family: "Font Awesome\ 5 Free";
  font-size: 16px;
  font-weight: 600;
  color: #222222;
}

.screenshots-features ul li:hover a {
  background: #ecedf6;
}

.faqs-accordion .faq-que {
  margin-bottom: 20px;
}
.faqs-accordion .faq-que h4 {
  color: #222222;
  font-weight: 500;
  font-size: 16px;
  line-height: 176.6%;
  margin: 0;
}
.recentyUpdated-text {
  padding: 8px 15px;
}
.recentyUpdated-text:after {
  content: "\f058";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 600;
  color: #7eb838;
  font-size: 16px;
}
.latestUpdated-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 20px 0 0;
}
.recentyUpdated-text img {
  width: 20px;
}
.recentyUpdated-text span {
  font-weight: 500;
}
.recently-flex {
  flex-wrap: wrap;
}

.chage-log-section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}
.chage-log-section ul {
  margin: 0;
  padding: 0 0 20px;
}
.chage-log-section ul li {
  margin: 0;
  padding: 0 0 15px;
  display: flex;
  gap: 8px;
  line-height: 1.3;
}
.chage-log-section ul li:before {
  content: "\f058";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 600;
  color: #ff5858;
  font-size: 16px;
  position: relative;
  top: 1px;
}
.chage-log-section {
  background-image: url("../images/circle-bg-1.png");
  background-position: center 200px;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 800px;
}
.page-id-4551 .chage-log-section {
  background-image: url("../images/circle-bg-1.png");
  background-position: center 200px;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: auto;
}

.header-offer {
  padding: 10px 60px 10px 65px;
  text-align: center;
  position: relative;
}
.header-offer p {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.header-offer p a {
  color: #fff;
}
.header-offer .close-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
}
.header-offer-show .home-banner {
  padding-top: 165px;
}
.header-offer .container {
  min-height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-offer .wp20-logo-white {
  max-width: 60px;
  position: absolute;
  left: 10px;
  top: 9px;
}
.header-offer {
  background: linear-gradient(-45deg, #ff5858, #6640af, #f15b5b, #4e39b2);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}
.header-offer span {
  margin-right: 15px;
  font-size: 24px;
}
body.halloweeen .header-offer,
body.page-id-4139 .inner-header.halloweeen-header {
  background: linear-gradient(180deg, #f59a1f 0%, #ffa82c 100%) !important;
}
body.halloweeen .header-offer {
  padding: 10px;
}
body.halloweeen .header-offer .halloween-logos {
  display: flex;
  gap: 5px;
  align-items: flex-end;
}
body.halloweeen .header-offer .halloween-logos img:first-child,
body.page-id-4139 .inner-header.halloweeen-header .halloween-logos img {
  width: 50px;
  height: 45px;
}
body.halloweeen .header-offer .halloween-logos img:last-child {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  opacity: 0.5;
}
/*body.halloweeen .home-banner,
.home-banner {
  padding-top: 200px;
}*/
body.halloweeen .header-offer span,
body.page-id-4139 .inner-header.halloweeen-header div {
  color: #000 !important;
}
body.halloweeen .header-offer p {
  display: flex;
  align-items: center;
}
body.halloweeen .header-offer p a {
  background: #000 !important;
}
body.halloweeen .header-offer p a:hover {
  background: #ff5858 !important;
}
body.page-id-4139 .inner-header.halloweeen-header .halloween-div {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.pricing-plan-row .pricing-card-title span.old-price {
  color: #b0b0b0;
  text-decoration: line-through;
  margin-right: 10px;
  font-weight: 500;
  font-size: 30px;
}
.pricing-plan-row .pricing-card-title sub {
  font-size: 16px;
  bottom: 2px;
  font-size: 18px;
}
.pricing-plan-row .save-price {
  background: #ffd8d8;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #000000;
  padding: 3px 18px;
  display: inline-block;
  margin: 0 0 16px;
}

@media (min-width: 992px) and (max-width: 1279px) {
  .screenshots-features ul li a {
    padding: 8px 5px;
    font-size: 12px;
    gap: 4px;
  }
  .screenshots-features ul {
    gap: 5px;
  }
}
@media (min-width: 992px) {
  .price-table .pricing-plan-row .card {
    height: 100% !important;
    margin: 0 !important;
  }

  .faqs-accordion .new-points-left {
    padding-right: 5px;
  }
  .faqs-accordion .new-points-right {
    padding-left: 5px;
  }

  .testimonial-section .row > [class^="col-"] {
    margin-bottom: 40px;
  }
  .testimonial-section .testimonial-box {
    margin-bottom: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media (max-width: 991px) {
  .sites-tabs {
    position: static;
  }
  .sites-tabs ul {
    justify-content: center;
    padding: 0;
    display: inline-flex;
    margin-top: 20px;
  }
  .header-offer-show .home-banner {
    padding-top: 170px;
  }
  /* to start left right li in same line */
  .page-template-page-newpluginpage .new-points .list-style li {
    min-height: 175px;
  }
  body.halloweeen .inner-header {
    margin-top: 200px;
  }
  body.page-id-4139 .inner-header.halloweeen-header .halloween-div {
    font-size: 25px;
    line-height: 25px;
  }
}
@media (min-width: 1379px) {
  .product-summery .product-price {
    margin-top: 20px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .testimonial-section .testimonial-box {
    padding: 15px 20px 25px;
  }
}

@media (min-width: 768px) and (max-width: 1366px) {
  .price-table .pricing-plan-row .card .card-body h4 {
    font-size: 23px;
    font-weight: 500;
    text-align: center;
  }
  .price-table .pricing-plan-row .card .card-body {
    padding: 3rem 1.5rem;
  }
  .header-offer p {
    font-size: 18px;
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .moneyBackGuarantee {
    padding: 30px 20px;
  }
  .moneyBackGuarantee {
    gap: 20px;
  }
  .moneyBackGuarantee_left {
    min-width: 100px;
  }

  .faqs-accordion .new-points .list-style li {
    margin-bottom: 12px;
  }
  .testimonial-section .testimonial-box {
    margin-bottom: 15px;
  }

  .header-offer p {
    font-size: 18px;
    line-height: 1.3;
  }
  body.page-id-4139 .inner-header.halloweeen-header .halloween-div {
    font-size: 20px;
    line-height: 25px;
  }
  body.halloweeen .header-offer p {
    flex-direction: column;
  }
  body.halloweeen .header-offer p a {
    font-size: 14px;
  }
  .single-post .blog-post-content
  {
    padding-right: 0px;
    border: none;
  }
}
@media (max-width: 639px) {
  .header-offer-show .home-banner {
    padding-top: 180px;
  }
}
@media (max-width: 575px) {
  .screenshots-features {
    padding-top: 10px;
  }
  .page-id-437
    .testimonial-section
    .testimonial-box.first-box
    .rating-avatar-box
    .avatar-infobox {
    width: 100%;
    justify-content: center;
  }
  .page-id-437
    .testimonial-section
    .testimonial-box.first-box
    .rating-avatar-box {
    gap: 30px;
  }
  /* Blog Single Post */
  .single-post .blog-posts .post-image {
    margin: 0px;
    border-radius: 10px;
  }
  .single-post .post-sidebar {
    padding-left: 0px;
}
  body.halloweeen .header-offer p a {
    margin-top: 10px;
  }
  body.halloweeen .home-banner,
  .home-banner {
    padding-top: 110px;
  }
  body.halloweeen .inner-header {
    margin-top: 225px !important;
  }
  .home-banner ul.list-style
  {
    margin-right: 0px;
  }
}
@media (max-width: 479px) {
  .moneyBackGuarantee_left img {
    width: 120px;
  }

  .screenshots-features ul li a {
    padding: 8px 10px;
    font-size: 12px;
    gap: 4px;
  }
  .screenshots-features ul {
    gap: 5px;
    display: flex;
    flex-wrap: wrap;
  }

  .header-offer-show .home-banner {
    padding-top: 200px;
  }
  .header-offer .wp20-logo-white {
    max-width: 50px;
  }
  .header-offer p {
    font-size: 16px;
  }
  .how-it-work .text-orange {
    margin-top: 15px;
  }
  /* to start left right li in same line */
  .page-template-page-newpluginpage .new-points .list-style li {
    min-height: unset;
  }
  .page-template-page-home .testimonial-section .section-title .h2 {
    font-size: 24px;
  }
}

.page-id-1370 header.sticky,
.page-id-4139 header.sticky,
.page-id-1370 header,
.page-id-4139 header {
  position: relative;
}
.page-id-1370 .inner-header,
.page-id-4139 .inner-header {
  margin-top: 0;
}
#edd_checkout_form_wrap .edd-payment-icons {
  display: none;
}
.edd-payment-icons {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
#edd_checkout_cart td,
#edd_checkout_cart th {
  color: #000;
}
.edd_form #edd-payment-mode-wrap input[type="radio"] {
  opacity: 0;
}
.edd_form #edd-payment-mode-wrap #edd-gateway-option-stripe::before {
  content: "";
  background-image: url("../images/credit_card.svg");
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: 20px;
  display: inline-block;
  position: absolute;
  margin-left: -5px;
  background-repeat: no-repeat;
  background-position: center;
}
.edd_form #edd-payment-mode-wrap #edd-gateway-option-paypal_commerce:before {
  content: "";
  background-image: url("../images/paypal.svg");
  width: 18px;
  height: 20px;
  background-position: center;
  background-size: 18px;
  display: inline-block;
  position: absolute;
  margin-left: -5px;
  background-repeat: no-repeat;
  background-position: center;
}
#edd_checkout_form_wrap fieldset#edd_checkout_user_info {
  margin: 25px -10px;
}
#edd_checkout_form_wrap fieldset#edd_checkout_user_info .cfm-el {
  max-width: 50%;
  float: left;
  padding: 0 10px;
}
#edd_checkout_form_wrap fieldset#edd_checkout_user_info #edd-email-wrap {
  max-width: 100%;
  width: 100%;
}
#edd_checkout_form_wrap input[type="email"],
#edd_checkout_form_wrap input[type="password"],
#edd_checkout_form_wrap input[type="tel"],
#edd_checkout_form_wrap input[type="text"],
#edd_checkout_form_wrap textarea {
  width: 100%;
}
.page-template-page-checkout #edd_checkout_cart {
  border: 1px solid #d9dde2;
  border-radius: 10px;
  overflow: hidden;
  border-collapse: initial;
  border-spacing: 0;
}
.page-template-page-checkout #edd_checkout_cart th,
.page-template-page-checkout #edd_checkout_cart td {
  border: 0;
  border-top: 1px solid #d9dde2;
  border-left: 1px solid #d9dde2;
  text-align: center;
}
.page-template-page-checkout #edd_checkout_cart th {
  border-top: 0;
}
.page-template-page-checkout #edd_checkout_cart th:first-child,
.page-template-page-checkout #edd_checkout_cart td:first-child {
  border-left: 0;
  text-align: left;
}
.page-template-page-checkout #edd_checkout_cart .edd_cart_footer_row {
  display: none;
}
#edd-purchase-button {
  padding: 25px 30px;
  border-radius: 20px;
}
.edd-stripe-new-card .edd-stripe-card-element.StripeElement,
.edd-stripe-new-card .edd-stripe-card-exp-element.StripeElement,
.edd-stripe-new-card .edd-stripe-card-cvc-element.StripeElement {
  border: 1px solid #d9dde2 !important;
  height: 44px !important;
  padding: 12px !important;
}
#edd_checkout_form_wrap fieldset#edd_cc_address {
  display: inline-block;
  margin: 0 -15px;
}
#edd_checkout_form_wrap fieldset#edd_cc_address > p {
  float: left;
  width: 100%;
  padding: 0 15px;
}
#edd_checkout_form_wrap select.edd-select {
  width: 100%;
  border: 1px solid #d9dde2;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  height: 44px;
}
#edd_checkout_form_wrap fieldset#edd_cc_address #edd-card-country-wrap,
#edd_checkout_form_wrap fieldset#edd_cc_address #edd-card-state-wrap,
#edd_checkout_form_wrap fieldset#edd_cc_address #edd-card-zip-wrap,
#edd_checkout_form_wrap fieldset#edd_cc_address #edd-card-city-wrap {
  width: 50%;
}
#edd_secure_site_wrapper {
  color: #068c0b;
}
#edd_purchase_submit #edd_final_total_wrap {
  border: 0;
  background: none;
  text-align: center;
  margin: 10px 0;
  color: #000 !important;
}
@media (max-width: 767px) {
  .header-offer span {
    margin-right: 15px;
    font-size: 14px;
  }
  .inner-header {
    margin-top: 85px;
  }
  .nav-item a {
    color: #fff !important;
  }
  .nav-item .sub-menu li a {
    color: #222 !important;
  }
  .navbar-collapse {
    top: 170px;
  }
  header.sticky .navbar-collapse {
    top: 160px;
  }
}
/*  */
@media (max-width: 512px) {
  .page-template-page-newpluginpage-php .product-section .plugin-name {
    text-align: center;
    margin-top: 5%;
  }
  .page-template-page-newpluginpage-php .new-points .list-style li h4 {
    line-height: 1.5;
  }
  .page-template-page-newpluginpage-php .new-points .list-style li:before {
    top: 5%;
  }
  .page-template-page-newpluginpage-php
    .product-section
    .product-summery
    .recently-flex {
    justify-content: center;
  }
  .page-template-page-newpluginpage-php .testimonial-section h2 {
    font-size: 25px;
  }
  .page-template-page-newpluginpage-php
    .product-section
    .product-summery
    .product-price
    .action
    a {
    margin: 2% 0%;
  }

  .page-template-page-newpluginpage-php
    .product-section
    .product-summery
    .product-price
    .price-wrap
    .no-gutters {
    gap: 20%;
    justify-content: center;
  }

  .page-template-page-newpluginpage-php
    .product-section
    .product-summery
    .product-price
    .price-wrap
    .no-gutters
    .col-3 {
    margin: 3% 0%;
    min-width: 35% !important;
  }
  .page-template-page-newpluginpage-php
    .product-description
    .product-awards
    .plugin-description
    h2 {
    font-size: 20px;
  }
  .page-template-page-newpluginpage-php .inner-header .font-50 {
    font-size: 28px;
  }
  .page-template-page-newpluginpage-php .how-it-work #importExport figure img {
    margin-bottom: 5%;
  }
  .page-id-5379 .container {
    width: 90%;
  }
  .page-id-5379 .product-section form#gform_2 {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .inner-header {
    margin-top: 60%;
  }
}
