.text-green {
  color: #27AE60;
}
.text-dark {
  color: #34495E;
}
html {
  background: #ECF0F1;
  color: transparent;
}
body {
  background: #ffffff;
  color: #34495E;
  border: 1px solid #BDC3C7;
  width: 100%;
  max-width: 750px;
  box-sizing: border-box;
  font-family: Arial;
  font-size: 12px;
  margin: 0 auto 0 auto;
  overflow-y: auto;
}
body.show-dialog {
  overflow: hidden;
  max-height: 100vh;
  /*top: 0;
        left: 0;
        right: 0;
        bottom: 0;*/
}
body > form > header {
  background: #2980B9;
  color: #ffffff;
  height: 40px;
  line-height: 20px;
  text-transform: uppercase;
  font-size: 12px;
  display: flex;
  flex-direction: row;
}
body > form > header > .page-title {
  flex-grow: 1;
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  order: 1;
}
body > form > header > #logout-wrap {
  flex-grow: 0;
  flex-shrink: 0;
  order: 3;
}
body > form > header > #language-bar-wrap {
  flex-grow: 0;
  flex-shrink: 0;
  order: 2;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul > li {
  margin: 0;
  padding: 0;
}
#language-bar-wrap {
  cursor: pointer;
  border-left: 1px solid #3498DB;
  border-right: 1px solid #3498DB;
  width: 150px;
}
#language-bar {
  height: 20px;
  line-height: 20px;
}
#language-menu-wrap {
  position: relative;
}
#language-menu {
  display: none;
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  margin-left: -1px;
  width: 100%;
  border: 1px solid #3498DB;
  border-top: none;
  background: #2980B9;
  z-index: 999;
}
#language-menu > li {
  height: 20px;
  line-height: 20px;
  border-top: 1px solid #BDC3C7;
  padding: 5px 10px 5px 10px;
}
#language-menu > li > label {
  cursor: pointer;
}
#competition-details {
  border-bottom: 1px solid #BDC3C7;
  display: flex;
  flex-direction: column;
}
#competition-details .competition-details-inner {
  flex-grow: 1;
  flex-shrink: 1;
  overflow: hidden;
}
#competition-details .competition-logo {
  width: 204px;
  padding-top: 20px;
  flex-grow: 0;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  #competition-details {
    flex-direction: row;
  }
  #competition-details .competition-logo {
    padding-top: 0;
    padding-left: 10px;
  }
}
section {
  zoom: 1;
}
section:before,
section:after {
  content: " ";
  display: table;
}
section:after {
  clear: both;
}
section:before,
section:after {
  content: " ";
  display: table;
}
section:after {
  clear: both;
}
section > .title {
  text-transform: uppercase;
  font-weight: bold;
  color: #34495E;
  background: #ECF0F1;
  text-align: center;
  padding: 10px;
  min-height: 20px;
  line-height: 20px;
}
section > .content {
  padding: 0 10px;
}
.box {
  padding: 10px;
  color: #34495E;
  background: #ECF0F1;
}
footer {
  background: #ECF0F1;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
footer > .button {
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  footer {
    height: 30px;
    flex-direction: row;
    justify-content: center;
    padding: 10px;
  }
  footer > .button {
    margin-top: 0;
    margin-left: 10px;
  }
  footer > .button:first-child {
    margin-left: 0;
  }
}
h1 {
  font-size: 22px;
  font-weight: bold;
  color: #34495E;
  margin: 0;
  padding: 0;
}
h2 {
  font-size: 14px;
  margin: 0;
  padding: 0;
}
h3 {
  font-size: 14px;
  color: #7F8C8D;
  margin: 0;
  padding: 0;
}
h4 {
  font-weight: bold;
  color: #34495E;
  margin: 0;
  padding: 0;
}
input[type="text"],
input[type="password"],
textarea {
  padding: 4px 10px;
  border: 1px solid #BDC3C7;
  width: 100px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
select {
  height: 25px;
  line-height: 25px;
  padding: 3px 10px 5px 10px;
  border: 1px solid #BDC3C7;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
select:focus {
  outline: none;
  border: 1px solid #3498DB;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #3498DB;
}
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #BDC3C7;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #BDC3C7;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #BDC3C7;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #BDC3C7;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.button {
  color: #ffffff;
  background: #2980B9;
  padding: 5px 10px 5px 10px;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  height: 20px;
  line-height: 20px;
  display: inline-block;
  text-transform: uppercase;
  order: 2;
}
.button:hover {
  background: #3498DB;
}
.button.green {
  background: #27AE60;
  order: 0;
}
.button.green:hover {
  background: #2ECC71;
}
.button.red {
  background: #C0392B;
  order: 1;
}
.button.red:hover {
  background: #E74C3C;
}
.button:active {
  position: relative;
  top: 1px;
}
.button > i {
  font-size: 19px;
  width: 20px;
  vertical-align: top;
  margin-right: 3px;
  text-transform: none;
}
.button.small {
  height: 15px;
  line-height: 15px;
}
.button.small > i {
  font-size: 14px;
  width: 15px;
}
.button.disabled,
.button[disabled] {
  background: #BDC3C7;
  cursor: not-allowed;
}
.button.disabled:hover,
.button[disabled]:hover {
  background: #BDC3C7;
}
.button.disabled:active,
.button[disabled]:active {
  top: 0px;
}
@media only screen and (min-width: 768px) {
  .button,
  .button.green,
  .button.red {
    order: 0;
  }
}
label,
input {
  vertical-align: middle;
}
label {
  display: inline-block;
  /* display:block; and float:left; are useless */
  margin: 0;
  /* same for margin-top */
}
label > input {
  margin-left: 5px;
}
label.input-first > input {
  margin-left: 0;
}
input {
  height: auto;
}
textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
}
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  position: relative;
}
.label {
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  position: relative;
  padding-right: 5px;
}
.label:before {
  content: ':';
  float: right;
  padding-left: 2px;
}
table {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
}
table > thead > tr {
  height: 30px;
  line-height: 30px;
  font-weight: bold;
  border-bottom: 1px solid #BDC3C7;
}
table > thead > tr > td:first-child {
  padding-left: 5px;
}
table > thead > tr > td:last-child {
  padding-right: 5px;
}
table > tbody > tr {
  height: 20px;
  line-height: 20px;
}
table > tbody > tr > td:first-child {
  padding-left: 5px;
}
table > tbody > tr > td:last-child {
  padding-right: 5px;
}
table > tfoot > tr {
  height: 30px;
  line-height: 30px;
  font-weight: bold;
  border-top: 1px solid #BDC3C7;
}
table > tfoot > tr > td:first-child {
  padding-left: 5px;
}
table > tfoot > tr > td:last-child {
  padding-right: 5px;
}
table > tfoot > tr.secondary-footer-row {
  border-top: 0;
  height: 20px;
  line-height: 20px;
}
input[type="text"].input-time {
  width: 40px;
  text-align: center;
}
input[type="text"].input-number {
  width: 40px;
  text-align: center;
}
.simple-content {
  padding: 20px;
}
.simple-content > .title {
  height: 40px;
  font-size: 18px;
}
.simple-content > .simple-content-inner {
  padding: 20px;
}
.simple-content > .simple-content-inner > .header {
  display: flex;
  flex-direction: row;
  align-content: space-between;
}
.simple-content > .simple-content-inner > .header .header-col {
  flex-grow: 1;
  flex-shrink: 1;
}
.simple-content > .simple-content-inner > .header .header-col:last-child {
  flex-grow: 0;
}
.simple-content > .simple-content-inner .footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.simple-content > .simple-content-inner .footer > .button {
  margin-left: 10px;
}
.simple-content > .simple-content-inner .footer > .button:first-child {
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
  select {
    height: 28px;
    line-height: 28px;
  }
  .button {
    height: 24px;
    line-height: 24px;
  }
  .button > i {
    font-size: 23px;
    width: 24px;
  }
  .button.small {
    height: 19px;
    line-height: 19px;
  }
  .button.small > i {
    font-size: 18px;
    width: 19px;
  }
  .simple-content {
    padding: 10px;
    padding-top: 20px;
  }
  .simple-content > .title {
    font-size: 22px;
    height: 44px;
  }
  .simple-content > .simple-content-inner {
    padding: 0;
  }
  .simple-content > .simple-content-inner > .header {
    flex-wrap: wrap;
    margin-top: -20px;
    margin-right: -20px;
    max-width: calc(100% + 20px);
  }
  .simple-content > .simple-content-inner > .header .header-col {
    margin-top: 20px;
    margin-right: 20px;
    max-width: calc(100% - 20px);
  }
  .simple-content > .simple-content-inner > .header .header-col label {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .simple-content > .simple-content-inner .footer {
    flex-direction: column;
  }
  .simple-content > .simple-content-inner .footer > .button {
    margin-top: 10px;
    margin-left: 0;
  }
  .simple-content > .simple-content-inner .footer > .button:first-child {
    margin-top: 0;
  }
}
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.left {
  float: left;
}
.right {
  float: right;
}
.clear {
  clear: both;
}
.text-right {
  text-align: right;
}
.bold {
  font-weight: bold;
}
.uppercase {
  text-transform: uppercase;
}
.BFC,
.bfc {
  overflow: auto;
}
.center {
  text-align: center;
}
.top {
  vertical-align: top;
}
.middle {
  vertical-align: middle;
}
.space {
  margin: 10px;
}
.space-top {
  margin-top: 10px;
}
.space-right {
  margin-right: 10px;
}
.space-bottom {
  margin-bottom: 10px;
}
.space-left {
  margin-left: 10px;
}
.small-space {
  margin: 5px;
}
.small-space-top {
  margin-top: 5px;
}
.small-space-right {
  margin-right: 5px;
}
.small-space-bottom {
  margin-bottom: 5px;
}
.small-space-left {
  margin-left: 5px;
}
.padding-thin {
  padding: 5px;
}
.padding-medium {
  padding: 10px;
}
.padding-thick {
  padding: 20px;
}
.lineheight-normal {
  line-height: normal;
}
.clickable {
  cursor: pointer;
}
.border-box {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.hide {
  display: none;
}
.expandable {
  background: #ECF0F1;
  border-collapse: collapse;
}
.expandable > .header {
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
.expandable > .header .header-inner {
  overflow: auto;
  padding-right: 5px;
}
.expandable > .header > .details {
  height: 100%;
}
.expandable > .header > .details > div {
  padding-top: 10px;
}
.expandable > .header .title {
  text-transform: uppercase;
  margin-left: 40px;
  font-size: 13px;
  font-weight: 600;
}
.expandable > .header .spacer {
  font-size: 13px;
  font-weight: 600;
  margin: 0px 10px;
}
.expandable > .header .subtitle {
  font-size: 11px;
  font-weight: 600;
}
.expandable > .header .state-toggle {
  cursor: pointer;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 30px;
  height: 30px;
  background: url(/Themes/Base/Resources/Icons/button_expand_collapse_pack_30x30_high.png) no-repeat 0 0;
}
.expandable.expanded > .header .state-toggle {
  background-position: 0px -60px;
}
.expandable > .header:hover .state-toggle,
.expandable > .header .state-toggle.hover,
.expandable > .header .state-toggle:hover {
  background-position: 0px -30px;
}
.expandable.expanded > .header:hover .state-toggle,
.expandable.expanded > .header .state-toggle.hover,
.expandable.expanded > .header .state-toggle:hover {
  background-position: 0px -60px;
}
.expandable > .header .state-toggle > div.arrow,
.expandable > .header .state-toggle > div.arrow {
  margin: 10px;
  height: 10px;
  width: 10px;
  background: url(/Themes/Base/Resources/Icons/expand_collapse_arrows_10x10_high.png) no-repeat 0 0;
}
.expandable.expanded > .header .state-toggle > div.arrow {
  background-position: 0px -10px;
}
.expandable > .content {
  border-top: 1px solid #BDC3C7;
  padding: 10px;
  display: none;
}
.expandable.expanded > .content {
  display: block;
}
.expandable > .content.fullsize {
  padding: 0;
  border: none;
}
/* accordion fieldset look-a-like */
.expandable.light {
  background: none;
}
.expandable.light > .header {
  border: none;
  border-bottom: 1px solid #ebebeb;
  padding: 0px 10px 3px 0px;
  height: auto;
}
.expandable.light > .header > .details > div {
  padding-top: 0px;
}
.expandable.light > .header .title {
  margin-left: 34px;
}
.expandable.light > .header .spacer {
  display: none;
}
.expandable.light > .header .subtitle {
  display: none;
}
.expandable.light > .header .state-toggle {
  zoom: 0.8;
  top: 0px;
}
.expandable.light > .content {
  background: #f7f7f7;
  border: none;
}
@media only screen and (max-width: 767px) {
  .expandable > .header .title {
    font-size: 17px;
  }
}
/*!
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('/Themes/Base/Resources/Fonts/fontawesome-webfont.eot?v=4.0.3');
  src: url('/Themes/Base/Resources/Fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'), url('/Themes/Base/Resources/Fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'), url('/Themes/Base/Resources/Fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('/Themes/Base/Resources/Fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-asc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-desc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-reply-all:before {
  content: "\f122";
}
.fa-mail-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.default {
  margin: 40px 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .default {
    padding: 20px;
  }
}
.select-union-title {
  margin-top: 20px;
  text-align: center;
}
.select-union {
  margin: 20px 0 40px 0;
}
@media only screen and (min-width: 768px) {
  .select-union {
    margin-left: 140px;
    margin-right: 90px;
  }
}
.login {
  margin: 20px 0;
}
.login,
.login .login-row {
  display: flex;
  flex-direction: column;
}
.login.d-block {
  display: block;
}
.login .login-controls {
  flex-grow: 0;
  flex-shrink: 0;
}
.login .login-controls.multiple #txtGolfID1 {
  width: 70px;
}
.login .login-controls.multiple #txtGolfID2 {
  width: 40px;
}
.login .login-controls.multiple #txtPassword {
  width: 156px;
}
.login .separator {
  border: 0 solid #ECF0F1;
  border-top-width: 1px;
  margin: 20px 0;
}
.login .login-forgot-password {
  flex-grow: 1;
  flex-shrink: 1;
}
@media only screen and (min-width: 768px) {
  .login {
    margin: 40px 0;
    margin-left: 120px;
    margin-right: 110px;
  }
  .login,
  .login .login-row {
    flex-direction: row;
  }
  .login .login-controls {
    width: 202px;
  }
  .login .login-controls.multiple #txtGolfID1 {
    width: 51px;
  }
  .login .login-controls.multiple #txtGolfID2 {
    width: 22px;
  }
  .login .login-controls.multiple #txtPassword {
    width: 115px;
  }
  .login .separator {
    border-top-width: 0;
    border-right-width: 1px;
    margin: 0 38px;
  }
  .login .login-row + .separator {
    display: none;
  }
}
.login-other {
  margin: 20px 0;
}
.login-other > .login-other-controls {
  display: flex;
  flex-direction: column;
}
.login-other > .login-other-controls .login-other-column {
  margin-top: 20px;
}
.login-other > .login-other-controls .login-other-column:first-child {
  margin-top: 0;
}
.login-other > .login-other-controls .login-other-column .login-other-control {
  display: flex;
  flex-direction: row;
}
.login-other > .login-other-controls .login-other-column .login-other-control > * {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
}
.login-other > .login-other-controls .login-other-column .login-other-control .asterisk {
  flex-grow: 0;
  flex-shrink: 0;
  align-self: center;
}
.login-other > .login-other-controls .login-other-column .login-other-control select {
  min-width: 0;
}
.login-other > .login-other-controls .login-other-column .login-other-control.birth-date {
  flex-wrap: wrap;
  margin: 0 -2.5px;
}
.login-other > .login-other-controls .login-other-column .login-other-control.birth-date .title {
  width: 100%;
  margin-bottom: 10px;
}
.login-other > .login-other-controls .login-other-column .login-other-control.birth-date > * {
  margin: 0 2.5px;
}
@media only screen and (min-width: 768px) {
  .login-other {
    margin: 30px 20px;
  }
  .login-other > .login-other-controls {
    flex-direction: row;
    justify-content: space-between;
  }
  .login-other > .login-other-controls .login-other-column {
    margin-top: 0;
    padding: 20px;
  }
  .login-other > .login-other-controls .login-other-column:first-child {
    margin-left: 15px;
  }
  .login-other > .login-other-controls .login-other-column:last-child {
    margin-right: 15px;
  }
  .login-other > .login-other-controls .login-other-column input {
    width: 254px;
  }
  .login-other > .login-other-controls .login-other-column select.login-other-select-full-width {
    width: 276px;
  }
  .login-other > .login-other-controls .login-other-column #ddlBirthDate {
    width: 65px;
  }
  .login-other > .login-other-controls .login-other-column #ddlBirthMonth {
    width: 120px;
  }
  .login-other > .login-other-controls .login-other-column #ddlBirthYear {
    width: 75px;
  }
}
.secure-default {
  padding: 20px 0;
  margin: 20px 0;
}
@media only screen and (min-width: 768px) {
  .secure-default {
    padding: 20px;
    margin: 10px;
  }
  .secure-default > h4 {
    padding: 20px;
    margin: 10px;
  }
}
.restricted {
  padding: 20px 0;
}
@media only screen and (min-width: 768px) {
  .restricted {
    padding: 20px;
  }
}
.method {
  padding: 30px 20px;
}
@media only screen and (min-width: 768px) {
  .method > ul {
    margin-left: 300px;
  }
}
.status .amount-row {
  display: flex;
  flex-direction: row;
  padding: 5px;
}
.status .amount-row .description {
  flex-grow: 1;
  flex-shrink: 1;
  text-align: left;
  padding-right: 5px;
}
.status .amount-row .amount {
  flex-grow: 0;
  flex-shrink: 0;
  align-self: center;
}
.status .entryStatusHolder {
  display: flex;
  justify-content: center;
}
.status .fa-exclamation {
  display: none;
  font-size: 24px;
  color: #ff8800;
}
.status .entryStatusText {
  margin-left: 10px;
}
.status .isReserve {
  border: 2px solid #ff8800;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.status .isReserve .fa-exclamation {
  display: block;
}
@media only screen and (min-width: 768px) {
  .status {
    margin: 0px 65px;
  }
}
#confirmDeleteAsTeam .button-bar,
#confirmDeleteAsGroup .button-bar,
#groupDeletedWarning .button-bar {
  display: flex;
  flex-direction: column;
}
#confirmDeleteAsTeam .button-bar .button,
#confirmDeleteAsGroup .button-bar .button,
#groupDeletedWarning .button-bar .button {
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  #confirmDeleteAsTeam .button-bar,
  #confirmDeleteAsGroup .button-bar,
  #groupDeletedWarning .button-bar {
    flex-direction: row-reverse;
  }
  #confirmDeleteAsTeam .button-bar .button,
  #confirmDeleteAsGroup .button-bar .button,
  #groupDeletedWarning .button-bar .button {
    margin-left: 10px;
  }
}
.player-details {
  margin: 20px 0 30px 0;
}
.player-details .pd-control {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.player-details .pd-control > label {
  margin-bottom: 5px;
}
.player-details .pd-control .pd-control-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.player-details .pd-control .pd-control-inner > * {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
}
.player-details .pd-control .pd-control-inner.birth-date > .birth-date-selects {
  display: flex;
  flex-direction: row;
  margin: 0 -2.5px;
}
.player-details .pd-control .pd-control-inner.birth-date > .birth-date-selects > * {
  margin: 0 2.5px;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
}
.player-details .pd-control .pd-control-inner.birth-date.allow-use-default {
  flex-wrap: wrap;
}
.player-details .pd-control .pd-control-inner.birth-date.allow-use-default .birth-date-use-default-wrapper {
  width: 100%;
  margin-top: 5px;
}
.player-details .pd-control .pd-control-inner.select-membership {
  flex-direction: column;
  align-items: flex-start;
}
.player-details .pd-control .pd-control-inner.select-membership > div {
  display: flex;
  flex-direction: row;
  margin-bottom: 5px;
}
.player-details .pd-control .pd-control-inner.select-membership > div:last-child {
  margin-bottom: 0;
}
.player-details .pd-control .pd-control-inner.select-membership > div > input {
  flex-grow: 0;
  flex-shrink: 0;
}
.player-details .pd-control .pd-control-inner.select-membership > div label {
  flex-grow: 1;
  flex-shrink: 1;
}
.player-details .pd-control .pd-control-inner .asterisk-holder {
  width: 10px;
  height: 16px;
  flex-grow: 0;
  flex-shrink: 0;
  align-self: center;
}
.player-details .pd-control .pd-control-inner .asterisk-holder .asterisk {
  float: right;
}
@media only screen and (min-width: 768px) {
  .player-details {
    margin: 30px 20px;
  }
  .player-details .pd-control {
    flex-direction: row;
    margin-bottom: 10px;
  }
  .player-details .pd-control > label {
    width: 100px;
    margin-top: 4px;
    margin-right: 5px;
    text-align: right;
  }
  .player-details .pd-control input[type="text"] {
    width: 200px;
  }
  .player-details .pd-control select {
    width: 222px;
  }
  .player-details .pd-control .select-membership {
    margin-top: 4px;
    margin-bottom: 20px;
  }
  .player-details .pd-control .pd-control-inner.birth-date.allow-use-default {
    flex-wrap: nowrap;
  }
  .player-details .pd-control .pd-control-inner.birth-date.allow-use-default .birth-date-use-default-wrapper {
    width: auto;
    margin-top: 0;
    margin-left: 10px;
  }
  .player-details .pd-control #ddlBirthDate {
    width: 65px;
  }
  .player-details .pd-control #ddlBirthMonth {
    width: 120px;
  }
  .player-details .pd-control #ddlBirthYear {
    width: 80px;
  }
}
.player-details-validation {
  color: #e74c4c;
  margin: 30px 0 10px 20px;
}
@media only screen and (min-width: 768px) {
  .player-details-validation {
    margin-left: 60px;
    margin-top: -10px;
    margin-bottom: 10px;
  }
}
.players,
.club-signup {
  margin: 20px 0;
}
.players .team-name,
.club-signup .team-name {
  margin-bottom: 30px;
}
.players .team-name .label,
.club-signup .team-name .label {
  max-width: 100%;
  float: left;
}
.players .flex-table .row,
.club-signup .flex-table .row {
  display: flex;
  margin-bottom: 5px;
}
.players .flex-table .row:last-child,
.club-signup .flex-table .row:last-child {
  margin-bottom: 0;
}
.players .flex-table .row.birth-date,
.club-signup .flex-table .row.birth-date {
  margin-bottom: 10px;
}
.players .flex-table .row .col,
.club-signup .flex-table .row .col {
  flex-grow: 1;
  flex-shrink: 1;
}
.players .flex-table .row .col.description,
.club-signup .flex-table .row .col.description {
  width: 100px;
  padding-right: 5px;
  text-align: right;
  flex-grow: 0;
  flex-shrink: 0;
  overflow: hidden;
  white-space: normal;
  word-break: break-all;
  word-break: break-word;
}
.players .flex-table .row .col.value,
.club-signup .flex-table .row .col.value {
  overflow: hidden;
  white-space: normal;
  word-break: break-all;
  word-break: break-word;
}
@media only screen and (min-width: 768px) {
  .players,
  .club-signup {
    margin: 50px 20px;
  }
  .players.show-team-name,
  .club-signup.show-team-name {
    margin-top: 40px;
  }
  .players .team-name,
  .club-signup .team-name {
    margin-bottom: 30px;
  }
  .players .flex-table .row,
  .club-signup .flex-table .row {
    margin-bottom: 0;
  }
}
.players-add-member #memberIdWrapper {
  display: flex;
  flex-direction: column;
}
.players-add-member #memberIdWrapper .input-wrapper input[type="text"] {
  width: 100%;
  box-sizing: border-box;
}
.players-add-member #memberIdWrapper .input-wrapper #secondary-id {
  display: none;
}
.players-add-member #memberIdWrapper .input-wrapper.show-secondary-id #secondary-id {
  display: block;
}
.players-add-member #memberIdWrapper .input-wrapper.show-secondary-id input[type="text"] {
  box-sizing: content-box;
}
.players-add-member #memberIdWrapper .input-wrapper.show-secondary-id #txtPrimaryId {
  width: 100px;
}
.players-add-member #memberIdWrapper .input-wrapper.show-secondary-id #txtSecondaryId {
  width: 30px;
}
.players-add-member #memberIdWrapper .input-wrapper.member-search-last-name {
  display: none;
  margin-top: 10px;
}
.players-add-member #memberIdWrapper.show-lastname .input-wrapper.member-search-last-name {
  display: block;
}
.players-add-member #memberIdWrapper #btnSearch {
  margin-top: 15px;
}
.players-add-member #manualTeamMemberWrapper {
  display: flex;
  flex-direction: column;
}
.players-add-member #manualTeamMemberWrapper .manual-col {
  margin-top: 20px;
}
.players-add-member #manualTeamMemberWrapper .manual-col:first-child {
  margin-top: 0;
}
.players-add-member #manualTeamMemberWrapper .manual-col .manual-control {
  display: flex;
  flex-direction: row;
}
.players-add-member #manualTeamMemberWrapper .manual-col .manual-control > * {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
}
.players-add-member #manualTeamMemberWrapper .manual-col .manual-control .asterisk {
  flex-grow: 0;
  flex-shrink: 0;
  align-self: center;
}
.players-add-member #manualTeamMemberWrapper .manual-col .manual-control.birth-date {
  margin: 0 -2.5px;
}
.players-add-member #manualTeamMemberWrapper .manual-col .manual-control.birth-date > * {
  margin: 0 2.5px;
}
.players-add-member #manualTeamMemberWrapper .asterisk-explanation {
  margin-top: 10px;
}
.players-add-member #result-bar #found-bar,
.club-signup ~ #addMember #found-block {
  display: flex;
  flex-direction: column;
  line-height: 29px;
}
.players-add-member #result-bar #found-bar .found-result {
  display: flex;
  flex-direction: row;
}
.players-add-member #result-bar #found-bar .found-result > .found-text {
  flex-grow: 0;
  flex-shrink: 0;
}
.players-add-member #result-bar #found-bar .found-result > .found-name {
  flex-grow: 1;
  flex-shrink: 1;
}
.players-add-member #result-bar #found-bar #btnAdd {
  width: auto;
  margin-top: 10px;
}
.players-add-member #result-bar #error-bar {
  line-height: 24px;
  margin-top: 10px;
}
.players-add-member .button-bar {
  display: flex;
  flex-direction: row;
}
.players-add-member .button-bar > * {
  flex-grow: 1;
  flex-shrink: 1;
}
@media only screen and (min-width: 768px) {
  .players-add-member .fieldset {
    width: 500px;
  }
  .players-add-member #memberIdWrapper {
    flex-direction: row;
  }
  .players-add-member #memberIdWrapper .input-wrapper {
    flex-grow: 1;
    flex-shrink: 1;
  }
  .players-add-member #memberIdWrapper .input-wrapper input[type="text"] {
    width: 100px;
    box-sizing: content-box;
  }
  .players-add-member #memberIdWrapper .input-wrapper.show-secondary-id #txtSecondaryId {
    width: 22px;
  }
  .players-add-member #memberIdWrapper .input-wrapper.member-search-last-name {
    margin-top: 0;
    margin-left: 10px;
  }
  .players-add-member #memberIdWrapper .input-wrapper.member-search-last-name input[type="text"] {
    width: 100%;
    box-sizing: border-box;
  }
  .players-add-member #memberIdWrapper.show-lastname .input-wrapper:first-child {
    flex-grow: 0;
  }
  .players-add-member #memberIdWrapper #btnSearch {
    width: 75px;
    margin-left: 10px;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .players-add-member #manualTeamMemberWrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .players-add-member #manualTeamMemberWrapper .manual-col {
    padding: 10px;
    margin-top: 0;
  }
  .players-add-member #manualTeamMemberWrapper .manual-col .manual-control input {
    width: 239px;
  }
  .players-add-member #manualTeamMemberWrapper .manual-col .manual-control select {
    width: 261px;
  }
  .players-add-member #manualTeamMemberWrapper .manual-col .manual-control #ddlBirthDate {
    width: 60px;
  }
  .players-add-member #manualTeamMemberWrapper .manual-col .manual-control #ddlBirthMonth {
    width: 110px;
  }
  .players-add-member #manualTeamMemberWrapper .manual-col .manual-control #ddlBirthYear {
    width: 75px;
  }
  .players-add-member #manualTeamMemberWrapper .manual-col.col-right .manual-control input {
    width: 147px;
  }
  .players-add-member #manualTeamMemberWrapper .manual-col.col-right .manual-control select {
    width: 169px;
  }
  .players-add-member #manualTeamMemberWrapper .asterisk-explanation {
    width: 100%;
    flex-grow: 1;
    flex-shrink: 0;
    margin-top: 0;
  }
  .players-add-member #result-bar #found-bar,
  .club-signup ~ #addMember #found-block {
    flex-direction: row;
    line-height: 25px;
  }
  .players-add-member #result-bar #found-bar .found-result {
    flex-grow: 1;
    flex-shrink: 1;
    padding-right: 10px;
  }
  .players-add-member #result-bar #found-bar #btnAdd {
    width: 75px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-top: 0;
  }
  .players-add-member #result-bar #error-bar {
    line-height: 20px;
    margin-top: 5px;
  }
  .players-add-member .button-bar {
    display: block;
  }
}
.au-players {
  margin: 10px 0;
}
.au-players .players-controls .player + .player {
  margin-top: 20px;
}
.au-players .players-controls .player {
  position: relative;
  display: flex;
  flex-direction: column;
}
.au-players .players-controls .player > div {
  flex-grow: 0;
  flex-shrink: 0;
}
.au-players .players-controls .player .player-box {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}
.au-players .players-controls .player .player-box > div {
  flex-grow: 0;
  flex-shrink: 0;
  padding-top: 10px;
}
.au-players .players-controls .player .player-box > div:first-child {
  padding-top: 0;
}
.au-players .players-controls .player .player-box > div input {
  width: 100%;
  box-sizing: border-box;
}
.au-players .players-controls .player .email {
  margin-top: 5px;
}
.au-players .players-controls .player .email input {
  width: 100%;
  box-sizing: border-box;
}
.au-players .players-controls .player .error {
  display: none;
  margin-top: 5px;
}
.au-players .players-controls .team.error,
.au-players .players-controls .email-error {
  margin-top: 20px;
  color: #E74C3C;
}
@media only screen and (min-width: 768px) {
  .au-players {
    margin: 30px 20px 50px 20px;
  }
  .au-players .players-controls .player + .player {
    margin-top: 10px;
  }
  .au-players .players-controls .player {
    flex-direction: row;
  }
  .au-players .players-controls .player .player-box {
    flex-direction: row;
    padding-bottom: 20px;
  }
  .au-players .players-controls .player .player-box > div {
    padding-top: 0;
  }
  .au-players .players-controls .player .player-box > div input {
    box-sizing: content-box;
  }
  .au-players .players-controls .player .player-box .golfid input {
    width: 100px;
  }
  .au-players .players-controls .player .player-box .lastname {
    margin: 0 10px;
  }
  .au-players .players-controls .player .player-box .lastname input {
    width: 140px;
  }
  .au-players .players-controls .player .player-box .buttonwrap {
    padding-top: 13px;
  }
  .au-players .players-controls .player .player-box .buttonwrap .button {
    width: 80px;
  }
  .au-players .players-controls .player .email {
    margin-top: 0;
    margin-left: 20px;
    align-self: flex-start;
  }
  .au-players .players-controls .player .email input {
    width: 200px;
    box-sizing: content-box;
  }
  .au-players .players-controls .team.error,
  .au-players .players-controls .email-error {
    margin-top: 10px;
    width: 404px;
  }
}
.requests {
  margin: 20px 0;
}
.requests .exemptionCategories_wrapper {
  margin-left: 0px;
  margin-top: 5px;
}
.requests .exemptionCategories_wrapper > ul > li > label {
  max-width: 100%;
}
.requests .exemptionCategories_wrapper > ul > li > label > div {
  max-width: calc(100% - 23px);
  /* 100% minus the width of the checkbox */
}
.requests .exemptionCategories_wrapper > ul > li > label > div > .tee-indicator-name {
  max-width: 100%;
  height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
}
.requests.show-fee-info-label #fee-info-label {
  display: block;
}
.requests #fee-info-label {
  display: none;
}
.requests .list-table .list-table-sub ul li {
  height: auto;
  line-height: 24px;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) {
  display: flex;
  flex-direction: column;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) > div.label {
  align-self: flex-start;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) > div input[type="text"],
.requests .list-table .list-table-sub ul li:not(.no-flex) > div select,
.requests .list-table .list-table-sub ul li:not(.no-flex) > div textarea {
  width: 100%;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) .ddlStartTime {
  margin: 0;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) .question-title .asterisk {
  margin-left: 5px;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner {
  display: flex;
  flex-direction: row;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner > * {
  flex-grow: 1;
  flex-shrink: 1;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner > .asterisk {
  display: none;
  flex-grow: 0;
  flex-shrink: 0;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap {
  width: 100%;
  vertical-align: top;
  zoom: 1;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap.date-control {
  display: flex;
  flex-direction: row;
  margin: 0 -2.5px;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap.date-control > select {
  width: auto;
  min-width: 0;
  flex-grow: 1;
  flex-shrink: 1;
  margin: 0 2.5px;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap .txtFree {
  height: 70px;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap .input-number,
.requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap .input-time {
  width: 58px;
  text-align: center;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap .file-upload-wrapper {
  display: flex;
  flex-direction: row;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap .file-upload-wrapper input {
  flex-grow: 1;
  flex-shrink: 1;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap .file-upload-wrapper .button {
  margin-left: 10px;
  flex-grow: 0;
  flex-shrink: 0;
}
.requests .list-table .list-table-sub ul li:not(.no-flex) textarea {
  line-height: 20px;
}
.requests .list-table .list-table-sub ul li.select-class ul > li {
  height: 24px;
  padding-top: 0;
}
.requests .list-table .list-table-sub ul li.exemption-categories {
  margin-top: 10px;
}
.requests .list-table .list-table-sub ul li.exemption-categories .exemptionCategories_wrapper > ul > li {
  height: auto;
  padding-top: 0;
}
.requests .list-table .list-table-sub ul li.exemption-categories .exemptionCategories_wrapper > ul > li label {
  margin-left: 23px;
}
.requests .list-table .list-table-sub ul li.exemption-categories .exemptionCategories_wrapper > ul > li label > input {
  margin-left: -18px;
}
.requests .list-table .list-table-sub ul li .chkGolfCart,
.requests .list-table .list-table-sub ul li .chkCaddie {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .requests {
    margin: 50px 20px;
  }
  .requests.show-fee-info-label {
    margin-top: 30px;
  }
  .requests #fee-info-label {
    margin-bottom: 30px;
  }
  .requests .list-table {
    padding: 10px;
  }
  .requests .list-table .list-table-sub ul li {
    height: 20px;
    line-height: 20px;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex) {
    flex-direction: row;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex) > div {
    flex-grow: 0;
    flex-shrink: 0;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex) > div.dotted-spacer {
    flex-grow: 1;
    flex-shrink: 1;
    margin-right: 10px;
    margin-bottom: 5px;
    border-bottom: 1px dotted;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex) > div.label {
    flex-grow: 0;
    flex-shrink: 0;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex).comment,
  .requests .list-table .list-table-sub ul li:not(.no-flex).question,
  .requests .list-table .list-table-sub ul li:not(.no-flex).tee-wish {
    height: auto;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex).comment > div {
    flex-grow: 1;
    flex-shrink: 1;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex).comment > div:first-child {
    flex-grow: 0;
    flex-shrink: 0;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex) .question-title {
    margin-right: 10px;
    align-self: flex-end;
    flex-shrink: 1;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex) .question-title .asterisk {
    display: none;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner > .asterisk {
    display: block;
    margin-right: 3px;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap {
    max-width: 310px;
    display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap.date-control {
    display: block;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap.date-control .ddlDate {
    width: 65px;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap.date-control .ddlMonth {
    width: 120px;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap.date-control .ddlYear {
    width: 80px;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap .txtFree {
    width: 259px;
    height: 58px;
    line-height: 16px;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex) .question-inner .question_wrap .ddlList {
    width: 281px;
  }
  .requests .list-table .list-table-sub ul li:not(.no-flex) textarea {
    line-height: inherit;
  }
  .requests .list-table .list-table-sub ul li.select-class {
    height: auto;
  }
  .requests .list-table .list-table-sub ul li.select-class ul > li {
    height: 20px;
  }
  .requests .list-table .list-table-sub ul li.exemption-categories {
    height: auto;
    margin-top: 0;
  }
  .requests .error-box {
    margin-top: 20px;
  }
}
.summary {
  margin-top: 20px;
}
.summary.show-fee-info-label #fee-info-label {
  display: block;
}
.summary #fee-info-label {
  display: none;
}
.summary .list-table .row {
  display: flex;
  flex-direction: row;
  height: auto;
  min-height: 15px;
  line-height: 19px;
  padding-left: 10px;
  padding-right: 10px;
}
.summary .list-table .row > *:first-child {
  flex-grow: 1;
  flex-shrink: 1;
  word-break: break-all;
  word-break: break-word;
}
.summary .list-table .row > *:last-child {
  flex-grow: 0;
  flex-shrink: 0;
  align-self: center;
  padding-left: 10px;
}
@media only screen and (min-width: 768px) {
  .summary {
    margin: 60px 30px 10px 30px;
  }
  .summary.show-fee-info-label {
    margin-top: 30px;
  }
  .summary #fee-info-label {
    margin-bottom: 40px;
  }
  .summary .list-table .row {
    line-height: inherit;
  }
}
.summary-info-label {
  padding: 20px 10px;
}
@media only screen and (min-width: 768px) {
  .summary-info-label {
    padding: 30px 20px;
  }
}
.summary-reservelist-warning-label,
.summary-contact-details-wrapper {
  padding: 20px 10px 0 10px;
}
@media only screen and (min-width: 768px) {
  .summary-reservelist-warning-label,
  .summary-contact-details-wrapper {
    padding: 30px 20px 0 20px;
  }
}
.summary-contact-details-wrapper > div {
  margin-top: 5px;
}
.payment .payment-details tr td.description {
  width: 75%;
}
.payment .payment-details tr td.vat {
  width: 66px;
  text-align: right;
}
.payment .payment-details tr td.amount {
  width: 95px;
  text-align: right;
}
.payment.payment-error .title {
  display: none;
}
@media only screen and (min-width: 768px) {
  .payment.payment-error .title {
    display: block;
  }
}
.practice-rounds-default {
  text-align: center;
  margin: 20px 0;
}
.practice-rounds-default ul > li > label {
  display: flex;
}
.practice-rounds-default ul > li > label > input {
  margin-right: 5px;
  align-self: center;
}
@media only screen and (min-width: 768px) {
  .practice-rounds-default {
    margin: 40px 0;
  }
}
.practice-rounds-schedule-details {
  margin: 20px 0;
}
@media only screen and (min-width: 768px) {
  .practice-rounds-schedule-details {
    margin: 30px 30px 0 30px;
  }
}
.practice-rounds-schedule-matches {
  text-align: center;
  margin: 20px 0;
  max-height: 390px;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
.practice-rounds-schedule-matches > ul {
  text-align: left;
  display: inline-block;
  width: 100%;
}
.practice-rounds-schedule-matches > ul > li {
  width: calc(100% - 25px);
  line-height: 20px;
  min-height: 20px;
  padding: 10px 10px 10px 10px;
  background: #ecf0f1;
  text-transform: uppercase;
}
.practice-rounds-schedule-matches > ul > li + li {
  margin-top: 10px;
}
.practice-rounds-schedule-matches label > span {
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  .practice-rounds-schedule-matches {
    margin: 20px 20px 40px 20px;
  }
}
.practice-rounds-playing-partners {
  margin: 20px 0;
}
.practice-rounds-playing-partners .partner-wrap .player-row {
  display: flex;
  flex-direction: row;
  min-height: 20px;
  line-height: 20px;
  padding: 0;
}
.practice-rounds-playing-partners .partner-wrap .player-row .info {
  flex-grow: 1;
  flex-shrink: 1;
  padding: 5px 10px;
  align-self: center;
}
.practice-rounds-playing-partners .partner-wrap .player-row .player-button {
  flex-grow: 0;
  flex-shrink: 0;
  align-self: center;
  width: 40px;
  height: 40px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-left-width: 1px;
  border-left-style: solid;
}
.practice-rounds-playing-partners .partner-wrap .player-row .player-button.add-button {
  background-color: #2980B9;
  background-image: url(/Themes/Base/Resources/Icons/Add.png);
  border-left-color: #3498DB;
}
.practice-rounds-playing-partners .partner-wrap .player-row .player-button.remove-button {
  background-color: #C0392B;
  background-image: url(/Themes/Base/Resources/Icons/Bin.png);
  border-left-color: #C0392B;
}
@media only screen and (min-width: 768px) {
  .practice-rounds-playing-partners {
    margin: 20px 10px;
  }
}
.practice-rounds-confirmed-details {
  margin-top: 20px;
}
.practice-rounds-confirmed-explanation {
  margin: 20px 0;
}
@media only screen and (min-width: 768px) {
  .practice-rounds-confirmed-explanation {
    margin-bottom: 40px;
  }
}
.select-tee-time-header {
  padding-top: 15px;
}
.stt {
  margin: 20px 0;
  max-height: 370px;
  overflow-y: auto;
  overflow-x: hidden;
}
.stt > ul {
  display: inline-block;
  text-align: left;
  width: 100%;
}
.stt > ul > li {
  width: calc(100% - 25px);
  line-height: 20px;
  min-height: 20px;
  padding: 10px 10px 10px 10px;
  background: #ecf0f1;
  text-transform: uppercase;
}
.stt > ul > li + li {
  margin-top: 10px;
}
.stt > .date-indicator {
  font-weight: bold;
  margin-left: 10px;
  margin-bottom: 5px;
}
.stt > .date-indicator.margin-top {
  margin-top: 20px;
}
.stt .stt-row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.stt .button-wrapper {
  position: relative;
  flex-shrink: 0;
}
.stt .button-wrapper.show-spinner .button,
.stt .button-wrapper.show-check .button {
  visibility: hidden;
}
.stt .button-wrapper .spinner-wrapper,
.stt .button-wrapper .check-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.stt .button-wrapper .check-wrapper i {
  font-size: 20px;
  color: #27AE60;
}
.stt .button-wrapper .check-wrapper.disabled i {
  color: #C0392B;
}
.stt .start-time {
  align-self: center;
  margin: 0 10px;
}
.stt .hole-number {
  align-self: center;
  margin: 0 0 0 10px;
}
.stt .players,
.stt .club-signup {
  width: 100%;
  margin: 0;
  margin-top: 10px;
}
.stt .players .player,
.stt .club-signup .player {
  line-height: 30px;
  display: flex;
}
.stt .players .player .player-name,
.stt .club-signup .player .player-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
}
.stt .players .player .player-name i,
.stt .club-signup .player .player-name i {
  margin-left: 5px;
}
.stt .players .player .player-search,
.stt .club-signup .player .player-search {
  flex-grow: 1;
  display: flex;
  margin: 5px 0;
}
.stt .players .player .player-search select,
.stt .club-signup .player .player-search select {
  width: 80px;
}
.stt .players .player .player-search input,
.stt .club-signup .player .player-search input {
  width: 50px;
  margin-left: 10px;
  flex-grow: 1;
  flex-shrink: 1;
}
.stt .players .player .button,
.stt .club-signup .player .button {
  height: 17px;
  line-height: 17px;
  margin-left: 10px;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  .stt {
    margin: 15px 20px 13px 20px;
  }
  .stt .stt-row {
    flex-wrap: nowrap;
  }
  .stt .button-wrapper .spinner-wrapper,
  .stt .button-wrapper .check-wrapper {
    bottom: 0;
  }
  .stt .start-time,
  .stt .hole-number {
    align-self: flex-start;
    line-height: 30px;
  }
  .stt .players,
  .stt .club-signup {
    width: auto;
    margin-top: 0px;
    min-width: 1px;
    flex-shrink: 1;
  }
  .stt .players .player .player-name,
  .stt .club-signup .player .player-name {
    flex: 1;
  }
  .stt .players .player .player-search,
  .stt .club-signup .player .player-search {
    margin: 2px 0;
  }
  .stt .players .player .player-search input,
  .stt .club-signup .player .player-search input {
    width: 100px;
  }
}
.stt.new-registration {
  max-height: 390px;
}
.dialog.member-search .member-id-wrapper,
.dialog.member-search .reference-code-wrapper {
  display: flex;
  flex-direction: column;
}
.dialog.member-search .member-id-wrapper .input-wrapper input[type="text"],
.dialog.member-search .reference-code-wrapper .input-wrapper input[type="text"] {
  width: 100%;
  box-sizing: border-box;
}
.dialog.member-search .member-id-wrapper .member_search_button_search,
.dialog.member-search .reference-code-wrapper .member_search_button_search,
.dialog.member-search .member-id-wrapper .reference_code_button_search,
.dialog.member-search .reference-code-wrapper .reference_code_button_search {
  margin-top: 15px;
}
.dialog.member-search .member-id-wrapper .input-wrapper .multiple input[type="text"] {
  box-sizing: content-box;
}
.dialog.member-search .member-id-wrapper .input-wrapper .multiple input[type="text"]:first-child {
  width: 60px;
}
.dialog.member-search .member-id-wrapper .input-wrapper .multiple input[type="text"]:last-child {
  width: 30px;
}
.dialog.member-search .member_search_result {
  display: none;
}
.dialog.member-search .member_search_result.visible {
  display: flex;
  flex-direction: column;
}
.dialog.member-search .member_search_result .member_search_found_wrap > .member_search_button_save {
  display: none;
}
.dialog.member-search .member_search_result > .member_search_button_save {
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .dialog.member-search .fieldset {
    width: 500px;
  }
  .dialog.member-search .member-id-wrapper,
  .dialog.member-search .reference-code-wrapper {
    flex-direction: row;
  }
  .dialog.member-search .member-id-wrapper .input-wrapper,
  .dialog.member-search .reference-code-wrapper .input-wrapper {
    flex-grow: 1;
    flex-shrink: 1;
  }
  .dialog.member-search .member-id-wrapper .input-wrapper input[type="text"],
  .dialog.member-search .reference-code-wrapper .input-wrapper input[type="text"] {
    width: 100px;
    box-sizing: content-box;
  }
  .dialog.member-search .member-id-wrapper .member_search_button_search,
  .dialog.member-search .reference-code-wrapper .member_search_button_search,
  .dialog.member-search .member-id-wrapper .reference_code_button_search,
  .dialog.member-search .reference-code-wrapper .reference_code_button_search {
    width: 75px;
    margin-left: 10px;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .dialog.member-search .member-id-wrapper .input-wrapper .multiple input[type="text"]:first-child {
    width: 48px;
  }
  .dialog.member-search .member-id-wrapper .input-wrapper .multiple input[type="text"]:last-child {
    width: 24px;
  }
  .dialog.member-search .member_search_result.visible {
    display: block;
  }
  .dialog.member-search .member_search_result .member_search_found_wrap > .member_search_button_save {
    display: block;
    width: 75px;
  }
  .dialog.member-search .member_search_result > .member_search_button_save {
    display: none;
  }
}
.club-signup-login {
  margin: 25px;
  text-align: center;
}
.club-signup-login #txtUsername {
  margin-top: 10px;
}
.club-signup-login #txtPassword {
  margin-top: 5px;
}
.club-signup ~ #addMember .contact-info-block .contact-info-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.club-signup ~ #addMember .contact-info-block .contact-info-field > span:first-child {
  width: 100%;
}
.club-signup ~ #addMember .contact-info-block .contact-info-field > input {
  width: auto;
  flex-shrink: 1;
  flex-grow: 1;
}
.club-signup ~ #addMember .asterisk-explanation {
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .club-signup ~ #addMember .contact-info-block h4 {
    margin-bottom: 10px;
  }
  .club-signup ~ #addMember .contact-info-block .contact-info-field > span:first-child {
    text-align: right;
    margin-right: 5px;
    width: 75px;
  }
  .club-signup ~ #addMember .contact-info-block .contact-info-field > input {
    width: 200px;
  }
  .club-signup ~ #addMember .line-break {
    display: block;
    width: 100%;
  }
  .club-signup ~ #addMember .asterisk-explanation {
    margin-bottom: 0px;
  }
  .club-signup ~ #addMember #found-block {
    flex-wrap: wrap;
  }
  .club-signup ~ #addMember #found-block .asterisk-explanation {
    flex-shrink: 1;
    flex-grow: 1;
    margin-right: 10px;
  }
}
.club-signup .qualifier-info {
  margin-top: 30px;
}
.club-signup .qualifier-info .flex-table > .row {
  flex-direction: column;
}
.club-signup .qualifier-info .flex-table .col {
  align-self: center;
}
.club-signup .qualifier-info .flex-table .col.pairs-in-qualifier {
  flex-grow: 0;
  margin-bottom: 10px;
}
.club-signup .qualifier-info .flex-table .col.pairs-in-qualifier .pairs-in-qualifier-text > .row {
  align-items: center;
}
.club-signup .qualifier-info .flex-table .col.pairs-in-qualifier i {
  color: #3498DB;
  font-size: 14px;
  margin-left: 5px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .club-signup .qualifier-info .flex-table .col.pairs-in-qualifier > .row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .club-signup .qualifier-info .flex-table .col.pairs-in-qualifier > .row > .col {
    flex-grow: 0;
  }
  .club-signup .qualifier-info .flex-table .col.pairs-in-qualifier > .row > .col:first-child {
    flex-grow: 1;
    width: 100%;
    text-align: center;
  }
}
.club-signup .qualifier-info .flex-table .col.price-info .row {
  justify-content: center;
}
.club-signup .qualifier-info .flex-table .col.price-info .col {
  flex-grow: 0;
}
.club-signup .qualifier-info .flex-table .col.price-info-inner span:first-child {
  margin: 0 5px;
}
.club-signup .qualifier-info #txtPairCount {
  width: 25px;
  margin-left: 5px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .club-signup .qualifier-info .flex-table > .row {
    flex-direction: row;
  }
  .club-signup .qualifier-info .flex-table .col.pairs-in-qualifier {
    margin-bottom: 0;
  }
}
#pairsInQualifyingEventInfoModal .content .fieldset {
  line-height: 1.5;
}
#pairsInQualifyingEventInfoModal .content .fieldset ul {
  list-style: inside;
}
@media only screen and (min-width: 768px) {
  #pairsInQualifyingEventInfoModal .inner {
    width: 500px;
  }
}
.fa-edit {
  margin-top: 1px;
}
ul.list-table li {
  height: 15px;
  line-height: 15px;
  vertical-align: middle;
  padding: 5px 0;
}
ul.list-table li.list-table-sub {
  height: auto;
  padding: 5px 0px 5px 0px;
}
ul.list-table li.list-table-sub > ul > li.header {
  margin-left: 0px;
  font-weight: bold;
}
ul.list-table li.border-top {
  border-top: 1px solid #BDC3C7 !important;
}
ul.list-table > li.header {
  padding: 10px;
  font-weight: bold;
  background: #ECF0F1;
  border-top: 1px solid #BDC3C7;
  border-bottom: 1px solid #BDC3C7;
}
ul.list-table > li.header.grouped {
  border-bottom: none;
  border-top: none;
}
ul.list-table > li.header.grouped.top {
  border-top: 1px solid #BDC3C7;
}
ul.list-table > li.header.grouped.bottom {
  border-bottom: 1px solid #BDC3C7;
}
@media only screen and (min-width: 768px) {
  ul.list-table li {
    padding: 5px 10px;
  }
  ul.list-table li.list-table-sub > ul {
    margin-left: 10px;
  }
  ul.list-table li.list-table-sub > ul > li {
    margin-left: 10px;
  }
}
.css-table {
  display: table;
}
.css-table .row {
  display: table-row;
  vertical-align: top;
}
.css-table .cell {
  display: table-cell;
  vertical-align: top;
}
.dialog {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 1;
}
.dialog .inner {
  border: 1px solid #BDC3C7;
  padding: 15px;
  margin: 61px 10px 50px 10px;
  position: relative;
  background-color: white;
}
.dialog .inner > .title {
  text-transform: uppercase;
  font-weight: bold;
  color: #34495E;
  min-height: 20px;
  line-height: 20px;
  margin-bottom: 10px;
}
.dialog:before {
  content: " ";
  display: block;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.6;
  background: #777;
}
@media only screen and (min-width: 768px) {
  .dialog {
    left: 50%;
    right: auto;
    bottom: auto;
    overflow-y: visible;
  }
  .dialog .inner {
    margin: 41px 50px 50px 50px;
    left: -50%;
    max-width: 600px;
  }
}
.fieldset {
  background: #ECF0F1;
  padding: 10px;
}
.validation.summary {
  background: #ECF0F1;
  padding: 10px;
  color: #E74C3C;
  border: 1px solid #C0392B;
}
.error {
  color: #E74C3C;
}
input + .error.asterisk,
input.hasDatepicker + img.ui-datepicker-trigger + .error.asterisk,
select + .error.asterisk {
  margin-left: 5px;
}
.error.asterisk {
  font-weight: bold;
  font-size: 14px;
  vertical-align: middle;
  position: relative;
  cursor: default;
}
.ui-datepicker-trigger {
  color: #ffffff;
  background: #2980B9;
  padding: 5px 10px 5px 10px;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  height: 20px;
  line-height: 20px;
  display: inline-block;
  text-transform: uppercase;
  order: 2;
  width: 15px;
  height: 15px;
  line-height: 15px;
  padding: 5px;
  margin: 0 0 0 5px;
  vertical-align: top;
}
.ui-datepicker-trigger:hover {
  background: #3498DB;
}
.ui-datepicker-trigger.green {
  background: #27AE60;
  order: 0;
}
.ui-datepicker-trigger.green:hover {
  background: #2ECC71;
}
.ui-datepicker-trigger.red {
  background: #C0392B;
  order: 1;
}
.ui-datepicker-trigger.red:hover {
  background: #E74C3C;
}
.ui-datepicker-trigger:active {
  position: relative;
  top: 1px;
}
.ui-datepicker-trigger > i {
  font-size: 19px;
  width: 20px;
  vertical-align: top;
  margin-right: 3px;
  text-transform: none;
}
.ui-datepicker-trigger.small {
  height: 15px;
  line-height: 15px;
}
.ui-datepicker-trigger.small > i {
  font-size: 14px;
  width: 15px;
}
.ui-datepicker-trigger.disabled,
.ui-datepicker-trigger[disabled] {
  background: #BDC3C7;
  cursor: not-allowed;
}
.ui-datepicker-trigger.disabled:hover,
.ui-datepicker-trigger[disabled]:hover {
  background: #BDC3C7;
}
.ui-datepicker-trigger.disabled:active,
.ui-datepicker-trigger[disabled]:active {
  top: 0px;
}
@media only screen and (min-width: 768px) {
  .ui-datepicker-trigger,
  .ui-datepicker-trigger.green,
  .ui-datepicker-trigger.red {
    order: 0;
  }
}
.tee-indicator {
  float: right;
  overflow: auto;
}
.tee-indicator > .tee-indicator-color {
  margin-top: 2px;
  width: 14px;
  height: 14px;
  border: 1px solid #C1C1C1;
  border-radius: 50%;
  float: left;
}
.tee-indicator > .tee-indicator-name {
  float: left;
  height: 24px;
  line-height: 24px;
}
.tee-indicator > .tee-indicator-color + .tee-indicator-name {
  margin-left: 5px;
}
@media only screen and (min-width: 768px) {
  .tee-indicator > .tee-indicator-name {
    height: 20px;
    line-height: 20px;
  }
}
