:root {
    --dark-blue: #100623;
    --color-1: var(--au-golf-green);
    --color-2: var(--pga-primary-green);
    --color-3: var(--au-golf-eucalypt);
    --gray-1: #808080;
}

body {
    --bs-body-font-family: 'Gantari', sans-serif;
    --bs-gutter-x: 25px;
    --bs-body-color: #000;
    --bs-body-bg: #fff;
    --bs-body-font-size: 1.4rem;
}

body,
html {
    position: relative;
    height: 100%;
    min-height: 100%;
}

html {
    box-sizing: border-box;
    font-size: 10px;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    max-width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

    body.menu-is-open {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    body.has-loader:before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background-color: rgba(255,255,255,0.7);
        z-index: 999;
        backdrop-filter: blur(5px);
        transition: opacity 0.3s ease-out;
    }

    body.loaded:before {
        opacity: 0;
        z-index: -1;
    }

.no-header-footer header,
.no-header-footer footer {
    display: none;
}


.main {
    position: relative;
    z-index: 10;
    flex: 1;
    background-color: #fff;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;
}

hr {
    height: 0;
}

abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: 700;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
select {
    text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
    -webkit-appearance: button;
}

    button::-moz-focus-inner,
    [type='button']::-moz-focus-inner,
    [type='reset']::-moz-focus-inner,
    [type='submit']::-moz-focus-inner {
        border-style: none;
        padding: 0;
    }

    button:-moz-focusring,
    [type='button']:-moz-focusring,
    [type='reset']:-moz-focusring,
    [type='submit']:-moz-focusring {
        outline: 1px dotted ButtonText;
    }

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    padding: 0;
}

progress {
    vertical-align: baseline;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
    height: auto;
}

[type='search'] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

    [type='search']::-webkit-search-decoration {
        -webkit-appearance: none;
    }

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

summary {
    display: list-item;
}

blockquote,
ul,
ol {
    margin: 0;
}

ul,
ol {
    padding: 0 0 0 30px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--color-3);
}

    a:hover {
        color: var(--color-1);
    }

    a:not([href]) {
        pointer-events: none;
    }

.no-wrap {
    white-space: nowrap;
}

.bg-video {
    transition: none !important;
    -o-object-fit: cover;
    object-fit: cover;
}

.image-scale-on-load {
    transform: scale(1.2, 1.2);
    -webkit-animation: imageScale 1.4s cubic-bezier(0.5, 0, 0, 1) forwards;
    animation: imageScale 1.4s cubic-bezier(0.5, 0, 0, 1) forwards;
}

.u_bottom-auto {
    bottom: auto;
}

@-webkit-keyframes showHero {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes showHero {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeUp {
    0% {
        transform: translateY(32px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        transform: translateY(32px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes fadeUpSmall {
    0% {
        transform: translateY(16px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUpSmall {
    0% {
        transform: translateY(16px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes imageScale {
    0% {
        transform: scale(1.2, 1.2);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes imageScale {
    0% {
        transform: scale(1.2, 1.2);
    }

    100% {
        transform: scale(1, 1);
    }
}

.image-reveal-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@media print {
    *,
    *::before,
    *::after {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    a:not(.btn) {
        text-decoration: underline;
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    @page {
        size: a3;
    }

    body {
        min-width: 992px !important;
    }

    .container {
        min-width: 992px !important;
    }

    .navbar {
        display: none;
    }

    .badge {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

        .table td,
        .table th {
            background-color: #fff !important;
        }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 600;
    line-height: normal;
}

    h1 strong,
    h2 strong,
    h3 strong,
    h4 strong,
    h5 strong {
        font-weight: 700;
    }

h1,
.h1 {
    font-size: 50px;
    letter-spacing: 0.01em;
}

@media (min-width: 375px) {
    .h1 {
        font-size: 28px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .h1 {
        font-size: calc(28px + 14 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .h1 {
        font-size: 42px;
    }
}

@media (min-width: 820px) {
    .h1 {
        font-size: 42px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .h1 {
        font-size: calc(42px + 13 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .h1 {
        font-size: 55px;
    }
}

h2,
.h2 {
    font-size: 30px;
}

@media (min-width: 375px) {
    .h2 {
        font-size: 24px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .h2 {
        font-size: calc(24px + 6 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .h2 {
        font-size: 30px;
    }
}

@media (min-width: 820px) {
    .h2 {
        font-size: 30px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .h2 {
        font-size: calc(30px + 10 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .h2 {
        font-size: 40px;
    }
}

h3,
.h3 {
    font-size: 25px;
}

@media (min-width: 375px) {
    .h3 {
        font-size: 22px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .h3 {
        font-size: calc(22px + 6 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .h3 {
        font-size: 28px;
    }
}

@media (min-width: 820px) {
    .h3 {
        font-size: 28px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .h3 {
        font-size: calc(28px + 4 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .h3 {
        font-size: 32px;
    }
}

h4,
.h4 {
    font-size: 20px;
}

@media (min-width: 375px) {
    .h4 {
        font-size: 20px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .h4 {
        font-size: calc(20px + 6 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .h4 {
        font-size: 26px;
    }
}

@media (min-width: 820px) {
    .h4 {
        font-size: 26px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .h4 {
        font-size: calc(26px + 4 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .h4 {
        font-size: 30px;
    }
}

h5,
.h5 {
    font-size: 14px;
}

@media (min-width: 768px) {
    .h5 {
        font-size: 18px;
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .h5 {
        font-size: calc(18px + 4 * ((100vw - 768px) / 52));
    }
}

@media screen and (min-width: 768px) and (min-width: 820px) {
    .h5 {
        font-size: 22px;
    }
}

h6,
.h6 {
    font-size: 12px;
}

    .h6 strong {
        font-weight: 500;
    }

p,
.p {
    font-weight: 400;
    font-size: 14px;
}

    p strong,
    .p strong {
        font-weight: 600;
    }

    p.small,
    .p.small {
        font-size: 1.5rem;
        line-height: 1.6;
    }

blockquote,
.lead {
    font-size: 14px;
    letter-spacing: 0.01em;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    margin-bottom: 1.6rem;
}

@media (min-width: 768px) {
    blockquote,
    .lead {
        font-size: 1.6rem;
    }
}

@media (min-width: 992px) {
    blockquote,
    .lead {
        font-size: 16px;
    }
}

@media screen and (min-width: 992px) and (min-width: 980px) {
    blockquote,
    .lead {
        font-size: calc(16px + 2 * ((100vw - 980px) / 420));
    }
}

@media screen and (min-width: 992px) and (min-width: 1400px) {
    blockquote,
    .lead {
        font-size: 18px;
    }
}

blockquote {
    padding-left: 2.4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-left: 2px solid var(--color-1);
}

    blockquote p {
        margin-bottom: 0;
        font-size: inherit;
    }

.rte h1,
.rte h2,
.rte h3,
.rte h4,
.rte h5,
.rte p {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.rte h1,
.rte h2,
.rte h3,
.rte h4,
.rte h5 {
    font-weight: 300;
}

    .rte h1 strong,
    .rte h2 strong,
    .rte h3 strong,
    .rte h4 strong,
    .rte h5 strong {
        font-weight: 600;
    }

.rte h1 {
    font-size: 2.8rem;
    line-height: 1.254545454545455;
    letter-spacing: 0.01em;
}

@media (min-width: 375px) {
    .rte h1 {
        font-size: 28px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .rte h1 {
        font-size: calc(28px + 14 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .rte h1 {
        font-size: 42px;
    }
}

@media (min-width: 820px) {
    .rte h1 {
        font-size: 42px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .rte h1 {
        font-size: calc(42px + 13 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .rte h1 {
        font-size: 55px;
    }
}

.rte h2 {
    font-size: 2.4rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

@media (min-width: 375px) {
    .rte h2 {
        font-size: 24px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .rte h2 {
        font-size: calc(24px + 6 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .rte h2 {
        font-size: 30px;
    }
}

@media (min-width: 820px) {
    .rte h2 {
        font-size: 30px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .rte h2 {
        font-size: calc(30px + 10 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .rte h2 {
        font-size: 40px;
    }
}

.rte h3 {
    font-size: 2.2rem;
    line-height: 1.3125;
    letter-spacing: 0.01em;
}

@media (min-width: 375px) {
    .rte h3 {
        font-size: 22px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .rte h3 {
        font-size: calc(22px + 6 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .rte h3 {
        font-size: 28px;
    }
}

@media (min-width: 820px) {
    .rte h3 {
        font-size: 28px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .rte h3 {
        font-size: calc(28px + 4 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .rte h3 {
        font-size: 32px;
    }
}

.rte h4 {
    font-size: 2rem;
    line-height: 1.4;
}

@media (min-width: 375px) {
    .rte h4 {
        font-size: 20px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .rte h4 {
        font-size: calc(20px + 6 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .rte h4 {
        font-size: 26px;
    }
}

@media (min-width: 820px) {
    .rte h4 {
        font-size: 26px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .rte h4 {
        font-size: calc(26px + 4 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .rte h4 {
        font-size: 30px;
    }
}

.rte h5 {
    margin-bottom: 1.8rem;
    font-size: 1.8rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .rte h5 {
        font-size: 18px;
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .rte h5 {
        font-size: calc(18px + 4 * ((100vw - 768px) / 52));
    }
}

@media screen and (min-width: 768px) and (min-width: 820px) {
    .rte h5 {
        font-size: 22px;
    }
}

.rte h6 {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    font-weight: 400;
    text-transform: uppercase;
}

    .rte h6 strong {
        font-weight: 500;
    }

.rte ul,
.rte ol {
    margin-bottom: 2.4rem;
}

@media (min-width: 768px) {
    .rte ul,
    .rte ol {
        margin-bottom: 3rem;
    }

        .rte ul:last-child,
        .rte ol:last-child {
            margin-bottom: 0;
        }
}

.rte ul li,
.rte ol li {
    line-height: 1.5;
    font-size: 1.4rem;
    margin-bottom: .9rem;
}

    .rte ul li:last-child,
    .rte ol li:last-child {
        margin-bottom: 0;
    }

.rte p {
    font-size: 18px;
}

.rte a:not(.button),
.dg-rte a:not(.button) {
    border-bottom: 1px solid currentColor;
    color: currentColor;
    text-decoration: none;
}

.generic-table {
    width: 100%;
    border-collapse: collapse;
}

    .generic-table th {
        text-align: left;
        font-size: 1.4rem;
        font-weight: 400;
    }

    .generic-table td {
        border-bottom: 1px solid #D9DADB;
    }

    .generic-table th,
    .generic-table td {
        padding: 1.6rem 1.2rem;
    }

@media (max-width: 1199.98px) {
    .generic-table th:first-child,
    .generic-table td:first-child {
        padding-left: 0;
    }

    .generic-table th:last-child,
    .generic-table td:last-child {
        padding-right: 0;
    }
}

.button {
    font-size: 14px;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 40px;
    outline: 0;
    border: 1px solid var(--color-3);
    color: var(--color-3);
    background-color: transparent;
    text-decoration: none;
    border-radius: 40px;
    padding: 10px 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    overflow: hidden;
}

    .button:hover {
        color: var(--color-1);
        border-color: var(--color-1);
    }

.button--arrow:after {
    content: "\e900";
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    transition: transform 0.3s ease-in-out;
    font-size: 10px;
}

.button--arrow:hover:after {
    transform: translateX(10px);
}

.button--primary {
    border: 1px solid var(--color-1);
    color: var(--color-3);
    padding: 1.5rem 1.7rem 1.5rem 2rem;
    position: relative;
}

    .button--primary .button__icon {
        margin-left: 4.6rem;
        position: relative;
        z-index: 1;
        transition: transform 0.3s cubic-bezier(0.75, 0, 0.25, 1);
    }

    .button--primary .button__text {
        position: relative;
        z-index: 1;
    }

    .button--primary:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background-color: var(--color-1);
        transition: width 0.3s cubic-bezier(0.75, 0, 0.25, 1);
    }

    .button--primary:hover, .button--primary:focus {
        color: #051219 !important;
    }

        .button--primary:hover:before, .button--primary:focus:before {
            width: 100%;
        }

        .button--primary:hover .button__icon, .button--primary:focus .button__icon {
            transform: translateX(3px);
        }

.button--text-arrow {
    padding-left: 0;
    color: var(--color-1);
}

    .button--text-arrow .button__text {
        padding-right: 2rem;
    }

    .button--text-arrow:hover .button__text, .button--text-arrow:focus .button__text {
        font-weight: 500;
    }

    .button--text-arrow:hover .arrow--inline path, .button--text-arrow:focus .arrow--inline path {
        stroke-width: 2;
    }

.arrow--inline path {
    transition: stroke-width .2s ease;
    stroke: currentColor;
}

.button--secondary {
    position: relative;
    color: var(--color-3);
    padding: 0;
}

    .button--secondary:hover:before, .button--secondary:focus:before {
        width: 100%;
    }

    .button--secondary:hover .button__text, .button--secondary:focus .button__text {
        color: #051219;
    }

    .button--secondary:hover .button__icon svg, .button--secondary:focus .button__icon svg {
        transform: translateX(3px);
    }

    .button--secondary .button__icon {
        position: relative;
        display: flex;
        width: 6rem;
        height: 6rem;
        align-items: center;
        justify-content: center;
        color: var(--color-3);
        z-index: 1;
    }

        .button--secondary .button__icon svg {
            transition: transform 0.3s cubic-bezier(0.75, 0, 0.25, 1);
        }

    .button--secondary .button__text {
        position: relative;
        z-index: 1;
        padding-left: 2rem;
        padding-right: 2.8rem;
        transition: all 0.3s ease;
    }

    .button--secondary:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 6rem;
        height: 100%;
        background-color: var(--color-1);
        transition: width 0.3s cubic-bezier(0.75, 0, 0.25, 1);
    }

.button--secondary-left:before {
    left: 0;
}

.button--text {
    padding-left: 0;
    padding-right: 0;
    color: var(--color-3);
}

    .button--text:hover, .button--text:focus {
        color: var(--color-1);
    }

        .button--text:hover .button__text:before, .button--text:focus .button__text:before {
            width: 100%;
        }

    .button--text .button__text {
        position: relative;
    }

        .button--text .button__text:before {
            content: '';
            display: block;
            position: absolute;
            bottom: 0;
            height: 1px;
            left: 0;
            width: 0;
            z-index: 0;
            background-color: var(--color-1);
            transition: all 0.3s cubic-bezier(0.75, 0, 0.25, 1);
        }

.select--custom {
    width: 100%;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid transparent;
    padding: 1.1rem 2.4rem 1.1rem 0;
    line-height: 1.25;
    font-size: 1.4rem;
    transition: all 0.35s ease;
    background-color: transparent;
    cursor: pointer;
    box-shadow: inset 0 -1px 0 0 #EAEBEB;
}

@media (min-width: 768px) {
    .select--custom {
        font-size: 1.6rem;
    }
}

.select--custom:focus {
    border-bottom: 1px solid transparent !important;
    box-shadow: inset 0 -1px 0 0 #EAEBEB !important;
    outline: 0;
}

.filter .select--custom {
    box-shadow: inset 0 -1px 0 0 #EAEBEB;
}

.select--custom::-ms-expand {
    display: none;
}

.select--light {
    background-color: #FBFBFB;
}

.checkbox-container,
.radio-container {
    position: relative;
    display: block;
    min-height: 2rem;
}

    .checkbox-container + .checkbox-container,
    .checkbox-container + .radio-container,
    .radio-container + .checkbox-container,
    .radio-container + .radio-container {
        margin-top: 1rem;
    }

.checkbox--custom,
.radio--custom {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 2rem;
    height: 2rem;
    opacity: 0;
}

    .checkbox--custom ~ .form-field__error,
    .radio--custom ~ .form-field__error {
        padding-left: 3.8rem;
    }

    .checkbox--custom ~ .label,
    .radio--custom ~ .label {
        position: relative;
        margin-bottom: 0;
        vertical-align: top;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        cursor: pointer;
        display: block;
        padding-left: 3.8rem;
        padding-top: .1rem;
    }

@media (max-width: 767.98px) {
    .checkbox--custom ~ .label,
    .radio--custom ~ .label {
        font-size: 1.4rem;
    }
}

.checkbox--custom ~ .label:before,
.radio--custom ~ .label:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 2rem;
    height: 2rem;
    pointer-events: none;
    content: "";
    border: solid 1px #8D8D93;
}

.checkbox--custom ~ .label:after,
.radio--custom ~ .label:after {
    position: absolute;
    display: block;
    content: "";
    background: no-repeat;
    background-position: center center;
}

.checkbox--custom.is-error ~ .label:before,
.radio--custom.is-error ~ .label:before {
    border-color: #FE4F47;
}

.checkbox--custom ~ .label:after {
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
}

.checkbox--custom:checked ~ .label:before {
    color: #fff;
    border-color: var(--color-1) !important;
    background-color: var(--color-1);
}

.checkbox--custom:checked ~ .label:after {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7 12.947L8.8375 15.6379C8.97892 15.8558 9.21368 15.9899 9.46778 15.9977C9.72187 16.0055 9.96397 15.8862 10.1178 15.6773L16 7.99805' stroke='%23051219' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
}

.radio--custom ~ .label:before {
    border-radius: 50%;
}

.radio--custom ~ .label:after {
    top: 7px;
    left: 7px;
    width: 6px;
    height: 6px;
    background-color: transparent;
    border-radius: 50%;
}

.radio--custom:checked ~ .label:before {
    color: #fff;
    border-color: var(--color-1);
    background-color: var(--color-1);
}

.radio--custom:checked ~ .label:after {
    background-color: #FFFFFF;
}

.label {
    max-width: 444px;
}

    .label .small {
        display: block;
        font-weight: 300;
        margin-top: 1rem;
        line-height: 1.5;
    }

        .label .small strong {
            font-weight: 500;
        }

.input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    width: 100%;
    font-size: 1.6rem;
    outline: 0;
    transition: all 0.35s ease;
    border-bottom: 1px solid transparent;
    box-shadow: inset 0 -1px 0 0 #EAEBEB;
}

    .input:focus {
        border-bottom: 1px solid var(--color-1) !important;
        box-shadow: inset 0 -1px 0 0 var(--color-1) !important;
    }

textarea.input {
    height: 150px;
    resize: none;
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.form__group {
    margin-bottom: 2.4rem;
}

    .form__group img {
        flex-shrink: 0;
        margin-bottom: 2.2rem;
    }

    .form__group .radio-container + .radio-container {
        margin-top: 4rem;
    }

.form__label {
    display: block;
    color: var(--color-3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form__title {
    margin-bottom: 4.8rem;
    font-size: 2.6rem;
}

.form__group--field {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
}

    .form__group--field input,
    .form__group--field textarea,
    .form__group--field select {
        order: 2;
    }

    .form__group--field .form-field__error {
        order: 3;
    }

.form__group .is-error {
    border-bottom: 1px solid #FE4F47;
    box-shadow: inset 0 -1px 0 0 #FE4F47;
}

    .form__group .is-error ~ .form-field__error {
        display: block;
    }

.form-field__error {
    display: none;
    padding-top: .4rem;
    color: #FE4F47;
    font-size: 1.2rem;
}

.button .button__loader-text,
.button .button__loader {
    display: none;
}

.button.is-loading {
    pointer-events: none;
}

    .button.is-loading .button__text,
    .button.is-loading .button__icon {
        display: none;
    }

    .button.is-loading .button__loader-text,
    .button.is-loading .button__loader {
        display: block;
    }

    .button.is-loading:before {
        background-image: none;
    }

.button--secondary .button__loader-text {
    padding-right: 2.8rem;
    padding-left: 2rem;
}

.button--secondary .button__loader {
    margin-right: 19px;
    color: var(--color-3);
}

.button--secondary.is-loading:focus:before {
    width: 6rem;
}

@-webkit-keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.button__loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    margin-left: 27px;
    position: relative;
}

    .button__loader:before {
        content: '';
        box-sizing: border-box;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 16px;
        height: 16px;
        margin-top: -8px;
        margin-left: -8px;
        border-radius: 50%;
        border: 1px solid transparent;
        border-top-color: currentColor;
        border-right-color: currentColor;
        border-bottom-color: currentColor;
        -webkit-animation: spinner .8s linear infinite;
        animation: spinner .8s linear infinite;
    }

.text-loader {
    position: relative;
}

    .text-loader .text-loader__loader-text,
    .text-loader .text-loader__loader {
        display: none;
    }

.text-loader__loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    margin-left: 27px;
    position: relative;
    vertical-align: middle;
}

    .text-loader__loader:before {
        content: '';
        box-sizing: border-box;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 16px;
        height: 16px;
        margin-top: -8px;
        margin-left: -8px;
        border-radius: 50%;
        border: 1px solid transparent;
        border-top-color: currentColor;
        border-right-color: currentColor;
        border-bottom-color: currentColor;
        -webkit-animation: spinner .8s linear infinite;
        animation: spinner .8s linear infinite;
    }

.text-loader.is-loading .text-loader__text {
    display: none;
}

.text-loader.is-loading .text-loader__loader-text,
.text-loader.is-loading .text-loader__loader {
    display: inline-block;
}

.template__filter {
    overflow: hidden;
    margin-top: -43px;
}

@media (min-width: 1200px) {
    .template__filter {
        margin-top: -53px;
    }
}

.template__filter .filter {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 86px;
    background-color: #F3F4F5;
    margin-right: -1.6rem;
    position: relative;
    margin-left: -2rem;
}

@media (min-width: 1200px) {
    .template__filter .filter {
        height: 106px;
    }
}

.template__filter .filter:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    width: 50vw;
    background-color: #F3F4F5;
    height: 100%;
}

.template__filter .filter:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 50vw;
    background-color: #F3F4F5;
    height: 100%;
}

@media (min-width: 1440px) {
    .template__filter .filter:after {
        display: none;
    }
}

.template__filter .filter__item {
    flex: 0 0 283px;
    max-width: 283px;
    padding-left: 2rem;
    padding-right: 2rem;
}

.template__filter .select--custom {
    background-color: #F3F4F5;
}

.button--filter {
    white-space: nowrap;
}

    .button--filter .button__icon {
        position: relative;
        padding-right: 1rem;
        width: 3.4rem;
        height: 2.4rem;
    }

        .button--filter .button__icon .filter-state {
            position: absolute;
            top: 0;
            left: 0;
        }

        .button--filter .button__icon .filter-state-open {
            opacity: 0;
        }

.is-active .button--filter .button__icon .filter-state-open {
    opacity: 1;
}

.is-active .button--filter .button__icon .filter-state-closed {
    opacity: 0;
}

.filter.is-active {
    background-color: #ECEDEF;
}

    .filter.is-active:before, .filter.is-active:after {
        background-color: #ECEDEF;
    }

.template__filter {
    background-color: #F3F4F5;
}

@media (min-width: 1440px) {
    .template__filter {
        background-color: transparent;
    }
}

@media (min-width: 768px) {
    .filter-content-mobile.filter--2-items {
        display: flex !important;
    }
}

@media (max-width: 767.98px) {
    .filter-content-mobile.filter--2-items {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
        background-color: #F3F4F5 !important;
        height: auto;
        display: none;
    }

        .filter-content-mobile.filter--2-items:before, .filter-content-mobile.filter--2-items:after {
            background-color: #F3F4F5 !important;
        }

        .filter-content-mobile.filter--2-items .select--custom {
            background-color: #F3F4F5;
        }

        .filter-content-mobile.filter--2-items .filter__item {
            flex: 0 0 100%;
            max-width: 100%;
        }

            .filter-content-mobile.filter--2-items .filter__item + .filter__item {
                padding-top: 2rem;
            }
}

@media (min-width: 992px) {
    .filter-content-mobile.filter--3-items {
        display: flex !important;
    }
}

@media (max-width: 991.98px) {
    .filter-content-mobile.filter--3-items {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
        background-color: #F3F4F5 !important;
        height: auto;
        display: none;
    }

        .filter-content-mobile.filter--3-items:before, .filter-content-mobile.filter--3-items:after {
            background-color: #F3F4F5 !important;
        }

        .filter-content-mobile.filter--3-items .select--custom {
            background-color: #F3F4F5;
        }

        .filter-content-mobile.filter--3-items .filter__item {
            flex: 0 0 100%;
            max-width: 100%;
        }

            .filter-content-mobile.filter--3-items .filter__item + .filter__item {
                padding-top: 2rem;
            }
}

@media (min-width: 1440px) {
    .filter-content-mobile.filter--4-items {
        display: flex !important;
    }
}

@media (max-width: 1439.98px) {
    .filter-content-mobile.filter--4-items {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
        background-color: #F3F4F5 !important;
        height: auto;
        display: none;
    }

        .filter-content-mobile.filter--4-items:before, .filter-content-mobile.filter--4-items:after {
            background-color: #F3F4F5 !important;
        }

        .filter-content-mobile.filter--4-items .select--custom {
            background-color: #F3F4F5;
        }

        .filter-content-mobile.filter--4-items .filter__item {
            flex: 0 0 100%;
            max-width: 100%;
        }

            .filter-content-mobile.filter--4-items .filter__item + .filter__item {
                padding-top: 2rem;
            }
}

@media (min-width: 1200px) {
    .filter-content-mobile.filter--sidebar-items {
        display: block !important;
    }

        .filter-content-mobile.filter--sidebar-items .filter__item + .filter__item {
            padding-top: 2rem;
        }
}

@media (max-width: 1199.98px) {
    .filter-content-mobile.filter--sidebar-items {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
        background-color: #F3F4F5 !important;
        height: auto;
        display: none;
    }

        .filter-content-mobile.filter--sidebar-items:before, .filter-content-mobile.filter--sidebar-items:after {
            background-color: #F3F4F5 !important;
        }

        .filter-content-mobile.filter--sidebar-items .select--custom {
            background-color: #F3F4F5;
        }

        .filter-content-mobile.filter--sidebar-items .filter__item {
            flex: 0 0 100%;
            max-width: 100%;
        }

            .filter-content-mobile.filter--sidebar-items .filter__item + .filter__item {
                padding-top: 2rem;
            }
}

.filter-trigger {
    justify-content: space-between !important;
}

    .filter-trigger .button {
        flex-grow: 1;
    }

        .filter-trigger .button .button__text {
            font-weight: 500;
            color: #051219;
        }

    .filter-trigger .icon-close {
        width: 2rem;
        height: 2rem;
        margin-left: 2px;
    }

@media (min-width: 768px) {
    .filter-trigger.filter--2-items {
        display: none;
    }
}

@media (min-width: 992px) {
    .filter-trigger.filter--3-items {
        display: none;
    }
}

@media (min-width: 1440px) {
    .filter-trigger.filter--4-items {
        display: none;
    }
}

@media (min-width: 1200px) {
    .filter-trigger.filter--sidebar-items {
        display: none !important;
    }
}

@media all and (-ms-high-contrast: none) {
    *::-ms-backdrop,
    .l_content-container,
    .template__content,
    .l_sidebar-content {
        flex: auto !important;
    }
}

@media (min-width: 1200px) {
    .l_sidebar-content {
        display: flex;
        flex: 1;
    }

        .l_sidebar-content .l_sidebar {
            flex: 0 0 30%;
            max-width: 470px;
        }
}

.l_sidebar-content .template__content {
    flex: 1;
}

.l_sidebar {
    margin-top: 0;
}

    .l_sidebar .help-text {
        padding-right: 16px;
    }

@media (min-width: 1200px) {
    .l_sidebar .container {
        height: 100%;
    }

    .l_sidebar .row {
        display: block;
        margin-left: 0;
        margin-right: 0;
        height: 100%;
    }

    .l_sidebar .col-10,
    .l_sidebar .col-12 {
        padding-left: 0;
        padding-right: 0;
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
        height: 100%;
    }

    .l_sidebar .filter {
        height: auto;
        margin-left: 0;
        height: 100%;
        margin-right: 0;
        display: block;
        padding-top: 8rem;
    }

    .l_sidebar .filter-content-mobile {
        min-height: 100%;
    }

    .l_sidebar .filter__item {
        margin: 0 auto;
    }
}

.banner {
    min-height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    background-position: center center;
}

    .banner:before {
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0,0,0,0.60) 0%, rgba(0,212,255,0) 100%);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .banner > div {
        position: static;
        z-index: 1;
    }

.banner__title {
    color: #fff;
    font-size: 45px;
}

.banner__pre-title {
    color: #798bff;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 60px 0 0;
    border-radius: 10px;
    padding: 40px;
    position: relative;
    height: calc(100% - 60px);
    box-shadow: 0 3rem 6rem rgba(0, 0, 0, .1);
    border: none;
    transition: 0.2s;
    height: 530px;
    min-width: 250px;
}

    .card:hover {
        transform: translateY(-.5%);
        box-shadow: 0 4rem 8rem rgba(0, 0, 0, .2);
    }

.card__image {
    overflow: hidden;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    min-width: 200px;
    object-fit: cover;
    margin-top: -145px;
    transition: all 0.3s ease-in-out;
}

.card__image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-top: -145px;
    background-color: #f3f4f5;
    color: #b9b9b9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    transition: all 0.3s ease-in-out;
}

.card--expanded .card__image,
.card--expanded .card__image-placeholder {
    width: 100px;
    height: 100px;
    font-size: 35px;
    margin-top: -90px;
    min-width: 100px;
}

.card__body {
    padding-top: 25px;
    text-align: center;
    width: 100%;
    flex: 1;
    transition: all 0.3s ease-in-out;
}

.card--expanded .card__body {
    padding-top: 5px;
}

.card__title {
    margin-bottom: 5px;
    transition: 0.2s color ease-in-out;
}

.card__subtitle {
    color: #124395;
    font-size: 14px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.card--expanded .card__subtitle {
    margin-bottom: 0;
}

.card__pretext {
    color: #676767;
    font-size: 14px;
    margin: 0;
}

.card__description {
    transition: 0.2s color ease-in-out;
    font-size: 14px;
    color: #676767;
}

.card__contact {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.card__contact-details {
    margin-top: 0;
}

    .card__contact-details i {
        color: #676767;
        font-size: 19px;
        transition: 0.2s color ease-in-out;
    }

    .card__contact-details a + a {
        margin-left: 10px;
    }

.card__socmed {
    margin-left: 25px;
}

    .card__socmed i {
        color: #676767;
        font-size: 21px;
        transition: 0.2s color ease-in-out;
    }

        .card__socmed i:hover {
            color: #124395;
        }

    .card__socmed a + a {
        margin-left: 10px;
    }

.card__services {
    position: relative;
    margin-top: 20px;
}

.card__service {
    margin-bottom: 2px;
}

.card__service-title {
    font-size: 12px;
    cursor: pointer;
    background-color: #f3f4f5;
    padding: 5px 0px 5px 10px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0px;
    position: relative;
    text-align: left;
}

    .card__service-title:before {
        transition: background .35s ease;
    }

    .card__service-title:after {
        transform: rotate(90deg);
        transition: all .35s ease;
    }

    .card__service-title:before,
    .card__service-title:after {
        content: '';
        display: block;
        width: 10px;
        height: 2px;
        border-radius: 1px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
        background-color: #c5c5c5;
        opacity: .65;
        right: 10px;
    }

.is-active .card__service-title:after {
    transform: rotate(0deg);
    background-color: #333;
}

.is-active .card__service-title,
.card__service-title:hover {
    background-color: #b9b9b9;
}


.card__service-content {
    display: none;
}

    .card__service-content ul {
        margin: 0;
        padding: 5px;
        list-style: none;
    }

        .card__service-content ul li {
            font-size: 12px;
            text-align: left;
            padding-left: 15px;
            line-height: 1.5;
        }

.card__footer {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.card__footer-image {
    width: 60px;
    margin: 0 auto 0;
}

.card__footer a {
    text-decoration: none;
    color: #b9b9b9;
    transition: 0.2s color ease-in-out;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 20px;
}

    .card__footer a svg {
        width: 12px;
        height: 12px;
        transform: rotate(180deg);
        line-height: 1;
        margin-left: 5px;
        transition: all 0.3s ease-in-out;
    }

    .card__footer a:hover {
        color: #333;
    }

        .card__footer a:hover > svg {
            transform: rotate(180deg) translateX(-5px);
        }

.list-item {
    overflow: hidden;
    background-color: whitesmoke;
}

    .list-item + .list-item {
        margin-top: 5px;
    }

    .list-item .list-item__btn {
        -webkit-appearance: none;
        appearance: none;
        border: 0;
        background-color: #d5d5d5;
        font-size: 12px;
        width: 100%;
        padding: 3px;
        transition: all 0.3s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #333;
        text-decoration: none;
    }

        .list-item .list-item__btn svg {
            transition: transform 0.3s ease-in-out;
            width: 14px;
            height: 14px;
            transform: rotate(270deg);
            line-height: 1;
            margin-left: 7px;
        }

        .list-item .list-item__btn:hover {
            background-color: #c3c3c3;
        }

        .list-item .list-item__btn > span {
            line-height: 1;
        }

            .list-item .list-item__btn > span.hide-text {
                display: none;
            }

    .list-item.is-active .list-item__btn > span.hide-text {
        display: inline-block;
    }

    .list-item.is-active .list-item__btn > span.show-text {
        display: none;
    }

    .list-item.is-active .list-item__btn svg {
        transform: rotate(90deg);
    }

.list-item__inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: stretch;
    padding: 10px;
}

.list-item__head {
    margin-right: 10px;
}

.list-item__image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
}

.list-item__image-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #fff;
    color: #b9b9b9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.list-item__body {
    flex: 1;
    padding: 5px 5px 5px 0;
}

.list-item__title {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: bold;
}

.list-item__subtitle {
    color: #124395;
    font-size: 13px;
    margin-bottom: 0;
}

.list-item__description {
    font-size: 12px;
    margin-bottom: 0;
}

.list-item__body a {
    font-size: 12px;
    float: right;
    text-decoration: none;
}

    .list-item__body a i {
        margin-left: 5px;
    }

.list-item__other {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-top: 10px;
    align-items: center;
}

.list-item__contact-details {
    display: flex;
    justify-content: start;
    align-items: center;
}

    .list-item__contact-details i {
        color: #676767;
        font-size: 18px;
        transition: 0.2s color ease-in-out;
        margin-left: 0 !important;
    }

    .list-item__contact-details a + a {
        margin-left: 10px;
    }

.list-item__socmed {
    display: flex;
    flex-wrap: nowrap;
}

    .list-item__socmed a i {
        color: #676767;
        font-size: 18px;
        transition: 0.2s color ease-in-out;
        margin-left: 0;
    }

    .list-item__socmed a + a {
        margin-left: 10px;
    }

.list-item__details {
    overflow: hidden;
    display: none;
}

.list-item__details-inner {
    padding: 10px;
}

.list-item__services {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .list-item__services > div {
        flex: 0 0 50%;
        max-width: 50%;
    }

        .list-item__services > div:nth-child(n+3) {
            margin-top: 15px;
        }

        .list-item__services > div > p {
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 0;
        }

    .list-item__services ul {
        padding: 0 0 0 12px;
        margin: 0;
    }

        .list-item__services ul li {
            font-size: 12px;
        }

.list-item__details-inner {
    background-color: whitesmoke;
    padding: 10px;
}

.dg-tooltip {
    position: relative;
}

    .dg-tooltip:before {
        content: attr(data-name);
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        color: #333;
        background-color: #f3f4f5;
        font-size: 12px;
        padding: 3px 5px;
        opacity: 0;
        transition: all 0.3s ease-in-out;
        z-index: 1;
        white-space: nowrap;
        pointer-events: none;
    }

    .dg-tooltip:hover i {
        color: #124395;
    }

    .dg-tooltip:hover:before {
        opacity: 1;
    }

.filter-accordion__content {
    display: none;
}

.filter-accordion__content-inner {
    padding-top: 2.2rem;
    padding-bottom: 2rem;
}

.filter-accordion__title {
    position: relative;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    margin-bottom: 0;
    border-bottom: 1px solid #E6E7E8;
    cursor: pointer;
    text-transform: capitalize;
}

.filter-accordion__title-text {
    font-size: 1.6rem;
    font-weight: 400;
}

.filter-accordion__indicator {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 10px;
    height: 10px;
    top: 50%;
    right: 1.2rem;
    margin-top: -5px;
}

@media (min-width: 768px) {
    .filter-accordion__indicator {
        width: 10px;
        height: 10px;
        margin-top: -5px;
    }
}

.filter-accordion__indicator:before, .filter-accordion__indicator:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    background-color: #8D8D93;
    opacity: .65;
}

.filter-accordion__indicator:before {
    transition: background .35s ease;
}

.filter-accordion__indicator:after {
    transform: rotate(90deg);
    transition: all .35s ease;
}

.is-active .filter-accordion__indicator:after {
    transform: rotate(0deg);
}

.pagination {
    width: 100%;
    max-width: 1083px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: .6rem;
    padding-bottom: 13.4rem;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 300;
}

@media (min-width: 768px) {
    .pagination {
        padding-top: 2.6rem;
        padding-bottom: 7.8rem;
    }
}

@media (min-width: 992px) {
    .pagination {
        padding-top: 5.6rem;
        padding-bottom: 12rem;
    }
}

@media (min-width: 1200px) {
    .pagination {
        padding-bottom: 15rem;
    }
}

.button--pagination {
    color: var(--color-3);
    font-size: 1.4rem;
}

    .button--pagination:hover, .button--pagination:focus {
        color: #000000;
        font-weight: 500;
    }

        .button--pagination:hover .arrow--inline path, .button--pagination:focus .arrow--inline path {
            stroke-width: 2;
        }

    .button--pagination .button__text {
        padding-left: 2.2rem;
        padding-right: 2.2rem;
    }

@media (max-width: 560px) {
    .button--pagination .button__text {
        display: none;
    }
}

.button--pagination:first-child .button__icon {
    transform: rotate(-180deg);
}

.pagination__text {
    display: block;
    padding-left: 3rem;
    padding-right: 3rem;
    white-space: nowrap;
}

/* Tile */
.dg-tile {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dg-tile__clickable {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dg-tile__head {
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--color-3);
}

.mygolf .dg-tile__head {
    border-top-color: var(--ga-orange);
}

.dg-tile__image-wrapper {
    position: relative;
    max-height: 370px;
    aspect-ratio: 16/9;
}

.dg-tile__image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.dg-tile__head img {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

.dg-tile__body {
    padding: 10px 15px 20px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dg-tile__details {
    flex: 1;
}

.dg-tile__title {
    color: var(--color-3);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

.mygolf .dg-tile__title {
    color: var(--ga-dark-blue);
}

.dg-tile--big .dg-tile__title {
    font-size: 17px;
}

.dg-tile__description {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 0;
    margin-top: 5px;
}

.dg-tile--small .dg-tile__description {
    font-size: 14px;
    line-height: 1.2;
}

.dg-tile:hover .dg-tile__body {
    background-color: rgba(48,224,187, 0.6);
    backdrop-filter: blur(4px);
    transform: translateY(-20px);
}

.dg-tile:hover .dg-tile__title {
    color: #000;
}

.no-ellipsis .dg-tile__description {
    -webkit-line-clamp: unset;
    overflow: visible;
}

@media (min-width: 992px) {
    .dg-tile--big .dg-tile__title {
        font-size: 25px;
    }

    .dg-tile__title {
        font-size: 20px;
    }
}

/* Swiper overrides */
.main .swiper-button-next.swiper-button-disabled,
.main .swiper-button-prev.swiper-button-disabled {
    opacity: 0.2;
    visibility: visible;
    cursor: auto;
    pointer-events: none;
}

.main .swiper-navigation {
    display: flex;
    align-items: center;
    width: 320px;
    margin: 20px auto;
}

.main .swiper-button-spacer {
    width: 100px;
    height: 30px;
    display: flex;
    align-items: center;
}

.main .swiper-button-spacer {
    content: "";
    height: 3px;
    width: 100%;
    background-color: var(--color-3);
}

.main .swiper-button-next,
.main .swiper-button-prev {
    position: static;
    width: auto;
    height: auto;
    margin-top: 0;
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-3);
}

    .main .swiper-button-next:before {
        content: "\e900";
    }

    .main .swiper-button-prev:after {
        content: "\e904";
    }

    .main .swiper-button-next:before,
    .main .swiper-button-prev:after {
        font-family: 'icomoon' !important;
        speak: never;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        transition: transform 0.3s ease-in-out;
        font-size: 24px;
        color: var(--color-3);
    }



.main .swiper-button-next {
    margin-left: 10px;
}

.main .swiper-button-prev {
    margin-right: 10px;
    transition: transform 0.3s ease-in-out;
}

.main .swiper-button-next:hover:before {
    transform: translateX(5px);
    color: var(--color-1);
}

.main .swiper-button-prev:hover:after {
    transform: translateX(-5px);
    color: var(--color-1);
}

.main .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    display: none;
}


/* Global page hero */
.page-hero {
    position: relative;
    background: var(--color-1);
    margin-bottom: 28px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
}

.page-hero-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.page-hero__content {
    text-align: left;
    background: var(--color-1);
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.page-hero {
    height: auto;
    width: 100%;
    max-width: 1920px;
}

.page-hero__content-wrapper {
    display: flex;
    align-items: start;
    width: 100%;
    height: 100%;
}

.page-hero__content h1 {
    font-size: 25px;
    padding: 20px 0;
}

.page-hero__content p {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: none;
}

.page-hero__image img {
    position: static;
    aspect-ratio: 16/9;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.page-hero .row {
    flex-direction: column-reverse;
}

    .page-hero .row > * {
        padding: 0;
        margin: 0;
    }

@media (min-width: 768px) {
    .page-hero {
        height: 430px;
    }

    .page-hero__content h1 {
        font-size: 50px;
    }

    .page-hero__image img {
        position: absolute;
        top: 0;
    }

    .page-hero .row {
        flex-direction: row;
    }

        .page-hero .row > * {
            padding-right: calc( var(--bs-gutter-x) * .5);
            padding-left: calc( var(--bs-gutter-x) * .5);
            margin-top: var(--bs-gutter-y);
        }
}

.no-content,
.admin__no-content {
    display: none;
}

.skeleton-loading {
    animation: skeleton-animation 1s infinite linear;
    color: transparent !important;
}

p.skeleton-loading {
    min-height: 23px;
    margin-bottom: 3px !important;
}

@keyframes skeleton-animation {
    0% {
        background-color: #ddd;
    }

    50% {
        background-color: #d0d0d0;
    }

    100% {
        background-color: #ddd;
    }
}

.dg-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.dg-pagination__prev,
.dg-pagination__next {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-3);
    appearance: none;
    border: none;
    background-color: transparent;
    transition: color 0.3s ease-in-out;
    width: 150px;
}

    .dg-pagination__prev span,
    .dg-pagination__next span {
        line-height: 0.5;
    }

    .dg-pagination__prev i,
    .dg-pagination__next i {
        transition: transform 0.3s ease-in-out;
    }

.ausopen .dg-pagination__prev i,
.ausopen .dg-pagination__next i {
    color: var(--ausopen-light-blue);
}

.dg-pagination__prev:hover,
.dg-pagination__next:hover {
    color: var(--color-1);
}

    .dg-pagination__prev:hover i {
        transform: translateX(-10px);
    }

    .dg-pagination__next:hover i {
        transform: translateX(10px);
    }

.dg-pagination__indicator {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-3);
    white-space: nowrap;
}

.dg-pagination__prev.button--disabled,
.dg-pagination__next.button--disabled {
    pointer-events: none;
    opacity: 0.5;
}

/* Microsite color overrides */
.mygolf {
    --color-1: var(--ga-green);
    --color-3: var(--mygolf-primary);
}

.ausopen {
    --color-1: var(--ausopen-light-blue);
    --color-3: var(--ausopen-blue);
}

.getingolf {
    --color-1: var(--getingolf-green);
    --color-3: var(--ga-dark-blue);
}

.auspga {
    --color-1: #0f5985;
    --color-2: #A48138;
    --color-3: #000;
}

.pgaigi {
    --color-1: var(--pga-primary-green);
    --color-3: var(--pga-accent-green);
}

.wpga {
    --color-1: var(--wpga-primary-1);
    --color-2: var(--wpga-primary-2);
    --color-3: var(--wpga-secondary);
}

/* Form */
.form-inline label,
.form-group label,
.section-filters [class^="col-"] > label {
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
    align-items: center;
    color: #000;
    margin-top: 20px;
}

.form__group input[type=text],
.form__group input[type=number],
.form__group input[type=password],
.form__group input[type=email],
.form-group input[type=text],
.form-group input[type=number],
.form-group input[type=password],
.form-group input[type=email] {
    height: 60px;
    border-bottom: 1px solid #D9DADB;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background-color: transparent;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
}

    .form-group input[type=text].form-control-sm,
    .form-group input[type=number].form-control-sm,
    .form-group input[type=password].form-control-sm,
    .form-group select.form-control-sm,
    .input-group .form-control {
        height: inherit;
        font-size: 14px;
        color: #000000;
        font-weight: 400;
    }

    .form-group input[type=text].required,
    .form-group input[type=number].required,
    .form-group input[type=password].required,
    .form-group input[type=email].required {
        border-bottom: 3px solid #FE4F47;
    }

.form-check.required input[type=text] {
    border-bottom: 1px solid #D9DADB;
}

    .form-check.required input[type=text].has-error {
        border-bottom: 1px solid #FE4F47 !important;
        box-shadow: inset 0 -1px 0 0 #fe4f47 !important;
    }

.form-group select.form-control-sm {
    line-height: 24px;
    height: 30px;
}

select.form-control {
    height: 60px;
    border-bottom: 1px solid #D9DADB;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background-color: initial;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L5.64645 5.64645C5.84171 5.84171 6.15829 5.84171 6.35355 5.64645L11 1' stroke='%238D8D93' stroke-linecap='round'/%3e%3c/svg%3e") !important;
    background-position: right 11px center;
}

select.form-select.styled {
    background-color: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    border-bottom-color: var(--color-1);
    height: 40px;
}

select.form-select:focus,
.form-control:focus {
    box-shadow: none;
}

.btn-primary, .btn-default {
    background: var(--color-1);
    border: none;
    border-radius: 30px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    /* identical to box height */
    text-align: center;
    letter-spacing: 0.01em;
    color: #000;
    padding: 20px;
}

    .btn-primary:hover {
        color: #000;
        background-color: var(--color-1);
        box-shadow: 0 0 0 0.2rem var(--color-1);
        border: 0;
    }

    .btn-primary.focus, .btn-primary:focus {
        color: #000;
        background-color: var(--color-1);
        border: 0;
        box-shadow: 0 0 0 0.2rem var(--color-1);
    }

    .btn-primary:not(:disabled):not(.disabled).active,
    .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
        color: #FFFFFF;
        background-color: var(--color-1);
        border: 0;
    }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #051219;
        background-color: #00E6A1;
    }

.alert {
    border-radius: 0;
    padding: 14px;
}

.btn-primary.danger {
    background: #FE4F47;
    color: #FFF;
}

input[type=submit].btn-block {
    width: 100%;
}


.tooltip-inner {
    max-width: 320px;
    padding: 10px 20px;
    font-size: 14px;
    background-color: var(--color-3);
    border-radius: 4px;
}

.form-group.password {
    margin-bottom: 1rem;
}

/* GA Login */

.ga-login {
    padding-top: 60px;
    padding-bottom: 120px;
}

    .ga-login label {
        margin-right: 4px;
    }

    .ga-login .alert-primary {
        margin-bottom: 60px;
    }

    .ga-login .alert-warning {
        margin-bottom: 60px;
    }

    .ga-login h2 {
        text-align: center;
        margin-bottom: 12px;
        line-height: 30px;
    }

    .ga-login .subtitle {
        margin-bottom: 40px;
        text-align: center;
    }

    .ga-login .form-group.password input {
        margin-bottom: 12px;
    }

    .ga-login .form-group a {
        font-size: 12px;
        line-height: 24px;
        /* identical to box height, or 200% */
        color: var(--color-3);
        text-decoration: underline;
    }

    .ga-login .remember-me {
        margin-bottom: 50px;
    }

    .ga-login .form-check-input {
        font-size: 12px;
        line-height: 24px;
        color: var(--color-1);
    }

    .ga-login input[type=checkbox] {
        margin-right: 8px;
        vertical-align: middle;
        margin-top: -3px;
    }

    .ga-login .login-footer {
        margin-top: 24px;
    }

    .ga-login .btn-submit {
        margin-top: 40px;
    }

    .ga-login .table td,
    .ga-login .table th {
        border-top: 0;
    }

.forgot-password-message input {
    margin-top: 20px;
    margin-bottom: 20px;
}

.ga-login .alert {
    margin-bottom: 60px;
}

    .ga-login .alert .table {
        margin-bottom: 0;
    }

.ga-login .form-check {
    padding-left: 0;
}

    .ga-login .form-check .form-check-input {
        float: unset;
        position: relative;
        margin-top: -2px;
        margin-left: 0;
        margin-right: 8px;
        border: 0;
    }

    .ga-login .form-check label {
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        align-items: center;
        color: #000;
    }

.ga-login .btn {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #FFFFFF;
}

/* GA Admin Login */

.ga-admin-login .form {
    flex: 0 0 30%;
    max-width: 30%;
}

.ga-admin-login hr {
    display: none;
}

.ga-admin-login .row {
    justify-content: center;
}

.ga-admin-login .logout-wrapper, .ga-admin-login .form-login .button-wrapper {
    margin-top: 15px;
}

.ga-admin-login .button-wrapper {
    display: flex;
    flex-direction: column !important;
}

    .ga-admin-login .button-wrapper .btn {
        align-self: flex-end;
    }

/* */

.u_image-cover, .flockler__item img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    background-position: center center;
}


.dg-rte .accordion-list,
.dg-rte .bootstrap-tabs {
    margin-bottom: 1.5rem;
}

.dg-rte .collapsible-item {
    border-bottom: 1px solid #C3C8C9;
}

    .dg-rte .collapsible-item + .collapsible-item {
        margin-top: 10px;
    }

.dg-rte .collapsible-item-title {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 20px 15px;
}

    .dg-rte .collapsible-item-title a.collapsible-item-title-link,
    .dg-rte .collapsible-item-title a.collapsible-item-title-link-icon {
        text-decoration: none;
        border-bottom: none;
        font-size: 20px;
        color: var(--dark-blue);
    }

    .dg-rte .collapsible-item-title a.collapsible-item-title-link {
        flex: 1;
    }

    .dg-rte .collapsible-item-title a.collapsible-item-title-link-icon .glyphicon-chevron-down {
        font-family: "Font Awesome 5 Pro";
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        transition: transform 0.3s ease-in-out;
    }

    .dg-rte .collapsible-item-title a.collapsible-item-title-link-icon.collapsed .glyphicon-chevron-down:before {
        content: "\f067";
        color: var(--dark-blue);
    }

    .dg-rte .collapsible-item-title a.collapsible-item-title-link-icon .glyphicon-chevron-down:before {
        content: "\f068";
        color: var(--color-1);
    }

.dg-rte .collapsible-item-body {
    padding: 0 15px 10px;
}

    .dg-rte .collapsible-item-body p {
        color: #646464;
        font-size: 16px;
    }

    .dg-rte .collapsible-item-body p:first-child {
        margin-top: 0;
    }

.dg-rte ul.nav-tabs {
    border-bottom: 1px solid #C3C8C9;
}

    .dg-rte ul.nav-tabs,
    .dg-rte ul.nav-tabs li {
        margin-bottom: 0;
    }

.dg-rte a.tab-link.active {
    border: 1px solid #C3C8C9;
    border-bottom-color: #fff;
}

.dg-rte a.tab-link {
    border: none;
    padding: 10px 15px;
    margin-bottom: -1px;
    display: block;
    font-size: 16px;
}

.dg-rte .tab-content {
    padding: 15px;
}

.editmemberdetails-div2 {
    max-width: 1200px;
    margin: auto;
}

.form-editmemberdetails.card, .form-editmemberdetails-photo.card {
    flex-direction: column;
    align-items: start;
    height: auto;
    border: none;
    box-shadow: none;
    padding: 0;
}

.form-editmemberdetails .card-header,
.form-editmemberdetails-photo .card-header {
    flex-direction: column;
    align-items: start;
    height: auto;
    box-shadow: none;
    width: 100%;
    background-color: transparent;
}

.form-editmemberdetails-photo .card-header {
    margin-bottom: 14px;
    margin-top: 20px;
}

.form-editmemberdetails-photo {
    margin-bottom: 20px;
}

.editmemberdetails-wrapper input.btn.btn-primary:not(.toggle-on),
.editmemberdetails-btn,
.editmemberdetails-wrapper a.editmemberdetails-btn {
    font-size: 14px;
    text-decoration: none;
    float: right;
    margin-bottom: 10px;
    border-radius: 20px;
    height: 35px;
    width: auto;
    padding: 0px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    background: var(--color-1);
    border: none;
    font-style: normal;
    font-weight: normal;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000;
}

.editmemberdetails-btn,
.editmemberdetails-wrapper a.editmemberdetails-btn {
    float: none;
    display: inline-flex;
}

    .editmemberdetails-btn:hover,
    .editmemberdetails-wrapper a.editmemberdetails-btn:hover,
    .editmemberdetails-wrapper input.btn.btn-primary:not(.toggle-on):hover,
    .editmemberdetails-wrapper input.btn.btn-primary:not(.toggle-on):active,
    .editmemberdetails-wrapper input.btn.btn-primary:not(.toggle-on):focus {
        color: #000;
        box-shadow: none;
    }

.editmemberdetails-btn-wrapper {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.editmemberdetails-wrapper .form-editmemberdetails-photo input.btn.btn-primary {
    float: none;
}

.editmemberdetails-wrapper .check-email-communication {
    display: flex;
    align-items: center;
}

.editmemberdetails-wrapper a {
    color: var(--color-3);
    text-decoration: none;
}

.editmemberdetails-wrapper span.form-control {
    height: 60px;
    border-bottom: 1px solid #D9DADB;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background-color: transparent;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
}

@media (max-width: 1200px) {
    .editmemberdetails-div2 {
        width: 100%;
    }
}


/* MY ACCOUNT */
.bg-info.myaccount-details {
    background-color: #D6EAF6 !important;
}

.myaccount-details-info-main h2 {
    color: var(--color-3) !important;
    font-weight: 300;
    font-size: 26px;
}

.table-outstanding-invoices > thead > tr > th {
    border-top: 0;
}

.myaccount-value {
    padding: 8px 0;
}

.text-warning {
    color: #8a6d3b !important;
}

.icon-creditcard {
    width: auto;
    height: auto;
    display: revert;
}

.myaccount-section h3 {
    font-weight: 300;
    font-size: 20px;
    padding: 15px 0;
}

.bs-callout {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
}

.bs-callout-warning {
    border-left-color: #f0ad4e;
}

.billingcard-membership {
    display: flex;
    line-height: 28px;
}

.rmyaccount-container .btn {
    font-size: 14px;
}

.rmyaccount-container .control-label {
    margin-bottom: 10px;
}

.rmyaccount-container .btn-default {
    background-color: #eee;
    border: 1px solid #ddd;
}

.rmyaccount-container .btn-success {
    background-color: #28a745;
}

.rmyaccount-container .btn-warning {
    color: #fff;
}

.myaccountpay-wrapper table {
    width: calc(100% - 60px);
}

.rmyaccount-container .panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

.rmyaccount-container .panel-default > .panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}

.rmyaccount-container .panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
}

.rmyaccount-container .imgpaymentmethod {
    margin-top: 10px;
}

.rmyaccount-container table {
    margin-bottom: 0;
}

.myaccountpaymentconfirmation-wrapper .btn {
    margin-top: 16px;
    font-size: 14px;
}

.rmyaccount-container .footer-message {
    margin-bottom: 100px;
}

.col-rating, .col-slope, .col-gross, .col-pcc, .col-hd, .col-whs, .col-coursehcap {
    font-weight: 600;
}

.golfnz-signup .btn {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #fff;
    margin-top: 5px !important;
}

.golfnz-signup a {
    color: var(--color-3);
}

.golfnz-signup .btn:hover {
    color: #000;
    background-color: var(--color-1);
    box-shadow: 0 0 0 0.2rem var(--color-1);
}

.golfnz-signup .active {
    font-weight: bold;
}

.golfnz-signup .header-success {
    font-size: 30px !important;
}

.teebooking-golfaus .booking-player-select input[type=checkbox] + label {
    margin-left: 10px;
    line-height: 1;
    transform: translate(0px, -2px);
}

.teebooking-golfaus .btn-primary {
    margin-top: 20px;
}

/*Competition Results*/

.competition-result {
    max-width: 1620px;
    margin: 0 auto;
    padding-top: 40px;
}

    .competition-result #ucCompetitionResultsViewResults,
    .competition-result .section-view,
    .competition-result .hr {
        width: 83%;
        margin: 0 auto;
        max-width: 1348px;
    }

    .competition-result .section-view,
    .competition-result .hr {
        display: none;
    }

    .competition-result .h3 {
        margin-bottom: 40px;
    }

    .competition-result .form-group {
        margin-right: 40px;
    }

    .competition-result .form-control {
        height: 44px;
        padding: 0px 15px 0 5px;
        min-width: 225px;
    }

    .competition-result .form-group label {
        margin: 15px 15px 15px 0;
    }

    .competition-result #results_table {
        margin-top: 80px;
    }

    .competition-result .table th {
        border-top: 0;
        color: #8D8D93;
        font-size: 1.4rem;
        font-weight: 600;
        padding: 20px;
    }

    .competition-result .table td {
        padding: 20px;
    }

    .competition-result .score {
        color: #051219;
        border-radius: unset;
        font-size: inherit;
        display: block;
        width: auto;
        height: auto;
    }

    .competition-result .results_table .score-revert {
        display: revert;
    }

    .competition-result input[type=checkbox] {
        width: 20px;
        height: 20px;
        padding: 0;
        min-width: 20px;
    }

    /**** ADDED ****/

    .competition-result .h6 {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
        font-weight: 400;
        text-transform: uppercase;
    }

    .competition-result .form-inline {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -ms-flex-align: center;
        align-items: center;
    }

    .competition-result .form-group select {
        background-repeat: no-repeat;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L5.64645 5.64645C5.84171 5.84171 6.15829 5.84171 6.35355 5.64645L11 1' stroke='%238D8D93' stroke-linecap='round'/%3e%3c/svg%3e");
        background-position: right 11px center;
    }

    .competition-result .table--leaderboard {
        overflow-y: hidden;
        overflow-x: auto;
        margin-top: 20px;
    }

        .competition-result .table--leaderboard .row-container {
            max-width: 100%;
            width: 100%;
        }

        .competition-result .table--leaderboard .table__header--leaderboard {
            display: flex;
            align-items: center;
            letter-spacing: 0.01em;
            color: #fff;
            font-size: 1.4rem;
            background-color: var(--color-3);
            border-top-left-radius: 3px;
            border-top-right-radius: 3px;
            opacity: 1 !important;
            visibility: visible !important;
            transition: none !important;
            transform: none !important;
            padding-top: 20px;
            padding-bottom: 20px;
        }

            .competition-result .table--leaderboard .table__header--leaderboard .table-text {
                color: #fff;
                letter-spacing: 0.01em;
                line-height: 1.5;
                font-size: 14px;
                font-weight: 600;
                white-space: nowrap;
            }

        .competition-result .table--leaderboard .table__row {
            cursor: pointer;
            padding-top: 20px;
            padding-bottom: 20px;
        }

        .competition-result .table--leaderboard .table__row--active {
            border-bottom: none;
        }

        .competition-result .table--leaderboard .table__row:hover,
        .competition-result .table--leaderboard .table__row:focus {
            background-color: #F3F4F5;
        }

        .competition-result .table--leaderboard .table__row:after {
            content: '';
            display: block;
            width: 100%;
            height: 2px;
            display: block;
            background-color: transparent;
            position: absolute;
            bottom: -1px;
            left: 0;
            transition: background .3s ease;
        }

        .competition-result .table--leaderboard ._l-left-col {
            display: flex;
            align-items: center;
            flex: 1;
        }

        .competition-result .table--leaderboard ._l-right-col {
            display: flex;
            align-items: center;
        }

    .competition-result .table__row-content {
        display: none;
    }

@media (max-width: 991.98px) {
    .competition-result .table--leaderboard .stat {
        min-width: 0;
        width: 4rem;
        padding-right: 0;
        min-width: 0;
    }

    .competition-result .table--leaderboard .table__header--leaderboard {
        display: inline-flex;
    }
}

@media (min-width: 992px) {
    .competition-result .table--leaderboard .stat {
        min-width: 5.6rem;
        padding-left: .8rem;
        padding-right: .8rem;
    }
}

@media (min-width: 1200px) {
    .competition-result .table--leaderboard .stat {
        min-width: 6.4rem;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

@media (min-width: 1620px) {
    .competition-result .table--leaderboard {
        overflow-x: hidden;
    }
}

.competition-result .table--leaderboard .stat .table-text,
.competition-result .table--leaderboard .stat .generic-table td,
.competition-result .generic-table .table--leaderboard .stat td {
    font-weight: 600;
}

.competition-result .table--leaderboard .country {
    padding-right: .8rem;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .competition-result .table--leaderboard .country {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

@media (max-width: 480px) {
    .competition-result .table--leaderboard .country {
        display: none;
    }
}

.competition-result .table--leaderboard .pga {
    padding-left: .8rem;
    padding-right: .8rem;
}

@media (min-width: 992px) {
    .competition-result .table--leaderboard .pga {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

@media (max-width: 580px) {
    .competition-result .table--leaderboard .pga {
        display: none;
    }
}

.competition-result .table--leaderboard .table-text,
.competition-result .table--leaderboard .generic-table td,
.competition-result .generic-table .table--leaderboard td {
    padding-left: .8rem;
    padding-right: .8rem;
}

.competition-result .table--leaderboard .table-text--position {
    width: 32px;
}

.competition-result .scoredetail-loader {
    text-align: center !important;
}

.competition-result .table__row-content__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 0 !important;
}

.competition-result .table--leaderboard .table__row-content__close {
    height: 4.5rem;
}

.competition-result .table__row-content__close {
    position: absolute;
    right: -12px;
    top: 0;
    color: #02484D;
    font-size: 1.4rem;
    line-height: 1.3;
    display: inline-flex;
    align-items: center;
    height: 6rem;
    outline: 0;
    border: 0;
    background-color: transparent;
    text-decoration: none;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

    .competition-result .table__row-content__close svg {
        display: inline-block;
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        vertical-align: middle;
        fill: currentColor;
        stroke: currentColor;
    }

.competition-result .row-content__header {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
}

.competition-result .row-content__key {
    display: flex;
}

.competition-result .key {
    display: flex;
    align-items: center;
    padding-right: 2.6rem;
    flex-shrink: 0;
    padding-top: .6rem;
    padding-bottom: .6rem;
}

.competition-result .score-row .score {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    font-weight: 600;
    font-size: 1.4rem;
    position: relative;
}

.competition-result .key__icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
    letter-spacing: 0.01em;
    font-weight: 300;
}

.competition-result .key__text {
    font-size: 1.2rem;
    letter-spacing: 0.01em;
    padding-left: 1rem;
}

.competition-result .score.is-eagle {
    background-color: #49D190;
    font-weight: 400;
}

.competition-result .score.is-birdie {
    background-color: #FE4F47;
    font-weight: 400;
}

.competition-result .score.is-na {
    color: #fff;
    background-color: #051219;
    font-weight: 400;
    border-radius: 0;
}

    .competition-result .score.is-na:after {
        background: none;
        border: 1px solid #FFF;
        content: "";
        display: block;
        position: absolute;
        top: 2px;
        left: 2px;
        right: 2px;
        bottom: 2px;
        pointer-events: none;
    }

.competition-result .score.is-par {
    color: #051219;
    background-color: rgba(0, 0, 0, 0);
    font-weight: 400;
}

.competition-result .score.is-bogey {
    background-color: #188DE2;
    font-weight: 400;
    border-radius: 0;
}

.competition-result .score.is-bogey2 {
    background-color: #051219;
    font-weight: 400;
    border-radius: 0;
}

    .competition-result .score.is-bogey2:after {
        background: none;
        border: 1px solid #FFF;
        content: "";
        display: block;
        position: absolute;
        top: 2px;
        left: 2px;
        right: 2px;
        bottom: 2px;
        pointer-events: none;
    }

.competition-result .key__icon.score.is-bogey2 > span {
    width: 16px;
    height: 16px;
    border: 1px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.competition-result .score.is-total {
    color: #051219;
    text-align: center;
}


.competition-result .key__icon.score:after {
    border: none !important;
}

.competition-result .row-content__body {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 0;
    margin-bottom: 2rem;
    border-top: 1px solid #BFC4C8;
    border-bottom: 1px solid #BFC4C8;
}

.competition-result .score.is-bogey2 span,
.competition-result .score.is-bogey span,
.competition-result .score.is-par span,
.competition-result .score.is-na span,
.competition-result .score.is-birdie span,
.competition-result .score.is-eagle span,
.competition-result .key__icon span {
    color: #fff;
}

.competition-result .score--text {
    color: #000000;
    font-size: 13px;
    font-weight: 400;
}

.competition-result .score-container {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.competition-result .row-content__col--left .score {
    justify-content: flex-start;
}

.competition-result .row-content__scroll {
    position: relative;
    width: calc(100% - (40px * 2));
    flex: 0 0 calc(100% - (40px * 2));
    max-width: calc(100% - (40px * 2));
    overflow: auto;
}

.competition-result .show-leaderboard-mobile-swipe.remove-swipe .row-content__scroll__mobile-swipe {
    opacity: 0;
    visibility: hidden;
    transition: all .5s linear 2s;
}

.competition-result .score-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.competition-result .data-holes-is-out .score-container--out {
    display: flex;
}

.competition-result .row-content__scroll .score {
    position: relative;
}

.competition-result .score-container--out-in .score--text {
    color: #051219;
}

.competition-result .row-content__col--right {
    background-color: #F5F5F6;
    border-left: 2px solid #BFC4C8;
    text-align: center;
}

.competition-result .row-content__scroll__mobile-swipe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
}

.competition-result .scorecard-minimum table {
    font-size: 14px;
    width: 100% !important;
}

    .competition-result .scorecard-minimum table tr.bg-grey {
        background-color: #c7c7c7;
    }

    .competition-result .scorecard-minimum table tr.bg-light-grey {
        background-color: #f3f3f3;
    }

    .competition-result .scorecard-minimum table td {
        vertical-align: middle;
        padding: 6px 2px;
    }

    .competition-result .scorecard-minimum table:not(.text-left) td {
        text-align: center;
    }

    .competition-result .scorecard-minimum table td span.is-eagle {
        background-color: #49D190;
        color: #333;
        border: 2px solid #00964e;
        border-radius: 50%;
        width: 22px;
        height: 22px;
        display: inline-grid;
        line-height: 18px;
        text-align: center;
    }

    .competition-result .scorecard-minimum table td span.is-birdie {
        background-color: #FE4F47;
        color: #fff;
        border: 1px solid #840600;
        border-radius: 50%;
        width: 22px;
        height: 22px;
        display: inline-grid;
        line-height: 21px;
        text-align: center;
    }

    .competition-result .scorecard-minimum table td span.is-par {
        background-color: #fff;
        width: 22px;
        height: 22px;
        text-align: center;
    }

        .competition-result .scorecard-minimum table td span.is-par.bordered {
            border: 1px solid #e8e8e8;
            display: inline-grid;
            line-height: 21px;
        }

    .competition-result .scorecard-minimum table td span.is-bogey {
        background-color: #188DE2;
        color: #fff;
        border: 1px solid #003d69;
        width: 22px;
        height: 22px;
        display: inline-grid;
        line-height: 21px;
        text-align: center;
    }

    .competition-result .scorecard-minimum table td span.is-bogey2,
    .competition-result .scorecard-minimum table td span.is-na {
        background-color: #051219;
        color: #fff;
        border: 2px solid #777;
        width: 22px;
        height: 22px;
        display: inline-grid;
        line-height: 18px;
        text-align: center;
    }

.competition-result .scorecard-minimum {
    display: block;
}

.competition-result .text-left {
    text-align: left !important;
}

.competition-result .border-left {
    border-left: 1px solid darkgrey !important;
}

.competition-result .text-right {
    text-align: right !important;
}

.competition-result .border-right {
    border-right: 1px solid darkgrey !important;
}

.competition-result .open-score {
    text-decoration: none;
    color: var(--color-3);
}

.competition-result .tooltip-inner ul {
    padding: 10px 15px;
}

    .competition-result .tooltip-inner ul li {
        text-align: left;
    }

@media (min-width: 1440px) {
    .competition-result .score-container {
        width: 52px;
        height: 52px;
    }
}

@media (min-width: 1328px) {
    .competition-result .row-content__scroll__mobile-swipe {
        display: none;
    }
}

@media (min-width: 1200px) {
    .competition-result .table--leaderboard .table-text--position {
        width: 48px;
    }

    .competition-result .score-container {
        width: 48px;
        height: 48px;
    }
}

@media (min-width: 992px) {
    .competition-result .table--leaderboard .table-text,
    .competition-result .table--leaderboard .generic-table td,
    .competition-result .generic-table .table--leaderboard td {
        max-width: 165px;
        min-width: 100px;
        width: 100%;
    }

    .competition-result .table__row-content__inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .competition-result .table__row-content__close {
        right: 0;
    }

    .competition-result .row-content__col {
        width: 55px;
        flex: 0 0 55px;
        max-width: 55px;
    }

    .competition-result .row-content__col--left {
        border-right: 1px solid #BFC4C8;
    }

    .competition-result .row-content__scroll {
        width: calc(100% - (80px * 2));
        flex: 0 0 calc(100% - (80px * 2));
        max-width: calc(100% - (80px * 2));
    }

    .competition-result .row-content__col--right {
        border-left: 1px solid #D9DADB;
    }

        .competition-result .row-content__col--right .sm-only {
            display: none;
        }

        .competition-result .row-content__col--right .lg-only {
            display: block;
        }
}

@media (min-width: 768px) {
    .competition-result .table__row-content.content-is-active {
        border-bottom: 1px solid #8D8D93;
        border-top: 1px solid lightgrey;
    }

    .competition-result .row-content__scroll {
        width: calc(100% - (70px * 2));
        flex: 0 0 calc(100% - (70px * 2));
        max-width: calc(100% - (70px * 2));
    }

    .competition-result .scorecard-minimum {
        display: none;
    }
}

/**** SCORE COMMENTS ****/
.competition-result .score-comments {
    font-size: 15px;
    margin-bottom: 50px;
}

    .competition-result .score-comments input,
    .competition-result .score-comments button {
        font-size: 15px;
    }

    .competition-result .score-comments input {
        padding: 22px 10px;
    }

    .competition-result .score-comments button {
        height: 100%;
        border-color: var(--color-1) !important;
        color: var(--color-1) !important;
    }

        .competition-result .score-comments button:hover {
            border-color: var(--color-1) !important;
            color: #fff !important;
            background-color: var(--color-1) !important;
        }

    .competition-result .score-comments .mt-3 {
        margin-top: 0px !important;
    }

    .competition-result .score-comments .mb-3 {
        margin-bottom: 20px !important;
    }

    .competition-result .score-comments .friend-comment {
        padding: 18px;
        background-color: #ececec;
        border-radius: 20px;
    }

    .competition-result .score-comments .my-photo-container {
        width: 45px;
        height: 45px;
        margin-right: 0;
    }

        .competition-result .score-comments .my-photo-container svg {
            width: 100%;
            height: 100%;
            flex: 1 1 100%;
            display: flex;
            border-radius: 50%;
            background-color: #ececec;
            padding: 8px;
            color: #0F2A31;
            vertical-align: middle;
            fill: currentColor;
            stroke: currentColor;
        }

@media (max-width: 575px) {
    .competition-result .score-comments .my-photo-container {
        float: left !important;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .competition-result .scorecard-full, .score-legend {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .competition-result .table--leaderboard .myscores-row {
        display: inline-block !important;
        max-width: unset !important;
        width: auto !important;
    }

    .competition-result .table--leaderboard .table__header--leaderboard .table-text {
        white-space: pre-wrap;
    }
}

.competition-result .fas.fa-circle:before {
    content: "\f456";
}

.competition-result .col-played {
    order: 0;
}

.competition-result .col-course {
    order: 1;
}

.competition-result .col-gross {
    order: 2;
}

.competition-result .col-marker {
    order: 3;
}

.competition-result .col-rating {
    order: 4;
}

.competition-result .col-slope {
    order: 5;
}

.competition-result .col-pcc {
    order: 6;
}

.competition-result .col-coursehcap {
    order: 7;
}

.competition-result .col-sd {
    order: 8;
}

.competition-result .col-whs {
    order: 9;
}

.competition-result .badge {
    white-space: pre-wrap;
    color: #212529;
    background-color: var(--ga-yellow) !important;
}

.competition-result .table--leaderboard .row-content__header .score {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    height: 26px;
    width: 26px;
    font-size: 1.3rem;
}

.competition-result .table--leaderboard .score {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    font-weight: 500;
    font-size: 1.4rem;
}

    .competition-result .table--leaderboard .score--text,
    .competition-result .table--leaderboard .score.is-par,
    .competition-result .table--leaderboard .score.is-total {
        color: #000000;
        font-size: 13px;
        font-weight: 400;
    }

    .competition-result .table--leaderboard .score.is-total {
        font-weight: 500;
    }

    .competition-result .table--leaderboard .score.is-bogey2 {
        border-radius: 0;
    }

.competition-result .table--leaderboard,
.competition-result .row-content__scroll {
    overflow: hidden;
}

.competition-result .table > :not(caption) > * > * {
    padding: 20px 15px;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.competition-result .table th {
    color: #ffffff !important;
    background-color: var(--color-3) !important;
}


.dg-rte table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6;
}

    .dg-rte table > tbody {
        vertical-align: inherit;
    }

    .dg-rte table > :not(caption) > * > * {
        padding: .5rem .5rem;
        background-color: var(--bs-table-bg);
        border-bottom-width: 1px;
        box-shadow: none;
    }

    .dg-rte table > tbody > tr:nth-of-type(odd) > * {
        --bs-table-accent-bg: var(--bs-table-striped-bg);
        color: var(--bs-table-striped-color);
    }

    .dg-rte table > tbody > tr:nth-of-type(odd) > * {
        background-color: var(--bs-table-striped-bg);
    }

/*Override to Bootstrap table to allow changing of background color via ckeditor*/
.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: var(--bs-table-striped-bg);
}

.table > :not(caption) > * > * {
    box-shadow: none;
}

.invalid-feedback.show {
    display: block;
}

.zforgotpassword-container,
.zpasswordreset-container {
    margin-top: 30px;
}

    .zforgotpassword-container h2,
    .zpasswordreset-container h2 {
        margin-bottom: 10px;
    }

    .zforgotpassword-container .form-group i,
    .zpasswordreset-container .form-group i {
        margin-left: 5px;
    }


    .zforgotpassword-container .form-control,
    .zpasswordreset-container .form-control {
        height: 30px !important;
    }

    .zforgotpassword-container a.btn,
    .zpasswordreset-container input[type=submit].btn-block {
        margin-bottom: 10px;
        width: 100%;
        border-radius: 20px;
        height: 35px;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .zforgotpassword-container .login-footer,
    .zpasswordreset-container .login-footer {
        font-size: 12px;
    }


.dg-rte a.btn-link,
.dg-accordion a.btn-link {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-3);
    border: 1px solid var(--color-3);
    border-radius: 30px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    line-height: normal;
    margin-bottom: 1rem;
}

    .dg-rte a.btn-link:after,
    .dg-accordion a.btn-link:after {
        content: "\e900";
        font-family: 'icomoon' !important;
        speak: never;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        font-size: 12px;
        transition: transform 0.3s ease-in-out;
    }

    .dg-rte a.btn-link:hover:after,
    .dg-accordion a.btn-link:hover:after {
        transform: translateX(5px);
    }

.angry-error {
    color: rgb(var(--bs-danger-rgb)) !important;
    font-weight: bold;
}

.teebooking-golfaus #payment-alert-container input {
    margin-top: 0;
}

#MainContent_CreditCardPaymentPanel #MainContent_LockImage1 {
    margin-top: 10px;
    margin-right: 5px;
}

.clubcms-teebooking .booking-payment h2 {
    text-transform: lowercase;
    font-size: 26px;
}

    .clubcms-teebooking .booking-payment h2:first-letter {
        text-transform: uppercase;
    }

.clubcms-teebooking .booking-payment div.angry p,
.clubcms-teebooking .booking-payment div.angry p > span {
    font-size: 14px !important;
}

.clubcms-teebooking .booking-payment .module-button-cta-red {
    background: var(--color-1);
    border: none;
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.01em;
    padding: 10px 20px;
    border-radius: 40px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-3);
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.all-time__header-title.m-5 {
    margin-left: 0 !important;
    margin-bottom: 10px !important;
    font-size: 34px;
}

.mobile-visible {
    display: none;
    height: 100%;
}

@media (max-width: 992px) {
    .mobile-visible {
        display: block;
    }

    .mobile-hidden {
        display: none;
    }
}

/*Bootstrap layout overrides*/
@media (min-width: 1400px) {
    body {
        --bs-gutter-x: 10px;
    }

    .row {
        --bs-gutter-x: 20px;
    }
}

.zforgotpassword,
.zpasswordreset {
    background-color: #f1efeb;
}

    .zforgotpassword .zforgotpassword-container,
    .zpasswordreset .zpasswordreset-container {
        padding: 80px 0;
        margin-top: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .zforgotpassword .zforgotpassword-container .usercontrol-div3,
        .zpasswordreset .zpasswordreset-container .usercontrol-div3 {
            background-color: #fff;
            padding: 40px;
            border-radius: 5px;
            position: relative;
            box-shadow: 7px 5px 13px 2px rgba(0, 0, 0, 0.1);
            min-height: 430px;
            width: 550px;
            margin-left: 0;
            display: flex;
            flex-direction: column;
        }


            .zforgotpassword .zforgotpassword-container .usercontrol-div3:before,
            .zpasswordreset .zpasswordreset-container .usercontrol-div3:before {
                content: "";
                width: 8px;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background-color: grey;
                border-top-left-radius: 5px;
                border-bottom-left-radius: 5px;
                background-color: var(--ga-electric-blue);
            }

        .zforgotpassword .zforgotpassword-container .forgot-password {
            flex: 1;
        }

            .zforgotpassword .zforgotpassword-container .forgot-password h2,
            .zpasswordreset .usercontrol-div3 h2 {
                font-size: 46px;
            }

            .zforgotpassword .zforgotpassword-container .forgot-password .subtitle {
                font-size: 16px;
            }

    .zforgotpassword .zforgotpassword-alert-msg {
        position: absolute;
        z-index: 1;
        top: 50px;
    }

    .zforgotpassword .btn.btn-primary {
        margin-bottom: 10px;
        width: 100%;
        border-radius: 20px;
        height: 35px;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0px;
    }

    .zforgotpassword .zforgotpassword-container .usercontrol-div3 {
        min-height: 330px;
    }

/* rMemberSignupV2 */

.rmembersignupv2 .bs-callout-warning {
    border-left-color: #F69140;
}

.rmembersignupv2 label {
    font-weight: 400;
}

.rmembersignupv2 .birthday-picker select {
    width: 33.33333% !important;
    float: left;
    cursor: pointer;
}

.instructions-title,
.extform__section-heading-label,
.rmembersignupv2 .form-group > label,
.rmembersignupv2 .form-group > div > div > label {
    color: var(--ga-dark-blue);
    font-size: 12px !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 21px;
}

.rmembersignupv2 .extform__section-heading-label {
    font-weight: 400 !important;
    text-transform: uppercase !important;
}

.rmembersignupv2 .form-control {
    border-bottom: 1px solid #D9DADB !important;
}

.rmembersignupv2 .subtitle-container {
    font-weight: 400;
    margin-bottom: 0;
}

.rmembersignupv2 .btn-success {
    background-color: var(--ga-blue);
    color: #FFFFFF;
    border: 0 !important;
    font-size: 16px;
    height: 6rem;
    border-radius: 32px !important;
}

.rmembersignupv2 .button-container {
    margin: 20px 0 60px;
}

.rmembersignupv2 .panel-heading,
.rmembersignupconfirmationv2 .panel-heading {
    font-size: 18px !important;
    background-color: var(--ga-dark-blue);
    color: #FFFFFF;
    padding: 10px;
}

.rmembersignupv2 .checkbox.has-error label,
.rmembersignupv2 .has-error .control-label {
    color: #FE4F47;
}

.rmembersignupv2 .has-error .form-control {
    border-bottom: 1px solid #FE4F47 !important;
    box-shadow: inset 0 -1px 0 0 #FE4F47 !important;
}

.rmembersignupv2 .alert {
    margin: 20px 0;
}

    .rmembersignupv2 .alert ul,
    .rmembersignupconfirmationv2 .alert ul {
        padding-left: 20px;
    }

.rmembersignupv2 fieldset {
    padding-top: 0;
    padding-bottom: 0;
}

.rmembersignupv2 .div-voucher,
.rmembersignupconfirmationv2 .div-voucher {
    width: 100%;
    margin-bottom: 15px;
}

.rmembersignupv2 .btn-apply-voucher,
.rmembersignupconfirmationv2 .btn-apply-voucher {
    font-size: 14px;
    border-radius: 20px;
    background-color: var(--ga-blue);
    border-color: var(--ga-blue);
    color: #FFFFFF;
    padding: 4px 10px;
}

.rmembersignupv2 .input-no-bottom-border {
    border-bottom: 0 !important;
}

.rmembersignupv2 a {
    color: var(--ga-dark-blue);
}

.rmembersignupv2 .voucher-code {
    height: 45px !important;
}

.rmembersignupv2 .gender-radio {
    border-bottom: none !important;
    margin-top: 15px;
}

    .rmembersignupv2 .gender-radio .radio-inline {
        margin-right: 15px;
    }

    .rmembersignupv2 .gender-radio input[type=radio] {
        margin-top: -4px;
        vertical-align: middle;
    }

.rmembersignupv2 .terms-and-conditions label {
    margin-top: 0;
}

.rmembersignupconfirmationv2 h3 {
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 26px !important;
}

.rmembersignupconfirmationv2 .btn-pay {
    margin: 20px 0;
}

.rmembersignupv2 .table-payment-summary,
.rmembersignupconfirmationv2 .table-payment-summary {
    margin-top: 40px;
}

.rmembersignupv2 .form-group.instructions {
    margin-top: 3rem;
}

    .rmembersignupv2 .form-group.instructions .form-check label {
        margin-top: 10px;
    }

.rmembersignupv2 .terms-and-conditions {
    margin-bottom: 2rem;
}

.membersignup-title {
    margin-bottom: 5px !important;
}

.rmembersignupv2 #extform-content-wrapper .panel-heading,
.rmembersignupv2 #extform-content-wrapper .form-group.col-sm-12.mt-5.mb-5 {
    display: none;
}

.rmembersignupv2 .extform__text-box-custom {
    border-bottom: none !important;
}

.rmembersignupv2 #discountDetails {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 10px;
}

.voucher-amount::before {
    content: "-";
}

.text-right {
    text-align: right !important;
}

.rmembersignupv2 .panel-body > .form-group:last-child {
    margin-bottom: 0;
}

.rmembersignupv2 #extform-container,
.rmembersignupv2 .form-group-password,
.rmembersignupv2 .form-group-membership-type,
.rmembersignupv2 .form-group-payment-terms,
.rmembersignupv2 .form-group-previous-membership,
.rmembersignupv2 .form-group-where-heard,
.rmembersignupv2 .form-group-member-details {
    margin-bottom: 4rem;
}

.rmembersignupv2 #txbo-HowDidYouHearAboutUs-OTHER-FTEXT {
    border-bottom: 1px solid #D9DADB !important;
    margin-left: 30px;
    width: 400px !important;
}