

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
}
html {
    width: 100%;
    height: 100%;
}
body {
    width: 100%;
    height: 100%;
    position: relative;
    color: #51565f;
    background-color: #505660;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Proxima Nova' ,sans-serif;
    /*background-image: url('../img/darkbg.jpg');*/
}
body.popupOpen {
    overflow: hidden;
}
.outerwrapper {
    /* padding-top: 204px; */
    background-color: #eeeeee;
}
::selection {
  background: #dedede; /* WebKit/Blink Browsers */
  color: #fff;
}
::-moz-selection {
  background: #dedede; /* Gecko Browsers */
  color: #fff;
}
a,
a:visited {
    color: #048760;
    text-decoration: none;
    -webkit-transition: color .2s linear, background-color .2s linear;
    -moz-transition: color .2s linear, background-color .2s linear;
    transition: color .2s linear, background-color .2s linear;
}
a:hover {
    color: #10af7f;
    text-decoration: none;
}
strong {
    font-weight: 600;
    /* color: #222; */
}
button, .button,
button:visited, .button:visited {
    background-color: #048760;
    color: #fff;
    position: relative;
    border-radius: 0;
    -webkit-transition: color .2s linear, background-color .2s linear;
    -moz-transition: color .2s linear, background-color .2s linear;
    transition: color .2s linear, background-color .2s linear;
    font-family: 'Sabon LT Pro';
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.7px;
    padding: 20px 34px;
    line-height: 1;
}
button:hover, .button:hover {
    background-color: #099a6f;
    color: #fff;
    /* border-color: #51565f; */
}
button:disabled,
button.disabled,
.button:disabled,
.button.disabled {
    background-color: #80c3af;
}
.button:not(.outline):focus,
button:not(.outline):focus {
/*    background-color: #ff5ab6;
    border: none;
    box-shadow: none;*/
}
.button.outline,
button.outline {
    border-color: #ff5ab6;
    color: #51565f;
}
.button.outline:hover,
button.outline:hover {
    border-color: #fff;
    color: #ff5ab6;
    background-color: #fff;
}
/*.button.gold,
button.gold {
    border-color: #048760;
    background-color: #048760;
    color: #fff;
}
.button.gold:hover,
button.gold:hover {
    border-color: #048760;
    color: #fff;
    background-color: #048760;
}*/
.button.blue,
button.blue {
    border-color: #4f5661;
    background-color: #4f5661;
    color: #fff;
}
.button.blue:hover,
button.blue:hover {
    border-color: #4f5661;
    color: #fff;
    background-color: #4f5661;
}
.button.white,
button.white {
    border-color: #fff;
    background-color: #fff;
    color: #51565f;
}
.button.white:hover,
button.white:hover {
    border-color: #fff;
    color: #ff5ab6;
    background-color: #fff;
}
.button.sub,
button.sub {
    font-size: 14px;
    padding: 11px 23px 11px 23px;
    background-color: #d8d8d8;
    color: #383838;
}

form {
    margin-bottom: 0;
}
form .buttons {
    margin-top: 32px;
}

input, textarea, select {
    border-radius: 0;
    height: 56px;
    border: none;
    padding: 4px 26px 0 26px;
    font-size: 16px;
    border: none;
    /* border-bottom: 2px solid #4f5661; */
    background-color: #f7f7f7;
}
input[disabled], textarea[disabled], select[disabled],
input[readonly], textarea[readonly], select[readonly] {
    opacity: .5;
}
::placeholder {
  color: #d2d5d9;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #d2d5d9;
}
::-ms-input-placeholder {
  color: #d2d5d9;
}
textarea {
    height: 161px;
    padding-top: 13px;
}
label {
    margin-bottom: 22px;
}
label input, label textarea, label select {
    margin-top: 3px;
}


ul li,
p {
    -ms-word-break: normal;
    -ms-word-wrap: normal;
    word-break: normal;
    color: #505660;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.675em;
    margin-bottom: 21px;
}
p:last-child {
    margin-bottom: 0;
}
ul li {
    margin-bottom: .7em;
    line-height: 1.4em;
}

img {
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear;
    -webkit-transform: translateZ(0);
}

h1, h2, h3, h4 {
    font-weight: 500;
    color: #35383d;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.1px;
    font-size: 36px;
    display: block;
    font-family: 'Proxima Nova';
}
h1, .h1 {
    font-size: 46px;
    font-family: 'Sabon LT Pro';
}
h2, .h2 {
    font-size: 32px;
    margin-bottom: 23px;
    font-family: 'Sabon LT Pro';
}
h3, .h3 {
    font-size: 22px;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    font-weight: 600;
    /* text-transform: uppercase; */
    color: #048760;
}
h4, .h4 {
    font-size: 30px;
}

.msg {
    margin-bottom: 20px;
}
.msg {
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
    text-align: center;
    font-size: 17px;
    border-radius: 3px;
}
.msg.success {
    background-color: #23e295;
}
.msg.error {
    background-color: #ea3958;
}

.errormsg {
    color: #ea3958;
    float: right;
}

.flexcont {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    background-color: rgba(46, 50, 59, 0.18);
    transition: all .2s linear;
}
/**:hover > .flexcont {
    background-color: rgba(0,0,0,0.5);
}*/
.flexcont .inner {
    padding: 40px 55px;
    text-align: center;
}
.flexcont .inner h3 {
    margin-bottom: 2px;
    font-weight: 500;
    color: #fff;
}

.wrapper {
    width: 1300px;
    max-width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
}
.innerwrapper {
    width: 950px;
    max-width: calc(100% - 140px);
    margin-left: auto;
    margin-right: auto;
}

.label {
    padding: 5px 9px 5px 9px;
    border-radius: 0;
    background-color: #ffffff;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9em;
    position: relative;
    z-index: 2;
}
.label.small {
    padding: 2px 7px 0px 7px;
    font-size: 0.8em;
}

.loading {
    position: relative;
}
.loading:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    background: rgba(0,0,0,0);
    border-radius: 50%;
    margin: -7.5px 0 0 -7.5px;
    animation: load 3s ease-in-out infinite;
    z-index: 5;
}
@keyframes load {
  0% {box-shadow:15px 15px 0 0 #ffffff, -15px 15px 0 0 #ffffff, -15px -15px 0 0 #ffffff;}
  8% {box-shadow:15px -15px 0 0 #ffffff, -15px 15px 0 0 #ffffff, -15px -15px 0 0 #ffffff;}
  17% {box-shadow:15px -15px 0 0 #ffffff, 15px 15px 0 0 #ffffff, -15px -15px 0 0 #ffffff;}
  25% {box-shadow:15px -15px 0 0 #ffffff, 15px 15px 0 0 #ffffff, -15px 15px 0 0 #ffffff;}
  33% {box-shadow:-15px -15px 0 0 #ffffff, 15px 15px 0 0 #ffffff, -15px 15px 0 0 #ffffff;}
  42% {box-shadow:-15px -15px 0 0 #ffffff, 15px -15px 0 0 #ffffff, -15px 15px 0 0 #ffffff;}
  50% {box-shadow:-15px -15px 0 0 #ffffff, 15px -15px 0 0 #ffffff, 15px 15px 0 0 #ffffff;}
  58% {box-shadow:-15px 15px 0 0 #ffffff, 15px -15px 0 0 #ffffff, 15px 15px 0 0 #ffffff;}
  67% {box-shadow:-15px 15px 0 0 #ffffff, -15px -15px 0 0 #ffffff, 15px 15px 0 0 #ffffff;}
  75% {box-shadow:-15px 15px 0 0 #ffffff, -15px -15px 0 0 #ffffff, 15px -15px 0 0 #ffffff;}
  83% {box-shadow:15px 15px 0 0 #ffffff, -15px -15px 0 0 #ffffff, 15px -15px 0 0 #ffffff;}
  92% {box-shadow:15px 15px 0 0 #ffffff, -15px 15px 0 0 #ffffff, 15px -15px 0 0 #ffffff;}
  100% {box-shadow:15px 15px 0 0 #ffffff, -15px 15px 0 0 #ffffff, -15px -15px 0 0 #ffffff;}
}

.grecaptcha-badge {
    display: none;
}



.white-popup-block {
    background-color: #fff;
    padding: 40px;
    width: 600px;
    max-width: 90%;
    margin: 0 auto;
    position:  relative;
}
.white-popup-block .buttons {
    margin-top: 35px;
}

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

.outerwrapper header {
    width: 100%;
    z-index: 10;
    position: static;
    top: 0;
    left: 0;
    z-index: 25;
    padding: 0;
    background-color: #fff;
}
.outerwrapper header .top {
    padding: 10px 0;
    background-color: #f7f7f7;
    margin-bottom: 13px;
}
.outerwrapper header .top .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.outerwrapper header .top .status strong.open {
    display: inline-block;
    color: #048760;
}
.outerwrapper header .top .weather span.icon {
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px;
}
.outerwrapper header .top .weather span.icon img {
    max-height: 100%;
}
.outerwrapper header .wrapper {
    position: relative;
    /* padding: 60px; */
}
.outerwrapper header a.logo {
    display: block;
    height: 70px;
    width: 100%;
}
.outerwrapper header a.logo h1 {
    color: white;
    margin-bottom: 0;
}
.outerwrapper header a.logo img {
    display: block;
    max-height: 100%;
}
.outerwrapper header .leftheader {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.outerwrapper header .rightheader {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* padding-top: 30px; */
}
.outerwrapper header .rightheader a.login {
    display: inline-block;
    margin-right: 30px;
}
.outerwrapper header .rightheader a.login i.fa {
    display: inline-block;
    margin-right: 7px;
}
.outerwrapper header .rightheader .socials {
    margin-left: 31px;
}
.outerwrapper header .rightheader .socials a {
    color: #ff5eb5;
}
.outerwrapper header nav {
    background-color: #51565f;
    margin-top: 14px;
}
.outerwrapper header nav ul {
    position: relative;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
 }
/*.outerwrapper header nav ul:after {
    content: '';
    position: absolute;
    top: 50%;
    height: 40px;
    margin-top: -26px;
    left: -140px;
    right: -140px;
    background-color: #70952b;
    opacity: 1;
    z-index: 5;
}*/
.outerwrapper header nav ul li {
    display: inline-block;
    position: relative;
    z-index: 10;
    margin-bottom: 0;
}
.outerwrapper header nav ul li.home {
    display: none;
}
.outerwrapper header nav ul li a:visited,
.outerwrapper header nav ul li a {
    display: block;
    padding: 18px 0 17px 0;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 14px;
    color: #fff;
}
.outerwrapper header nav ul li a span.caret {
    margin-right: -10px;
}
.outerwrapper header nav ul li:hover a,
.outerwrapper header nav ul li.active a {
    color: #ffffff;
}
.outerwrapper header nav ul li:last-child a {
    padding-right: 0;
}
.outerwrapper header nav ul li:last-child {

}
.outerwrapper header nav ul li.tel a {
    font-family: 'Proxima Nova';
}
.outerwrapper header nav ul li .drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 230px;
    margin-left: -120px;
    background-color: #fff;
    text-align: center;
    /* background-position: center; */
    background-size: 100%;
    z-index: 200;
    padding: 6px 0px 4px 0px;
    box-shadow: 0px 2px 4px #51565f17;
}
.outerwrapper header nav ul li .drop li {
    display: block;
    width: 100%;
}
.outerwrapper header nav ul li .drop li a,
.outerwrapper header nav ul li .drop li a:visited {
    display: block;
    /*font-family: 'Proxima Nova';*/
    color: #51565f;
    padding: 20px 8px 0px 8px;
    /* font-size: 18px; */
    line-height: 1.4;
    letter-spacing: 1.9px;
}
.outerwrapper header nav ul li .drop li.active > a,
.outerwrapper header nav ul li .drop li:hover > a {
    color: #048760;
}
.outerwrapper header nav ul li .drop li:last-child a {
    padding-bottom: 23px;
}
.outerwrapper header nav ul li:hover > .drop {
    display: block;
}
.outerwrapper header nav ul li:hover .drop+span.caret {
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-top: -15px;
}
.outerwrapper header .rightheader .top {
    margin-bottom: 13px;
}
.outerwrapper header .rightheader .top a {
    color: #fff;
    font-family: 'Proxima Nova';
    letter-spacing: 2.4px;
    font-size: 1.3em;
    display: inline-block;
}


.outerwrapper header a.navlink {
    display: none;
    z-index: 10;
    float: right;
    margin-top: 0px;
    width: 35px;
    height: 29px;
    position: relative;
    border-bottom: 5px solid #fff;
    margin: 10px 0 0 25px;
}
.outerwrapper header a.navlink:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 100%;
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
}

.mm-menu {
    background-color: #505660;
}
.mm-menu .mm-navbar a, .mm-menu .mm-navbar>* {
    color: #fff;
}
.mm-listview>li>a,
.mm-listview>li>span {
    color: #ffffff;
    font-family: 'Proxima Nova';
    font-size: 25px;
    /* text-transform: uppercase; */
    font-weight: 600;
    letter-spacing: 1.4px;
    padding: 17px 10px 17px 20px;
}
.mm-listview>li span.caret {
    display: none;
}
.mm-menu .mm-btn:after, .mm-menu .mm-btn:before,
.mm-menu .mm-listview>li .mm-next:after {
    border-color: #fff;
}
.mm-menu .icon-down-dir.arrow {
    display: none;
}

.pagination a.current {
    font-weight: 500;
}
.pagination a:hover {
    border-color: transparent;
}

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

section {
    padding: 60px 0;
    position: relative;
    background-color: #ffffff;
}
section p a,
section p a:visited {
  color: #51565f;
}
section p a:hover {
}

section.heading h2, section.heading .h2 {
    /* padding-bottom: 20px; */
    /* position: relative; */
    text-align: center;
}
section.heading h2 + p, section.heading .h2 + p {
    text-align: center;
    margin-bottom: 40px;
}
section h2:after, section .h2:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 60px;
    background-color: #ffffff;
    content: '';
    display: none;
}
section .vertline {
    display: flex;
    align-items: center;
    justify-content: center;
}
section .vertline:before {
    width: 1px;
    background-color: #000;
    height: 90%;
    opacity: .1;
    content: '';
}

section.blue {
    background: #f7f7f7;
}

section .box {
    padding: 50px;
    background-color: #fff;
}
#account .accountnav {
    padding-top: 35px;
}
#account .accountnav ul {
    list-style: none;
}
#account .accountnav ul li {
    display: block;
}
#account .accountnav ul li a {
    display: block;
    color: #444;
}

#account section.login .forgot {
    display: inline-block;
    margin-left: 20px;
}

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

section.hero {
    min-height: calc(60vh - 115px);
    background-size: cover;
    background-position: center;
    background-color: #252e3f;
    overflow: hidden;
    /*height: calc(100vh - 204px);*/
    /* border-bottom: 40px solid #f4f4f4; */
}
section.hero h1,
section.hero h2 {
    color: #fff;
    font-size: 104px;
    margin: 2px 0;
    letter-spacing: -1.3px;
}
#home section.hero {
    /*min-height: calc(80vh - 115px);*/
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#home section.hero .zoomimage {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    animation: zoom 30s ease-in-out infinite alternate;
    -webkit-animation: zoom 30s ease-in-out infinite alternate;
    opacity: 0.8;
}
@keyframes zoom {
    0% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.4);
    }
}
#home section.hero .video-cover,
#home section.hero .video-cover video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
#home section.hero .video-cover {
    overflow: hidden;
    background-image: url('../hero-cover.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-filter: saturate(1.25) brightness(0.9) contrast(1.4);
    filter: saturate(1.25) brightness(0.9) contrast(1.4);
}
#home section.hero .video-cover video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  /* -webkit-filter: saturate(1.25) brightness(0.9) contrast(1.4); */
  /* filter: saturate(1.25) brightness(0.9) contrast(1.4); */
}
#home section.hero img {
    max-width: 50%;
}
#home section.hero h1 {
    font-size: 75px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
#home section.hero h3 {
    font-size: 25px;
    margin: 0;
    color: #fff;
    font-family: 'Sabon LT Pro';
    text-transform: none;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #fff;
    display: inline-block;
}
#home section.hero h4 {
    font-size: 33px;
    margin: 0 0 10px 0;
    color: #fff;
    font-family: 'Sabon LT Pro';
    /* font-weight: 500; */
    /* letter-spacing: 1.8px; */
}
#home section.hero .buttons {
    margin-top: 25px;
}

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

#home section.intro {
    background-image: -webkit-gradient(linear,left bottom,left top,from(#f7f7f7),to(#fff));
    background-image: linear-gradient(0deg,#f7f7f7,#fff);
    background-size: 100% 1000px;
    background-position: bottom;
    background-repeat: no-repeat;
}
section.intro .text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 40px;
}
section.intro p {
    /* font-size: 20px; */
}
section.intro .image {
    position: relative;
}
section.intro .image img {
    display: block;
}
/**************************************/

section.boxes {
    background-color: #fff;
    /*background-color: #51565f;*/
}

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

section.news.events .row.around {
    margin-left: -4.2%;
}
section.news .post {
    padding: 33px 0 25px 0;
    border-bottom: 1px solid #50566014;
    display: block;
}
section.news .post:first-child {
    padding-top: 0;
}
section.news .post:last-child {
    padding-bottom: 0;
    border: none;
}
section.news .post h3 {
    margin-bottom: 12px;
    font-size: 17px;
}
section.news .post p {
    /* margin-bottom: 9px; */
    font-size: 16px;
    display: n;
}
section.news .post .meta {
    color: #6a7a90;
    font-size: 14px;
    font-family: 'Sabon LT Pro';
    font-weight: 500;
    font-style: italic;
    margin-bottom: 6px;
}

#home section.events .event h3 {
    font-size: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


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

section.sponsors {
    background-color: #f7f7f7;
    text-align: center;
    padding: 63px 0 50px 0;
}
section.sponsors h2 {
    margin-bottom: 20px;
}
section.sponsors .logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    /* padding: 20px; */
    /* background-color: white; */
    /* box-shadow: 0 10px 20px -10px #20276017; */
    border-radius:  4px;
}
section.sponsors .logos .logo {
    height: 100px;
    text-align: center;
    /* margin-right: 30px; */
    padding:  20px;
}
section.sponsors .logos .logo img {
    max-height: 100%;
    display: inline-block;
}

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

section.gallery .row {
    margin-left: -2% !important;
}
section.gallery a {
    margin-bottom: 26px;
    margin-left: 2% !important;
    width: calc(25% - 2%) !important;
}
section.gallery a img {
    display: block;
}

section.rules .text {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    -webkit-column-gap: 130px;
    -moz-column-gap: 130px;
    column-gap: 130px;
    position: relative;
}
section.rules .text:before {
    width: 1px;
    background-color: #000;
    height: 90%;
    opacity: .1;
    content: '';
    position: absolute;
    top: 5%;
    left: 50%;
}

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

#holes section.intro {
    padding-bottom: 40px;
}
#holes section.intro .holes-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#holes section.intro .holes-nav .hole-nav {
    padding: 3px 0 0 0;
    text-align: center;
    font-size: 28px;
    font-family: 'Sabon LT Pro';
    color: #505660;
    border-radius: 50%;
    background: #fff;
    width: 60px;
    display: inline-block;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 6px;
}
#holes section.intro .holes-nav .hole-nav:first-child {
    padding-left: 0;
}
#holes section.intro .holes-nav .hole-nav:last-child {
    border: none;
    padding-right: 0;
}
section.holes .hole {
    margin-bottom: 40px;
    padding-left: 56px;
    text-align: left;
    position: relative;
}
section.holes .hole h2 {
    text-align: right;
    display: inline-block;
    position: absolute;
    left: -6px;
    top: 9px;
    font-size: 40px;
    width: 42px;
}

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

#event section.intro h1 {
    margin-bottom: 0;
}
#event section.intro .date {
    margin-bottom: 30px;
    font-size: 17px;
    color: #a4a4a4;
}
section.events .event {
    margin-bottom: 30px;
    text-align: center;
}
section.events .event .image {
    margin-bottom: 14px;
}
section.events .event .image img {
    display: block;
}
section.events .event h3 {
    margin-bottom: 4px;
    font-size: 17px;
}
section.events .event .date {
    color: #505660;
}

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

#contact section.intro .address,
#contact section.intro .contacts {
    padding-top: 14px;
}
#contact section.intro .address p,
#contact section.intro .contacts p {
    padding-left: 20px;
    position: relative;
}
#contact section.intro .address p:before,
#contact section.intro .contacts p:before {
    content: "\f041";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    left: -17px;
    font-size: 28px;
    color: #505660;
    /* opacity: .3; */
}
#contact section.intro .contacts p.phone:before {
    content: "\f095";
    font-size: 29px;
}
#contact section.intro .contacts p.email:before {
    content: "\f0e0";
    font-size: 22px;
}
#contact section.intro .contacts .socials {
    margin-left: -20px;
}
#contact section.intro .contacts .socials a {
    margin: 0 20px 0 0;
    background-color: #f7f7f7;
    color: #505660;
    width: auto;
    font-size: 27px;
}

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

section .subscribe {
    text-align: center;
}
section .subscribe .wrapper {
    width: 600px;
}
section .subscribe h2 {
    margin-bottom: 20px;
}
section .subscribe form {
    display: flex;
    align-self: center;
}
section .testimonial {
    text-align: center;
}
section .testimonial .quote {
    padding: 0;
    margin-bottom: 20px;
}
section .testimonial .quote p {
    font-size: 19px;
}
section .testimonial .quote p:first-child:before {
    content: 'â€œ';
    display: inline;
}
section .testimonial .quote p:last-child:after {
    content: 'â€';
    display: inline;
}
section .testimonial strong.name {
    font-family: 'Sabon LT Pro';
    color: #949494;
    font-size: 18px;
}

/**************************************/
/** BOOKING ***************************/

section.book h1 {
    font-size: 40px;
}
section.book .daterow {
    background-color: #505660;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    padding: 19px 30px 15px 30px;
}
section.book.book-times h1 {
    text-align: center;
}
section.book.book-times .daterow {
    padding: 0;
}
section.book.book-times .daterow .days {
    background-color: #505660;
}
section.book.book-times .daterow .days .day {
    background-color: #505660;
    padding: 28px 20px 25px 20px;
    text-align: center;
    /*border-right: 1px solid #ffffff29;*/
    position: relative;
}
section.book.book-times .daterow .days .day:after {
    content: '';
    position: absolute;
    top: 19px;
    bottom: 19px;
    right: 0;
    width: 1px;
    background-color: #fff;
    opacity: .15;
}
section.book.book-times .daterow .days .day h3 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.9px;
    margin-bottom: 7px;
    /* display: inline-block; */
    /* border-bottom: 1px solid #ffffffc4; */
    /* padding: 0 3px 9px 3px; */
    font-family: 'Sabon LT Pro';
}
section.book.book-times .daterow .days .day h4 {
    color: #fff;
    /* text-transform: uppercase; */
    font-weight: 500;
    font-size: 17px;
    /* letter-spacing: 0.7px; */
    margin-bottom: 0px;
    font-family: 'Sabon LT Pro';
}

section.book.book-times .daterow .days .day:hover,
section.book.book-times .daterow .days .day.active {
    background-color: #626770;
}
section.book.book-times .daterow .days .day:hover h3,
section.book.book-times .daterow .days .day.active h3,
section.book.book-times .daterow .days .day:hover h4,
section.book.book-times .daterow .days .day.active h4 {
    /*color: #ae985e;*/
}
section.book.book-times .daterow .picker {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    position: relative;
    cursor: pointer;
}
section.book.book-times .daterow .picker:after {
    position: absolute;
    content: '';
    width: 23px;
    height: 21px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../img/calendar.svg');
    top: 40px;
    right: 42px;
    opacity: 0.5;
}
section.book.book-times .daterow .picker input {
    height: 50px;
    border-radius: 2px;
    border: none;
    /* text-align: right; */
    padding: 7px 22px 2px 22px;
    /* text-align: center; */
    cursor: pointer;
}

section.book.book-times .times.row {
    margin-left: -20px !important;
}
section.book.book-times .times .time {
    background-color: #00895d;
    margin-bottom: 15px;
    text-align: center;
    width: calc(16.66667% - 20px) !important;
    margin-left: 20px !important;
    position: relative;
    cursor: pointer;
    transition: background .2s ease-in-out;
    border-radius: 3px;
}
section.book.book-times .times .time h4 {
    font-size: 20px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
}
section.book.book-times .times .time .caret {
    font-size: 29px;
    display: inline-block;
    color: #fff;
    position: absolute;
    top: 11px;
    right: 10px;
    opacity: 0.2;
    transition: opacity .2s ease-in-out;
}
section.book.book-times .times .time:hover {
    background-color: #28a175;
}
section.book.book-times .times .time:hover .caret {
    opacity: 1;
}
section.book.book-times .times .time .top {
    padding: 16px 17px 14px 17px;
}
section.book.book-times .times .time .golfers {
    padding: 14px 15px 6px 15px;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.058);
    justify-content: space-between;
}
section.book.book-times .times .time .golfers .golfer {
    width: 19%;
    opacity: .2;
}

section.book.book-payment h1,
section.book.book-golfers h1 {
    color: #fff;
    margin-bottom: 0;
    font-size: 28px;
    font-family: 'Sabon LT Pro';
    font-weight: 500;
}
section.book.book-golfers .golfers .buttons {
    margin-bottom: 30px;
    text-align: center;
    margin-top: 0;
}
section.book.book-golfers .golfers .golfer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    opacity: .3;
}
section.book.book-golfers .golfers .golfer.active {
    opacity: 1;
}
section.book.book-golfers .golfers .golfer:last-child {
    margin-bottom: 0;
}
section.book.book-golfers .golfers .golfer .switcher {
    width: 56px;
    display: flex;
    justify-content: flex-start;
}
section.book.book-golfers .golfers .golfer .switcher h3 {
    font-size: 27px;
    margin-bottom: 0;
    font-family: 'Sabon LT Pro';
    font-weight: 500;
    color: #4f5661;
    width: 56px;
    height: 60px;
    background-color: #ededed;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding-top: 2px;
}
section.book.book-golfers .golfers .golfer .information {
    width: calc(100% - 56px);
    height: 60px;
    background-color: #f7f7f7;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 20px 10px 20px;
}
section.book.book-golfers .golfers .golfer .information h3 {
    margin: 0;
    font-size: 20px;
    margin-bottom: 0;
    font-family: 'Proxima Nova';
    font-weight: 600;
    color: #4f5661;
    line-height: 1;
    letter-spacing: 0.2px;
}

section.book .summary {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f3f8ff;
}
section.book .summary .form-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
section.book .summary .form-item:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    /* background-color: #4f5661; */
    opacity: 0.15;
    border-bottom: 1px dotted #4f5661;
}
section.book .summary .buttons {
    text-align: center;
}
section.book .summary .form-item label {
    margin-bottom: 0;
    font-size: 16px;
    background-color: #f3f8ff;
    position: relative;
    z-index: 5;
    padding-right: 20px;
}
section.book .summary .form-item span {
    font-size: 16px;
    color: #777;
    background-color: #f3f8ff;
    position: relative;
    z-index: 5;
    padding-left: 20px;
}

section.book.book-payment .cards {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
section.book.book-payment .cards img {
    height: 56px;
    margin: 2px 0 0px 8px;
}

#addMemberModal .buttons {
    display: inline-flex;
    align-items: center;
    margin: 0;
    width: 100%;
}
#addMemberModal .addMemberInfo {
    margin-left: 33px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#addMemberModal .addMemberInfo .addMemberName {
    font-weight: 600;
}

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

.twitter-typeahead {
    width: 100%;
}
.twitter-typeahead .tt-hint {
    color: #999;
}
.twitter-typeahead .tt-menu {
    width: 100%;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0px 2px 4px #51565f17;
    overflow: hidden;
}
.twitter-typeahead .tt-menu .tt-dataset .empty-message,
.twitter-typeahead .tt-menu .tt-dataset .tt-suggestion {
    padding: 12px 16px 10px 16px;
    border-bottom: 1px solid #f7f7f7;
    font-size: 15px;
}
.twitter-typeahead .tt-menu .tt-dataset .tt-suggestion:last-child {
    border-bottom: none;
}
.twitter-typeahead .tt-menu .tt-dataset .tt-suggestion.tt-cursor {
    background-color: #f3f8ff;
}

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

.outerwrapper footer {
    padding: 60px 40px 100px 40px;
    background-color: #505660;
    text-align: center;
}
.outerwrapper footer .icon {
    margin-bottom: 30px;
}
.outerwrapper footer .socials {
    margin-bottom: 40px;
}
.socials a {
    width: 45px;
    height: 45px;
    background-color: #fff;
    color: #505660;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    text-align: center;
    margin: 0 4px;
}
.outerwrapper footer p {
    font-size: 17px;
    color: #ffffff;
}
.outerwrapper footer p span {
    height: 1px;
    width: 35px;
    margin: 0 15px;
    position: relative;
    top: -1px;
    background-color: #ffffff;
    display: inline-block;
    vertical-align: middle;
}

