:root {
  --cod-gray: #373836;
  --cod-gray: #0B0B0B;
  --slate-gray: #373836;
  --cream: #f5f2eb;
  --the-orange: #f4762d;
  --guardsmen-red: #CC0000;
  --guardsmen-red-alpha: #CC0000AA;
  --amber-gold: #D8BD82;
  --ice-brew: #EFEFEF;
  --midnight-blue: #182335;
  --light-gray: #e6e6e6;
  --mid-gray: #707070;
  --action-pink: #FD3470;
  --gray1: #E6E6E6;
  --gray5: #333333;
  --merrell-orange: #F4762D;
}

* {
  box-sizing: border-box;
}

html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
  background-image: url('/img/texture-bg.png');
	margin: 0;
	padding: 0;
	font-family: 'gira-sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a, a:hover, a:focus, a:active {
  color: inherit;
	text-decoration: none;
}

label {
	display: block;
}

input, select, textarea {
	font-family: inherit;
	font-size: inherit;
	border-radius: 3px;
  height: 42px;
  padding: 0 12px;

  border: none;
  outline: none;

  background: #FFFFFF;
  border: 2px solid var(--cod-gray);
}

input:disabled {
	color: #ccc;
}

/* Defaults Above */

/* High cardinal use */

/* General */

.row {
  display: flex;
  flex-direction: row;
}

.row.vcenter {
  align-items: center;
}

.row.hcenter {
  justify-content: center;
}

.row.between {
  justify-content: space-between;
}

.row.nowrap {
  flex-wrap: nowrap;
}

.row.wrap {
  flex-wrap: wrap;
}

.row.end {
  justify-content: flex-end;
}

.col {
  display: flex;
  flex-direction: column;
}

.col.vcenter {
  justify-content: center;
}

.col.hcenter {
  align-items: center;
}

.col.between {
  align-items: space-between;
}

.centercenter {
  display: flex;
  align-items: center;
  justify-content: center;
}

.f1 {
  flex: 1;
}

.pointer {
  cursor: pointer;
}

/* .underline {
  text-decoration: underline;
} */

/* Site specific */

/* TODO: Move to theme */
.section-header {
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--slate-gray);
  font-size: 16px;
  font-weight: 350;
  letter-spacing: 0.2em;
}

/* TODO: Move to theme */
.button {
  /* Base theme */
  background-color: var(--merrell-orange);
  color: white;

  display: inline-block;
  padding: 7px 17px;
  border-radius: 5px;
  cursor: pointer;
  margin: 8px 0;
  font-size: 20px;
  font-weight: 800;


  /* If used with a button tag */
  outline: none;
  border: none;
}

.button:disabled {
  background-color: #ca5a5a;
}

.button.live {
  background-color: var(--merrell-orange);
  color: white;
}

/* Layout shared styles */

.logo {
  background: url('/img/logo.png');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left;

  height: 5rem;
  width: 215px;
}

.login-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

.login-subtitle {
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 16px;
}

.form-label {
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mr-16 {
  margin-right: 16px;
}

.mr-8 {
  margin-right: 8px;
}

.error-box {
  border-radius: 3px;
  padding: .75rem 1.25rem;
  border: 1px solid #eebdc5;
  background-color: #f3d0d6;
  color: #660919;
}

.success-box {
  border-radius: 3px;
  padding: .75rem 1.25rem;
  border: 1px solid #e9f8e8;
  background-color: #e9f8e8;
  color: #4b7348;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 123123123;
  background-color: rgba(0,0,0,.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.material-button {
  position: relative;
  padding: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}