/* ------------  COLORS  ------------ */
/* OLD COLOR SCHEME */
/* :root {
    --green: #5B8C5A;
    --tan: #F1E0C5;
    --blue: #5089A7;
    --red: #FC675A;
    --black: #191B1C;
    --white: #F6F6F6;
} */
/* COLOR SCHEME 1 https://coolors.co/155765-57652a-ab9353-4d2c3d-191b1c-f6f6f6 */
:root {
    --blue: #155765;
    --green: #57652A;
    --tan: #AB9353;
    --purple: #4D2C3D;
    --red: #FC2316;
    --black: #191B1C;
    --white: #F6F6F6;
}
/* COLOR SCHEME 2 https://coolors.co/155765-6c7d47-ffe1a8-4d2c3d-191b1c-f6f6f6 */
/* :root {
    
    --black: #191B1C;
    --white: #F6F6F6;
} */
/* COLOR SCHEME 3 https://coolors.co/155765-6c7d47-ffe1a8-592941-191b1c-f6f6f6 */
/* :root {
    
    --black: #191B1C;
    --white: #F6F6F6;
} */

.black-back {
    background-color: var(--black) !important;
}

.black-text {
    color: var(--black) !important;
}

.blue-back {
    background-color: var(--blue) !important;
}

.blue-text {
    color: var(--blue) !important;
}

.green-back {
    background-color: var(--green) !important;
}

.green-text {
    color: var(--green) !important;
}

.purple-back {
    background-color: var(--purple) !important;
}

.purple-text {
    background-color: var(--purple) !important;
}

.red-back {
    background-color: var(--red) !important;
}

.red-text {
    color: var(--red) !important;
}

.tan-back {
    background-color: var(--tan) !important;
}

.tan-text {
    color: var(--tan) !important;
}

.white-back {
    background-color: var(--white) !important;
}

.white-text {
    color: var(--white) !important;
}

/* ------------  TAGS  ------------ */

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: border-box;
}

html, body {
    margin: 0;
}

body {
    background-color: var(--white);
}

/* ------------  ID'S  ------------ */
#header-logo {
    max-height: 90%;
    max-width: 80%;
    vertical-align: middle;
    /* change color of SVG's using the tool found at https://codepen.io/sosuke/pen/Pjoqqp */
}

/* ------------  CLASSES  ------------ */

/*  ------------  GOOGLE SIGNIN BUTTON  ------------ */
.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 10px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #ffffff61;
  border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state, 
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%;
}