﻿/*#region *************** Globals ************************/
.module-content {
    position: relative;
    min-height: 40px; /*If the module is empty this will allow the module editor to be shown at least */
}

.module-wrapper {
    margin: 0 0 30px 0;
}

    .module-wrapper .list-wrapper,
    .module-wrapper .item-wrapper,
    .module-wrapper .table-wrapper,
    .module-wrapper .grid-wrapper,
    .module-wrapper .slider-wrapper,
    .module-wrapper .gallery-wrapper {
    }

    .module-wrapper article,
    .module-wrapper .table {
        margin-bottom: 30px;
    }

    .module-wrapper .user-select,
    .module-wrapper .thumb-image,
    .module-wrapper .detail-image,
    .module-wrapper .heading,
    .module-wrapper .title,
    .module-wrapper .detail {
        margin-bottom: 20px;
    }

    .module-wrapper .heading {
        /*display: none;*/
    }

        .module-wrapper .heading h2,
        .module-wrapper .heading h3,
        .module-wrapper .title h4 {
            margin: 0; /* Make sure default h margins dont mess up the container block */
        }

    .module-wrapper .date {
        font-size: smaller;
    }

    .module-wrapper .date,
    .module-wrapper .info-group {
        margin-bottom: 10px;
    }

    .module-wrapper .read-more {
        margin-top: 10px;
    }

    .module-wrapper .inline-more,
    .module-wrapper .read-more {
        display: none;
    }

    .module-wrapper .summary,
    .module-wrapper .content {
        /* This is the very minimum inside a module- it should not have any spacing - spacing is created by other components */
    }

        .module-wrapper .content + .content {
            margin-top: 20px;
        }

        .module-wrapper .content h1,
        .module-wrapper .content h2,
        .module-wrapper .content h3,
        .module-wrapper .content h4,
        .module-wrapper .content h5,
        .module-wrapper .content h6 {
            margin-top: 0; /* Prep headings so they dont have a top margin if sitting at the top of the content */
            margin-bottom: .5em;
        }

        .module-wrapper .content ul + h1,
        .module-wrapper .content ul + h2,
        .module-wrapper .content ul + h3,
        .module-wrapper .content ul + h4,
        .module-wrapper .content ul + h5,
        .module-wrapper .content ul + h6,
        .module-wrapper .content p + h1,
        .module-wrapper .content p + h2,
        .module-wrapper .content p + h3,
        .module-wrapper .content p + h4,
        .module-wrapper .content p + h5,
        .module-wrapper .content p + h6 {
            margin-top: 1em; /* Headings after <p> and <ul> should have a spacing */
        }

    .module-wrapper .pagination {
        margin: 0; /* bootstrap adds a margin by default - zero it out */
    }

    .module-wrapper .action-links {
    }

    .module-wrapper article .inner div:first-child {
        margin-top: 0;
    }

    .module-wrapper .info-group label, /* bootstrap adds a margin by default to labels - zero it out */
    .module-wrapper article .inner div:last-child,
    .module-wrapper .detail div:last-child,
    .module-wrapper .content p:last-child /* Make sure the last <p> does not push past the content block */ {
        margin-bottom: 0;
    }
/*#endregion*/


/*#region *************** News ***************************/
.module-type-news {
}

    .module-type-news .heading {
        display: none;
    }

    /*#region standard-01-r01*/
    .module-type-news.standard-01-r01 {
    }

        .module-type-news.standard-01-r01 .thumb-image img {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
        }
    /*#endregion*/

    /*#region standard-01-r02*/
    .module-type-news.standard-01-r02 {
    }

        .module-type-news.standard-01-r02 .inner {
            border-bottom: 1px solid #687074;
            padding-bottom: 30px;
        }

        .module-type-news.standard-01-r02 .thumb-image {
            float: left;
            margin-right: 30px;
            margin-bottom: 0;
        }
    /*#endregion*/

    /*#region standard-01-r03*/
    .module-type-news.standard-02-r01 {
    }

        .module-type-news.standard-02-r01 .inner {
            display: table;
            border-bottom: 5px solid #687074;
            background-color: #e5e5e5;
        }

        .module-type-news.standard-02-r01 .content-left,
        .module-type-news.standard-02-r01 .content-right {
            display: table-cell;
            vertical-align: top;
            width: 25%;
        }

        .module-type-news.standard-02-r01 .content-right {
            width: 75%;
            padding: 30px;
        }

        .module-type-news.standard-02-r01 .thumb-image img {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
        }

        .module-type-news.standard-02-r01 .has-no-image .content-left {
            width: 0;
        }

        .module-type-news.standard-02-r01 .has-no-image .content-right {
            width: 100%;
        }

@media (max-width: 767px) {
    .module-type-news.standard-02-r01 .inner {
        display: block;
    }


    .module-type-news.standard-02-r01 .content-left {
        display: none;
    }

    .module-type-news.standard-02-r01 .content-right,
    .module-type-news.standard-02-r01 .has-no-image .content-right {
        display: block;
        width: 100%;
    }
}
/*#endregion*/

/*#region isotope-01-r01*/
.module-type-news.isotope-01-r01 {
}

    .module-type-news.isotope-01-r01 .inner {
        background-color: #e5e5e5;
        padding-bottom: 20px;
    }

    .module-type-news.isotope-01-r01 .thumb-image {
        margin-bottom: 0;
    }

        .module-type-news.isotope-01-r01 .thumb-image img {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
        }

    .module-type-news.isotope-01-r01 .title {
        padding-top: 20px;
    }

    .module-type-news.isotope-01-r01 .title,
    .module-type-news.isotope-01-r01 .date,
    .module-type-news.isotope-01-r01 .summary,
    .module-type-news.isotope-01-r01 .read-more {
        padding-left: 20px;
        padding-right: 20px;
    }
/*#endregion*/
/*#endregion*/
/*#region *************** News Detail ********************/
.module-type-news-detail {
}

    .module-type-news-detail .detail-image {
        display: none;
    }
/*#endregion*/


/*#region *************** Events *************************/
.module-type-events {
}

    .module-type-events .heading {
        display: none;
    }

    /*#region standard-01-r01*/
    .module-type-events.standard-01-r01 {
    }

        .module-type-events.standard-01-r01 .thumb-image img {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
        }
    /*#endregion*/

    /*#region standard-01-r02*/
    .module-type-events.standard-01-r02 {
    }

        .module-type-events.standard-01-r02 .inner {
            border-bottom: 1px solid #687074;
            padding-bottom: 30px;
        }

        .module-type-events.standard-01-r02 .thumb-image {
            float: left;
            margin-right: 30px;
            margin-bottom: 0;
        }

    /*#endregion*/

    /*#region standard-02-r01*/
    .module-type-events.standard-02-r01 {
    }

        .module-type-events.standard-02-r01 .inner {
            display: table;
            width: 100%;
            padding-bottom: 15px;
            border-bottom: 1px solid #687074;
        }

        .module-type-events.standard-02-r01 .content-left,
        .module-type-events.standard-02-r01 .content-middle,
        .module-type-events.standard-02-r01 .content-right {
            display: table-cell;
            vertical-align: top;
            width: 25%;
        }

        .module-type-events.standard-02-r01 .content-middle {
            width: 50%;
            padding-left: 15px;
            padding-right: 15px;
            border-right: 1px solid #687074;
        }

        .module-type-events.standard-02-r01 .thumb-image img {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
        }

        .module-type-events.standard-02-r01 .date {
            margin-bottom: 0;
            font-size: unset;
        }

        .module-type-events.standard-02-r01 .content-right {
            padding-left: 15px;
        }

        .module-type-events.standard-02-r01 .has-no-image .content-left {
            width: 0;
        }


        .module-type-events.standard-02-r01 .has-no-image .content-middle {
            width: 75%;
            padding-left: 0;
        }

@media (max-width: 767px) {
    .module-type-events.standard-02-r01 .inner {
        display: block;
    }


    .module-type-events.standard-02-r01 .content-left,
    .module-type-events.standard-02-r01 .content-middle,
    .module-type-events.standard-02-r01 .has-no-image .content-middle,
    .module-type-events.standard-02-r01 .content-right {
        display: block;
        width: 100%;
        padding: 0;
        border: none;
    }


    .module-type-events.standard-02-r01 .content-middle,
    .module-type-events.standard-02-r01 .thumb-image img {
        margin-bottom: 15px;
    }
}
/*#endregion*/

/*#region isotope-01-r01*/
.module-type-events.isotope-01-r01 {
}

    .module-type-events.isotope-01-r01 .inner {
        background-color: #e5e5e5;
        padding-bottom: 20px;
    }

    .module-type-events.isotope-01-r01 .thumb-image {
        margin-bottom: 0;
    }

        .module-type-events.isotope-01-r01 .thumb-image img {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
        }

    .module-type-events.isotope-01-r01 .title {
        padding-top: 20px;
    }

    .module-type-events.isotope-01-r01 .title,
    .module-type-events.isotope-01-r01 .date,
    .module-type-events.isotope-01-r01 .summary,
    .module-type-events.isotope-01-r01 .read-more {
        padding-left: 20px;
        padding-right: 20px;
    }
/*#endregion*/

/*#region table-01-r01*/
.module-type-events.table-01-r01 {
}
/*#endregion*/

/*#region calendar-01-r01*/
.module-type-events.calendar-01-r01 {
}
/*#endregion*/

/*#endregion*/
/*#region *************** Events Detail ******************/
.module-type-events-detail {
}

    .module-type-events-detail .event-region,
    .module-type-events-detail .event-date,
    .module-type-events-detail .event-time,
    .module-type-events-detail .event-date,
    .module-type-events-detail .event-venue,
    .module-type-events-detail .event-address,
    .module-type-events-detail .event-contact,
    .module-type-events-detail .event-cost {
    }
/*#endregion*/


/*#region *************** Content Editor *****************/
.module-type-contenteditor {
}

    /*#region standard-01-r01*/
    .module-type-contenteditor.standard-01-r01 {
    }

        .module-type-contenteditor.standard-01-r01 .thumb-image {
            margin-bottom: 10px;
        }

        .module-type-contenteditor.standard-01-r01 .heading {
            margin-bottom: 10px;
        }

            .module-type-contenteditor.standard-01-r01 .heading a:before {
                content: "\f105";
                font: normal normal normal 14px/1 FontAwesome;
                font-size: 24px;
                display: inline-block;
                margin-right: 10px;
                -webkit-font-smoothing: antialiased;
            }
    /*#endregion*/

    /*#region standard-01-r02*/
    .module-type-contenteditor.standard-01-r02 {
    }

        .module-type-contenteditor.standard-01-r02 .thumb-image,
        .module-type-contenteditor.standard-01-r02 .heading {
            margin: 0;
        }

            .module-type-contenteditor.standard-01-r02 .heading a {
                display: block;
                padding: 15px;
                background-color: #e5e5e5;
            }

                .module-type-contenteditor.standard-01-r02 .heading a:after {
                    content: "\f105";
                    font: normal normal normal 14px/1 FontAwesome;
                    font-size: 24px;
                    display: inline-block;
                    margin-right: 10px;
                    -webkit-font-smoothing: antialiased;
                    float: right;
                }
    /*#endregion*/

    /*#region standard-01-r03*/
    .module-type-contenteditor.standard-01-r03 {
    }

        .module-type-contenteditor.standard-01-r03 .module-wrapper {
            background-color: #e5e5e5;
            position: relative;
        }

        .module-type-contenteditor.standard-01-r03 .thumb-image,
        .module-type-contenteditor.standard-01-r03 .heading {
            margin-bottom: 10px;
        }

        .module-type-contenteditor.standard-01-r03 .heading {
            padding: 0 20px 0 20px;
        }

        .module-type-contenteditor.standard-01-r03 .content {
            padding: 0 20px 20px 20px;
        }

        .module-type-contenteditor.standard-01-r03 .read-more {
            display: inline-block;
            position: absolute;
            bottom: 0;
            right: 0;
        }
    /*#endregion*/

    /*#region standard-02-r01*/
    .module-type-contenteditor.standard-02-r01 {
    }
    /*#endregion*/

    /*#region standard-02-r02*/
    .module-type-contenteditor.standard-02-r02 {
    }

        .module-type-contenteditor.standard-02-r02 .module-wrapper {
            background-color: #e5e5e5;
            padding: 15px;
        }

        .module-type-contenteditor.standard-02-r02 .read-more {
            display: block;
            text-align: right;
        }
    /*#endregion*/

    /*#region standard-02-r03*/
    .module-type-contenteditor.standard-02-r03 {
    }

        .module-type-contenteditor.standard-02-r03 .heading {
            margin: 0;
            padding: 15px;
            background-color: #e5e5e5;
        }

        .module-type-contenteditor.standard-02-r03 .thumb-image {
            margin: 0;
        }

        .module-type-contenteditor.standard-02-r03 .read-more {
            display: block;
            text-align: right;
            margin: 0;
            padding: 15px;
            background-color: #e5e5e5;
        }
    /*#endregion*/

    /*#region standard-03-r01*/
    .module-type-contenteditor.standard-03-r01 {
    }

        .module-type-contenteditor.standard-03-r01 .module-wrapper {
            display: table;
            background-color: #e5e5e5;
        }

        .module-type-contenteditor.standard-03-r01 .content-left {
            display: table-cell;
            vertical-align: middle;
        }

        .module-type-contenteditor.standard-03-r01 .content-right {
            display: table-cell;
        }

        .module-type-contenteditor.standard-03-r01 .heading {
            margin: 0;
            padding: 15px;
        }

        .module-type-contenteditor.standard-03-r01 .thumb-image {
            margin: 0;
        }
    /*#endregion*/

    /*#region standard-03-r02*/
    .module-type-contenteditor.standard-03-r02 {
    }

        .module-type-contenteditor.standard-03-r02 .module-wrapper {
            display: table;
            background-color: #e5e5e5;
        }

        .module-type-contenteditor.standard-03-r02 .content-left {
            display: table-cell;
            vertical-align: top;
            padding: 15px;
        }

        .module-type-contenteditor.standard-03-r02 .content-right {
            display: table-cell;
        }

        .module-type-contenteditor.standard-03-r02 .thumb-image {
            margin: 0;
        }

        .module-type-contenteditor.standard-03-r02 .read-more {
            display: block;
        }
    /*#endregion*/

    /*#region standard-04-r01*/
    .module-type-contenteditor.standard-04-r01 {
    }

        .module-type-contenteditor.standard-04-r01 .module-wrapper {
            display: table;
            background-color: #e5e5e5;
        }

        .module-type-contenteditor.standard-04-r01 .content-left {
            display: table-cell;
            vertical-align: top;
        }

        .module-type-contenteditor.standard-04-r01 .content-right {
            display: table-cell;
            vertical-align: top;
            padding: 15px;
        }

        .module-type-contenteditor.standard-04-r01 .thumb-image {
            margin: 0;
        }
    /*#endregion*/


    /*#region expandable-01-r01*/
    .module-type-contenteditor.expandable-01-r01 {
    }

        .module-type-contenteditor.expandable-01-r01 .heading a {
            text-decoration: none;
        }

            .module-type-contenteditor.expandable-01-r01 .heading a:before {
                content: "\f0aa";
                font: normal normal normal 14px/1 FontAwesome;
                font-size: 22px;
                display: inline-block;
                margin-right: 10px;
                -webkit-font-smoothing: antialiased;
            }

            .module-type-contenteditor.expandable-01-r01 .heading a.collapsed:before {
                content: "\f0ab";
                font: normal normal normal 14px/1 FontAwesome;
                font-size: 22px;
                display: inline-block;
                margin-right: 10px;
                -webkit-font-smoothing: antialiased;
            }

        .module-type-contenteditor.expandable-01-r01 .content {
            padding-left: 30px;
        }
    /*#endregion*/

    /*#region expandable-01-r02*/
    .module-type-contenteditor.expandable-01-r02 {
    }

        .module-type-contenteditor.expandable-01-r02:not(.last) .module-wrapper {
            margin-bottom: 1px;
        }

        .module-type-contenteditor.expandable-01-r02 .heading {
            margin-bottom: 0;
        }

            .module-type-contenteditor.expandable-01-r02 .heading a {
                text-decoration: none;
                display: block;
                padding: 10px 20px 10px 20px;
                background-color: #cfcfcf;
            }

                .module-type-contenteditor.expandable-01-r02 .heading a.collapsed {
                    background-color: #e5e5e5;
                }

                .module-type-contenteditor.expandable-01-r02 .heading a:before {
                    content: "\f106";
                    font: normal normal normal 14px/1 FontAwesome;
                    font-size: 22px;
                    margin-right: 10px;
                    display: inline-block;
                    -webkit-font-smoothing: antialiased;
                }

                .module-type-contenteditor.expandable-01-r02 .heading a.collapsed:before {
                    content: "\f107";
                }

        .module-type-contenteditor.expandable-01-r02 .content {
            padding: 15px;
            margin: 1px 5px 10px 5px;
            background-color: #f8f8f8;
        }
    /*#endregion*/

    /*#region expandable-01-r03*/
    .module-type-contenteditor.expandable-01-r03 {
    }

        .module-type-contenteditor.expandable-01-r03:not(.last) .module-wrapper {
            margin-bottom: 3px;
        }

        .module-type-contenteditor.expandable-01-r03 .heading {
            margin-bottom: 0;
        }

            .module-type-contenteditor.expandable-01-r03 .heading a {
                text-decoration: none;
                display: block;
                padding: 10px 20px 10px 10px;
                background-color: #cfcfcf;
            }

                .module-type-contenteditor.expandable-01-r03 .heading a.collapsed {
                    background-color: #e5e5e5;
                }

                .module-type-contenteditor.expandable-01-r03 .heading a:after {
                    content: "\f106";
                    font: normal normal normal 14px/1 FontAwesome;
                    font-size: 22px;
                    display: inline-block;
                    -webkit-font-smoothing: antialiased;
                    float: right;
                }

                .module-type-contenteditor.expandable-01-r03 .heading a.collapsed:after {
                    content: "\f107";
                }

        .module-type-contenteditor.expandable-01-r03 .content {
            padding: 15px;
            margin: 0 0 10px 0;
            background-color: #f8f8f8;
        }
/*#endregion*/

/*#endregion*/


/*#region *************** Article Preview ****************/
.module-type-articlepreview {
}

    .module-type-articlepreview .thumb-image {
        float: left; /* Setup image left and text right, without disturbing responsive behaviour */
        margin-bottom: 10px;
        margin-right: 15px;
    }

    .module-type-articlepreview .title {
        margin-bottom: 10px;
    }

    .module-type-articlepreview .date {
        margin-bottom: 5px;
    }

    .module-type-articlepreview .read-more {
        margin-top: 5px;
    }

    .module-type-articlepreview .reference {
        font-weight: bold;
    }

    /*#region news-standard-01-r01*/
    .module-type-articlepreview.news-standard-01-r01 {
    }

        .module-type-articlepreview.news-standard-01-r01 .date {
            display: none;
        }
    /*#endregion*/

    /*#region news-standard-01-r02*/
    .module-type-articlepreview.news-standard-01-r02 {
    }

        .module-type-articlepreview.news-standard-01-r02 article {
            margin-bottom: 15px;
        }

        .module-type-articlepreview.news-standard-01-r02 .inner {
            border-bottom: 1px solid #687074;
            padding-bottom: 5px;
        }

        .module-type-articlepreview.news-standard-01-r02 .date,
        .module-type-articlepreview.news-standard-01-r02 .summary {
            display: none;
        }
    /*#endregion*/

    /*#region news-standard-01-r03*/
    .module-type-articlepreview.news-standard-01-r03 {
    }

        .module-type-articlepreview.news-standard-01-r03 article {
            margin-bottom: 2px;
        }

        .module-type-articlepreview.news-standard-01-r03 .title {
            margin-bottom: 0;
        }

            .module-type-articlepreview.news-standard-01-r03 .title a {
                display: block;
                padding: 10px;
                background-color: #e5e5e5;
                border-left: 5px solid #687074;
            }

                .module-type-articlepreview.news-standard-01-r03 .title a:hover {
                    background-color: #cfcfcf;
                }

        .module-type-articlepreview.news-standard-01-r03 .date,
        .module-type-articlepreview.news-standard-01-r03 .summary {
            display: none;
        }

        .module-type-articlepreview.news-standard-01-r03 .action-links {
            margin-top: 15px;
        }
    /*#endregion*/

    /*#region news-standard-02-r01*/
    .module-type-articlepreview.news-standard-02-r01 {
    }
    /*#endregion*/

    /*#region news-standard-02-r02*/
    .module-type-articlepreview.news-standard-02-r02 {
    }

        .module-type-articlepreview.news-standard-02-r02 article {
            margin-bottom: 10px;
        }

        .module-type-articlepreview.news-standard-02-r02 .inner {
            background-color: #e5e5e5;
            padding: 15px;
        }

        .module-type-articlepreview.news-standard-02-r02 .thumb-image {
            margin-bottom: 0;
        }

        .module-type-articlepreview.news-standard-02-r02 .title {
        }
    /*#endregion*/

    /*#region news-tabbed-01-r01*/
    .module-type-articlepreview.news-tabbed-01-r01 {
    }

        .module-type-articlepreview.news-tabbed-01-r01 .nav-tabs {
            margin-bottom: 20px;
        }
    /*#endregion*/

    /*#region news-tabbed-01-r02*/
    .module-type-articlepreview.news-tabbed-01-r02 {
    }

        .module-type-articlepreview.news-tabbed-01-r02 .nav-tabs {
            margin: 0;
            border: none;
        }

            .module-type-articlepreview.news-tabbed-01-r02 .nav-tabs li {
                margin: 0;
            }

                .module-type-articlepreview.news-tabbed-01-r02 .nav-tabs li a {
                    background-color: #dcdcdc;
                    border: none;
                    margin: 0 4px 0 0;
                    border-top: 7px solid #dcdcdc;
                    border-bottom: 3px solid #ffffff;
                    border-radius: 0;
                }

                .module-type-articlepreview.news-tabbed-01-r02 .nav-tabs li.active > a {
                    border-top: 7px solid #687074;
                    border-bottom: 3px solid #efefef;
                    background-color: #efefef;
                }

                .module-type-articlepreview.news-tabbed-01-r02 .nav-tabs li > a h4 {
                    margin: 0;
                    line-height: 30px;
                    white-space: nowrap;
                    overflow: hidden;
                }

        .module-type-articlepreview.news-tabbed-01-r02 .tab-content {
            background-color: #efefef;
            border: none;
            border-radius: 0;
            border-bottom: 5px solid #687074;
            padding: 25px 30px 20px 30px;
        }

        .module-type-articlepreview.news-tabbed-01-r02 .action-links {
            margin-top: 15px;
        }
    /*#endregion*/

    /*#region news-tabbed-02-r01*/
    .module-type-articlepreview.news-tabbed-02-r01 {
    }

        .module-type-articlepreview.news-tabbed-02-r01 .nav-tabs {
            margin-bottom: 20px;
        }
    /*#endregion*/

    /*#region news-tabbed-02-r02*/
    .module-type-articlepreview.news-tabbed-02-r02 {
    }

        .module-type-articlepreview.news-tabbed-02-r02 .nav-tabs {
            margin: 0;
            border: none;
        }

            .module-type-articlepreview.news-tabbed-02-r02 .nav-tabs li {
                margin: 0;
            }

                .module-type-articlepreview.news-tabbed-02-r02 .nav-tabs li a {
                    background-color: #dcdcdc;
                    border: none;
                    margin: 0 4px 0 0;
                    border-top: 7px solid #dcdcdc;
                    border-bottom: 3px solid #ffffff;
                    border-radius: 0;
                }

                .module-type-articlepreview.news-tabbed-02-r02 .nav-tabs li.active > a {
                    border-top: 7px solid #687074;
                    border-bottom: 3px solid #efefef;
                    background-color: #efefef;
                }

                .module-type-articlepreview.news-tabbed-02-r02 .nav-tabs li > a h4 {
                    margin: 0;
                    line-height: 30px;
                    white-space: nowrap;
                    overflow: hidden;
                }

        .module-type-articlepreview.news-tabbed-02-r02 .tab-content {
            background-color: #efefef;
            border: none;
            border-radius: 0;
            border-bottom: 5px solid #687074;
            padding: 25px 30px 20px 30px;
        }

        .module-type-articlepreview.news-tabbed-02-r02 .action-links {
            margin-top: 15px;
        }
    /*#endregion*/

/*#endregion*/


/*#region *************** Slider *************************/
.module-type-slider {
}

    .module-type-slider .module-wrapper {
        margin-bottom: 0;
    }


    .module-type-slider .slider-title,
    .module-type-slider .slider-heading,
    .module-type-slider .slider-description,
    .module-type-slider .slider-html {
        padding: 5px;
    }

    .module-type-slider .slider-title {
        font-size: 180%;
    }

    .module-type-slider .slider-heading {
        font-size: 160%;
    }

    .module-type-slider .slider-description {
        font-size: 130%;
    }

    /* default display not visible until the images are loaded */
    .module-type-slider .nivoSlider,
    .module-type-slider .bxSlider,
    .module-type-slider .slickSlider {
        visibility: hidden;
    }

    /*#region *************** Nivo Defaults ******************/
    .module-type-slider .nivoSlider {
    }

    .module-type-slider .nivo-caption p {
        padding: 0;
    }

    .module-type-slider .nivo-controlNav {
        text-align: center;
        padding: 20px 0 20px 0;
    }

        .module-type-slider .nivo-controlNav a {
            display: inline-block;
            width: 22px;
            height: 20px;
            background: url(/Scripts/nivo-slider/themes/default/bullets.png) no-repeat;
            text-indent: -9999px;
            border: 0;
            margin: 0 2px;
        }

            .module-type-slider .nivo-controlNav a.active {
                background-position: 0 -22px;
            }

    .module-type-slider .nivo-directionNav a {
        display: block;
        width: 30px;
        height: 30px;
        background: url(/Scripts/nivo-slider/themes/default/arrows.png) no-repeat;
        text-indent: -9999px;
        border: 0;
        opacity: 0;
        -webkit-transition: all 200ms ease-in-out;
        -moz-transition: all 200ms ease-in-out;
        -o-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;
    }

    .module-type-slider:hover .nivo-directionNav a {
        opacity: 1;
    }

    .module-type-slider a.nivo-nextNav {
        background-position: -30px 0;
        right: 15px;
    }

    .module-type-slider a.nivo-prevNav {
        left: 15px;
    }
    /*#endregion*/

    /*#region *************** BxSlider Defaults **************/
    .module-type-slider .bxSlider {
    }
    /*#endregion*/

    /*#region *************** SlickSlider Defaults ***********/
    .module-type-slider .slickSlider {
    }

    .module-type-slider .slick-prev:before,
    .module-type-slider .slick-next:before {
        color: #333;
    }
    /*#endregion */


    /*#region nivo-standard-01-r01*/
    .module-type-slider.nivo-standard-01-r01 {
    }
    /*#endregion*/

    /*#region content-standard-01-r01*/
    .module-type-slider.content-standard-01-r01 {
    }
    /*#endregion*/

    /*#region content-tabbed-01-r01*/
    .module-type-slider.content-tabbed-01-r01 {
    }

        .module-type-slider.content-tabbed-01-r01 .nav-tabs {
            margin-bottom: 15px;
        }
    /*#endregion*/

    /*#region content-tabbed-01-r02*/
    .module-type-slider.content-tabbed-01-r02 {
    }

        .module-type-slider.content-tabbed-01-r02 .nav-tabs {
            margin: 0;
            border: none;
        }

            .module-type-slider.content-tabbed-01-r02 .nav-tabs li {
                margin: 0;
            }

                .module-type-slider.content-tabbed-01-r02 .nav-tabs li a {
                    background-color: #dcdcdc;
                    border: none;
                    margin: 0 4px 0 0;
                    border-top: 7px solid #dcdcdc;
                    border-bottom: 3px solid #ffffff;
                    border-radius: 0;
                }

                .module-type-slider.content-tabbed-01-r02 .nav-tabs li.active > a {
                    border-top: 7px solid #687074;
                    border-bottom: 3px solid #efefef;
                    background-color: #efefef;
                }

                .module-type-slider.content-tabbed-01-r02 .nav-tabs li > a h4 {
                    margin: 0;
                    line-height: 30px;
                    white-space: nowrap;
                    overflow: hidden;
                }

        .module-type-slider.content-tabbed-01-r02 .tab-content {
            background-color: #efefef;
            border: none;
            border-radius: 0;
            border-bottom: 5px solid #687074;
            padding: 25px 30px 20px 30px;
        }
    /*#endregion*/

    /*#region slick-standard-01-r01*/
    .module-type-slider.slick-standard-01-r01 {
    }
    /*#endregion*/

    /*#region slick-standard-01-r02*/
    .module-type-slider.slick-standard-01-r02 {
    }

        .module-type-slider.slick-standard-01-r02 .slick-slide {
            position: relative;
        }

        .module-type-slider.slick-standard-01-r02 .slider-content {
            position: absolute;
            z-index: 2;
            background: rgba(51,51,51,0.8);
            color: #ffffff;
            bottom: 0;
            padding: 20px;
        }

@media (min-width: 992px) {
    .module-type-slider.slick-standard-01-r02 .slider-content {
        width: 25%;
        margin-left: 65%;
        height: 100%;
    }
}
/*#endregion*/

/*#region slick-centermode*/
.module-type-slider.slick-centermode-01-r01 {
}

    .module-type-slider.slick-centermode-01-r01 .slick-track {
        display: table;
    }

    .module-type-slider.slick-centermode-01-r01 .slick-slide {
        text-align: center;
        display: table-cell;
        vertical-align: middle;
        float: none;
    }

        .module-type-slider.slick-centermode-01-r01 .slick-slide img {
            display: inline-block;
            width: 77%;
            -moz-transition: all 700ms ease;
            -o-transition: all 700ms ease;
            -webkit-transition: all 700ms ease;
            transition: all 700ms ease;
        }

        .module-type-slider.slick-centermode-01-r01 .slick-slide.slick-center img {
            width: 100%;
            color: #e67e22;
            opacity: 1;
            -moz-transition: all 100ms ease;
            -o-transition: all 100ms ease;
            -webkit-transition: all 100ms ease;
            transition: all 100ms ease;
        }
/*#endregion*/

/*#region slick-carousel-01-r01*/
.module-type-slider.slick-carousel-01-r01 {
}

    .module-type-slider.slick-carousel-01-r01 .slick-slide img {
        padding-left: 10px;
        padding-right: 10px;
    }
/*#endregion*/

/*#endregion*/


/*#region *************** Gallery ************************/
.module-type-basicgallery {
}

    .module-type-basicgallery .heading {
        display: none;
    }

    /*#region *************** BX Slider Defaults *************/
    .module-type-basicgallery .bx-slider {
        visibility: hidden; /* This hides the images, until the gallery is fully init */
    }

        .module-type-basicgallery .bx-slider .bx-viewport {
            box-shadow: none;
            border: none;
            left: 0;
            background: none;
            -moz-transform: none;
            -ms-transform: none;
            -o-transform: none;
            -webkit-transform: none;
            transform: none;
        }

        .module-type-basicgallery .bx-slider ul,
        .module-type-basicgallery .bx-slider li {
            margin: 0;
            padding: 0;
        }

        .module-type-basicgallery .bx-slider img {
            margin: 0 auto; /*Centers the image*/
        }

        .module-type-basicgallery .bx-slider .bx-caption {
            background: rgba(0, 0, 0, 0.8);
        }

        .module-type-basicgallery .bx-slider.bx-thumbs {
            margin-top: 10px;
        }

            .module-type-basicgallery .bx-slider.bx-thumbs img {
                width: 100%;
            }
    /*#endregion*/


    /*#region *************** Jssor Defaults *****************/
    .module-type-basicgallery .jssor-main {
        position: relative;
        margin: 0 auto;
        top: 0;
        left: 0;
        overflow: hidden;
        visibility: hidden;
        background-color: #24262e;
    }

    .module-type-basicgallery .jssor-slides {
        cursor: default;
        position: relative;
        top: 0;
        overflow: hidden;
    }
    /* jssor slider arrow navigator skin 05 css */
    /*
    .jssora05l                  (normal)
    .jssora05r                  (normal)
    .jssora05l:hover            (normal mouseover)
    .jssora05r:hover            (normal mouseover)
    .jssora05l.jssora05ldn      (mousedown)
    .jssora05r.jssora05rdn      (mousedown)
    */
    .module-type-basicgallery .jssor-arrow-left,
    .module-type-basicgallery .jssor-arrow-right {
        display: block;
        position: absolute;
        /* size of arrow element */
        width: 40px;
        height: 40px;
        cursor: pointer;
        background: url('/Scripts/jssor/img/a17.png') no-repeat;
        overflow: hidden;
    }

    .module-type-basicgallery .jssor-arrow-left {
        background-position: -10px -40px;
    }

    .module-type-basicgallery .jssor-arrow-right {
        background-position: -70px -40px;
    }

    .module-type-basicgallery .jssor-arrow-left:hover {
        background-position: -130px -40px;
    }

    .module-type-basicgallery .jssor-arrow-right:hover {
        background-position: -190px -40px;
    }

    .module-type-basicgallery .jssora05r.jssor-arrow-leftdn {
        background-position: -310px -40px;
    }

    .module-type-basicgallery .jssor-arrow-left.jssor-arrow-rightdn {
        background-position: -250px -40px;
    }

    /* jssor slider thumbnail navigator */
    /*
        .jssort01 .p            (normal)
        .jssort01 .p:hover      (normal mouseover)
        .jssort01 .p.pav        (active)
        .jssort01 .p.pdn        (mousedown)
        */
    .module-type-basicgallery .jssor-thumbs .p {
        position: absolute;
        top: 0;
        left: 0;
    }

    .module-type-basicgallery .jssor-thumbs .t {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    .module-type-basicgallery .jssor-thumbs .w {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .module-type-basicgallery .jssor-thumbs .c {
        position: absolute;
        top: 0;
        left: 0;
        border: #000 2px solid;
        -moz-box-sizing: content-box;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        background: url('/Scripts/jssor/img/t01.png') -800px -800px no-repeat;
        _background: none;
    }

    .module-type-basicgallery .jssor-thumbs .pav .c {
        top: 2px;
        _top: 0;
        left: 2px;
        _left: 0;
        border: #000 0 solid;
        _border: #fff 2px solid;
        background-position: 50% 50%;
    }

    .module-type-basicgallery .jssor-thumbs .p:hover .c {
        top: 0;
        left: 0;
        border: #fff 1px solid;
        background-position: 50% 50%;
    }

    .module-type-basicgallery .jssor-thumbs .p.pdn .c {
        background-position: 50% 50%;
        border: #000 2px solid;
    }
    /*#endregion*/

    /*#region standard-01-r01*/
    .module-type-basicgallery.standard-01-r01 {
    }

        .module-type-basicgallery.standard-01-r01 ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .module-type-basicgallery.standard-01-r01 .thumb-image {
            margin-bottom: 30px;
            position: relative;
            box-shadow: 0 1px 1px rgba(5, 4, 4, 0.45);
        }

            .module-type-basicgallery.standard-01-r01 .thumb-image img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                -moz-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .module-type-basicgallery.standard-01-r01 .thumb-image:hover img {
                -moz-transform: scale(1.1);
                -ms-transform: scale(1.1);
                -o-transform: scale(1.1);
                -webkit-transform: scale(1.1);
                transform: scale(1.1);
            }

        .module-type-basicgallery.standard-01-r01 .title {
            position: absolute;
            left: -2px;
            bottom: 15px;
            margin: 0;
            padding: 8px;
            background-color: #ffffff;
            box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
        }
    /*#endregion*/

    /*#region BXSlider-01-r01*/
    .module-type-basicgallery.bxslider-01-r01 {
    }

        .module-type-basicgallery.bxslider-01-r01 .bx-slider.bx-thumbs img {
            padding: 1px;
            border: 1px solid #ffffff;
        }

        .module-type-basicgallery.bxslider-01-r01 .bx-slider.bx-thumbs .active img {
            border: 1px solid #687074;
        }
    /*#endregion*/

    /*#region BXSlider-02-r01*/
    .module-type-basicgallery.bxslider-02-r01 {
    }

        .module-type-basicgallery.bxslider-02-r01 .bx-slider.bx-thumbs {
            margin-top: 0;
        }

            .module-type-basicgallery.bxslider-02-r01 .bx-slider.bx-thumbs img {
                padding: 1px;
                border: 1px solid #ffffff;
            }

            .module-type-basicgallery.bxslider-02-r01 .bx-slider.bx-thumbs .active img {
                border: 1px solid #687074;
            }
    /*#endregion*/

    /*#region Jssor-01-r01*/
    .module-type-basicgallery.jssor-01-r01 .jssor-main {
        width: 1140px;
        height: 570px;
    }

    .module-type-basicgallery.jssor-01-r01 .jssor-slides {
        left: 240px;
        width: 886px;
        height: 542px;
        margin-top: 14px;
    }

    .module-type-basicgallery.jssor-01-r01 .jssor-arrow-left {
        left: 248px;
    }

    .module-type-basicgallery.jssor-01-r01 .jssor-arrow-right {
        right: 8px;
    }

    .module-type-basicgallery.jssor-01-r01 .jssor-thumbs {
        position: absolute;
        left: 0;
        top: 0;
        width: 240px;
        height: 570px;
    }

        .module-type-basicgallery.jssor-01-r01 .jssor-thumbs .p {
            width: 99px;
            height: 67px;
        }

            .module-type-basicgallery.jssor-01-r01 .jssor-thumbs .c,
            .module-type-basicgallery.jssor-01-r01 .jssor-thumbs .pav .c,
            .module-type-basicgallery.jssor-01-r01 .jssor-thumbs .p.pdn .c {
                width: 95px;
                height: 63px;
            }

            .module-type-basicgallery.jssor-01-r01 .jssor-thumbs .p:hover .c {
                width: 97px;
                height: 65px;
            }
    /*#endregion*/

    /*#region Jssor-01-r02*/
    .module-type-basicgallery.jssor-01-r02 .jssor-main {
        width: 1140px;
        height: 570px;
    }

    .module-type-basicgallery.jssor-01-r02 .jssor-slides {
        right: 240px;
        width: 900px;
        height: 570px;
    }

    .module-type-basicgallery.jssor-01-r02 .jssor-arrow-left {
        left: 248px;
    }

    .module-type-basicgallery.jssor-01-r02 .jssor-arrow-right {
        right: 8px;
    }

    .module-type-basicgallery.jssor-01-r02 .jssor-thumbs {
        position: absolute;
        right: 0;
        top: 0;
        width: 240px;
        height: 570px;
    }

        .module-type-basicgallery.jssor-01-r02 .jssor-thumbs .p {
            width: 99px;
            height: 67px;
        }

            .module-type-basicgallery.jssor-01-r02 .jssor-thumbs .c,
            .module-type-basicgallery.jssor-01-r02 .jssor-thumbs .pav .c,
            .module-type-basicgallery.jssor-01-r02 .jssor-thumbs .p.pdn .c {
                width: 95px;
                height: 63px;
            }

            .module-type-basicgallery.jssor-01-r02 .jssor-thumbs .p:hover .c {
                width: 97px;
                height: 65px;
            }
    /*#endregion*/

    /*#region Jssor-02-r01*/
    .module-type-basicgallery.jssor-02-r01 .jssor-main {
        width: 1140px;
        height: 680px;
    }

    .module-type-basicgallery.jssor-02-r01 .jssor-slides {
        left: 0;
        width: 1140px;
        height: 580px;
    }

    .module-type-basicgallery.jssor-02-r01 .jssor-arrow-left {
        left: 8px;
    }

    .module-type-basicgallery.jssor-02-r01 .jssor-arrow-right {
        right: 8px;
    }

    .module-type-basicgallery.jssor-02-r01 .jssor-thumbs {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 1140px;
        height: 100px;
    }

        .module-type-basicgallery.jssor-02-r01 .jssor-thumbs .p {
            width: 106px;
            height: 80px;
        }

            .module-type-basicgallery.jssor-02-r01 .jssor-thumbs .c,
            .module-type-basicgallery.jssor-02-r01 .jssor-thumbs .pav .c,
            .module-type-basicgallery.jssor-02-r01 .jssor-thumbs .p.pdn .c {
                width: 102px;
                height: 76px;
            }

            .module-type-basicgallery.jssor-02-r01 .jssor-thumbs .p:hover .c {
                width: 104px;
                height: 78px;
            }
/*#endregion*/

/*#endregion*/


/*#region *************** Testimonial ********************/
.module-type-testimonial {
}

    .module-type-testimonial .reference p {
        font-weight: bold;
        margin-top: 20px;
    }

    .module-type-testimonial .inner {
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 20px;
    }

        .module-type-testimonial .inner .content .fa-quote-left {
            float: left;
            margin-right: 12px;
        }

    /*#region standard-01*/

    /*#region standard-01-r01*/

    .module-type-testimonial.standard-01-r01 .inner .content .fa-quote-left {
        display: none;
    }

    /*#endregion standard-01-r01*/

    /*#region standard-01-r02*/

    .module-type-testimonial.standard-01-r02 .inner {
        background-color: #e5e5e5;
        border-bottom: 3px solid #687074;
        padding: 15px;
    }

        .module-type-testimonial.standard-01-r02 .inner:hover {
            transition: all 0.8s ease-in-out;
            -o-transition: all 0.8s ease-in-out;
            -moz-transition: all 0.8s ease-in-out;
            -webkit-transition: all 0.8s ease-in-out;
            border-bottom: 3px solid #72c02c;
        }

    /*#endregion standard-01-r02*/

    /*#region standard-01-r03*/

    .module-type-testimonial.standard-01-r03 .inner .title,
    .module-type-testimonial.standard-01-r03 .inner .content {
        background-color: #e5e5e5;
        padding: 15px;
        margin-bottom: 0;
    }

    .module-type-testimonial.standard-01-r03 .inner .content {
        position: relative;
        border-bottom: 3px solid #687074;
    }

    .module-type-testimonial.standard-01-r03 .inner:hover .content {
        transition: all 0.8s ease-in-out;
        -o-transition: all 0.8s ease-in-out;
        -moz-transition: all 0.8s ease-in-out;
        -webkit-transition: all 0.8s ease-in-out;
        border-bottom: 3px solid #72c02c;
    }

    .module-type-testimonial.standard-01-r03 .inner .content:after,
    .module-type-testimonial.standard-01-r03 .inner .content:before {
        position: absolute;
        left: 80px;
        top: 100%;
        border-style: solid;
        content: " ";
        height: 0;
        width: 0;
        pointer-events: none;
    }

    .module-type-testimonial.standard-01-r03 .inner .content:after {
        border-color: transparent;
        border-top-color: #e5e5e5;
        border-width: 14px 11.5px 0 11.5px;
        margin-left: -27px;
    }

    .module-type-testimonial.standard-01-r03 .inner .content:before {
        border-color: transparent;
        border-top-color: #687074;
        border-width: 18px 15px 0 15px;
        margin-left: -31px;
    }

    .module-type-testimonial.standard-01-r03 .inner:hover .content:before {
        transition: all 0.8s ease-in-out;
        -o-transition: all 0.8s ease-in-out;
        -moz-transition: all 0.8s ease-in-out;
        -webkit-transition: all 0.8s ease-in-out;
        border-top-color: #72c02c;
    }

    /*#endregion standard-01-r03*/

    /*#endregion standard-01*/

    /*#region standard-02*/

    /*#region standard-02-r01*/

    .module-type-testimonial.standard-02-r01 .inner {
        float: left;
    }

        .module-type-testimonial.standard-02-r01 .inner .thumb-image {
            float: left;
            margin: 0 20px 0 0;
            padding: 8px;
            border: 1px solid #e5e5e5;
        }

    /*#endregion standard-02-r01*/

    /*#region standard-02-r02*/

    .module-type-testimonial.standard-02-r02 .inner {
        float: left;
    }

        .module-type-testimonial.standard-02-r02 .inner .thumb-image {
            float: right;
            margin: 0 0 0 20px;
            padding: 8px;
            border: 1px solid #e5e5e5;
        }

    /*#endregion standard-02-r02*/

    /*#region standard-02-r03*/

    .module-type-testimonial.standard-02-r03 .inner .thumb-image,
    .module-type-testimonial.standard-02-r03 .inner .title,
    .module-type-testimonial.standard-02-r03 .inner .reference {
        text-align: center;
    }

        .module-type-testimonial.standard-02-r03 .inner .thumb-image img {
            -webkit-border-radius: 60px;
            -moz-border-radius: 60px;
            border-radius: 60px;
        }

    /*#endregion standard-02-r03*/

    /*#region standard-02-r04*/

    .module-type-testimonial.standard-02-r04 .inner {
        float: left;
        padding: 20px;
        background-color: #e5e5e5;
        border-bottom: 3px solid #687074;
    }

        .module-type-testimonial.standard-02-r04 .inner:hover {
            transition: all 0.8s ease-in-out;
            -o-transition: all 0.8s ease-in-out;
            -moz-transition: all 0.8s ease-in-out;
            -webkit-transition: all 0.8s ease-in-out;
            border-bottom: 3px solid #72c02c;
        }

        .module-type-testimonial.standard-02-r04 .inner .thumb-image {
            float: left;
            margin: 0 20px 0 0;
        }

            .module-type-testimonial.standard-02-r04 .inner .thumb-image img {
                -webkit-border-radius: 60px;
                -moz-border-radius: 60px;
                border-radius: 60px;
            }

    /*#endregion standard-02-r04*/

    /*#endregion standard-02*/

    /*#region standard-03*/

    /*#region standard-03-r01*/

    .module-type-testimonial.standard-03-r01 .inner .title,
    .module-type-testimonial.standard-03-r01 .inner .content {
        background-color: #e5e5e5;
        padding: 20px;
        margin-bottom: 0;
    }

    .module-type-testimonial.standard-03-r01 .inner .content {
        position: relative;
        border-bottom: 3px solid #687074;
    }

    .module-type-testimonial.standard-03-r01 .inner:hover .content {
        transition: all 0.8s ease-in-out;
        -o-transition: all 0.8s ease-in-out;
        -moz-transition: all 0.8s ease-in-out;
        -webkit-transition: all 0.8s ease-in-out;
        border-bottom: 3px solid #72c02c;
    }

    .module-type-testimonial.standard-03-r01 .inner .content:after,
    .module-type-testimonial.standard-03-r01 .inner .content:before {
        position: absolute;
        left: 80px;
        top: 100%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        pointer-events: none;
    }

    .module-type-testimonial.standard-03-r01 .inner .content:after {
        border-color: transparent;
        border-top-color: #e5e5e5;
        border-width: 14px 11.5px 0 11.5px;
        margin-left: -27px;
    }

    .module-type-testimonial.standard-03-r01 .inner .content:before {
        border-color: transparent;
        border-top-color: #687074;
        border-width: 18px 15px 0 15px;
        margin-left: -31px;
    }

    .module-type-testimonial.standard-03-r01 .inner:hover .content:before {
        transition: all 0.8s ease-in-out;
        -o-transition: all 0.8s ease-in-out;
        -moz-transition: all 0.8s ease-in-out;
        -webkit-transition: all 0.8s ease-in-out;
        border-top-color: #72c02c;
    }

    .module-type-testimonial.standard-03-r01 .inner .reference-wrapper {
        padding-top: 20px;
        display: table;
    }

        .module-type-testimonial.standard-03-r01 .inner .reference-wrapper .thumb-image {
            display: table-cell;
            vertical-align: middle;
            float: left;
            margin: 0 20px 0 0;
            padding: 2px;
            border: 1px solid #687074;
        }

    .module-type-testimonial.standard-03-r01 .inner .reference {
        display: table-cell;
        vertical-align: middle;
    }

        .module-type-testimonial.standard-03-r01 .inner .reference p {
            padding: 0;
            margin: 0;
        }


    /*#endregion standard-03-r01*/

    /*#region standard-03-r02*/

    .module-type-testimonial.standard-03-r02 .inner .title,
    .module-type-testimonial.standard-03-r02 .inner .content {
        background-color: #e5e5e5;
        padding: 20px;
        margin-bottom: 0;
    }

    .module-type-testimonial.standard-03-r02 .inner .content {
        position: relative;
        border-bottom: 3px solid #687074;
    }

    .module-type-testimonial.standard-03-r02 .inner:hover .content {
        transition: all 0.8s ease-in-out;
        -o-transition: all 0.8s ease-in-out;
        -moz-transition: all 0.8s ease-in-out;
        -webkit-transition: all 0.8s ease-in-out;
        border-bottom: 3px solid #72c02c;
    }

    .module-type-testimonial.standard-03-r02 .inner .content:after,
    .module-type-testimonial.standard-03-r02 .inner .content:before {
        position: absolute;
        left: 80px;
        top: 100%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        pointer-events: none;
    }

    .module-type-testimonial.standard-03-r02 .inner .content:after {
        border-color: transparent;
        border-top-color: #e5e5e5;
        border-width: 14px 11.5px 0 11.5px;
        margin-left: -27px;
    }

    .module-type-testimonial.standard-03-r02 .inner .content:before {
        border-color: transparent;
        border-top-color: #687074;
        border-width: 18px 15px 0 15px;
        margin-left: -31px;
    }

    .module-type-testimonial.standard-03-r02 .inner:hover .content:before {
        transition: all 0.8s ease-in-out;
        -o-transition: all 0.8s ease-in-out;
        -moz-transition: all 0.8s ease-in-out;
        -webkit-transition: all 0.8s ease-in-out;
        border-top-color: #72c02c;
    }


    .module-type-testimonial.standard-03-r02 .inner .reference-wrapper {
        padding-top: 20px;
        display: table;
    }

        .module-type-testimonial.standard-03-r02 .inner .reference-wrapper .thumb-image {
            display: table-cell;
            vertical-align: middle;
            float: left;
            margin: 0 20px 0 0;
        }

            .module-type-testimonial.standard-03-r02 .inner .reference-wrapper .thumb-image img {
                -webkit-border-radius: 60px;
                -moz-border-radius: 60px;
                border-radius: 60px;
            }

    .module-type-testimonial.standard-03-r02 .inner .reference {
        display: table-cell;
        vertical-align: middle;
    }

        .module-type-testimonial.standard-03-r02 .inner .reference p {
            padding: 0;
            margin: 0;
        }

/*#endregion standard-03-r02*/

/*#endregion standard-03*/

/*#endregion*/
