﻿body {
    padding: 0px;
    background: #fff;
    font-family: acumin-pro-semi-condensed, sans-serif;
}

.section-landing .row > div .section-landing-heading {
    font-weight: bold;
    text-shadow: 4px 2px #0b80d0;
}

.section-landing .row > div .section-landing-sub-heading {
    font-weight: bold;
    text-shadow: 4px 2px #0b80d0;
}

li {
    margin: 0px;
}
ul {
    margin-top: 10px;
}
h1 {
    margin: 10px 0;
    padding: 0;
    line-height: 56px;
    font-size: 48px;
}

h2 {
    margin: 8px 0;
    padding: 0;
    line-height: 44px;
    color: #333;
    font-size: 36px;
    font-weight: 400;
}

h3 {
    margin: 6px 0;
    padding: 2px;
    line-height: 32px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

h4 {
    margin: 40px 0 4px 0;
    padding: 0;
    line-height: 28px;
    color: #333;
    font-size: 18px;
    font-weight: 700;
}

h5 {
    margin: 35px 0 4px 0;
    padding: 0;
    line-height: 28px;
    color: #333;
    font-size: 18px;
    font-weight: 700;
}

h6 {
    margin: 2px 0;
    padding: 0;
    line-height: 28px;
    color: #333;
    font-size: 18px;
    font-weight: 700;
}

p {
    margin: 23px 0 0;
    font-size: 18px;
    line-height: 28px;
}
p:first-child {
    margin-top: 0;
}

.page-heading {
    padding-top: 0;
}

.page-header {
    margin: 0;
    border-bottom: none;
    padding: 0;
}

.breadcrumb {
    background: #f1f1f1;
    padding: 0 12px;
    margin: 1em 0 0.5em 0;
}

    .breadcrumb > li {
        padding: 12px 0;
        font-size: 14px;
    }

        .breadcrumb > li a {
            text-decoration: none;
        }

        .breadcrumb > li + li:before {
            content: '\2192';
        }

.page-copy {
    margin-bottom: 5px;
}

.tab-title {
    margin-bottom: 8px;
    padding-bottom: 5px;
}

.crmEntityFormView .tab-title {
}


h2.tab-title {
    margin: 0 0 8px;
}

.tab-column fieldset:last-child {
    margin-bottom: 0;
}

.crmEntityFormView .tab {
    margin-bottom: 0;
}

.form-readonly.form-control:focus,
.crmEntityFormView .form-control.readonly:focus {
    outline: none;
}

.form-control {
    font-size: inherit;
    padding: 0 12px;
}

    .form-control:focus {
        border-color: none;
        box-shadow: none;
    }

input.form-control:not([type=checkbox]):not([type=radio]):focus {
    outline: 3px solid #feba35;
    outline-offset: 0;
}



/** checkbox **/
input[type='checkbox'] {
    cursor: pointer;
}

    input[type='checkbox']:before {
        z-Index: 1000;
        box-sizing: border-box;
        position: absolute;
        top: 0;
        left: 0;
        width: 24px;
        height: 24px;
        border: 1px solid #666;
        border-radius: 2px;
        background-color: #fff;
        content: '';
    }

    input[type='checkbox']:checked:after {
        z-index: 1001;
        background: #004f84;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' shape-rendering='geometricPrecision'%3E%3Cpath d='M1 10L6 14L15 1' fill='transparent' stroke='%23fff' stroke-width='3' stroke-endcap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        color: #fff;
        background-repeat: no-repeat;
        background-position: center center;
        box-sizing: border-box;
        position: absolute;
        top: 1px;
        left: 1px;
        width: 22px;
        height: 22px;
        border: 1px solid #fff;
        content: '';
    }


.crmEntityFormView .cell.checkbox-cell:first-child {
    padding: 0 10px 10px 28px;
}

.crmEntityFormView .cell.checkbox-cell div.info {
    padding-left: 40px;
}

.crmEntityFormView .cell.checkbox-cell label {
    font-weight: normal;
    cursor: pointer;
}

.checkbox > label span {
    padding-left: 0.4em;
}
/* Radios  */

input[type='radio'] {
    z-Index: 1;
    box-sizing: border-box;
    position: relative;
    top: 2px;
    left: 2px;
    margin: 0;
}

span.picklist label {
    position: relative;
    cursor: pointer;
    padding: 0 0 0 20px;
}

span.boolean-radio label {
    position: relative;
    cursor: pointer;
    padding: 0 20px 0 20px;
}

input[type='radio'] + label:before {
    z-Index: 1000;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: -20px;
    width: 24px;
    height: 24px;
    border: 1px solid #666;
    border-radius: 100%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    content: '';
}

input[type='radio']:checked + label:before {
    background-color: #004f84;
}

input[type='radio']:checked + label:after {
    z-Index: 1001;
    box-sizing: border-box;
    position: absolute;
    top: 1px;
    left: -19px;
    width: 22px;
    height: 22px;
    border: 2px solid #fff;
    border-radius: 100%;
    content: '';
}

/* Removes the dropdown for the subgrid and note */
.entity-grid .btn.btn-default.btn-xs, .note .btn.btn-default.btn-xs {
    display: none;
}

/* Displays the buttons that were in the dropdown inline inside the grid and note */
.entity-grid .dropdown-menu, .note .dropdown-menu {
    display: flex;
    position: relative !important;
    top: 100% !important;
    left: 0 !important;
    border: none;
    background: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.entity-grid .action .details-link, .entity-grid .action .delete-link, .entity-grid .action .edit-link, .entity-grid .action .workflow-link, .note .edit-link {
    border: 2px solid #0070c4;
    border-radius: 4px;
    font-size: 14px;
}



@media print {
    input[type='checkbox'] {
        top: 5px;
    }

        input[type='checkbox']:before {
            all: inherit;
        }

        input[type='checkbox']:checked:after {
            all: inherit;
        }

    .crmEntityFormView .cell.checkbox-cell div.info {
        padding-left: 20px;
    }

    input[type='radio'] {
        top: 5px;
    }

        input[type='radio'] + label:before {
            all: inherit;
            content: normal;
        }

    span.boolean-radio label {
        padding: 0 5px 0 5px;
    }

    input[type='radio']:checked + label:after {
        all: inherit;
    }

    a[href]:after {
        content: ""
    }

    div.ainp-form-content {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }

    div.goa-callout:before {
        background-color: transparent !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
    }

    div.goa-callout:before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,20a9,9,0,1,1,9-9A9,9,0,0,1,12,21Z'/%3E%3Cpath fill='%23fff' d='M15.16,15.5h-2V9a1,1,0,0,0-1-1H9.82a1,1,0,0,0,0,2h1.36V15.5h-2a1,1,0,1,0,0,2h6a1,1,0,0,0,0-2Z'/%3E%3Cpath fill='%23fff' d='M12,7.33A1.29,1.29,0,1,0,10.73,6,1.29,1.29,0,0,0,12,7.33Z'/%3E%3C/svg%3E") !important;
    }

    div.goa-callout.goa--emergency:before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M11,9.41v4.52a1,1,0,0,0,2,0V9.41a1,1,0,0,0-2,0Z'/%3E%3Cpath fill='%23fff' d='M12,16.15a1.29,1.29,0,1,0,1.29,1.29A1.29,1.29,0,0,0,12,16.15Z'/%3E%3Cpath fill='%23fff' d='M22.87,20.14l-10-17.32a1,1,0,0,0-1.74,0l-10,17.32a1,1,0,0,0,0,1,1,1,0,0,0,.87.5H22a1,1,0,0,0,.87-.5A1,1,0,0,0,22.87,20.14Zm-19.14-.5L12,5.32l8.27,14.32Z'/%3E%3C/svg%3E") !important;
    }

    div.goa-callout.goa--important:before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,20a9,9,0,1,1,9-9A9,9,0,0,1,12,21Z'/%3E%3Cpath fill='%23000' d='M12,14.46a1,1,0,0,0,1-1V6.57a1,1,0,0,0-2,0v6.89A1,1,0,0,0,12,14.46Z'/%3E%3Cpath fill='%23000' d='M12,15.68A1.29,1.29,0,1,0,13.29,17,1.29,1.29,0,0,0,12,15.68Z'/%3E%3C/svg%3E") !important;
    }

    div.goa-callout.goa--event:before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M3.27,22.85H20.73a2.14,2.14,0,0,0,2.14-2.14V5A2.14,2.14,0,0,0,20.73,2.9h-2.1v2h2.1a.14.14,0,0,1,.14.14V8.31H3.13V5a.14.14,0,0,1,.14-.14H5.48V6.28a1,1,0,1,0,2,0V1.85a1,1,0,1,0-2,0v1H3.27A2.14,2.14,0,0,0,1.13,5V20.71A2.14,2.14,0,0,0,3.27,22.85Zm17.6-12.54v10.4a.14.14,0,0,1-.14.14H3.27a.14.14,0,0,1-.14-.14V10.31Z'/%3E%3Cpath fill='%23fff' d='M16.45,7.28a1,1,0,0,0,1-1V1.85a1,1,0,0,0-2,0v1h-1.8v2h1.8V6.28A1,1,0,0,0,16.45,7.28Z'/%3E%3Cpath fill='%23fff' d='M11.47,7.28a1,1,0,0,0,1-1V1.85a1,1,0,1,0-2,0v1H8.66v2h1.81V6.28A1,1,0,0,0,11.47,7.28Z'/%3E%3Crect fill='%23fff' x='6.67' y='11.52' width='2.33' height='2.33'/%3E%3Crect fill='%23fff' x='11.22' y='11.52' width='2.33' height='2.33'/%3E%3Crect fill='%23fff' x='15.77' y='11.52' width='2.33' height='2.33'/%3E%3Crect fill='%23fff' x='3.64' y='15.83' width='2.33' height='2.33'/%3E%3Crect fill='%23fff' x='8.19' y='15.83' width='2.33' height='2.33'/%3E%3Crect fill='%23fff' x='12.74' y='15.83' width='2.33' height='2.33'/%3E%3C/svg%3E") !important;
    }

    .progress {
        display: none;
    }

    .toolbar {
        display: none;
    }

    .crmEntityFormView table.section {
        display: block;
    }

        .crmEntityFormView table.section > thead {
            display: table-header-group;
        }

            .crmEntityFormView table.section > thead > tr {
                display: table-row;
            }

                .crmEntityFormView table.section > thead > tr > th {
                    display: table-cell;
                }

                .crmEntityFormView table.section > thead > tr > td {
                    display: table-cell;
                }

        .crmEntityFormView table.section > tbody {
            display: block;
        }

            .crmEntityFormView table.section > tbody > tr {
                display: table-row;
            }

                .crmEntityFormView table.section > tbody > tr > th {
                    display: table-cell;
                }

                .crmEntityFormView table.section > tbody > tr > td {
                    display: table-cell;
                }

        .crmEntityFormView table.section > tfoot {
            display: table-footer-group;
        }

            .crmEntityFormView table.section > tfoot > tr {
                display: table-row;
            }

                .crmEntityFormView table.section > tfoot > tr > th {
                    display: table-cell;
                }

                .crmEntityFormView table.section > tfoot > tr > td {
                    display: table-cell;
                }


    .crmEntityFormView table.section {
        width: 100%;
        overflow: auto
    }

    .crmEntityFormView .cell {
        margin-bottom: 15px;
        padding: 5px;
        width: auto;
    }

        .crmEntityFormView .cell.empty-cell {
            margin-bottom: 0
        }

    .crmEntityFormView .tab .tab-column {
        display: block;
        margin-bottom: 15px;
        padding: 0;
        width: 100%
    }

        .crmEntityFormView .tab:last-child, .crmEntityFormView .tab fieldset:last-child, .crmEntityFormView .tab .tab-column:last-child {
            margin-bottom: 0
        }
}

div.notification, div.validation-summary {
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 23px 24px 23px 24px;
    border-width: 0;
    border-left-width: 48px;
    border-style: solid;
    border-color: #0070c4;
    background: #f1f1f1;
}

    div.notification span.fa, div.validation-summary span.fa {
        display: none;
    }

    div.notification.alert.alert-warning, div.validation-summary.alert-warning {
        border-color: #feba35;
    }

    div.notification.alert.alert-danger, div.validation-summary.alert-danger {
        border-color: #fc1921;
    }

    div.notification.alert.alert-success, div.validation-summary.alert-success {
        border-color: #00853f;
    }

    div.notification.alert:before, div.validation-summary.alert:before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,20a9,9,0,1,1,9-9A9,9,0,0,1,12,21Z'/%3E%3Cpath fill='%23fff' d='M15.16,15.5h-2V9a1,1,0,0,0-1-1H9.82a1,1,0,0,0,0,2h1.36V15.5h-2a1,1,0,1,0,0,2h6a1,1,0,0,0,0-2Z'/%3E%3Cpath fill='%23fff' d='M12,7.33A1.29,1.29,0,1,0,10.73,6,1.29,1.29,0,0,0,12,7.33Z'/%3E%3C/svg%3E");
    }

    div.notification.alert-danger:before, div.notification.alert-error:before, div.validation-summary.alert-danger:before, div.validation-summary.alert-error:before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M11,9.41v4.52a1,1,0,0,0,2,0V9.41a1,1,0,0,0-2,0Z'/%3E%3Cpath fill='%23fff' d='M12,16.15a1.29,1.29,0,1,0,1.29,1.29A1.29,1.29,0,0,0,12,16.15Z'/%3E%3Cpath fill='%23fff' d='M22.87,20.14l-10-17.32a1,1,0,0,0-1.74,0l-10,17.32a1,1,0,0,0,0,1,1,1,0,0,0,.87.5H22a1,1,0,0,0,.87-.5A1,1,0,0,0,22.87,20.14Zm-19.14-.5L12,5.32l8.27,14.32Z'/%3E%3C/svg%3E");
    }

    div.notification.alert-success:before, div.validation-summary.alert-success:before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm4.393 7.5l-5.643 5.784-2.644-2.506-1.856 1.858 4.5 4.364 7.5-7.643-1.857-1.857z'/%3E%3C/svg%3E");
    }

    div.notification:before, div.validation-summary:before {
        position: absolute;
        top: 25px;
        left: -36px;
        width: 24px;
        height: 24px;
        background-color: transparent;
        background-repeat: no-repeat;
        background-position: center center;
        content: '';
    }

.bootstrap-datetimepicker-widget {
    z-index: 1002
}

.navbar-static-top {
    margin: 0 0 0.5em 0;
}

    .navbar-static-top ul.nav > li.dropdown.open > a,
    .navbar-static-top ul.nav > li.dropdown.open > a:focus,
    .navbar-static-top ul.nav > li > a:hover,
    .navbar-static-top ul.nav > li > a:focus {
        border-top-color: #0070c4 !important;
        border-left-style: none;
        border-top-style: solid !important;
        border-bottom-style: none;
        border-right-style: none;
        border-width: 4px !important;
        padding-top: 11px !important;
        padding-bottom: 4px;
        color: #000;
        background: 0 0;
    }


/* Smart Wizard Alterations */
.sw-theme-arrows.static {
    border: none;
    margin: 20px 0 10px
}

    .sw-theme-arrows.static h3 {
        margin-bottom: 15px;
    }

    .sw-theme-arrows.static > .nav {
        border: none
    }

        .sw-theme-arrows.static > .nav .nav-item {
            margin-bottom: 5px
        }

            .sw-theme-arrows.static > .nav .nav-item .nav-link {
                display: flex;
                padding: inherit;
                margin: 0
            }

                .sw-theme-arrows.static > .nav .nav-item .nav-link .content {
                    vertical-align: top;
                    font-style: italic;
                    text-align: left;
                    font-size: .8em;
                    line-height: 1.25em;
                    padding: 0 15px;
                }

                    .sw-theme-arrows.static > .nav .nav-item .nav-link .content strong {
                        display: block;
                    }

                    .sw-theme-arrows.static > .nav .nav-item .nav-link .content span {
                        display: block;
                        margin-top: .25em;
                    }

        .sw-theme-arrows.static > .nav .nav-link::before,
        .sw-theme-arrows.static > .nav .nav-link::after {
            border: none;
        }

        .sw-theme-arrows.static > .nav .nav-item .nav-link .dot {
            height: 75px;
            width: 75px;
            min-width: 75px;
            background-color: #feba35;
            color: #fff;
            border-radius: 50%;
            padding: 20px 0;
            font-size: 2em;
            font-weight: bold;
        }



.sw-theme-arrows {
    border: none;
    margin-bottom: 10px;
}

    .sw-theme-arrows > .nav {
        border: none
    }

        .sw-theme-arrows > .nav .nav-link::before {
            border-left: 30px solid #fff;
            margin-left: 2px;
        }

        .sw-theme-arrows > .nav .nav-link.done {
            background: #d6e9c6;
            color: #333;
        }
            /*d6e9c6*/
            .sw-theme-arrows > .nav .nav-link.done::after {
                border-left-color: #d6e9c6;
            }

        .sw-theme-arrows > .nav .nav-link.active {
            background-color: #0070c4;
        }

            .sw-theme-arrows > .nav .nav-link.active::after {
                border-left-color: #0070c4;
            }

        .sw-theme-arrows > .nav .nav-link.inactive {
            background: #f1f1f1;
        }

            .sw-theme-arrows > .nav .nav-link.inactive::before {
                border-left: 30px solid #f1f1f1;
            }

            .sw-theme-arrows > .nav .nav-link.inactive::after {
                border-left: 30px solid #f1f1f1;
            }

        .sw-theme-arrows > .nav .nav-item:last-child .nav-link.inactive::before {
            border-left: none;
        }


/* Left Navigation Progress */
ol.progress {
    box-shadow: none;
    background-color: #f1f1f1;
}

    ol.progress.left {
        margin: 0
    }

        ol.progress.left .list-group-item {
            border-width: 0 0 0 5px;
            border-style: solid;
            background-color: transparent;
            color: #333;
            padding: 15px
        }

            ol.progress.left .list-group-item.active {
                border-color: #0070c4
            }

        ol.progress.left .list-group-item-success span {
            display: none
        }

        ol.progress.left .list-group-item-success {
            background-color: transparent;
            border-color: #d6e9c6;
        }

        ol.progress.left .list-group-item.incomplete {
            border-color: #ccc;
        }

/* btn ***********************************************************/
button.btn, input[type="button"].btn, input[type="submit"].btn {
    box-sizing: border-box;
    border: 2px solid #0070c4;
    border-radius: 4px;
    background: #0070c4;
    cursor: pointer;
    color: #fff;
}

    button.btn:hover, input[type="button"].btn:hover, input[type="submit"].btn:hover {
        border-color: #004f84;
        background: #004f84;
    }

    button.btn:focus, input[type="button"].btn:focus, input[type="submit"].btn:focus {
        border-color: #004f84;
        outline: 3px solid #feba35;
        outline-offset: 0;
        background: #004f84;
    }

a.btn {
    box-sizing: border-box;
    min-width: 70px;
    border: 2px solid #0070c4;
    border-radius: 4px;
    background: #0070c4;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

    a.btn::after {
        margin-left: 8px;
        /*content: '\2191';*/ /* up arrow*/
    }

    a.btn:hover {
        border-color: #004f84;
        background: #004f84;
        color: #fff;
    }

    a.btn:focus, a.btn:active {
        border-color: #004f84;
        outline: 3px solid #feba35;
        outline-offset: 0;
        background: #004f84;
    }

.input-group-btn > .btn {
    margin: 0px;
    padding: 5px 0;
    min-width: 3em;
    border-left-color: #ccc;
}

/* variants ***/
button.btn-secondary, input[type="button"].btn-secondary, a.btn-secondary {
    border: 2px solid #0070c4;
    background: #fff;
    color: #0070c4;
}

    button.btn-secondary:hover, input[type="button"].btn-secondary:hover, a.btn-secondary:hover {
        border-color: #004f84;
        background: #f1f1f1;
        color: #004f84;
    }

    button.btn-secondary:focus, input[type="button"].btn-secondary:focus, a.btn-secondary:focus {
        border-color: #004f84;
        background: #f1f1f1;
        color: #004f84;
    }

button.btn-light, input[type="button"].btn-light, a.btn-light {
    border-color: #f1f1f1;
    color: #0070c4;
}

    button.btn-light:hover, input[type="button"].btn-light:hover, a.btn-light:hover {
        color: #004f84;
    }

    button.btn-light:focus, input[type="button"].btn-light:focus, a, a.btn-light:focus {
        border-color: #004f84;
        color: #004f84;
    }


.input-group {
    width: 100%;
}

select {
    padding-top: 0;
}

div.goa-callout {
    margin-top: 12px;
    margin-bottom: 12px;
}

::-webkit-input-placeholder, .input-group > input::-webkit-input-placeholder { /* Edge */
    color: #ccc;
}

:-ms-input-placeholder, .input-group > input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ccc;
}

::placeholder, .input-group > input::placeholder {
    color: #ccc;
}

.navbar-header .xrm-attribute-value {
    min-width: 600px;
}

.navbar-static-top.navbar-inverse, footer .footer-top {
    background-color: #fff;
}

.navbar-inverse .navbar-nav > li > a {
    color: #666;
}

#gethelp {display: none;}


.form-custom-actions .col-sm-6{
    float: right;
}

.form-custom-actions .col-sm-6 .form-action-container-left{
    float:none;
    text-align: right;
}

.crmEntityFormView .actions {
    text-align: right;
}

@media screen and (min-width: 768px) {
    .form-action-container-left {
        float: none;
    }
}

.form-custom-actions .btn {
    margin-right: 30px;
}

@media (max-width: 400px) {
    h1 {
            font-size: 1.6em;
        }

        h2 {
            font-size: 1.5em;
        }

        h3 {
            font-size: 1.4em;
        }

        h4, h5, h6 {
            font-size: 0.8em;
        }

        legend {
            font-size: 1em;
        }

        .navbar-header .xrm-attribute-value {
            min-width: 200px;
            float: left;
        }

        .navbar-header .navbar-toggle {
            margin: 0px;
        }

        .container > .navbar-header {
            margin: 10px 0 0 0;
        }

        .navbar-toggle {
            border-color: black;
        }

        .icon-bar {
            background-color: black;
        }

        .progress > li {
            width: 100%;
        }

        .ab-footer .goa-list {
            display: none;
        }

        .ab-footer .ab-copyright {
            text-align: center;
        }
    }
