.plan {
    border-radius: .6em;
    border: 1px solid #dcdcdc;
    padding: 1.5rem;
    margin-left: 5px;
    margin-right: 5px;
}

.disable {
  opacity: 0.5;
}

.plan-name {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.plan-name.single {
  color:#3498d8;
}
.plan-name.integrator {
  color:#93cc4a;
}
.plan-name.standalone {
  color:#74848f;
}
.isCustom .plan-name {
  margin-bottom: 0
}

.cost > .number {
  font-size: 1.3rem;
}
.cost > .period {
  font-size: 1em;
}

.details {
  display: flex;
  margin: 0 1em 0 1em;
}
.details > div + div {
  margin-left: 3em;
}

/*
.details > div {
  border: 1px solid #000;
}
*/

/* custom styling */
.custom-plan {
  display: none;
}
.isCustom > .custom-plan {
  display: block;
}
.isCustom > div {
  display: none;
}


.title {
  margin-bottom: 0.6em;
}

/* TODO figure this out - this should be a div and then this won't be needed */
.no-margin {
  margin: 0;
}

.plan + .plan {
  margin-top: 1em;
}

/*.plan-inner-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
*/
.isCustom .name {
  display: flex;
  align-items: center;
}

.name >>> legend {
  font-size: 1rem;
  font-weight: bold;
  width: 100%;
  padding-bottom: 1em;
}

.middle {
  flex: 1;
  display: flex;
}

.actions {
  min-width: 10em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1em;
}

/*
.plan-inner-container > * {
  border: 1px solid pink;
}
*/

.light-text {
  color:rgb(153,153,153);
}

.smaller-text {
    font-size: 90%;
}

#currency-toggle .selected {
  font-weight: 600;
}

#currency-toggle {
  padding: 1em 0.5em;
}

#currency-toggle > * {
  cursor:pointer;
  font-size: 1.5em;

}

.plan-column {
    border-radius:10px;
    border:solid 4px #EAEAEA;
    padding:2em 1em;
    margin-top:1em;
    margin-bottom:1em;
    margin-left:5px;
    margin-right:5px;
    cursor:pointer;
}
.plan-column:hover {
    box-shadow:0px 10px 30px 0px #e3e3e3;
    border:solid 4px #ddd;
}
.plan-column.selected {
    box-shadow:0px 10px 30px 0px #e3e3e3;
    border:solid 4px #ddd;
}
.plan-column-middle {
    margin-left:10px;
    margin-right:10px;
}
.plan-description {
    color:#7A7A7A;
    font-size:0.9em;
    border-top:solid 1px #EDEDED;
    padding-top:2em;
    padding-bottom:1em;

}
.plan-benefits {
    padding-top:3em;
    padding-bottom:3em;
}
.plan-benefits ul {
    margin-left: -40px;
}
.plan-benefits ul li {
    list-style:none;
    font-weight:bold;
    font-size:1.2em;
    line-height:2em;
}
.plan-starting-at {
    font-weight:bold;
}
.plan-price {
    font-size:1.5em;
}
.plan-button-text {
    font-size:1.2em;
    margin:0.5em auto;
}
.button-red {
    background-color:#d2527f;
}
#plan-footnote {
    color:#B8B8B8;
    font-size:0.9em;
    font-style:italic;
    margin-top:4em;
    margin-bottom:7em;
}

@media (max-width: 47.999em) {

    .includes {
      margin-top: 1em;
      padding-top: 1em;
      border-top: solid 1px #DCDCDC;
    }

    .additionals {
      margin-top: 1em;
      padding-top: 1em;
      border-top: solid 1px #DCDCDC;
    }

    .pricing-button {
      margin-top: 1em;
      padding-top: 1em;
    }
}


@media (min-width: 48em) {

    .name {
      text-align: left;
      width: 100%;
      /*padding-right: 1em;*/
      border-right: solid 1px #DCDCDC;
    }

    .includes {
      /*min-width: 17rem;*/
      width: 100%;
      padding-left: 1em;
      padding-right: 1em;
      box-sizing: border-box;

    }
    .includes > .container {
      display: flex;
      justify-content: row;
    }
    .includes > .container > div {
      text-align: left;
      font-size: 1rem;
    }
    .includes > .container > div + div {
      padding-left: 1em;
    }
    .includes > .container span {
      display: inline;
    }
    .includes > .container span:first-child {
      font-weight: bold;
    }

    .includes > .container > div {
      /*min-width: 6rem;*/
    }


    .additionals {
      /*min-width: 20em;*/
      /*max-width: 22em;*/
      padding-left: 1em;
      padding-right: 3em;
      border-left: 1px solid #dcdcdc;
      height: 100%;
    }

    .show + .additionals {
      border-color: #DCDCDC;
    }

    .additionals > .container > div {
      text-align: left;
    }
    .additionals > .container > div:not(:last-child) {
      margin-bottom: 0.2em;
    }

    .pricing-button-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }


}

@media (min-width:64em) {
    .plan-description {
        min-height:13em;
    }
}

div.plan .pure-button.pricing-button.button-red2 {
  background-color: #a0a0a0 !important;
}

div.plan:hover .pure-button.pricing-button.button-red2 {
  background-color: #d2527f !important;
}

