@font-face {
  font-family: 'SourceCodePro';
  src: url("../fonts/static/SourceCodePro-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'SourceCodePro';
  src: url("../fonts/static/SourceCodePro-Bold.ttf") format("truetype");
  font-weight: bold;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'SourceCodePro';
  src: url("../fonts/static/SourceCodePro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
:root {
  --black: #000;
  --white: #fff;
  /* --theme-color: #000; */
  --theme-color: #00FF00;
  --blackshade1: #000000de;
  --bg-grey: #f2f2f2;
  --border-color: #e8e8e8;
  --input-bg: #f3f4f8ad;
}

* {
  margin: 0;
  padding: 0;
}

.sa-login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #d2d0dd;
}

.sa-login-page .logoBox {
  max-width: 300px;
  height: 300px;
  margin: auto;
  background-color: #f3f4f8;
}

.sa-login-page .logoBox img {
  object-fit: contain;
}

.login-form {
  box-shadow: 0 0.46875rem 2.1875rem rgba(4, 9, 20, 0.03),
    0 0.9375rem 1.40625rem rgba(4, 9, 20, 0.03),
    0 0.25rem 0.53125rem rgba(4, 9, 20, 0.05),
    0 0.125rem 0.1875rem rgba(4, 9, 20, 0.03);
  background: #fff;
  border-radius: 12px;
  margin: 30px 0;
}

.login-form .content_left {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.sa-login-page .form-control {
  background-color: var(--input-bg) !important;
  border: 0 !important;
  font-size: 14px !important;
}

.sa-login-page .content_section {
  padding: 100px 80px 180px;
}
.sa-register-page .content_section {
  padding: 50px 80px;
}

.sa-login-page .login-user-type {
  font-weight: 600;
  margin: 0 0 20px !important;
  font-size: 28px;
  color: var(--black);
}

.sa-login-page form .form-control {
  border: 0;
  border-left: 0;
  border-radius: 6px;
  height: 40px;
}

.sa-login-page form .input-group-addon,
.sa-login-page form .input-group-append {
  background-color: var(--input-bg);
  border: 0;
  height: 40px;
  border-radius: 8px;
  padding: 7px 12px;
}

.sa-login-page .login-form form .btn {
  width: 100%;
  padding: 9px 20px !important;
  border-radius: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.sa-login-page .login-form form i {
  color: var(--theme-color);
  font-size: 13px;
}

.sa-login-page .login_img {
  background-color: #f3f4f8;
}

.sa-login-page .login_img {
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
}
.sa-login-page .custom-select ~ .select2 {
  flex: 1;
}
.sa-login-page .custom-select ~ .select2 .select2-selection--single {
  height: 100%;
  background-color: var(--input-bg);
  border: none;
  font-size: 12px;
}
.sa-login-page .select2-selection--single > span {
  line-height: 40px !important;
  height: 40px !important;
  color: var(--blackshade1) !important;
}

/* sidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 78px;
  background: var(--white);
  z-index: 99;
  transition: all 0.5s ease;
  box-shadow: rgba(0, 0, 0, 0.2) 0.3px 1.2px 8.6px;
}

.sidebar.open {
  width: 250px;
}
.sidebar .logo-details > * {
  position: relative;
  z-index: 1;
}

.sidebar .logo-details {
  height: 69px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 6px 14px;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
}

.sidebar .logo-details .logo_name {
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  display: none;
  transition: all 15s ease;
  font-size: 16px;
}
.sidebar.open .logo-details .logo_name {
  /* display: block; */
  -webkit-animation: 0.5s ease 0s normal forwards 1 fadein;
  animation: 0.5s ease 0s normal forwards 1 fadein;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.sidebar.open .logo-details #btn {
}
.sidebar .logo-details #btn {
  filter: brightness(0.1);
  width: 30px;
  cursor: pointer;
  transition: all 0.5s ease;
  margin-left: 7px;
}

.sidebar .nav-list {
  margin: 20px 10px;
  height: 100%;
  padding: 0;
}

.sidebar li {
  position: relative;
  margin: 8px 0;
  list-style: none;
}

.sidebar li .tooltip {
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: var(--theme-color);
  color: var(--white);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}

.sidebar li:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}

.sidebar.open li .tooltip {
  display: none;
}

.sidebar input {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: var(--theme-color);
}

.sidebar.open input {
  padding: 0 20px 0 50px;
  width: 100%;
}

.sidebar li a {
  display: flex;
  width: 100%;
  border-radius: 8px !important;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  padding: 5px 0;
}

.sidebar li a:hover,
.sidebar li a.active {
  background: var(--bg-grey);
}

.sidebar li a .links_name {
  color: var(--blackshade1);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

.sidebar.open li a .links_name {
  opacity: 1;
  pointer-events: auto;
}

.sidebar li a:hover .links_name,
.sidebar li a:hover i,
.sidebar li a.active .links_name,
.sidebar li a.active i {
  transition: all 0.5s ease;
  color: var(--black);
}
.sidebar li a.active .links_name,
.sidebar li a:hover .links_name {
  font-weight: 500;
}

.sidebar li i {
  height: 30px;
  line-height: 30px;
  font-size: 15px;
  border-radius: 12px;
  color: var(--blackshade1);
  min-width: 50px;
  text-align: center;
  margin-left: 3px;
}
.sidebar.open li i{
  margin-left: 0px;
}
.sidebar li img{
    margin: 5px 15px 5px 18px;
    width: 18px;
}
.sidebar.open li img{
    margin: 5px 15px 5px 15px;
}

.sidebar li.profile {
  position: fixed;
  width: 78px;
  left: 0;
  bottom: 0;
  padding: 4px 14px;
  transition: all 0.5s ease;
  overflow: hidden;
  background: #fafafa;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  margin: 0;
}

.sidebar.open li.profile {
  width: 250px;
}

.sidebar li .profile-details {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  height: 100%;
}
.sidebar li .profile-details > * {
  position: relative;
  z-index: 1;
}

.sidebar.open .profile-details i {
  color: var(--blackshade1);
}
.sidebar li.profile .name {
  display: none;
}
.sidebar.open li.profile .name {
  display: block;
}

.sidebar li.profile .name,
.sidebar li.profile .job {
  font-size: 15px;
  font-weight: 400;
  color: var(--blackshade1);
  white-space: nowrap;
}

.sidebar li.profile .job {
  font-size: 12px;
}

.sidebar .profile #log_out {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: var(--bg-grey);
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-radius: 0px;
  transition: all 0.5s ease;
}

.sidebar.open .profile #log_out {
  width: 50px;
  background: none;
  display: none;
}

.sidebar.open ~ .home-section {
  left: 250px;
  width: calc(100% - 250px);
}
.sidebar .logo {
  display: none;
}
.sidebar.open .logo {
  display: block;
  width: 140px;
  height: 65px;
  object-fit: contain;
  margin-right: 10px;
  background-color: white;
  /* border-radius: 50%; */
}

/* header */
.header_box {
  background-color: white;
  padding: 16px 15px 17px 18px;
  border-bottom: 1px solid #ddd;
}
.header_box .dropdown-toggle::after {
  margin-left: 2.255em;
  color: #7c8594;
}
.profileDropdown {
  padding: 5px 20px !important;
  border-left: 1px solid #ccc !important;
}
.header_box .dropdown-menu.show {
  top: 14px !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border: none;
  padding: 0;
}
.profile_dp span {
  font-size: 14px;
}

.home-section .text {
  display: inline-block;
  color: var(--theme-color);
  font-size: 25px;
  font-weight: 500;
  margin: 18px;
}

.home-section {
  position: relative;
  background: var(--bg-grey);
  min-height: 100vh;
  top: 0;
  left: 78px;
  width: calc(100% - 78px);
  transition: all 0.5s ease;
  z-index: 2;
}
.icon_box {
  border: 1px solid #d4d4d4;
  width: 50px;
  height: 50px;
  min-width: 50px;
}
.company_det_page .custom-select ~ .select2 {
  width: 100% !important;
}

/* integration */
.integration_card .logo {
  width: 40px;
}
.integration_card .logobox {
  width: 50px;
  height: 50px;

  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* table */
.table_header_btns {
  float: right;
  margin-bottom: -33px;
}
.app_page .bg_box {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 30px;
  border: 1px solid #ebebeb;
}
.app_page hr {
  border-color: transparent;
  margin: 12px 0 !important;
}
/*  */
#responseModal .modal-body {
  max-height: 600px;
  overflow: auto;
}
/* custom_table */
.custom_table th{
    padding: 10px 20px;
    border-bottom: 1px solid #eeeeee;
    font-weight: 600;
}
.custom_table th:not(:first-child),.custom_table td:not(:first-child){
    background-color: var(--white);
}
.custom_table td{
    font-size: 12px !important;

}
.custom_table td div{
    margin: 5px 20px 5px 20px;
}

.ribbon {
  line-height: 34px;
  position: relative;
  text-align: center;
  color: #000000;
  background-color: var(--theme-color);
}
.ribbon:before,
.ribbon:after {
  height: 0;
  width: 0;
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0;
}

.ribbon:after,
.ribbon:before {
  border-width: 14px 0 20px 20px;
}
.ribbon:before {
  border-color: var(--theme-color) transparent;
  left: -20px;
}
.ribbon:after {
  border-color: transparent var(--theme-color);
  right: -20px;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-between !IMPORTANT;
  padding: 0px;
  gap: 30px !IMPORTANT;
}

.price_plan_card {
  border-radius: 20px !important;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.1), 12px 12px 30px rgba(0, 0, 0, 0.15);
  width: 23%;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 45px 30px 100px !important;
  background: #fff;
  border-top: 8px solid #FFF !important;
}
.enterprise-plan{
  border-top: 8px solid #FFA500 !important;
  border-radius: 16px !important;
}
.price_plan_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--theme-color);
  border: 2px solid var(--theme-color) !important;
}
.enterprise-plan:hover{
  border-top: 8px solid #FFA500 !important;
}
.price_plan_card .planName {
  font-size: 30px !important;
  font-weight: 600;
  margin-bottom: 10px;
}

.price {
  /* font-size: 28px; */
  font-weight: 700;
  margin-bottom: 5px;
  color: #000;
}

.yearly {
  /* font-size: 14px; */
  color: #0a8754;
  margin-bottom: 20px;
}

.features {
    list-style: none;
    padding: 14px 0px 30px 0px;
    /* height: 300px; */
}

.features li {
  padding: 4px 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

.features li:last-child {
  border-bottom: none;
}
.price-plan-page{
  left: 0px;
  width: 100%;
  max-width: 1800px;
  margin: auto;
}

.price-plan-payment {
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  background: #fff;
  border: 1px solid #f4f4f4;
}
.flex-center{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.payment_billing{
    font-size: 14px;
    text-decoration: underline;
    font-weight: 700;
    display: contents;
}
#card_number,#card-expiry,#cvv{
    border: 1px solid var(--bg-grey) !important;
    font-size: 12px;
    height: 40px;
}
.toggle-btn.active, .btn.toggle-btn.active,
.btn.toggle-btn:first-child:active, :not(.btn-check)+.btn.toggle-btn:active
{
  color: #000000;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.toggle-btn:hover{
  color: #000000;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.btn-outline-primary{
  border-color: var(--theme-color);
  color: #000000;
}
.swal2-title, .swal2-styled{
  font-size: 14px;
}
.swal2-html-container {
    font-size: 12px;
}
.boxes-mw-wrapper .small-box{
  padding: 20px !important;
  border: 1px solid #f1f1f1 !important;
  border-radius: 12px;
}
.add-onPlans {
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  background: #fff;
  border: 1px solid #f4f4f4;
}
.subscription-plans .billing-toggle {
  padding: 28px;
}
.right-icon{
  color: var(--theme-color);
  font-size: 24px !important;
  text-align: center;
  margin-right: 10px;
}
td.right-icon{
  font-size: 30px !important;
}
.feature-comparison-section {
  background-color: var(--bg-grey);
  padding: 30px 0;
}
.most-popular-card {
  border: 2px solid #00ff00 !important;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
  position: relative;
}
.popular-badge {
  position: absolute;
  top: 22px;
  right: 28px;
  background: #000;
  color: #fff;
  font-size: 13px;
  padding: 4px 8px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 10;
}
.feature-comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.feature-comparison-table th,
.feature-comparison-table td {
  padding: 15px;
  /* text-align: center; */
  border: 1px solid #ddd;
  font-weight: 600;
  font-size: 18px;
}
.feature-comparison-table,
.feature-comparison-table th,
.feature-comparison-table td {
  border: none !important;
  border-collapse: collapse;
  box-shadow: none;
}
.feature-comparison-table th {
  background-color: #e9ecef;
  font-weight: 800;
  text-align: center;
}
.feature-comparison-table th:first-child {
  text-align: left;
}
.check {
  color: green;
  font-size: 20px;
}
.cross {
  color: red;
  font-size: 24px !important;
  text-align: center;
}
td.cross{
  font-size:30px !important;
}
.pricing-pagemain{
    left: 0;
    width: unset;;
}
.price-plan-page .customBox{
  padding: 100px 20px;
}
.feature-comparison-section{
  padding: 20px 20px 130px;
  max-width: 1800px;
  margin: auto;
}
.feature-comparison-section .section-title{
  text-align: center;
  font-weight: 800;
  font-size: 40px;
}
.hero-section, .bottom-section {
    background-color: #fff;
    padding: 30px 20px 30px 20px;
    text-align: center;
}
.bottom-section{
  line-height: 3.5;
}
.bottom-section p{
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  margin: 30px 0;
}
.bottom-section span{
  display: block;
  font-weight: 600;
}
#scrollToTopBtn{
  padding: 14px;
  font-size: 18px !important;
  font-weight: 600;
}
button.btn.btn-outline-primary.toggle-btn {
    font-size: 20px !important;
    font-weight: 600;
    padding: 18px;
}
.hero-section-text{
  padding: 20px;
}
.year-info{
  text-align: center;
  padding: 0 0 40px 0;
}
.yearlydiscount{
  font-weight: 800;
    margin: 42px;
}
.hero-heading {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.3;
}
.hero-subheading {
    font-size: 28px;
    font-weight: 600;
    margin: 20px;

}
.hero-trust {
    font-size: 15px;
    font-weight: 600;
}
.hero-star{
  color: var(--theme-color);
  font-size: 22px;
}
.hero-trust a {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: bold;
}
.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
}
.feature-comparison-table tbody tr:nth-child(even) td  {
    background-color: #f5f7fa !important;
}
.feature-comparison-table tbody tr:nth-child(odd) td  {
    background-color: #ffffff !important;
}
.contact-sales{
  border: #fff !important;
  background-color: #000000 !important;
  color: #fff !important;
}
.choose-plan, .contact-sales{
  padding: 14px;
  width: 100%;
  margin: 0;
  align-items: center;
  /* border-radius: 10px; */
  margin-top: auto;
  font-weight: 800;
  font-size: 14px !important;
}
.choose-plan{
  margin-top:auto;
}
.orange_quotareached {
    color: #e0890f;
}
.red_quotareached{
   color: red;
}
.freeteailText{
  font-weight: 600;
}
.addon_plan_card {
  width:auto !important;
}
#addonPlan{
  margin-right: 14px;
  width: 16px;
}
.qbbtn{
    color: #ffffff;
    background-color: #2CA01C;
}
.qbbtn:hover{
    color: #ffffff;
    background-color: #2CA01C;
}
