@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Alfa+Slab+One&display=swap');
body {
    color: #333;
    font-family: 'Rajdhani','Roboto Condensed', sans-serif;
    background-color: #DDD;
    text-rendering: optimizeLegibility;
    cursor: pointer;
    padding:0;
    max-width:100%;
    overflow-x:hidden;
    margin:0;
}
.reset_all {
    all: unset;
}
.disable-dbl-tap-zoom {
  touch-action: manipulation;
	touch-action: none;
}
.grey {
    color: #999;
}
#main {
    max-width: 1024px;
    margin: 0 auto;
}
.container {
    overflow-x: hidden;
}
/* TEXT-REFLECT CSS */
.hide_portrait {
    display: none;
}

.text-reflect, .text-reflect:before, .text-reflect span {
  display: block;
  margin: 0;
  padding: 0;
}

.text-reflect, .text-reflect:before, .text-reflect:after {
  position: relative;
}

.text-reflect {
  top: -60px;
}

.text-reflect:before {
  content: 'INVITATIONAL';
  top: 95px;
  transform: scale(1, -1);
  backface-visibility: visible;
  z-index: 1;
}

.text-reflect:after {
  content: '';
  display: block;
  top: -10px;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: linear-gradient(to bottom, rgba(221,221,221, .4) 0%, rgba(221, 221, 221, 1) 50%);
  z-index: 2;
}
#navClose {
    background: #00284b;
    top:-41px;
    right:10px;
}
.navTop  {
    display: block;
    position: relative;
    width: 100%;
    height: 30px;
}
.select_admin_container {
    display: block;
    position: relative;
    /* width: 66%; */
    height: 330px;
    text-align:left;
    margin: 10px auto;
    overflow-y: scroll;
    margin-left: 20%;
}
.oom_select_container {
    display: inline-block;
    position: relative;
    width:100%;
}

.oom_select_text {
  display: inline-block;
  text-align:left;
  padding-left:15px;
  width: 68%;
  font-family: 'Roboto Condensed',sans-serif;
  font-weight: 700;
  line-height: 55px;
  vertical-align: middle;
}

.oom_select_switch {
  display: inline-block;
  width: 30%;
  text-align:right;
  padding-right:15px;
  vertical-align: top;
  padding-top: 15px;
}
.load-more {
    display: block;
    font-weight: 700;
    padding-left: 20px;
    color: #333;
    text-transform: uppercase;
}
.h50-spacer {
    display: block;
    height: 50px;
}
.checkboxName {
  /* position: relative; */
width: 60%;
height: 26px;
/* line-height: 34px; */
/* padding-top: 9px; */
display: inline-block;
/* font-size: 20px; */
font-family: Roboto Condensed,sans-serif;
font-weight: 700;
letter-spacing: -.1px;
vertical-align: bottom;
margin: 10px;
}

.selectTee  ul {
  padding: 0;
  margin: 0;
  clear: both;
}

.selectTee li{
  list-style-type: none;
  list-style-position: outside;
  padding: 10px;
  float: left;
}

.selectTee input[type="checkbox"]:not(:checked),
input[type="checkbox"]:checked {
  position: absolute;
  left: -9999%;
}

.selectTee input[type="checkbox"] + label {
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  border: 1px solid black;
  color: black;
  background-color: white;
  margin-bottom: 10px;
}

.selectTee input[type="checkbox"]:checked + label {
  border: 1px solid white;
  color: white;
  background-color: black;
}
.selectTee {
    display: inline-block;
    width: 100%;
    text-align: center;
}
.selectTee label {display: inline-block; padding: 5px; position: relative; padding-left: 44px;}
.selectTee label input {display: none;}
.selectTee label span {
    border: 3px solid #ccc;
    width: 46px;
    height: 46px;
    position: absolute;
    overflow: hidden;
    line-height: 2;
    text-align: center;
    border-radius: 100%;
    font-size: 20px;
    left: 0;
    top: 50%;
  }
.selectTee input:checked + span {
  background: #fff;
    border-color: #fff;
    color: #00284b;
    font-weight: 900;
  }
.selectTeeName {
    font-size: 20px;
    text-align: center;
    margin-bottom: -20px;
    margin-top: -10px;
}
.selectTeeHeadline {
    color: #ffffff!important;
}

.checkboxSwitch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.checkboxSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
  /* display:inline-block; */
}

.checkboxSwitch label {
  margin-bottom: 0;
}

.checkboxSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #999;
  -webkit-transition: .4s;
  transition: .4s;
}

.checkboxSlider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .checkboxSlider {
  background-color: #00284b;
}

input:focus + .checkboxSlider {
  box-shadow: 0 0 1px #00284b;
}

input:checked + .checkboxSlider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.checkboxSlider.checkboxRound {
  border-radius: 34px;
}

.checkboxSlider.checkboxRound:before {
  border-radius: 50%;
}
.btn {
    color: #c4c4c4;
    background-color: #00284b;
    border-color: #c4c4c4;
    background-image: none;
    filter: none;
    text-shadow: none;
}
.btn {
    display: inline-block;
    padding: 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
}
.btn:active, .btn:checked, .btn:focus, .btn:hover {
    background-color: #8b0028;
}
.btn-lg {
    border-radius: 27px;
    width: 200px;
}
.btn-admin, .admin_teetime {
  border-radius: 27px!important;
  width: 200px;
  margin: 10px auto;
  background: none;
  color: #00284b;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid;
}
.btn-admin:active, .btn-admin:checked, .btn-admin:focus, .btn-admin:hover {
    background: none;
    color: #00284b;
    text-transform: uppercase;
    text-decoration: inherit;
}
.btn-admin-plus {
    width: 46px;
    margin: 10px 5px;
    padding: 7px;
    border-radius: 50%!important;
    font-size: 20px;
    text-align: center;
    border: 4px solid #00284b;
}
.btn-admin-minus{
    position: absolute;
    left: -17px;
    top: -32px;
    z-index: 10;
    background: #00284b;
    color: #fff;
    border-color: #fff;
}
.add-player-btn {
    position: absolute;
    right: 10px;
    z-index:100;
}
.admin-btn-container {
    width: 100%;
    display: block;
    text-align: center;
}
.score-back-btn {
    color: #fff;
    font-size: 50px;
}
.score-back-btn-div {
    position: absolute;
    z-index: 100010;
    bottom: 10px;
    left: 44.25%;
}
.admin-cog {
    position: absolute;
    font-size: 40px;
    z-index: 10;
    color: #fff;
    left: 20px;
    top: 15px;
    font-family: 'Rajdhani','Roboto Condensed', sans-serif;
    font-weight:700;
}
ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline  > li:before_ {
    content: ' ';
    background: #00284b;
    display: inline-block;
    position: absolute;
    left: 28px;
    width: 4px;
    height: 100%;
    z-index: 400;
}
ul.timeline > li {
    padding: 5px 20px 20px 36px;
    border-left: 3px solid #00284b;
    margin-left: -11px;
    /* padding-left: 36px; */
    position: relative;
}
ul.timeline > li:before_ {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #00284b;
    left: 10px;
    width: 40px;
    height: 40px;
    z-index: 400;
}

.timeline_item_icon {
  position: absolute;
  left: -20px;
  width: 40px;
  height: 40px;
  font-size: 22px;
  background: #fff;
  line-height: 40px;
  border-radius: 50%;
  border: 3px solid #00284b;
  z-index: 1000;
  color: #00284b;
  text-align: center;
  top: 0;
}
.timeline_item_title {
    display: block;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}
.admin_menu_container {
    padding: 20px;
    width:100%;
}
.admin_menu_item {
    padding: 5px 15px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 22px;
    /* background: #bebebe; */
    border: 2px solid #bebebe;
    border-radius: 27px;
    /* line-height: 20px; */
    margin-bottom: 15px;
}
.done {
    background: #008800;
    border: 2px solid #fff;
    color: #fff;
}
.to_do {
    background: #00284b;
    border: 2px solid #fff;
    color: #fff;
}
.not_available {
    color: #888888;
    border: 2px solid #888888;
}
.admin_menu_item_icon {
    /* line-height: 25px; */
    /* margin-top: 3px; */
    padding-right: 10px;
    font-size: 20px;
}
.done .admin_menu_item_icon {
    /* color: #008800; */
}
.long-grey-btn {
  margin: -20px auto 0px auto;
  width: 260px;
  border: 3px solid #666;
  color: #666;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 0 4px 0;
  font-weight: 700;
  border-radius: 27px;
  font-size: 18px;
  background: #c6c6c6;
  z-index: 20;
  position: relative;
}
.long-blue-btn {
    margin: -23px auto 0px auto;
    width: 260px;
    border: 3px solid #fff;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 8px 0 7px 0;
    font-weight: 700;
    border-radius: 27px;
    font-size: 18px;
    background: #00284b;
    z-index: 20;
    position: relative;
}
.tee_list {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    width: 80%;
    max-width: 330px;
    display: block;
    margin: 15px auto;
    background: #00284b;
    padding: 7px 15px;
    border: 2px solid #fff;
    border-radius: 27px;
    color: #fff;
    text-align: center;
}
.player_list {
    /* width: 80%;
    max-width: 330px; */
    margin: 0 auto;
    display: block;
    margin-bottom: 60px;
    border-bottom: 1px solid #7f7f7f;
}
.admin_close_btn_container {
    position: absolute;
    right: 16px;
    top: -53px;
}
.admin_close_btn {
    font-size: 26px;
}
.player_select {
  -webkit-appearance: none;
    width: 100%;/* width: 90%; */
    min-height:60px;
    font-family: 'Roboto Condensed',sans-serif;
    font-weight: 700;
    /* margin-right: 10px;
    margin: 10px 5%; */
    border-radius: 5px;
}
.tn_select {
    min-height: 44px;
    /* padding-left: 10px; */
    border: 1px solid;
    /* border-radius: 27px; */
    text-align: center;
    text-align: -moz-center;
    text-align: -webkit-center;
    text-transform: uppercase;
}
.player_select option {
    line-height: 28px;
    color: inherit;
    padding: 10px;
    font-family: 'Roboto Condensed',sans-serif;
    font-weight: 700;
    letter-spacing: -.1px;
    border-bottom: 1px solid #e6e6e6;
}
.player_select option:checked {
  padding-left: 20px;
  color: #fff!important;
  background: #1a73e8!important;
}
.type_select {
  text-transform: uppercase;
  min-height: 40px;
  border-radius: 5px;
  padding: 0 5px;
}
.square-btn {
    width: 100%;
    border: 1px solid #00284b;
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    padding: 9px;
    border-radius: 5px;
}
.admin_HoF_text_field {
    font-size: inherit;
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid #757575;
    width: 100%;
}
.HoF-modal-body {
  /*  width: 90%;
    margin: 10px 5% 5px 5%; */
}
.regular_info {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00284b;
    padding-top:15px;
}
.small_info {
    font-size: 14px;
    font-weight: 300;
    text-transform: none;
    display:block;
    padding-bottom: 10px;
}
.datepicker-days .table-condensed, .datepicker-inline {
    width: 100%!important;
}
.datepicker table tr td {
    height: 42px;
    border: 2px solid #fff;
    margin: 3px;
    width: 14.28%;
    background: #efefef;
}
.datepicker .clear {
    margin: 10px 20%;
    background-color: #dfdfdf;
    padding: 10px 0;
}
.datepicker-days .table-condensed .prev, .datepicker-days .table-condensed .next, .datepicker-days .table-condensed .datepicker-switch {
    height: 40px;
    font-size: 20px;
    color: #00284b;
    border-radius: 0.25rem;
}
.datepicker table tr td.active:hover, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active:active, .datepicker table tr td.active:hover:active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active[disabled], .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active.disabled:hover[disabled] {
    background-color: #00284B;
    background-image:none;
    text-shadow:none;
    border: none;
}
.datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover {
    background-color: #dfdfdf;
    background-image: none;
    border:none;
    color: #000;
}
input.time-form-element {
    font-size: 60px;
    margin: 0 auto;
    border: none;
}
input.time-form-element:active, input.time-form-element:focus {
  background: #fff;
}
input.time-form-element::before {
    /* content: "00:00";
    color:#fff; */
}
input.time-form-element::after {
    content: none;
}
.row-tee {
height:150px;
display: block;
}
.tee-modal-body, #teeoffNew {
    text-align: center;
    display: block;
}
.teetime-modal-title {
    font-size:24px;
    font-weight:600;
    text-transform: uppercase;
}
.btn-back, .btn-forward {
    display: block;
    width: 40px;
  font-size:40px;
  text-align:center;
  background: none;
  color:#efefef;
  position:absolute;
	top: 100px;
  height: 30px;
  line-height: 30px;
}
.btn-back {
 left: 40px;
}
.btn-forward {
right: 40px;
}
.btn-join {
    width: 100%;
    font-size: 5vw;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 900;
    padding: 15px;
    background: #008100;
    border: none;
    border-bottom: 1px solid #aaa;
    text-shadow: 1px 2px 1px #333;
    color: #efefef;
}
.btn-unjoin {
    width: 100%;
    font-size: 5vw;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 900;
    padding: 15px;
    background: #810000;
    border: none;
    border-bottom: 1px solid #aaa;
    text-shadow: 1px 2px 1px #333;
    color: #efefef;
}
.btn-unjoin, .btn-join {
    width: 100%;
    font-size: 4vw;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 900;
    padding: 6px 20px;
    background: #810000;
    border: 2px solid #fff;
    /* border-bottom: 1px solid #aaa; */
    text-shadow: none;
    color: #fff;
    border-radius: 25px!important;
    opacity: 65%;
}
.btn-join {
    background: #008100;
}
.btn-grey {
    background: #3f3f3f;
    border: 1px solid #efefef;
}
.small-btn-text {
    display: block;
    font-size: 3vw;
    margin-top: -10px;
    font-weight: 600;
}
.join-container {
  /* width:100%; */
}
.join-container {
    /* width: 100%; */
    position: absolute;
    top: 15px;
    z-index: 10;
    left: 15px;
}
.join-modal {
    top: 30%;
    /* display: block; */
    z-index: 10000;
}
.join-close {
    position: absolute;
    right: 5px;
    font-size: 36px;
    z-index:10001
}
.join-body {
    text-align: center;
    margin-top: 15px;
    font-size: 5vw;
    text-transform: uppercase;
    font-weight: 600;
}
.fa-drop {
    border: 5px solid #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 10px 5px #ddd;
    box-shadow: 0px 0px 10px 5px #ddd;
}
.alert-font {
text-transform: none;
}
.message_wrapper {
  display: block;
  width: 70%;
  margin: 20px;
}
.message_outer {
  display: inline-block;
  width: auto;
  max-width: 100%;
  font-family: Arial, sans-serif;
}
.message_inner {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
}
.message_sender {
    font-size: 3vw;
    padding: 3px;
  overflow-x: visible;
}
.mymessageinner {
    background: #81fa7f;
}
.mymessagewrapper {
    width: 90%;
  text-align:right;
   /* margin-right: -25%; */
}
.mymessageouter {
   text-align:left;
}
.message_time {
    /* float: right; */
    margin-right: 7px;
    font-size: 3vw;
    padding: 3px;
  width:97%;
  text-align:right;
}
.btn-message {
    border: none;
    background: transparent;
    font-size: 2rem;
    color: #006699;
}
.message-body {
    display: block;
    width: 100%;
    background: #ddd;
    position: fixed;
    bottom: 0;
    padding-bottom: 75px;
  	z-index:10;
}
.message-text {
    position: relative;
    display: inline-flex;
    width: 85%;
    border: 2px solid #999;
    border-radius: 10px;
    margin: 10px;
    background: #fff;
    padding: 5px;
}
.emojionearea, .emojionearea.form-control {
   border: none;
   padding:0;
   font-size: 4vw;
   font-family: arial;
   -webkit-box-shadow: none;
  box-shadow: none;
}
 .message-text input {
    border: none;
    font-family: arial;
    padding: 5px;
    overflow-wrap: break-word;
    width:100%;
    font-size: 4vw;
}
.message-form-submit {
    display: inline-block;
    position:fixed;
    right:10px;
    bottom: 82px;
    width: 15%;
    text-align: right;
}
.message_container {
}
.message_wrap {
position: relative;
    height: 100%;
    overflow-y: scroll;
  vertical-align: bottom;
  font-size: 4vw;
}
#message_load {
/* position: absolute; */
   height: 20000px;
  padding-bottom: 300px;
/*  bottom: 0;
  left: 0; */
  overflow-y: scroll;
}
.bottom_menu .new_message_alert_wrapper {
    /* position: fixed;
    z-index: 1000004;
    width: 20px;
    height: 20px;
    right: 80px;
    top: 8px; */
}


.masthead {
    margin-top: 35px;
    display: block;
    position: relative;
}
.masthead .alert {
    position: fixed;
    top: 47px;
    z-index: 10;
    width: 100%;
    text-align: center;
    color:#000;
    background: #FDE000;
    background: linear-gradient(180deg,#f8eb1f,#f2ca06);
}
.p_name_inv {
  font-size: 26px;
}
.c_name {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 53px;
    text-transform: uppercase;
    color: #aaa;
    font-size: 14px;
    font-weight: 100;
}
.score_row_inv {
  width:100%;
  margin: 0 auto;
  padding: 5% 15px 8% 15px;

}
.score-box {

}
.score_name_inv {
    font-weight: 100;
    width: 50%;
    display: inline-block;
}
.number-input-wrapper-inv {
    width: 45%;
}
.input-group-button-inv span {
    height: 36px;
    width: 36px;
    line-height: 37px;
    font-size: 18px;
}
.input-group-button span {
    color:#00284b;
}
.score_strokes_inv {
    font-size: 39px!important;
    line-height: 48px!important;
    padding: 0 5px!important;
    font-weight: 100!important;
}
.number-input-wrapper {
    /* display: inline-block; */
    width: 200px;
    float: right;
}
.score_name_inv {
    font-weight: 100;
    /* float:left; */
    display: inline-block;
    margin-top: 3px;
}
.number-input-wrapper-inv {
    width: auto;
    font-family: 'Roboto Condensed', sans-serif;
}
.hole_par {
    position: absolute;
    top: 164px;
    font-weight: 100;
    text-transform: uppercase;
    left: 44.5%;
    font-size: 20px;
    color: #aaa;
}
.stats-table {
    /* position: absolute; */
    /* bottom: 5%; */
    width: 100%;
    /* margin-top: 20%; */
    height: 35%;
    margin-top: 3%;
}
.stats-data, .stats-column, .stats-row, .stats-item, .par-avg-container {
    height: 100%;
}
.stats-item {
    display:inline-block;
    width:40%;
}
.stats-column {
    width:33%;
    text-align: center;
    display:inline-block;
}
.stats-title {
    /* color: #ccc; */
    text-transform: uppercase;
    font-size: 4vw;
    /* padding: 21px; */
}
.stats_bar {
  border-radius: 20px;
width: 88%;
/* border: 1px solid #333; */
padding: 0 5px;
margin-left: 3px;
}
.stats_bar_spacer {
    width:1px;
    display:block;
}
.stats-data {
    position:relative;
}
.stats_diff {
    position: absolute;
    /* top: 63%; */
    font-size: 4vw;
    color: #fff;
    left:15%;
}
.stats_par, .stats_name {
    text-transform: uppercase;
    /* color: #ccc; */
    font-size: 3.5vw;
    padding: 5px 0;
}
.stats_my_avg_bar {
    /* background-color: #00284b;
    background: linear-gradient(180deg, rgba(0,40,75,1) 55%, rgba(0,20,38,1) 90%); */
    background: #00284b;
}

.stats_avg_bar {
    /* background-color: #424242;
    background: linear-gradient(180deg, rgba(66,66,66,1) 55%, rgba(50,50,50,1) 90%); */
    background: repeating-linear-gradient( 45deg, transparent, transparent 5px, #00284b 5px, #00284b 10px );
}
.player-name-col {
  float: left;
  font-family: Roboto Condensed,sans-serif;
  font-weight: 700;
  letter-spacing: -.35px;
}
.leaderboard-module {
    position: relative;
    font-family: 'Roboto Condensed',sans-serif;
    font-weight: 400;
    max-width: 1024px;
    margin-bottom:64px;
}
.leaderboard-module .leaderboard thead tr th, .invPlayerTable thead tr th {
    font-size: 3.75vw;
    line-height: 4.5vw;
    color: #e4e4e4;
    background: #00284b;
    border-left: 1px solid #405e78;
    border-top: 1px solid #405e78;
}
.leaderboard-module .leaderboard thead tr th:first-child {
    border-left: none;
}

.leaderboard-module .leaderboard thead tr:first-child th {
    border-top: none;
}

.leaderboard-module .leaderboard td, .leaderboard-module .leaderboard th {
    text-align:center;
}
.course_name, .format_details, .hcp_details {
    display:block;
}
.course_name {
    font-size:5vw;
}
.sc_day .hcp_details, .sc_day .format_details {
    font-size:4vw;
    line-height:1.75;
}
.sc_card {
  background-color: #1c1c1c;
      /* color: #e4e4e4; */
      /* position: relative; */
      border-bottom: 1px solid #6b6b6b;
}

.sc_col_1, .sc_col {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
    font-size: 3.25vw; /* 13px; */
    line-height: 6vw; /* 30px; */
    /* color: #e4e4e4; */
    table-layout: auto;
    /* border-top: 1px solid #4f4f4f;
    background-color:#323232; */
}
.sc_td_1 {
    display:inline-block;
    position:relative;
    width:12%;
    /* border-bottom: 1px solid #4f4f4f;
    border-left: 1px solid #4f4f4f; */
}
.sc_td {
    display:inline-block;
    position:relative;
    width:10%;
    /* border-bottom: 1px solid #4f4f4f; */
    margin-bottom: 10px;
    /* background-color:#323232; */
}
.sc_col, .sc_col_1 {
    display:block;
    width:100%;
    /* border-right: 1px solid #4f4f4f; */
}
.sc_col_1 {
    text-align:left;
    padding-left: 1vw;
}
.sc_strokes {
  border-bottom: 1px solid #bebebe
}
.sc_holeno {
  font-weight: 600;
  border-bottom: 1px solid #bebebe
}
.sc_points  {
  background: #efefef;
  border-top: 1px solid #bebebe;
  border-bottom: 1px solid #bebebe
}
.chart-title {
    font-size: 4.5vw;
    padding: 10px 5px 5px;
}
.sc_chevron {
/* background-color:#810000;
background: linear-gradient(180deg, rgba(129,0,0,1) 55%, rgba(77,0,0,1) 90%); */
}
.pts0, .pts1, .pts2, .pts3, .pts4, .pts5, .pts6 {
  width: 3.5vw;
  display: inline-block;
  line-height: 3vw;
}
.pts4, .pts5, .pts6 {
  border-radius: 50%;
}
.pts3 {
  border: 1px solid #ccc;
    border-radius: 50%;
}
.pts0, .pts4, .pts5, .pts6  {
  border: 4px double #ccc;
    line-height: 2.5vw;
}
.pts1 {
  border: 1px solid #ccc;
}
.inv_gallery {
    margin-bottom: 64px;
}
.score_wrapper {
    position: fixed;
    height: 100%;
    /* background: #00284b; */
    z-index: 10009;
    color:#fff;
    width:100%;
}
.hole_number {
    margin: 50px auto;
}
.hole_number_inv {
    margin: 50px auto 10% auto;
}
.btn-white-outline {
    color: #fff;
    border-color: #fff;
    padding: 4vw;
    font-size: 6vw;
    font-weight: 600;
}
.hole_number {
    font-size: 48px;
    font-weight: 900;
    /* background: #fff; */
    /* color: #00284b; */
    padding-right: 2px;
}
.stats_link {
    position: absolute;
    top: 15px;
    right: 10px;
    /* top: 18px;
    right: 55px; */
    width: 17%;
    border: 1px solid #333;
    text-align: center;
    padding: 5px 10px;
    border-radius: 27px;
    background: #ffffff;
    z-index:1001;
}
.stats_container {
  position: absolute;
      /* top: 290px; */
      bottom: 0px;
      right: 0;
      width: 100%;
      height: 100%;
      z-index: 10001;
      background: #f7f7f7;
      /* color: #ddd; */
      z-index: 1000;
      padding: 1rem 1rem 0;
      /* border: 1px solid #1c1c1c;
      border-top: 1px solid #333; */
      border-radius:20px;
}
.inside_collapser {

    position: absolute;
    right: 10px;
    top: 20px;
    /* color: #666; */
    font-size: 6vw;
}
.nine_holes {
    display:inline-block;
    width:75%;
    position:relative;
}
.navInner-details {
    display: block;
    font-size:20px;
}
.navInner-details-hcp {
    display: block;
    margin-bottom:35px;
}
.hcp-input {
    border-radius: 0;
    background: #fff;
}
#hcp-container {
    background-color: #405e78;
    padding: 5px 0 30px 0;
}
.numberForm input[type=number] {
    font-size: 2.25em;
    font-weight: 600;
    text-align: center;
    color: #00284b!important;
    padding: 0.15rem 0.75rem;
}
.inv_menu_btn {
    border: 0;
    border-radius: 0;
    padding: 13px;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    background: inherit;
    color: inherit;
}
.inv_hcp_submit {
    border: 1px solid #ccc;
    background-color: #00284b;
    border-radius: 31px;
    padding-left: 25px;
    padding-right: 25px;
}
.inv_hcp_left {
    width: 120px;
    margin: 20px auto;
}
.nav_line .form {
    padding: 0;
}
.nav_line {
    width: 100%;
    position: relative;
    border-top: 2px solid #405e78;
}
.nav_line_last {
    border-bottom: 2px solid #405e78;
}
a:active, a:hover {
    text-decoration: none;
}
#backnine {
    display:none;
}


#review_scores_table {
    width:100%;
}
.review_scores_row {
    width:100%;
}
.review_scores_row td {
    width:4.4%;
    font-size: 18px;
    text-align: center;
}
.review_scores_name {
    width:20%!important;
    text-align: left!important;
}
#review_scores_table input {
  font-size: 18px;
  padding: 0;
  -webkit-appearance: none;
  display: block;
  color: inherit;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #757575;
  background: inherit;
  width: 100%;
  text-align: center;
}

@media (max-width: 767px) {
.leaderboard-module .my-favourite {
    width: 27px;
}
}
.leaderboard-module .my-favourite {
    width: 27px;
}

.even {
    background: #f7f7f7!important;
}
.odd {
    background: #fff!important;
}
.leaderboard-module .leaderboard>tbody>tr.line-row, .leaderboard-module .leaderboard>tbody>tr.pbp-line, .invPlayerTable>tbody>tr.line-row {
    border-bottom: 1px solid #e6e6e6;
}
/* :nth-child(even) */

.leaderboard-module .leaderboard-table, .invPlayerTable {
    color: #333;
    table-layout: fixed;
}

.leaderboard-module .leaderboard, .invPlayerTable {
    font-size: 3.75vw;
    line-height: 4.5vw;
    font-family: 'Roboto Condensed', sans-serif;
}

.leaderboard-module .leaderboard, .invPlayerTable {
    width: 100%;
    border-collapse: collapse!important;
    border-spacing: 0!important;
    margin-bottom:50px;
}
.invPlayerTable {
  table-layout: fixed;
    margin-bottom:0px!important;
}
.invPlayerTable .position {
    text-align: center;
    vertical-align: middle;
}
.leaderboard-module .leaderboard>tbody>tr>td, .invPlayerTable>tbody>tr>td {
    border-left: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
}
.leaderboard-module .leaderboard>tbody>tr>td:first-child, .invPlayerTable>tbody>tr>td:first-child {
    border-left: none;
}


.leaderboard-module .leaderboard>tbody>tr:first-child>td , .invPlayerTable>tbody>tr:first-child>td {
    border-top: none;
}

.leaderboard-module .leaderboard>tbody>tr>td, .leaderboard-module .leaderboard>thead>tr>th, .invPlayerTable>tbody>tr>td, .invPlayerTable>thead>tr>th {
    padding: 2.5vw 0; /* 13px 0; */
}


.leaderboard-module .leaderboard>tbody>tr>td.player-name .player-name-inner, .invPlayerTable>tbody>tr>td.player-name .player-name-inner {
    margin-right: 15px;
    line-height: 28px;
    color: inherit;
}

.leaderboard-module .player-name .player-name-col {
    cursor: pointer;
}

.leaderboard-module .player-name-col, .invPlayerTable .player-name-col, .player-name-inner {
    float: left;
    font-family: Roboto Condensed,sans-serif;
    font-weight: 700;
    letter-spacing: -.35px;
}
.position, .total, .thru, .round {
    width:10%!important;
}
.om_pts {
    width:15%!important;
    text-align: center;
}
.sm_col {
   width:12%;
}
.med_col {
   width:23%;
}
.fs-18px, .nav_line input {
    font-size: 4vw;
}
.fs-65vw {
    font-size: 6.5vw;
}
.whatsapp {
    font-family: helvetica;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 4vw;
    line-height: 4vw;
}
.wa-green {
    background: #2bb741;
}
.OoM_table {
    width: 60%;
    margin: 10px auto 65px;
}
.OoM_table td, .OoM_table th {
    width: 50%;
    padding: 5px;
    text-align: center;
    border-left: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
}
.OoM_table th {
    background: #00284b;
    color: #fff;
}
.player-name {
    text-align: left!important;
    padding-left: 10px!important;
}
.justify-center {
    justify-content: center;
}
.lb_day_scoreboard_container {
  /*  border-bottom: 1px solid #bfbfbf; */
}
.leaderboard_headline {
  width: 100%;
  display: block;
    color: #efefef;
    background: #00284b;
    border-bottom:1px solid #405e78;
    padding: 8px 0px;
    z-index:100003;
}
.bottom_menu {
  width: 100%;
  display: block;
    color: #00284b;
    background-color: rgba(255, 255, 255, 0.9);
    border-top:1px solid #ddd;
    padding: 12px 0px;
    z-index:1003;
text-align: center;
text-transform: uppercase;
font-size: 25px;
font-weight: 600;
height:65px;
font-family: 'Rajdhani','Roboto Condensed', sans-serif;
margin: 0 auto;
position: fixed;
bottom: 0;
left: 0;
}

.logo_container {
    width: 100%;
    display: block;
    color: #00284b;
    padding: 8px 0px;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'Abril Fatface', sans-serif;
    padding: 32px 0px;
    margin: 0 auto;
    font-size: 39px; /* 9vw; */
    height: 114px;
}
.sc_spacer {
    /* height: 47px; */
    height: 0;
}
.sc_day_picker {
  display: inline-block;
  width: 7.5vw;
  height: 7.5vw;
  line-height: 7vw;
  /* font-size: 3.5vw; */
  color: #bababa;
  border-radius: 50%;
  border: 1px solid #bababa;
  text-align: center;
  margin-right: 5px;
  /* font-weight: 600;
  background: #ffffff; */
}
.round_container {
    position: relative;
    bottom: 0;
    width: 98%;
    padding-bottom: 5px;
}
.round_picker .active {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  /* font-weight: 600; */
}
.sc_day_picked {
    display:none;
}
.sc_day_1 {
    display:block;
}
.sc_day {
    margin: 20px 0;
}
.admin_icon, .score_icon {
    padding: 7px 0;
}
.flag-icon-background {
    width: 4vw;
    height: 3vw;
    display: inline-flex;
    float:left;
    margin-right:10px;
}
.vert_separator {
  display: block;
  width: 100%;
  /*bheight: 5px; */
  border-top: 2px solid #000;
  margin-top: 10px;
}
.round_picker {
    text-align: left;
    margin-left: 0px;
    width: 100%;
    font-size:3.5vw;
    padding: 0;
}
.round_selector {
    padding-right: 5px;
}
.round_selector .active {
    background: #f4f4f4;
}
.navInner {
    padding: 15% 0 70%;
    background-color:#00284b;
    margin-top: 0;
}
.loginForm {
    max-width: 400px;
    margin: 0 auto;
}
.inv_logo {
  margin-bottom: 0;
}
.inv_logo_small {
  width: 140px;
}
.logout .inv_logo {
    display:none;
}
.save_score_container {
    position: absolute;
    bottom: 40px;
    width: 100%;
}
.modal {
    top: 50px;
}
.individualScoreModal {
    top: 0px;
    margin:5px;
}
.admin_teetime {
  display: inline-block;
  text-align: center;
  font-size: 20px;
  width: 88px;
  padding: 7px;
  margin: 5px;
  background: #00284b;
  color: #fff;
}
.admin_teetime_120 {
  width: 120px;
  position: relative;
  padding-right: 40px;
}
.player_item {
    line-height: 28px;
    color: inherit;
    padding: 7px 10px;
    font-family: 'Roboto Condensed',sans-serif;
    font-weight: 700;
    letter-spacing: -.1px;
    border-bottom: 1px solid #e6e6e6;
}
.admin_player_item {
    line-height: 34px;
}
.count_admin {
    display: inline-block;
    float: left;
    width: 36px;
    text-align: center;
    border-right: 1px solid #e6e6e6;
    margin-right: 12px;
    padding-right: 10px;
}
.hcp_admin {
    width: 40px;
    display: inline-block;
    float: right;
    text-align: center;
    border-left: 1px solid #e6e6e6;
    padding-left: 8px;
}
.admin_circle_btn {
    border: 1px solid #00284b;
    border-radius: 50%;
    text-align: center;
    width: auto;
    padding: 0;
    width: 25px;
    height: 25px;
    background: transparent;
}
.abs_admin_circle_btn {
    position: absolute;
    left: 10px;
}
.rel_admin_circle_btn {
    display:block;
    line-height: 25px;
    margin-top: 4px;
}
.tee_admin_circle_btn {
    position: absolute;
    right: 0;
    width: 44px;
    height: 44px;
    top: 0;
    display: block;
    line-height: 42px;
    border: 3px solid #00284b;
    text-align: center;
    border-radius: 50%;
    background: #e6e6e6;
    color: #00284b;
}
/* {
    position: absolute;
    right: -2px;
    width: 48px;
    height: 48px;
    top: -2px;
    display: block;
    line-height: 46px;
    border: 2px solid #fff;
    text-align:center;
    border-radius: 50%;
} */
.hcp_sum {
    padding: 5px 10px;
    /* margin-right: 10px; */
    /* background: #00284b; */
    color: #777;
    font-weight: 900;
    border: none;
    width: 100%;
    text-align: right;
}
.tee_list_set {
    width: 100%;
    /* max-width: 330px; */
    margin: 0 auto;
    padding: 7px;
    /* background: #bfbfbf; */ /* #005f99; */
    color: #00284b;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    padding-left: 15px;
    margin-top: 10px;
    border-bottom: 1px solid #7f7f7f;
    text-align: center;
    position: relative;
}
@media screen and (max-width: 1023px) {
  .flag-icon-background {
      /* margin-top:3px; */
  }
  .navInner {
    margin-top: 0;
    background:#00284b;
    padding-bottom: 145%;
    position: fixed;
    width: 100%;
  }

}
@media (max-width: 767px) {
.leaderboard-module .leaderboard tbody tr td.player-name .player-name-col, .invPlayerTable tbody tr td.player-name .player-name-col, .player-name-inner {
    margin-right: 5px;
    line-height: 22px;
    white-space: nowrap;
}

.flag-icon-background {
    margin-top: 5px;
}
.pts0, .pts1, .pts2, .pts3, .pts4, .pts5, .pts6 {
  width: 6vw;
  line-height: 6vw;
}
.pts0, .pts4, .pts5, .pts6 {
  width: 6vw;
  line-height: 4.5vw;
}
.pts3 {
  /* width: 4.5vw; */
}
.sc_col_1, .sc_col {
    font-size: 3.75vw; /* 13px; */
    line-height:7.5vw;
}

}
.modal-backdrop
{
    /* opacity:0.75 !important; */
}
.individualScoreModalHeader {
  background: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 15px 1rem;
  font-size: 24px;
  border-bottom: 1px solid #e6e6e6;
  }
.modal-flag {
    height: 6vw;
    width: 6vw;
}
.individualScoreModalContent {
  background: #f7f7f7;
  border-radius: 20px;
  }
.individualScoreModalBody {
  padding: 1rem 0.5rem;
  /* min-height: 710px; */
  }
.individualScoreModalDialog {
      margin:0;
  }
@media (min-width: 576px) {
  .course_name, .sc_day .hcp_details {
      font-size: 3.5vw;
  }
  .individualScoreModalBody {
    min-height: 1110px;
    width: 100%;
    display:block;
    }
  .individualScoreModal {
      top:0;
  }
  .individualScoreModalDialog {
      max-width: 100%;
      margin:0;
  }
.join-container {
    /* display: none; */
    top: 15px;
    left: 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    z-index:100004;
}
.btn-unjoin, .btn-join {
  font-size:25px;
}
.leaderboard-module .leaderboard,  .leaderboard-module .leaderboard thead tr th {
      font-size: 18px;
      line-height: 24px;
}
.flag-icon-background {
    height: 24px;
    width: 24px;
}
.leaderboard-module .leaderboard>tbody>tr>td.player-name .player-name-inner {
    line-height: 24px;
}
.leaderboard-module .leaderboard>tbody>tr>td, .leaderboard-module .leaderboard>thead>tr>th {
    padding: 15px 0;
}
.leaderboard-module .leaderboard {
    line-height: 24px;
}
.inside_collapser {
    font-size: 30px;
    top:25px;
}
.sc_day_picker {
    width: 30px;
    height: 30px;
    line-height: 24px;
    font-size: 20px;
    border:3px solid #666;
}
.active {
    border:3px solid #ddd;
}
.round_picker {
    font-size:20px;
}
.pts0, .pts1, .pts2, .pts3, .pts4, .pts5, .pts6 {
  width: 5.5vw;
  line-height: 5vw;
}
.pts0, .pts4, .pts5, .pts6 {
  line-height: 4.5vw;
}
.stats_link {
    top: 25px;
}
.stats-title {
    padding-top: 30px;
}
}

@media screen and (min-width: 1024px) {
.lb_day_scoreboard_container, .big100 {
    width: 1024px;
}
.admin_icon, .score_icon {
    /* padding: 15px 0; */
}
.sc_spacer {
    height: 79px;
}
body {
    background: #ddd;
    position: relative;
    left: 0;
}
.leaderboard_headline {
    /* width: 1024px; */
    margin: 0 auto;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 100;
    /* padding: 15px; */
}
.bottom_menu {
    /* width: 1024px; */
    margin: 0 auto;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 100;
    /* padding: 15px; */
}
.small-btn-text {
    font-size: 16px;
}
.score_icon {
    left: 15%;
}
.refresh_icon {
    left: 30%;
}
.message_icon {
    right: 30%;
}
.admin_icon {
    right: 15%;
}
.container {
    max-width: 1024px;
}
.sc_col_1, .sc_col {
    font-size: 30px;
    line-height:70px;
}
.course_name {
    font-size: 36px;
}
.format_details, .hcp_details {
    font-size: 24px;
}
.pts0, .pts1, .pts2, .pts3, .pts4, .pts5, .pts6 {
    width: 67px;
    line-height: 62px;
}
.pts0, .pts4, .pts5 {
  line-height: 56px;
  /*    width:70px; */
}
.stats-title {
    font-size: 32px;
    padding-top: 32px;
}
.stats_par, .stats_name {
    font-size: 28px;
}
.stats_diff {
    font-size: 36px;
    left: 20%;
}
.stats_label {
    font-size: 24px;
}
.score_icon {
    display:none;
}
.inv_gallery img {
  max-width:250px;
  margin:0;
  padding:0;
}
}
.card .club_logo  {
    top: 20px;
    right: 20px;
    position: absolute;
}
.card .club_logo_img {
    max-height: 65px;
    max-width: 100px;
    -webkit-filter: brightness(125%) drop-shadow(9px 9px 9px #111111);
    filter: brightness(125%) drop-shadow(9px 9px 9px #111111);
    /*
    -webkit-filter: saturate(800%) contrast(0%) brightness(800%)
        invert(0%) sepia(0%) hue-rotate(0deg) drop-shadow(5px 5px 5px #111111);
    filter: saturate(800%) contrast(0%) brightness(800%)
      invert(0%) sepia(0%) hue-rotate(0deg) drop-shadow(5px 5px 5px #111111);
    */
}
.flag_icon_admin {
    margin-top: 11px;
}
@media screen and (min-width: 1025px) {
.sc_spacer {
    height: 0;
}
}
.favorite {
    margin-left: 5px;
    background: #bb0000;
    color: #fff;
    padding: 3px 6px;
    font-size:12px;
    text-transform: uppercase;
    border-radius:6px;
}
.card {
  border-radius: .5rem;
  margin: 20px 15px;
  height:200px;
  background: #000;
  border:1px solid #ddd;
  font-family: 'Roboto Condensed', sans-serif;
  box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
}
.card-img-top {
    border-radius: .5rem;
    z-index:1;
    position:absolute;
    height:200px;
    opacity: 0.65;
    -webkit-filter: brightness(125%);
    filter: brightness(125%);
}
.admin-img-top {
  filter: grayscale(1.0);
}
.card-body {
  z-index:2;
  padding: 4vw;
}
.card-contents {
    position: absolute;
    bottom: 20px;
}
.card-title {
  /* -webkit-text-stroke: 2px #000; */
    font-weight: 600;
    color: #ededed;
    font-size: 6vw;
    padding-top: 0;
    text-shadow: 3px 4px 2px rgba(0,0,0,0.6);
    text-transform: uppercase;
    margin-bottom: .25rem;
}
.card-date {
    color: #ededed;
    text-shadow: 3px 4px 2px rgba(0,0,0,0.6);
    font-size: 4.5vw;
    font-weight: 400;
}
.card-btn {
  position:absolute;
  z-index:2;
  right:0;
  bottom:10px;
  font-weight: 900;
  color: #fff;
  font-size: 42px; /* 12vw; */
  background: none;
  border: none;
  /*border:1px solid #fff;
  border-radius: 25px;
  background: #fff;
  width: 70px;
  text-align:center; */
}
.card-btn:hover, .card-btn:active {
  color: #0056b3;
}
.event_header .card {
  border-radius: 0;
  margin: 0;
  height:200px;
  border:none;
}
.event_header .card-img-top {
    border-radius: 0;
}
.event_header .card-title {
    font-size: 6vw;
    padding-top: 0;
}
.event_header .card-date {
    font-size: 4vw;
}
.event_header {
    border-bottom: 1px solid #405e78;
    /* border-top: 1px solid #405e78; */
}
.no-display, .no_display {
    display:none;
}
.display-block {
    display:block;
}
.oom-year {
    position: relative;
}
.oom-year-select {
    position: absolute;
}
.oom-year-select-left {
    left: 35%;
}
.oom-year-select-right {
    right: 35%;
}
.red_col {
    color: #990000;
}
.team_leaderboard {
  width:100%;
  display: block;
  background: #fff;
  white-space:nowrap;
    text-align:center;
}


.team_score {
  width:33.3%;
  display: inline-block;
  background: #e6e6e6;
  text-align:center;
  border-left: 1px solid #00284b;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #00284b;
}
.team_score_25 {
  width:25%;
}
.team_score:first-child {
  border-left:none;
}
.team_name {
  font-size: 3.5vw;
  font-weight:600;
  text-transform: uppercase;
}

.team_pts {
  font-size: 9.5vw;
  font-weight:900;
  text-transform: uppercase;
  padding: 0;
}

.back-btn-div {
  width: 50px;
      position: fixed;
      z-index: 1049;
      bottom: 10px;
      display: block;
      text-align: center;
      left: 44.25%;
}
.back-btn {
  margin:0 auto;
  font-weight: 900;
  color: #00284b;
  font-size: 50px;
  /*border:1px solid #fff;
  border-radius: 25px;
  background: #fff;
  width: 70px;
  text-align:center; */
}
.statistics {
    margin-bottom: 100px;
}
.dataTables_wrapper {
    width: 100%;
    /* margin: 15px; */
}
.invPlayerTable_wrapper input, #invRosterTable_wrapper input, .dataTables_wrapper input {
  border-radius: 3px;
  border-bottom: none;
  background: #fff;
  padding: 5px;
  /* position: absolute;
  left: 48%;
  top: 39px; */ /* 7%; */
}
.topic-header {
    display: block;
    margin: 30px auto 0;
font-size: 5.5vw;
font-weight: 700;
text-align: center;
color: #00284b;
text-transform: uppercase;
}
.oom-year {
    margin-top: 0;
    font-size: 4.5vw;
}
.dataTables_wrapper .dataTables_filter input {
    margin-left: 0!important;
    font-size: 14px;
}
.hof-container {
    background: #fff;
    background: rgb(238,238,238);
    background: linear-gradient(180deg, rgba(238,238,238,1) 35%, rgba(255,255,255,1) 100%);
    height: fit-content;
    box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
}
.hof-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 5.5vw;
    font-weight: 900;
    color: #666;
}
.hof-winner {
    font-family: 'Rajdhani', sans-serif;
    font-size: 7vw;
    line-height: 8vw;
    font-weight: 900;
    color: #00284b;
    text-transform: uppercase;
}
.hof-type {
  position: absolute;
top: 3vw;
right: 3vw;
padding: 1px 10px;
background: #f4c602;
border-radius: 3px;
text-transform: uppercase;
font-size: 3vw;
color: #fff;
font-weight: 900;
  background: rgb(237,192,3);
  background: linear-gradient(180deg, rgba(237,192,3,0.9143518518518519) 35%, rgba(244,198,2,1) 100%);
}
.type1 {
  background: rgb(237,192,3);
  background: linear-gradient(180deg, rgba(237,192,3,0.9143518518518519) 35%, rgba(244,198,2,1) 100%);
}
.type2 {
  background: rgb(3,192,237);
background: linear-gradient(180deg, rgba(3,192,237,1) 35%, rgba(2,198,244,1) 100%);
}
.type3 {
  background: rgb(147,192,45);
  background: linear-gradient(180deg, rgba(147,192,45,1) 35%, rgba(146,198,36,1) 100%);
}
.type4 {
  background: rgb(227,46,46);
  background: linear-gradient(180deg, rgba(227,46,46,1) 35%, rgba(198,36,36,1) 100%);
}
.type5 {
  background: rgb(46,46,46);
  background: linear-gradient(180deg, rgba(37,37,37,0.9143518518518519) 35%, rgba(44,44,44,1) 100%);
}
.hof-date {
    line-height: 3vw;
    padding-bottom: 12px;
    font-style: italic;
    font-size: 3.5vw;
}
.card-max {
    position: absolute;
    right: -145px;
    bottom: 0px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    color: #ededed;
    background: #6e6e6e;
    padding: 2px 10px;
}
@media (min-width: 768px) {
  .individualScoreModalBody {
      min-height: 680px;
  }
.card-title, .event_header .card-title {
    font-size: 36px;
}
.card-date, .event_header .card-date {
    font-size: 26px;
}
.card-body {
  padding: 1.25rem;
}
.topic-header {
    font-size: 32px;
}
.leaderboard-module .leaderboard>tbody>tr>td, .leaderboard-module .leaderboard>thead>tr>th, .invPlayerTable>tbody>tr>td, .invPlayerTable>thead>tr>th {
    padding: 12px 0;
}
.leaderboard-module .leaderboard thead tr th, .invPlayerTable thead tr th,
.leaderboard-module .leaderboard thead tr td, .invPlayerTable thead tr td,
.leaderboard-module .leaderboard, .invPlayerTable {
    font-size: inherit;
    line-height: inherit;
}
.dataTables_wrapper .dataTables_filter, .dataTables_paginate {
  width:100%;
  text-align:center!important;
}
.card, .card-img-top, .event_header .card, .event_header .card-img-top {
    height: 400px;
}
.tournament-container, .tournament-container .card-img-top {
    height: 280px;
}
.hof-container {
    height: fit-content;
}
.hof-type {
    font-size: 14px;
    top: 15px;
    right: 15px;
}
.hof-body {
    font-size: 16px;
}
.hof-date {
    font-size: 14px;
    line-height: 26px;
}
.hof-title {
    font-size: 28px;
    line-height:28px;
}
.hof-winner {
    font-size: 36px;
    line-height: 40px;
}
.card-contents {
    bottom: 20px;
    left: 35px;
}
.team_name {
    font-size: 32px;
}
.team_pts {
    font-size: 70px;
}
.leaderboard {
    margin-bottom: 50px;
}
.card-btn {
    right: 20px;
}
.dataTables_wrapper .dataTables_filter input {
    font-size: 16px;
}
.topic-header {
    width:100%;
}
.card .club_logo_img {
      max-height: 130px;
      max-width: 200px;
}
.card .club_logo {
    top: 25px;
    right: 35px;
}
.back-btn {
    font-size: 46px;
}
.back-btn-div {
    left: 49%;
}
.fs-18px, .nav_line input {
    font-size: 1vw;
}
.wa-green {
    display: none;
}
.navInner {
    padding: 3% 0 70%;
}
}
/* START - styling of select tee checkboxes */
.tee_container input[type="radio"] {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  border: 2px solid #1FBED6;
  background-color: white;
  -webkit-appearance: none; /*to disable the default appearance of radio button*/
  -moz-appearance: none;
}

.tee_container input[type="radio"]:focus { /*no need, if you don't disable default appearance*/
  outline: none; /*to remove the square border on focus*/
}

.tee_container input[type="radio"]:checked { /*no need, if you don't disable default appearance*/
  background-color: #1FBED6;
}

.tee_container input[type="radio"]:checked ~ span:first-of-type {
  color: white;
}

.tee_container label span:first-of-type {
  position: relative;
  left: -27px;
  font-size: 15px;
  color: #1FBED6;
}

.tee_container label span {
  position: relative;
  top: -12px;
}
/* END - styling of select tee checkboxes */

.multi_container {
    width: 100%;
	font-weight: 700;
  font-size:20px;
  text-transform:uppercase;
  margin-bottom: 80px;
}
.multi_headline {
    background: #00284b;
  	color: #fff;
  	text-align: center;
    padding: 5px 0;
    text-transform: uppercase;
    font-size: 20px;
}
.multi_container table {
    width: 100%;
}
.multi_names {
    width: 70%;
  padding: 15px;
}
.multi_pts {
    width: 30%;
  padding: 15px 0;
  text-align:center;
}
.a_dmin_icon, .s_core_icon, .n_ew_message_alert {
    padding: 11px 0;
    text-align: center;
    display: block;
    width:20%;
    height:50px;
    margin: 0 auto;
    position:fixed;
    color: #00284b;
    bottom: 0;
    left:0;
}
.bottom-menu-block {
    display: inline-block;
    position: absolute;
    width: 24%;
    padding: 5px 0;
    text-align: center;
    bottom: 0; /* -7px; */
    color: #00284b;
}
.bottom-menu-panel {
    background: transparent;
    border: none;
    color: #00284b;
    line-height: 1.9;
}
.new_message_alert {
  right: 20%;
    /*position:relative;
    color: #fefefe;
    font-size: 24px;
    display:inline-block; */
}
.score_icon {
  left: 0;
}
.admin_icon {
  right: 0;
}
.message_icon {
  right: 20%;
}
.refresh_icon {
  left: 20%;
}
.score_icon_inactive {
  color: #bbb!important;
}
.pos_count {
    position: absolute;
    left: 54px;
    font-size: 13px;
    top: 8px;
    width: 20px;
    text-align: center;
    font-family: sans-serif;
    font-weight: 700;
}
.unread_count {
    display: block;
    width: 12px;
    height: 12px;
    background: #990000;
    border-radius: 50%;
}
.fa-comment {

}
.calendar-event {
    background: #efefef;
    height: 80px;
}
.calendar-event-date {
    display: inline-block;
    width: 50px;
    text-align: center;
}
.calendar-event-title {
    display: inline-block;
    /* text-transform: uppercase; */
    font-weight: 600;
    font-size: 24px;
    padding-left: 5px;
    text-align: center;
    vertical-align: top;
    line-height: 81px;
    color: #454545;
}
.calendar-event-month {
    font-weight: 100;
    text-transform: uppercase;
}
.calendar-event-day {
    font-size: 32px;
    font-weight: 900;
    margin-top: -8px;
}
.calendar-event-body {
    padding: 3vw;
}
@media only screen and (max-height: 575.98px) and (orientation: landscape) {
.hide_portrait {
   display: block;
}
.hide_landscape {
   display: none;
}
  .leaderboard-module .leaderboard thead tr th, .invPlayerTable thead tr th, .leaderboard-module .leaderboard thead tr td, .invPlayerTable thead tr td, .leaderboard-module .leaderboard, .invPlayerTable {
    font-size: 3vw;
    line-height: 4vw;
}
  .flag-icon-background {
    height: 4vw;
}
  .leaderboard-module .leaderboard>tbody>tr>td.player-name .player-name-inner {
    line-height: 4vw;
}
}
