html {
  font-size: 16px;
  line-height: 1.4rem;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  background: #ffffff;
  color: #514B64;
}

.heading {
  color: black;
  text-align: center;
  margin-bottom: 3rem;
}
.heading h1 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.table-wrapper-container {
  display: flex;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
}

.table-wrapper {
  display: flex;
  justify-content: center;
}
.table-wrapper > div {
  border: 1px solid #e1e1e1;
  position: relative;
  padding: 20px;
  max-width: 33.3333333333%;
  flex: 0 0 33.33%;
  background-color: #fff;
  border-radius: 20px;
  margin: 10px;
}
.table-wrapper > div.show-option .pkg-options {
  display: block;
}
.table-wrapper .ribbon {
  background: #007bff;
  padding: 10px 40px;
  color: #ffffff;
  font-size: 14px;
  display: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 auto 20px;
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 2px 2px #c7c7c7;
}
.table-wrapper .ribbon.showRibbon {
  display: table;
}
.table-wrapper .pkg-options {
  display: none;
  padding: 30px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background-color: #939292;
}
.table-wrapper.show-option .pkg-options {
  display: block;
}

.pricing-header {
  text-align: center;
  padding: 10px 30px 20px;
}
.pricing-header button {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 9;
  background: transparent;
  border: none;
  cursor: pointer;
  visibility: hidden;
}
.pricing-header h2 {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.pricing-header p {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  position: relative;
  padding: 15px 0 25px;
}
.pricing-header p span.currency-sign {
  font-weight: 300;
}
.pricing-header p span.duration {
  font-weight: 300;
  font-size: 1rem;
  margin-top: 10px;
}
.pricing-header p:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  display: block;
  background: #007bff;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 2px;
}
.pricing-header:hover button {
  visibility: visible;
}

.pricing-features {
  padding: 0;
}
.pricing-features ul {
  margin: 0;
  padding: 0;
}
.pricing-features ul li {
  list-style: none;
  padding: 7px 20px 7px 40px;
  cursor: pointer;
  position: relative;
  font-size: 0.8rem;
}
.pricing-features ul li span {
  display: inline-block;
}
.pricing-features ul li span.editor {
  display: none;
}
.pricing-features ul li i {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  text-align: center;
}
.pricing-features ul li i:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  color: #007bff;
}
.pricing-features ul li.del {
  color: #b9b9b9;
}
.pricing-features ul li.del span {
  text-decoration: line-through;
}
.pricing-features ul li.del i:before {
  content: "\f00d";
  color: inherit;
}
.pkg-options form > div {
  padding: 10px 0;
}
.pkg-options form > div.update-pkg-price {
  display: flex;
  margin-left: -5px;
  margin-right: -5px;
}
.pkg-options form > div.update-pkg-price > div {
  padding: 5px;
}
.pkg-options form > div.update-pkg-price > div:first-child {
  max-width: 70px;
}
.pkg-options form > div label {
  display: block;
  color: #fff;
}
.pkg-options form > div input, .pkg-options form > div select {
  width: 100%;
  height: 40px;
  padding: 5px 15px;
  outline: none;
  border: 1px solid #fdfdfd;
  font-size: 1.3rem;
}
.pkg-options form > div button {
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid #22b78e;
  font-weight: 500;
  cursor: pointer;
  font-size: 18px;
  color: #ffffff;
  background-color: #22b78e;
  box-shadow: 0 5px 5px rgba(75, 75, 75, 0.2);
}

.login-form {
  display: table;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #efefef;
  background-color: #F5F5F5;
}
.login-form label {
  display: block;
  margin-bottom: 10px;
}
.login-form input {
  width: 400px;
  height: 35px;
  padding: 5px 25px;
  border: 1px solid #efefef;
  border-radius: 5px;
  outline: 1px solid #efefef;
}
.login-form button {
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid #22b78e;
  font-weight: 500;
  cursor: pointer;
  font-size: 18px;
  color: #ffffff;
  background-color: #22b78e;
  box-shadow: 0 5px 5px rgba(75, 75, 75, 0.2);
  border-radius: 5px;
}

.danger {
  color: red;
}

/*# sourceMappingURL=style.css.map */
