.banner-cont {
  position: relative;
  background-color: #0c111d !important;
}

.content {
  margin-top: 0;
  /* width: 100% !important; */
  background: #f9fafb;
}

.content {
  margin-top: 120px;
  max-width: 1350px;
  background: #f9fafb;
}

.content-cont {
  margin-top: 120px;
  max-width: 1350px;
  background: #f9fafb;
}

.content .title {
  text-align: center;
}

.box-poa {
  position: absolute !important;
  top: 0;
  left: 0;
}

.text-green {
  color: #2aae99;
}
/* tab nav */
.content .nav {
  justify-content: center;
  margin-top: 30px;
}

.content .nav .nav-item {
  background-color: #f7f8fa;
}

.content .plan .nav-item:first-child,
.content .plan .nav-item:first-child .nav-link {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.content .plan .nav-item:last-child,
.content .plan .nav-item:last-child .nav-link {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.content .nav-item:first-child,
.content .nav-item:first-child .nav-link {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.content .nav-item:last-child,
.content .nav-item:last-child .nav-link {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.content .nav-item .nav-link {
  font-weight: 500;
  color: #4e5969;
  font-size: 18px;
}

.content .nav-item .nav-link.active,
.content .nav-item .nav-link.active .text-green {
  background-color: #2aae99;
  color: #fff;
}

.content .nav-item:not(:last-child) {
  border-right: 2px solid #e5e6eb;
}

.content .tab-content {
  margin-top: 50px;
}

.currency-box {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.currency-box .text {
  text-align: left;
  margin-top: 0;
}

.currency-box .custom-select {
  height: auto;
  font-size: 20px;
  font-weight: 500;
  width: 105px;
  margin-left: 30px;
  background-color: #d1d5db !important;
}

/* price pane */
.price-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  column-gap: 22px;
  flex-wrap: wrap;
  row-gap: 45px;
}

.price-container .price-pane {
  /* width: calc((100% - 22px * 3) / 4); */
  min-width: 275px;
  min-height: 600px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.3);
  position: relative;
  border: 1px solid transparent;
}

.price-container .price-pane:hover:not(.disabled),
.price-container .price-pane:hover:not(.disabled) .reco-box {
  border-color: #2aae99;
}

/* Recommend */
.price-pane.recommend {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.price-pane .reco-box {
  position: absolute;
  top: -35px;
  left: 0;
  background-color: #2aae99;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  height: 35px;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
  line-height: 35px;
  border: 1px solid transparent;
}

/* price box */
.price-pane .price-box {
  color: #3d3d3d;
  text-align: center;
  padding-top: 7px;
  padding-bottom: 17px;
  border-bottom: 1px solid #e5e6eb;
  height: 255px;
  position: relative;
}

.price-box .name {
  font-size: 36px;
  line-height: 49px;
}

.price-box .price {
  font-size: 46px;
  font-weight: 600;
  padding-top: 16px;
  min-height: 110px;
}

.price .period {
  font-size: 15px;
  margin-left: -14px;
  color: #999;
}

.price .discount {
  font-size: 17px;
  color: #dc2019;
}

/* radio */
.radio-box {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  height: 0px !important;
}
/* The container */
.radio-con {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-con input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #fff;
  border: 2px solid #e5e6eb;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-con:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-con input:checked ~ .checkmark {
  background-color: #2aae99;
  border-color: #2aae99;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-con input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-con .checkmark:after {
  top: 2px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
}

.price-box .button {
  width: auto;
  min-width: 220px;
  font-weight: 700;
  line-height: 38px;
  margin-top: 0;
  position: absolute;
  bottom: 17px;
  left: calc((100% - 220px) / 2);
}

.price-pane .features-box {
  color: #666;
  padding-top: 20px;
  text-align: left;
  padding-right: 12px;
}

.features-box i {
  color: #2aae99;
  text-align: center;
  vertical-align: middle;
  margin-right: 3px;
}

.features-box strong {
  font-size: 18px;
  font-weight: 600;
}

.features-box > ul {
  padding-inline-start: 35px;
}

.features-box > ul > li {
  margin-bottom: 15px;
  padding-left: 2px;
}

.features-box > ul > li:last-child {
  padding-top: 15px;
}

.features-box > ul > li::marker {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%232aae99' viewBox='3 -3 16 16'><path d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/></svg>");
}

.features-box .child {
  padding-top: 5px;
  height: 120px;
}

.features-box .child li {
  margin-bottom: 4px;
}

.features-box .text-box {
  font-size: 18px;
  font-weight: bold;
  padding-left: 42px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-right: 20px;
}

#custom .price-pane {
  width: auto;
  height: auto;
}

@media (max-width: 1199.98px) and (min-width: 576px) {
  .price-container {
    column-gap: 18px;
  }

  .price-container .price-pane {
    width: calc((100% - 18px * 3) / 4);
    min-width: 250px;
    font-size: 14px;
  }

  .price-box .name {
    font-size: 30px;
  }

  .price-box .price {
    font-size: 42px;
  }

  .price .discount {
    font-size: 16px;
  }

  .radio-con {
    padding-left: 15px;
    font-size: 14px;
  }

  .checkmark {
    width: 12px;
    height: 12px;
    top: 1px;
  }

  .radio-con .checkmark:after {
    top: 2px;
    left: 2px;
    width: 4px;
    height: 4px;
  }

  .price-box .button {
    width: auto;
    min-width: 180px;
    left: calc((100% - 180px) / 2);
    font-size: 16px;
    line-height: 34px;
  }

  .features-box > ul > li {
    margin-bottom: 7px;
  }

  .features-box strong {
    font-size: 16px;
  }
}

@media (max-width: 1090px) {
  .price-container {
    row-gap: 20px;
  }

  .price-container .price-pane {
    width: calc((100% - 18px * 3) / 3);
  }
}

@media (max-width: 856px) {
  .price-container {
    row-gap: 60px;
  }

  .price-container .price-pane {
    width: calc((100% - 18px * 3) / 2);
  }

  .content .tab-content {
    margin-top: 35px;
  }
}

@media (max-width: 625px) {
  .content .nav-item .nav-link {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .content .nav-item .nav-link {
    font-size: 14px;
  }

  .price-container .price-pane {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .content .nav {
    flex-wrap: nowrap;
    text-align: center;
    align-items: stretch;
  }

  .content .nav .text-green {
    display: block;
  }

  .content .nav-item .nav-link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
    font-size: 12px;
  }
}

/* disabled */
.price-pane.disabled .button {
  background-color: #e5e6eb;
  cursor: not-allowed;
}

.price-pane.disabled .radio-con {
  cursor: not-allowed;
}

.price-pane.disabled .radio-con:hover input ~ .checkmark {
  background-color: transparent;
}

/* next upgrade */
.price-pane.upgrade {
  /* border: 2px solid #2aae99; */
}

/*amy*/
/*Resize*/
.price-box.resize {
  padding: 20px;
  padding-bottom: 0;
}

.resize .button {
  min-width: 250px;
  left: calc((100% - 250px) / 2);
}

.resize .price {
  font-size: 20px;
}

.resize .price .tag {
  font-size: 46px;
}

.plan .nav {
  margin-top: 0;
  margin-bottom: 30px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
}

.plan .nav .nav-item {
  flex-grow: 50;
  background-color: transparent;
}

.plan .nav-item .nav-link {
  display: flex;
  justify-content: center;
  font-size: 22px;
  color: #6b7280;
  font-weight: 600;
  line-height: 1.5;
}

.competitorstalks .pricing-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.competitorstalks .text-desc {
  color: #6b7280;
}

body {
  background: #f9fafb;
}
/* new */
.content .plan .nav-tab {
  display: grid;
  grid-template-columns: 300px 300px;
  padding: 20px !important;
  margin: 0 auto;
  width: 632px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1),
    0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  /* border: 2px solid #d1d5db; */
}

.content .plan .nav-tab .nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 300px !important;
  /* height: 64px; */
  border: 2px solid #d1d5db;
}

.content .plan .nav-tab .nav-item .nav-link {
  width: 100%;
}

.content .plan .nav-tab .nav-item:first-child {
  border-right: 0px;
}

.content-box {
  margin-top: 32px;
  padding: 32px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1),
    0px 1px 2px -1px rgba(0, 0, 0, 0.1);
}

/*.plan .nav-item .nav-link.show
    {
        border-radius: 10px;
    }*/

.popover .popover-body {
  color: red !important;
}

.contact-us {
  margin-top: 32px;
  padding: 32px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 640px 240px;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1),
    0px 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.contact-us .contact-left .title {
  margin-bottom: 8px;
  text-align: left;
}

.contact-us .contact-right .icon {
  margin-right: 8px;
  width: 14px;
  height: 14px;
}

.custom-search-btn {
  text-align: right !important;
}

.custom-search-btn .button img {
  margin-right: 8px;
  width: 14px;
  height: 14px;
}

.custom-search-btn .button .button-right {
  margin-right: 0px;
  margin-left: 8px;
}

@media (max-width: 1199.98px) {
  .contact-us {
    grid-template-columns: 1fr 240px;
    grid-column-gap: 80px;
  }
}

@media (max-width: 767.98px) {
  .contact-us {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }

  .content .plan .nav-tab {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .content .plan .nav-tab .nav-item {
    width: 100% !important;
  }
}
/* @media (max-width: 575.98px) {
  .content .plan .nav-tab {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    width: 100%;
  }
  .content .plan .nav-item:first-child .nav-link {
    border-radius: 10px;
  }
  .content .plan .nav-item:last-child .nav-link {
    border-radius: 10px;
  }
  .content .plan .nav-tab .nav-item {
    border-radius: 10px;
  }
  .content .plan .nav-tab .nav-item:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 2px solid #d1d5db;
    border-bottom: 0 solid #000;
  }
  .content .plan .nav-tab .nav-item:last-child {
    border-boittom-left-radius: 10px;
    border-boittom-right-radius: 10px;
  }
} */
@media (max-width: 375.98px) {
  .contact-us {
    margin-bottom: 32px;
  }

  .content .custom-search .input-col .body-3 {
    text-align: left;
  }

  .plan .nav-item .nav-link {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .custom-search {
    display: flex !important;
    flex-direction: column;
  }
}

@media (max-width: 1270px) {
  .content-box #brand-list {
    overflow-x: scroll !important;
  }

  #brand-list .custom-table {
    min-width: 991px;
  }
}

.pagination {
  flex-wrap: wrap;
}

.content-ad {
  margin-top: 24px;
}

/*.div-alert div.alert
{
    width: 65%;
}
.custom-search .currency-box
{
    margin-top: 20px;
}

    .custom-search .currency-box .custom-select,
    .custom-search .currency-box .form-control
    {
        width: 50%;
    }

.custom-search .form-control
{
    margin-left: 30px;
    font-size: 20px;
}

.brand-list
{
    display: flex;
    justify-content: center;
   
}

    .brand-list .list-row
    {
        width: 60%;*/
/* border-top: 4px solid #2aae99;
        box-shadow: 0 2px 4px 0 rgba(149, 149, 149, 0.5);
        padding: 20px;*/
/*display: grid;
        grid-template-columns: repeat(5, 1fr);
        column-gap: 22px;
        row-gap: 22px;
    }

.custom-checkbox
{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border: 1px solid #e7e7e7;
    border-radius: 0.25rem;
}

    .custom-checkbox.checked
    {
        border-color: #2aae99;
    }

.form-check-input
{
    position: static;
    margin: 0;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    cursor: pointer;
}

    .form-check-input::before
    {
        content: " ";
        display: inline-block;
        text-align: center;
        width: 18px;
        height: 18px;
        line-height: 19px;
        font-weight: bold;
        border-radius: 3px;
        position: absolute;
    }

    .form-check-input:checked::before
    {
        content: '\2713';
        color: #fff;
        background-color: #1b6840;
        border-color: #1b6840;
    }

.form-check-label
{
    margin-left: 1rem;
}

.brand-plan
{
    margin-top: 30px;
    font-size: 18px;
    font-weight: 600;
}*/

/*   select2*/

/*.select2-container
{
    min-width: 600px;
}

@media (max-width: 991.98px)
{
    .select2-container
    {
        min-width: 100%;
    }
}

.select2-results__option
{
    padding-right: 20px;
    vertical-align: middle;
}

    .select2-results__option:before
    {
        content: "";
        display: inline-block;
        position: relative;
        height: 20px;
        width: 20px;
        border: 2px solid rgba(0, 0, 0, 0.2);
        border-radius: 4px;
        background-color: transparent;
        margin-right: 15px;
        margin-left: 10px;
        vertical-align: middle;
    }

    .select2-results__option[aria-selected=true]:before
    {
        font-family: 'fontAwesome';
        content: "\2713";
        color: #fff;
        background-color: #2aae99;
        border: 0;
        display: inline-block;
        padding: 0;
        line-height: 1.2;
        padding-left: 4px;
    }

.select2-container--default .select2-results__option[aria-selected=true]
{
    background-color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected]
{
    background-color: #fff;
    color: #000;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple
{
    border-radius: 4px;
    -webkit-box-shadow: 0px 3px 22px -15px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0px 3px 22px -15px rgba(0, 0, 0, 0.8);
    box-shadow: 0px 3px 22px -15px rgba(0, 0, 0, 0.8);
}

.select2-container--default.select2-container--focus .select2-selection--multiple
{
    border-color: #2aae99;
    border-width: 1px;
}

.select2-container--default .select2-selection--multiple
{
    border: 1px solid #ced4da;
    padding: 5px 10px;
    line-height: 1.6;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 10px;
}

@media (prefers-reduced-motion: reduce)
{
    .select2-container--default .select2-selection--multiple
    {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.select2-container--open .select2-dropdown--below
{
    padding: 10px 0;
    border-radius: 4px;
    border: none;
    -webkit-box-shadow: 0px 3px 22px -15px rgba(0, 0, 0, 0.63);
    -moz-box-shadow: 0px 3px 22px -15px rgba(0, 0, 0, 0.63);
    box-shadow: 0px 3px 22px -15px rgba(0, 0, 0, 0.63);
}

.select2-selection .select2-selection--multiple:after
{
    content: 'hhghgh';
}

.select2-container--default .select2-selection--multiple .select2-selection__choice
{
    display:flex;
    flex-direction:row-reverse;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    font-size: 15px;
    padding: 2px 10px;
    color: gray;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove
{
    margin-left: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear
{
    color: #2aae99;
    margin-right:0px;
    font-size:18px;
}

.select2-dropdown
{
    border: 1px solid #2aae99;
}

.region-box
{
    display: flex;
    justify-content: center;
}
    .region-box .box-item
    {
        display: flex;
        justify-content: center;
        flex-grow: 1;
        padding: 10px 10px;
        margin-left: 5px;
        margin-right: 5px;
        border: 1px solid #e7e7e7;
        border-radius:20px;
    }
.region-box .box-item .icon-remove
{
    display: none;
}*/
.table-cont {
  width: 100%;
}

.prcing-table {
  position: relative;
  z-index: 2;
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(
    178deg,
    #d3e7ff -21.06%,
    rgba(160, 243, 230, 0) 21.7%,
    rgba(160, 243, 230, 0) 59.1%,
    #d3e7ff 104.7%
  );
  /* background: linear-gradient(to bottom, transparent, #d2ebfb); */
}

.prcing-table thead {
  width: 100%;
  position: sticky !important;
  top: 0 !important;
  z-index: 10;
  /* background-color: #fff; */
  background-color: #f9fafb !important;
}

.prcing-table tr {
  display: flex;
  /* display: grid; */
  /* grid-template-columns: 180px 1fr 1fr 1fr 1fr 1fr; */
  /* grid-template-columns: 180px repeat(n, 1fr); */
}

.prcing-table tr th,
.prcing-table tr td {
  flex: 1;
}

.prcing-table tr th:first-child,
.prcing-table tr td:first-child {
  background-color: #f9fafb;
  z-index: 9; /* 确保在其他单元格上方 */
  /* width: 180px; */
}

.prcing-table tr .plan-top {
  /* display: flex; */
  height: 40px;
  line-height: 40px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  color: #fff;
  border-radius: 8px 8px 0px 0px;
  background: #09574b;
  margin-right: 2px !important;
}

.tr-other {
  /* background: linear-gradient(
    178deg,
    var(--color-secondary-baby-blue, #d3e7ff) -21.06%,
    rgba(160, 243, 230, 0) 21.7%,
    rgba(160, 243, 230, 0) 59.1%,
    var(--color-secondary-baby-blue, #d3e7ff) 104.7%
  ); */
  /* background-color: #d3e7ff14; */
  /* background-color: #d3e7ff99; */
}

.prcing-table tr th {
  text-align: center;
  /* min-width: 120px; */
}

.prcing-table tr td {
  text-align: center;
  /* min-width: 120px; */
}

.prcing-table tr th .plan-title {
  margin-bottom: 30px;
  color: #343a40;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px; /* 68.75% */
  letter-spacing: 0px;
}

.prcing-table tr th .plan-price {
  margin-bottom: 18px;
  color: #2aae99;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: "liga" off, "clig" off;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 115%; /* 41.4px */
  height: 50px;
}
.plan-price span {
  margin: 0px;
  color: #2aae99;
  font-size: 20px;
}

.prcing-table tr th .plan-radio {
  margin: 0 auto;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  padding: 8px;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  width: fit-content;
  border-radius: 8px;
  background: #f1f2f9;
}

.prcing-table tr th .plan-radio .form-check {
  padding-left: 0;
}

.prcing-table tr th .plan-radio .form-check {
  display: flex;
  align-items: center;
}

.prcing-table tr th .plan-radio .form-check-input {
  margin-right: 8px;
}

.prcing-table tr th .plan-radio .form-check-label {
  margin-left: 8px;
  color: #111928;
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
}

.prcing-table tr th .plan-radio .form-check-input {
  position: relative;
  margin: 0;
  width: 16px;
  height: 16px;
  /* line-height: 24px; */
  border: 1px solid #d1d5db;
  border-radius: 50%;
  cursor: pointer;
}

.prcing-table tr th .plan-radio .form-check-input::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: 50%;
}

.prcing-table tr th .plan-radio .form-check-input:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  border: 0px solid #d1d5db;
}

.prcing-table tr th .plan-radio .form-check-input:checked {
  border: 4px solid #2aae99;
}

.prcing-table tr th .plan-desc {
  /*  display: flex;*/
  align-items: end;
  justify-content: center;
  margin-bottom: 12px;
  color: #a0a3bd;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  min-height: 42px;
}

.prcing-table tr th .plan-desc span {
  color: #2aae99;
}

.prcing-table tr th .plan-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  margin: 0 auto;
  width: 80%;
  height: 48px;
  color: #2aae99;
  border-radius: 12px;
  border: 1px solid #2aae99;
  background: #fff;
  font-weight: 500;
  cursor: pointer;
}

.prcing-table tr th .plan-btn:hover {
  color: #fff;
  background-color: #2aae99;
}

.prcing-table tr th .plan-btn-standard {
  color: #fff;
  background-color: #2aae99;
}

.prcing-table tr th .plan-btn-standard:hover {
  filter: grayscale(30%);
}

.tr-second {
  position: relative;
  background-color: #f2f9f9;
  z-index: 3;
}

.tr-top {
  background: linear-gradient(to bottom, #e1f6f7, transparent);
}

/* .col-first {
  position: sticky !important;
  top: 0 !important;
  padding-right: 16px;
  background-color: #f9fafb;
  width: 120px !important;
} */

.col-first {
  /* padding-right: 16px !important; */
  padding-right: 16px;
}

.prcing-table tbody tr {
  height: 70px;
  color: #9ca3af;
  /* Noto Sans/Body 2 */
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  letter-spacing: 0px;
}

.prcing-table tbody tr td {
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

.prcing-table tbody tr:first-child td:first-child {
  /* align-items: start;
  justify-content: start; */
}

.prcing-table tbody tr:first-child {
  height: 64px;
  color: #2aae99;
  font-family: "Noto Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 133.333% */
}

.prcing-table tbody tr .plan-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #09574b;
  font-size: 16px;
  font-weight: 500;
  line-height: 115%; /* 18.4px */
}

.prcing-table tbody tr .plan-text .plan-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.prcing-table tbody tr .plan-text .plan-text-box img {
  margin-bottom: 6px;
}

.gap-body {
  height: 56px;
}

.prcing-table tbody tr td {
  text-align: center;
}
.prcing-table thead tr:last-child th:first-child {
  padding-right: 16px;
}
.prcing-table tbody tr td:first-child {
  padding-right: 16px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* width: 130px !important; */
}

.prcing-table tbody tr td {
}

.modal-content-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 400px; */
  height: 200px;
  text-align: center;
}

.question-btn {
  padding: 0;
  height: 26px;
  background-color: transparent;
}

.question-btn img {
  filter: grayscale(100%);
}

.question-btn img:hover {
  filter: grayscale(0%);
}

@media (max-width: 1568.98px) {
  .prcing-table tr th .plan-price {
    font-size: 24px;
  }
}

@media (max-width: 1199.98px) {
  .prcing-table thead tr:last-child th:first-child {
    padding-right: 0px;
  }
  .prcing-table tbody tr td:first-child {
    padding-right: 0px;
  }
  .col-first {
    padding-right: 0px;
  }
  .table-cont {
    overflow-x: scroll;
  }
  .prcing-table tr th:first-child,
  .prcing-table tr td:first-child {
    position: sticky;
    left: 0;
  }
}
@media (max-width: 1165.98px) {
  .brand-card-table {
    overflow-x: scroll;
  }
  .prcing-table tr th:first-child,
  .prcing-table tr td:first-child {
    width: 160px !important;
  }
}

@media (max-width: 760.98px) {
  /* .prcing-table tr {
    display: grid;
    grid-template-columns: 140px 1fr 1fr 1fr 1fr 1fr;
  } */
  .prcing-table tr th:first-child,
  .prcing-table tr td:first-child {
    width: 160px !important;
  }
}

@media (max-width: 375.98px) {
  .content-ad {
    margin-bottom: 60px;
  }

  .prcing-table thead tr th:first-child {
    max-width: 136px !important;
    padding-right: 10px;
  }
  .prcing-table tbody tr td {
    width: 160px !important;
  }
  .prcing-table tbody tr td:first-child {
    max-width: 136px !important;
    padding-right: 10px;
    font-weight: 500;
  }

  .prcing-table tr th .plan-radio {
    display: grid;
  }
}

/* .custom-table thead tr th {
  text-transform: uppercase;
} */

.plan-content .plan-tab {
  padding: 32px 0;
}
.plan-content .plan-tab .tab-desc {
  margin-bottom: 24px;
}
.plan-content .plan-tab .plan-tabcont {
  display: flex;
  padding: 6px;
  margin: auto;
  border-radius: 999px;
  width: fit-content;
  border: 1px solid #cbd5e1;
  gap: 12px;
}
.plan-content .plan-tab .plan-tabcont .item-tabcont {
  display: flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  color: #343a40;
  font-weight: 500;
  cursor: default;
}

.plan-content .plan-tab .plan-tabcont ul li {
  /* background-color: #2aae99; */
  display: flex;
  align-items: center;
}

.plan-content .plan-tab .plan-tabcont .item-tabcont span {
  margin-left: 8px;
  color: #2aae99;
}
.plan-content .plan-tab .plan-tabcont .active {
  height: 100%;
  color: #fff;
  background-color: #2aae99;
}
.plan-content .plan-tab .plan-tabcont .active span {
  color: #fff;
}

.table-no-data {
  /* display: flex; */
  /* flex-direction: column; */
  /* align-items: center; */
  padding: 32px 0 !important;

  /* background-color: #fff; */
}
.table-no-data .no-data-img {
  width: 124px;
  height: 122px;
}
.table-no-data .no-data-desc {
  margin: 32px 0;
}

.custom-table thead {
  background-color: #f9fafb !important;
}

.plan-content .custom-table {
  border: 1px solid #f6f6f6;
}

.plan-content .custom-table th {
  height: 52px;
  color: #6b7280 !important;
  font-family: "Noto Sans";
  font-size: 14px !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 150% !important; /* 18px */
  text-transform: uppercase;
  background-color: #f9fafb !important;
}

#brand-card {
  min-width: 900px;
}

@media (max-width: 991.98px) {
  .brand-shop-card {
    overflow-x: scroll;
  }
}

@media (max-width: 856.98px) {
  .plan-content .plan-tab .plan-tabcont .item-tabcont {
    /* padding: 4.5px 9px !important; */
    /* font-size: 14px !important; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 0;
  }
  .plan-content .plan-tab .plan-tabcont .item-tabcont span {
    /* font-size: 10px !important; */
  }
}

@media (max-width: 575.98px) {
  .plan-content .plan-tab .plan-tabcont {
    width: 100%;
    flex-direction: column;
    border-radius: 36px;
    gap: 12px;
  }
  .plan-content .plan-tab .plan-tabcont .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .plan-content .plan-tab .plan-tabcont .nav li {
    width: 100%;
  }
  .plan-content .plan-tab .plan-tabcont .nav li a {
    width: 100%;
  }
  .plan-content .plan-tab .plan-tabcont .item-tabcont {
    /* padding: 4.5px 12px !important;
    font-size: 14px !important;
  
    align-items: center;
    justify-content: center;
    /* margin-right: 0; */
    /* margin-right: 12px;   */
    /* flex-direction: row; */
  }
  .plan-content .plan-tab .plan-tabcont .item-tabcont span {
    /* font-size: 10px !important; */
  }
}
