/*
    Common classes and site-wide styles 

    Contents:
        HTML/Body
        Headings
        hr
        Spans
        Text misc
        Links
        Form Elements
            Text Input
            Submit Input
            Checkbox Input
            Select
            Other Buttons

        Helper CSS classes
            Position and Alignment
            Visibility
            Alerts

        Tables
        Tab Control
        Scrollbar
        UserSettings Page
        MatchReview Page
*/
/*
    Contains common less variables and mixins
    To be imported by other less files
*/
:root {
  --primary-color: #94986C;
  --primary-text-color: #4C3327;
  --background-color: rgba(191, 227, 237, 0.5);
  --accent-color: #4c7fa7;
  --accent-color-2: #8CB8C6;
}
.backgroundForBODYCASE {
  background: rgba(191, 227, 237, 0.5);
  background-image: -webkit-linear-gradient(top, white, rgba(255, 255, 255, 0) 50%);
  background-image: -moz-linear-gradient(top, white, rgba(255, 255, 255, 0) 50%);
  background-image: -ms-linear-gradient(top, white, rgba(255, 255, 255, 0) 50%);
  background-image: -o-linear-gradient(top, white, rgba(255, 255, 255, 0) 50%);
  background-image: linear-gradient(top, white, rgba(255, 255, 255, 0) 50%);
  background-repeat: repeat;
}
.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.flex-col {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
html {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  line-height: 1.5em;
  font: 13px 'Gotham', sans-serif !important;
  text-align: center;
  color: #4C3327;
  height: auto;
  background: rgba(191, 227, 237, 0.5);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Gotham', sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: #111111;
  text-transform: uppercase;
}
hr {
  display: block;
  width: 100px;
  color: black;
  border: 0;
  border-top: 10px solid black;
  margin: 1em 0;
  padding: 0;
}
span.label,
span.label-large,
span.label-med,
span.label-small,
span.label-smaller,
span.label-smallest {
  font-weight: bold;
  text-align: left;
  display: inline-block;
  vertical-align: baseline;
  padding: 0px 10px 0 0;
  margin-left: 20px;
}
label.label,
label.label-large,
label.label-med,
label.label-small,
label.label-smaller,
label.label-smallest {
  font-weight: bold;
  text-align: left;
  display: inline-block;
  vertical-align: baseline;
  padding: 0px 10px 0 0;
  margin-left: 20px;
}
form span.label,
form span.label-large,
form span.label-med,
form span.label-small,
form span.label-smaller,
form span.label-smallest,
span.data {
  padding: 2px 10px 0 0;
  height: 18px;
}
span.data {
  display: block;
}
span.text {
  margin: 30px 0px 30px 0px;
}
span.l {
  text-align: left;
}
span.r {
  text-align: right;
}
span.label-large {
  width: 175px;
}
span.label {
  width: 150px;
}
span.label-med {
  width: 125px;
}
span.label-small {
  width: 100px;
  margin-left: 10px;
}
span.label-smaller {
  width: 75px;
  margin-left: 10px;
}
span.label-smallest {
  width: 50px;
  margin-left: 10px;
}
span.width-auto {
  width: auto;
}
label.l {
  text-align: left;
}
label.r {
  text-align: right;
}
label.label-large {
  width: 175px;
}
label.label {
  width: 150px;
}
label.label-med {
  width: 125px;
}
label.label-small {
  width: 100px;
  margin-left: 10px;
}
label.label-smaller {
  width: 75px;
  margin-left: 10px;
}
label.label-smallest {
  width: 50px;
  margin-left: 10px;
}
label.width-auto {
  width: auto;
}
em {
  font-weight: normal;
  font-style: italic;
}
p {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 20px 0px;
}
p,
div.paragraph {
  max-width: 600px;
}
strong {
  font-weight: bold;
}
cite {
  font-style: italic;
  color: #333;
}
ul {
  margin: 0px;
}
li {
  line-height: 130%;
}
ol li {
  margin-bottom: 1em;
}
.textBigger {
  font-size: 1.2em;
}
.textBiggest {
  font-size: 1.5em;
}
.textSmaller {
  font-size: 0.8em;
}
img {
  margin: 0px;
  padding: 0px;
  border: 0;
  -ms-interpolation-mode: bicubic;
}
.coolHr {
  padding-bottom: 16px;
  -webkit-box-shadow: 0px 12px 12px -14px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 12px 12px -14px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 12px 12px -14px rgba(0, 0, 0, 0.3);
}
a {
  text-decoration: none;
}
a.disabled {
  pointer-events: none;
}
input[type=text],
input[type=password],
textarea {
  background-color: white;
  font-family: 'Gotham', sans-serif !important;
  font-size: 15px !important;
  color: #4C3327;
  display: inline-block;
  padding: 5px 5px;
  border: solid 1px #ccc;
  -webkit-transition: box-shadow 0.3s, border 0.3s;
  -moz-transition: box-shadow 0.3s, border 0.3s;
  -o-transition: box-shadow 0.3s, border 0.3s;
  transition: box-shadow 0.3s, border 0.3s;
}
input[type=text].inputRequired,
input[type=password].inputRequired,
textarea.inputRequired {
  border: 1px solid #a71930;
}
input[type=text].smallNumber {
  width: 40px;
  text-align: center;
}
input[type=text]:focus,
input[type=password]:focus,
textarea:focus {
  border: solid 1px #707070;
  box-shadow: 0 0 5px 1px #969696;
}
input[type=text].validationError {
  border-color: #FB1313;
  background-color: #F9DCDC;
}
/* Sleeker buttons*/
input[type=submit],
.submit-button {
  /*border: 1px solid @textPrimaryColor;*/
  color: #4C3327;
  background-color: white;
  /*border: 1px solid #4C3327;*/
  border: none;
  box-shadow: none;
  font-family: 'Gotham', sans-serif !important;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  font-size: 1em;
  padding: 5px 7px;
  min-width: 80px;
  height: 30px;
  cursor: pointer;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 0.1s;
  -moz-transition: background-color 0.1s;
  -o-transition: background-color 0.1s;
  transition: background-color 0.1s;
}
.link-button-user-search-div {
  min-width: 137px;
}
.link-button-user-search {
  /*border: 1px solid @textPrimaryColor;*/
  color: #4C3327;
  background-color: white;
  /*border: 1px solid #4C3327;*/
  border: none;
  box-shadow: none;
  font-family: 'Gotham', sans-serif !important;
  text-transform: uppercase;
  font-size: 14px;
  /*font-weight: 600;*/
  font-size: 1em;
  padding: 5px 7px;
  min-width: 137px;
  height: 30px;
  cursor: pointer;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 0.1s;
  -moz-transition: background-color 0.1s;
  -o-transition: background-color 0.1s;
  transition: background-color 0.1s;
}
.passwordResetResultDiv {
  background-color: #94986C;
  text-align: center;
  width: 190px;
  margin-left: 50%;
  /*display:none;*/
}
.passwordResetResultErrorDiv {
  background-color: #ff0023;
  text-align: center;
  width: 190px;
  margin-left: 50%;
}
.resetPasswordResult {
  padding: 5px;
  color: white;
}
input[type=submit]:disabled,
.submit-button:disabled {
  opacity: 0.5;
  cursor: default;
}
input[type=submit].cancelButton,
.cancelButton {
  background-color: #eee;
  color: #8CB8C6;
  border: 1px solid #8CB8C6;
}
input[type=submit].cancelButton:not(:disabled):hover,
.cancelButton:not(:disabled):hover {
  background-color: #bbbbbb;
}
input[type=checkbox] {
  display: inline;
  border: none;
}
select:not(.mobileException) {
  outline: none;
  margin: 0px 0px 0px 0px;
  padding: 5px 10px;
}
select {
  color: #4C3327;
  background-color: white;
  border: 1px solid #6e4a38;
}
select:disabled {
  opacity: 0.6;
}
select.validationError {
  border: 1px solid #FFD378;
}
select:focus:not(.mobileException):not(.validationError) {
  border: 1px solid green;
  -webkit-box-shadow: -2px 2px 5px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: -2px 2px 5px 0px rgba(0, 0, 0, 0.4);
  box-shadow: -2px 2px 5px 0px rgba(0, 0, 0, 0.4);
}
.simple-button,
a.simple-button,
a:visited.simple-button {
  border: 1px solid #8CB8C6;
  font-size: 0.8em;
  padding: 7px 7px;
  display: inline-block;
  color: #8CB8C6;
  background-color: white;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}
.simple-button:hover,
a.simple-button:hover {
  background-color: #e6e6e6;
}
/*****                   Class Styles                 *****/
/**********************************************************/
/**********************************************************/
.pos-rel {
  position: relative;
}
.pos-abs {
  position: absolute;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.alignLeft {
  text-align: left;
}
.alignCenter {
  text-align: center;
}
.hidden {
  display: none !important;
}
.invisible {
  opacity: 0;
}
.alert {
  background-color: #FFD378;
  color: #4C3327;
  max-width: 100%;
  margin-top: 5px;
  display: inline-block;
  padding: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.alert_text {
  color: #FFD378;
}
.alert_good {
  background-color: rgba(148, 195, 127, 0.7);
  color: black;
  max-width: 500px;
  margin-top: 5px;
  display: inline-block;
  padding: 5px;
  border-style: solid;
  border-width: thin;
  border-color: green;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.alert_big {
  background-color: #FFD378;
  color: black;
  max-width: 500px;
  margin-top: 5px;
  display: inline-block;
  font-weight: bold;
  font-size: large;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.loading {
  background-image: url('/Static/images/loading.gif');
  background-position: center center;
  background-repeat: no-repeat;
}
.mGrid {
  background-color: #fff;
  margin: 5px auto 10px auto;
  border: solid 1px #525252;
  border-collapse: collapse;
}
.mGrid td {
  padding: 10px 15px;
  border: solid 1px #c1c1c1;
}
.mGrid th {
  padding: 6px 15px;
  color: white;
  background-color: #494949;
  border: solid 1px #909090;
}
.mGrid tr:first-child {
  font-size: 1.2em;
}
.mGrid tr:first-child.smallHeader {
  font-size: 0.9em;
}
.mGrid tr:nth-child(2n+1),
.mGrid .alt {
  background: #e8e8e8;
}
tr.busy {
  opacity: 0.6;
}
td.updateSuccessTransition {
  -webkit-transition: background-color 3s;
  -moz-transition: background-color 3s;
  -o-transition: background-color 3s;
  transition: background-color 3s;
}
td.updateSuccess {
  background-color: rgba(206, 228, 196, 0.7);
}
.sas__tab_xp .ajax__tab_disabled {
  cursor: default;
  color: #A0A0A0;
}
.sas__tab_xp .ajax__tab_header {
  font-family: 'Gotham', sans-serif;
  font-size: 1.1em;
}
.sas__tab_xp .ajax__tab_header > span {
  display: inline-block;
  height: 50px;
}
.sas__tab_xp .ajax__tab_header .ajax__tab_outer {
  padding: 5px;
  height: 21px;
  border-top: solid 1px #999999;
  border-right: solid 1px #999999;
  position: relative;
  top: 19px;
  -webkit-transition: top 0.3s, height 0.3s;
  -moz-transition: top 0.3s, height 0.3s;
  -o-transition: top 0.3s, height 0.3s;
  transition: top 0.3s, height 0.3s;
}
.sas__tab_xp .ajax__tab_header span:last-child .ajax__tab_outer {
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  border-top-right-radius: 5px;
}
.sas__tab_xp .ajax__tab_header span:first-child .ajax__tab_outer {
  border-left: solid 1px #999999;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  border-top-left-radius: 5px;
}
.sas__tab_xp .ajax__tab_header .ajax__tab_tab {
  height: 13px;
  padding: 4px;
  margin: 0px;
}
.sas__tab_xp .ajax__tab_header .ajax__tab_hover .ajax__tab_outer {
  cursor: pointer;
}
.sas__tab_xp .ajax__tab_header .ajax__tab_hover .ajax__tab_inner {
  cursor: pointer;
}
.sas__tab_xp .ajax__tab_header .ajax__tab_hover .ajax__tab_tab {
  cursor: pointer;
}
.sas__tab_xp .ajax__tab_header .ajax__tab_active {
  margin-top: 1px;
}
.sas__tab_xp .ajax__tab_header .ajax__tab_active .ajax__tab_outer {
  background-color: white;
  height: 30px;
  top: 10px;
  border-left: solid 1px #999999;
  margin-left: -1px;
  padding-right: 6px;
}
.sas__tab_xp .ajax__tab_header .ajax__tab_active:first-child .ajax__tab_outer {
  background-color: white;
  height: 30px;
  top: 10px;
  border-left: solid 1px #999999;
  margin-left: 0px;
  padding-right: 6px;
}
.sas__tab_xp .ajax__tab_body {
  width: 100%;
  border: solid 1px #999999;
  padding: 8px;
  background-color: #ffffff;
  overflow-x: auto;
}
.sas__tab_xp .ajax__tab_panel {
  padding: 5px;
}
/*::-webkit-scrollbar {
    width: 10px;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(100,100,100,0.3);
}
 
::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(50,50,50,0.8); 
}*/
#AddInterestWidget {
  margin: 0 auto 20px auto;
  max-width: 400px;
}
#AddInterestWidget h1 {
  margin-bottom: 30px;
}
#AddInterestWidget #InterestListDiv {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 50px;
  padding: 0 30px;
}
#AddInterestWidget #InterestListDiv div {
  margin: 0.5em 0;
  padding: 0 20px;
}
#AddInterestWidget #InterestListDiv div i {
  margin-left: 0.5em;
  cursor: pointer;
  color: #8CB8C6;
  vertical-align: middle;
}
#AddInterestWidget #NewInterestDiv input {
  width: 100px;
  vertical-align: middle;
}
#AddInterestWidget #NewInterestDiv i {
  color: #94986C;
  margin-left: 0.5em;
  cursor: pointer;
  vertical-align: middle;
}
.cardContainer {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: stretch;
  align-items: stretch;
  max-width: 400px;
  margin: 0 auto;
}
.vote-review-card {
  background-color: #fcfcfc;
  -webkit-box-shadow: 1px 2px 5px 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 2px 5px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 2px 5px 1px rgba(0, 0, 0, 0.3);
  margin: 10px 25px;
  padding: 10px;
  text-align: left;
  font-size: 1.2em;
  overflow-y: hidden;
}
.vote-review-card > div:first-child {
  font-weight: bold;
  border-bottom: solid 1px #c7c7c7;
  padding-bottom: 5px;
}
.vote-review-card .vote-values {
  padding: 5px 15px;
}
.vote-review-card .vote-values > div:first-child {
  padding-right: 30px;
}
.vote-review-card .vote-values > div:last-child {
  text-align: right;
}
#titleImage {
  width: 45%;
  float: left;
  padding-left: 6%;
  padding-top: 5px;
  padding-bottom: 5px;
}
.paper-button-0 {
  font-family: 'Gotham', sans-serif !important;
}
.loading-button-0 {
  padding-top: 15px;
}
#input {
  font-family: 'Gotham', sans-serif !important;
}
.generic-toast-0 #messageDiv {
  padding: 20px 50px !important;
}
.paper-tab {
  color: #94986C !important;
}
#selectionBar.paper-tabs {
  border-bottom: 2px solid #94986C !important;
}
.loading-button-0 #button {
  margin-left: 0;
  margin-right: 0;
}
.loading-button-0 {
  display: inline-block;
}
.loading-button-0 {
  font-family: 'Gotham', sans-serif !important;
}
.iron-icon {
  pointer-events: none;
  display: block;
  width: 100%;
  height: 100%;
}
html:not([style-scope]):not(.style-scope) paper-button {
  background-color: white;
}
.paper-button-0[animated] {
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.paper-button-0[elevation="1"] {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
.loading-button-0 paper-button span {
  margin-right: 10px;
  margin-left: 10px;
  line-height: 24px;
}
.paper-button-0 {
  display: inline-flex;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  min-width: 5.14em;
  margin: 0 0.29em;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  outline-width: 0;
  border-radius: 3px;
  user-select: none;
  z-index: 0;
  font-family: 'Gotham', sans-serif;
  color: #4C3327;
  border-radius: 0px 0px;
  font: inherit;
  text-transform: uppercase;
  cursor: pointer;
}
.iron-icon-0 {
  display: inline-flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  position: relative;
  vertical-align: middle;
  fill: #94986C;
  stroke: none;
  width: 24px;
  height: 24px;
}
paper-ripple {
  display: block;
  position: absolute;
  border-radius: inherit;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
#background.paper-ripple,
.wave.paper-ripple {
  opacity: 0;
}
#background.paper-ripple,
#waves.paper-ripple,
.wave-container.paper-ripple,
.wave.paper-ripple {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.paper-spinner-lite-0 #spinnerContainer.paper-spinner-lite {
  width: 100%;
  height: 100%;
  direction: ltr;
}
paper-spinner-lite-0 .spinner-layer.paper-spinner-lite {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  white-space: nowrap;
  border-color: #94986C;
}
.paper-spinner-lite-0 .circle-clipper.paper-spinner-lite {
  display: inline-block;
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-color: inherit;
}
.paper-spinner-lite-0 .spinner-layer.paper-spinner-lite {
  white-space: nowrap;
}
paper-spinner-lite-0 #spinnerContainer.paper-spinner-lite {
  direction: ltr;
}
.paper-spinner-lite-0 .spinner-layer.paper-spinner-lite {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  white-space: nowrap;
  border-color: #94986C;
}
.loading-button-0 #spinner {
  width: 24px;
  height: 24px;
}
#waves.paper-ripple,
.wave.paper-ripple {
  overflow: hidden;
}
#submit-recommendation .success-finished-form {
  padding: 20px;
  background-color: rgba(148, 195, 127, 0.7);
  border-radius: 8px;
}
@media screen and (max-width: 480px) {
  #titleImage {
    width: 100%;
    float: left;
    padding: 5px 0px 5px 25px;
  }
}

/*
    CSS for classes and IDs that are specific to the public HTML
*/
/*
    Contains common less variables and mixins
    To be imported by other less files
*/
:root {
  --primary-color: #94986C;
  --primary-text-color: #4C3327;
  --background-color: rgba(191, 227, 237, 0.5);
  --accent-color: #4c7fa7;
  --accent-color-2: #8CB8C6;
}
.backgroundForBODYCASE {
  background: rgba(191, 227, 237, 0.5);
  background-image: -webkit-linear-gradient(top, white, rgba(255, 255, 255, 0) 50%);
  background-image: -moz-linear-gradient(top, white, rgba(255, 255, 255, 0) 50%);
  background-image: -ms-linear-gradient(top, white, rgba(255, 255, 255, 0) 50%);
  background-image: -o-linear-gradient(top, white, rgba(255, 255, 255, 0) 50%);
  background-image: linear-gradient(top, white, rgba(255, 255, 255, 0) 50%);
  background-repeat: repeat;
}
.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.flex-col {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
html,
body {
  margin: 0;
  padding: 0;
}
#content_case {
  background: rgba(191, 227, 237, 0.5);
  color: #4C3327;
  width: 100%;
  z-index: 100;
  margin: 0 auto;
  padding: 0;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}
#contentdiv {
  width: auto;
  text-align: left;
  padding: 0;
  margin: 0;
  z-index: 99;
  height: 100%;
  background: none;
  overflow: hidden;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
#base_logo_bar {
  background: rgba(191, 227, 237, 0.5);
  color: #4C3327;
  position: relative;
  margin: 0 auto;
  padding: 0 0 10px 0;
  -webkit-font-smoothing: antialiased;
  height: 70px;
}
#base_logo_bar img {
  position: absolute;
  height: 70px;
  margin-left: 10%;
  left: 0px;
  bottom: 3px;
}
#base_logo_bar .userName {
  font-size: 1.3em;
  font-weight: bold;
}
#main_column {
  float: left;
  padding: 0px 15px;
  margin: 10px 0px 20px 0px;
  position: relative;
  width: 890px;
  min-height: 810px;
  text-align: left;
}
.forgot {
  font-size: 15px;
  color: #4C3327;
  text-decoration: underline;
  text-align: left;
  /*margin-left: 50%;*/
}
.signInLink {
  font-size: 18px;
  color: #4C3327;
  text-decoration: underline;
  text-align: left;
}
.arrowBtnsubmit {
  margin-left: 15px;
  color: #4C3327;
}
.paper-button-0[elevation="1"] {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
.arrowBtnsubmit > .loading-button-0 #button {
  padding: 10px 30px;
}
.logo {
  width: 100%;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 50px;
}
.row {
  width: 100%;
  text-align: center;
  padding: 5px;
}
.rowCol {
  width: 100%;
  padding: 5px;
}
.col2 {
  width: 25%;
  display: inline-block;
}
.col3 {
  width: 33%;
  display: inline-block;
}
.buttonCol {
  position: absolute;
  left: 30%;
}
.loginInput {
  width: 25%;
  padding: 8px 12px !important;
  font-size: 18px !important;
  line-height: 1em;
  /*border: 1px solid #ccc;*/
}
.text {
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .loginInput {
    width: 100%;
  }
  .passlog {
    width: 36%;
  }
  .col3 {
    width: 100%;
  }
  .forgot {
    margin: 1%;
  }
  .signInLink {
    margin: 1%;
  }
  .loginBtn {
    margin: 1%;
    width: 75% !important;
    text-align: center;
    padding-right: 2%;
    /*margin-left: 20%;*/
  }
  .forgotBtn {
    margin-top: 1%;
    width: 108% !important;
    text-align: center;
  }
  .passBtn {
    text-align: left;
    width: 49% !important;
    padding-left: 0px !important;
  }
  .logBtn {
    text-align: right;
  }
  .logo {
    text-align: inherit;
  }
}
#base_menuBar {
  position: relative;
  background-color: #94986C;
  z-index: 10000;
  width: 100%;
  font-weight: 100;
}
#base_menuBar ul {
  padding: 0;
  margin: 0;
}
#base_menuBar li {
  display: inline-block;
  position: relative;
  list-style-type: none;
  width: 150px;
}
#base_menuBar ul:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
#base_menuBar li a {
  display: block;
  padding: 10px 20px;
  /*border-right:1px solid #777;*/
  color: white;
  text-decoration: none;
  font-weight: 100;
}
#base_menuBar li a:focus {
  outline: none;
  text-decoration: none;
}
#base_menuBar li:last-child a {
  border-right: none;
}
#base_menuBar a span {
  display: block;
  float: right;
  margin-left: 5px;
}
#base_menuBar ul ul {
  display: none;
  width: 100%;
  position: absolute;
  left: 0;
  background: #787b56;
  color: #4C3327;
}
#base_menuBar ul ul li {
  float: none;
}
#base_menuBar ul ul a {
  padding: 5px 10px;
  border-left: none;
  border-right: none;
  font-size: 12px;
  font-weight: 100;
}
#base_menuBar ul ul a:hover {
  background-color: #555;
}
#base_menuBar ul ul a:hover {
  background-color: rgba(85, 85, 85, 0.3);
}
#base_menuBar ul ul li.last {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
#base_menuBar ul a span {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
#base_content {
  position: relative;
  /*width: 1200px; 
    min-height: 600px;*/
  margin: 0 auto;
  padding: 20px 20px 20px 20px;
  /*background: @backgroundColor;*/
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
#base_footer {
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  color: white;
  background-color: #94986C;
  z-index: 500;
}
#base_footer table {
  margin: auto;
  font-size: 1.1em;
}
#base_footer table tr td {
  border: none;
}
#base_footer a {
  color: white;
  font-weight: normal;
  text-decoration: none;
}
.publicContent {
  /*font-size: 1.1em;*/
  text-align: left;
  padding: 20px 50px 20px 50px;
}
.paddedBox {
  padding: 10px;
}

