/*
default color

black - #da4b40
white - #EEEEEE

*/
/* General */
* {
	margin:0;
	padding:0;
}
/** General Style Info **/
html {
	position: relative;
	min-height: 100%;
	background-color: #EEEEEE;
}
body {
	/*color: #2C3E50;*/
	/*margin: 0;
	min-height: 700px;
	background: #E1E1E1;*/
	/* Margin bottom by footer height */
	margin-bottom: 100px;
}
body > .container {
  padding: 60px 15px 0;
}
.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	/* Set the fixed height of the footer here */
	height: 100px;
	/*background-color: #fff;
	border-top: 1px solid #e7e7e7;*/
  padding:30px;
}
.container .text-muted {
  margin: 20px 0;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

#container {
	background-color: #EEEEEE;
    height: 100%;
}
code {
  font-size: 80%;
}

label {
}

#header a, #footer a {
    color: #22313F;
}

.header_img {
	width: 800px;
}

/* navbar */
.navbar-default {
  background-color: #fff;
} 
.navbar-static-top {
  margin-bottom: 19px;
}
.navbar-brand {
    float: left;
    height: 50px;
    padding: 5px 15px;
    font-size: 30px;
    line-height: 35px;
}

.navbar-toggle:hover, .navbar-toggle:focus, .navbar-toggle:visited {
  padding: 9px 10px;
}
/* layout */
.container{
    max-width: 820px;

}
#content{
	background-color: #fff;

	margin: 0 auto;
	clear: both;
	padding: 25px 40px;
	overflow: auto;
	margin-top: 20px;
	margin-bottom: 80px;
	border: 1px solid #e7e7e7;
}
/* icon */
.icon {
    padding: 10px 10px 10px 0;
}

/* typography */
a {
    /*color: #da4b40;
    text-decoration: none;*/
}

h1 {
	color: #da4b40;
	font-size: 100%;
}
h2 {
	color: #da4b40;
	font-size: 190%;
}
h3 {
	color: #da4b40;
	font-size: 165%;
}
h4 {
	color: #da4b40;
	font-weight: normal;
}
h5 {
	color: #da4b40;
	font-size: 150%;
}

.small_heading {
  margin-top: -10px;
  margin-bottom:20px;
  font-size: 90%;
}
/* dd */

dl dd:nth-child(4n+2),
dl dt:nth-child(4n+1) {
	background: none;
}

dl {
  margin: 0em 0em;
  padding: 15px;
  float: left;
  /*width: 47%;*/
  padding: 0;
}
dt {
  text-transform: uppercase;
  font-weight: normal;
  vertical-align: top;
  width: 100%;
  float: left;
  clear: left;
  font-size: 11px;
  margin: 0em 0em;
  color: #95a5a6;
}
dd {
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
  vertical-align: top;
  margin-bottom: 10px;
}

.block_icon_header {
    min-height: 50px;
    min-width: 30px;
    margin-right: 10px;
    display: inline-block;
    max-width: 350px;
    vertical-align: middle;

}
.block_icon {
    min-height: 50px;
    min-width: 30px;
    margin-right: 10px;
    display: inline-block;
    max-width: 290px;
    vertical-align: middle;
    /*overflow-wrap: break-word;
    word-wrap: break-word;*/


}
/* button */
.button {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;

    color:#da4b40;
}

.button:hover {
	text-decoration: none;
}

.button-primary, .button-primary:hover {
    color: #fff;
    background-color: #bdc3c7;

    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.button-primary:hover {
    background-color: #cacfd2;
    border-color: #cacfd2;
}

/* Table 
__________________________________________________ */
table { width: 100%;}
.table {
  display: table;
  /* Defines a Table */
  border-bottom: 2px solid #ddd;
  color: #8d8d8d;
  margin: 10px 0;
}
.table-head {
  /* Defines a table header group */
  display: table-header-group;
}
.table-head .tcolumn {
  background: #eaeaea;
  color: #7d7d7d;
  /*border-right:1px solid #5d5d5d;*/
  border-bottom: none;
  font-weight: bold;
}
.trow {
  display: table-row;
  /* Defines a table row */
}
.trow .tcolumn:nth-child(1) {
  border-left: 1px solid #eee;
}
.trow:last-child .tcolumn {
  border-bottom: none;
}
.tcolumn {
  display: table-cell;
  /* Defines a table cell */
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  border-right: 0px solid #eee;
}
.tcolumn:last-child {
  border-right: 1px solid #eee;
  /* Responsive table */
}
/* Skeleton
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/*reset bootstrap margin*/
.row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/*reset bootstrap margin*/
.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
    margin-left: 0 !important; 
}

input, textarea, select, fieldset {
    margin-bottom: 2rem;
}

.spanS { display: inline-block; margin-right: 10px;}
.span12 { display: inline-block; margin-right: 10px;width: 100%; *width: 99.94680851063829%; }
.span11 { display: inline-block; margin-right: 10px;width: 91.48936170212765%; *width: 91.43617021276594%; }
.span10 { display: inline-block; margin-right: 10px;width: 82.97872340425532%; *width: 82.92553191489361%; }
.span9 { display: inline-block; margin-right: 10px;width: 74.46808510638297%; *width: 74.41489361702126%; }
.span8 { display: inline-block; margin-right: 10px;width: 65.95744680851064%; *width: 65.90425531914893%; }
.span7 { display: inline-block; margin-right: 10px;width: 57.44680851063829%; *width: 57.39361702127659%; }
.span6 { display: inline-block; margin-right: 10px;width: 48.93617021276595%; *width: 48.88297872340425%; }
.span5 { display: inline-block; margin-right: 10px;width: 40.42553191489362%; *width: 40.37234042553192%; }
.span4 { display: inline-block; margin-right: 10px;width: 31.914893617021278%; *width: 31.861702127659576%; }
.span3 { display: inline-block; margin-right: 10px;width: 23.404255319148934%; *width: 23.351063829787233%; }
.span2 { display: inline-block; margin-right: 10px;width: 14.893617021276595%; *width: 14.840425531914894%; }
.span1 { display: inline-block; margin-right: 10px;width: 6.382978723404255%; *width: 6.329787234042553%; }

.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 550px */
@media (min-width: 600px) {
  .column,
  .columns {
    /*margin-left: 4%; */}
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}

@media (max-width: 600px) { 
  /*input*/
  fieldset { width: 100%;}
  input[type="text"], select { width: 100%; }
  .spanS, .span1, .span2,.span3,.span4,.span5,
  .span6,.span7,.span8,.span9,.span10,.span11,.span12 { display: inline-block; width: 99%; *width: 99.94680851063829%; }

}

/* Competition
_________________________________________________ */
.category_box {
  border:1px solid #ccc; 
  padding:6px; 
  margin-top:5px;
  border-radius: 5px; 
  -webkit-border-radius: 5px; 
  -moz-border-radius: 5px; 
}
.category_label {
  color:#333;
  font-weight: bold;  
  margin:0;
  padding:0;
}
.eligible {
  background-color:#fff; 
  color:#da4b40;
}
.not_eligible {
  background-color:#f2f2f2; 
  color:#ABB2B9;
}

/* Progress
_________________________________________________ */
.progress, .progress a {
  list-style: none;
  margin: 0;
  padding: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
  color: #849397;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.progress > li {
  position: relative;
  display: table-cell;
  text-align: center;
  font-size: 0.8em;
}
.progress > li:before {
  content: attr(data-step);
  display: block;
  margin: 0 auto;
  background: #dfe3e4;
  width: 3em; 
  height: 3em;
  text-align: center;
  margin-bottom: 0.25em;
  line-height: 3em;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  position: relative;
  z-index: 1;
}
.progress > li:after {
  content: '';
  position: absolute;
  display: block;
  background: #dfe3e4;
  width: 100%;
  height: 0.5em;
  top: 1.25em;
  left: 50%;
  margin-left: 1.5em \9;
  z-index: 0;
}
.progress > li:last-child:after {
  display: none;
}
.progress > li.is-complete a {
  color: #da4b40;
}
.progress > li.is-complete:before, .progress > li.is-complete:after {
  color: #fff;
  background: #da4b40;
}
.progress > li.is-active a {
  font-weight: normal;
  color: #da4b40;
}
.progress > li.is-active:before {
  color: #fff;
  background: #da4b40;
  /**
 * Needed for IE8
 */
}
.progress__last:after {
  display: none !important;
  /**
 * Size Extensions
 */
}
.progress--medium {
  font-size: 1.2em;
}
.progress--large {
  font-size: 2em;
}

*, *:after, *:before {
  box-sizing: border-box;
}
.progress {
  margin-bottom: 3em;
}

/* Shirt 
–––––––––––––––––––––––––––––––––––––––––––––––– */
.apparel_size, .tshirt_size {
  border: 1px solid #d1d1d1;
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.apparel_size:hover, .tshirt_size:hover {
  cursor: pointer;
  background: #C70039;
  color: #fff;
}
.selected_apparel_id, .selected_tshirt_id {
  background: #da4b40;
  color: #fff;
}

/* Form
_______________________________________________________ */

label, legend, .label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
  text-align: inherit;
}

.label:after {
  color: #e32;
  display: inline;
}
fieldset {
  padding: 0;
  border-width: 0;
}
input[type="checkbox"], input[type="radio"] {
  display: inline;
  margin: 5px 10px 0 0;
}

input[type="radio"] + label {
  display: inline;
  padding-right: 10px; 
}
label > .label-body {
  display: inline-block;
  margin-left: 0.5rem;
}

form .required label:after {
  font-weight: normal;
  color: #e32;
  content: ' *';
  display:inline;
}

input[type=checkbox] {
    clear: left;
    float: left;
    margin: 0px 6px 7px 2px;
    width: auto;
}

/*
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
    height: 38px;
    padding: 6px 10px;
    background-color: #fff;
    border: 1px solid #d1d1d1;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
}

input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}
input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
  border: 1px solid #33c3f0;
  outline: 0;
}
label, legend, .label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
  text-align: inherit;
}

.label:after {
  color: #e32;
  display: inline;
}
fieldset {
  padding: 0;
  border-width: 0;
}
input[type="checkbox"], input[type="radio"] {
  display: inline;
  margin: 5px 10px 0 0;
}

input[type="radio"] + label {
  display: inline;
  padding-right: 10px; 
}
label > .label-body {
  display: inline-block;
  margin-left: 0.5rem;
}

form .required label:after {
  font-weight: normal;
  color: #e32;
  content: ' *';
  display:inline;
}

input[type=checkbox] {
    clear: left;
    float: left;
    margin: 0px 6px 7px 2px;
    width: auto;
}

input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea {
    clear: both;
    font-size: 100%;
    font-family: Arial, Helvetica, sans-serif;
    padding: 7px;
    width: 100%;
    background: #FFF;
    border: 1px solid #ccc;
    border-radius: 5px;
}
*/

.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box;
}
.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, .button:focus, button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
  display: inline-block;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box;
}
.button.button-primary, button.button-primary, input[type="submit"].button-primary, input[type="reset"].button-primary, input[type="button"].button-primary {
  color: #fff;
  background-color: #da4b40;
  border-color: #da4b40;
}
.button.button-primary:hover, button.button-primary:hover, input[type="submit"].button-primary:hover, input[type="reset"].button-primary:hover, input[type="button"].button-primary:hover, .button.button-primary:focus, button.button-primary:focus, input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus {
  color: #fff;
  background-color: #C70039;
  border-color: #C70039;
}


/*table */
/** Tables with border**/
table.border {
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	clear: both;
	color: #555;
	margin-bottom: 10px;
	width: 100%;
}
table.border tr td, table.border tr th {
	background: #fff;
	padding: 5px;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;

}
table.border tr th {
	background: #eaeaea;
}

table.border tr:nth-child(2n) td {
	background: #fff;
}

  /* Error
________________________________________________ */
.information_error, #flashMessage {
  background: #E84E4B;
  color:#fff;
  padding:5px 10px;
  font-size:100%;
  text-align: center;
  margin-bottom:2em;
}

  /* Responsive image
–––––––––––––––––––––––––––––––––––––––––––––––– */
.responsiveImage {
  max-width: 100%;
}


@media (min-width: 1200px) {
    .container{
        max-width: 820px;
    }

    #content{
		width: 800px;
	}
}
@media only screen and (min-width : 1025px) {
    .container{
        max-width: 820px;
    }

    #content{
		width: 800px;
	}
}

@media all and (max-width: 640px) {
  .table, .trow, .tcolumn, .tcolumn:before {
    display: block;
    /* Converts a table, table row, table column and table column:before into a block element */
  }
  .table, .trow .tcolumn:last-child {
    border-bottom: none;
  }
  .table-head {
    position: absolute;
    /* Hides table head but not using display none */
    top: -1000em;
    left: -1000em;
  }
  .trow {
    border: 1px solid #eee;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    margin: 20px 0;
  }
  .trow .tcolumn:nth-child(1) {
    border-left: none;
  }
  .trow .tcolumn:last-child {
    border-right: none;
  }
  .trow:last-child .tcolumn, .tcolumn {
    border-bottom: 1px solid #eee;
  }
  .tcolumn {
    border-right: 0px solid #eee;
  }
  .tcolumn:before {
    font-weight: bold;
    padding-right: 20px;
    font-size: 12px;
    font-family: FontAwesome;
    content: " " attr(data-label) " \f137";
    /* call the attribute value of data-label and adds a string // */
  }
}

@media only screen and (max-width : 1024px) {
    .container{
        max-width: 100%;
    }

    #content{
        padding:20px;
        width: 100%;
    }

    .header_img {
        width: 100%;
    }

    .responsiveImage {
        max-width: 100%;
        width: 100%;
    }

    .block_icon_header {
        min-height: 0px;
        min-width: 0px;
        display: none;
    }
    dt, dl {
        width: 100%;
        float: none;
        padding-top: 10px;
    }
}
/* ----------- iPad mini ----------- */

/* Portrait and Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
	#content{
		padding:20px;
        width: 100%;
	}

	.header_img {
		width: 100%;
	}

    .responsiveImage {
        max-width: 100%;
        width: 100%;
    }

	.block_icon_header {
	    min-height: 0px;
	    min-width: 0px;
	    display: none;
	}

	dt {
	    width: 100%;
	    float: none;
	    padding-top: 10px;
	}
}

/* ----------- iPhone 6 ----------- */

/* Portrait and Landscape */
@media only screen and (min-device-width: 375px)  and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) { 
	#content{
		padding:20px;
    width: 100%;
	}

	.header_img {
		width: 100%;
	}

  .responsiveImage {
    max-width: 100%;
    width: 100%;
  }

	.block_icon_header {
	    min-height: 0px;
	    min-width: 0px;
	    display: none;
	}

	dt {
	    width: 100%;
	    float: none;
	    padding-top: 10px;
	}
}

/* Portrait */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2)and (orientation: portrait) { 
	#content{
		padding:20px;
    width: 100%;
	}

	.header_img {
		width: 100%;
	}

	.block_icon_header {
	    min-height: 0px;
	    min-width: 0px;
	    display: none;
	}

  .responsiveImage {
    max-width: 100%;
    width: 100%;
  }
}
/* ----------- Galaxy Tab 10.1 ----------- */

/* Portrait and Landscape */
@media (min-device-width: 800px) and (max-device-width: 1280px) {
	#content{
		padding:20px;
    width: 100%;
	}

	.header_img {
		width: 100%;
	}

  .responsiveImage {
    max-width: 100%;
    width: 100%;
  }
}

/* Portrait */
@media (max-device-width: 800px) and (orientation: portrait) { 
	#content{
		padding:20px;
    width: 100%;
	}

	.header_img {
		width: 100%;
	}

  .responsiveImage {
    max-width: 100%;
    width: 100%;
  }
}

/* Landscape */
@media (max-device-width: 1280px) and (orientation: landscape) { 
	#content{
		padding:20px;
    width: 100%;
	}

	.header_img {
		width: 100%;
	}

  .responsiveImage {
    max-width: 100%;
    width: 100%;
  }
}

.default_color {
  color:#da4b40;
}
.default_background {
  background-color: #EEEEEE;
}
.default_border {
  border:1px solid #CCC;
}