/*base styles
===========================*/

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}
	
*, *:before, *:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

.wrap {
	width: 100%;
}

.wrap:after {
	content: "";
	display: table;
	clear: both;
}
	
.container {
	max-width: 1124px;
	margin: 0 auto;
	padding: 0 1em;
	position: relative;
}
	
.container:after {
	content: "";
	display: table;
	clear: both;
}

.outer-wrap {
	background-image: url('../images/blurred-bg.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 80%;
    background-color: #fff;
	margin-bottom: -57px;
}

/*main styles
=======================*/
	
.main {
	max-height: 1000px;
	background: url(../images/dark-trans.png) 0 0 repeat;
	padding: 1em;
	margin: 3em 0 5em;
	-webkit-border-radius: 5px;
	-moz-border-radius:    5px;
	border-radius:         5px;
}

main.main:after {
	content: "";
	display: table;
	clear: both;
}

.sc-header {
	width: 100%;
	height: 120px;
	background: none;
	filter: none;
	padding: 3em 0 0;
	margin: 0;
}

.sc-header:after {
	content: "";
	display: table;
	clear: both;
}
		
.logo-container {
	max-width: 378px;
	height: 72px;
	margin: 0 auto;
	background: url(../images/SandhillsCloud-logoV2.svg) 0 0 no-repeat;
}

.sc-logo {
	text-align: center;
	margin: 0 auto;
	width: 100%;
	display: block;
	height: 100%;
	position: relative;
}

@media screen and (max-width:380px) {
	.sc-header {
		padding: .5em;
		height: 70px;
	}
			
	.logo-container { height: 45px; }
			
	.main {
		margin-top: 0;
	}
}
	
.sc-topper {
	border-bottom: 1px #e0e0e0 solid;
	padding: 6px 0;
	display: none;
}
	
.sc-topper-logo {
	height: 24px;
	width: 126px;
	background: url(../images/SandhillsCloud-logoV2.svg) 0 0 no-repeat;
	margin: 0 auto;
}

/*Warning and Maintenance
==========================*/

.warning-message,
.maintenance-message {
	padding: 2em;
	border: 2px #b22c1b solid;
	text-align: center;
	font-weight: bold;
	color: #b22c1b;
	background: rgba(255,255,255,0.60);
	margin-top: 1em;
	position: relative;
	bottom: -15px;
}

.maintenance-message {
	color: #50748A;
	border-color: #50748A;
}
	
@media screen and (max-width:380px) {
	.warning-message,
	.maintenance-message {
		bottom: auto;
		top: auto;
		padding: 1em;
		font-size: .9em;
		margin: .7em 0;
	}
}

@media screen and (max-width:320px) {
	.sc-header {
		height: 55px;
	}
}

/*login 
==========================*/

.login-container {
	background: #153654;
	width: 46%;
	float: left;
	padding: 4px;
	color: #fff;
	-webkit-border-radius: 6px;
	-moz-border-radius:    6px;
	border-radius:         6px;
	-webkit-box-shadow: 0 1px 7px 1px rgba(0, 0, 0, 0.55);
	-moz-box-shadow:    0 1px 7px 1px rgba(0, 0, 0, 0.55);
	box-shadow:         0 1px 7px 1px rgba(0, 0, 0, 0.55);
}

.login-container.enlarge {
	width: 100%;
}
	
	

.signup-toggle-btn,
.login-toggle-btn {
	width: 50%;
	float: left;
	border: none;
	outline: none;
	padding: 1em;
	display: inline-block;
	font-size: 1.1em;
	font-weight: bold;
	cursor: pointer;
	background: #741006;
	color: #903229;
}
	
.signup-toggle-btn:hover,
.login-toggle-btn:hover {
	color: #fff;
}
		
.active-tab {
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	cursor: default;
	background: #335e85;
	color: #fff;
}

.login-content,
.signup-content {	
	padding: 1.5em;
	position: relative;
	clear: both;
	background-color: #335e85;
}
	
.signup-content { display: none; }
	
.login-content h5,
.signup-content h5 {
	padding-bottom: .6em;
}
		
.login-content p,
.signup-content p {
	font-size: .8em;
	line-height: 1.4;
	padding-bottom: 1.3em;
	color: #ddd;
}
		
.pub-redirect-icon {
	position: absolute;
	right: 1.5em;
	bottom: 1.3em;
	width: 50px;
	height: 50px;
}

.pub-signup-icon {
	right: 0; bottom: -4px;
}
		
a.text-link {
    color: #fff;
}
	
input[type=text], input[type=password], select, textarea {
	width: 100%;
	padding: .433em;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	border: 1px #dcdcdc solid;
	outline: none;
	font-weight: inherit;
	color: #3b6e8f;
}
	
.login-content input[type="text"],
.login-content input[type="password"] {
	padding: 1em;
	margin-bottom: 1em;
	font-size: .85em;
	-webkit-box-shadow: 0 1px 7px 1px rgba(0, 0, 0, 0.45);
	-moz-box-shadow:    0 1px 7px 1px rgba(0, 0, 0, 0.45);
	box-shadow:         0 1px 7px 1px rgba(0, 0, 0, 0.45);
}
		
.login-submit,
.store-btn {
	width: 100%;
	position: relative;
	-webkit-border-radius: 5px;
	-moz-border-radius:    5px;
	border-radius:         5px;
	-webkit-box-shadow: 0 2px 8px 1px rgba(0, 0, 0, 0.45);
	-moz-box-shadow:    0 2px 8px 1px rgba(0, 0, 0, 0.45);
	box-shadow:         0 2px 8px 1px rgba(0, 0, 0, 0.45);
	border: 2px #fff solid;
	padding: .6em;
	margin-top: .5em;
	font-size: 1.1em;
	font-weight: bold;
	color: #335e85;
	background-color: #f5f5f5;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#ddd));
	background-image: -webkit-linear-gradient(top, #f5f5f5, #ddd);
	background-image: -moz-linear-gradient(top, #f5f5f5, #ddd);
	background-image: -o-linear-gradient(top, #f5f5f5, #ddd);
	background-image: linear-gradient(to bottom, #f5f5f5, #ddd);
	background:       -ms-linear-gradient(#f5f5f5, #ddd);
	cursor: pointer;
}

.login-submit:hover,
.store-btn:hover {
	background: #f5f5f5;	
}
		
.login-submit:active {
	background: #f0f0f0;
	-webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.45);
	-moz-box-shadow:    0 1px 4px 0 rgba(0, 0, 0, 0.45);
	box-shadow:         0 1px 4px 0 rgba(0, 0, 0, 0.45);
	top: 1px;
}

.store-btn:active {
	top: 52%;
}
		
.disable-btn,
.disable-btn:hover {
	opacity: .6;
	cursor: default;
	background-color: #f5f5f5;
	background-image: none;
	box-shadow: none;
}

label.su-lable,		
.su-lable {
	width: 100%;
	line-height: 1.8;
    font-weight: bold;
	font-size: .9em;
}

.su-left {
	width: 48%;
	float: left;
}
	
.su-right {
	width: 48%;
	float: right;
}
	
.end {
	margin-right: 0;
}
		
signup-form {
	background: #fff;
}
		
h5.border-bottom {
	border-bottom: 1px #86909A solid;
	margin-bottom: 1em;
}
		
.password-container {
	position: relative;
	background: #9E2317;
	clear: both;
	padding: 2em;
	margin: 2em 0;
	-webkit-border-radius: 6px;
	-moz-border-radius:    6px;
	border-radius:         6px;
}	
	
.password-container:after {
	content: "";
	display: table;
	clear: both;
}	
	
.password-info {
	width: 48%;
	float: left;
	background: #fff;
	padding: 2em;
	margin: 1.5em 0 0 0;
	-webkit-border-radius: 6px;
	-moz-border-radius:    6px;
	border-radius:         6px;
}

.password-info p { color: #565A5F; }

.password-inputs {
	width: 48%;
	float: right;
	position: relative;
}

.hide-login {
	display: none;
	opacity:0;
}
	
.hidden { 
	opacity:0;
	max-height: 0;
	margin: 0;
	overflow: hidden;
}
	
/*slideshow styles
==========================*/

.slideshow {
	width: 51%;
	float: right;
	opacity: 1;
}

.cycle-slideshow, .cycle-slideshow * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}	
	
.cycle-slideshow {
	-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.75);
	-moz-box-shadow:    0 2px 2px 0 rgba(0, 0, 0, 0.55);
	box-shadow:         0 2px 2px 0 rgba(0, 0, 0, 0.55);
}

.cycle-slideshow > a { 
	position: absolute; 
	top: 0; left: 0;
	width: 100%; 
	padding: 0; 
	background-color: #222; 
	display: block;
}

.cycle-slideshow > a > img { 
	width: 100%;
	position: static;
	display: block;
    cursor:pointer;
}
		
.slideshow-pager {
	text-align: center;
	font-size: 2.5em;
}
	
.slideshow-pager span {
	color: #a5afb8;
	cursor: pointer;
	margin: 0 .1em;
}

.slideshow-pager span:hover {
	color: #b6bfc9;
}
	
span.cycle-pager-active,
span.cycle-pager-active:hover {
	color: #335e85;
	cursor: default;
}
	
@media screen and (max-width:780px) {
	.login-container {
		width: 100%;
		}
	.logged-in-container {
		width: 100%;
		}
	.slideshow {
		width: 100%;
		margin-top: 1.5em;
		}
	.password-info,
	.password-inputs {
		width: 100%;
		}
	.password-info {
		margin: 0;
		}
}
	
@media screen and (max-width:520px) {
	.logged-in-message { visibility: hidden; }
		
	.su-left,
	.su-right {
		width: 100%;
	}
}
	
@media screen and (max-width:380px) {
	main.main {
		background: none;
		padding: 0;
	}
		
	.login-content {
		padding: .5em;
	}
		
	.login-content, 
	.signup-content {
		padding: .5em;
	}

	.password-container {
		padding: .8em .5em;
	}
		
	.pub-redirect-icon {
		right: .5em;
		bottom: .3em;
	}
}

/*store area styles
==========================*/

.promo-wrap {
	background: #1a4369;
	padding: 1em 0;
	color: #fff;
	text-align:center;
}
	
.promo-content {
	width: 100%;
	padding-left: 130px;
	padding-right: 400px;
	line-height: 1.3;
	position: relative;
}
	
.promo-btn {
	position: absolute;
	right: 0; top: 50%;
	margin-top: -20px;
	width: 360px;
	text-align: center;
	text-decoration: none;
	padding: .4em;
}
	
.promo-icon {
	position: absolute;
	left: 0; top: -1.7em;
}
	
.promo-wrap h3 {
	font-size:1.3em;
	margin-bottom:5px;
}
	
@media screen and (max-width:780px) {
		
	.promo-content {
        padding: 1em 0 1em 18%;
		font-size: .9em;
	}
	
	.promo-btn {
		position: static;
		margin-top: 10px;
		width: 100%;
		display: block;
		clear: both;
	}
	
	.promo-icon {
		position: absolute;
		left: 0; top: 1em;
		width: 15%;
	}
}
	
@media screen and (max-width:340px) {
	.promo-content {
		text-align: center;
		padding-left: 0;
	}
	
	.promo-icon {
		position: static;
		margin: 0 auto;
		width: 130px;
		display: block;
	}
}
	
	/*pub area styles
============================*/

.pub-wrap {
	padding: 3em 0;
	background-color: #f5f5f5;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#325d83), to(#20496f));
	background-image: -webkit-linear-gradient(top, #325d83, #20496f);
	background-image: -moz-linear-gradient(top, #325d83, #20496f);
	background-image: -o-linear-gradient(top, #325d83, #20496f);
	background-image: linear-gradient(to bottom, #325d83, #20496f);
	background:       -ms-linear-gradient(#325d83, #20496f);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#325d83', endColorstr='#20496f');
} 

.pub-group {
	width: 21%;
	margin: 2% 5.3% 2% 0;
	float: left;
	text-align: center;
	font-weight: bold;
	font-size: .9em;
	position: relative;
}

.pub-group:nth-of-type(4n) {
	margin-right: 0;
}
		
.pub-group img {
	width: 100%;
	max-width: 142px;
	display: block;
	margin: 0 auto;
}
			
.pub-return-popup {
	display: none;
	position: absolute;
	bottom: 104%;
	z-index: 100;
	background: #b12a1c;
	width: 90%;
	margin: 0 5%;
	padding: 1em;
	color: #fff;
}

.pub-return-popup:after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -22px;
	width: 0;
	height: 0;
	border-left: 23px solid transparent;
	border-right: 23px solid transparent;
	border-top: 24px solid #b12a1c;
}
			
a.icon-link {
	border: 4px #295379 solid;
	display: inline-block;
	border-radius: 17%;
	position: relative;
}

a.icon-link:hover {
	border: 4px #143f66 solid;
	display: inline-block;
	border-radius: 17%;
	top: -1px;
}
	

.pub-title {
	color: #fff;
	padding-top: .1em;
}
		
@media screen and (max-width:700px) {
	.pub-return-popup {
		width: 220%;
	}

	.pub-return-popup:after {
		left: 11%;
		margin: 0;
	}
}

@media screen and (max-width:500px) {
	.pub-wrap {
		padding: 2em 0;
	}
	
	.pub-group,
	.pub-group:nth-of-type(4n) {
		width: 30.6%;
		margin: 2% 4% 2% 0;
		font-size: .8em;
		font-weight: normal;
	}
	
    .pub-group:nth-of-type(3n) {
		margin-right: 0;
	}
}

/*footer styles
============================*/

.push { height: 57px; }

.sc-footer {
	background: rgba(255, 255, 255, 0.35);
    color: #353535;
    border-top: 1px #979A9C solid;
    padding: 14px 0 !important;
	height: auto;
	clear: both;
	line-height: 1.4;
}

/*signout styles
============================*/

.signout-container {
	font-size: 1em;
}

.signout-title {
	padding: 1em 0 .5em;
	font-weight: normal;
	text-align: center;
}

.app-check-container {
	background: #fff;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
}

.app-check-item {
	clear: both;
	border: 1px #dcddde solid;
	border-bottom: none;
	overflow: hidden;
}

.check-box {
	height: 40px;
	width: 40px;
	background: #fff;
	border-right: 1px #dcddde solid;
	float: left;
	margin-right: 1em;
	position: relative;
}
.check-box:before {
	content: "";
	position: absolute;
	left: 10px;
   	top: 21px;
    height: 5px;
    width: 12px;
	background: #13AB6D;
	-ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
		
.check-box:after {
	content: "";
	position: absolute;
	left: 14px;
    top: 19px;
    height: 5px;
    width: 18px;
	background: #13AB6D;
	-ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(-45deg);
}

.app-name {
	font-size: 1.2em;
	font-weight: bold;
	line-height: 40px;
}

.app-check-message {
	padding: 1em;
	border: 1px #dcddde solid;
	text-align: center;
	font-weight: bold;
	background: #efefef;
}

.signout-message {
	text-align: center;
	padding: 1em;
	font-weight: bold;
}

@media screen and (max-width:520px) {
	.signout-container {
		font-size: .85em;
	}
}

@media screen and (max-width:380px) {
	.signout-title {
		padding: .5em;
		font-size: 1.2em;
	}
}













