@charset "UTF-8";
/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.5;
  font-weight: 400;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  color: #0a0a0a;
  height: 100%;
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  margin-bottom: 2rem;
  font-weight: 300;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 3rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.5rem;
}

/* Larger than phablet */
@media (min-width: 640px) {
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 4.2rem;
  }
  h3 {
    font-size: 3.6rem;
  }
  h4 {
    font-size: 3rem;
  }
  h5 {
    font-size: 2.4rem;
  }
  h6 {
    font-size: 1.5rem;
  }
}
p {
  margin-top: 0;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1779ba;
  text-decoration: none;
}

a:hover {
  color: #767676;
  text-decoration: none;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #8a8a8a;
  cursor: pointer;
  box-sizing: border-box;
}

.button:hover,
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
.button:focus,
button:focus,
input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus {
  color: #8a8a8a;
  border-color: #8a8a8a;
  outline: 0;
}

.button.button-primary,
button.button-primary,
input[type=submit].button-primary,
input[type=reset].button-primary,
input[type=button].button-primary {
  color: #fefefe;
  background-color: #1779ba;
  border-color: #1779ba;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type=submit].button-primary:hover,
input[type=reset].button-primary:hover,
input[type=button].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type=submit].button-primary:focus,
input[type=reset].button-primary:focus,
input[type=button].button-primary:focus {
  color: #fefefe;
  background-color: #1779ba;
  border-color: #1779ba;
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=date],
input[type=time],
input[type=password],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fefefe;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=date],
input[type=time],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}

input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=date]:focus,
input[type=time]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  border: 1px solid #1779ba;
  outline: 0;
}

label,
legend {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type=checkbox],
input[type=radio] {
  display: inline;
}

label > .label-body {
  display: inline-block;
  margin-left: 0.5rem;
  font-weight: normal;
}

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside;
}

ol {
  list-style: decimal inside;
}

ol, ul {
  padding-left: 0;
  margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%;
}

li {
  margin-bottom: 1rem;
}

/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e6e6e6;
}

/*th:first-child,
td:first-child {
  padding-left: 0; }*/
th:last-child,
td:last-child {
  padding-right: 0;
}

thead {
  border-bottom: 1px solid #e6e6e6;
}

.modalTable th,
.modalTable td {
  padding: 8px 15px;
  text-align: left;
  border-bottom: unset;
}

.modalTable {
  width: 100%;
}

.modalTable input, .modalTable select {
  margin-bottom: 0;
  width: 100%;
}

#matchTable1 select {
  width: unset;
}

table input, table select {
  margin-bottom: 0;
  width: 100%;
}

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem;
}

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

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}

.container.full {
  max-width: unset;
  margin: 5rem;
}

#cover-spin {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9999;
  display: none;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#cover-spin::after {
  content: "";
  display: block;
  position: absolute;
  left: 48%;
  top: 40%;
  width: 40px;
  height: 40px;
  border-style: solid;
  border-color: black;
  border-top-color: transparent;
  border-width: 4px;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear infinite;
  animation: spin 0.8s linear infinite;
}

/* LOGIN 
-------------------------------*/
.login-container {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.row-login {
  width: 500px;
  padding: 3rem 1rem;
  background: #fefefe;
  border: 1px solid #cacaca;
  border-radius: 5px;
  text-align: center;
}

.row-login.privacy {
  text-align: left;
  padding: 4rem;
}

.row-login p {
  margin-bottom: 1em;
}

.login, .forgot-password {
  margin-bottom: 1rem;
}

#loginContainer {
  width: 900px;
  display: flex;
  padding: 4rem;
}

#loginContainer > div:first-child {
  padding-right: 4rem;
  text-align: left;
}

.login input, .forgot-password input, .reset-password input {
  width: 400px;
}

.login input, .forgot-password input, .reset-password input {
  width: 400px;
}

.login .alert, .forgot-password .alert {
  margin: 0 auto;
  margin-bottom: 1.5rem;
  width: 400px;
  background: #cc4b37;
  padding: 0.5em 0;
  border-radius: 4px;
  color: #fefefe;
}

.alert {
  background: #cc4b37;
  padding: 0.5em;
  border-radius: 4px;
  color: #fefefe;
}

.login label, .forgot-password label {
  width: 400px;
  margin: 0.5em auto;
  text-align: left;
}

.login-btn {
  width: 400px;
  margin-bottom: 0;
}

.loginBackground {
  height: 100%;
  background: url(/images/rwgc3.jpg);
  background-size: cover;
}

.loginCover {
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

/*MODAL STYLING */
.modal {
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100;
}

.visible {
  display: flex;
}

.modalContent {
  width: 50%;
  max-width: 750px;
  max-height: 100%;
  overflow: auto;
  margin: 0 auto;
  background: #fefefe;
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

#membershipContent, #deleteContent {
  width: 33%;
}

.modalContainer {
  padding: 2rem;
}

#clubInfoModal > .modalContent > div > div {
  padding: 0.5rem 0;
}

.modalHeader {
  background: #1779ba;
  color: #fefefe;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.boldModalHead {
  font-weight: bold;
  width: 140px;
}

#clubInfoModal > .modalContent > div > div > div:first-child {
  font-weight: bold;
  width: 140px;
}

.boldModalHeadSmall {
  font-weight: bold;
}

.clubContactsCont {
  display: flex;
}

.clubContactsCont > div {
  width: 30%;
}

.clubContactsCont > div > div {
  width: 100% !important;
  padding: 9px;
}

.modalContainer > div {
  padding: 1em;
}

.modalBtnContainer {
  display: flex;
  padding: 1rem 1.5rem;
  justify-content: space-between;
}

.modalBtnContainer a {
  margin-bottom: 0;
}

/* NavBar 
-----------------------------------------------------*/
.container-fluid {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
}

.login-height {
  justify-content: center;
  height: 82px;
  background: #fefefe;
}

.navbar-brand {
  padding: 3rem 2rem;
  display: inline-block;
  color: #0a0a0a;
}

.navbar-brand:hover {
  box-shadow: 0 -10px 0 -6px #0a0a0a inset;
}

.navbar-brand.active {
  box-shadow: 0 -10px 0 -6px #0a0a0a inset;
}

.navbar-header {
  padding-right: 2rem;
}

.company-logo {
  padding: 0 2em;
  width: 43px;
  display: flex;
  align-items: center;
  background: url(/images/genLogo.png);
  background-position: center;
  background-size: 43px;
  background-repeat: no-repeat;
}

.golf-club-name {
  visibility: hidden;
  position: relative;
}

.golf-club-name:after {
  visibility: visible;
  content: "Royal Wimbledon Golf Club";
  display: flex;
  align-items: center;
  font-size: 2rem;
  justify-content: left;
}

#login-name {
  font-size: 2rem !important;
}

/* DASHBOARD
--------------- */
#clubTable, #matchesTable, #resultsTabl, #signupTable, #matchTable1 {
  margin: 1em 0;
}

#clubTable table, #matchesTable table, #resultsTable table, #signupTable table, #matchTable1 table {
  width: 100%;
}

.col.right {
  text-align: right;
}

.cancelled {
  color: #cc4b37;
}

.closed {
  cursor: none;
}

.select2-selection__placeholder, .select2-container--default .select2-selection--single .select2-selection__rendered {
  float: left;
}

.viewSeries {
  cursor: pointer;
}

.iconEnd {
  padding: 12px 15px !important;
}

.viewSeries:hover {
  background: #f6f6f6;
}

.viewSeries.selectable {
  background: #1779ba;
  color: white;
}

.viewSeries.selectable:hover {
  background: #146aa3;
  color: white;
}

.welcome-message p {
  margin-bottom: 1rem;
}

.welcome-message li {
  margin-bottom: 0.5rem;
}

.resetPasswordParams {
  width: 400px;
  margin: 0 auto;
  text-align: left;
}

.resetPasswordParams p {
  margin-bottom: 1rem;
}

.resetPasswordParams ul {
  margin-bottom: 1rem;
}

.resetPasswordParams li {
  margin-bottom: 0.5rem;
}

.reset-password .alert {
  width: 400px;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 1em;
}

.changePassText {
  padding: 0 15px;
}

.changePassText p {
  margin-bottom: 1rem;
}

.changePassText li {
  margin-bottom: 0.5rem;
}

.selectable {
  background: #1779ba;
  color: white;
}

.selectable:hover {
  background: #146aa3;
  color: white;
}

.select2-selection__rendered {
  line-height: 35px !important;
}

.select2-container .select2-selection--single {
  height: 38px !important;
}

.select2-selection__arrow {
  height: 38px !important;
}

/* SIGN UP PAGE 
----------------------------------------*/
.matchInfo > div {
  display: flex;
  justify-content: space-around;
}

.matchInfo > div > div {
  padding: 1rem;
}

.matchInfo {
  padding: 12px 15px !important;
  background: #f6f6f6;
}

.matchOptions {
  margin-bottom: 0;
  margin-right: 2rem;
}

.selectContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 2rem;
}

.matchInfoRow {
  display: none;
}

i {
  transition: all 0.5s ease;
}

.arrow {
  font-size: 2rem;
  cursor: pointer;
}

/*  GENERIC PAGE STYLES
-----------------------------------------*/
.pageHeading {
  height: 300px;
  background: url(/images/rwgc.jpg);
  background-position: center;
  background-size: cover;
}

.pageHeading.matches {
  background: url(/images/rwgc2.jpg);
  background-position: center;
  background-size: cover;
}

.pageHeading.signup {
  background: url(/images/rwgc4.jpg);
  background-position: center;
  background-size: cover;
}

.headingContainer {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 50, 0.4);
  color: #fefefe;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

#matchManagerHeading a, #organiserHeading a {
  color: #fefefe;
}

#clubInfo {
  height: 20px;
  line-height: 20px;
  padding: 0 8px;
}

.emailMessage {
  width: 100%;
}

.flexSplit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#inputHome, #home_club {
  transform: scale(2);
  -ms-transform: scale(2);
  -webkit-transform: scale(2);
  -o-transform: scale(2);
  -moz-transform: scale(2);
  transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  width: unset;
  -moz-transform-origin: 0 0;
}

.flexMid {
  display: flex;
  justify-content: space-between;
}

.flexSplit.padding {
  padding-left: 15px;
}

#fixturesContainer {
  margin-top: 2em;
}

#fixturesDatePicker, #pastFixturesDatePicker {
  border: 1px solid #aaa;
  margin-top: 10px;
}

.sectionHeading {
  font-size: 2.4rem;
  padding: 1rem 0;
}

.closeBtn {
  font-size: 2rem;
  cursor: pointer;
}

table {
  position: relative;
}

.rowlink::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5em;
}

.container {
  max-width: 1200px;
  margin: 3em auto;
  padding: 0;
}

.editBtn, .deleteBtn {
  margin-right: 1rem;
}

#commentForm {
  margin-bottom: 0;
}

#commentForm fieldset {
  margin: 0;
}

#selectedTeamBox,
#reservesTeamBox,
#dropoutTeamBox {
  width: 24%;
  position: relative;
  min-height: 20px;
}

#availableTeamBox {
  width: 24%;
  padding: 0 40px 0 0px;
}

#availableTeamBox > span,
#selectedTeamBox > span,
#reservesTeamBox > span,
#dropoutTeamBox > span {
  font-weight: bold;
  display: inline-block;
  padding: 1rem;
  text-align: center;
}

#availableTeamBox > div,
#selectedTeamBox > div,
#reservesTeamBox > div,
#dropoutTeamBox > div {
  padding: 1rem;
  padding-top: 0;
  font-weight: bold;
  font-size: 1em;
}

#availableTeam,
#selectedTeam,
#reservesTeam,
#dropoutTeam {
  list-style-type: none;
  border: 1px solid #8a8a8a;
  margin: 0 2px 5px 5px;
  border-radius: 4px;
  min-height: 20px;
  height: calc(100% - 81px);
  text-align: left;
}

#selectedTeam {
  border: 1px solid #8a8a8a;
}

#availableTeam li,
#selectedTeam li,
#reservesTeam li,
#dropoutTeam li {
  padding: 10px;
  position: relative;
  font-size: 1em;
  cursor: pointer;
  margin: 0;
}

#availableTeam li {
  background: #21b659;
  margin: 6px;
  color: white;
  border-radius: 4px;
  font-weight: bold;
}

#availableTeam li:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

#selectedTeam li {
  background: #f5a700;
  margin: 6px;
  color: white;
  border-radius: 4px;
  font-weight: bold;
}

#selectedTeam li:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

#selectedTeam li:hover {
  background-color: #c28400;
  color: white;
}

#reservesTeam li {
  background: #1779ba;
  margin: 6px;
  color: white;
  border-radius: 4px;
  font-weight: bold;
}

#reservesTeam li:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

#reservesTeam li:hover {
  background-color: #115b8d;
  color: white;
}

#dropoutTeam li {
  background: #cc4b37;
  margin: 6px;
  color: white;
  border-radius: 4px;
  font-weight: bold;
}

#dropoutTeam li:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

#dropoutTeam li:hover {
  background-color: #a63b2a;
  color: white;
}

#availableTeam li:hover {
  background-color: #198b44;
  color: white;
}

.handicapSpan {
  float: right;
}

.handicapSummary {
  margin-top: 1rem;
}

.bottomTitle {
  margin: 1rem 0;
}

#teamBoxes {
  max-width: 1200px;
  border: 1px solid #8a8a8a;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  border-radius: 4px;
  text-align: center;
}

#teamNumber {
  list-style: none;
  position: absolute;
  width: calc(100% - 7px);
  margin: 0 2px 5px 5px;
  color: #8a8a8a;
  user-select: none;
}

#teamNumber li {
  padding: 10px;
  margin: 6px;
  font-size: 1em;
}

#handicapSummary {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

#handicapSummary > div {
  padding: 20px 0;
}

.handicapTable {
  width: 180px;
}

.handicapTable table {
  width: 100%;
}

.seriesTable table {
  width: 100%;
}

.previousContainer {
  position: absolute;
  z-index: 2;
  display: none;
  border: 1px solid #8a8a8a;
  background: white;
  color: black;
  width: 262px;
  margin-left: -10px;
  margin-top: 16px;
  border-radius: 4px;
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  padding: 1rem;
  box-sizing: border-box;
}

.previousContainer:before {
  content: "";
  vertical-align: middle;
  margin: auto;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: calc(100% - 5px);
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border: 1px solid;
  border-color: #8a8a8a transparent transparent #8a8a8a;
  background-color: white;
}

.previousContainer2 {
  display: flex;
  justify-content: space-between;
}

.previousSummary {
  padding: 0.5rem 1rem;
  color: white;
  border-radius: 4px;
  margin-top: 0.5rem;
}

.handicapSpan:hover + .previousContainer {
  display: block;
}

.modalBtnContainer.teamSelection {
  padding: 1rem 0;
}

.button.seriesSummary {
  height: 146px;
  width: 170px;
  white-space: normal;
  display: flex;
  align-items: center;
  line-height: 2rem;
}

.button.impersonate {
  margin-bottom: 0;
}

#handicapSummary textarea {
  display: block;
  height: auto;
  max-width: 400px;
}

#matchInfoSection {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#matchInfoSection div {
  padding: 1rem 0;
}

#matchInfoSection table {
  margin-bottom: 0 !important;
}

.selectionButtonContainer {
  display: flex;
  margin: 1rem 0px;
  margin-top: 2rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.selectionButtonContainer a {
  margin-right: 1rem;
}

.selectionButtonContainer a:last-child {
  margin-right: 0;
}

#matchInfoSection th, #matchInfoSection td {
  border: none;
  height: 38px;
  padding: 8px 10px;
}

#matchInfoSection th:last-child, #matchInfoSection td:last-child {
  padding-right: 0;
}

#firstTable th:first-child, #firstTable td:first-child {
  padding-left: 0;
}

.flex {
  display: flex;
}

.flexSummary {
  display: flex;
}

.flexSummary > div {
  display: inline-flex;
  width: 125px;
  margin: 1rem;
  align-items: center;
}

.smallerSummary {
  font-weight: 700;
}

.flexHeadingYear {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flexHeadingYear select {
  margin-bottom: 0;
}

.firstCol {
  width: 230px !important;
  padding-right: 3rem !important;
  justify-content: space-between;
  font-weight: bold;
  margin: 0 !important;
  border-right: 1px solid grey;
  padding-left: 2rem;
  position: sticky;
  left: 0;
  background: white;
}

.totals {
  padding-left: 3rem;
  font-weight: bold;
  margin: 0 !important;
}

.totals.first {
  border-left: 1px solid grey;
}

.totalsHeading {
  border-left: 1px solid grey;
  margin: 0 !important;
  padding-left: 1rem;
}

#selectedTableData {
  border-bottom: 1px solid grey;
  margin-right: 3rem;
  padding-top: 1rem;
  background: white;
}

#selectedMatches, #selectedTableData {
  display: inline-block;
}

.matchSeparator {
  position: sticky;
  top: 0;
  z-index: 1;
}

#refreshBtn {
  background: #1779ba;
  border: none;
  color: white;
  height: 50px;
  line-height: 50px;
  padding: 0 50px;
  margin-bottom: 2em;
}

#refreshBtn1 {
  background: #1779ba;
  border: 1px solid white;
  height: 44px;
  line-height: 44px;
  color: white;
  font-size: 20px;
  padding: 0 14px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  margin-bottom: 0;
  display: none;
}

#selectedMatches, #selectedTableData {
  display: inline-block;
}

.color-A {
  background: #3adb76;
}

.color-R {
  background: #1779ba;
}

.color-S {
  background: #ffae00;
}

.color-X {
  background: #cc4b37;
}

.status-A {
  background: #3adb76;
  color: white;
  padding: 1rem;
  width: 100%;
  border-radius: 4px;
  font-weight: bold;
  box-sizing: border-box;
}

.status-R {
  background: #1779ba;
  color: white;
  padding: 1rem;
  border-radius: 4px;
  width: 100%;
  font-weight: bold;
  box-sizing: border-box;
}

.status-S {
  background: #ffae00;
  color: white;
  border-radius: 4px;
  padding: 1rem;
  width: 100%;
  font-weight: bold;
  box-sizing: border-box;
}

.status-X {
  background: #cc4b37;
  color: white;
  padding: 1rem;
  border-radius: 4px;
  width: 100%;
  font-weight: bold;
  box-sizing: border-box;
}

#placeholder-div {
  display: inline-block;
  padding: 0px 10px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
  width: 100%;
}

#placeholder {
  color: #A9A9A9;
  display: inline-block;
  font-weight: 400;
}

#placeholder-input {
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  width: 90%;
}

#home-club {
  background: #444;
  padding: 5px;
  color: white;
  border-radius: 10px;
  font-size: 11px;
  vertical-align: text-bottom;
  margin-left: 10px;
}

/* Paginator styles */
#matchesTableData_filter, #matchesTableData_paginate {
  float: right;
  display: inline-block;
}

#matchesTableData_length, #matchesTableData_info {
  display: inline-block;
}

#matchesTableData_info {
  display: inline-block;
  font-weight: bold;
}

#memberTable_filter, #memberTable_paginate {
  float: right;
  display: inline-block;
}

#memberTable_length, #memberTable_info {
  display: inline-block;
}

#memberTable_info {
  display: inline-block;
  font-weight: bold;
}

.paginate_button {
  display: inline-block;
  height: 38px;
  padding: 0 10px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #8a8a8a;
  cursor: pointer;
  box-sizing: border-box;
  margin: 0 3px;
}

.paginate_button.current {
  color: #fefefe;
  background-color: #1779ba;
  border-color: #1779ba;
}

footer {
  background: #1779ba;
  padding: 1.25em;
  color: white;
  font-size: 0.9em;
}

.footerContainer {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

footer a {
  color: white;
}

footer a:hover {
  color: white;
}

.containerSticky {
  min-height: calc(100vh - 54px);
}

.changePassword, .personalInfo {
  border: 1px solid #8a8a8a;
  width: 50%;
  margin: 1rem;
  padding: 1rem;
  border-radius: 4px;
}

.change-password {
  padding: 0 15px;
}

.saved {
  display: inline-block;
  margin-left: 20px;
  color: #fefefe;
  background: #1779ba;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  font-weight: bold;
}

.change-password input {
  width: 100%;
}

.change-password button {
  margin-top: 1rem;
  width: 100%;
}

.changePassword .alert {
  margin: 0 15px;
  margin-bottom: 1rem;
}

/* Date Picker styling */
.ui-widget.ui-widget-content {
  border: 1px solid #e6e6e6 !important;
}

.ui-widget-header {
  border: none !important;
  background: #1779ba !important;
  color: #fefefe !important;
  font-weight: bold !important;
}

.ui-datepicker-next.ui-corner-all.ui-state-hover.ui-datepicker-next-hover {
  background: #1779ba !important;
  border: none !important;
  right: 2px !important;
  top: 2px !important;
}

.ui-datepicker-prev.ui-corner-all.ui-state-hover.ui-datepicker-prev-hover {
  background: #1779ba !important;
  border: none !important;
  left: 2px !important;
  top: 2px !important;
}

.ui-state-default {
  background: white !important;
  color: #555 !important;
  border: 1px solid #e6e6e6 !important;
}

.ui-state-default.ui-state-active {
  background: #1779ba !important;
  color: #fefefe !important;
  border: 1px solid #1779ba !important;
}

.ui-icon {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900;
}

.ui-icon:before {
  content: "\f054" !important;
}

#uploaderSubmitBtn {
  float: right;
  margin-top: 25px;
}

.alert-success {
  background: #3adb76;
}

.doneContainer {
  display: flex;
  justify-content: flex-end;
  margin: 0rem 0px;
  margin-top: 0rem;
  padding: 2em 0 0em 0 !important;
}

#fileUploader {
  display: none;
}

.custom-file-upload {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
}

.custom-file-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #8a8a8a;
  cursor: pointer;
  box-sizing: border-box;
}

.custom-file-upload i {
  font-size: 20px;
  margin-bottom: 5px;
}

.fileSelection {
  background: #cc4b37;
  width: 200px;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  padding: 10px;
  word-break: break-word;
  margin-top: 1em;
  box-sizing: border-box;
}

.fileSelected {
  background: #3adb76;
}

.alert-danger {
  margin-bottom: 1em;
}

#currentTeam {
  margin-bottom: 0;
}

.flexSplit.uploader {
  margin-bottom: 2em;
}

.memberStatusDisabled {
  color: white;
  background: #ffae00;
  padding: 5px;
  border-radius: 4px;
  cursor: pointer;
}

.memberStatusActive {
  color: white;
  background: #3adb76;
  padding: 5px;
  border-radius: 4px;
  cursor: pointer;
}

.memberStatusDisabled:hover {
  color: white;
  background: #e69d00;
}

.memberStatusActive:hover {
  color: white;
  background: #27d568;
}

#matchesTable > .button {
  width: 60%;
}

.impersonateBanner {
  background: #cc4b37;
  color: #fefefe;
  padding: 1rem;
  text-align: center;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.buttonImpersonate {
  background: #fefefe;
  margin-bottom: 0;
  margin-left: 1em;
}

.teamStatus {
  color: white;
  border-radius: 17px;
  font-weight: bold;
  display: inline-block;
  padding: 7px 10px;
  width: 90%;
  text-align: center;
}

.teamStatus.selectedConfirmed {
  background-color: #3adb76;
}

.teamStatus.selectedUnfconfirmed {
  background-color: #cc4b37;
}

.teamStatus.reserved {
  background-color: #ffae00;
}

.teamStatus.dropout {
  background-color: #0a0a0a;
}

/*********************

Mobile Styling 

******************/
@media screen and (max-width: 1000px) {
  .row-login {
    flex-direction: column-reverse;
    margin: 1em;
  }
  .flexMid {
    flex-direction: column;
  }
  .flexMid > div {
    width: 100%;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 850px) {
  .login input, .forgot-password input, .reset-password input {
    width: 100%;
  }
  .login-btn {
    width: 100%;
  }
  #loginContainer > div:first-child {
    display: none;
  }
  .resetPasswordParams {
    width: 100%;
  }
  .reset-password .alert {
    width: 100%;
  }
}
@media screen and (max-width: 1250px) {
  .footerContainer {
    width: 100%;
  }
  .container {
    margin: 2em 1em;
  }
  #clubModalContent {
    width: 80%;
  }
  .sectionHeading {
    padding-right: 10px !important;
  }
}
@media screen and (max-width: 1100px) {
  #handicapSummary > div {
    width: 25%;
    margin-left: 10px;
    margin-right: 10px;
  }
  #handicapSummary textarea {
    width: 100%;
  }
  #matchInfoSection {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
  }
  .selectionButtonContainer {
    justify-content: start;
  }
  #firstTable th:first-child, #firstTable td:first-child {
    padding: 8px 10px;
  }
  .organiserMatchesTables tr th:nth-child(6), .organiserMatchesTables tr td:nth-child(6),
.organiserMatchesTables tr th:nth-child(7), .organiserMatchesTables tr td:nth-child(7),
.organiserMatchesTables tr th:nth-child(2), .organiserMatchesTables tr td:nth-child(2) {
    display: none;
  }
  #matchInfoSection > div:nth-child(1),
matchInfoSection > div:nth-child(2) {
    padding-right: 2rem;
  }
}
.matchDetails #selectedTeamBox, .matchDetails #reservesTeamBox, .matchDetails #dropoutTeamBox {
  min-width: 33%;
}

@media screen and (max-width: 850px) {
  #handicapSummary {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .selectionButtonContainer a {
    width: 48%;
  }
  #handicapSummary > div {
    width: 47%;
    padding-top: 0;
    padding-bottom: 0;
  }
  #handicapSummary textarea {
    width: 100%;
  }
}
@media screen and (max-width: 850px) {
  .footerContainer {
    flex-direction: column;
    align-items: center;
  }
  .containerSticky {
    min-height: calc(100vh - 74px);
  }
  .button.dropOutConfirm, .button.viewTeamDetails {
    width: 50%;
  }
  #teamNumber {
    width: unset;
  }
  #availableTeamBox {
    min-width: 25%;
    padding: 0;
    width: unset;
  }
  #selectedTeamBox, #reservesTeamBox, #dropoutTeamBox {
    min-width: 25%;
  }
  .nameSpan {
    padding-right: 5px;
  }
}
.mobileMembers {
  display: none;
}

.desktopMembers {
  display: table;
}

.mobileManager, .mobileOrganiser {
  display: none;
}

.desktopManager, .desktopOrganiser {
  display: block;
}

@media screen and (max-width: 800px) {
  .mobileManager, .mobileOrganiser {
    display: block;
  }
  .desktopManager, .desktopOrganiser, #organiserMenu, #managerMenu {
    display: none;
  }
}
@media screen and (max-width: 850px) {
  .selectContainer {
    display: inline-block;
    align-items: unset;
    justify-content: unset;
    padding-right: unset;
  }
  .teamStatus {
    width: 50%;
  }
  .viewSeries.membersPage td:first-child {
    background-color: #1779ba;
    color: #fefefe;
  }
  .selectionButtonContainer {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  #selectedTeamBox, #reservesTeamBox, #dropoutTeamBox {
    width: unset;
    position: unset;
    min-height: unset;
  }
  #teamBoxes {
    flex-wrap: wrap;
  }
  .mobileMembers {
    display: table;
  }
  th:last-child, td:last-child {
    padding: 12px 15px;
  }
  .desktopMembers {
    display: none;
  }
  .mobileMembers {
    border: 0;
  }
  .modalContent {
    width: 90%;
  }
  .mobileMembers thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .mobileMembers tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625em;
  }
  .mobileMembers td {
    border-bottom: 1px solid #ddd;
    display: block;
    text-align: right;
    min-height: 22px;
  }
  .mobileMembers td:before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
  }
  .mobileMembers td:last-child {
    border-bottom: 0;
  }
  .mobileMembers tr {
    background: #f6f6f6;
  }
  .mobileMembers tr:hover {
    background: #f6f6f6;
  }
  #clubModalContent {
    width: 90%;
  }
}
@media screen and (max-width: 800px) {
  .navbar-default .container-fluid {
    flex-direction: column;
  }
  .container-fluid.login-height {
    flex-direction: column;
    height: 130px;
    align-items: center;
  }
  .container-fluid.login-height > .company-logo {
    height: 80px;
    justify-content: center;
    width: 100%;
    padding: 0;
  }
  .company-logo {
    height: 100px;
    justify-content: center;
    width: 100%;
    padding: 0;
  }
  .navbar-header {
    padding-right: 0;
    display: flex;
    justify-content: space-around;
  }
  .navbar-brand {
    padding: 1rem 0rem;
    display: inline-block;
    color: #0a0a0a;
    width: 100%;
    text-align: center;
  }
  #organiserMenu {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .selectionButtonContainer a {
    width: 100%;
  }
  .selectionButtonContainer a:last-child {
    margin-right: 1rem;
  }
  .matchDetails #selectedTeamBox, .matchDetails #reservesTeamBox, .matchDetails #dropoutTeamBox {
    min-width: 100%;
  }
}
@media print {
  .firstCol {
    position: unset;
  }
  .navbar, .pageHeading, .flexSplit, #selectedTableData .flexSummary:nth-child(1),
#selectedTableData .flexSummary:nth-child(2),
#selectedTableData .flexSummary:nth-child(3),
#selectedTableData .flexSummary:nth-child(4), div[class^=status-], #selectedTableData .smallerSummary {
    display: none;
  }
  #selectedTableData .firstCol {
    visibility: hidden;
  }
  #selectedTableData .firstCol:after {
    content: "Name";
    visibility: visible;
    display: block;
    position: absolute;
  }
  footer {
    display: none;
  }
  #selectedMatches > div > div div:nth-child(2) {
    display: none;
  }
  #selectedMatches, #selectedTableData {
    display: block;
  }
}

/*# sourceMappingURL=styleAlt.css.map */
