@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");

*,
*:before,
*:after {
  box-sizing: border-box;
}

:root {
  --c-blue-900: #081030;
  --c-blue-800: #111b40;
  --c-blue-700: #152148;
  --c-blue-500: #1d7bdb;
  --c-blue-300: #293359;
  --c-blue-200: #4e5985;
  --c-blue-100: #dfe8ff;

  --c-green-400: #b24ade;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}
/* End basic CSS override */

.container-fluid.pricingTable {
  margin-top: 5vh; /* This will adjust based on viewport height */
  padding-top: 90px !important;
}

.price-table {
  background-color: var(--c-blue-700);
  border-radius: 16px;
  max-width: 375px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 45px 0 rgba(#000, 0.15);
  position: relative;
  background-image: linear-gradient(
    135deg,
    rgba(#a039e5, 0.15),
    rgba(#1d7bdb, 0.1) 20%,
    var(--c-blue-700) 40%,
    var(--c-blue-700) 100%
  );
  &:after {
    content: "";
    display: block;
    top: -3px;
    left: -3px;
    bottom: -3px;
    right: -3px;
    z-index: -1;
    position: absolute;
    border-radius: 16px;
    background-image: linear-gradient(
      135deg,
      var(--c-green-400),
      var(--c-blue-500) 40%,
      var(--c-blue-300) 60%,
      var(--c-blue-700) 100%
    );
  }

  .price {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 700;
    display: inline-flex;
    align-self: center;
    align-items: center;
    gap: 4px;
    position: relative;
    color: #fff;
    small {
      font-size: 1.25rem;
      font-weight: 400;
      position: absolute;
      left: -1.5ch;
    }
  }

  .title {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    margin-top: 16px;
    color: #fff;
  }

  .description {
    font-size: 0.85rem;
    text-align: center;
    margin-top: 4px;
  }
}

.features {
  margin-top: 32px;
}

.feature {
  position: relative;
  & + & {
    margin-top: 16px;
  }
  summary {
    display: inline-flex;
    align-items: center;
    list-style: none;
    &::-webkit-details-marker {
      display: none;
    }
  }

  &[open] summary:after {
    content: "";
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    z-index: 50;
  }

  &[open] {
    div {
      animation: scale 0.15s ease;
    }
  }

  .checkmark {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--c-green-400);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    svg {
      /* width: 18px   ;
      height: 18px; */
      color: #fff;
    }
  }

  .question-icon {
    display: flex;
    align-items: center;
    margin-left: 6px;
    cursor: pointer;
  }

  .answer {
    padding: 12px;
    background-color: var(--c-blue-800);
    border-radius: 6px;
    position: absolute;
    top: -12px;
    z-index: 100;
    transform: translatey(-100%) translatex(-50%);
    transform-origin: bottom center;
    width: 80%;
    left: 50%;
    border: 1px solid var(--c-blue-300);
    box-shadow: 0 15px 30px 0 rgba(#000, 0.1);
  }
}

@keyframes scale {
  0% {
    transform: translatey(-100%) translatex(-50%) scale(0);
  }
  100% {
    transform: translatey(-100%) translatex(-50%) scale(1);
  }
}

/*Slides*/

@import url("fontawesome-all.min");

p {
  margin: 0 0;
}
a {
  color: #c633f3;
  transition: all 0.3s ease 0s;
  text-decoration: none !important;
  outline: none !important;
}
a:active,
a:hover {
  text-decoration: none;
  outline: 0 none;
  color: #242526;
}
ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
::-moz-selection {
  background: #f36233;
  text-shadow: none;
  color: #ffffff;
}
::selection {
  background: #b24ade;
  text-shadow: none;
  color: #ffffff;
}

.pt-90 {
  padding-top: 90px !important;
}

/* ------------------------------------
02. Global CSS
---------------------------------------*/
.readon {
  position: relative;
  display: inline-block !important;
  background: #b24ade;
  padding: 14px 30px;
  line-height: normal;
  color: #ffffff !important;
  transition: all 0.3s ease 0s;
  border-radius: 30px;
  text-transform: capitalize !important;
  cursor: pointer;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}
.readon:hover,
.readon:focus {
  background: #242526;
}

.inner {
  width: 100%;
  float: left;
  position: relative;
}

.pricingTable .holder {
  background: #fff;
  box-shadow: 1px 20px 12px -15px rgba(0, 0, 0, 0.2);
  padding: 40px 15px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.5s ease;
}

.pricingTable .holder:hover {
  transform: translateY(-5px);
}

.pricingTable .holder .hdng p {
  font-size: 28px;
  font-weight: bold;
  color: #242526;
}

.pricingTable .holder .img img {
  width: 70%;
}

.pricingTable .holder .price p {
  color: #b24ade;
  margin-bottom: 25px;
}

.pricingTable .holder .price p b {
  font-size: 40px;
  font-weight: bold;
}

.pricingTable .holder .price p span {
  font-size: 18px;
}

.pricingTable .holder .info p {
  margin-bottom: 15px;
  color: #242526;
  font-weight: 14px;
}

.pricingTable .holder.active {
  background: #b24ade;
}

.pricingTable .holder.active .hdng p,
.pricingTable .holder.active .price p,
.pricingTable .holder.active .info p {
  color: #fff;
}

.pricingTable .holder.active .readon {
  background: #fff;
  color: #b24ade !important;
}

.pricingTable .holder.active .readon:hover {
  background: #242526;
  color: #fff !important;
}

.pricingTable .tabsBtnHolder ul {
  float: left;
  display: block;
  width: 100%;
  max-width: 326px;
  border-radius: 1.6666666667rem;
  margin: 0px auto;
  margin-bottom: 40px;
  background: #b24ade;
  text-align: center;
  position: relative;
}

.pricingTable .tabsBtnHolder ul li {
  float: left;
  width: calc(100% / 2);
  display: inline-block;
  transition: 0.4s ease;
}

.pricingTable .tabsBtnHolder ul li p {
  color: #fff;
  padding: 10px 15px;
  z-index: 10;
  position: relative;
  cursor: pointer;
}

.pricingTable .tabsBtnHolder ul li p.active {
  color: #b24ade;
}

.pricingTable .tabsBtnHolder ul li.indicator {
  position: absolute;
  top: 50%;
  left: 2px; /*163px*/
  background: #fff;
  height: calc(100% - 4px);
  transform: translateY(-50%);
  border-radius: 1.5333333333rem;
  width: 161px;
  z-index: 9;
}
