/*
  JUST COLOR OVERRIDES FOR DRUPAL
  This is for main brand (also the default colors in case brands do not specify a color scheme)
*/
/* Make sure that the main page content is fully visible below the masthead */
.clicksharePage {
    margin: 1em auto 0 auto;
    width: 100%;
}
header.nav-up {
    top: -106px;
}
header.shrink.nav-up {
    top: -79px;
}
/* ------------------------------------------------------------ */
/* BEGIN link styles */
a {
    color: #e04c38;
}
/* END link styles */
/* ------------------------------------------------------------ */
/* BEGIN make the header logos bigger */
.logo-wrapper {
    margin: 0 0 2em;
}
header.shrink .logo-wrapper {
    margin: 0 0 1.5em;
}
.region-header .inner-logo-wrapper {
    max-height: inherit;
}
.region-header .crain-logo-block svg, 
.region-header .crain-logo-block img, 
.region-header .crain-logo-block .logoContainer object {
    height: 4em;
}
header.shrink .inner-logo-wrapper svg,
header.shrink .inner-logo-wrapper img, 
header.shrink .inner-logo-wrapper .logoContainer object {
     max-height: 3em;
}
/* END make the header logos bigger */
/* ------------------------------------------------------------ */
/* BEGIN wrapper and header colors */
.region-header .navbar-wrapper, h3, h4 {
    background-color: #424b55;
}
.region-footer {
    background-color: #424b55;
}
/* END wrapper and header colors */
/* ------------------------------------------------------------ */
/* BEGIN button/submit styles */
/* Inactive (not interacted with and not disabled) */
input[type="reset"], input[type="submit"], input[type="button"], button, #addAccount-confirm #chooseNewslettersLink, button.submitBtn, button.printbutton, .primaryButton, .pure-button {
    background-color: #e04c38; /* sub brands override this */
    color: #FFFFFF; /* sub brands override this */
    display: block; 
    margin: 15px 0px 0px auto;
    border: 1px solid #e04c38; /* to avoid the buttons moving around slightly on hover */
    text-transform: uppercase;
    margin: 5px;
}
a.button, .pure-button, .guestCheckout #promoCodeLink, button { /* widths get weird if this is combined with the above rule's display */
    background-color: #e04c38; /* sub brands override this */
    border: 1px solid #e04c38; /* to avoid the buttons moving around slightly on hover */
    color: #FFFFFF; /* sub brands override this */
    margin: 15px 0px 0px auto;
    border-radius: 4px;
    padding: 6px 10px;
    white-space: normal;
}
.button:hover, .pure-button:hover, .guestCheckout #promoCodeLink:hover {
    text-decoration: none;
}
/* BEGIN button/submit styles */
/* Hover */
input[type="reset"]:hover, input[type="submit"]:hover, input[type="button"]:hover, button:hover, a.button:hover, .guestCheckout #promoCodeLink:hover, #addAccount-confirm #chooseNewslettersLink:hover, button.submitBtn:hover, button.printbutton:hover, .primaryButton:hover, #updateServices .buttons input:hover, #updateServices .buttons input:hover, .pure-button:hover {
    background-color: #96252c;
    border: 1px solid #96252c;
    color: #ffffff;
}
/* Press */
input[type="reset"]:focus, input[type="submit"]:focus, input[type="button"]:focus, button:focus, a.button:focus, .guestCheckout #promoCodeLink:focus, #addAccount-confirm #chooseNewslettersLink:focus, button.submitBtn:focus, button.printbutton:focus, .primaryButton:focus, #updateServices .buttons input:focus, #updateServices .buttons input:focus, .pure-button:focus {
    background-color: #96252c;
    border: 1px solid #96252c;
    -webkit-box-shadow: 0 0 8px #96252c;
    box-shadow: 0 0 8px #96252c;
    color: #ffffff;
}
/* Drag (should be identical to Press) */
input[type="reset"]:active, input[type="submit"]:active, input[type="button"]:active, button:active, a.button:active, .guestCheckout #promoCodeLink:active, #addAccount-confirm #chooseNewslettersLink:active, button.submitBtn:active, button.printbutton:active, .primaryButton:active, #updateServices .buttons input:active, #updateServices .buttons input:active, .pure-button:active {
    background-color: #96252c;
    border: 1px solid #96252c;
    -webkit-box-shadow: 0 0 8px #96252c;
    box-shadow: 0 0 8px #96252c;
    color: #ffffff;
}
/* Disabled */
input[type="submit"]:disabled, input[type="button"]:disabled, button:disabled, .pure-button:disabled {
    background-color: #acacac !important;
    border: 1px solid #acacac;
    color: #ffffff !important;
}
/* Disabled, hover */
input[type="submit"]:disabled:hover, input[type="button"]:disabled:hover, button:disabled:hover, .pure-button:disabled:hover {
    background-color: #acacac !important;
    border: 1px solid #acacac;
    color: #ffffff !important;
}
/* Disabled, active */
input[type="submit"]:disabled:active, input[type="button"]:disabled:active, button:disabled:active, .pure-button:disabled:active {
    background-color: #acacac !important;
    border: 1px solid #acacac;
    color: #ffffff !important;
}
/* END button/submit styles */
/* ------------------------------------------------------------ */
/* BEGIN secondary button/submit styles */
input.secondaryButton, input.secondaryLink, a.secondaryButton {
    background-color: #ffffff;
    border: 1px solid #000000;
    color: #000000;
}
a.secondaryLink {
  color: #424b55;
}

/* Hover */
input.secondaryButton:hover, input.secondaryLink:hover, a.secondaryButton:hover {
    background-color: #424b55;
    border: 1px solid #424b55; /* to avoid the buttons moving around slightly on hover */
    color: #ffffff;
}
/* Press */
input.secondaryButton:focus, input.secondaryLink:focus, a.secondaryButton:focus {
    background-color: #424b55;
    border: 1px solid #424b55; /* to avoid the buttons moving around slightly on hover */
    -webkit-box-shadow: 0 0 8px #424b55;
    box-shadow: 0 0 8px #424b55;
    color: #ffffff;
}
/* Drag (should be identical to Press) */
input.secondaryButton:active, input.secondaryLink:active, a.secondaryButton:active {
    background-color: #424b55;
    border: 1px solid #424b55; /* to avoid the buttons moving around slightly on hover */
    -webkit-box-shadow: 0 0 8px #424b55;
    box-shadow: 0 0 8px #424b55;
    color: #ffffff;
}
/* Disabled, hover */
input.secondaryButton:disabled:hover, input.secondaryLink:disabled:hover, a.secondaryButton:disabled:hover {
    background-color: #acacac;
    color: #ffffff;
}
/* END secondary button/submit styles */
/* ------------------------------------------------------------ */
ul.form_header_title /* Override the jQuery accordion style colors */
{
    background: none repeat scroll 0 0 #000000;
    color: #424b55;
}
#updateAccount h3, #addAccountPrint h3
{
    color: #FFFFFF;
    background-color: #424b55;
}
#accordion h3, h3.findSubscriberMsg, #passwordChangeRequest h3, #passwordNoCredentials h3, #passwordLinkSent h3, #passwordChange h3, #viewPurchases h3, #viewEventPurchases h3, #showStatements h3 {
    color: #ffffff !important;
    background-color: #424b55;
}
#subscriptionRequiredContainer p span {
    color: #000000 !important;
}

.confirmButtonsContainer {
  justify-content: flex-start;
}
/* ------------------------------------------------------------ */
