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

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

html {
    height: 100%;
     /*background: -webkit-linear-gradient(to left, #6441A5, #2a0845); /* Chrome 10-25, Safari 5.1-6 */
    text-align: center;
    /*background-image: linear-gradient(rgba(24,153,207,0.7), rgba(24,153,207,0.7)) ,url(../images/bg.jpg) !important;
    background-repeat: no-repeat;
    background-position: center center;
     background-size: 100% auto; 
    background-size: cover !important;*/

	/*background-color: #57B1D7;
    background-image: linear-gradient(rgba(24,153,207,0.7), rgba(24,153,207,0.7)) ,url(../images/bg.jpg) !important;*/

   background-color: #11253d;
   background-image: url("https://cdn.digitalshiftmedia.com/wp-content/uploads/dark-blue-angle.desktop.png");
   background-size: cover !important;


}

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

}

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

#quoteform 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: 80%;
    margin: 0 10%;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#quoteform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#quoteform input, #quoteform textarea{
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
}

select#quoteform  {
	height: 50px;
	padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
}

#quoteform input:focus, #quoteform textarea:focus, #quoteform select:focus{
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #f91f42;
    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;
}

/*buttons*/
#quoteform .action-button,
.action-button {
    width: 100px;
    background: #f91f42;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
	white-space: normal;
}

#quoteform .action-button:hover, #quoteform .action-button:focus,
.action-button:hover, .action-button:focus{
    box-shadow: 0 0 0 2px white, 0 0 0 3px #f91f42;
}

#quoteform .action-button-previous {
    width: 100px;
    background: #E0E0E0;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#quoteform .action-button-previous:hover, #quoteform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #E0E0E0;
}
#quoteform input.invalid {
    border-color: #dc3545;
}
/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.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;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px 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: #f91f42;
    color: white;
}


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

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

.row{
	margin:0 !important; /*elimiate extra space*/
}


/* Page Style
-----------------------------------------------------------*/
.site-inner{
	
}

.wrap{
	padding: 10px 20px;
    max-width: 565px;
    margin: 0 auto;
    text-align: center;
}

.full-width-wrap {
border: 1px solid #e9e9e9;
background: #fff;
padding: 20px 20px 50px 20px;
margin: 0 auto;
text-align: center;
box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);

    max-width: 1130px;
    margin: 0 auto;
    text-align: center;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
	float: left;
}

.first {
	clear: both;
	margin-left: 0;
}

.entry-content{
    border: 1px solid #e9e9e9;
    background: #fff;
	max-width: 565px;
    padding: 20px 20px 50px 20px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4)
}





/* STEP 1 - Slider for Revenue Target
-----------------------------------------------------------*/


.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    padding: 0px !important;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #e50066;
    cursor: pointer;
    border-radius: 50px;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #02a1fc;
    cursor: pointer;
}


/************** Footer *************/

.footer-links {
    margin: 0;
    list-style: none;
    padding: .75em 1em 0;
    display: block;
    text-align: center;
    font-weight: 300;
	font-size: 12px;
}
.footer-links ul, .footer-links ol {
    list-style: none;
}

.footer-links li {
    display: inline-block;
    padding: 0 .5em;
}
.footer-links {
    list-style: none;
    text-align: center;
}

.footer-links li a:link, .footer-links li a:visited, .footer-links li a:hover, .footer-links li a:active {
    color: #002f3d;
	text-decoration: none;
}

.footer-links li a:hover, .footer-links li a:active {
	text-decoration: underline;
}

#footer {

}