
.demo-wrap {
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
  padding-top: 2em;
  width: 100%;
}

.demo-header {
  padding-right: 1em;
  padding-left: 1em;
  text-align: center;
  h1,
  p {
    margin-bottom: 10px;
  color: white;
  }
  p
  {
    margin: 0;
  }
}

@media (min-width: 62em) {
  .demo-wrap {
    padding-top: 0;
    height: 100vh;
  }
}


/* --- Pricing Plans --- */


.pricing-tables {
  display: flex;
  flex-flow: column;
  padding-top: 1em;
}

.pricing-plan {
  background-color: rgba(54, 54, 54, 0.5);
  border: 2px solid #DDD;
  border-bottom: 2px solid #DDD;
  border-radius: 15px;
  display: block;
  padding: 2em 0;
  text-align: center;
  width: 100%;
}

.pricing-plan:first-child, .pricing-plan:last-child {
  background-color:  rgba(54, 54, 54, 0.5);
}

.pricing-plan:first-child {
  border-bottom: 0;
}

.pricing-plan:last-child {
  border-top: 0;
}

.pricing-plan:nth-child(2) {
  border-bottom: 0;
}

.no-flexbox .pricing-plan {
  float: left;
}

.plan-title {
  font-size: 2em;
  letter-spacing: -0.05em;
  margin: 0;
  padding: 0.75em 1em 1.25em;
  text-transform: uppercase;
  color: white;
}

.plan-cost {
  background-color:  rgba(30, 30, 30, 0.6);
  color: #ffffff;
  font-size: 1.25em;
  font-weight: 700;
  padding: 1.25em 1em;
  text-transform: uppercase;
}

.plan-cost span {
  display: none;
}

.plan-price {
  font-size: 3em;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0;
}

.plan-type {
  border: 0.313em solid #909090;
  color: #eeeeee;
  display: inline-block;
  margin: 0.75em 0 0 0.75em;
  padding: 0.3em 0.4em 0.25em;
  width: auto;
}

.plan-features {
  margin: 0 0 20px;
  padding: 2em 1em 1em;
  overflow-y: scroll;
  display: block;
  min-height: 100px;
}

.plan-features li {
  display: none;
  list-style-type: none;
  border-bottom: 1px solid #DDD;
  margin-bottom: 0.5em;
  padding-bottom: 0.75em;
  color: #ffffff;
  display: block;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
 /* &:before {
    content: "✔";
     margin-right: 7px;
     font-size: .8em;
    
   }
  span {
    color: #000000;
  } */
}

.plan-features li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}


.plan-features i {
  font-size: 1.5em;
}

.plan-features i.icon-ok-squared {
  color: #3aa14d;
}

.plan-features i.icon-cancel-circled {
  color: darkRed;
}

/* .btn-plan {
  background-color: #1B8DC8;
  padding: 10px;
  color: rgb(0, 0, 0);
  max-width: 12em;
}

.cta {
  background-color: #6cb507;
  padding: 10px;
} */

.featured-plan {
  background-color:rgba(22, 22, 22, 0.6);
  border-top: 5px solid #FFD200;
  border-right: 0 solid transparent;
  border-bottom: 5px solid #FFD200;
  border-left: 0 solid transparent;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  order: -1;
  position: relative;
  transition: transform 400ms ease;
}

.featured-plan {
  .plan-title {
    color: #FFD200;
  }
}

.featured-ribbon {
  width: 200px;
  background: linear-gradient(to right, #F7971E 0%, #FFD200 51%, #F7971E 100%);
  position: absolute;
  top: 15px;
  left: -60px;
  text-align: center;
  line-height: 35px;
  letter-spacing: 0.01em;
  font-size: 0.65em;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  /* Custom styles */
  /* Different positions */
}

.featured-ribbon.sticky {
  position: fixed;
}

.featured-ribbon.shadow {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.featured-ribbon.top-left {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.featured-ribbon.top-right {
  top: 25px;
  right: -50px;
  left: auto;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.featured-ribbon.bottom-left {
  top: auto;
  bottom: 25px;
  left: -50px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.featured-ribbon.bottom-right {
  top: auto;
  right: -50px;
  bottom: 25px;
  left: auto;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

@media (min-width: 400px) {
  .pricing-plans {    
    padding-right: 2em;
    padding-left: 2em;
    width: 100%;
  }

  .featured-plan {
    transform: scale(1.05);
  }
}

@media (min-width: 33.75em) {
  .pricing-plans .module-title {
    margin-bottom: 1em;
  }

  .pricing-tables {
    flex-flow: row wrap;
  }

  .pricing-plan {
    flex-grow: 1;
    width: 50%;
  }

  .pricing-plan:first-child {
    border-right: 0;
    border-bottom: 0;
  }
  
  .featured-plan {
    margin-top: 0.6em;
    order: 0;
  }

  .pricing-plan:last-child {
    border-top: 2px solid #DDD;
    border-left: 0;
  }
  
  .no-flexbox .pricing-plan {
    width: 48%;
  }

  .plan-title {
    font-size: 1em;
  }
}

@media (min-width: 48em) {
  .no-flexbox .pricing-plan {
    width: 24%;
  }

  .plan-type {
    font-size: 0.7em;
    margin: 0.5em 0 0 1em;
    padding-bottom: 0.2em;
  }

  .featured-ribbon {
    font-size: 0.65em;
  }
}

@media (min-width: 62em) {
  .pricing-tables {
    padding-top: 3em;
  }

  .pricing-plan {
    flex-grow: 1;
    width: 25%;
  }
  
  .featured-plan {
    margin-top: 0;
    order: 0;
  }

  .pricing-plan:first-child, .pricing-plan:nth-child(2n) {
    border-bottom: 2px solid #DDD;
  }

  .pricing-plan .plan-features span {
    display: block !important;
  }

  .plan-cost {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    font-size: 1em;
  }

  .plan-cost span {
    color: #BBB;
    font-size: 1.5em;
    font-weight: 400;
    padding-right: 0.15em;
    padding-left: 0.15em;
  }

  .plan-price {
    font-size: 3em;
  }

  .btn-plan {
    font-size: 0.875em;
  }

  .featured-ribbon {
    font-size: 0.45em;
    left: -68px;
    line-height: 25px;
  }
}

@media (min-width: 75em) {
  .plan-cost {
    font-size: 1em;
  }
}

@media (min-width: 100em) {
  .pricing-tables {
    margin: 0 auto;
    max-width: 75.00em;
  }
}

.silver
{
  color: #b0b0b0;
}

.fa-star
{
  background:  -webkit-linear-gradient(#E0EAFC, #CFDEF3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-crown
{
  background: -webkit-linear-gradient(#c21500, #ffc500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-diamond
{
  background: -webkit-linear-gradient(#FFD200, #F7971E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*
 *  Scrollbar
 */
 .scrollbar
{
	margin-left: 10px;
	float: left;
	height: 230px;
	overflow-y: scroll;
	margin-bottom: 25px;
  margin-top: 10px;
}


#scrollbar::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

#scrollbar::-webkit-scrollbar
{
	width: 7px;
	background-color: #F5F5F5;
}

#scrollbar::-webkit-scrollbar-thumb
{
	background-color: #000000;
	border: 1px solid #555555;
}


/* popup */
/* Fade-in background */
  #imagePopupOverlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  /* Popup box animation (zoom + fade) */
  #popupBox {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.4s ease;
  }

  /* Popup image styling */
  #popupBox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
  }

  /* Close button */
  #closePopup {
    position: absolute;
    top: -10px; 
    right: -10px;
    background: #fff;
    border: none;
    padding: 6px 10px;
    font-size: 16px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999999;
  }

  