.mmform-container {
	max-width: none !important;
	border-radius: 5px;
	width: auto !important;
}

.mainhdr {
	margin-top: 0 !important;
	text-align: center;
	color: #007CA0;
}

/*@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600");*/
/* VARS */
/* MIXINS */
/* STYLE THE HTML ELEMENTS (INCLUDES RESETS FOR THE DEFAULT FIELDSET AND LEGEND STYLES) */
/*.hform body, .hform html {*/
.hform {
  margin: 0;
  padding: 1rem;
  box-sizing: border-box;
  width: 100%;
  /*max-width: 1000px;*/
  /*height: 100%;*/
  font-size: 16px;
  font-family: "Open Sans", "Helvetica", sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: #EEE;
}

select {
	width: 60% !important;
}

h2 {
	color: #007CA0 !important;
}

fieldset {
  margin: 0;
  padding: 1rem;
  box-sizing: border-box;
  display: block;
  border: none;
  border: solid 1px #CCC;
  min-width: 0;
  background-color: #FFF;
  
}
fieldset legend {
  margin: 0 0 1.5rem;
  padding: 0;
  width: 100%;
  float: left;
  display: table;
  font-size: 1.5rem;
  line-height: 140%;
  font-weight: 600;
  color: #333;
}
fieldset legend + * {
  clear: both;
}

input[type=email] {
width: 60% !important;	
}

.hform body:not(:-moz-handler-blocked) fieldset {
  display: table-cell;
}

/* TOGGLE STYLING */
.toggle {
  margin: 0 0 1.5rem;
  box-sizing: border-box;
  font-size: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.toggle input {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}
.toggle input + label {
  margin: 0;
  padding: .75rem 2rem;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  border: solid 1px #DDD;
  background-color: #FFF;
  font-size: 1rem;
  line-height: 140%;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: border-color .15s ease-out,  color .25s ease-out,  background-color .15s ease-out, box-shadow .15s ease-out;
  cursor: pointer;
  /* ADD THESE PROPERTIES TO SWITCH FROM AUTO WIDTH TO FULL WIDTH */
  flex: 0 0 50%; display: flex; justify-content: center; align-items: center;
  /* ----- */
}
.toggle input + label:first-of-type {
  border-radius: 6px 0 0 6px;
  border-right: none;
}
.toggle input + label:last-of-type {
  border-radius: 0 6px 6px 0;
  border-left: none;
}
.toggle input:hover + label {
  border-color: #007CA0;
  background-color: #d2a301;
  color: #fff;
}
.toggle input:checked + label {
  background-color: #007CA0;
  color: #FFF;
  box-shadow: 0 0 10px rgba(102, 179, 251, 0.5);
  border-color: #007CA0;
  z-index: 1;
}
.toggle input:focus + label {
  
}
@media (max-width: 800px) {
  .toggle input + label {
    padding: .75rem .25rem;
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  p {
	  font-size: 13px !important;
  }
  
  td span {
	  font-size: 13px !important;
  }

  .checkbox-formlabel p {
	  margin-left: 15px;
  }
}

/* STYLING FOR THE STATUS HELPER TEXT FOR THE DEMO */
.status {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}
.status span {
  font-weight: 600;
  color: #B6985A;
}
.status span:first-of-type {
  display: inline;
}
.status span:last-of-type {
  display: none;
}
@media (max-width: 800px) {
  .status span:first-of-type {
    display: none;
  }
  .status span:last-of-type {
    display: inline;
  }
}

#full, #module {
	display: none;	
}

#applycoupon {
	background-color: #007CA0;
	border-radius: 5px;
}

#mssys_coupon {
	height: 45px;
	font-size: 20px !important;
}

#containermssys_coupon .fieldcontainer {
margin-top: 10px !important;	
	
}


.cbx {
  -webkit-perspective: 20;
  perspective: 20;
  position: absolute;
  /*top: 50%;
  left: 50%;*/
  margin: -12px;
  border: 2px solid #e8e8eb;
  background: #e8e8eb;
  border-radius: 4px;
  transform: translate3d(0, 0, 0);
  cursor: pointer;
  transition: all 0.3s ease;
}
.cbx:hover {
  border-color: #0b76ef;
}
.flip {
  display: block;
  /*transition: all 0.4s ease;*/
  transform-style: preserve-3d;
  position: relative;
  width: 20px;
  height: 20px;
}
.prodchk, .noproduct {
  display: none;
}
.prodchk:checked + .cbx, .noproduct:checked + .cbx {
  border-color: #007CA0;
}
.prodchk:checked + .cbx .flip, .noproduct:checked + .cbx .flip {
  transform: rotateY(180deg);
}
.front,
.back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 2px;
}
.front {
  background: #fff;
  z-index: 1;
}
.back {
  transform: rotateY(180deg);
  background: #007CA0;
  text-align: center;
  color: #fff;
  line-height: 20px;
  box-shadow: 0 0 0 1px #0b76ef;
}
.back svg {
  margin-top: 3px;
  fill: none;
}
.back svg path {
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body {
  -webkit-font-smoothing: antialiased;
}

.opa {
	opacity: 0.5;
}

.nopointer {
	cursor: not-allowed;
}

/* radio */

.rdo-grp {
  /*position: absolute;
  top: calc(50% - 10px);*/
}
.rdo-grp label {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  padding: 6px 8px;
  border-radius: 20px;
  float: left;
  transition: all 0.2s ease;
}
.rdo-grp label:hover {
  background: rgba(0,119,255,0.06);
}
.rdo-grp label:not(:last-child) {
  margin-right: 16px;
}
.rdo-grp label span {
  vertical-align: middle;
}
.rdo-grp label span:first-child {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background: #cccfdb;
  border-radius: 50%;
  transition: all 0.2s ease;
  margin-right: 8px;
  box-shadow: 0 1px 1px rgba(0,16,75,0.05);
}
.rdo-grp label span:first-child:after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  margin: 1px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.rdo-grp label:hover span:first-child {
  background: #07f;
}
.rdo-grp input {
  display: none;
}
.rdo-grp input:checked + label span:first-child {
  background: #07f;
}
.rdo-grp input:checked + label span:first-child:after {
  transform: scale(0.5);
}
body {
  -webkit-font-smoothing: antialiased;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
}


#csz_full_click, #csz_module_click, #aszf_full_click, #aszf_module_click {
	padding-left: 25px;
	cursor: pointer;
}
