  /* Microsoft Edge */
hr {
  background-color: #3e3e3e;
  border: 0;
  height: 1px;
  margin: 10px 0;
}
/*** Pricing Tables ***/

.pricing-tables-content {
  margin-top: 25px;
}

.pricing-tables-content.pricing-page {
  margin-top: 0;
}

.pricing-tables-content .header {
  height: 100px;
  line-height: 170px;
  position: relative;
}

.pricing h3 {
  color: #fff;
  text-transform: uppercase;
}

.pricing h3.sell-title {
  margin-top: 50px;
}

.pricing-switcher {
  text-align: center;
}

.pricing-switcher > p {
  display: inline-block;
  position: relative;
  padding: 0;
  padding-right: 4px;
  border-radius: 0;
  background: #111;
  border: 1px solid #333;
}

.pricing-switcher input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.pricing-switcher label {
  position: relative;
  z-index: 1;
  display: inline-block;
  float: left;
  width: 105px;
  height: 39px;
  line-height: 43px;
  cursor: pointer;
  padding-left: 8px;
  font-size: 16px;
  color: #fff;
}

.pricing-switcher label.switch-1.active, .pricing-switcher label.switch-2.active {
  color: #fff;
}

.pricing-switcher .switch {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 40px;
  width: 105px;
  border-radius: 0;
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
}

.pricing-switcher input[type="radio"]:checked + label + .switch,
.pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .switch {
  -webkit-transform: translateX(105px);
  -moz-transform: translateX(105px);
  -ms-transform: translateX(105px);
  -o-transform: translateX(105px);
  transform: translateX(105px);
}

.no-js .pricing-switcher {
  display: none;
}

.pricing-list {
  margin: 32px 0 0;
  list-style-type: none;
}

.pricing-list > li {
  position: relative;
  margin-bottom: 16px;
}

.pricing-wrapper {
  position: relative;
  list-style-type: none;
  padding: 0;
}

.touch .pricing-wrapper {
  -webkit-perspective: 2000px;
  -moz-perspective: 2000px;
  perspective: 2000px;
}

.pricing-wrapper.is-switched .is-visible {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-animation: rotate 0.5s;
  -moz-animation: rotate 0.5s;
  animation: rotate 0.5s;
}

.pricing-wrapper.is-switched .is-hidden {
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-animation: rotate-inverse 0.5s;
  -moz-animation: rotate-inverse 0.5s;
  animation: rotate-inverse 0.5s;
  opacity: 0;
}

.pricing-wrapper.is-switched .is-selected {
  opacity: 1;
}

.pricing-wrapper.is-switched.reverse-animation .is-visible {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-animation: rotate-back 0.5s;
  -moz-animation: rotate-back 0.5s;
  animation: rotate-back 0.5s;
}

.pricing-wrapper.is-switched.reverse-animation .is-hidden {
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-animation: rotate-inverse-back 0.5s;
  -moz-animation: rotate-inverse-back 0.5s;
  animation: rotate-inverse-back 0.5s;
  opacity: 0;
}

.pricing-wrapper.is-switched.reverse-animation .is-selected {
  opacity: 1;
}

.pricing-wrapper > li {
  background-color: #1d1d1d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
}

.pricing-wrapper > li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  pointer-events: none;
  background: -webkit-linear-gradient( right , #FFFFFF, rgba(255, 255, 255, 0));
  background: linear-gradient(to left, #FFFFFF, rgba(255, 255, 255, 0));
}

.pricing-wrapper > li.is-ended::after {
  display: none;
}

.pricing-wrapper .is-visible {
  position: relative;
  z-index: 5;
}

.pricing-wrapper .is-hidden {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.pricing-wrapper .is-selected {
  z-index: 3 !important;
}

.no-js .pricing-wrapper .is-hidden {
  position: relative;
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0);
  margin-top: 16px;
}

.price {
 /* margin-top: 45px;*/
  color: #fff;
}

.pricing-header {
  position: relative;
  z-index: 1;
  height: 80px;
  padding: 16px;
  pointer-events: none;
  background-color: #3aa0d1;
  color: #FFFFFF;
}

.pricing-header h2 {
  margin-bottom: 3px;
  font-weight: 600;
  text-transform: uppercase;
}

.currency, .value {
  font-size: 120px;
  font-weight: 300;
}

.pricing-body {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.is-switched .pricing-body {
  overflow: hidden;
}

.pricing-features {
  width: 600px;
}

.pricing-features:after {
  content: "";
  display: table;
  clear: both;
}

.pricing-features li {
  width: 100px;
  float: left;
  padding: 25px 16px;
  font-size: 56px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pricing-features em {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.pricing-footer {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
}

.pricing-footer::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
}

.pricing-footer a {
  display: block;
  margin: 0 30px;
}

.select {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
}

.pricing-tables-content .header {
  height: 160px;
  line-height: 280px;
}

.pricing-list {
  margin: 48px 0 0;
  padding: 0;
}

.pricing-list:after {
  content: "";
  display: table;
  clear: both;
}

.pricing-list > li {
  float: left;
  padding: 0 15px;
}

.pricing-wrapper > li::before {
  content: '';
  position: absolute;
  z-index: 6;
  left: -1px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
}

.pricing-wrapper > li::after {
  display: none;
}

.pricing-header {
  height: auto;
  padding: 10px;
  pointer-events: auto;
  text-align: center;
  color: #173d50;
  background-color: transparent;
}

.popular .pricing-header {
  color: #e97d68;
  background-color: transparent;
}

.pricing-header h2 {
  font-size: 1rem;
  margin-top: 5px;
  line-height: 1.8rem;
  color: #e7e7e7;
  letter-spacing: 2px;
}

.pricing-header h2 span {
  color: #e7e7e7;
  display: block;
  padding-top: 17px;
  font-weight: 400;
  font-size: 14px;
}

.value {
  font-size: 2rem;
  font-weight: 800;
}

.currency {
  font-size: 4rem;
  font-weight: 600;
}

.pricing-body {
  overflow-x: visible;
}

.pricing-features {
  width: auto;
}

.pricing-features li {
  float: none;
  width: auto;
  padding: 16px;
}

.pricing-features li:nth-of-type(2n+1) {
  background-color: rgba(23, 61, 80, 0.06);
}

.pricing-features em {
  display: inline-block;
  margin-bottom: 0;
}

.pricing-footer {
  position: relative;
  height: auto;
  padding: 0px 30px 16px;
  text-align: center;
}

.pricing-footer::after {
  display: none;
}



.btn-primary {
  border: 0;
  border-radius: 0;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: .1s;
  outline: 0;
  box-shadow: none;
  font-family: 'Open Sans', sans-serif;
}

.btn-primary:hover {
  color: #fff;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  box-shadow: none;
  outline: 0;
}

.form-control {
  box-shadow: none;
  border: 1px solid #333;
  padding: 0px 0px 4px 20px;
  height: 46px;
  color: #fff;
  /*background: #222;*/
  font-size: 14px;
  border-radius: 0;
  outline: 0;
  transition: .1s;
}

.form-control:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #555;
}
