/* Compare table */
.popup {
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  left: 0;
  top: -100%;
  z-index: 10000;
  width: 100%;
  height: 100%;
  transition: top ease-out 0.3s;
  overflow: auto;
}

.popup:before {
  backdrop-filter: blur(20px);
  --webkit-backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.3);
  content: '';
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.dark .popup:before {
  backdrop-filter: blur(20px);
}

.popup.show:before {
  display: block;
}

.popup .popup-close {
  cursor: pointer;
  z-index: 1000;
  position: absolute;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}

.popup .popup-close:before,
.popup .popup-close:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--grey-900);
  position: absolute;
  left: 0;
  top: 50%;
}

.dark .popup .popup-close:before,
.dark .popup .popup-close:after {
  background-color: #fff;
}

.popup .popup-close:before {
  transform: translateY(-50%) rotate(-45deg);
}

.popup .popup-close:after {
  transform: translateY(-50%) rotate(45deg);
}

.popup.show {
  top: 0
}

body:has(.popup.show) {
  overflow: hidden;
}

.tags-popup .content .content-wrapper {
  gap: 43px;
}

.tags-popup .tags-list {
  flex-wrap: wrap !important;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.tags-popup > .content {
  max-width: 90vw;
  box-sizing: border-box;
}

.tags-popup .content .content-wrapper {
  overflow-y: auto;
  max-height: 70vh;
  /* Force the column-flex children to take the parent's width so
     inline-flex tags inside know where to line-break. Without this,
     flex-column items grow to their content's intrinsic width and
     tags never wrap. */
  width: 100%;
  min-width: 0;
}

.tags-popup .content .content-wrapper .tags-block {
  min-width: 0;
  max-width: 100%;
}

.plans-page,
.tags-popup,
.checkout-popup,
.email-popup {
  width: 100%;
  padding: 40px;
}

.popup.promo .plans-page {
  display: none!important;
}

.popup.promo .promo-success {
  display: flex!important;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.popup.promo .promo-success p {
  margin-bottom: 30px;
}

.popup.promo .promo-success .button {
  position: static;
  display: flex;
  width: 100%;
  height: 38px;
  transform: none;
  text-align: center;
  justify-content: center;
}

.popup.promo .promo-success .button:before,
.popup.promo .promo-success .button:after {
  display: none;
}

.popup.promo .promo-success .content {
  width: 400px;
}

.popup .price-per-month.old-price {
  position: relative;
  font-weight: normal;
  font-size: 15px;
}

.popup .price-per-month.old-price:before {
  content: '';
  display: block;
  position: absolute;
  left: -2px;
  top: 50%;
  background-color: var(--white);
  transform: translateY(-50%) rotate(23deg);
  width: 110%;
  height: 2px;
}

body:not(.dark) .price-per-month.old-price:before {
  background-color: var(--grey-900);
}

.popup.promo .promo-success .content header {
  position: relative;
  margin-bottom: 50px;
}

.plans-page .promo-wrapper {
  position: relative;
}

.plans-page .promo-wrapper .error-text {
  bottom: -8px;
}

.email-popup>.content {
  width: 100%;
}

.mobile .tags-popup {
  height: 100%;
  padding: 0;
}

.mobile .tags-popup .content {
  width: 100%;
  height: 100%;
  overflow: auto;
}

.mobile .plans-page {
  padding: 0;
  height: 100%;
}

.mobile .plans-page .content{
  height: 100%;
  padding: 16px;
  width: 100%;
}

.mobile .plans-page .plans-variant .content {
  padding: 16px 0;
}

.mobile .plans-page .content-wrapper {
  align-items: center;
  flex-direction: column !important;
  padding: 0;
  width: 100%;
}

.mobile .plans-page .content-pro {
  flex-direction: column!important;
}

.mobile .plans-page .content-pro ul {
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 30px;
}

.mobile .plan-block li {
  width: 80%;
  align-items: flex-start;
  gap: 20px;
}

.mobile .plan-block span {
  text-align: left;
}

.mobile .plans-page .left-side {
  width: 100%;
}

.plans-page>.content,
.promo-success>.content,
.tags-popup>.content,
.checkout-popup>.content {
  background-color: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: rgb(88 102 126 / 8%) 0px 4px 24px, rgb(88 102 126 / 12%) 0px 1px 2px;
  margin: 0 auto;
  position: relative;
  gap: 10px;
  width: 944px;
}

.plans-page.email>.content {
  width: 680px;
}

.subscription-page .plans-page>.content {
  box-shadow: none;
}

.mobile .plans-page>.content {
  overflow-y: auto;
  border-radius: 0;
  padding-bottom: 40px;
}

.plan-title {
  background-color: var(--grey-800);
  color: var(--white);
  border-radius: 4px;
  padding: 16px 0;
  margin-bottom: 24px;
}

.dark .plan-title {
  background-color: var(--grey-800);
}

.pro .plan-title {
  background-color: var(--blue);
}

.dark .pro .plan-title {
  background-color: var(--white);
  color: var(--black);
}

.plan-title h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
}

.pro .plan-title h4 {
  text-transform: uppercase;
}

.plan-title p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.dark .plans-page>.content,
.dark .promo-success>.content,
.dark .tags-popup>.content,
.dark .checkout-popup>.content{
  background-color: var(--dark-grey);
}

.plans-page.on-page,
.plans-page.on-page .content,
.plans-page.on-page .content .content-wrapper {
  padding: 0;
}

.plans-page.on-page .content {
  width: 100%;
}

.plans-page .content-wrapper,
.tags-popup .content-wrapper,
.checkout-popup .content-wrapper{
  align-items: stretch;
  gap: 7px;
}

.plans-variant,
.table-wrapper {
  background-color: #fff;
}

.table-wrapper td {
  border-top: 1px solid #ddd;
}

.table-wrapper tr:odd {
  background-color: #f9f9f9;
}

.dark .table-wrapper tr:nth-child(even) {
  background-color: #3c3c3c;
}

.dark .table-wrapper tr:odd {
  background-color: #2d2b2b;
}

.dark .plans-variant,
.dark .table-wrapper {
  background-color: transparent;
  border-color: transparent;
}

.dark .plans-variant:hover {
  background-color: var(--dark-black);
}

.plans-page .left-side,
.plans-page .right-side {
  position: relative;
  background: var(--white);
  border: 2px solid var(--grey-300);
  border-radius: 8px;
  padding: 12px;
}

.plans-page.on-page .content-pro ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
}

.plans-page.on-page .content-pro ul li {
  width: 45%;
}

.plans-page.on-page .content-pro .btn-subsciption-upgrade-pro-on-page {
  width: 300px;
}

.on-page .content-pro {
  align-items: center;
}

.dark .plans-page .left-side,
.dark .plans-page .right-side {
  background: var(--dark-grey);
  border-color: var(--grey-900);
}

.plans-content,
.table-wrapper {
  height: 100%;
}

.plans-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.plan-block {
  border-radius: 20px;
  text-align: center;
  height: 100%;
}

.plan-block span {
  color: var(--black);
}

.plan-block ul {
  margin: 0;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile .plan-block ul {
  flex-direction: column;
  flex-wrap: wrap;
}

.plan-block li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.plan-block.pro li:first-child {
  font-weight: 400;
}

.plan-block ul .plus-wrapper {
  position: relative;
  width: 100%;
}

.plan-block ul .plus-wrapper .plus-block {
  display: inline-block;
  cursor: default;
  background: none;
  width: 100%;
  height: 10px;
}

.plan-block ul .plus-wrapper .plus-block:before,
.plan-block ul .plus-wrapper .plus-block:after {
  content: '';
  display: block;
  position: absolute;
  background-color: green;
  border-radius: 8px;
  top: -10px;
  left: 30%;
  width: 2.5px;
  height: 25px;
}

.plan-block ul .plus-wrapper .plus-block:before {
  transform: translateX(-50%);
}

.plan-block ul .plus-wrapper .plus-block:after {
  transform: rotate(90deg) translateY(1px);
}

.dark .plan-block ul .plus-wrapper .plus-block:before,
.dark .plan-block ul .plus-wrapper .plus-block:after {
  background-color: #41cc68;
}

.dark .plan-block li span {
  color: #fff;
  text-align: left;
}

.plans-page > .content {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
}


.plans-page .left-side {
  flex: 1 1;
  width: 24%;
  flex-shrink: 0;
}

#popup-content-wrapper {
  padding: 0;
}

.plans-page .right-side {
  width: 75%;
}

.content-pro {
  align-items: stretch;
}

.content-pro ul {
  width: 48%;
  flex-shrink: 0;
}

.plans-wrapper {
  width: 100%;
  gap: 8px;
}

.plans-variants {
  flex-direction: column;
  display: flex;
  gap: 8px;
  height: 100%;
  width: 100%;
}

.plans-variant {
  border: 1px solid var(--grey-400);
  border-radius: 4px;
  padding: 16px 24px;
  width: 100%;
}

.dark .plans-variant {
  background-color: transparent;
  border-color: var(--grey-900);
}

.plans-variant .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #a9aaab;
  margin-bottom: 30px;
}

.plans-variant h4 {
  padding: 0;
  margin-bottom: 8px;
  justify-content: space-between;
}

.plans-variant h4 span:first-child {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: var(--black);
}

.dark .plans-variant h4 span:first-child {
  color: var(--white);
}

.plans-variant h4 span:last-child {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: var(--grey-800);
}

.dark .plans-variant h4 span:last-child {
  color: var(--grey-800);
}

.dark .plans-variant .title h4 span:last-child {
  color: #fff;
}

.plans-variant .title .name {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--black);
}

.save-text {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: var(--grey-800);
}

.plans-variant .title .sale {
  background-color: #fa5934;
  color: #fff;
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: -5px;
}

.plans-variant .title .price {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: -8px;
}

.dark .plans-variant .title .price {
  color: #fff;
}

.plans-variant .content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 1340px) {
  .plans-variant .price-block {
    display: flex;
    flex-direction: column;
  }
}

.plans-variant .price-title {
  font-family: 'Poppins';
  font-style: normal;
  align-items: baseline;
  display: flex;
  flex-direction: row;
  line-height: 32px;
  text-align: center;
  color: var(--black);
  gap: 4px;
}

.plans-variant .price-title :first-child {
  font-weight: 600;
  font-size: 28px;
  color: var(--black);
}

.dark .plans-variant .price-title :first-child {
  color: var(--white);
}

.plans-variant .price-title :last-child {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: var(--grey-800);
}

.dark .price-title,
.dark .price-title span {
  color: var(--white);
}

.dark .price-title span:last-child {
  color: var(--grey-800);
}

.plans-variant .price-save {
  font-size: 15px;
  color: #a5a6a7;
}

.plans-variant .get-price-btn {
  border: none;
  color: #fff;
  background-color: #45c71b;
  font-weight: 600;
  font-size: 20px;
  padding: 10px;
  border-radius: 10px;
}

.plans-variant .get-price-btn:hover {
  background-color: #349b12;
}

.plans-variant .button {
  color: var(--grey-900);
}

.plans-variant:hover {
  background-color: var(--grey-200);
}

.plans-variant:hover .button {
  background-color: var(--blue);
  color: var(--white);
}

.dark .plans-variant:hover .button {
  background-color: var(--white);
  color: var(--black);
}

.plans-title {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
  text-align: left;
  color: var(--black);
  margin-bottom: 23px;
}

.dark .plans-title {
  color: var(--white);
}

.table-wrapper {
  position: relative;
  border: 1px solid #3c3c3c;
  border-radius: 20px;
  padding: 15px 20px;
}

.dark .table-wrapper {
  background-color: #3c3c3c;
}

.plans-page header {
  display: flex;
  justify-content: space-between;
}

.mobile .plans-page header {
  flex-direction: column;
  margin-bottom: 10px;
}

.plans-page header input {
  background: none;
  border: none;
  font-size: 16px;
  height: 30px;
  outline: none;
  flex: 1 1;
}

.plans-page header .button {
  font-size: 12px;
  line-height: 14px;
  padding: 9px 16px !important;
}

.plans-page header .button:hover {
  background-color: var(--blue);
  color: var(--white);
}

.plans-page header .popup-close {
  top: -20px;
  right: -20px;
}

.plans-page .promo-code {
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--grey-300);
  display: flex;
  height: 34px;
  padding: 4px;
  box-sizing: content-box;
  width: 340px;
}

.dark .plans-page .promo-code {
  border: 2px solid var(--grey-900);
}

.mobile .plans-page .promo-code {
  width: 100%;
  box-sizing: border-box;
  height: auto;
}

.mobile .plans-page .plans-title {
  padding-top: 15px;
}

.mobile .plans-page .popup-close {
  top: 24px;
  right: 12px;
  width: 32px;
  height: 32px;
}

.mobile .plans-wallet-content {
  flex-direction: column-reverse!important;
}

.mobile .plans-wallet-content .left-side {
  padding: 8px;
}

.mobile .plans-wallet-content .wallet-code {
  flex-direction: column!important;
}

.mobile .plans-wallet-content .wallet-code .button {
  width: 100%;
  text-align: center;
}

.mobile .plans-wallet-content .buttons-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile .plans-wallet-content .buttons-wrap .button {
  text-align: center;
}

.mobile .qr-code {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.mobile .qr-code > div {
  width: 220px;
}

.plans-page .left-side .plans-table {
  width: 100%;
}

.plans-page .left-side .plans-table th,
.plans-page .left-side .plans-table td {
  padding: 5px 0;
}

.plans-page .left-side .plans-table th {
  font-size: 21px;
}

.plans-page .left-side .plans-table th:first-child {
  font-size: 16px;
}

.plans-page .left-side .plans-table th:last-child {
  padding: 5px 50px;
}

.mobile .plans-page .left-side .plans-table th:last-child {
  padding: 5px 20px;
}

.plans-page .left-side .plans-table th:first-child,
.plans-page .left-side .plans-table td:first-child {
  text-align: left;
}

.dark .plan-block li span {
  color: #fff;
  text-align: left;
}

.plans-page .left-side {
  width: 24%;
  flex-shrink: 0;
}

.mobile .plans-page .right-side {
  width: 100%;
}

.content-pro {
  align-items: stretch;
}

.content-pro ul {
  width: 48%;
  flex-shrink: 0;
}

.plans-wrapper {
  width: 100%;
  gap: 8px;
}

.plans-variants {
  flex-direction: column;
  display: flex;
  gap: 8px;
  height: 100%;
  width: 100%;
}

.plans-variant {
  border: 2px solid var(--grey-400);
  border-radius: 4px;
  padding: 25px 24px;
  width: 100%;
}

.dark .plans-variant {
  background-color: transparent;
  border-color: var(--grey-900);
}

.plans-variant .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #a9aaab;
  margin-bottom: 30px;
}

.plans-variant h4 {
  padding: 0;
  margin-bottom: 8px;
  justify-content: space-between;
}

.plans-variant h4 span:first-child {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: var(--black);
}

.dark .plans-variant h4 span:first-child {
  color: var(--white);
}

.plans-variant h4 span:last-child {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: var(--grey-800);
}

.dark .plans-variant h4 span:last-child {
  color: var(--grey-800);
}

.dark .plans-variant .title h4 span:last-child {
  color: #fff;
}

.plans-variant .title .name {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--black);
}

.save-text {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: var(--grey-800);
}

.plans-variant .title .sale {
  background-color: #fa5934;
  color: #fff;
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: -5px;
}

.plans-variant .title .price {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: -8px;
}

.dark .plans-variant .title .price {
  color: #fff;
}

.plans-variant .content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

@media screen and (max-width: 1340px) {
  .plans-variant .price-block {
    display: flex;
    flex-direction: column;
  }
}

.plans-variant .price-title {
  font-family: 'Poppins';
  font-style: normal;
  align-items: baseline;
  display: flex;
  flex-direction: row;
  line-height: 32px;
  text-align: center;
  color: var(--black);
  gap: 7px;
}

.plans-variant .price-title :first-child {
  font-weight: 600;
  font-size: 28px;
  color: var(--black);
}

.dark .plans-variant .price-title :first-child {
  color: var(--white);
}

.plans-variant .price-title :last-child {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: var(--grey-800);
}

.dark .price-title,
.dark .price-title span {
  color: var(--white);
}

.dark .price-title span:last-child {
  color: var(--grey-800);
}

.plans-variant .price-save {
  font-size: 15px;
  color: #a5a6a7;
}

.plans-variant .get-price-btn {
  border: none;
  color: #fff;
  background-color: #45c71b;
  font-weight: 600;
  font-size: 20px;
  padding: 10px;
  border-radius: 10px;
}

.plans-variant .get-price-btn:hover {
  background-color: #349b12;
}

.plans-variant .button {
  color: var(--grey-900);
}

.plans-variant:hover {
  background-color: var(--grey-200);
}

.plans-variant:hover .button {
  background-color: var(--blue);
  color: var(--white);
}

.dark .plans-variant:hover .button {
  background-color: var(--white);
  color: var(--black);
}

.plans-title {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
  text-align: left;
  color: var(--black);
  margin-bottom: 23px;
}

.dark .plans-title {
  color: var(--white);
}

.table-wrapper {
  position: relative;
  border: 1px solid #3c3c3c;
  border-radius: 20px;
  padding: 15px 20px;
}

.dark .table-wrapper {
  background-color: #3c3c3c;
}

.plans-page header,
.tags-popup header,
.checkout-popup header{
  position: relative;
}

.mobile .plans-page .plans-title {
  padding-top: 15px;
}

.mobile .plans-page .popup-close {
  top: 24px;
  right: 12px;
  width: 32px;
  height: 32px;
}

.mobile .plans-page .popup-close:before,
.mobile .plans-page .popup-close:after {
  left: 7px;
  width: 18px;
}

.mobile .plans-wallet-content {
  flex-direction: column-reverse!important;
}

.mobile .plans-wallet-content .left-side {
  padding: 8px;
}

.mobile .plans-wallet-content .wallet-code {
  flex-direction: column!important;
}

.mobile .plans-wallet-content .wallet-code .button {
  width: 100%;
  text-align: center;
}

.mobile .plans-wallet-content .buttons-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile .plans-wallet-content .buttons-wrap .button {
  text-align: center;
}

.mobile .qr-code {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.mobile .qr-code > div {
  width: 220px;
}

.plans-page.loading .content {
  height: 100%;
  max-height: 944px;
}

.plans-page.loading .content .content-wrapper {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.plans-page .promo-form {
  border: 1px solid #00bc8c;
  border-radius: 12px;
  padding: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.plans-page .promo-input {
  background-color: transparent;
  border: none;
  font-size: 18px;
  font-weight: 600;
  width: 80%;
}

.plans-page .promo-input::placeholder {
  color: #a5a6a7;
}

.plans-page .promo-submit {
  background-color: transparent;
  border: 1px solid #424246;
  border-radius: 12px;
  padding: 5px 10px;
  text-transform: uppercase;
  color: #5e5f62 !important;
  font-size: 17px;
}

.plans-page thead {
  border-bottom: 1px solid #a9aaab;
}

.plans-page thead th:first-child {
  color: #868787;
  font-weight: 300;
  font-size: 20px;
}

.plans-page thead th:nth-child(2) {
  font-weight: 600;
  font-size: 35px;
}

.dark .plans-page thead th:nth-child(2) {
  color: #fff;
}

.plans-page thead th:last-child {
  color: #00bc8c;
  font-weight: 600;
  font-size: 35px;
}

.dark .compare-table {
  border-color: transparent;
}

.compare-table th {
  width: 100px;
}

.compare-table th:first-child {
  width: 700px
}

.compare-table td {
  height: 40px;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
}

.dark .compare-table th,
.dark .compare-table td {
  border-color: transparent;
}

.compare-table th,
.compare-table td {
  padding: 0 20px;
  text-align: center;
}

.compare-table thead th:last-child {
  width: 270px;
}

.compare-table thead th:nth-child(2) {
  width: 300px;
  color: #666;
}

.compare-table tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.compare-table tbody tr:nth-child(even) {
  background-color: #fff;
}

.checkmark {
  display: inline-block;
  max-width: 20px;
  max-height: 20px;
  width: 2vw;
  height: 2vw;
  transform: rotate(45deg) translate(-7px, -14px);
}

.checkmark_stem {
  position: absolute;
  width: 3px;
  height: 19px;
  left: 21px;
  top: 6px;
}

.checkmark_stem,
.checkmark_kick {
  background-color: var(--success);
}

.checkmark_kick {
  position: absolute;
  width: 9px;
  height: 3px;
  left: 13px;
  top: 22px;
}

.minus {
  display: inline-block;
  width: 17px;
  height: 3px;
  background-color: #f97777;
  border-radius: 17px;
}

.compare-table .btn-secondary {
  background-color: #2bb151;
  border-color: #2bb151;
}

.compare-table .btn-secondary:hover,
.compare-table .btn-secondary:active,
.compare-table .btn-secondary:focus {
  background-color: #41cc68 !important;
  border-color: #41cc68 !important;
}

.compare-table .btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(98, 233, 136, 0.5) !important;
}

.compare-table tr:last-child .price {
  display: none;
  font-size: 20px;
  font-weight: 400;
}

.compare-table.basic tr:last-child td:nth-child(2) div,
.compare-table.pro tr:last-child td:nth-child(3) div {
  display: block;
}

.compare-table.basic tr:last-child td:nth-child(2) button,
.compare-table.pro tr:last-child td:nth-child(3) button {
  display: none;
}

.compare-table .content {
  position: relative;
}

.dark .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: #939191 !important;
}

.dark .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  color: #333 !important;
}

.compare-table.basic th:nth-child(2) .content:before,
.compare-table.pro th:nth-child(3) .content:before {
  display: block;
}

.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 10px
}

.theme-btn .icon-block,
.light-btn .dark-icon,
.dark-btn .light-icon {
  display: none
}

.light-btn .light-icon,
.dark-btn .dark-icon {
  display: block
}

.form-control.placeholder {
  color: #9b9b9b;
}

.dataTables_wrapper .dataTables_processing {
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dataTables_wrapper .dataTables_processing .table-loader-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dataTables_wrapper .dataTables_processing .table-loader {
  width: 40px;
  height: 40px;
  border: 4px solid transparent;
  border-color: #2795dd transparent;
  border-radius: 60px;
  position: relative;
  animation: 1s infinite linear rotateRight;
}

.dataTables_wrapper .dataTables_processing .table-loader .table-loader-inside {
  border: 4px solid transparent;
  border-color: transparent gray;
  border-radius: 60%;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: 0.6s infinite linear rotateLeft;
}

.dark .dataTables_wrapper .dataTables_processing .table-loader {
  border-color: #222 transparent;
}

.dark .dataTables_wrapper .dataTables_processing .table-loader .table-loader-inside {
  border-color: transparent #00bc8c;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateRight {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateLeft {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(-0.5turn);
  }

  100% {
    transform: rotate(-1turn);
  }
}
