/*------------------------------------------------------------

    GLOBAL

------------------------------------------------------------*/

* { outline: 0; }

/* Scrollbars 
--------------------------------------*/

*::-webkit-scrollbar {
    width: 5px;
}
*::-webkit-scrollbar-thumb {
    background-color: #79b833;
}
*::-webkit-scrollbar-track {
    background-color: #333;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
html {
    height: 100%;
    font-size: 15px;
    overflow-x: hidden;
}
body {
    height: 100%;
    background: #f0f0f0;
    color: #666;
    font-size: 1rem;
    font-family: 'Open Sans';
    line-height: 1.75;
    opacity: 0;
    -webkit-animation: fadeIn ease 1;
    -moz-animation: fadeIn ease 1;
    -ms-animation: fadeIn ease 1;
    -o-animation: fadeIn ease 1;
    animation: fadeIn ease 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
    -ms-animation-duration: .5s;
    -o-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: .25s;
    -moz-animation-delay: .25s;
    -ms-animation-delay: .25s;
    -o-animation-delay: .25s;
    animation-delay: .25s;
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.mob-show {
    display: none !important;
}
.mob-hide {
    display: block !important;

}
ul.list-unstyled {
    overflow: hidden;
}

body .form-alert {
    position: absolute;
    top: 20%;
    z-index: 1000;
    left: 50%;
    color: #666;
    font-sizE: 1.25rem;
    padding: 50px;
    width: 600px;
    margin-left: -300px;
    border-radius: 0;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 0 1000000px rgba(0, 47, 99, 0.75);
}
body .form-alert p.lead {
    margin: 0;
}

body .form-alert i.okay,
body .form-alert i.error {
    font-size: 50px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 100px;
    margin-bottom: 20px;
}
body .form-alert i.okay {
    color: #fff;
    background: #79b833;
}
body .form-alert i.error {
    color: #fff;
    background: #ea2929;
}
body .form-alert .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}


/* Headings 
--------------------------------------*/

body h1 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: -1px;
}
body h2,
body.print-mail h2,
body.print-mail h3 {
    color: #79b833;
}
body.signs-wraps h2,
body.signs-wraps h3 {
    color: #19A48C;
}
body.web h2,
body.web h3 {
    color: #005b89;
}
body.marketing h2,
body.marketing h3 {
    color: #833FA8;
}
body h2 {
    margin: 0 0 15px;
    font-size: 2.25rem;
    font-weight: 300;
    letter-spacing: -1px;
}
body h2 small {
    display: block;
    margin-top: 4px;
    font-size: 1.6rem;
    font-weight: 100;
}
body h3 {
    font-size: 1.65rem;
    color: #555;
}
body h3 small {
    display: block;
    margin-top: 4px;
    font-size: 1.2rem;
    font-weight: 100;
}
body hr {
    border-top: 1px solid #d5d5d5;
}
body .social-media.fa-stack {
    opacity: 1;
    transition: all .25s ease;
}
body .social-media.fa-stack:hover {
    opacity: .8;
}

/* Modal Windows
--------------------------------------*/
body .modal-body .container, 
body .modal-body .form-group {
    width: 100% !important;
}
body .modal-content {
    border-radius: 0;
}
body .modal-title {
    padding: 0 30px;
    color: #fff;
    font-size: 30px;
    font-family: 'Lato';
    font-weight: 300;
    line-height: 60px;
    background: #79b833;
}
body .modal-body {
    padding: 20px 30px;
}
body .modal-footer {
    padding: 10px 30px;
}

/* Forms
--------------------------------------*/

body .form-group label {
    margin: 0;
}
body form .honeypot {
    position:absolute;
    top: -99999px;
    visibility: hidden;
}
body form.form-inline label {
    display: inline-block;
    width: 35%;
    vertical-align: top;
    line-height: 40px;
}
body form.form-inline .form-control,
body form.form-inline .input-group {
    width: 64%;
    display: inline-block;
}
body form.form-inline .input-group .form-control {
    width: 90%;
}
body form.form-inline .input-group .input-group-addon {
    width: 10%;
    float: left;
    line-height: 26px;
}
body form td.show_del {
    display: inline-block;
    position: absolute;
    border: 0 !important;
    right: -20px;
    padding: 14px 10px !important;
}
body form label.error {
    display: none !important;
}
body form .form-control.error {
    border-color: #ff0000;
    box-shadow: inset 0 1px 1px rgba(255,0,0,.075),0 0 8px rgba(255, 0, 0, 0.6);
}
body form .required{
    color: #ff0000;
    font-weight: normal;
}


/* Tables
--------------------------------------*/
body.back-end .table {
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}
body .table tr.clickable-row {
    cursor: pointer;   
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
body .table tr.clickable-row:hover {
    cursor: pointer;   
    background-color: #e9ffd0;
    color: #6b963b;

}
body .table-striped > tbody > tr:nth-of-type(odd) {
    background: #ffffff;
}
body .table-striped > tbody > tr:nth-of-type(even) {
    background: #f8f8f8;
}
body .table > tbody > tr > th,
body .table > tbody > tr > td {
    padding: 10px;
    vertical-align: middle !important;
}
body .table th:first-of-type,
body .table td:first-of-type {
    padding-left: 20px;
}
body .table th {
    color: #fff;
    background: #3c5d83;
    text-transform: uppercase;
    font-size: .7rem;
    font-weight: normal;
    letter-spacing: 2px;
}
body .actions {
    text-align: right;
    padding: 0 !important;
    width: 150px;
}
body .contacts {
    text-align: center;
    padding: 0 !important;
}
body .action {
    display: inline-block;
    margin: 0 0 0 1px;
    width: auto;
    color: #aaa;
    background: transparent;
    padding: 0 14px;
    font-size: 14px;
    text-decoration: none;
    line-height: 49px;
    box-shadow: -1px 0 #dfdfdf, 1px 0 #dfdfdf;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
body .action:hover {
    display: inline-block;
    color: #666;
    background: rgba(0, 0, 0, .07);
}
body .action.del {
    top: 0;
    width: 46px;
    float: right;
    right: -47px;
    color: #fff;
    background: #fb4949;
}
body .action.disabled {
    pointer-events: none;
    cursor: default;
}
body .action.disabled i {
    opacity: .25;
}
body .table-title {
    position: relative;
    padding: 10px 20px 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #002F63;
}
body .table-title i {
    color: #40c79f;
}

.form-validation {
    padding: 0.5rem 1rem;
    margin-bottom: 15px;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
}

/* Alerts
--------------------------------------*/

body .alert {
    position: absolute;
    top: 140px;
    z-index: 1;
    margin: 0;
    padding: 10px 15px;
    width: 100%;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    border-radius: 0;
    -webkit-animation-duration: 5s;
    -webkit-animation-delay: 0s;
    -webkit-animation-fill-mode: forwards;
    animation-duration: 5s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}
body .alert a,
body .alert a:hover,
body .alert a:active,
body .alert a:focus {
    color:#fff;
    font-weight: bold;
    text-decoration: underline;
}
body .alert-success {
    color: #fff;
    background-color: #55A751;
    border: 0;
}
body .alert-danger {
    color: #fff;
    background-color: #d9534f;
    border: 0;
}

/* Buttons 
--------------------------------------*/

body .btn {
    padding: 10px 20px;
    color: #fff;
    font-size: 14px;
    line-height: 25px;
    text-transform: uppercase;
    border: 0;
    border-radius: 0;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .25), inset 0 1000px rgba(255, 255, 255, 0);
    transition: all .25s ease;
}
body .btn:hover,
body .btn:active,
body .btn:focus {
    color: #fff;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .25), inset 0 1000px rgba(255, 255, 255, .2);
}
body .btn-primary {
    padding: 10px 20px 12px;
}
body .btn-lg {
    font-size: 18px;
    font-weight: 600;
    line-height: 35px;
    padding: 15px 30px;
}
body .btn-primary,
body.print-mail .btn-primary {
    color: #fff !important;
    background: #79b833 !important;
}
body.signs-wraps .btn-primary {
    color: #fff !important;
    background: #19A48C !important;
}
body.web .btn-primary {
    color: #fff !important;
    background: #005b89 !important;
}
body.marketing .btn-primary {
    color: #fff !important;
    background: #833FA8 !important;
}
body .btn-dark {
    color: #fff !important;
    background: #151515 !important;
}
body .btn-outline {
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    box-shadow: none;
    opacity: .7;
}
body .btn-outline:hover,
body .btn-outline:active,
body .btn-outline:focus {
    box-shadow: none !important;
    opacity: 1;
}
body .btn-txt {
    font-weight: 600;
    text-transform: uppercase;
    font-weight: bold;
    padding: 0;
    box-shadow: none;
    text-decoration: none !important;
}
body .btn-txt:hover,
body .btn-txt:focus,
body .btn-txt:active {
    font-weight: 600;
    text-transform: uppercase;
    font-weight: bold;
    padding: 0;
    box-shadow: none;
    text-decoration: underline !important;
}
body .btn i {
    color: #fff;
}

/*---------------------------------------------------------------

	SECONDARY HEADER

---------------------------------------------------------------*/

#header-secondary {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 40px;
    background: #002F63;
}
#header-secondary .social-media {
    margin: 4px 0;
    font-size: 16px;
}

/* Menu 
--------------------------------------*/

#header-secondary #menu {
    margin: 0;
    text-align: right;
    list-style: none;
    border: 0;
    min-height: 40px;
    background: transparent;
}
#header-secondary #menu li {
    display: block;
}
#header-secondary #menu li a {
    display: inline-block;
    margin-left: 0;
    padding: 0 12px 0 10px;
    color: rgba(255, 255, 255, .85);
    font-size: 12px;
    font-weight: 600;
    line-height: 40px;
    text-decoration: none;
    text-transform: uppercase;
}
#header-secondary #menu li a:hover {
    color: #fff;
    text-decoration: none;
}
#header-secondary #menu li a i {
    padding-right: 3px;
    color: #79b833;
    font-size: 15px;
}
#header-secondary .btn {
    margin: 9px 0;
}
#header-secondary .dropdown {
    display: inline-block;
    vertical-align: middle;
}
#header-secondary .dropdown button,
#header-secondary #menu a {
    display: inline-block;
    margin-left: 0;
    padding: 0 10px;
    color: rgba(255, 255, 255, .85);
    font-size: 12px;
    font-weight: 600;
    line-height: 40px;
    text-decoration: none;
    text-transform: uppercase;
    background: transparent;
    border: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
#header-secondary #menu a.bleft {
    border-left: 1px solid rgba(255,255,255,.1);
}
#header-secondary .dropdown button:hover,
#header-secondary #menu a:hover,
#header-secondary #menu a:active,
#header-secondary #menu a:focus {
    background: rgba(255,255,255,.1);
}
#header-secondary .dropdown button #user-photo {
    display: inline-block;
    margin: 2px 0;
    width: 36px;
    height: 36px;
    background-color: #1b242e;
    background-size: cover;
    background-position: 50% 50%;
    vertical-align: top;
}
#header-secondary .dropdown button .current-name {
    line-height: 1;
}
#header-secondary .dropdown button i {
    margin-left: 5px;
    text-align: center;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
#header-secondary .dropdown button:hover,
#header-secondary .dropdown button:active,
#header-secondary .dropdown button:focus,
#header-secondary .dropdown button:hover i,
#header-secondary .dropdown button:active i,
#header-secondary .dropdown button:focus i {
    color: #fff;
}
#header-secondary .dropdown button[aria-expanded="true"] i {
    transform: rotate(180deg);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
#header-secondary .dropdown .dropdown-menu {
    position: absolute;
    left: auto;
    top: 40px;
    right: 0;
    margin: 0;
    padding: 0;
    width: 230px;
    min-width: 60px;
    background: #012f63;
    border: 0;
    border-radius: 0;
}
#header-secondary .dropdown .dropdown-menu > li > a {
    padding: 0 15px;
    width: 100%;
    border: 0;
    float: none;
    line-height: 40px;
    border-top: 1px solid rgba(255,255,255,.1);
}


/*------------------------------------------------------------

    PRIMARY HEADER

------------------------------------------------------------*/

#header-primary {
    position: fixed;
    top: 40px;
    z-index: 999;
    padding: 10px 0;
    width: 100%;
    height: 80px;
    background: #fff;
    border-bottom: 1px solid rgba(255,255,255,.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
}
#header-primary .navbar .dropdown-menu {
	position: absolute;
}
#header-primary .navbar .dropdown {
	position: static;
}
#header-primary a.navbar-brand {
    padding: 5px 0;
    height: 60px;
}
#header-primary a.navbar-brand img {
    height: 100%;
}
#header-primary .navbar-default {
    margin: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}
#header-primary .navbar-collapse {
    padding: 0;
}
#header-primary .navbar-nav > li > a {
    padding: 0 15px;
    font-family: "Oswald";
    font-size: 22px;
    font-weight: 400;
    line-height: 60px;
    text-transform: uppercase;
}
#header-primary .navbar-nav > li > a,
#header-primary .navbar-nav > li > a i {
    color: #999;
    transition: all .25s ease;
}
#header-primary .navbar-nav > li > a:hover,
#header-primary .navbar-nav > li > a:hover i {
    color: #79B833;
}
#header-primary .dropdown-menu span {
    display: block;
    margin-bottom: 3px;
    padding: 0 10px;
    color: #fff;
    font-size: 24px;
    font-weight: 100;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}
#header-primary .dropdown-menu a,
#header-primary .dropdown-menu p {
    display: block;
    margin: 0;
    padding: 0 10px;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    text-decoration: none;
    transition: all .25s ease;
}
#header-primary .dropdown-menu p {
    color: rgba(255, 255, 255, .6);
}
#header-primary .dropdown-menu a:hover {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, .2);
}
#header-primary .dropdown .dropdown-menu {
    padding: 20px;
    /*width: 1170px;*/
    color: #fff;
    border: 0;
    border-radius: 0px !important;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
	left: 0;
	right: 0;
	width: 100%;
}
#header-primary .dropdown.open .dropdown-toggle {
    color: #fff !important;
    transition: none;
}
#header-primary .dropdown.open .dropdown-toggle i {
    color: #002f63 !important;
    transition: none;
}
#header-primary .print .dropdown-toggle:hover,
.print-mail #navigation li.dropdown.print .dropdown-toggle {
    color: #79b833;
}
#header-primary .signs .dropdown-toggle:hover,
.signs-wraps #navigation li.dropdown.signs .dropdown-toggle {
    color: #19A48C;
}
#header-primary .web .dropdown-toggle:hover,
.web #navigation li.dropdown.web .dropdown-toggle {
    color: #005b89;
}
#header-primary .marketing .dropdown-toggle:hover,
.marketing #navigation li.dropdown.marketing .dropdown-toggle {
    color: #833FA8;
}
#header-primary .dropdown.search .dropdown-toggle:hover i {
    color: #333;
}
#header-primary .dropdown.print .dropdown-menu {
    /*left: -603px;*/
}
#header-primary .dropdown.signs .dropdown-menu {
    /*left: -749px;*/
}
#header-primary .dropdown.web .dropdown-menu {
    /*left: -920px;*/
}
#header-primary .dropdown.marketing .dropdown-menu {
    /*left: -988px;*/
}
#header-primary .dropdown.print .dropdown-menu,
#header-primary .dropdown.print.open .dropdown-toggle {
    background: #79b833;
}
#header-primary .dropdown.signs .dropdown-menu,
#header-primary .dropdown.signs.open .dropdown-toggle {
    background: #19A48C;
}
#header-primary .dropdown.web .dropdown-menu,
#header-primary .dropdown.web.open .dropdown-toggle {
    background: #005b89;
}
#header-primary .dropdown.marketing .dropdown-menu,
#header-primary .dropdown.marketing.open .dropdown-toggle {
    background: #833FA8;
}
#header-primary .dropdown.search .dropdown-menu,
#header-primary .dropdown.search.open .dropdown-toggle {
    background: #f0f0f0;
}

/* Search Box 
--------------------------------------*/

#header-primary .dropdown.search i {
    color: #999;
    position: relative;
    top: -2px;
}
#header-primary .gsc-control-cse {
    font-family: inherit;
    border-color: transparent;
    background-color: transparent;
    padding: 0;
    height: 40px;
}
#header-primary td.gsc-input * {
    margin: 0 !important;
    height: 40px;
    line-height: 40px;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
#header-primary input[type=text] {
    padding: 0 !important;
    width: 100% !important;
    color: #333 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 40px !important;
    background: transparent !important;
    border-bottom: 1px solid #aaa !important;
    outline: 0 !important;
}
#header-primary .gscb_a {
    color: #cc0000 !important;
}
#header-primary input.gsc-search-button.gsc-search-button-v2 {
    background-color: #002E62;
    background-image: none;
    filter: none;
    border-radius: 0;
    width: 32px;
    height: 32px;
    padding: 8px;
    border: 0;
}
#header-primary input[type=submit]:hover {
    background: #326794;
}
body .gsc-results-wrapper-overlay.gsc-results-wrapper-visible {
    width: 800px;
    left: 50%;
    margin-left: -400px;
}
body .gsc-modal-background-image {
    background: #002F63;
}

/*------------------------------------------------------------

    PAGE TEMPLATE

------------------------------------------------------------*/

/* SPECIALS */

#specials_pane {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 1001;
    height: 100%;
    background: rgba(0,0,0,.75);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

#specials_pane .inner {
    position: relative;
    max-width: 90%;
}

#specials_pane .fa-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    color: #fff;
    line-height: 30px;
    text-align: center;
    background: rgba(0,0,0,.2);
    cursor: pointer;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
#specials_pane i.fa-close:hover {
    background: #002F63;
}

#specials_pane img {
    width: 100%;
}

#specials_pane .btn-primary {
    position: absolute;
    bottom: 3%;
    left: 50%;
    margin-left: -84px;
    background: #002F63 !important;
}

/* PAGE HEADER */

#page-header {
    overflow: hidden;
    height: 400px;
    margin-top: 120px;
    background-size: cover !important;
    background-position: top center !important;
    background-attachment: fixed !important;
}
body.index #page-header,
body.print-mail #page-header {
    background-color: #79b833;
    background-image: url(../img/backgrounds/swoosh_green.png);
    background-position: 50% 50%;
}
body.signs-wraps #page-header,
body.signs_banners_gallery #page-header,
body.wraps_lettering_gallery #page-header {
    background-color: #19A48C;
    background-image: url(../img/backgrounds/swoosh_teal.png);
    background-position: 50% 50%;
}
body.web #page-header,
body.website_gallery #page-header {
    background-color: #005b89;
    background-image: url(../img/backgrounds/swoosh_blue.png);
    background-position: 50% 50%;
}
body.marketing #page-header,
body.promotional_gallery #page-header {
    background-color: #833FA8;
    background-image: url(../img/backgrounds/swoosh_purple.png);
    background-position: 50% 50%;
}
body.index #page-header,
body.connecticut #page-header,
body.print_mail_gallery #page-header {
    background-color: #79b833;
    background-image: url(../img/backgrounds/swoosh_green.png);
    background-position: 50% 50%;
}


body.promotional_gallery #page-header {
    background-color: #833FA8;
    background-image: url(../img/backgrounds/swoosh_purple.png);
    background-position: 50% 50%;
}
body.website_gallery #page-header {
    background-color: #005b89;
    background-image: url(../img/backgrounds/swoosh_blue.png);
    background-position: 50% 50%;
}
body.signs_banners_gallery #page-header,
body.wraps_lettering_gallery #page-header {
    background-color: #19A48C;
    background-image: url(../img/backgrounds/swoosh_teal.png);
    background-position: 50% 50%;
}
#page-header .container {
    height: 100%;
}
#page-header .row {
    display: flex;
    height: 100%;
}
#page-header #breadcrumbs {
    color: #151515;   
}
#page-header #breadcrumbs a {
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,.7);
    transition: all .25s ease;
}
#page-header #breadcrumbs a:hover,
#page-header #breadcrumbs a:active,
#page-header #breadcrumbs a:focus {
    color: #fff;
    text-decoration: none;
}
#page-header #page-text {
    margin: auto 0;
    padding-right: 40px;
}
#page-header .page-desc {
    DISPLAY: NONE;
}
#page-header #page-img {
    margin: auto 0 0 auto;
    padding: 0;
}
#page-header h1 {
    margin-left: -3px;
    font-weight: 300;
}
#page-header p {
    font-size: 18px;
    color: #fff;
}
#page-header #share-buttons {
    display: inline-block !important;
    margin-top: 20px;
}
#page-header #share-buttons a {
    border: 1px solid #fff;
    border-radius: 100px;
    width: 30px;
    height: 34px;
    text-align: center;
    box-sizing: content-box;
    font-size: 20px;
    margin-right: 6px;
    transition: all .25s ease;
}
#page-header #share-buttons a:hover {
    background: #000;
    border: 1px solid #000;
}
#page-header #share-buttons a i {
    line-height: 34px;
    color: #fff;
}

/* CALL TO ACTION */

#call-to-action {
    padding: 15px 0;
    background: #151515;
}
#call-to-action p {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 65px;
    vertical-align: middle;
}

/* PAGE BODY */

.content-block {
    padding: 60px 0;
}

/*------------------------------------------------------------

    LOGIN PAGE

------------------------------------------------------------*/
body.login .alert {
    font-size: 1rem;
    position: absolute;
    top: -60px;
    left: 0;
}
body.login .row {
    display: flex;
    align-content: center;
    height: 100%;
    background-image: url('../img/backgrounds/login.jpg'); 
    background-size: cover;
    box-shadow: inset 0 10000px rgba(0, 47, 99, 0.75);
}
body.login .row .col-sm-12 {
    margin: auto;
    width: 450px;
    background: #fff;
    padding: 40px;
}
body.login .row .col-sm-12 a.logo {
    display: block;
    margin: auto;
    width: 175px;
}
body.login .row .col-sm-12 img {
    width: 100%;
}
body.login .row .col-sm-12 fieldset {
    margin: 25px 0 10px;
}
body.login .row .col-sm-12 .forgot-link,
body.login .row .col-sm-12 .login-link {
    display: inline-block;
    margin: auto;
    font-size: .85rem;
}
body.login .row .col-sm-12 .reset-message {
    margin: 30px 0 10px;
    text-align: center;
}

/*------------------------------------------------------------

    404 PAGE

------------------------------------------------------------*/
body.error404 {
    color: #fff;
    background: #002f63;
    display: flex;
}
body.error404 .container {
    margin: auto;
    color: #fff;
    background: #002f63;
}
body.error404 .code {
    font-family: 'Arial';
    font-size: 250px;
    line-height: 1;
    font-weight: 600;
}
body.error404 .explanation {
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 30px;
}

/*------------------------------------------------------------

    JUMBOTRON

------------------------------------------------------------*/

#jumbotron {
    padding-top: 120px;
    height: 85%;
    color: #fff;
    background-color:#002F63;
}
#jumbotron .content {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}
#jumbotron h1 {
    margin: 0;
    font-size: 3.6em;
    font-weight: 300;
}
#jumbotron p.lead {
    margin: 20px auto;
    max-width: 850px;
    color: #fff;
    font-size: 1.6rem;
    line-height: 38px;
    font-family: 'Open Sans';
    font-weight: 100;
}
#jumbotron .btn {
    margin: 0 10px;
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
}
#jumbotron .content-inner {
    width: 850px;   
}
#jumbotron .carousel-inner,
#jumbotron .item {
    height: 100%;
}
#jumbotron .item {
    background-position: 50%;
    background-size: cover;
    box-shadow: inset 0 10000px 0 rgba(0, 47, 99, 0.9);
}
.carousel-fade .carousel-inner .item {
    transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}
.carousel-fade .carousel-inner .active {
    opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    transform: translate3d(0, 0, 0);
}

/*------------------------------------------------------------

    VIDEO INTRO

------------------------------------------------------------*/

#vidbox {
    position: relative;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: 85% !important;
    overflow: hidden;
    background: #000;
}
#vidbox .title-container {
    z-index: 110;
    position: absolute;
    top: 40%;
    width: 100%;
    text-align: center;
    color: #fff;
}
#vidbox .title-container h1 {
    margin: 0;
    font-size: 3.6em;
    font-weight: 300;
}
#vidbox .title-container p.lead {
    margin: 20px auto;
    max-width: 850px;
    color: #fff;
    font-size: 1.6rem;
    line-height: 38px;
    font-family: 'Open Sans';
    font-weight: 100;
}
#vidbox .title-container .btn {
    margin: 0 10px;
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
}
#vidbox .title-container a.learn-more {
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    transition: all .25s ease;
}
#vidbox .title-container a.learn-more:hover {
    color: #fff;
    text-decoration: none;
}
#vidbox .filter {
    z-index: 100;
    position: absolute;
    background: rgba(0, 47, 99, 0.75);
    width: 100%;
    height: 100%;
}
#vidbox video {
    position: absolute;
    z-index: 0;
    bottom: 0;
    margin: 0 !important;
    height: auto !important;
}
.no-video .video-container video,
.touch .video-container video {
    display: none;
}
.no-video .video-container .poster,
.touch .video-container .poster {
    display: block !important;
}

/*------------------------------------------------------------

    HOMEPAGE

------------------------------------------------------------*/

#categories {
    margin-top: -136px;
    padding-top: 136px;
    background: #002F63;
}
#categories .col-md-3,
#categories .col-md-4 {
    position: relative;
    padding: 40px;
    min-height: 375px;
    box-shadow: inset 10px 0 30px rgba(0,0,0,.2);
}
#categories .col-sm-6 {
    position: relative;
    padding: 40px;
    min-height: 375px;
    box-shadow: inset 10px 0 30px rgba(0,0,0,.2);
}
#categories .col-lg-3,
#categories .col-sm-6 {
    position: relative;
    padding: 40px;
    min-height: 375px;
    box-shadow: inset 10px 0 30px rgba(0,0,0,.2);
}

/*
#categories .col-md-3 {
    position: relative;
    padding: 40px;
    min-height: 375px;
    box-shadow: inset 10px 0 30px rgba(0,0,0,.2);
}
*/
#categories #print-block {
    background: 
        url('../../pages/home/img/print-image.png') bottom right no-repeat, 
        url('../../pages/home/img/print-bg.png') bottom left no-repeat, 
        url('../../pages/home/img/print-gradient.png') #79b833 bottom right no-repeat !important;
}
#categories #signs-block {
    background: 
        url('../../pages/home/img/signs-image.png') bottom right no-repeat, 
        url('../../pages/home/img/signs-bg.png') bottom left no-repeat, 
        url('../../pages/home/img/signs-gradient.png') #19A48C bottom right no-repeat !important;
}
#categories #web-block {
    background: 
        url('../../pages/home/img/web-image.png') bottom right no-repeat, 
        url('../../pages/home/img/web-bg.png') bottom left no-repeat, 
        url('../../pages/home/img/web-gradient.png') #002f63 bottom right no-repeat !important;
}
#categories #marketing-block {
    background: 
        url('../../pages/home/img/marketing-image.png') bottom right no-repeat, 
        url('../../pages/home/img/marketing-bg.png') top center no-repeat, 
        url('../../pages/home/img/marketing-gradient.png') #401358 bottom right no-repeat !important;
}
/*
#categories .col-md-3 * {
    color: #fff;
}
#categories .col-md-3 p {
    font-size: 1.3rem;
}
*/
#categories .col-sm-6 *,
#categories .col-md-3 *,
#categories .col-lg-3 *,
#categories .col-md-4 * {
    color: #fff;
}
#categories .col-sm-6 p,
#categories .col-md-3 p,
#categories .col-lg-3 p,
#categories .col-md-4 p {
    font-size: 1.3rem;
	font-weight: 300;
}
#categories .col-sm-6 .btn,
#categories .col-md-3 .btn,
#categories .col-lg-3 .btn,
#categories .col-md-4 .btn {
    position: absolute;
    bottom: 20px;
    /*position: relative;
    bottom: 0;*/
}

#categories .col-md-3 .btn {
    /*position: absolute;
    bottom: 40px;*/
    position: relative;
    bottom: 0;
}
#workflow {
    position: relative;
    padding: 6% 0;
    background: #fff;
    z-index: 1;
}
#workflow a.btn {
    margin: 69px 0;
}
#workflow h2 {
    font-size: 3rem;
    color: #00234A;
}
#workflow ul {
    padding: 0;
    list-style: none;
}
#workflow ul li:before {
    content: '\f061';
    font-family: fontawesome;
    padding-right: 10px;
    color: #79b833;
}
#features {
    padding: 6% 0;
    background: #f5f5f5;
    border-top: 1px solid #d5d5d5;
}
#features h2 {
    color: #00234A;
}
#features .col-md-6:before {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #79B833;
    font-family: fontawesome;
    font-size: 50px;
    line-height: 100%;
}
#features .feature1,
#features .feature1:before {
    content: '\f015';
    padding-right: 40px;
}
#features .feature2,
#features .feature2:before {
    content: '\f274';
    padding-left: 40px;
}
#features .feature3,
#features .feature3:before {
    content: '\f1fc';
    padding-right: 40px;
}
#features .feature4,
#features .feature4:before {
    content: '\f1cd';
    padding-left: 40px;
}


/*------------------------------------------------------------

    TO TOP BUTTON

------------------------------------------------------------*/

#to-top {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 110;
    opacity: .3;
    background: #787878;
    width: 29px;
    height: 29px;
    text-align: center;
    border-radius: 1000px;
    transition: all .25s ease;
}
#to-top:hover {
    background: #79B833;
    opacity: 1;
}
#to-top i {
    color: #fff;
    line-height: 27px;
}
#to-top:hover i {
    opacity: 1;
}

/*------------------------------------------------------------

    FOOTER

------------------------------------------------------------*/

#footer {
    padding: 40px 0;
    background: #012f63;
}
#footer h4,
#footer li,
#footer strong,
#footer p {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
}
#footer a,
#copyright a {
    color: #fff;
}
#footer a:hover,
#footer a:active,
#footer a:focus,
#copyright a:hover,
#copyright a:active,
#copyright a:focus {
    color: #fff;
    text-decoration: underline;
}
#footer h4 {
    margin-bottom: 10px;
    padding-bottom: 5px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
}
#footer img {
    display: block;
    margin-bottom: 20px;
    max-width: 320px;
}
#footer ul {
    padding: 0;
    list-style: none;
}
#footer .office-hours .today{
    color: #fff;
    background: rgba(255,255,255,.05);
}
#footer .office-hours strong{
    display: inline-block; 
    width: 100px;
    color: inherit; 
}
#footer .quick-contact strong {
    display: inline-block; 
    width: 60px;
    color: inherit;
}
#copyright {
    color: rgba(255,255,255,.5);
    padding: 20px 0  50px;
    background: #01234a;
}
#copyright .text-left {
    line-height: 1.5;
}
#copyright .text-right {
    font-family: 'Yellowtail';
    font-size: 20px;
}

/*------------------------------------------------------------

    FRONT END PAGE STYLES

------------------------------------------------------------*/

/* ANNIVERSARY */

.Anniversary .page_title {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    height: 560px;
    background-color: #012f63;
    box-shadow: inset 0 -85px 0 0 #ffd800;
}

.Anniversary .page_title img {
    margin-top: 15px;
    max-width: 650px;
}



.Anniversary .first_order hr {
    color: #ffffff;
    background: #ffffff; 
    border-color: #ffffff; 
}

.Anniversary .first_order .inner {
    padding: 30px 40px;
    color: #ffffff;
    background: #004076; 
}

.Anniversary .first_order h2 {
    color: inherit;
    font-size: 3rem;
    text-transform: uppercase;
}



.Anniversary .new_order hr {
    color: #004076;
    background: #004076; 
    border-color: #004076; 
}

.Anniversary .new_order .inner {
    padding: 30px 40px;
    color: #004076;
    background: #ffd800; 
}

.Anniversary .new_order h2 {
    color: inherit;
    font-size: 3rem;
    text-transform: uppercase;
}

.Anniversary .new_order ul li {
    font-size: 1.5rem;
}


/* ABOUT */

.sidebar {
    padding-bottom: 10px;
    background: #fff;
    border: 1px solid #d5d5d5;
    box-shadow: 0 3px 50px rgba(0,0,0,.05);
}
.sidebar h4 {
    margin: 0 0 10px;
    line-height: 60px;
    padding: 0 20px;
    color: #fff;
    background: #012f63;
    text-align: center;
}
.sidebar .person {
    padding: 10px 20px;
}
.sidebar .person_image {
    width: 100%;
    height: 86px;
    border: 1px solid #d5d5d5;
    background: #fff;
    border-radius: 100px;
    background-size: cover;
    background-position: top center;
}

/* GALLERY */

body .gallery_cta {
    padding: 20px;  
    color: #fff;
}
/* GALLERY */

body .gallery_cta p {
    margin: 0;
    padding: 0;
    font-size: 22px;
    line-height: 47px;
}
body.gallery #page-header {
    height: 236px;
    padding-bottom: 60px;
}
body.gallery #page-header #page-text #share-buttons {
    position: absolute;
    right: 0;
    top: 15px;
}
body.gallery #page-header #page-text {
    margin: auto 0;
    padding-right: 15px;
    width: 100%;
}
body.gallery #photo_gallery ul {
    margin: -45px -1000px;
    padding: 0 1015px 0;
}
body.gallery #photo_gallery ul > li {
    
}
body.gallery #photo_gallery ul > li > a {
    display: inline-block;
    margin: 0;
    padding: 12px 25px;
    color: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    background: #e0e0e0;
    border: solid #ccc;
    border-width: 0 1px 0 0 !important;
    border-radius: 0;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
body.gallery #photo_gallery ul > li > a:hover,
body.gallery #photo_gallery ul > li > a:active,
body.gallery #photo_gallery ul > li > a:focus {
    background: #e9e9e9;
}
body.gallery #photo_gallery ul > li.active > a {
    color: #555;
    cursor: default;
    background-color: #fff;
}
body.gallery #photo_gallery .tab-content {
    overflow: hidden;
    margin: 0 -1000px;
    padding: 30px 1005px 50px;
    background: #fff;
}
body.gallery #photo_gallery .tab-content a {
    float: left;
    margin: 1%;
    width: 14%;
    height: 150px;
    text-decoration: none;
    background-color: #eee;
    background-size: cover;
    background-position: top center;
    box-shadow: 0 0 0 5px #eee;
}
body.gallery #photo_gallery .tab-content a i {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 25px;
    text-align: center;
    line-height: 150px;
    background: rgba(0,0,0, 0.7);
    opacity: 0;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
body.gallery #photo_gallery .tab-content a:hover i {
    opacity: 1;
}

/* UPLOAD ARTWORK */

iframe#ftp_frame {
    margin: 170px 0 50px;
    width: 100%;
    height: 500px;
    border: 0;
    background-color:#fff;
    background-image: url(../img/loading.gif);
    background-position: 50%;
    background-size: 20%;
    background-repeat:no-repeat;
}
.filtype {
    width: 60px;
    margin: 5px 0;
}
#upload-form {
    margin-top: -400px;
    padding: 40px 40px 30px;
    border: 1px solid #d5d5d5;
    background-image: 
        url('../../pages/upload-artwork/img/form_stamp.png'), 
        url('../../pages/upload-artwork/img/form_top.png');
    background-repeat: no-repeat, repeat-x;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    background-size: 280px, 46px;
    background-position: 275px 0, 44% -26px;
}
#upload-form .btn {
    display: block;
    margin: auto;
    width: 230px;
}
#upload-form .input-group {
    margin-bottom: 10px;
    width: 100%;
}
#upload-form .btn {
    display: block;
    margin: auto;
    width: 230px;
}

/* REQUEST ESTIMATE */

#request-form {
    margin-top: -400px;
    padding: 40px 40px 30px;
    border: 1px solid #d5d5d5;
    background-image: 
        url('../../pages/upload-artwork/img/form_stamp.png'), 
        url('../../pages/upload-artwork/img/form_top.png');
    background-repeat: no-repeat, repeat-x;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    background-size: 280px, 46px;
    background-position: 275px 0, 44% -26px;
}
#request-form .input-group {
    margin-bottom: 10px;
    width: 100%;
}
#request-form .btn {
    display: block;
    margin: auto;
    width: 230px;
}

/* EMPLOYMENT */

body.index.employment #page-header {
    background-image: url('../../pages/employment/img/header.png');
    background-position: top center !important;
    box-shadow: inset 0 1000px rgba(0, 47, 99, 0.75);
}
#job_positions a {
    display: block;
    text-decoration: none !important;
}
#job_positions a h3 {
    display: inline-block; 
    margin: 5px 15px 5px 0;
}
#job_positions a .label {
    position: relative; 
    top: -3px; 
    font-weight: normal;
}
#job_positions a i {
    font-size: 20px;
    float: right;
    width: 20px;
    line-height: 40px;
}
#employment-form {
    padding: 30px 40px 30px;
    border: 1px solid #d5d5d5;
    background-repeat: no-repeat, repeat-x;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    background-size: 280px, 46px;
    background-position: 275px 0, 44% -26px;
}
#employment-form .input-group {
    margin-bottom: 10px;
    width: 100%;
}
#employment-form .btn {
    display: block;
    margin: auto;
    width: 230px;
}


/* CONTACT US */

#gmaps {
    background-color: #fff;
}
#gmaps iframe,
#gmaps #gmap_canvas {
    margin-top: 120px;
    width: 100%;
    height: 500px;
    border: 0;
}
#gmaps #gmap_canvas * {
    transition: none !important;
}
#gmaps #gmap_canvas img {
    max-width: none!important;
    background: none!important
}
#contact-info strong {
    width: 160px;
    display: inline-block;
}
#contact-form {
    margin-top: -500px;
    padding: 40px 40px 30px;
    border: 1px solid #d5d5d5;
    background-image: 
        url('../../pages/upload-artwork/img/form_stamp.png'), 
        url('../../pages/upload-artwork/img/form_top.png');
    background-repeat: no-repeat, repeat-x;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    background-size: 280px, 46px;
    background-position: 275px 0, 44% -26px;
}
#contact-form .input-group {
    margin-bottom: 10px;
    width: 100%;
}
#contact-form .btn {
    display: block;
    margin: auto;
    width: 230px;
}
.contact-block div {
    min-height: 324px;
}
.contact-block div *,
.contact-block div a:hover {
    color: #fff;
}
.contact-block div label {
    width: 100px;
}
.contact-block div h3 {
    padding: 20px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
}
.contact-block div p {
    padding: 0 20px;
}
.contact-block div hr {
    border-color: rgba(255, 255, 255, .1);
    margin: 7px 0 5px 0;
}
.contact-block div ul {
    padding: 5px 20px 20px;
}

/* COPY WRITING */

#copy-writing {
    padding: 100px 0;
    background-color: #fff;
    background-image: url('../../pages/design/img/bg-type-explode.png');
    background-size: cover;
    background-position: 50% 50%;
    background-attachment: fixed;
}

/* GRAPHIC DESIGN */

#our-process {
    padding-top: 0;
    border-top: 4px solid #ddd;
}
#our-process div {
    margin-top: -34px;
}
#our-process img {
    margin: 40px auto 0;
    padding: 5px;
    width: 120px;
    background: #fff;
    border: 4px solid #ddd;
    border-radius: 1000px;
    transition: all .25s ease;
}
#our-process img:hover {
    transform: rotate(10deg);
    border-color: #aaa;
}
#our-process p {
    margin: 0;
}

























/*------------------------------------------------------------

    BACK END PAGE STYLES

------------------------------------------------------------*/

/*------------------------------------------------------------

    BACK END TEMPLATE

------------------------------------------------------------*/
body.back-end .alert {
    top: 65px;
    -webkit-animation-name: backendalert;
    animation-name: backendalert;
}
@-webkit-keyframes backendalert {
    0%   { top: 65px; }
    20%  { top: 120px; }
    80%  { top: 120px; }
    100% { top: 65px; }
}
@keyframes backendalert {
    0%   { top: 65px; }
    20%  { top: 120px; }
    80%  { top: 120px; }
    100% { top: 65px; }
}
body.back-end #content {
    padding: 160px 0;
}
body.back-end #header {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 60px;
    color:#fff;
    background: #002F63;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
body.back-end #header a {
    color: rgba(255,255,255,.5);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
body.back-end #header a:hover,
body.back-end #header a:active,
body.back-end #header a:focus {
    color: rgba(255,255,255,1);
    background: transparent;
}
body.back-end #header h1 {
    margin: 0;
    line-height: 60px;
    font-size: 20px;
}
body.back-end #header #current-user {
    display: inline-block;
    font-size: 20px;
    font-weight: 300;
    line-height: 60px;
}
body.back-end #header #current-user #user-photo {
    width: 100%;
    height: 200px;
    background-color: #40c79f;
    background-size: cover;
    background-position: 50% 50%;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
body.back-end #header #current-user .current-name {
    line-height: 1;
}
body.back-end #header #current-user .info {
    padding: 20px;
    border-top: 5px solid #A4FF41;
    background: #29313c;
    box-shadow: inset 0 0 10000px rgba(0, 0, 0, .3);
}
body.back-end #header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
body.back-end #header ul > li > a {
    display: block;
    padding: 10px 0;
    width: 250px;
    overflow: hidden;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.75;
    letter-spacing: 1px;
}
body.back-end #header ul > li > a.current {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 4px 0 #F78A75;
}
body.back-end #header ul > li > a > i {
    margin: -2px 20px 0;
    width: 20px;
    font-size: 19px;
    color: #40c79f;
    text-align: center;
    vertical-align: middle;
}
body.back-end #header ul > li > a > .badge {
    float: right;
    margin: 3px 20px;
    color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .1);
}
body.back-end #header hr {
    margin: 10px 0;
    border-color: rgba(255, 255, 255, .1);
}
body.back-end #main-bar {
    position: absolute;
    top: 40px;
    z-index: 999;
    width: 100%;
    height: 80px;
    padding: 20px 0;
    background: #fff;
}
body.back-end #main-bar h1 {
    display: inline-block;
    margin: 0;
    padding: 9px 0 7px;
    color:#666;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    vertical-align: middle;
}
body.back-end #main-bar h1 i {
    font-size: 22px;
    text-align: left;
    vertical-align: middle;
    margin-top: -5px;
}
body.back-end #main-bar .dropdown {
    display: inline-block;
}
body.back-end #main-bar .dropdown button {
    background: transparent;
    border:  0;
}
body.back-end #main-bar .dropdown button .fa-chevron-down {
    display: inline-block;
    margin-left: 10px;
    position: relative;
    top: 1px;
}
body.back-end #main-bar .dropdown-menu {
    border: 0;
    background: #fff;
    width: 250px;
    margin-top: 17px;
    padding: 0;
    box-shadow: 0 4px 4px rgba(0,0,0,.1);
}
body.back-end #main-bar .dropdown-menu li {
    border: 0;
    background: #fff;
    width: 250px;
    margin-top: 17px;
    box-shadow: 0 4px 4px rgba(0,0,0,.1);
}
body.back-end #main-bar .dropdown-menu > li {
    margin: 0;
}
body.back-end #main-bar .dropdown-menu > li > a {
    font-size: 18px;
    font-weight: 400;
    padding: 0 20px;
    line-height: 40px;
}
body.back-end #main-bar .dropdown-menu > li > a i {
    margin-right: 10px;
}
body.back-end #main-bar .btn {
    margin-left: 6px;
}
body.back-end #main-bar #search-box,
body.back-end #main-bar #status-box {
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
}
body.back-end #main-bar #search-box input,
body.back-end #main-bar #status-box select {
    width: 225px;
    border-radius: 4px !important;
}
body.back-end #main-bar #search-box .search-inline {
    position: absolute;
    right: 0;
    z-index: 100;
    line-height: 40px;
    border: 0;
    padding: 0;
    width: 40px;
    background: 0;
    -webkit-transition: all .4s ease !important;
    -moz-transition: all .4s ease !important;
    -ms-transition: all .4s ease !important;
    -o-transition: all .4s ease !important;
    transition: all .4s ease !important;
}
body.back-end #main-bar #search-box .search-inline:hover {
    color: #40c79f;
}
body.back-end #main-bar #search-box .btn-search-clear {
    position: absolute;
    left: -26px;
    padding: 10px 4px;
    line-height: 18px;
    background: transparent;
    border: 0 !important;
    color: #888;
    box-shadow: none !important;
}
body.back-end #main-bar #search-box .btn-search-clear:hover {
    color: #F78A75;
}



/*------------------------------------------------------------

    TOWN PAGES

------------------------------------------------------------*/
body.connecticut #categories {
    margin-top: -0;
    padding-top: 0;
}
body.connecticut #page-header {
    height: 60%;
    background-size: cover !important;
    box-shadow: inset 0 10000px rgba(0, 47, 99, 0.75);
}
body.connecticut #page-header #share-buttons {
    margin: 15px auto 0;
    display: inline-block;
}
body.connecticut.bethany #page-header { 
    background-image: url('../../pages/connecticut/img/bethany-banner.jpg') !important;
}
body.connecticut.cheshire #page-header { 
    background-image: url('../../pages/connecticut/img/cheshire-banner.jpg') !important;
}
body.connecticut.clinton #page-header { 
    background-image: url('../../pages/connecticut/img/clinton-banner.jpg') !important;
}
body.connecticut.east-haven #page-header { 
    background-image: url('../../pages/connecticut/img/east-haven-banner.jpg') !important;
}
body.connecticut.deep-river #page-header { 
    background-image: url('../../pages/connecticut/img/deep-river-banner.jpg') !important;
}
body.connecticut.east-haven #page-header { 
    background-image: url('../../pages/connecticut/img/east-haven-banner.jpg') !important;
}
body.connecticut.essex #page-header { 
    background-image: url('../../pages/connecticut/img/essex-banner.jpg') !important;
}
body.connecticut.guilford #page-header { 
    background-image: url('../../pages/connecticut/img/guilford-banner.jpg') !important;
}
body.connecticut.hamden #page-header { 
    background-image: url('../../pages/connecticut/img/hamden-banner.jpg') !important;
}
body.connecticut.hartford #page-header { 
    background-image: url('../../pages/connecticut/img/hartford-banner.jpg') !important;
}
body.connecticut.madison #page-header { 
    background-image: url('../../pages/connecticut/img/madison-banner.jpg') !important;
}
body.connecticut.meriden #page-header { 
    background-image: url('../../pages/connecticut/img/meriden-banner.jpg') !important;
}
body.connecticut.milford #page-header { 
    background-image: url('../../pages/connecticut/img/milford-banner.jpg') !important;
}
body.connecticut.new-haven #page-header { 
    background-image: url('../../pages/connecticut/img/new-haven-banner.jpg') !important;
}
body.connecticut.north-haven #page-header { 
    background-image: url('../../pages/connecticut/img/north-haven-banner.jpg') !important;
}
body.connecticut.orange #page-header { 
    background-image: url('../../pages/connecticut/img/orange-banner.jpg') !important;
}
body.connecticut.rocky-hill #page-header { 
    background-image: url('../../pages/connecticut/img/rocky-hill-banner.jpg') !important;
}
body.connecticut.south-windsor #page-header { 
    background-image: url('../../pages/connecticut/img/south-windsor-banner.jpg') !important;
}
body.connecticut.southington #page-header { 
    background-image: url('../../pages/connecticut/img/southington-banner.jpg') !important;
}
body.connecticut.wallingford #page-header { 
    background-image: url('../../pages/connecticut/img/wallingford-banner.jpg') !important;
}
body.connecticut.west-haven #page-header { 
    background-image: url('../../pages/connecticut/img/west-haven-banner.jpg') !important;
}


/*------------------------------------------------------------

    FTP

------------------------------------------------------------*/

/* Controls
----------------------------------------*/

.ftp_controls {
    padding: 10px 40px 10px 20px;   
}
.ftp_controls a.action {
    display: inline-block;
    border: 1px solid;
    padding: 5px 10px;
    margin: 0;
    line-height: inherit;
    transition: all .25s ease;
    text-transform: uppercase;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    opacity: .5;
}
#folder_list .ftp_controls a.action {
    color: #fff;
    border-color: #fff;
}
#file_list .ftp_controls a.action {
    color: #151515;
    border-color: #151515;
}
.ftp_controls a.action:hover,
.ftp_controls a.action:focus,
.ftp_controls a.action:active {
    text-decoration: none;
    opacity: 1;
}
.ftp_controls a.action.btn-delete-folder:hover,
.ftp_controls a.action.btn-delete-file:hover {
    color: #fff !important;
    border-color: #d9534f !important;
    background: #d9534f !important;
    box-shadow: none;
}


/* Folders
----------------------------------------*/

#ftp_main {
    background: #012f63;
}
#ftp_main #file_list h2 {
    margin: 0;
    padding: 20px 0 15px;
    color: #666;
    font-size: 40px;
    letter-spacing: 0;
}
#ftp_main #folder_list ul {
    border-top: 1px solid rgba(255,255,255,.1)   
}
#ftp_main #folder_list ul > li {
    position: relative;
}
#ftp_main #folder_list ul > li > a {
    display: block;
    padding: 10px 20px;
    line-height: 1;
    color: rgba(255,255,255,.7);
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
#ftp_main #folder_list ul > li > a:hover {
    color: #fff;
    background: rgba(255,255,255,.05);
}
#ftp_main #folder_list ul > li.current > a {
    position: relative;
    color: #fff;
    background: #345982;
}
#ftp_main #folder_list ul > li.current > a:after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    z-index: 10;
    display: block;
    width: 0px;
    height: 0px;
    border-top: 20px solid transparent;
    border-right: 0;
    border-bottom: 20px solid transparent;
    border-left: 10px solid #345982;
}
#ftp_main #folder_list ul > li > a > img,
#ftp_main #folder_list ul > li > a > span {
    display: inline-block;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
}


#ftp_main #file_list {
    background: #fff;
    min-height: 600px;
    border: 1px solid #d5d5d5;
    border-width: 0 1px 1px 0;
}
#ftp_main #file_list .table {
    margin: 0 !important;
}
#ftp_main #file_list table th {
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    background: #012f63;
}
#ftp_main #file_list table th,
#ftp_main #file_list table td {
    position: relative;
    vertical-align: middle;
}
#ftp_main #file_list table td {
    height: 60px;
}
#ftp_main #file_list table td:first-of-type {
    padding-left: 40px;
}
#ftp_main #file_list table td:last-of-type {
    padding-right: 10px;
}
#ftp_main #file_list table img {
    max-width: 50px;
    max-height: 50px;
}
#ftp_main #file_list table .action {
    display: block;
    padding: 5px 10px;
    color: #aaa;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.5;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid #aaa;
    border-radius: 3px;
}
#ftp_main #folder_list .show_del_folder {
    position: absolute;
    top: 14px;
    left: 8px;
    margin: 0;
}
#ftp_main #file_list .show_del_file {
    position: absolute;
    top: 24px;
    right: 14px;
    margin: 0;
}

































