/*
*   stepone.css
***************************************************************************** */
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    font-size: 16px;
    color: #4a4a4a;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

/* Form  styles */
label {
	float: left;
	width: 100%;
	text-align: left;
}

input {
	font-size: 90%;
	padding: 0.5em;
}

textarea { font-size: 90%; }

select {
	padding: 0.5em;
	font-size: 90%;
    border: 1px solid hsl(0,0%,75%); /* Fallback */
	border: 1px solid hsla(0,0%,75%,1);
    border-radius: 4px;
}

button, input[type="submit"], a.submit {
    border: none;
    width: 50%;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    font-weight: bold;
    color: white;
    padding: 1rem;
    cursor: pointer;
    text-shadow: 1px 1px 0px black;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3694a3), color-stop(90%, #1d7488));
    background: -moz-linear-gradient(#3694a3, #1d7488 90%);
    background: -webkit-linear-gradient(#3694a3, #1d7488 90%);
    background: linear-gradient(#3694a3, #1d7488 90%);
    font-size: 1rem;
}

button:hover, input[type="submit"]:hover, a.submit:hover {
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1d7488), color-stop(90%, #3694a3));
    background: -moz-linear-gradient(#1d7488, #3694a3 90%);
    background: -webkit-linear-gradient(#1d7488, #3694a3 90%);
    background: linear-gradient(#1d7488, #3694a3 90%);
    color: #FFF;
}

input {
    width: 100%;
    background: #f9f9f9;
    border-radius: 2px;
    border: 1px solid #999;
    display: block;
}

a {
    text-decoration: none;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    vertical-align: baseline;
}

/*-------------------------------------------------------------------------*/
.container-networkstep {
	margin: 6vw auto;
	position: relative;
	max-width: 1170px;
}

/* Step Number Tabs */
.stepone-tabs {
    display: grid;
    grid-template-columns: repeat(3, 0.333fr);
    column-gap: 10px;
}

.step-header {
	display: grid;
	grid-template-columns: 75px auto;
	height: 80px;
	position: relative;
    background-color: #D9F7FC; /* Fallback */
    background-color: hsla(188, 86%, 92%, 1);
    border-top-left-radius: 5%;
    border-top-right-radius: 5%;
}

.step-number {
	width: 50px;
	height: 50px;
	margin: auto 0px auto 1.5vw;
	display: inline-block;
}

p.step-number-title {
    color: #D9F7FC; /* Fallback */
	color: hsla(193, 54%, 33%, 1);
	margin: auto 0px;
	text-align: left;
	padding-left: 10px;
}

/* Connecting bar from step header to step content */
.step-connector {
    position: absolute;
    width: 100%;
    height: 20px;
    top: 100%;
    background-color: #D9F7FC;
}

/* Step One Content */
.stepone-wrapper {
	position: relative;
	margin-top: 50px;
	display: flex;
    flex-direction: column;
}

.stepone-form-container {
    margin-top: 10px;
    margin-bottom: 5vw;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #D9F7FC;
}

.stepone-form {
	grid-column-gap: 15px;
	position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1vw;
    display: flex;
}

.stepone-form input { display: relative; }

/* "Next" Button */
.step-button {
    margin: 0;
    width: 100%;
}


/* Bubble Benefits image */
.stepone-benefits {
    display: block;
	margin: 1vw auto 5vw;
	width: 65%;
	height: auto;
    max-width: 100%;
	background-color: white;
    text-align: center;
}

.stepone-benefits-mobile { display: none; }

/* ****************************************************************************
    Media Breakpoints
***************************************************************************** */
@media only screen and (max-width: 768px), (max-device-width: 768px) {
    .stepone-benefits { width: 80%; }
}

@media only screen and (max-width: 576px), (max-device-width: 576px) {
    .stepone-tabs { grid-template-columns: 0.6fr 0.2fr 0.2fr; }

    .step-header:first-of-type { grid-template-columns: 60px auto; }

    .step-header:nth-of-type(2), .step-header:nth-of-type(3) { grid-template-columns: 1fr; }
    .step-header:nth-of-type(2) .step-number, .step-header:nth-of-type(3) .step-number {
        margin-left: auto;
        margin-right: auto;
    }

    .number2 p, .number3 p { display: none; }

    .stepone-benefits { display: none; }

    .stepone-benefits-mobile {
        display: block;
    	margin: 1vw auto 10vw;
    	width: 75vw;
    	height: auto;
        max-width: 100%;
    	background-color: white;
        text-align: center;
    }
}

@media only screen and (max-width: 375px), (max-device-width: 375px) {
    .stepone-benefits-mobile { width: 85%; }
}
