
/* ---------------------------------------------------------------- */
/* 04.Buttons                                            

/* ---------------------------------------------------------------- */
ul, ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.default-button {
  border-radius: 5px;
  display: inline-block;
  background-color: #26C281;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 20px 40px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  color: #fff;
}

.default-button:after {
  display: none;
  content: "";
  position: absolute;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-color: rgba(0, 0, 0, 0.247);
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  top: 50%;
  left: 50%;
  -webkit-animation: ripple 1s;
          animation: ripple 1s;
  opacity: 0;
}

.default-button:focus:not(:active)::after {
  display: block;
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(10);
            transform: scale(10);
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(10);
            transform: scale(10);
  }
}

/* ---------------------------------------------------------------- */
/* 05.Pricing                           
/* ---------------------------------------------------------------- */
.price-toggle-wrap {
  text-align: center;
  display: inline-block;
  margin: 0 auto 60px auto;
  padding: 10px;
  border-radius: 100px;
  -webkit-box-shadow: 0 10px 28px 0 rgba(61, 82, 96, 0.15);
          box-shadow: 0 10px 28px 0 rgba(61, 82, 96, 0.15);
}

.price-toggle-wrap a {
  padding: 16px 40px;
  float: left;
  border-radius: 100px;
  margin-right: 10px;
  background-position: center;
  position: relative;
  overflow: hidden;
  background-color: #e7fbf4;
  color: #26C281;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.price-toggle-wrap a.active {
  background-position: center;
  background: #26C281;
  color: #fff;
}

.pricing-tab-toggle-content {
  display: none;
}

.pricing-tab-toggle-content.active {
  display: block;
}

.price-table {
  border-radius: 50px;
  text-align: center;
  padding: 30px;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  -webkit-box-shadow: 0 10px 20px 0 rgba(61, 82, 96, 0.15);
          box-shadow: 0 10px 20px 0 rgba(61, 82, 96, 0.15);
}

.price-table:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
          box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
}

.price-table .price-icon {
  display: inline-block;
}

.price-table .price-icon i {
  display: inline-block;
  height: 100px;
  width: 100px;
  text-align: center;
  font-size: 40px;
  line-height: 100px;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: #26C281;
  color: #fff;
}

.price-table .price-value {
  margin-top: 20px;
  margin-bottom: 20px;
}

.price-table .price-value span {
  font-size: 1rem;
}

.price-table .price-value b {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: "Poppins-Bold", sans-serif;
  color: #050626;
}

.price-table .price-text {
  margin-bottom: 30px;
}

.price-table .price-text span {
  text-align: center;
  border-radius: 100px;
  display: inline-block;
  padding: 11px 40px;
}

.price-table .price-list li {
  margin-top: 15px;
}

.price-table .price-list li:first-child {
  margin-top: 0;
}

.price-table .price-footer {
  margin-top: 30px;
}

.price-table .price-footer .price-block-btn {
  display: block;
  border-radius: 50px;
  color: #fff;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
  .price-table-resp:nth-child(3) {
    margin-top: 30px;
  }
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Small devices (landscape phones, less than 768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
  .price-table-resp {
    margin-top: 30px;
  }
  .price-table-resp:first-child {
    margin-top: 0;
  }
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
/* Size reduced because it does not fit on this device
 * Extra small devices (Iphone 5, less than 320px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 320px) {
  .price-toggle-wrap a {
    padding: 16px 25px;
  }
}
