/*custom font*/
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v18/mem8YaGs126MiZpBA-UFVZ0e.ttf) format('truetype');
}
/*basic reset*/
* {
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
  background: #000;
  overflow-y: scroll;
}
body {
  font-family: "Open Sans", arial, verdana;
  background-color: transparent;
  color:#fff;
}
/*form styles*/
#msform {
  width: auto;
  margin: 50px auto;
  text-align: center;
  position: relative;
}
#msform fieldset {
  background: transparent;
  border: 0 none;
  padding: 30px;
  box-sizing: border-box;
  width: 70%;
  float: left;
  /* margin: 0 10%; */
  /*stacking fieldsets above each other*/
  position: absolute;
  /* border: 1px solid #fff; */
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}
.down {
  width: 100%;
  position: fixed;
  height: 80px;
  bottom: 0px;
  background-color: white;
  left: 0;
  z-index: 999;
  -webkit-box-shadow: 0px -6px 9px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px -6px 9px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px -6px 9px -5px rgba(0, 0, 0, 0.55);
  padding-top: 10px;
}
/*inputs
#msform input, #msform textarea {
	padding: 15px;
	margin-bottom: 10px;
	width: 100%;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 13px;
}*/
/*buttons*/
#msform .action-button {
  width: 100px;
  background: #9b030e;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 0 0 10px;
  font-family: "Open Sans", arial, verdana;
}
#msform .action-button:hover,
#msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #67d5bf;
}
/*headings*/
.fs-title {
  font-size: 36px;
  text-transform: uppercase;
  color: #63a2cb;
  margin-bottom: 10px;
  font-weight: 600;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
  margin: 0 auto;
}
/*#progressbar li {
  list-style-type: none;
  color: white;
  text-transform: uppercase;
  font-size: 9px;
  width: 10%;
  float: left;
  position: relative;
}*/
#progressbar li {
    list-style-type: none;
    color: black;
    text-transform: uppercase;
    font-size: 12px;
    width: auto;
    float: left;
    position: relative;
	background: #fff;
	border-radius: 20px;
	padding: 0 10px;
	margin-right: 10px;
	line-height: 25px;
	margin-bottom: 2%;
	font-weight: 500;
	letter-spacing: 0.6px;
}
#progressbar li.active {
	background:#fb1d2d;
	color:#fff;
}
.keywords {
  background-color: #2196F3;
  padding: 0 5%;
  width: 109%;
  margin-left: -4.4%;
}
.keywords .rowKey:first-child {
  border: none;
}
/* label color */
.rowKey .input-field label {
  color: white;
}
/* label focus color */
.rowKey .input-field input[type=text]:focus + label {
  color: white;
}
/* label underline focus color */
.rowKey .input-field input[type=text]:focus {
  border-bottom: 1px solid white;
  box-shadow: 0 1px 0 0 white;
}
.rowKey .input-field input[type=number]:focus {
  border-bottom: 1px solid white;
  box-shadow: 0 1px 0 0 white;
}
/* valid color */
.rowKey .input-field input[type=text].valid {
  border-bottom: 1px solid white;
  box-shadow: 0 1px 0 0 white;
}
.rowKey .input-field input[type=number].valid {
  border-bottom: 1px solid white;
  box-shadow: 0 1px 0 0 white;
}
/* invalid color */
.rowKey .input-field input[type=text].invalid {
  border-bottom: 1px solid white;
  box-shadow: 0 1px 0 0 white;
}
/* icon prefix focus color */
.rowKey .input-field .prefix.active {
  color: white;
}
div.keywords > div > div.row > div > label.active {
  color: white;
}
.rowKey {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #E2E2E2;
  color: white;
  padding-top: 10px;
}
#progressbar li:before {
  /* content: counter(step); */
  content: '';
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333;
  background: white;
  border-radius: 9px;
  /* margin: 0 auto 5px auto; */
}
/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 1px;
  background: hsl(0, 0%, 89%);
  position: absolute;
  left: -50%;
  top: 12px;
  z-index: -1;
  /*put it behind the numbers*/
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
  background: #9b030e;
  color: white;
}
.help-block {
  font-size: 0.8em;
  color: #7c7c7c;
  text-align: left;
  margin-bottom: 0.5em;
}
.lead {
  width: 50%;
  margin-top: 10px;
  margin-right: 30px;
  margin-left: 30px;
}
.s4 .promo-example {
  margin-left: 0;
  margin-right: 0;
}
.promo-example {
  margin-left: 2%;
  margin-right: 2%;
  padding-top: 0;
  padding-bottom: 0;
  border-color: #8a222a7d;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
  cursor: pointer;
}
.selected {
  background-color: rgba(3, 169, 244, 0.65);
  color: white;
  transition: 0.1s all;
  box-shadow: 0px 0px 20px 0px #016e9fc4;
}
.hovered {
  border-color: rgba(3, 169, 244, 0.48);
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
}
.listus {
  left: 0 !important;
}
.promo-exemple2 {
  margin-left: 20%;
  margin-right: 20%;
  padding-top: 10%;
  padding-bottom: 10%;
  border-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
  cursor: pointer;
}
.card {
  width: 120%;
  margin-left: -10%;
  padding: 5%;
}
.background-right {
  width: 400px;
  height: 500px;
  padding-top: 0px;
  margin-top: -27px;
  margin-left: 373px;
  background-color: #5E8496;
}
.pay {
  margin-top: 80px;
  float: right;
  margin-right: -18px;
}
.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    height: 0;
  }
  20% {
    height: 510px;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  50% {
    opacity: 1;
    height: 510px;
  }
}
@keyframes zoomIn {
  from {
    border-color: yellow;
    opacity: 0;
    height: 0;
  }
  20% {
    border-color: yellow;
    height: 512px;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  50% {
    opacity: 1;
    border-color: white;
  }
}

.main_pro {
	background: #fff;
	border: 0 none;
	padding: 0px;
	box-sizing: border-box;
	width: 30%;
	float: right;
	position: relative;
	z-index: 9999;
	/* height: 100vh; */
	padding-top: 15px;
	padding-bottom: 0;
}
.main_pro .name_pro {
	color: #000;
	margin: 0;
	font-size: 34px;
	font-weight: 600;
}
.main_pro .pro_price {
	color: #fff;
	margin: 0;
	font-size: 24px;
	font-weight: 500;
	background: #016e9f;
	padding: 8px 0px;
	border-radius: 30px;
}
.main_pro img {
	width: 62%;
	border: 1px solid #fb1d2d;
	margin-bottom: 25px;
	padding: 10px;
	box-shadow: 0px 0px 20px 0px #fb1d2d6b;
}
.main_pro .button {width: auto!important;}

.promo-example p.light {font-size: 16px;line-height: 35px;}
fieldset .promo-example.selected::after {
    height: 23px;
    width: 23px;
    background-image: url(../img/check.png);
    content: '';
    display: block;
    position: absolute;
    top: 16px;
    right: 32px;
    z-index: 2;
	background-size: cover;
}

.listing_lns .promo-example {border:transparent!important;}
.listing_lns .lines ul li {
	padding: 10px 15px;
	border: 1px solid #016e9f;
	text-align: left;
	margin-bottom: 15px;
	border-radius: 50px;
} 
.listing_lns .selected {border-radius: 50px;}
.listing_lns .lines ul li span.amount {float: right;font-size: 18px;font-weight: 600;}
fieldset .listing_lns .promo-example.selected::after {background-image:none;}
.Main_content {border: 1px solid white;display: flow-root;}