/* @font-face {


  font-family: 'Poppins';
  src: url('/fonts/Poppins-Regular.eot');
  src: url('/fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Poppins-Regular.woff2') format('woff2'),
    url('/fonts/Poppins-Regular.woff') format('woff'),
    url('/fonts/Poppins-Regular.ttf') format('truetype'),
    url('/fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-Bold.eot');
  src: url('/fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
       url('/fonts/Poppins-Bold.woff2') format('woff2'),
       url('/fonts/Poppins-Bold.woff') format('woff'),
       url('/fonts/Poppins-Bold.ttf') format('truetype'),
       url('/fonts/Poppins-Bold.svg#Poppins-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-SemiBold.eot');
  src: url('/fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
       url('/fonts/Poppins-SemiBold.woff2') format('woff2'),
       url('/fonts/Poppins-SemiBold.woff') format('woff'),
       url('/fonts/Poppins-SemiBold.ttf') format('truetype'),
       url('/fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
} */


/* Google Fonts are now loaded directly in layout.ejs to prevent layout shift */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap'); */


* {
  margin: 0;
  padding: 0;
}
:root {
  --bs-primary-rgb: 158, 109, 201;  /*purple*/
  --bs-secondary-rgb: 255, 147, 15; /*orange*/
  --bs-dark-rgb: 0, 0, 0; /*sub title*/
  --bs-light-rgb: 44, 49, 49;  /* p,a tag */
  --bs-info-rgb: 102, 102, 102; /* badge */
  --bs-border-color: rgb(218, 218, 218); /*border color */
  --bg-gray: rgb(242, 242, 242); /* gray type background */
  --bs-warning-rgb: 240, 192, 0;
  --bs-success-rgb: 0, 181, 136;
  --background-light-purple-rgb: 207, 182, 228;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: rgb(var(--bs-light-rgb));
}
h1,h2,h3,h4,h5,h6,p {
  margin-bottom: 0;
}
h1 {
  font-size: 40px;
  line-height: 50px;
}
h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 45px;
}
h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
}
a {
  text-decoration: none;
  color: rgb(var(--bs-light-rgb));
  transition: all 0.3s;
}
a:hover,
#show_hide_information:hover {
  color: rgb(var(--bs-secondary-rgb));
}
p, .para_lg {
  font-size: 18px;
  line-height: 27px;
}
.para_md,
.content_dynamic p {
  font-size: 14px;
  line-height: 22px;
}
.content_dynamic img  {
  max-width: 100%;
  height: auto;
}
.content_dynamic a {
  color: rgb(var(--bs-secondary-rgb));
}
.para_sm {
  font-size: 12px;
  line-height: 18px;
}
input:focus,
select:focus,
a:focus,
input:focus-visible,
textarea:focus-visible {
  box-shadow: none !important;
  outline: none !important;
}
input::placeholder,
textarea::placeholder,
.faq_slider_option .swiper-pagination-total {
  color: rgb(var(--bs-info-rgb));
}
textarea {
  resize: none;
  padding: 12px 0;
}
input:disabled{
  background-color: unset !important;
}
.custom-disabled:disabled {
  background-color: var(--bg-gray) !important;
}
.base_input {
  font-size: 16px;
  height: 40px;
  transition: all 0.3s;
  border: 1px solid var(--bg-gray);
}
.base_input:focus {
  border-color: rgb(var(--bs-info-rgb));
}
.base_input:focus::placeholder {
  font-size: 0;
}
.input_lg {
  height: 50px;
}
.base_btn {
  font-size: 16px;
  height: 40px;
  max-width: fit-content;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
.base_btn::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(45deg, rgba(255,255,255,0) 25%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 75%);
  transition: all 0.5s ease-out;
  left: -100%;
  top: 0;
}
.base_btn:hover::after {
  left: 100%;
}
.cursor-pointer {
  cursor: pointer !important;
}
.btn_lg {
  font-size: 18px;
  height: 50px;
}
.bullet_list li {
  list-style-type: none;
  padding-left: 20px; 
  position: relative;
}
.bullet_list li::before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; 
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: rgb(var(--bs-primary-rgb));
}
.z_1 {
  z-index: -1;
}
.fw_600{
  font-weight: 600;
}
.step_image{
  max-width: 100%;
}

.fw-500 {
  font-weight: 500;
}
.hidden-content,
.focused .form-label {
  display: none;
}

.bg_light{
  background: #f5f5f5;
}

.bg_dark_gray {
  background: #e2e2e2;
}

.bg_gray,
#blogFilterBar .blog-filter-btn.active,
#blogFilterBar .blog-filter-btn:hover {
  background-color: var(--bg-gray);
}
.two_lines_ellipse {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.four_lines {
  -webkit-line-clamp: 4;
}
.hero_sec {
  box-shadow: 0px 4px 21px 0px rgb(var(--bs-light-rgb), 0.25) inset;
}
.border_dashed {
  border-top-style: dashed !important;
  border-top-width: 1px !important;
}
.border_dashed_bottom {
  border-bottom-style: dashed !important;
  border-bottom-width: 1px !important;
}
.border_dashed2{
  border-bottom-style: dashed !important;
  border-bottom-width: 1px !important;
}
.comman_ps_11 + .error {
  padding-left: 11px;
}
.top_bottom_radius {
  border-radius: 24px 0 24px 0;
}
.swiper-slide {
  min-height: 100%;
}
.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  background-image: linear-gradient(90deg, red, yellow, green);
}
.modal-backdrop.show {
  opacity: 0.75;
}
.base_btn:disabled,
.base_input:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}
.base_input:disabled {
  background-color: var(--bg-gray);
}
.primary_gradi_bg {
  background: linear-gradient(45deg, rgba(158,109,201,0.75) 15%, rgba(255,147,15,0.75) 115%);
}
.error_page {
  background: linear-gradient(294.06deg, #FF930F -190.54%, #D4DCF6 91.17%);
}
input:not(input.bg_gray):-webkit-autofill,
select:not(input.bg_gray):-webkit-autofill,
textarea:not(input.bg_gray):-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px rgb(255, 255, 255) inset !important;
  -webkit-text-fill-color: inherit !important;
}
input.bg_gray:-webkit-autofill,
select.bg_gray:-webkit-autofill,
textarea.bg_gray:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px var(--bg-gray) inset !important;
  -webkit-text-fill-color: inherit !important;
}
#blogFilterBar::-webkit-scrollbar {
  height: 0;
}
.custom_scroll::-webkit-scrollbar {
  width: 6px;
}
.custom_scroll::-webkit-scrollbar-thumb {
  background: var(--bs-border-color); 
  border-style: solid;
  border-color: #FFFFFF;
  border-width: 3px 2px 3px 0;
}
.custom_scroll::-webkit-scrollbar-button,
#blogFilterBar::-webkit-scrollbar-button {
  display: none;
}
.coming_soon_vector {
  max-width: 300px;
}
.tooltip.show {
  opacity: 1 !important;
}
.tooltip .tooltip-inner {
  background-color: #ffffff;
  color: rgb(var(--bs-light-rgb)) !important;
  padding: 12px 16px !important;
  max-width: 250px !important;
}
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  border-top-color: var(--bs-border-color) !important;
  top: 0 !important;
}
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  border-right-color: var(--bs-border-color) !important;
  right: 0 !important;
}
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  border-bottom-color: var(--bs-border-color) !important;
  bottom: 0 !important;
}
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  border-left-color: var(--bs-border-color) !important;
  left: 0 !important;
}
.tooltip .tooltip-inner > * {
  font-family: "Poppins", sans-serif !important;
  font-size: 11px !important;
}
/* 
.all_bill_preview{
  overflow-y: hidden;
  scrollbar-width: none;
} */
/* iframe#documentPreview {
  height: 900px;
  width: 100%;
  overflow-y: hidden;
  scrollbar-width: none;
} */

/* ========== HEADER ========== */
header .logo {
  max-width: 150px;
}
header nav {
  padding: 14px 0;
}
#headerMenu a::after {
  content: '';
  left: 0;
  background-color: rgb(var(--bs-primary-rgb));
  height: 3px;
  width: 0;
  display: block;
  position: absolute;
  transition: all 0.3s ease;
}



#navbarDropdownitem-W2 a::after,
#navbarDropdownitem-1099 a::after,
#navbarDropdownitem-other a::after {
  height: 0;
  background-color: rgb(var(--bs-primary-rgb));
}

#navbarDropdownitem-W2 li.active,
#navbarDropdownitem-1099 li.active,
#navbarDropdownitem-other li.active {
  background-color: rgba(var(--bs-primary-rgb), 0.8);
}

#navbarDropdownitem-W2 li.active a,
#navbarDropdownitem-1099 li.active a,
#navbarDropdownitem-other li.active a {
  color: #ffffff !important;
}

ul#navbarDropdownitem-W2,
ul#navbarDropdownitem-1099,
ul#navbarDropdownitem-other {
  padding: 0;
  /* margin-top: 10px !important; */
}

#headerMenu li.active > a::after {
  width: 100%;
}
#toggle {
  width: 22px;
}
#toggle > * {
  background: rgb(var(--bs-primary-rgb));
  backface-visibility: hidden;
  margin: 6px auto;
  transition: all 0.3s;
  height: 3px;
  width: 100%;
}
#toggle.on .one {
  transform: rotate(45deg) translate(5px, 5px);
}
#toggle.on .two {
  opacity: 0;
}
#toggle.on .three {
  transform: rotate(-45deg) translate(7px, -8px);
}

@media (min-width: 992px) {
  #headerMenu .dropdown:hover .dropdown-menu {
      display: block;
  }

  #headerMenu .dropdown > a {
    pointer-events: none; /* Disable click on the dropdown link itself */
  }
}

@media (min-width: 992px) {
  .position-lg-absolute {
    position: absolute !important;
  }
}

@media (max-width: 991.99px) {
  .nev_height_cal {
    height: calc(100vh - 80.87px) !important;
    overflow: auto;
  }

  #headerMenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #9e6dc9 !important;
    padding: 48px 0 !important;
  }

  #headerMenu a::after {
    content: '';
    left: 0;
    background-color: rgb(255, 255, 255);
    height: 3px;
    width: 0;
    display: block;
    position: absolute;
    transition: all 0.3s ease;
  }

  a:hover{
    color: white !important;
  }

  .dropdown a.show .fa-chevron-down {
    transform: rotate(180deg);
  }
  .nav-menu {
    flex-direction: column;
    padding: 0;
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .nav-item {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #f9bebe;
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    padding: 0;
    margin: 0;
    border: none;
    border-top: 1px solid #e1e5eb;
  }

  .nav-item.dropdown:hover .dropdown-menu,
  .nav-item.dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    padding: 12px 20px 12px 30px;
    font-weight: 500;
    font-size: 0.9em;
    display: block;
    transition: all 0.2s ease;
  }

  .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 5px;
  }

  .nav-item.dropdown:hover .fa-chevron-down,
  .nav-item.dropdown:focus-within .fa-chevron-down {
    transform: rotate(180deg);
    padding-bottom:12px;
  }

  .dropdown-menu {
    background-color: transparent;
    border-top: none;
    width: 100% !important;
    padding-top: -10px !important;
    transform: translate3d(2px, 12.5px, 0px) !important;
  }

  .border_res {
    background-color: rgba(0, 0, 0, 0.25);
    border-top: 1px solid  #dee2e6;
    text-align: center;
    padding-left: 0px !important;
  }

  #navbarDropdownitem-W2 li.active, #navbarDropdownitem-1099 li.active, #navbarDropdownitem-other li.active{
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .border_res:first-child {
    border-top: none;
  }

  .border_res>a {
    color: white;
  }


  .color_white{
    color:white;
  }

  .dropdown{
    width: 100%;
  }

  .dropdown-item:before {
    content: '•';
    margin-right: 8px;
  }
}


@media (min-width: 992px) {
  .position-lg-absolute {
    position: absolute !important;
  }
}

@media (max-width: 991.99px) {
  .nev_height_cal {
    height: calc(100vh - 80.87px) !important;
    overflow: auto;
  }

  #headerMenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #9e6dc9 !important;
    padding: 48px 0 !important;
  }

  #headerMenu a::after {
    content: '';
    left: 0;
    background-color: rgb(255, 255, 255);
    height: 3px;
    width: 0;
    display: block;
    position: absolute;
    transition: all 0.3s ease;
  }

  a:hover{
    color: white !important;
  }

  .dropdown a.show .fa-chevron-down {
    transform: rotate(180deg);
  }
  .nav-menu {
    flex-direction: column;
    padding: 0;
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .nav-item {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #f9bebe;
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    padding: 0;
    margin: 0;
    border: none;
    border-top: 1px solid #e1e5eb;
  }

  .nav-item.dropdown:hover .dropdown-menu,
  .nav-item.dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    padding: 12px 20px 12px 30px;
    font-weight: 500;
    font-size: 0.9em;
    display: block;
    transition: all 0.2s ease;
  }

  .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 5px;
  }

  .nav-item.dropdown:hover .fa-chevron-down,
  .nav-item.dropdown:focus-within .fa-chevron-down {
    transform: rotate(180deg);
    padding-bottom:12px;
  }

  .dropdown-menu {
    background-color: transparent;
    border-top: none;
    width: 100% !important;
    padding-top: -10px !important;
    transform: translate3d(2px, 12.5px, 0px) !important;
  }

  .border_res {
    background-color: rgba(0, 0, 0, 0.25);
    border-top: 1px solid  #dee2e6;
    text-align: center;
    padding-left: 0px !important;
  }

  #navbarDropdownitem-W2 li.active, #navbarDropdownitem-1099 li.active, #navbarDropdownitem-other li.active{
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .border_res:first-child {
    border-top: none;
  }

  .border_res>a {
    color: white;
  }


  .color_white{
    color:white;
  }

  .dropdown{
    width: 100%;
  }

  .dropdown-item:before {
    content: '•';
    margin-right: 8px;
  }
}


/* ========== FOOTER ========== */
footer .logo {
  max-width: 200px;
}
footer h6 {
  font-size: 24px;
}
.social_media a,
.blog_pagination button {
  height: 42px;
  width: 42px;
  min-width: 42px;
}
.blog_pagination .dotted-btn {
  width: 30px;
  min-width: 20px;
}
.social_media a:hover {
  background-color: rgba(var(--bs-secondary-rgb));
}
@media only screen and (max-width : 1199.98px) and (min-width : 992px) {
  h1 {
    font-size: 35px;
    line-height: 45px;
  }
}

@media only screen and (min-width : 1200px) {
  .container {
    max-width: 1164px;
  }
}

@media only screen and (min-width : 992px) {
  #headerMenu {
    border-top: none !important;
  }
}

@media only screen and (max-width : 991.98px) {
  body{
    font-size: 14px;
  }
  footer .logo {
    max-width: 150px;
  }
  p, .para_lg:not(h5.para_lg){
    font-size: 16px;
    line-height: 24px;
  }
  h2{
    font-size: 24px;
    line-height: 32px;
  }
  #headerMenu {
    position: absolute;
    bottom: 100%;
  }
  body.menu_open #headerMenu {
    top: 100%;
    bottom: auto;
    box-shadow: 0px 4px 4px 0px rgb(var(--bs-dark-rgb), 0.25);
  }
}

@media only screen and (max-width : 767.98px) {
  h1 {
    font-size: 30px;
    line-height: 40px;
  }
  header .logo {
    max-width: 130px;
  }
  .btn_lg,
  .input_lg {
    font-size: 16px;
    height: 44px;
  }
  footer h2{
    font-size: 20px;
    line-height: 30px;
  }
  .blog_pagination button {
    height: 32px;
    width: 32px;
    min-width: 32px;
    font-size: 14px !important;
  }
  .blog_pagination .dotted-btn {
    width: 22px;
    min-width: 22px;
    font-size: 8px !important;
  }
}

/* ******************************* HOME PAGE ******************************* */

/* ========== HERO SECTION ========== */
.home_page .hero_sec {
  background: linear-gradient(180deg, #ffffff -10%, #E9EEFE 55%, #ffffff 85%);
}
.home_page .hero_sec ul li:nth-child(1) {
  background: linear-gradient(90deg, #ECD0BA 50%, rgba(255, 255, 255, 0) 100%);
}
.home_page .hero_sec ul li:nth-child(2) {
  background: linear-gradient(90deg, #CAC6EF 50%, rgba(255, 255, 255, 0) 100%);
}
.home_page .hero_sec ul li:nth-child(3) {
  background: linear-gradient(90deg, #E8CBE2 50%, rgba(255, 255, 255, 0) 100%);  
}
.home_page .hero_sec form {
  box-shadow: 0px -40px 30px 10px rgb(var(--bs-dark-rgb), 0.03);
}
.home_page .hero_sec ul li i {
  height: 30px;
  width: 30px;
}
.hero_sec .container > img {
  max-width: 100%;
}
.rounded-video {
  overflow: hidden; 
}
.why_choose_paystub_image{
  aspect-ratio: 225 / 236; 
}
/* .video_thumbnail_image{
  aspect-ratio: 350 / 197;
} */

.video_thumbnail_image {
  position: relative;
  aspect-ratio: 16 / 9 !important;
  padding-top: 0 !important; 
}

.video_thumbnail_image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill container without distortion */
  border-radius: inherit;
}

.paystub_generator_video .wrapper {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%)
}

.video-main {
  position: relative;
  display: inline-block;
}

.video {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #fff;
  display: inline-block;
  z-index: 999;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
  }
}

.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 147, 15, 0.3);
  opacity: 0;
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}
        
.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* ========== Blog page ========== */
.blogs_page h2 {
  font-size: 16px;
  line-height: 25px;
}
.blog_page h1 {
  font-size: 30px;
  line-height: 45px;
}
.blog_page h2 {
  font-size: 20px;
  line-height: 30px;
}
.blog_page h3, .blogs_page h4 {
  font-size: 16px;
  line-height: 25px;
}
/* ========== WHY CHOOSE SECTION ========== */
.what_is_paystub,
.blog_sec,
footer {
  /* background: linear-gradient(0deg, #FFFFFF 0%, #E9EEFE 31.78%, #ffecf3 104.21%);*/
	background-color: #e9eefe;
}
.what_is_paystub::before,
footer::before {
  content: '';
  /* background: url('/images/curve_vector.svg') left bottom / contain repeat-x; */
  position: absolute;
  left: 0;
  height: 45px;
  width: 100%;  
  bottom: calc(100% - 1px);
}
@media only screen and (max-width : 1199.98px) {
  .what_is_paystub ::before,
  footer::before {
    height: 30px;
  }
}
@media only screen and (max-width : 767.98px) {
  .what_is_paystub::before,
  footer::before {
    height: 15px;
  }
}
@media only screen and (max-width : 575.98px) {
  .what_is_paystub::before,
  footer::before {
    height: 10px;
  }
}

/* ========== STEP SECTION ========== */
.step_sec .gredi_divider {
  min-width: 24px;
  max-width: 24px;
  background: radial-gradient(219.36% 59.61% at -119.35% 50%, #858585 0%, #8E8E8E 4.09%, #B6B6B6 24.88%, #D6D6D6 45.29%, #EDEDED 64.96%, #FAFAFA 83.57%, #FFFFFF 100%);
}
.step_sec .step_2 .gredi_divider {
  background: radial-gradient(219.36% 59.61% at 219.35% 50%, #858585 0%, #8E8E8E 4.09%, #B6B6B6 24.88%, #D6D6D6 45.29%, #EDEDED 64.96%, #FAFAFA 83.57%, #FFFFFF 100%);
}
.step_sec .step {
  height: 200px;
}

@media only screen and (max-width : 991.98px) {
  .step_sec .step {
    height: 150px;
  }
  .step_sec .step h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width : 575.98px) {
  .step_sec .step {
    height: auto;
  }
  .step_sec .step p {
    font-size: 14px;
    line-height: 21px;
  }
  .step_sec .step img {
    width: 35%;
  }
  .step_sec .step h4 {
    font-size: 16px;
  }
}

/* ========== CONTACT FORM =========== */
.contact_us { 
background: linear-gradient(to top,#ffffff 50%, rgb(var(--background-light-purple-rgb)) 50%);
}
.contact_us .form-control:focus {
  border-color: #000000; 
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-textarea {
  height: 125px;
  resize: vertical;
}
@media only screen and (max-width : 374.98px) {
  .base_btn {
    font-size: 12px;
}
.contact_us h2{
  font-size: 26px;
}
}

/* ========== REVIEW SECTION ========== */
#userReviewBtns button {
  height: 22px;
  width: 22px;
}
#userReviewBtns button.swiper-pagination-bullet-active::after {
  content: '';
  background-color: rgb(var(--bs-secondary-rgb));
  height: calc(100% - 8px);
  width: calc(100% - 8px);
  display: block;
  pointer-events: none;
  border-radius: 50%;
}
.user_review_slider .review_slide .overlay {
  border-radius: 48px;
  margin: 6px 0 0 2px;
}
.user_review_slider .review_slide .inner {
  border-radius: 48px;
  box-shadow: 0px 4px 13px 0px rgb(var(--bs-dark-rgb), 0.25);
}
.user_review_slider .inner > img {
  height: 36px;
  margin-top: -4px;
}

/* ========== BLOG SECTION ========== */
.recent_blog_list img,
.theme_box > img {
  object-fit: contain;
}
.blog_sec .row img {
  object-fit: cover;
}

@media only screen and (max-width : 1199.98px) {
  .blog_sec .row img {
    height: 200px;
  }
}

@media only screen and (max-width : 767.98px) {
  .review_slider .review_slide .inner,
  .review_slider .review_slide .overlay {
    border-radius: 30px;
  }
  #userReviewSlider ~ div:not(#userReviewBtns) {
    display: none;
  }
  .user_review .container {
    padding: 0;
  }
}

/* ******************************* PAYSTUB PAGE ******************************* */
.progress-section,.bg-selected {
  background: radial-gradient(761.65% 761.65% at 60.62% 50.38%, rgba(211, 207, 234, 0.85) 0%, rgba(196, 146, 195, 0.85) 100%);
}
.progress-section .paystub_step button{
  height: 30px;
  width: 30px;
  transition: all 0.3s;
  cursor: auto;
  font-size: 14px;
}
.progress-section .paystub_step p {
  font-size: 10px;
  line-height: 14px;
  transition: all 0.3s;
}
.progress-section .paystub_step.current,
.progress-section .paystub_step.completed {
  opacity: 1 !important;
}
.progress-section .paystub_step.current button,
.progress-section .paystub_step.completed button {
  border-color: rgb(var(--bs-primary-rgb)) !important;
  color: rgb(var(--bs-primary-rgb)) !important;
}
.progress-section .paystub_step.completed:not(.current) button {
  background: rgb(var(--bs-primary-rgb)) !important;
  cursor: pointer;
}
.progress-section .paystub_step.current p,
.progress-section .paystub_step.completed p {
  color: rgb(var(--bs-primary-rgb)) !important;
}
.progress-section .paystub_step.completed + .divider {
  background: linear-gradient(to right, transparent 50%, rgba(var(--bs-primary-rgb)) 50%);
  background-size: 6px 2px, 100% 2px;
}
.progress-section .divider {
  height: 1px;
  width: 100%;
  position: relative;
  background: linear-gradient(to right, transparent 50%, rgba(var(--bs-light-rgb), 0.75) 50%);
  background-size: 6px 2px, 100% 2px;
}
.progress-section .divider::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: 0;
  transition: all 0.75s ease;
  background: rgba(var(--bs-primary-rgb));
}
.progress-section .paystub_step.completed + .divider::after {
  width: 100%;
}
.layout .bill_preview {
  overflow-x: hidden;
  overflow-y: auto;
  margin-bottom: 0;
}
.pdf_view {
  width: 1060px;
}
.layout .pdf_view_inner,
.all_bill_preview .pdf_view_inner {
  transform-origin: left top;
}
.pdf_preview_wrapper {
  overflow: hidden;
}

.pdf_preview {
  width: 1098px;
  overflow: hidden;
}

.pdf_preview_inner {
  transform-origin: left top;
  width: 100%;
  height: 100%;
  min-height: 137.2px;
  background-color: #fff;
}
.preview_actions button {
  font-size: 12px;
  height: 30px;
}

.layout .paystub_information,
.layout .w9_information,
.layout .w4_information,
.layout .SS-4_information,
.layout .w7_information,
.layout .f1099_c_information,
.layout .n8809_information,
.layout .f8995_information,
.layout .f1099_div_information,
.layout .f1099_oid_information,
.layout .f1099_int_information,
.layout .f1099_g_information,
.layout .f1099_nec_information,
.layout .f1099_r_information,
.layout .f1098_information,
.layout .f1098_t_information,
.layout .f1065_information,
.layout .f8829_information,
.layout .n1040_information,
.layout .n2106_information,
.layout .n944_information,
.layout .n940_information,
.layout .n4797_information, 
.layout .n1040_SE_information, 
.layout .n1040_C_information, 
.layout .n1040_F_information, 
.layout .f4562_information, 
.layout .f8300_information,
.layout .n941_information, 
.bill_logo input {
  display: none;
}
.layout .paystub_information.active,
.layout .w9_information.active,
.layout .w4_information.active,
.layout .SS-4_information.active,
.layout .f1099_c_information.active,
.layout .f8995_information.active,
.layout .w7_information.active,
.layout .f1099_div_information.active,
.layout .f1099_oid_information.active,
.layout .f1098_information.active,
.layout .f1098_t_information.active,
.layout .f1065_information.active,
.layout .f8829_information.active,
.layout .f1099_int_information.active,
.layout .f1099_g_information.active,
.layout .f1099_nec_information.active,
.layout .f1099_r_information.active,
.layout .n8809_information.active,
.layout .n1040_information.active,
.layout .n2106_information.active ,
.layout .n944_information.active,
.layout .n940_information.active,
.layout .n1040_SE_information.active,
.layout .n1040_C_information.active,
.layout .n1040_F_information.active,
.layout .n4797_information.active,
.layout .f4562_information.active,
.layout .f8300_information.active,
.layout .n941_information.active
{
  display: block;
}
.bill_logo{
  border: 1px dashed rgb(var(--bs-dark-rgb));
}
.bill_logo label {
  cursor: pointer;
}
.earning_label,
.custom_earnings input {
  min-width: 96px;
}
.deduction_label ,
.custom_deductions input{
  width: 100px;
}
.template_theme_wrapper button::before {
  content: "\2713";
}
.theme_box {
  height: 300px;
  transition: all .3s;
}
.template_theme_wrapper button::before,
.theme_box .hoverable_part {
  background-color: rgb(var(--bs-light-rgb), 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: absolute;
  transform: scale(0);
  transition: all .3s;
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
}
.theme_box .hoverable_part {
  background: rgb(158, 109, 201, 25%);
}
.template_theme_wrapper button.active::before,
.theme_box:hover .hoverable_part {
  transform: scale(1);
}
.theme_box:hover {
  border-color: rgb(var(--bs-primary-rgb)) !important;
}
.paystub_count{
  min-height: 30px;
  min-width: 30px;
}
.radio_height {
  height: 39px;
}
.bill_preview_wrapper .sticky-lg-top {
  z-index: 1;
}
.pagination_wrapper a {
  font-size: 10px;
}
.pagination_wrapper .active> a{
  background-color: rgb(var(--bs-secondary-rgb)) !important;
  border-color: transparent;
  color: white !important;
}
#paystub input[type='radio'],
#w9Form input[type='radio'],
#w-4Form input[type='radio'],
#SS-4Form input[type='radio'],
#SS-4Form input[type='checkbox'],
#paystubHome input[type='radio'],
#w9FormHome input[type='radio'],
#w-4FormHome input[type='radio'],
#SS-4FormHome input[type='radio'],
#SS-4FormHome input[type='checkbox'],
.bill_part input[type='radio'],
.bill_part input[type='checkbox'],
#addCustomEarningModal input[type='radio'],
.form_view input[type='checkbox']:checked{
  background-image: none;
  filter: none;
  position: relative;
  background-color: transparent;
}

.bill_part input[type='radio']:disabled + label,
.bill_part input[type='checkbox']:disabled + label,
#paystub input[type='radio']:disabled + label,
#w9Form input[type='radio']:disabled + label,
#w-4Form input[type='radio']:disabled + label,
#SS-4Form input[type='radio']:disabled + label,
#SS-4Form input[type='checkbox']:disabled + label,
#paystubHome input[type='radio']:disabled + label, 
#w9Form input[type='radio']:disabled + label, 
#w-4Form input[type='radio']:disabled + label, 
#SS-4Form input[type='radio']:disabled + label, 
#SS-4Form input[type='checkbox']:disabled + label, 
#addCustomEarningModal input[type='radio']:disabled + label {
  opacity: 0.5;
}

.bill_part input[type='radio']:checked,
.bill_part input[type='checkbox']:checked,
#paystub input[type='radio']:checked,
#w9Form input[type='radio']:checked,
#w-4Form input[type='radio']:checked,
#SS-4Form input[type='radio']:checked,
#SS-4Form input[type='checkbox']:checked,
#paystubHome input[type='radio']:checked,
#w9FormHome input[type='radio']:checked,
#w-4FormHome input[type='radio']:checked,
#SS-4FormHome input[type='radio']:checked,
#SS-4FormHome input[type='checkbox']:checked,
#addCustomEarningModal input[type='radio']:checked,
.form_view input[type='checkbox']:checked {
  border-color: rgb(var(--bs-secondary-rgb)) !important;
}

.bill_part input[type='radio']:checked::after,
.bill_part input[type='checkbox']:checked::after,
#paystub input[type='radio']:checked::after,
#w9Form input[type='radio']:checked::after,
#w-4Form input[type='radio']:checked::after,
#SS-4Form input[type='radio']:checked::after,
#SS-4Form input[type='checkbox']:checked::after,
#paystubHome input[type='radio']:checked::after,
#w9FormHome input[type='radio']:checked::after,
#w-4FormHome input[type='radio']:checked::after,
#SS-4FormHome input[type='radio']:checked::after,
#SS-4FormHome input[type='checkbox']:checked::after,
#addCustomEarningModal input[type='radio']:checked::after,
.form_view input[type='checkbox']:checked::after {
  content: '';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 38%;
  left: 70%;
  transform: translate(-50%, -50%) rotate(-10deg);
  font-size: 14px;
  opacity: 80%;
  color: rgb(var(--bs-secondary-rgb));
}

.help-tooltip {
  font-size: 14px;
  width: 300px;
}
.remove_img_btn, .remove_agent_img_btn , .remove_preparer_img_btn  {
  font-size: 10px;
  height: 18px;
  width: 18px;
  right: -9px;
  top: -9px;
}
#employee_logo_modal .crop_box,
#uploadSignatureModal .crop_box  {
  max-height:400px;
}
.content_section{
  background: #CAC6EF20;
}

/* ========== PAYSTUB PREVIEW SECTION ========== */
.template_btn img {
  transform: translateY(-50%);
  left: 5px;
}
/* ******************************* W2-FORM PAGE ******************************* */
.all_bill {
  padding-top: 100px;
  padding-bottom: 5px;
  margin: 0px auto;
  margin-bottom: 20px;
}
.bill_title {
  top: 20px;
  left: -18px;
  width: calc(100% + 18px*2);
  padding: 12px 0px;
}
.bill_title::after,
.bill_title::before {
  content: "";
  position: absolute;
  border-bottom: solid 18px rgb(var(--bs-light-rgb));
  border-left: solid 18px transparent;
  top: 100%;
}
.bill_title::before {
  transform: rotate(-90deg);
  left: 0;
}
.bill_title::after {
  transform: rotate(-180deg);
  right: 0;
}
.w2-all-legends li {
  padding-left: 20px !important;
}
.w2-all-legends li:before {
  background-color: #ccc;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  width: 10px;
}
.w2-all-legends li.blue-legends:before {
  background-color:  rgb(var(--bs-light-rgb));
}

.w2-form, .make-your-1099{
  width: 1134px;
}

.preview-content {
  width: 1100px;
}

@media only screen and (max-width : 767.98px) {
  .bill_part .bill_title {
    width: 100%;
    left: 0;
    top: 0;
  }
  .bill_part .bill_title::after {
    border:0px;
  }
  .bill_part .bill_title::before {
    border:0px;
  }
}

@media only screen and (max-width: 1199.98px) {
  .preview-content {
    width: 856px;
  }
}
/* ******************************* W9-FORM PAGE ******************************* */

canvas {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.canvas-container {
  position: relative;
  width: 100%;
  background-color: rgb(255, 255, 255);
  border: 1px solid;
  border-radius: 10px;
  margin: 0 auto;
}
.sign_canvas {
  display: block;
}
.sign-clr-button {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
}
.sign-clr-button button {
  border: none;
  background: transparent;
  cursor: pointer; 
  outline: none; 
}
.sign-clr-button i {
  font-size: 16px;
}
@media only screen and (max-width : 425.99px) {
  .canvas-container {
    width: 100% !important;
  }
}
/* ******************************* 1065-FORM PAGE ******************************* */

.pointer {
  cursor: pointer;
}

/* ******************************* 941B-FORM PAGE ******************************* */
.bill_section .add_remove_row {
  height: 40px;
  width: 40px;
}


/* ******************************* 8995-FORM PAGE ******************************* */

label#Income_a_i-error {
  padding-left: 20px;
}

/* ******************************* 1040-FORM PAGE ******************************* */
.auto_height {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.digitalAsset label {
  left: unset !important;
}

/* ******************************* Federal Income Tax Calculator **************************** */

.hsborderBottomDark{
  border-bottom: 3px solid !important;
}
.ItemizedDeductionsCol{
  display: none;
}
/* .trigger {
  input[type="checkbox"] {

    & + div {
      visibility: hidden;
      opacity: 0;
    
      transition: visibility 0s linear 0.33s, opacity 0.33s linear;
    }

    &:checked + div {
      visibility: visible;
      opacity: 1;
      
      transition-delay: 0s;
    }
  }
}

.msg {
  display: block;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
} */

/* ========== FAQ SECTION ========== */
.faq_sec .accordion-button:not(.collapsed)::after,
.faq_sec .accordion-button.collapsed::after {
  transition: transform 0.3s ease;
  font-size: 30px;
  color: rgb(var(--bs-primary-rgb));
  height: auto;
  width: auto;
  background: none;
}
.faq_sec .accordion-button:not(.collapsed)::after{
  content: "\2212";
  transform: rotate(180deg);
}
.faq_sec .accordion-button.collapsed::after {
  content: "\002b";
  transform: rotate(90deg);
}
.faq_slider_option button {
  height: 25px;
  width: 25px;
}
.faq_slider_option .swiper-pagination-current {
  color: rgb(var(--bs-secondary-rgb));
}
#faqPageBtns {
  width: 50px;
}
@media only screen and (max-width : 575.98px)  {
  .radio_height {
    height: auto;
  }
  .progress-section .paystub_step button {
    height: 26px;
    width: 26px;
  }
}
/* ******************************* BLOGS PAGE ******************************* */

/* ========== BLOGS SECTION ========== */
@media only screen and (max-width : 575.98px) {
  .blogs_page .blog_content + div {
    width: 100%;
  }
  .progress-section .paystub_step span {
    transform: scale(0.9);
  }
  .progress-section .paystub_step p {
    text-wrap: wrap !important;
  }
  .custom-input-width {
    width: 100% !important;
  }
}

/* ******************************* SINGLE BLOG PAGE ******************************* */
.recent_blog_list img {
  height: 80px;
  width: 80px;
}
@media only screen and (min-width: 992px) {
  .blog_sidebar {
    max-width: 300px;
    min-width: 300px;
    height: fit-content;
    top: 100px;
   }
}

@media only screen and (max-width: 425.99px) {
  .employer_logo_upload{
    width: 50%;
  }
  .sign_preview{
    width: 50%;
  }
}


/* ******************************* ORDER SUMMARY PAGE ******************************* */

.order_page .payment_option  {
  max-width: 360px;
}

@media only screen and (max-width : 767.98px) {
  .order_page .summary_box .btn_lg, 
  .order_page .summary_box .input_lg {
    font-size: 14px;
    height: 40px;
  }
  .order_page .summary_box p {
    font-size: 12px;
  }
  .order_page .payment_option  {
    max-width: 100%;
  }
}

/* ******************************* THANK YOU PAGE ******************************* */
.download_box h4 {
  font-size: 22px;
}

@media only screen and (max-width : 767.98px) {
  .download_box h4 {
    font-size: 18px;
  }
}

/* ******************************* LOADER ******************************* */
.loader-wrapper{  
  inset: 0;
  z-index: 9;
  display: none;
}
.loader {
  width: 60px;
  height: 80px;
}
.loader:before{
  content: '';
  position: absolute;
  width: 30px;
  height: 20px;
  left: 50%;
  top: 0;
  background-image:
  radial-gradient(ellipse at center, #0000 24%,rgb(var(--bs-primary-rgb)) 25%,rgb(var(--bs-primary-rgb)) 64%,#ffffff00 65%),
  linear-gradient(to bottom, #0000 34%,rgb(var(--bs-primary-rgb)) 35%);
  background-size: 12px 12px , 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  transform: translate(-50% , -65%);
  box-shadow: 0 -3px rgba(0, 0, 0, 0.25) inset;
}
.loader:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  width: 65%;
  height: 65%;
  background: linear-gradient(to bottom, rgba(var(--bs-secondary-rgb), 0.6) 25%, rgba(var(--bs-secondary-rgb), 0) 0%);
  background-size: 100% 12px;
  animation: writeDown 1.5s ease-out infinite;
}

.custom-input-width {
  width: 89px;
}
.date_label{
  min-width: 105px;
}
@keyframes writeDown {
  0% { height: 0%; opacity: 0;}
  20%{ height: 0%; opacity: 1;}
  80% { height: 63%; opacity: 1;}
  100% { height: 63%; opacity: 0;}
}
.application_success .loader-wrapper {
  min-height: 250px;
}
@media only screen and (max-width : 767.98px) {
  .loader {
    transform: scale(0.75);
  }
}

/* ******************************* HOME PAGE RES ******************************* */

@media only screen and (max-width : 575.98px) {
  .img_big_small {
    height: 125px;
  }
}

