/* Form field styling additions */

input {
    font-family: "Poppins", sans-serif;
}

.field-validation-error {
    display: block;
    color: #DC3545;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    margin-top: -10px;
}

.form__input .field-validation-error {
    margin-bottom: 15px;
}

.your-details__form .input .field-validation-error {
    margin-top: 5px;
}

.form__checkbox .field-validation-error,
.form__radio .field-validation-error,
.form__checkbox + .field-validation-error,
.form__radio + .field-validation-error,
.form__select + .field-validation-error,
.form__file + .field-validation-error {
    margin-top: 0;
}

.input-validation-error {
    border: 1px solid #DC3545;
}

.your-details__form .input input.input-validation-error {
    border: 1px solid #DC3545;
}

.form__input .form__file input[type=file] {
    position: absolute;
    visibility: hidden;
    height: 0;
    margin: 0;
}

.umbraco-forms-fieldset legend {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 15px;
    color: #007A66;
}

.box .circle .circle__expander--minus {
    display: none;
}
.box.active .circle .circle__expander--plus {
    display: none;
}
.box.active .circle .circle__expander--minus {
    display: inherit;
}

.info_box__content .text {
    padding-right: 15px;
}

.form__submit-loading-icon {
    display: none;
    width: 36px;
    margin-right: 10px;
}

.your-details__form .input .choices {
    margin-bottom: 0;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted::after {
    position: static;
    right: unset;
    top: unset;
    transform: none;
    padding-left: 5px;
    align-self: center;
    opacity: 0.5 !important;
}

@media (min-width: 640px) {
    .choices__list--dropdown .choices__item--selectable {
        display: flex;
        justify-content: space-between;
        padding-right: 10px;
    }
}

/* END Form field styling additions */

/* Loqate AddressInput styling */
.address-input-form-section {
    margin-bottom: 30px;
}

    .address-input-form-section .js-get-address-input-trigger {
        display: block;
        text-align: right;
        margin-bottom: 3px;
    }

        .address-input-form-section .js-get-address-input-trigger span {
            color: inherit;
        }

.address-input-container .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}

.addresslookup-loading {
    display: none;
    position: relative;
    height: 0;
}

    .addresslookup-loading img {
        display: block;
        position: absolute;
        width: 32px;
        height: 32px;
        right: 10px;
        bottom: 9px;
    }

.addresslookup-selected, .addresslookup-help {
    background-color: #CC0000;
    border-radius: 4px;
    padding: 15px;
}

    .addresslookup-selected p, .addresslookup-help p {
        margin: 0;
        color: #FFF;
    }

    .addresslookup-selected .addresslookup-selected__address {
        font-weight: bold;
        margin-top: 5px;
    }

.addresslookup-selected {
    background-color: #007A66;
    border-radius: 4px;
}

.addresslookup-container .field-support-text {
    margin: 10px 0;
}

    .addresslookup-container .field-support-text small {
        color: #888;
    }

.addresslookup-container input {
    margin-bottom: 0;
}

.addresslookup-results-container {
    padding-top: 15px;
}

    .addresslookup-results-container p {
        padding: 10px;
        margin: 0;
    }

    .addresslookup-results-container .addresslookup-results-list {
        max-height: 300px;
        overflow-y: auto;
        border-radius: 4px;
    }

        .addresslookup-results-container .addresslookup-results-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .addresslookup-results-container .addresslookup-results-list ul li {
                padding: 5px;
                border-bottom: 1px solid #C0C0C0;
                cursor: pointer;
            }

                .addresslookup-results-container .addresslookup-results-list ul li::before {
                    content: "";
                    margin-left: 0;
                    width: 0;
                }

                .addresslookup-results-container .addresslookup-results-list ul li:hover, .addresslookup-results-container .addresslookup-results-list ul li:focus {
                    background-color: #F0F0F0;
                }

                .addresslookup-results-container .addresslookup-results-list ul li.active {
                    background-color: #007A66;
                    color: #FFF;
                }

        .addresslookup-results-container .addresslookup-results-list p {
            background-color: #C0C0C0;
        }

/* END Loqate AddressInput styling */

/* Nav menu dropdown fixes */

.header__nav__lists > li.sub-menu {
    position: relative;
}

.header__nav__lists > li.sub-menu .sub-menu__content {
    pointer-events: none;
    transition: .5s ease;
    max-width: unset;
    min-width: 300px;
}

    .header__nav__lists > li.sub-menu .sub-menu__content > ul > li {
        min-width: 200px;
    }

.header__nav__lists > li.sub-menu.sub-menu--full {
    position: unset;
}

    .header__nav__lists > li.sub-menu.sub-menu--full .sub-menu__content {
        left: 0;
        padding-top: 26px;
    }

@media (max-width: 991px) {
    .header__nav__lists > li.sub-menu .sub-menu__content {
        pointer-events: auto;
        padding-top: 0 !important;
    }
}

@media (min-width: 991px) {
    .header__nav__lists > li.sub-menu:hover .sub-menu__content {
        pointer-events: auto;
    }
}

/* END Nav menu dropdown fixes */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h5 {
    font-size: 20px;
    font-weight: 600;
    color: #007A66
}

h6 {
    font-size: 18px;
    font-weight: 600;
    color: #007A66
}

label {
    line-height: 24px;
}

iframe {
    max-width: 100%;
}

#main {
    flex: 1;
}

.text-halfbold {
    font-weight: 500!important
}

.text-green {
    color: #00833E!important
}

.text-green2 {
    color: #007A66!important
}

.text-blue {
    color: #12519E!important
}

.text-orange {
    color: #E4692B!important
}

.text-black {
    color: #404040!important
}

.bg-white {
    background-color: #FFF!important;
}

.bg-grey {
    background-color: #F4F4F4!important;
}

.no-hover-decoration:hover {
    text-decoration: none;
}

.text li {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #404040;
}

.text ol {
    list-style: decimal;
}

    .text ol ::marker {
        color: #00833E
    }

.text ul, .text ol {
    padding-left: 25px;
}

button, .btn {
    font-family: "Poppins", sans-serif;
    border-radius: 4px;
}

.btn--white-border {
    text-align: center;
    box-sizing: border-box;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 4px;
    background-color: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: .3s ease;
    transition-property: background-color, color
}

    .btn--white-border:hover {
        background-color: #fff;
        color: #00833E
    }

.btn--grey-border {
    text-align: center;
    box-sizing: border-box;
    height: 100%;
    border: 2px solid #606060;
    border-radius: 4px;
    background-color: transparent;
    color: #606060;
    font-size: 15px;
    font-weight: 600;
    transition: .3s ease;
    transition-property: background-color, color
}

    .btn--grey-border:hover {
        background-color: #606060;
        color: #fff
    }

.btn.disabled-fake {
    opacity: .65
}

    .btn.disabled-fake:hover {
        background-color: transparent !important;
        color: #00833E !important
    }

.form__invisible-field {
    display: block;
    visibility: hidden;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    pointer-events: none
}

.pointer-none {
    pointer-events: none
}

.header__logo img {
    object-fit: contain;
}

.hero {
    overflow: hidden;
}

.hero--title {
    height: 398px
}

    .hero--title > .desktop, .hero--title > .mobile {
        height: 100%;
        object-fit: cover;
    }

    .hero--title > .desktop {
        position: absolute;
    }

.hero .bc {
    width: 100%;
    z-index: 2
}

.hero .bc--gradient {
    mask-image: url(/Images/bc1_mask.png);
    mask-size: 100% 100%
}

.hero .hero__foreground--gradient {
    aspect-ratio: 180/73;
    mask-image: url(/Images/bc2_mask.svg);
    mask-size: 100% 100%
}

@media (max-width: 991px) {
    .hero--title > .hero__green {
        position: absolute;
        bottom: 0;
        transform: none
    }
}

@media (min-width: 992px) {
    .hero .hero__green {
        background: transparent !important
    }

    .hero__green p {
        max-width: 50%
    }
}

.services_slider__item svg, .services_slider__item img {
    max-height: 118px;
}

.footer {
    margin-top: 0;
}

.footer__down .icons ul li img {
    max-height: 120px;
}

.sponsors__content ul li img {
    padding: 10px;
    background: white;
}

.sponsors__content ul li .sponsors__placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    border: 1px solid rgba(64, 64, 64, 0.1);
    padding: 10px;
    background: white;
}

.sponsors__content ul li .sponsors__placeholder span {
    display: block;
    position: relative;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 1.2rem;
    word-wrap: break-word;
}

.start-counters__flex h2 {
    font-size: 36px;
}

.tab_content__items {
    padding: 0;
}

.organisation-details__flex .left h2 {
    width: 100%;
}

.umb-block-grid .page-sub-nav {
    position: relative;
}

.page-sub-nav .container .hamburger {
    align-self: start;
}

.page-sub-nav__flex a.btn {
    height: auto;
    margin-top: 8.5px;
    margin-bottom: 8.5px;
}

@media (max-width: 991px) {
    .page-sub-nav .container ul {
        height: unset;
        padding-bottom: 1rem;
    }
}

.query__search input {
    min-height: 50px;
    border: 1px solid #8C8C8C !important;
}

.event-header__blue img {
    z-index: 0;
}

.ticket-section {
    padding-top: 10px
}

.ticket-section__content {
    width: 100%
}

.ticket-section__table {
    width: 100%;
    min-width: unset
}

@media (max-width: 1150px) {
    .ticket-section__content {
        padding: 0 0 20px;
        overflow: unset;
    }
}

.delegate-information {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 0
}

.delegate-information__box .form__input {
    width: calc(50% - 10px)
}

@media (max-width: 700px) {
    .delegate-information__box .form__input {
        width: 100%;
    }
}

.tableau-iframe {
    width: 100%;
    height: calc(100vh - 125px);
}

.switch_list__grid .box__content {
    height: calc(100% - 6px);
}

.switch_list__grid .box__content .image img {
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.payment-module {
    max-width: unset;
    margin-bottom: 30px;
}

.header__top__lists li.login a.disabled {
    filter: grayscale(1) brightness(1.5);
}

.discount-code-message {
    display: inline-block;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    color: #404040
}

    .discount-code-message.field-validation-error {
        color: #DC3545;
    }

table h1, table h2, table h3, table h4, table h5, table h6, table .choices {
    margin-bottom: 0;
}

.grecaptcha-badge {
    z-index: 1
}

.validated-member-txt {
    display: inline-block;
    margin-top: -5px
}

.input-loading {
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none
}

.order-details__products ul li p small,
.order-details__products table p small {
    display: block;
    margin-top: -6px
}

.order-details__products table {
    width: 100%
}

    .order-details__products table p {
        font-size: 15px;
        font-weight: 400;
        line-height: 24px;
        color: #404040
    }

    .order-details__products table td {
        padding-bottom: 10px
    }

    .order-details__products table td:first-of-type {
        width: 67.5%
    }

    .order-details__products table td:last-of-type {
        text-align: right
    }

        .order-details__products table p strong {
            font-weight: 600
        }