﻿/*
Client style scheme for NCPA
style guide: 

    -- primary color palatte
    
NCPA: Spargo Main Colors
#7A256E 
#D78FBD
#E2126F
#EA649B
*/
@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap");

:root {
    --client-orange: #eba114;
    --client-blue: #009fdf;
    --client-darkblue: #004463;
    
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    background-color: #fff;
    color: #000000;
}

a, a:link, a:visited {
    color: #005587;
    text-decoration: underline;
}
    a:hover, a:active {
        color: #E2126F;
    }

header {
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

footer {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 10px;
    background-color: #7A256E;
    color: #ffffff;
    min-height: 50px;
    font-size: .9em;
}

    footer *, footer a {
        color: #ffffff !important;
    }

        footer a:hover {
            color: #D78FBD !important;
        }

    footer i.fa, footer i.fa-brands {
        font-size: 1.5em;
    }

h1, h2, h3, h4, h5, h6 {
    color: var(--client-darkblue);
}

.bg-client-primary {
    background-color: #009fdf;
}

.text-client-primary {
    color: #009fdf;
}

.bg-client-blue {
    background-color: var(--client-blue);
}

.text-client-blue {
    color: var(--client-blue);
}

.btn {
    border-radius: 4px;
    color: #ffffff !important;
    font-size: 1.2em;
}

a.btn {
    text-decoration: none;
}

.btn-primary {
    background-color: #009fdf;
    border-color: #009fdf;
}
    .btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:focus-visible {
        background-color: rgb(236, 103, 30);
        border-color: rgb(236, 103, 30);
        box-shadow: 0 0 0 .25rem rgba(0,156,182,.5) !important;
    }

    .btn-primary:disabled {
        background-color: lightgray;
    }

.btn-sm {
    padding: 10px !important;
    font-size: initial !important;
}

.responsive-button-group {
    text-align: right;
}

.responsive-button-group-reducedFont * {
    font-size: .9rem !important;
}

/* bootstrap tooltip styling */
.tooltip.show {
    opacity: 1;
}

.tooltip-inner {
    max-width: 500px;
    background-color: var(--client-teal);
}

.more-info-text {
    color: var(--client-teal);
}

.event-row {
    padding-bottom: 10px;
}

.badge-preview-container {
    position: relative;
    border: 1px solid #a0a0a0;
    max-width: 300px;
    min-height: 250px;
    padding: 70px 10px 10px 10px;
    text-align: center;
    background-image: url("../badgepreview/images/badgeheader.png");
    background-size: contain;
    background-repeat: no-repeat;
}

    .badge-preview-container > div {
        margin-bottom: 20px;
    }

.bg-client-orange {
    background-color: var(--client-orange);
}

.alertText {
    text-transform: uppercase;
    font-weight: bold;
    color: #ff66ff;
}

.fontlarge{
    font-size:large;
}