body{
  font-family: Assistant, sans-serif;
}

#d_bannertop{
  border-bottom: 2px solid #FD5F00;
  margin-bottom: 10px;
}
#i_banner{
  width: 250px;
}
.validateError{
  font-weight: bold;
  color: red;
}

.d_block{
  margin-bottom: 50px;
  background: #FCFCFC;
}
#banner_side{
  position: fixed;
  width: 20%;
  max-width: 300px;
  height: 100%;
  background:linear-gradient(to top,white,darkgreen);
  top: 0;
  left: 0;
}
#d_register{
  position: absolute;
  margin-left: 20%;
}
#d_plan{
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, 250px);
  grid-gap: 10px;
  margin-bottom: 30px;
  width: 800px;
}
#d_plan img{
  width: 200px;
  opacity: 0.2;
}
#d_plan label{
  border: 1px solid #cccccc;
  text-align: center;
  padding: 10px;
  border-radius: 15%;
  background: #F5F5F5F;
  color: lightgrey;
}
#d_plan label:hover{
  cursor: pointer;
}
#d_plan .active{
  background:black;
  color: white;
  font-weight: bold;
  border: 2px solid black;
}
#d_plan .active img{
  opacity: 1;
}
#d_plan input[type=radio]{
  display: none;
}

#d_main_user{
  max-width: 800px;
}
#inp_usr_unse{
  margin-bottom: 20px;
}
#d_main_nextpayment{
  max-width: 800px;
}
.d_main_title{
  font-size: 40px;
  font-weight: bold;
}
.d_main_subtitle{
  font-size: 20px;
  font-style: italic;
}
.d_fancy{
  display: grid;
}

#d_agree{
  margin-top: 10px;
  margin-bottom: 10px;
}

#d_fancy_nextpayment_l1{
  display: grid;
  grid-template-columns: 80% 20%;
}

#b_applyCoupon{
  margin-left: 10px;
}

.d_button{
  background:darkgreen;
  color: white;
  font-weight: bold;
  line-height: 70px;
  text-align: center;
  vertical-align: center;
}
.d_button:hover{
  cursor: pointer;
  transform: scale(1.05);
}
.inp_fancy{
  position: relative;
  margin: auto;
  width: 100%;
  max-block-size: 280px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid lightgray;
}
.inp_fancy .label{
  position: absolute;
  top: 20px;
  left: 12px;
  font-size: 20px;
  color: #00000080;
  font-weight: 500;
  transform-origin: 0 0;
  transform: translate3d(0,0,0);
  transition: all 0.2s ease;
  pointer-events: none;
}
.inp_fancy .focus-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000000d;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
}
.inp_fancy input{
  -webkit-appearance: textfield; //was none
  -moz-appearance: textfield;
  appearance: textfield;
  width: 100%;
  border: 0;
  padding: 16px 12px 0 12px;
  height: 56px;
  font-size: 20px;
  font-weight: 500;
 
  background: #00000005;
  box-shadow: inset 0 -1px #0000004d;
  color: #000;
  transition: all 0.15s ease;
}
.inp_fancy input:hover{
  background: #0000000a;
  box-shadow: inset 0 -1px 0 #00000080;
}
.inp_fancy input:not(:-moz-placeholder-shown) + .label{
  color: #00000080;
  transform: translate3d(0,-12px,0) scale(0.75);
}
.inp_fancy input:not(:-ms-input-shown) + .label{
  color: #00000080);
  transform: translate3d(0,-12px,0) scale(0.75);
}
.inp_fancy input:not(:placeholder-shown) + .label{
  color: #00000080;
  transform: translate3d(0,-12px,0) scale(0.75);
}
.inp_fancy input:focus{
  background: #0000000d;
  outline: none;
  box-shadow: inset 0 -2px 0 darkgreen;
}
.inp_fancy input:focus + .label{
  color: darkgreen;
  transform: translate3d(0,-12px,0) scale(0.75);
}
.inp_fancy input:focus + .label + .focus-bg{
  transform: scaleX(1);
  transition: all 0.1s ease;
}
.inp_fancy input:disabled{
  background: darkgrey;
}


#l_inp_uie{
  color
  left: 12px;
  font-size: 20px;
  font-weight: 500;
}

#b_signup{
  width: 200px;
}

#d_applied_coupon{
  background: lightgreen;
  border-radius: 15px;
  padding: 5px 25px;
  border: 2px dashed green;
  display: none;
}
#d_applied_coupon_header{
  font-weight: bold;
  font-size: 20px;
  border-bottom: 3px solid green;
  text-align: center;
}
#d_applied_coupon_context{
  font-size: 20px;
  text-align: center;
}