.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

.paypal-returned #cq_review_form_wrapper, .paypal-returned #cq_review_form {
    display: none;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    -webkit-animation: spin 2s linear infinite;

    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite;

    /* Chrome, Firefox 16+, IE 10+, Opera */

    z-index: 1001;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;
    -webkit-animation: spin 3s linear infinite;

    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite;

    /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: spin 1.5s linear infinite;

    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 1.5s linear infinite;

    /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loading-message {
    color: #fff;
    z-index: 9999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    margin-top: 100px;
    font-weight: bold;
    font-size: 27px;
    text-align: center;
}

#loader-wrapper .loading-message span {
    font-size: 12px;
    display: block;
    font-weight: normal;
}

.loading-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #fff;
}

body.is-loading-document .loading-bar {
    display: block;
}

.bar {
    background: url(images/loading-bar.gif) no-repeat;
    width: 64px;
    height: 64px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    margin-top: -44px;
}

.loading-bar .loading-message {
    z-index: 9999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    margin-top: 40px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

.loading-bar .loading-message span {
    font-size: 12px;
    display: block;
    font-weight: normal;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);

        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);

        /* IE 9 */
        transform: rotate(0deg);

        /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg);

        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);

        /* IE 9 */
        transform: rotate(360deg);

        /* Firefox 16+, IE 10+, Opera */
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);

        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);

        /* IE 9 */
        transform: rotate(0deg);

        /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg);

        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);

        /* IE 9 */
        transform: rotate(360deg);

        /* Firefox 16+, IE 10+, Opera */
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #222222;
    z-index: 1000;
    -webkit-transform: translateX(0);

    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0);

    /* IE 9 */
    transform: translateX(0);

    /* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);

    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(-100%);

    /* IE 9 */
    transform: translateX(-100%);

    /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);

    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(100%);

    /* IE 9 */
    transform: translateX(100%);

    /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);

    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateY(-100%);

    /* IE 9 */
    transform: translateY(-100%);

    /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}

/* JavaScript Turned Off */
.no-js #loader-wrapper {
    display: none;
}

.clearfix:before,
.clearfix:after {
    content: " ";

    /* 1 */
    display: table;

    /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print, (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

.qtip-default {
    padding: 13px 13px 0px;
    max-width: 400px;
}

.qtip-default h4 {
    font-size: 19px;
}

.qtip-default label {
    font-weight: bold;
    margin-bottom: 2px;
    display: block;
}

.qtip-default .description {
    margin-top: 5px;
}

.qtip-default .date {
    font-style: italic;
}

.fc-event:active, .fc-event:visited {
    color: #fff;
}

.fc-button {
    line-height: 1;
}

.fc-day-grid-event .fc-content {
    white-space: normal;
    max-height: 30px;
}

.fc-event {
    font-size: .75em;
}

.blog .hentry {
    margin: 0 0 60px;
}

.blog .hentry .entry-content:after {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background: #ddd;
    margin: 40px auto;
}

@media (min-width: 1350px) {
    .blog .hs-container {
        width: 1330px;
    }

    .blog #primary {
        width: 71%;
    }

    .blog #secondary {
        width: 26%;
    }

    .blog .entry-figure img {
        width: 100%;
    }
}

#calendar .toggle, #registry .toggle-registry-form {
    float: right;
}

#event-form {
    display: none;
    margin-bottom: 100px;
}

#event-form .acf-form-submit, #registry-form .acf-form-submit {
    padding: 15px 12px;
}

/* Tables */
.pure-table {
    /* Remove spacing between table cells (from Normalize.css) */
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    border: 1px solid #cbcbcb;
}

.pure-table caption {
    color: #000;
    font: italic 85%/1 arial, sans-serif;
    padding: 1em 0;
    text-align: center;
}

.pure-table td {
    border-left: 1px solid #cbcbcb;

    /*  inner column border */
    border-width: 0 0 0 1px;
    font-size: inherit;
    margin: 0;
    overflow: visible;

    /*to make ths where the title is really long work*/

    font-size: 0.75rem;
    line-height: 1.3;
    padding: 2px 5px !important;
}

.pure-table th {
    border-left: 1px solid #cbcbcb;

    /*  inner column border */
    border-width: 0 0 0 1px;
    font-size: inherit;
    margin: 0;
    overflow: visible;
    padding: 0.5em 1em;
    line-height: 1;
    vertical-align: middle;
}

/* Consider removing this next declaration block, as it causes problems when
there's a rowspan on the first cell. Case added to the tests. issue#432 */
.pure-table td:first-child,
.pure-table th:first-child {
    border-left-width: 0;
}

.pure-table thead {
    background-color: #e0e0e0;
    color: #000;
    text-align: left;
    vertical-align: bottom;
}

/*
striping:
   even - #fff (white)
   odd  - #f2f2f2 (light gray)
*/
.pure-table td {
    background-color: #fff;
}

.pure-table-odd td {
    background-color: #f2f2f2;
}

/* nth-child selector for modern browsers */
.pure-table-striped tr:nth-child(2n-1) td {
    background-color: #f2f2f2;
}

/* BORDERED TABLES */
.pure-table-bordered td {
    border-bottom: 1px solid #cbcbcb;
}

.pure-table-bordered tbody > tr:last-child > td {
    border-bottom-width: 0;
}

/* HORIZONTAL BORDERED TABLES */

.pure-table-horizontal td,
.pure-table-horizontal th {
    border-width: 0 0 1px 0;
    border-bottom: 1px solid #cbcbcb;
}

.pure-table-horizontal tbody > tr:last-child > td {
    border-bottom-width: 0;
}

/* #registry .pure-table {
    margin-left: 10px;
}

#registry h4 {
    margin-left: 6px;
}

#registry .pure-table tbody {
    counter-reset: rowNumber;
}

#registry .pure-table tbody tr {
    counter-increment: rowNumber;
}

#registry .pure-table tbody tr td:first-child::before {
    content: counter(rowNumber);
    min-width: 1em;
    position: absolute;
    margin-left: -22px;
    margin-top: 1px;
    font-size: 11px;
    text-align: right;
}

#registry .acf-field-590c16ec39a3c, #registry .acf-field-590c16fe39a3d {
    padding-top: 0;
    padding-bottom: 0;
    border: 0;
    display: inline-block;
}

#registry .acf-field-590c16ec39a3c .acf-label, #registry .acf-field-590c16fe39a3d .acf-label {
    margin: 0;
    display: inline-block;
}

#registry .acf-field-590c16ec39a3c .acf-input, #registry .acf-field-590c16fe39a3d .acf-input {
    display: inline-block;
    float: left;
    margin-right: 10px;
    position: relative;
    top: 2px;
}

#registry #wp-acf-editor-590c63c073daa-wrap .mce-toolbar-grp {
    display: none;
}

#registry .import_table_button {
    background: #EE3B24;
    color: #fff;
    display: inline-block;
    padding: 3px 13px;
    margin-left: 15px;
}

#registry .import_table_button:hover {
    background: #d22e19;
}
 */
/* .acf-table-body-cell {
    height: 50px;
}

.acf-table-body-row .acf-table-body-cell:nth-child(2) {
    width: 700px;
}

div.acf-table-body-cell {
    padding-top: 7px;
    padding-bottom: 10px;
}

textarea.acf-table-cell-editor-textarea {
    min-width: 400px;
    min-height: 130px !important;
}
 */
.attach-files-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.54);
    z-index: 9999;
    display: none;
    top: 0;
    left: 0;
}

.attach-files-list {
    background: #fff;
    border: 1px solid #ddd;
    position: fixed;
    width: 600px;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
    padding: 20px 6px;
    display: none;
}

.attach-files-list span {
    position: absolute;
    right: 0;
    top: 0;
    background: #ddd;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 28px;
    font-size: 20px;
    cursor: pointer;
    transition: all linear 0.2s;
}

.attach-files-list input {
    display: none !important;
    opacity: 0 !important;
}

.attach-files-list span:hover {
    background: #ccc;
}

.attach-files {
    cursor: pointer;
    opacity: 0;
    font-size: 10px;
    line-height: 13px;
    display: inline-block;
}

.acf-table-body-row:hover .attach-files {
    opacity: 1;
}

a.attachments {
    background: url(attachment.png) no-repeat;
    display: inline-block;
    width: 15px;
    height: 17px;
    background-size: 20px 20px;
    background-position: center top;
    position: relative;
    top: 2px;
    cursor: pointer;
}

.acf-field-590ac9287a357 .acf-label label {
    display: inline-block !important;
}

#registry-form {
    display: none;
}