.droplrpc-price-comparison {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  font-family: 'Lato', sans-serif;
  position: relative;
  right: 20%;
}

.droplrpc-price-column {
  background-color: white;
  box-shadow: 0 7px 30px rgba(52, 31, 97, 0.1);
  padding: .5rem;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 20%;
  border-radius: 8px;
}

.droplrpc-price-column.droplrpc-settings {
  min-width: 41%;
}

.droplrpc-price-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Lato', sans-serif;
  font-weight: 100;
  height: 7rem;
  justify-content: space-between;
}

.droplrpc-price {
  font-size: 2rem;
  display: flex;
  width: 100%;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #53d5a8 0, #30c592);
}

.droplrpc-cent {
  font-size: 1rem;
  align-self: flex-end;
  margin-bottom: .4rem;
}

.droplrpc-dollar-sign {
  font-size: 1rem;
  margin-top: .25rem;
  margin-right: .1rem;
}

.droplrpc-per-month {
  font-size: .75rem;
  align-self: flex-end;
  margin-bottom: .25rem;
  text-transform: uppercase;
}

.droplrpc-plan-name {
  font-size: .7rem;
  margin-bottom: 0;
  font-weight: bold;
}

.droplrpc-divider {
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, .2);
  margin-bottom: 0rem;
}

.droplrpc-divider-bold {
  height: 4px;
  width: 100%;
  border-radius: 8px;
  background: black;
}

.droplrpc-divider-slant {
  height: 1px;
  width: 40px;
  background: black;
  transform: rotate(110deg);
}

.droplrpc-seats {
  display: flex;
  flex-direction: column;
}

.droplrpc-seats2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.droplrpc-feature {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: .5rem;
  font-size: 1rem;
  height: 1.5rem;
}

.droplrpc-user-count {
  margin-bottom: 0;
}

.droplrpc-feature img {
  height: 1.1em;
  width: 1.1em;
}

.droplrpc-feature.droplrpc-settings img {
  height: 1.1rem;
  width: 1.1rem;
}

.droplrpc-feature.droplrpc-settings {
  margin-top: 0;
  font-size: .8rem;
  justify-content: space-between;
}

.droplrpc-feature.droplrpc-settings.droplrpc-advanced {
  margin-top: .5rem;
}

.droplrpc-os, .droplrpc-checkbox-os {
  display: flex;
}

.droplrpc-checkbox-os {
  flex-direction: column;
  align-items: center;
}

.droplrpc-title {
  text-align: center;
  font-size: .7rem;
  margin-top: 0;
  margin-bottom: .5rem;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: #9DC7FF;
}

.droplrpc-container-row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.droplrpc-slidecontainer {
  width: 100%
}

.droplrpc-container-column {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.droplrpc-feature.droplrpc-inactive {
  color: #999;
  text-decoration-line: line-through;
}

.droplrpc-logo {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.droplrpc-logo img {
  max-height: 2rem;
  width: 100%;
}

.droplrpc-switch {
  margin-top: .5rem;
  position: relative;
  display: inline-block;
  width: 2em;
  height: 1em;
}

.droplrpc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.droplrpc-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.droplrpc-slider:before {
  position: absolute;
  content: "";
  height: 1em;
  width: 1em;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .droplrpc-slider {
  background-color: lightgreen;
}

input:focus + .droplrpc-slider {
  box-shadow: 0 0 1px lightgrey;
}

input:checked + .droplrpc-slider:before {
  -webkit-transform: translateX(1em);
  -ms-transform: translateX(1em);
  transform: translateX(1em);
}

.droplrpc-slider.droplrpc-round {
  border-radius: 35px;
}

.droplrpc-slider.droplrpc-round:before {
  border-radius: 50%;
}

.droplrpc-btn {
  font-size: 1.2rem;
  border-radius: 8px;
  box-shadow:1px 1px 1px 1px grey;
  padding: .5rem;
  text-align: center;
  -webkit-transition: background 600ms ease, color 600ms ease;
  transition: background 600ms ease, color 600ms ease;
  cursor: pointer;
  min-width: 60px;
}

.droplrpc-toggle.droplrpc-toggle-left + label {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.droplrpc-toggle.droplrpc-toggle-right + label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.droplrpc-toggle, .droplrpc-toggle-os {
  display: none;
}

.droplrpc-toggle-advanced {
  visibility: hidden;
}

.droplrpc-toggle:checked + label {
  background: linear-gradient(180deg, #53d5a8 0, #30c592);
  cursor: default;
  color: #fff;
  -webkit-transition: color 200ms;
  transition: color 200ms;
}

.droplrpc-slider-user {
  width: 100%;
  -webkit-appearance: none;
  height: 5px;
  border-radius: 5px;  
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.droplrpc-slider-user::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%; 
  background: #4CAF50;
  cursor: pointer;
}

.droplrpc-slider-user::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}

.droplrpc-demo, .droplrpc-demo-box {
  width: 3.5rem;
  height: 1.5rem;
  border-radius: 1.6rem;
  background: #e8edf5;
  border: 1px solid #DEE3EB;
  text-align: center;
}

.droplrpc-demo-box {
  margin-left: .5rem;
  background: none;
  border-radius: .3rem;
  box-shadow:1px 1px 1px 1px grey inset;  
}

.droplrpc-seats2 img {
  max-width: 1rem;
}

.droplrpc-top {
  transform: translateX(-1rem);
  transition: transform 0.5s;
  z-index: -1;
}

.droplrpc-bottom {
  transform: translateX(-2rem);
  transition: transform 0.5s;
  z-index: -1;
}

.droplrpc-feature .droplrpc-users {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 3rem;
}

#droplrpc-plan-type {
  text-align: center;
  font-size: .8rem;
}

.droplrpc-required-users {
  height: 3.5rem;
  max-height: 100%;
}

.droplrpc-required-os, .droplrpc-required-sc {
  height: 4rem;
  max-height: 100%;
}

.droplrpc-required-advanced {
  height: 3rem;
  max-height: 100%;
  margin-top: 0;
}

.droplrpc-hidden {
  max-height: 0;
  opacity: 0;
  visibility: collapse;
  -webkit-transition:height, 0.5s linear;
  -moz-transition: height, 0.5s linear;
  -ms-transition: height, 0.5s linear;
  -o-transition: height, 0.5s linear;
  transition: opacity 600ms, visibility 600ms, max-height 600ms;
}
.droplrpc-hidden.droplrpc-open {
  max-height: 300px;
  visibility: visible;
  opacity: 1;
  -webkit-transition:height, 0.5s linear;
  -moz-transition: height, 0.5s linear;
  -ms-transition: height, 0.5s linear;
  -o-transition: height, 0.5s linear;
  transition: opacity 600ms, visibility 600ms, max-height 600ms;
}

.droplrpc-drop-down-arrow {
  align-self: center;
  transform: rotate(-180deg);
}
.droplrpc-drop-down-arrow.droplrpc-open {
  transform: rotate(360deg);
}

.droplrpc-info {
  font-size: .6rem;
  text-align: center;
  margin-left: .2rem;
}

.droplrpc-warn {
  background: #ffff00;
}

.droplrpc-error {
  background: #e88161;
}

.droplrpc-annual-only {
  font-size: .6rem;
  margin-bottom: auto;
}

.droplrpc-annual-only-top {
  font-size: .6rem;
}

.droplrpc-disable-price {
  margin-bottom: 0;
  background: lightgrey;
}

.droplrpc-price-warn {
  margin-bottom: 0;
}