/*custom font*/
@font-face {
    font-family: nexa;
    src: url(Nexa_Bold_0.otf);
}
@font-face {
    font-family: nunito;
    src: url(Nunito-Regular.ttf);
}
/*basic reset*/
* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    background: #ffffff; /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #6441A5, #2a0845); /* Chrome 10-25, Safari 5.1-6 */
}

body {
    font-family: arial, verdana;
    background: transparent;
}


/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}

input,textarea,select,label{
    font-family: arial, verdana!important;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 100%;;
    margin:0%;

    /*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, #msform select, img{
    padding: 7px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: nexa;
    color: #2C3E50;
    font-size: 18px;

}

#msform input:focus, #msform textarea:focus, #msform select:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid blue;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

#msform input[type=checkbox]{
    width: 34px;
}
/*buttons*/
#msform .action-button {
    width: 170px;
    background: #EE3A49;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    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 #EE3A49;
}

#msform .action-button-previous {
    width: 170px;
    background: #aaaaaa;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    padding-top: 6px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*headings*/
.fs-title {
    font-size: 30px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
    font-family:nexa;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#logo-progressbar{
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#logo-progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 14.28%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#logo-progressbar li:before{
    content: counter(step);
    counter-increment: step;
    width: 40px;
    height: 40px;
    line-height: 36px;
    display: block;
    font-size: 20px;
    color: white    ;
    background: #aaaaaa;
    border-radius: 0px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#logo-progressbar li:after{
    content: '';
    width: 100%;
    height: 5px;
    background: #AAAAAA;
    position: absolute;
    left: -50%;
    top: 18px;
    z-index: -1; /*put it behind the numbers*/
}

#logo-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*/
#logo-progressbar li.active:before, #logo-progressbar li.active:after{
    background: #EE3A49;
    color: white;
}


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #ff0000;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}

#msform div{
    margin-top:5px;
    font-size:18px;
    text-align: left!important;
}

.container{
    width:auto;
    font-size:18px;
    font-weight: 100;
}

.checkbox-container{
    width:auto;
    display:block;
}


#msform label.required:after {
    background-color: #EE4E44;
    color: #fff;
    padding: 0 5px;
    text-shadow: none;
    line-height: 16px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
  /*  border-radius: 3px;
    display: inline-block;
    position: absolute;
    right: 3px;
    top: 5px;*/
}
/*logo*/
#scheme-yes,
#fonts-yes,
#sketches-yes
{display:none;}

#title-logo h2 {padding-top:1%; font-family: nexa; font-size:50px!important;}

.vertical-div-radio{ 
    display: inline-flex;
    width: 100%;
    text-align: left!important;
 }
.vertical-input-radio{
    text-align: left;
    width: 50px!important;
}
.vertical-label-radio{
    width: inherit!important;
    font-size: 18px!important;
    padding: 0px!important;   
}

.feature1{width: 48%;display: inline-block;vertical-align: top;}

#msform input::placeholder {
  color: gray; opacity: .5;
}
.summary {
    width: 70%!important;
    background: #c7c5c5!important;
}
.error-message{
    font-style: italic;
    font-size: 12px;
    color: red  
}
.asterisk{color:red;}

.btn-primary {
    color: #fff;
    background-color: #d4d2d2!important;
    border-color: #d4d2d2!important;
}

#loadingupload{display: none;width:100%;text-align: center;}
#loadingupload img{width:initial;}
#title-logo .thank-you{font-size: 70px; font-family:nexa!important; font-weight: 700; }
#title-logo .submitted{font-size: 20px;font-family:nexa!important; font-weight: 400; }
#title-logo img{width:270px!important;border:none!important; padding:20px;}
.contentpages{display: none;}