@media (max-width: 768px) {
  [data-table-type=Desktop] {
    display: none;
  }
  [data-table-type=Mobile] {
    display: block;
  }
}
@media (min-width: 769px) {
  [data-table-type=Desktop] {
    display: block;
  }
  [data-table-type=Mobile] {
    display: none;
  }
  table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    table-layout: auto;
    border: none;
    position: relative;
  }
  thead { /* for browser compatibility */
    position: sticky;
    top: 78px;
    background: #fafafa;
    z-index: 12;
    width: 100%;
    transition: all 0.2s ease-in-out;
  }
  .tableContainer {
    position: relative;
    max-width: 1420px;
    margin: 0 auto;
    margin: 52px 0px;
  }
  .tableContainer table {
    width: 100%;
    border-collapse: separate;
  }
  .tableContainer.has-sticky-header thead:not(.sticky-header) {
    visibility: hidden;
  }
  .tableContainer button {
    font-family: "Poppins";
  }
}
@media (max-width: 768px) {
  .pricing-element-wrapper .table-container-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    margin-bottom: -20px;
  }
}
.pricing-element-wrapper .tableContainer {
  display: none;
}
.pricing-element-wrapper .tableContainer.show-table {
  display: block;
}

td,
th {
  border: none;
  text-align: center;
  padding: 10px 0px;
  min-width: 150px;
}

td {
  border-left: 1px solid #e9e9e9;
}

.rowHeader {
  text-align: left;
  min-width: 200px;
  position: relative;
  border: none;
  padding: 13px 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 450px;
}

.emptyCell {
  width: 450px;
}

.featureCheck {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.featureCheck.check::before {
  content: "";
  width: 20px;
  height: 21px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="8" viewBox="0 0 10 8" fill="none"><path d="M9.78572 0.571463C9.5 0.285749 9.07143 0.285749 8.78571 0.571463L3.42857 5.92861L1.21429 3.71432C0.928571 3.42861 0.5 3.42861 0.214286 3.71432C-0.0714286 4.00004 -0.0714286 4.42861 0.214286 4.71432L2.92857 7.42861C3.07143 7.57146 3.21429 7.64289 3.42857 7.64289C3.64286 7.64289 3.78571 7.57146 3.92857 7.42861L9.78572 1.57146C10.0714 1.28575 10.0714 0.857178 9.78572 0.571463Z" fill="%2334D399"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
}
.featureCheck.dash::before {
  content: "";
  width: 22px;
  height: 23px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='23' viewBox='0 0 22 23' fill='none'%3E%3Cpath d='M5.84375 11.7441H16.1562' stroke='%23D8D8D8' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.featureCustom {
  display: block;
  text-align: center;
  color: #333;
  font-size: 14px;
  line-height: 1.4;
  padding: 4px 8px;
}

.categoryRow .categoryHeader {
  background: #fbf3ed;
  text-align: left;
  cursor: pointer;
  padding: 5px 20px;
}
.categoryRow.collapsed {
  margin-bottom: 10px;
}

.categoryToggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-size: 20px !important;
  font-style: normal;
  font-weight: 500 !important;
  padding: unset;
  height: 50px;
  position: relative;
}
.categoryToggle::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 13.75C9.84019 13.75 9.68019 13.6889 9.55816 13.5669L3.30816 7.31685C3.06395 7.07263 3.06395 6.67717 3.30816 6.4331C3.55238 6.18904 3.94785 6.18888 4.19191 6.4331L10 12.2412L15.8082 6.4331C16.0524 6.18888 16.4479 6.18888 16.6919 6.4331C16.936 6.67732 16.9361 7.07279 16.6919 7.31685L10.4419 13.5669C10.3199 13.6889 10.1599 13.75 10 13.75Z' fill='%23333333' fill-opacity='0.8'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 50%;
  transition: transform 0.3s ease;
  transform: translateY(-50%) rotate(180deg);
}
.categoryToggle.collapsed::after {
  transform: translateY(-50%) rotate(0deg);
}

.toggleIcon {
  display: none;
}

.tableBodyRow {
  display: table-row;
}
.tableBodyRow.hidden {
  display: none;
}
.tableBodyRow td:last-child {
  border-right: unset;
}
.tableBodyRow:hover {
  background: #f7f7f7;
}

.columnHeaders th:last-child .plan-details {
  border-right: unset;
}

.hr-tooltip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hr-tooltip-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  line-height: 1.5;
  color: #333;
  position: relative;
}
.hr-tooltip-list li:hover .tooltip-item::before, .hr-tooltip-list li:hover .tooltip-item::after {
  visibility: visible;
  opacity: 1;
}
.hr-tooltip-list li .tooltip-item {
  position: absolute;
  bottom: 0;
  right: 0;
}
.hr-tooltip-list li .tooltip-item::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #595959;
  color: white;
  font-size: 14px;
  border-radius: 5px;
  padding: 5px 14px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 21;
  width: -moz-max-content;
  width: max-content;
  max-width: 250px;
  white-space: normal;
  line-height: 1.4;
  text-align: left;
  pointer-events: none;
}
.hr-tooltip-list li .tooltip-item::after {
  content: "";
  position: absolute;
  bottom: 24px;
  right: -5px;
  border: 6px solid transparent;
  border-top-color: #595959;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.hr-tooltip-list li .featureCheck {
  flex-shrink: 0;
  margin-right: 4px;
}

.feature-tooltip {
  display: inline-flex;
  align-items: center;
  margin-left: 5px;
  position: relative;
}
.feature-tooltip::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #595959;
  color: white;
  font-size: 14px;
  border-radius: 5px;
  padding: 5px 14px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1000;
  width: -moz-max-content;
  width: max-content;
  max-width: 250px;
  white-space: normal;
  line-height: 1.4;
  text-align: left;
  pointer-events: none;
}
.feature-tooltip:hover::before, .feature-tooltip:hover::after {
  visibility: visible;
  opacity: 1;
}
.feature-tooltip svg {
  vertical-align: middle;
  width: 15px;
  height: 16px;
}

.tooltip-style-underline .hr-tooltip-list li .feature-tooltip {
  display: none;
}
.tooltip-style-underline .hr-tooltip-list li:has(.tooltip-item) .feature-text {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-decoration-color: #8e8e8e;
  text-underline-offset: 4px;
}
.tooltip-style-underline .hr-tooltip-list li:hover .tooltip-item::before, .tooltip-style-underline .hr-tooltip-list li:hover .tooltip-item::after {
  visibility: visible;
  opacity: 1;
}

.plan-details {
  padding-bottom: 20px;
  border-left: 1px solid #e9e9e9;
}
.plan-details span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  color: #000;
  margin: unset;
  text-transform: uppercase;
}
.plan-details span.fee {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  display: block;
  transition: 0.3s ease;
}
.plan-details h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin: unset;
}
.plan-details .btn {
  margin-top: 15px;
  padding: 5px 51.5px;
}

.pricing-box {
  border-radius: 20px;
  border: 1px solid #ececec;
  background: #fff;
  padding: 16px 40px;
  flex: initial; /* Resets flex behavior */
  align-self: flex-start; /* Prevents equal height */
}
.pricing-box .fee {
  color: #333;
  font-size: 40px;
  font-weight: 600;
}
.pricing-box .fee small {
  color: #999;
  font-size: 12px;
  font-weight: 600;
}
.pricing-box .feature-tooltip::before {
  display: none;
}
.pricing-box .disclaimer {
  font-size: 12px;
  line-height: 14px;
}
.pricing-box a.btn.revert {
  width: 100% !important;
  border-radius: 30px;
}
.pricing-box small {
  color: #999;
  font-size: 10px;
  font-weight: 600;
}

.hr-tooltip-list-wrapper.desktop-style .hr-tooltip-list {
  display: block !important;
}
.hr-tooltip-list-wrapper.desktop-style .hr-list-title {
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.hr-tooltip-list-wrapper.has-mobile-toggle .hr-mobile-toggle {
  display: none;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 0;
  text-decoration: underline;
  position: relative;
}
.hr-tooltip-list-wrapper.has-mobile-toggle .hr-mobile-toggle .toggle-icon {
  display: none;
}
.hr-tooltip-list-wrapper.has-mobile-toggle .hr-mobile-toggle:after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.87204 12.628C3.72411 12.48 3.71067 12.2486 3.83169 12.0854L3.87204 12.0387L8.57722 7.33334L3.87204 2.62795C3.72411 2.48006 3.71067 2.24856 3.83169 2.08545L3.87204 2.03872C4.01997 1.89078 4.25144 1.87734 4.41456 1.99839L4.46129 2.03872L9.46128 7.03872C9.60922 7.18661 9.62267 7.41811 9.50161 7.58122L9.46128 7.62795L4.46129 12.628C4.29858 12.7907 4.03476 12.7907 3.87204 12.628Z' fill='currentColor'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
.hr-tooltip-list-wrapper.has-mobile-toggle .hr-mobile-toggle.active:after {
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .hr-tooltip-list-wrapper.has-mobile-toggle .hr-mobile-toggle {
    display: flex;
  }
  .hr-tooltip-list-wrapper.has-mobile-toggle .hr-tooltip-list {
    display: none;
    margin-top: 15px;
  }
  .hr-tooltip-list-wrapper.has-mobile-toggle .hr-tooltip-list.active {
    display: block;
  }
}

.hide-all-features {
  text-align: center;
}
.hide-all-features span {
  color: #4d4d4d;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 23px;
  border: 1px solid #333;
  padding: 12px;
  transition: 0.3s ease;
}
.hide-all-features span:hover {
  background-color: #f1f1f1;
  transition: 0.3s ease;
  cursor: pointer;
}
.hide-all-features span.bottom {
  display: none;
}
.hide-all-features span small {
  margin-left: 10px;
}
.hide-all-features.reverted {
  margin-top: 40px;
}

.pricing-boxes.same-height .pricing-box {
  align-self: auto !important;
}
.pricing-boxes .pricing-box.advanced .elementor-widget-wrap {
  flex-direction: column;
}
.pricing-boxes .pricing-box.advanced .elementor-widget-wrap .elementor-widget-hr_button {
  margin-top: auto;
}
.pricing-boxes .box-description {
  min-height: 90px;
}

.section-elite a:nth-child(2) {
  text-decoration: underline !important;
}

.section-cta .btn {
  width: 300px !important;
}

@media (max-width: 768px) {
  .pricing-boxes .elementor-container {
    gap: 50px !important;
  }
  .pricing-box {
    padding: 20px 30px;
  }
  .pricing-box:last-child {
    margin-bottom: 0;
  }
  .pricing-box .disclaimer {
    color: #333;
  }
  .pricing-box .hr-label {
    font-size: 16px;
  }
  .pricing-box .fee small {
    font-size: 14px;
  }
  .pricing-box .btn {
    font-size: 18px;
    background-color: var(--e-global-color-primary);
    color: #fff;
    border-color: var(--e-global-color-primary);
  }
  .pricing-box .disclaimer {
    font-size: 16px;
    line-height: 24px;
  }
  .pricing-box.featured {
    margin-top: unset !important;
  }
  .sales-section .pricing-box .btn {
    width: 100% !important;
  }
  .hr-horizontal-listing .hr-horizontal-list-container {
    flex-direction: column;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
  }
  .hr-horizontal-listing .hr-horizontal-list-container .hr-horizontal-list-item:first-child span {
    font-size: 18px;
  }
  .hr-horizontal-listing .hr-horizontal-list-container span {
    font-size: 20px;
  }
  .hr-faq-title {
    font-size: 20px;
    line-height: 28px;
  }
  .hide-all-features {
    display: block;
  }
  .hide-all-features.bottom.active {
    margin-top: -100px;
  }
  .hide-all-features.cloned {
    margin-top: 37px;
  }
  .feature-tooltip {
    position: static;
  }
}
@media (max-width: 768px) {
  html[lang=es-ES] .hr-horizontal-list-container span {
    max-width: 270px;
  }
}

html[lang=fr-FR] .plan-details .btn {
  padding: 10.5px 15px !important;
  font-size: 15px;
}
html[lang=fr-FR] .section-cta .btn {
  width: -moz-max-content !important;
  width: max-content !important;
}

@media screen and (min-width: 1367px) and (max-width: 1536.98px) {
  .includes-section .elementor-container {
    max-width: 1340px !important;
  }
  .hr-horizontal-listing .hr-horizontal-list-item span {
    font-size: 16px !important;
  }
}
@media (max-width: 768px) {
  .pricing-element-wrapper {
    display: flex;
    flex-direction: column;
  }
  .mobile-tables-container {
    position: relative;
    margin: 43px 0px 0px 0px;
    z-index: 1;
  }
  .mobile-category-table {
    border-radius: 8px;
  }
  .mobile-category-table:last-child {
    margin-bottom: 0;
  }
  .mobile-category-table .mobile-category-header {
    background: #fbf3ed;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-category-table .mobile-category-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
  }
  .mobile-category-table .mobile-category-toggle {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
  }
  .mobile-category-table .mobile-category-toggle .toggle-icon {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .mobile-category-table .mobile-category-toggle .toggle-icon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 12px;
    height: 12px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transition: transform 0.3s ease;
    transform-origin: center;
  }
  .mobile-category-table .mobile-category-toggle.collapsed .toggle-icon:before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .mobile-category-table .mobile-category-content {
    display: block;
  }
  .mobile-category-table .mobile-category-content.collapsed {
    display: none;
  }
  .mobile-feature-table {
    border-collapse: collapse;
    width: 100%;
    min-width: 600px;
    table-layout: fixed;
  }
  .mobile-feature-table .mobile-feature-row {
    background-color: #fff !important;
  }
  .mobile-feature-table thead {
    background: #fbf3ed;
  }
  .mobile-feature-table th,
  .mobile-feature-table td {
    padding: 10px;
    font-size: 13px;
    text-align: center;
    border-bottom: 1px solid #e9e9e9;
    border-left: unset !important;
    min-width: 80px;
    width: 120px;
  }
  .mobile-feature-table th .plan-name,
  .mobile-feature-table td .plan-name {
    font-weight: 600;
  }
  .mobile-feature-table th.feature-name-header,
  .mobile-feature-table td.feature-name-header {
    text-align: left;
    min-width: 250px !important;
    width: 250px;
    font-weight: 600;
  }
  .mobile-feature-table th small,
  .mobile-feature-table td small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
  }
  .mobile-feature-table td {
    padding: 10px;
    font-size: 13px;
    text-align: center;
    border-bottom: 1px solid #e9e9e9;
    min-width: 100px;
  }
  .mobile-feature-table td.feature-name {
    text-align: left;
    font-weight: 400;
    position: relative;
  }
  .mobile-feature-table td.feature-name[data-has-tooltip=true] {
    text-decoration: underline;
    text-decoration-style: dashed;
    text-decoration-thickness: 1px;
    text-decoration-color: #8e8e8e;
    text-underline-offset: 4px;
    cursor: help;
  }
  .mobile-feature-table td.feature-name[data-has-tooltip=true]:hover .feature-tooltip::before,
  .mobile-feature-table td.feature-name[data-has-tooltip=true]:hover .feature-tooltip::after {
    visibility: visible;
    opacity: 1;
  }
  .mobile-feature-table td[data-has-tooltip=true]::before {
    content: attr(data-tooltip);
    position: absolute;
    background: #595959;
    color: white;
    font-size: 12px;
    border-radius: 5px;
    padding: 5px 14px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 1000;
    width: -moz-max-content;
    width: max-content;
    max-width: 200px;
    white-space: normal;
    line-height: 1.4;
    text-align: left;
    pointer-events: none;
    left: 0;
    top: 100%;
    margin-top: 10px;
  }
  .mobile-feature-table td[data-has-tooltip=true]::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 0L9.33013 7.5H0.669873L5 0Z' fill='%23595959'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
    left: 10px;
    top: 104%;
    margin-top: 2px;
  }
  .mobile-feature-table td[data-has-tooltip=true]:hover::before, .mobile-feature-table td[data-has-tooltip=true]:hover::after {
    visibility: visible;
    opacity: 1;
  }
  .mobile-feature-table .featureCheck {
    margin: 0 auto;
  }
}/*# sourceMappingURL=pricing.css.map */