[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
  display: none !important;
}
/* fadeIn */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/************************************************
 *
 * Attaching animations to Angular event clases
 * Slide aniamtion for pages
 *
 */
.fade-in.ng-enter,
.fade-in.ng-hide-remove {
  -webkit-animation: fadeIn 0.5s both ease-in;
  animation: fadeIn 0.5s both ease-in;
}
/**
 * Angular JS slider directive
 *
 * (c) Rafal Zajac <rzajac@gmail.com>
 * (c) Valentin Hervieu <valentin@hervi.eu>
 * http://github.com/angular-slider/angularjs-slider
 *
 * Licensed under the MIT license
 */
.rzslider {
  display: inline-block;
  position: relative;
  height: 4px;
  width: 100%;
  margin: 50px 0 15px 0;
  vertical-align: middle;
  user-select: none;
}
.rzslider.with-legend {
  margin-bottom: 60px;
}
.rzslider[disabled] {
  cursor: not-allowed;
}
.rzslider[disabled] .rz-pointer {
  cursor: not-allowed;
  background-color: #d8e0f3;
}
.rzslider[disabled] .rz-draggable {
  cursor: not-allowed;
}
.rzslider[disabled] .rz-selection {
  background: #8b91a2;
}
.rzslider[disabled] .rz-tick {
  cursor: not-allowed;
}
.rzslider[disabled] .rz-tick.rz-selected {
  background: #8b91a2;
}
.rzslider span {
  white-space: nowrap;
  position: absolute;
  display: inline-block;
}
.rzslider .rz-base {
  width: 100%;
  height: 100%;
  padding: 0;
}
.rzslider .rz-bar-wrapper {
  left: 0;
  box-sizing: border-box;
  margin-top: -16px;
  padding-top: 16px;
  width: 100%;
  height: 32px;
  z-index: 1;
  transition: all linear 0.1s;
}
.rzslider .rz-draggable {
  cursor: move;
}
.rzslider .rz-bar {
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1;
  background: #c2c2c2;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.rzslider .rz-selection {
  z-index: 2;
  background: #a5b200;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.rzslider .rz-pointer {
  cursor: pointer;
  width: 32px;
  height: 32px;
  top: -14px;
  background-color: #a5b200;
  z-index: 3;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  transition: all linear 0.1s;
}
.rzslider .rz-pointer:after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  top: 6px;
  left: 6px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: #fff;
}
.rzslider .rz-pointer:hover:after {
  background-color: #ffffff;
}
.rzslider .rz-pointer.rz-active {
  z-index: 4;
}
.rzslider .rz-pointer.rz-active:after {
  background-color: #ffffff;
}
.rzslider .rz-pointer:hover,
.rzslider .rz-pointer:focus,
.rzslider .rz-pointer:active {
  outline: none;
  box-shadow: none;
}
.rzslider .rz-bubble {
  cursor: default;
  bottom: 16px;
  padding: 1px 3px;
  color: #000;
  transition: all linear 0.1s;
}
.rzslider .rz-bubble.rz-limit {
  color: #000;
  transition: none;
}
.rzslider .rz-ticks {
  box-sizing: border-box;
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  top: -6px;
  margin: 0;
  z-index: 1;
  list-style: none;
}
.rzslider .rz-ticks-values-under .rz-tick-value {
  top: auto;
  bottom: -36px;
}
.rzslider .rz-tick {
  text-align: center;
  cursor: pointer;
  width: 16px;
  height: 16px;
  background: #c2c2c2;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 8px;
  transition: background-color linear 0.1s;
}
.rzslider .rz-tick.rz-selected {
  background: #a5b200;
}
.rzslider .rz-tick-value {
  position: absolute;
  top: -34px;
  transform: translate(-50%, 0);
}
.rzslider .rz-tick-legend {
  position: absolute;
  top: 28px;
  transform: translate(-50%, 0);
  white-space: normal;
  font-size: 13px;
  color: #666;
  width: 100px;
}
.rzslider.rz-vertical {
  position: relative;
  width: 4px;
  height: 100%;
  margin: 0 20px;
  padding: 0;
  vertical-align: baseline;
}
.rzslider.rz-vertical .rz-base {
  width: 100%;
  height: 100%;
  padding: 0;
}
.rzslider.rz-vertical .rz-bar-wrapper {
  top: auto;
  left: 0;
  margin: 0 0 0 -16px;
  padding: 0 0 0 16px;
  height: 100%;
  width: 32px;
}
.rzslider.rz-vertical .rz-bar {
  bottom: 0;
  left: auto;
  width: 4px;
  height: 100%;
}
.rzslider.rz-vertical .rz-pointer {
  left: -14px !important;
  top: auto;
  bottom: 0;
}
.rzslider.rz-vertical .rz-bubble {
  left: 16px !important;
  margin-left: 3px;
  bottom: 0;
}
.rzslider.rz-vertical .rz-ticks {
  height: 100%;
  width: 0;
  left: -6px;
  top: 0;
  z-index: 1;
}
.rzslider.rz-vertical .rz-tick {
  vertical-align: middle;
  margin-left: auto;
  margin-top: 8px;
}
.rzslider.rz-vertical .rz-tick-value {
  left: 24px;
  top: auto;
  transform: translate(0, -28%);
}
.rzslider.rz-vertical .rz-tick-legend {
  top: auto;
  right: 28px;
  transform: translate(0, -28%);
  max-width: none;
  white-space: nowrap;
}
.rzslider.rz-vertical .rz-ticks-values-under .rz-tick-value {
  bottom: auto;
  left: auto;
  right: 24px;
}
.slider-block .rzslider {
  width: 90%;
}
[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
  display: none !important;
}
.pricing-frames {
  display: block;
}
.frame {
  border: 1px solid #c2c2c2;
  border-radius: 20px;
  padding: 40px 40px 20px 40px;
  margin-bottom: 40px;
  background-color: #ffffff;
}
.frame.highlighted-OFF {
  padding: 10px 40px 20px;
  border: 5px solid #a5b200;
}
.frame .subtitle {
  font-family: var(--wp--preset--font-family--source-serif-pro) !important;
  line-height: 1.2em;
  margin-top: -1em;
  font-size: 1.2em;
}
.frame .small {
  font-size: 0.8em;
}
.frame sub {
  color: #a5b200;
}
.pricing .sec_number {
  font-size: 50px;
  letter-spacing: -1px;
  color: #859100;
}
.pricing .sec_abbr {
  font-size: 0.8em;
  font-weight: 300;
  display: inline-block;
  line-height: 1em;
  position: absolute;
  padding-left: 4px;
}
.pricing .tax-info {
  text-align: center;
  font-size: 0.8em;
  padding: 0 0 1em 0;
  margin-top: 0;
}
.pricing h2 {
  font-weight: bold;
  line-height: 1em;
  font-size: 1.6em;
  margin-top: 0.5em !important;
}
.pricing .info,
.pricing h3.light {
  font-family: var(--wp--preset--font-family--system-font);
  margin: 0 0 0 -28px;
  font-weight: 200;
  line-height: 1.8em;
}
.pricing h3 {
  position: relative;
  font-size: 22px;
}
.pricing h3 small {
  font-weight: normal;
  font-size: 14px;
  line-height: 1;
}
.pricing h3.info {
  margin-bottom: 0;
}
.pricing h3.info .sec_abbr {
  font-size: 0.6em;
  top: 6px;
  padding-left: 3px;
}
.pricing h4,
.pricing .h4 {
  position: relative;
  font-size: 1em;
}
.pricing h4 small,
.pricing .h4 small {
  font-weight: normal;
  font-size: 11px;
  line-height: 1;
}
.pricing .light {
  font-weight: 200;
}
.pricing-details {
  text-align: center;
}
.pricing-details p {
  line-height: 1em;
}
.pricing-details .plans {
  margin-left: -34px;
  margin-right: -34px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.pricing-details .plans:after,
.pricing-details .plans:before {
  content: " ";
  display: table;
}
.pricing-details .plans:after {
  clear: both;
}
.pricing-details dt {
  font-weight: 400;
}
.pricing-details dd {
  text-align: center;
  margin-bottom: 30px;
}
.pricing-details strong.more {
  font-size: 2em;
  line-height: 1em;
  display: inline-block;
  margin: -10px 0 0 0;
}
.pricing-details h3 {
  position: relative;
  font-size: 22px;
}
.pricing-details h3.info {
  position: relative;
  padding-top: 5px;
  margin-bottom: 5px;
  margin-left: -20px;
}
.pricing-details h4.info {
  position: relative;
  padding-top: 5px;
  margin-bottom: 5px;
  margin-left: -15px;
  margin-top: -15px;
}
.pricing-details h4.info .sec_abbr {
  top: 10px;
  padding-left: 2px;
}
.pricing-power {
  padding: 0 20px;
  margin-top: 20px;
  height: 100px;
}
.pricing-storage {
  padding: 0 20px;
  margin-bottom: 40px;
}
.sec-tag {
  position: absolute;
  font-size: 11px;
  font-weight: 400;
  white-space: nowrap;
  bottom: -4px;
  margin-left: 5px;
}
@media (max-width: 479px) {
  .frame {
    padding: 16px;
    margin-bottom: 24px;
  }
  .frame .subtitle {
    margin-top: 0;
    font-size: 1.05em;
  }
  .pricing h2 {
    font-size: 1.35em;
  }
  .pricing .info,
  .pricing h3.light {
    margin-left: 0;
  }
  .pricing .sec_number {
    font-size: 40px;
  }
  .pricing-details .plans {
    margin-left: -15px;
    margin-right: -15px;
  }
  .pricing-details h3.info {
    margin-left: 0;
  }
  .pricing-power,
  .pricing-storage {
    padding: 0 10px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .frame {
    padding: 20px 24px;
    margin-bottom: 28px;
  }
  .frame .subtitle {
    margin-top: -0.3em;
    font-size: 1.1em;
  }
  .pricing h2 {
    font-size: 1.45em;
  }
  .pricing .sec_number {
    font-size: 44px;
  }
  .pricing .info,
  .pricing h3.light {
    margin-left: -12px;
  }
  .pricing-details .plans {
    margin-left: -24px;
    margin-right: -24px;
  }
  .pricing-details h3.info {
    margin-left: -8px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing-frames {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    margin-bottom: 30px;
  }
  .frame {
    flex: 1;
    max-width: none;
    padding: 20px 22px;
    margin-bottom: 0;
  }
  .pricing .sec_number {
    font-size: 46px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing-frames {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 48px;
    margin-bottom: 36px;
  }
  .frame {
    flex: 1;
    max-width: 420px;
    padding: 20px 30px;
    margin-bottom: 0;
  }
  .pricing .sec_number {
    font-size: 48px;
  }
}
@media (min-width: 1200px) {
  .pricing-frames {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 80px;
    margin-bottom: 40px;
  }
  .frame {
    flex: 1;
    max-width: 410px;
    margin-bottom: 0;
  }
}

.pricing-rate-switch {
  display: inline-flex;
  position: relative;
  align-items: center;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  padding: 3px;
  background: #FAFAFA;
  overflow: hidden;
}
.pricing-rate-switch::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  bottom: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: #a5b200;
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
  z-index: 1;
}
.pricing-rate-switch.is-month::before {
  transform: translateX(0);
}
.pricing-rate-switch.is-year::before {
  transform: translateX(100%);
}
.pricing-rate-switch .rate-option {
  position: relative;
  z-index: 2;
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 6px 30px 6px 20px;
  font-size: 12px;
  cursor: pointer;
  color: #999999;
  transition: color 0.22s ease;
  white-space: nowrap;
}
.pricing-rate-switch .rate-option.active {
  color: white;
  font-weight: 600;
}
@media (max-width: 479px) {
  .pricing-rate-switch .rate-option {
    padding: 6px 18px 6px 14px;
    font-size: 11px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .pricing-rate-switch .rate-option {
    padding: 6px 22px 6px 16px;
    font-size: 11px;
  }
}

.pricing-calculator h2,
.pricing-calculator p {
  text-align: center;
}
.pricing-calculator .pricing-rate-switch {
  display: flex;
  width: fit-content;
  margin: 0 auto 8px;
}
.pricing-calculator .annual-billing-note {
  color: #999999;
  transition: color 0.2s ease, font-weight 0.2s ease;
}
.pricing-calculator .annual-billing-note.active {
  color: #5cb85c;
  font-weight: 600;
}
.pricing-calculator .subtitle strong {
  color: #859100;
}

.pricing-calculator-bulk h2,
.pricing-calculator-bulk p {
  text-align: center;
}
.pricing-calculator-bulk .pricing-rate-switch {
  display: flex;
  width: fit-content;
  margin: 0 auto 8px;
}
.pricing-calculator-bulk .annual-billing-note {
  color: #999999;
  transition: color 0.2s ease, font-weight 0.2s ease;
}
.pricing-calculator-bulk .annual-billing-note.active {
  color: #5cb85c;
  font-weight: 600;
}
.pricing-calculator-bulk .subtitle strong {
  color: #859100;
}
.pricing-details-bulk .pricing-power .rz-bubble {
  bottom: 22px;
}
.pricing-details-bulk .pricing-power .rz-bubble small {
  display: block;
  line-height: 0.8em;
  font-size: 0.6em;
  font-weight: normal;
}
.pricing-details-bulk .pricing-power .rz-bubble.rz-ceil {
  left: 100px;
}
.pricing-notes .power-units-info {
  max-width: 100%;
  font-size: 0.8em;
  margin-top: 0;
  display: inline-block;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 20px;
  list-style: none;
}

.plans-table-wrapper {
  width: min(100%, 1280px);
  margin-inline: auto;
  position: relative;
  display: flex;
  padding-top: 55px;
  font-size: 0.9rem;
}
.plans-table-wrapper .plans-table-rate-switch {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 35;
}
.plans-table-wrapper .plans-table-rate-switch .pricing-rate-switch {
  margin: 0;
}
.plans-table-wrapper .plans-table-rate-switch .annual-billing-note {
  margin: 0;
  color: #999999;
  white-space: nowrap;
  transition: color 0.2s ease, font-weight 0.2s ease;
}
.plans-table-wrapper .plans-table-rate-switch .annual-billing-note.active {
  color: #5cb85c;
  font-weight: 600;
}
.plans-table-wrapper .ok {
  display: inline-block;
  border-radius: 18px;
  line-height: 18px;
  min-width: 18px;
  min-height: 18px;
  font-size: 0.7em;
  color: white;
  border: solid 1px #5cb85c;
  background-color: #5cb85c;
}
.plans-table-wrapper .sec_number {
  font-size: 2.5rem;
}
.plans-table-wrapper h4 .sec_number {
  font-size: 1.6rem;
  margin-top: 1em;
}
.plans-table-wrapper .plans-table-frame {
  overflow-y: hidden;
  overflow-x: scroll;
  padding-bottom: 130px;
  margin-right: -50px;
  margin-bottom: -70px;
}
.plans-table-wrapper .btn {
  cursor: pointer;
  border: 1px solid #a5b200;
  width: 40px;
  height: 400px;
  border-radius: 60px;
  background-color: #FAFAFA;
  margin: 0 5px;
}
.plans-table-wrapper .btn svg path {
  fill: #a5b200;
}
.plans-table-wrapper .btn.btn-small {
  width: 30px;
  height: 30px;
  border-radius: 30px;
}
.plans-table-wrapper .btn.btn-small:hover {
  border-color: #1a4548;
  background: #1a4548;
  color: white;
}
.plans-table-wrapper .btn:hover svg path {
  fill: #1a4548;
}
.plans-table-wrapper .btn.btn-left {
  display: block;
  position: sticky;
  top: 15%;
  z-index: 20;
  margin: 0 0 0 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: solid 1px #E5E2DD;
  background: #E5E2DD;
  border-right: none;
}
.plans-table-wrapper .btn.btn-left:hover {
  border-color: #e6e6e6;
  background: #E5E2DD;
}
.plans-table-wrapper .btn.btn-right {
  display: block;
  position: sticky;
  top: 15%;
  z-index: 20;
  height: 400px;
  margin: 0 20px 0 -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: solid 1px #E5E2DD;
  background: #E5E2DD;
}
.plans-table-wrapper .btn.btn-right:hover {
  background: #e6e6e6;
  border-color: #E5E2DD;
}
.plans-table-wrapper .btn[disabled] {
  background: #E5E2DD;
}
.plans-table-wrapper .btn[disabled]:hover {
  border-color: #E5E2DD;
  background: #E5E2DD;
}
.plans-table-wrapper .btn[disabled] svg path {
  fill: #E5E2DD;
}
.plans-table-wrapper .btn-bar {
  z-index: 30;
  background-color: #E5E2DD;
  padding: 140px 0 59px 0;
}
.plans-table-wrapper .btn-bar.btn-bar-left {
  margin-left: -65px;
}
.plans-table-wrapper .btn-bar.btn-bar-right {
  margin-right: -130px;
}
.plans-table-wrapper .plans-table,
.plans-table-wrapper .pricing-details {
  width: 100%;
  margin: auto;
  padding-right: 50px;
  border-collapse: separate;
  border-spacing: 0;
}
.plans-table-wrapper .plans-table td,
.plans-table-wrapper .pricing-details td,
.plans-table-wrapper .plans-table th,
.plans-table-wrapper .pricing-details th {
  border-bottom: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 5px 8px;
}
.plans-table-wrapper .plans-table td.development,
.plans-table-wrapper .pricing-details td.development,
.plans-table-wrapper .plans-table th.development,
.plans-table-wrapper .pricing-details th.development {
  background-image: url(assets/under-construction-1fb6dcbbbdaf05065e33.png);
  background-repeat: repeat;
}
.plans-table-wrapper .plans-table thead th,
.plans-table-wrapper .pricing-details thead th {
  text-align: center;
  padding: 3px;
  position: sticky;
  top: 0;
  z-index: 5;
  min-width: 175px;
  background: white;
}
.plans-table-wrapper .plans-table thead th:first-child,
.plans-table-wrapper .pricing-details thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 6;
}
.plans-table-wrapper .plans-table td,
.plans-table-wrapper .pricing-details td {
  padding: 4px 5px;
  text-align: center;
}
.plans-table-wrapper .plans-table tbody th,
.plans-table-wrapper .pricing-details tbody th {
  background: white;
}
.plans-table-wrapper .plans-table tbody th:first-child,
.plans-table-wrapper .pricing-details tbody th:first-child {
  text-align: left;
  position: sticky;
  left: 0;
  z-index: 4;
  padding-right: 40px;
  border-left: solid 1px #e6e6e6;
}
.plans-table-wrapper .plans-table tbody th.subhead,
.plans-table-wrapper .pricing-details tbody th.subhead {
  text-align: center;
  position: inherit;
  z-index: 1;
}
.plans-table-wrapper .table-striped > tbody > tr:nth-child(odd) > td,
.plans-table-wrapper .table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #FAFAFA;
}
.plans-table-wrapper .table-striped > tbody > tr:nth-child(even) > td,
.plans-table-wrapper .table-striped > tbody > tr:nth-child(even) > th {
  background-color: white;
}
.plans-table-wrapper .table-hover > tbody > tr:hover > td,
.plans-table-wrapper .table-hover > tbody > tr:hover > th {
  background-color: #eeeeee;
}
@media (max-width: 479px) {
  .plans-table-wrapper {
    margin-right: 0;
    padding-top: 74px;
    font-size: 0.78rem;
  }
  .plans-table-wrapper .plans-table-rate-switch {
    top: 0;
    gap: 6px;
    flex-direction: column;
  }
  .plans-table-wrapper .plans-table-rate-switch .annual-billing-note {
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }
  .plans-table-wrapper .btn-bar {
    display: none;
  }
  .plans-table-wrapper .plans-table-frame {
    margin-right: 0;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
  .plans-table-wrapper .plans-table,
  .plans-table-wrapper .pricing-details {
    padding-right: 0;
  }
  .plans-table-wrapper .sec_number {
    font-size: 2rem;
  }
  .plans-table-wrapper h4 .sec_number {
    font-size: 1.3rem;
    margin-top: 0.8em;
  }
  .plans-table-wrapper .plans-table {
    font-size: 12px;
  }
  .plans-table-wrapper .plans-table thead th,
  .plans-table-wrapper .plans-table tbody th {
    min-width: 150px;
    font-size: 11px;
  }
  .plans-table-wrapper .plans-table tbody th:first-child {
    padding-right: 20px;
  }
  .plans-table-wrapper .plans-table h3.info .sec_abbr,
  .plans-table-wrapper .plans-table h4.info .sec_abbr {
    top: 4px;
    font-size: 11px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .plans-table-wrapper {
    margin-right: 0;
    padding-top: 62px;
    font-size: 0.84rem;
  }
  .plans-table-wrapper .plans-table-rate-switch {
    top: 0;
    gap: 8px;
    flex-wrap: wrap;
  }
  .plans-table-wrapper .plans-table-rate-switch .annual-billing-note {
    font-size: 12px;
    text-align: center;
    white-space: normal;
  }
  .plans-table-wrapper .btn-bar {
    display: none;
  }
  .plans-table-wrapper .plans-table-frame {
    margin-right: 0;
    margin-bottom: 0;
    padding-bottom: 28px;
  }
  .plans-table-wrapper .plans-table,
  .plans-table-wrapper .pricing-details {
    padding-right: 0;
  }
  .plans-table-wrapper .sec_number {
    font-size: 2.2rem;
  }
  .plans-table-wrapper h4 .sec_number {
    font-size: 1.45rem;
    margin-top: 0.9em;
  }
  .plans-table-wrapper .plans-table {
    font-size: 13px;
  }
  .plans-table-wrapper .plans-table thead th,
  .plans-table-wrapper .plans-table tbody th {
    min-width: 165px;
    font-size: 12px;
  }
  .plans-table-wrapper .plans-table tbody th:first-child {
    padding-right: 28px;
  }
  .plans-table-wrapper .plans-table h3.info .sec_abbr {
    top: 5px;
    font-size: 12px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .plans-table-wrapper {
    margin-right: 8px;
    padding-top: 56px;
    font-size: 0.86rem;
  }
  .plans-table-wrapper .plans-table-rate-switch {
    gap: 8px;
  }
  .plans-table-wrapper .plans-table-rate-switch .annual-billing-note {
    font-size: 12px;
  }
  .plans-table-wrapper .btn {
    width: 32px;
    height: 340px;
  }
  .plans-table-wrapper .btn.btn-left {
    top: 18%;
    margin-left: 10px;
  }
  .plans-table-wrapper .btn.btn-right {
    top: 18%;
    height: 340px;
    margin: 0 10px 0 -1px;
  }
  .plans-table-wrapper .btn-bar {
    padding: 132px 0 54px 0;
  }
  .plans-table-wrapper .btn-bar.btn-bar-left {
    margin-left: -36px;
  }
  .plans-table-wrapper .btn-bar.btn-bar-right {
    margin-right: -58px;
  }
  .plans-table-wrapper .plans-table-frame {
    margin-right: -20px;
    margin-bottom: -56px;
    padding-bottom: 112px;
  }
  .plans-table-wrapper .plans-table,
  .plans-table-wrapper .pricing-details {
    padding-right: 20px;
  }
  .plans-table-wrapper .sec_number {
    font-size: 2.2rem;
  }
  .plans-table-wrapper h4 .sec_number {
    font-size: 1.45rem;
    margin-top: 0.9em;
  }
  .plans-table-wrapper .plans-table {
    font-size: 13px;
  }
  .plans-table-wrapper .plans-table thead th,
  .plans-table-wrapper .plans-table tbody th {
    min-width: 165px;
    font-size: 12px;
  }
  .plans-table-wrapper .plans-table h3.info .sec_abbr,
  .plans-table-wrapper .plans-table h4.info .sec_abbr {
    font-size: 12px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .plans-table-wrapper {
    margin-right: 20px;
    padding-top: 55px;
    font-size: 0.88rem;
  }
  .plans-table-wrapper .plans-table-rate-switch {
    gap: 10px;
  }
  .plans-table-wrapper .plans-table-rate-switch .annual-billing-note {
    font-size: 12px;
  }
  .plans-table-wrapper .btn {
    width: 36px;
    height: 380px;
  }
  .plans-table-wrapper .btn.btn-left {
    margin-left: 14px;
  }
  .plans-table-wrapper .btn.btn-right {
    height: 380px;
    margin: 0 14px 0 -1px;
  }
  .plans-table-wrapper .btn-bar {
    padding: 136px 0 56px 0;
  }
  .plans-table-wrapper .btn-bar.btn-bar-left {
    margin-left: -50px;
  }
  .plans-table-wrapper .btn-bar.btn-bar-right {
    margin-right: -90px;
  }
  .plans-table-wrapper .plans-table-frame {
    margin-right: -36px;
    margin-bottom: -62px;
    padding-bottom: 120px;
  }
  .plans-table-wrapper .plans-table,
  .plans-table-wrapper .pricing-details {
    padding-right: 36px;
  }
  .plans-table-wrapper .sec_number {
    font-size: 2.35rem;
  }
  .plans-table-wrapper h4 .sec_number {
    font-size: 1.55rem;
  }
  .plans-table-wrapper .plans-table thead th,
  .plans-table-wrapper .plans-table tbody th {
    min-width: 170px;
  }
}
@media (min-width: 1200px) {
  .plans-table-wrapper {
    margin-right: 30px;
    padding-top: 55px;
    font-size: 0.9rem;
  }
  .plans-table-wrapper .plans-table-rate-switch {
    gap: 10px;
    left: 200px;
  }
  .plans-table-wrapper .plans-table-rate-switch .annual-billing-note {
    white-space: nowrap;
  }
  .plans-table-wrapper .btn {
    width: 40px;
    height: 400px;
  }
  .plans-table-wrapper .btn.btn-left {
    margin-left: 20px;
  }
  .plans-table-wrapper .btn.btn-right {
    height: 400px;
    margin: 0 20px 0 -1px;
  }
  .plans-table-wrapper .btn-bar {
    padding: 140px 0 59px 0;
  }
  .plans-table-wrapper .btn-bar.btn-bar-left {
    margin-left: -65px;
  }
  .plans-table-wrapper .btn-bar.btn-bar-right {
    margin-right: -130px;
  }
  .plans-table-wrapper .plans-table-frame {
    margin-right: -50px;
    margin-bottom: -70px;
    padding-bottom: 130px;
  }
  .plans-table-wrapper .plans-table,
  .plans-table-wrapper .pricing-details {
    padding-right: 50px;
  }
  .plans-table-wrapper .sec_number {
    font-size: 2.5rem;
  }
  .plans-table-wrapper h4 .sec_number {
    font-size: 1.6rem;
    margin-top: 1em;
  }
}

.tooltiper {
  position: absolute;
  display: inline-block;
  right: 13px;
  bottom: 5px;
  cursor: pointer;
}
.tooltiper:hover .info-text,
.tooltiper:focus .info-text {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.tooltiper .more-info {
  padding: 0;
  font-size: 13px;
  font-weight: normal;
  border-radius: 17px;
  line-height: 22px;
  min-width: 22px;
  min-height: 22px;
  display: inline-block;
  text-align: center;
  border: solid 1px #a5b200;
  background-color: white;
  color: #000;
}
.tooltiper .info-text {
  box-sizing: border-box;
  position: absolute;
  top: -7px;
  left: 42px;
  display: block;
  background: white;
  width: 300px;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 24px;
  cursor: text;
  border: 1px solid #a5b200;
  border-radius: 10px;
  padding: 16px;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: all 0.5s ease-out;
}
.tooltiper .info-text:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 14px;
  bottom: -14px;
  left: 0;
}
.tooltiper .info-text:after {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(45deg) skew(-17deg, -17deg);
  -moz-transform: rotate(45deg) skew(-17deg, -17deg);
  -ms-transform: rotate(45deg) skew(-17deg, -17deg);
  -o-transform: rotate(45deg) skew(-17deg, -17deg);
  transform: rotate(45deg) skew(-17deg, -17deg);
  top: 15px;
  left: 0;
  margin-left: -9px;
  border-left: solid 1px #a5b200;
  border-bottom: solid 1px #a5b200;
  background: #ffffff;
}
@media (max-width: 767px) {
  .tooltiper .info-text {
    width: 163px;
    line-height: 18px;
    font-size: 13px !important;
    padding: 12px;
  }
}

