/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

.grid-preview-image {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.three-col-grid {
    margin-top: 60px;
    margin-bottom: 60px;
}

.three-col-grid .three-col-grid-item {
    margin-bottom: 50px;
}

@media(max-width: 767px) {
    .three-col-grid .three-col-grid-item:nth-of-type(2n-1) {
        padding-right: 10px;
    }
    .three-col-grid .three-col-grid-item:nth-of-type(2n) {
        padding-left: 10px;
    }
}

@media(min-width: 768px) {
    .three-col-grid .three-col-grid-item:nth-of-type(1),
    .three-col-grid .three-col-grid-item:nth-of-type(3n+1) {
        padding-right: 20px;
    }

    .three-col-grid .three-col-grid-item:nth-of-type(2),
    .three-col-grid .three-col-grid-item:nth-of-type(3n-1) {
        padding-left: 10px;
        padding-right: 10px;
    }

    .three-col-grid .three-col-grid-item:nth-of-type(3n) {
        padding-left: 20px;
    }
}

div.tab-buttons,
div.timeline-buttons {
    margin-bottom: 32px;
}

div.timeline-buttons {
    margin-top: 10px;
}

a.tab-button,
a.timeline-button {
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    color: #222321;
    border: 1px solid #222321;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none;
}

a.tab-button {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 12px;
    margin-right: 12px;
}
a.timeline-button {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-right: 20px;
    background-color: #FFFFFF;
}
a.timeline-button:hover {
    cursor: pointer;
}
a.timeline-button[aria-expanded="true"] {
    background-color: #373737;
    color: #FFFFFF;
}
a.timeline-button[aria-expanded="false"]:hover {
    color: #222321;
}
a.timeline-button[aria-expanded="true"]:hover {
    color: #FFFFFF !important;
}

.two-col-featured-blog-post-container {
    margin-bottom: 90px;
}

.website-image {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.one-col-image-container,
.one-col-content-container {
    margin-bottom: 50px;
}

.two-col-image-beside-content-container,
.two-col-image-above-content-container {
    margin-bottom: 90px;
}

.formContainer {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 60px !important;
    padding-right: 60px !important;
    border: 2px solid #C5C5C5;
    margin-bottom: 100px;
}
.formContainer label {
    font-family: fs-elliot-bold, sans-serif;
    color: #373737;
}
.formContainer span.wpcf7-checkbox label {
    font-family: fs-elliot, sans-serif;
}
.formContainer .formRow {
    margin-bottom: 20px;
    width: 100%;
}
.formContainer .formSectionSeparator {
    border-top: 2px solid #C5C5C5;
    margin-top: 10px;
    margin-bottom: 40px;
}
.formContainer input[type="checkbox"] {
    margin-right: 15px;
}
.formContainer input[type="submit"] {
    display: inline-block;
    text-align: center;
    font-family: fs-elliot, sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: bold;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    background: #222321;
    border-radius: 3px;
    padding: 9px 23px 8px 23px;
    text-decoration: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
}
.formContainer .ajax-loader {
    display: none !important;
}
.formContainer .wpcf7-list-item {
    margin: 0;
}

form input[type="email"],
form select,
form textarea {
    width: 100%;
}

form select {
    border: 1px solid #C5C5C5;
    opacity: 1;
    padding: 10px 13px;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 0px;
    color: #9D9D9D;
    border-radius: 2px;
}

@media(max-width: 767px) {
    .formContainer {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 30px !important;
        padding-right: 30px !important;
        border: 2px solid #C5C5C5;
        margin-bottom: 50px;
    }
    .formContainer .formRow {
        margin-bottom: 0;
    }
    .formContainer .formRow > div {
        margin-bottom: 20px;
    }
}


.genericLoadingPopup .loader {
    margin-bottom: 0;
    margin-top: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    height: 100px;
    background-image: url('../img/loader.svg');
    background-size: 100px;
    background-position: center center;
    background-repeat: no-repeat;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
.genericLoadingPopup {
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,.8);
}
.genericLoadingPopup > .flex-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
}
.genericLoadingPopup > .flex-inner > .genericLoadingPopupContent {
    position: relative;
    width: 50vw;
    background-color: #FFF;
    margin: auto;
    border: 1px solid black;
    text-align: center;
    padding: 25px;
}

.genericLoadingPopup a.closeMeDown {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
@media(max-width: 767px) {
    .genericLoadingPopup > .flex-inner > .genericLoadingPopupContent {
        width: 90vw;
    }
}
@media(min-width: 768px) and (max-width: 1199px) {
    .genericLoadingPopup > .flex-inner > .genericLoadingPopupContent {
        width: 80vw;
    }
}

#mailchimp-gdpr-fields {
    display: none !important;
}

a.link-with-right-arrow {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-family: fs-elliot-bold, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #373737;
    border: none;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    text-decoration: none !important;
    display: inline-block;
}
a.link-with-right-arrow::after {
    content: "";
    background-image: url('../img/icon_chevron_right_black.svg');
    background-repeat: no-repeat;
    background-position: center right;
    width: 5px;
    height: 10px;
    display: inline-block;
    margin-left: 20px;
}
a.link-with-right-arrow:hover::after {
    margin-left: 30px;
}
a::after {
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

@media(max-width: 767px) {
    a.link-with-right-arrow {
        font-size: 12px;
    }
    a.link-with-right-arrow::after {
        margin-left: 10px;
    }
    a.link-with-right-arrow:hover::after {
        margin-left: 15px;
    }

    .three-col-grid.faq-grid {
        margin-bottom: 0;
    }
}

.category-label {
    color: #9D9D9D;
    font-family: fs-elliot, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

.fullHeight {
    height: 100%;
}

.website-image.post-image.video-block:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('../img/icon_video_player.svg');
    background-size: 80px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

@media(max-width: 767px) {
    .fullHeight {
        height: auto;
    }
    .one-col-content-container {
        margin-bottom: 40px;
    }
    .two-col-image-beside-content-container, .two-col-image-above-content-container {
        margin-bottom: 40px;
    }
    .two-col-image-beside-content-container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

a.pinkLink {
    color: #AA5079;
}
h5.blog-recent-story-heading {
    font-size: 17px;
}
.category-label.smaller-margin-bottom {
    margin-bottom: 10px;
}

.four-col-grid {
    margin-top: 10px;
}
.four-col-grid .four-col-grid-item {
    padding-left: 15px;
    padding-right: 15px;
}
.four-col-grid .four-col-grid-item span.forward-slash,
.four-col-grid .four-col-grid-item span.post-date {
    display: none;
}

.four-col-grid .four-col-grid-item {
    margin-bottom: 50px;
}

body.page-id-977 .three-col-grid {
    margin-bottom: 0;
}
a#loadMoreResults {
    color: white !important;
}

body:not(.product-template-default) .woocommerce-price-suffix {
    /*display: none;*/
}
body:not(.product-template-default) .woocommerce-Price-amount.amount.with-vat {
    display: none;
}

div#registerForm p.mailchimp-newsletter {
    display: none !important;
}

h2.timeline-heading {
    padding-bottom: 30px;
    border-bottom: 1px solid #707070;
}


/* custom checkbox for the newsletter field */
p.mailchimp-newsletter label {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;

    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}
p.mailchimp-newsletter input#mailchimp_woocommerce_newsletter {
    opacity: 0;
    position: absolute;
}
p.mailchimp-newsletter label:before {
    content: "";
    width: 18px;
    height: 18px;
    margin-right: 13px;
    border: 1px solid #222321;
    border-radius: 2px;
    display: inline-block;
}
p.mailchimp-newsletter input#mailchimp_woocommerce_newsletter:checked + label:before {
    border-color: #222321;
    background-color: #222321;
    box-shadow: inset 0 0 0 2px white;
}
/* custom checkbox for the newsletter field */


label.bisley-custom-checkbox-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
input.bisley-custom-checkbox[type="checkbox"] {
    opacity: 0;
    position: absolute;
}
.custom-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 13px;
    border: 1px solid #222321;
    border-radius: 2px;
    display: inline-block;
}
input.bisley-custom-checkbox[type="checkbox"]:checked + .custom-checkbox {
    border-color: #222321;
    background-color: #222321;
    box-shadow: inset 0 0 0 2px white;
}
span.labelThatGrows {
    -webkit-box-flex: 5;
    -ms-flex-positive: 5;
    flex-grow: 5;
}
.noMarginRight {
    margin-right: 0;
}
a[href^="tel"].underlineLink {
    text-decoration: underline !important;
}
p#billing_country_field,
p#shipping_country_field {
    display: none;
}
.wcb-product-attributes ul.wc-item-meta {
    padding-left: 17px;
    padding-top: 10px;
}

.grecaptcha-badge {
    opacity: 0;
    pointer-events: none;
}

.wpcf7 input[type="tel"] {
    max-width: 100%;
}