/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}

html {
	height: 100%;
	/*Image only BG fallback*/
	
	/*background = gradient + image pattern combo*/
    /*
    background:
            linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6));*/

    background: #eeeaff;
}

body {
	font-family: montserrat, arial, verdana;
}
/*form styles*/
#msform {
	width: 400px;
	margin: 50px auto;
	text-align: center;
	position: relative;
}
#msform fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
	padding: 20px 30px;
	box-sizing: border-box;
	width: 80%;
	margin: 0 10%;
	
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#msform input, #msform textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 13px;
}
/*buttons*/
#msform .action-button {
	width: 100px;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 33.33%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	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-color: #633aff;
	color: white;
}

button.close{
	display: none !important;
}

.modal-dialog .close {
	box-sizing: content-box;
	display: block;
	position: absolute;
	z-index: 10000;
	top: .35em;
	right: .9em;
	width: 1.5em;
	height: 1.5em;
	margin: 0;
	padding: 0;
	vertical-align: middle;
	align-self: center;
	text-align: center;
	text-decoration: none;
	color: white;
	background-color: rgb(62,22,102);


	/* No vendor prefix for FF: ugly in old versions */
	-webkit-border-radius: 50%;
	-khtml-border-radius: 50%;
	border-radius: 50%
}


.modal-dialog .close strong {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0;
	padding: 0;
	vertical-align: middle;
	line-height: 1.5em;
	font-weight: normal;
	cursor: pointer
}

/**
 * The close button state
 */
.modal-dialog .close:hover,
	.inner-dialog .close:active {
	outline: none;
	border: none;

	-webkit-transform: scale(1.2, 1.2);
	-moz-transform: scale(1.2, 1.2);
	transform: scale(1.2, 1.2);

	-webkit-tap-highlight-color: transparent
}
    .success-container {
      left: 50%;
      top: 50%;
      width: 600px;
      transform: translate(-50%, -50%);
      position: fixed;
    }

    .modalbox.success {
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 2px;
      background: #fff;
      padding: 25px 25px 15px;
      text-align: center;
    }

    .modalbox.success.animate .icon {
      -webkit-animation: fall-in 0.75s;
      -moz-animation: fall-in 0.75s;
      -o-animation: fall-in 0.75s;
      animation: fall-in 0.75s;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }

    .modalbox.success h1 {
      font-family: 'Montserrat', sans-serif;
    }

    .modalbox.success p {
      font-family: 'Open Sans', sans-serif;
    }

    .modalbox.success .icon {
      position: relative;
      margin: 0 auto;
      margin-top: -75px;
      background: #4caf50;
      height: 100px;
      width: 100px;
      border-radius: 50%;
    }

    .modalbox.success .icon span {
      postion: absolute;
      font-size: 4em;
      color: #fff;
      text-align: center;
      padding-top: 20px;
    }

    .center {
      float: none;
      margin-left: auto;
      margin-right: auto;
      /* stupid browser compat. smh */
    }

    .center .change {
      clearn: both;
      display: block;
      font-size: 10px;
      color: #ccc;
      margin-top: 10px;
    }

    @-webkit-keyframes fall-in {
      0% {
        -ms-transform: scale(3, 3);
        -webkit-transform: scale(3, 3);
        transform: scale(3, 3);
        opacity: 0;
      }

      50% {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1;
      }

      60% {
        -ms-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
      }

      100% {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
      }
    }

    @-moz-keyframes fall-in {
      0% {
        -ms-transform: scale(3, 3);
        -webkit-transform: scale(3, 3);
        transform: scale(3, 3);
        opacity: 0;
      }

      50% {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1;
      }

      60% {
        -ms-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
      }

      100% {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
      }
    }

    @-o-keyframes fall-in {
      0% {
        -ms-transform: scale(3, 3);
        -webkit-transform: scale(3, 3);
        transform: scale(3, 3);
        opacity: 0;
      }

      50% {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1;
      }

      60% {
        -ms-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
      }

      100% {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
      }
    }

    @-webkit-keyframes plunge {
      0% {
        margin-top: -100%;
      }

      100% {
        margin-top: 25%;
      }
    }

    @-moz-keyframes plunge {
      0% {
        margin-top: -100%;
      }

      100% {
        margin-top: 25%;
      }
    }

    @-o-keyframes plunge {
      0% {
        margin-top: -100%;
      }

      100% {
        margin-top: 25%;
      }
    }

    @-moz-keyframes fall-in {
      0% {
        -ms-transform: scale(3, 3);
        -webkit-transform: scale(3, 3);
        transform: scale(3, 3);
        opacity: 0;
      }

      50% {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1;
      }

      60% {
        -ms-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
      }

      100% {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
      }
    }

    @-webkit-keyframes fall-in {
      0% {
        -ms-transform: scale(3, 3);
        -webkit-transform: scale(3, 3);
        transform: scale(3, 3);
        opacity: 0;
      }

      50% {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1;
      }

      60% {
        -ms-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
      }

      100% {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
      }
    }

    @-o-keyframes fall-in {
      0% {
        -ms-transform: scale(3, 3);
        -webkit-transform: scale(3, 3);
        transform: scale(3, 3);
        opacity: 0;
      }

      50% {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1;
      }

      60% {
        -ms-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
      }

      100% {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
      }
    }

    @keyframes fall-in {
      0% {
        -ms-transform: scale(3, 3);
        -webkit-transform: scale(3, 3);
        transform: scale(3, 3);
        opacity: 0;
      }

      50% {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1;
      }

      60% {
        -ms-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
      }

      100% {
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
      }
    }

    @-moz-keyframes plunge {
      0% {
        margin-top: -100%;
      }

      100% {
        margin-top: 15%;
      }
    }

    @-webkit-keyframes plunge {
      0% {
        margin-top: -100%;
      }

      100% {
        margin-top: 15%;
      }
    }

    @-o-keyframes plunge {
      0% {
        margin-top: -100%;
      }

      100% {
        margin-top: 15%;
      }
    }

    @keyframes plunge {
      0% {
        margin-top: -100%;
      }

      100% {
        margin-top: 15%;
      }
    }
  

    form#msform input.previous{
        background-color: white !important;
        color: #633aff !important;
        border: 1px solid #633aff !important;
        border-radius: 5px !important;
    }
    form#msform input.next, form#msform input.submit{
        background-color: #633aff !important;
        color: white !important;
        border-radius: 5px !important;
        box-shadow: none !important;
    }
    
    #msform .action-button:hover{
      box-shadow: none !important;
    }