/* ========================================
   Root variables
   ======================================== */
:root {
    /* Colors */
    --color-blue: #17457a;
    --color-red: #cd163f;
    --color-white: #ffffff;
    --color-gray-100: #ebeff4;
    --color-steel: #94a9c3;
    --color-slate: #56779e;
    --color-navy: #0b1d36;
    --color-deep: #0a1c36;
    --color-muted-blue: #3a618e;
    --color-mid-blue: #56779e;
    --color-azure: #04adef;
    --color-charcoal: #333333;
    --color-border: #cccccc;
}

/* ========================================
   Base / Reset
   ======================================== */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    padding: 0;
    font-family: "urw-din", sans-serif;
    background-color: #eceff4;
    max-width: 2000px;
}

p,
ul,
li {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-top: 0;
}

p {
    margin-top: 0;
}

a {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-blue);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.content-section a {
    color: var(--color-red);
}

h1 {
    color: var(--color-red);
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 3rem;
}

h2,
h3,
h4,
h5 {
    color: var(--color-blue);
    margin-top: 0;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.1rem;
}

h3, .h3 {
    font-size: 1.8rem;
}

h4, .h4, h4 a {
    font-size: 1.6rem;
}

h5,
.h5 {
    font-size: 1.4rem;
}

img {
    max-width: none;
    width: 100%;
    height: auto;
}

blockquote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5;
}

.quote-owner {
    color: var(--color-blue);
    font-weight: 600;
}

.header {
    margin: auto;
}

.page-wrapper {
    min-height: 100vh;
}
/* ========================================
   Header & Navigation (Global)
   ======================================== */
@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('/library/APIWeb/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('/library/APIWeb/fonts/glyphicons-halflings-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 35px;
    height: 35px;
    background-color: #94a9c3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, background-color 0.4s ease;
    z-index: 999;
}

    .back-to-top.show {
        opacity: 1;
        pointer-events: auto;
    }

    .back-to-top::after {
        content: "\25B2";
        font-weight: 900;
        font-size: 14px;
        color: #ebeff4;
    }

    .back-to-top:hover {
        text-decoration: none;
        background-color: var(--color-muted-blue);
    }

#apiLogo {
    width: 320px;
    height: auto;
}

#apiMobileLogo {
    width: 70px;
    height: auto;
    margin-left: 1rem;
}

.logo-container {
    align-self: center;
}

.second-nav {
    background-color: var(--color-blue);
    display: flex;
    flex-direction: row;
    padding: 1rem 2rem;
}

.parent-nav {
    width: 100%;
    padding: 1.5rem 0;
    box-shadow: 0 8px 8px -4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.main-item {
    align-self: center;
    padding: 0 2rem;
}

    .main-item:hover {
        color: var(--color-red);
    }

.dropdown-desc {
    width: 30%;
}

    .dropdown-desc .h5 {
        color: var(--color-slate);
        font-size: 1.5rem;
        font-weight: 600;
        margin-top: 0;
        margin-bottom: 0.55rem;
    }

    .dropdown-desc p,
    .add-on a {
        color: var(--color-white);
        font-size: 0.8rem;
    }

.add-on a {
    font-weight: 600;
    line-height: 1.3;
}

.header .main-nav .dropdown {
    display: none;
}

    .header .main-nav .dropdown .dropdown-panel {
        display: none;
    }

.breadcrumbs {
    color: var(--color-border);
    font-size: 1.1rem;
}

.breadcrumbs-parent a {
    font-weight: 600;
    color: var(--color-red) !important;
}

.breadcrumbs-child a {
    color: var(--color-blue);
    font-weight: normal !important;
}

i.fa-solid.fa-arrow-right-to-bracket {
    padding: 5px 5px 0 0;
}

@media screen and (min-width: 992px) {
    .dropdown-panel {
        grid-template-columns: repeat(3,1fr)
    }

    #group-1 {
        grid-column: 1;
        grid-row: 1;
    }

    #group-2 {
        grid-column: 1;
        grid-row: 2;
    }

    #group-4 {
        grid-column: 2;
        grid-row: 1;
    }

    #group-5 {
        grid-column: 2;
        grid-row: 2;
    }
}

@media screen and (max-width:991px) {
    .dropdown-panel {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .dropdown-items .main-link {
        color: var(--color-red);
        font-weight: 600;
    }
}

/* ========================================
   COMMON ELEMENTS @ DESKTOP
   ======================================== */
.image-thumbnail {
    background-image: url('../img/top-banner-300dpi-2.png');
    background-size: cover;
    background-position: center;
    height: 300px;
    width: 100%;
}

.hide {
    display: none;
}

.btn {
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    width: fit-content;
}

.btn-default {
    color: var(--color-white);
    background-color: var(--color-blue);
    border: 2px solid var(--color-blue);
}

    .btn-default:hover {
        color: var(--color-blue);
        background-color: var(--color-white);
        text-decoration: none;
    }

.btn-success {
    color: var(--color-red);
    background-color: var(--color-white);
    border: 2px solid var(--color-red);
}

    .btn-success:hover {
        color: var(--color-white);
        background-color: var(--color-red);
    }

.content-section {
    min-height: 100vh;
    padding: 3rem 5rem;
    background-color: var(--color-white);
}

.fa-file-pdf {
    color: var(--color-red);
    font-weight: 900;
}

.paginator {
    margin: 20px 0px;
}

    .paginator nav {
        display: inline-flex;
        flex-direction: row;
        margin: 10px 0px;
    }

.pagination-text {
    margin: 0px 20px;
}

.paginator button {
    border: none;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    padding: 5px;
    margin: 0px 5px;
}

    .paginator button:hover {
        background-color: #d4d4d4;
    }

.go-next, .go-last, .go-first, .go-previous {
    background-color: var(--color-gray-100);
}

    .go-next:hover, .go-last:hover, .go-first:hover, .go-previous:hover {
        background-color: var(--color-border);
        cursor: pointer;
    }

.go-next {
    background-image: url('https://api.org/-/media/Files/misc/web/icons/chevron-right-solid.svg');
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: center;
}

.go-last {
    background-image: url('https://api.org/-/media/Files/misc/web/icons/chevrons-right-solid.svg');
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: center;
}

.go-previous {
    background-image: url('https://api.org/-/media/Files/misc/web/icons/chevron-left-solid.svg');
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: center;
}

.go-first {
    background-image: url('https://api.org/-/media/Files/misc/web/icons/chevrons-left-solid.svg');
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: center;
}

.col-title, .col-title-text, .col-justify-start button {
    border: none;
    background-color: transparent;
    padding: 5px 10px;
}

    .col-justify-start button:hover {
        color: var(--color-blue);
        cursor: pointer;
    }

.fa-maximize {
    font-size: 1.1rem;
}

button.col-title {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

    button.col-title .col-title-text {
        padding-right: 5px !important;
    }

        button.col-title .col-title-text:hover {
            color: var(--color-deep);
        }

    button.col-title .sort-indicator {
        width: 1rem;
        height: 1rem;
        position: relative;
    }

        button.col-title .sort-indicator::before,
        button.col-title .sort-indicator::after {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            border-left: .25rem solid transparent;
            border-right: .25rem solid transparent;
        }

        button.col-title .sort-indicator::before {
            top: .05rem;
            border-bottom: .30rem solid var(--color-blue);
        }

        button.col-title .sort-indicator::after {
            bottom: .05rem;
            border-top: .30rem solid var(--color-blue);
        }

/* ========================================
   FOOTER GLOBAL
   ======================================== */
footer {
    position: relative;
    background-color: var(--color-navy);
}

    footer .logo-container img {
        width: 150px;
        height: auto;
    }

    footer h4 {
        font-size: 1.1rem;
        color: var(--color-slate);
    }

    footer h5 {
        margin: 1rem 0;
        font-size: 1rem;
        font-weight: bold;
        color: var(--color-white);
    }

.top {
    border-bottom: 1px var(--color-white) solid;
}

.bottom {
    display: flex;
    padding: 1.5rem 0;
}

    .bottom p {
        font-size: 0.8rem;
        color: var(--color-white);
    }

    .bottom a {
        color: var(--color-white);
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: normal;
    }

        .bottom a:hover {
            text-decoration: underline;
        }

.group p:first-child {
    margin-right: 15px;
}

.bottom .group {
    display: flex;
    flex-direction: row;
}

.social-nav {
    list-style-type: none;
    display: flex;
    align-items: center;
    margin: 0 !important;
}

    .social-nav, .social-nav ul, .social-nav li {
        line-height: 1 !important;
        padding-inline-start: 0;
    }

        .social-nav li {
            margin-left: 0;
        }

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.btn-social {
    display: inline-block;
    margin: 0 5px;
    text-align: center;
}

.fab {
    font-size: 14px;
    color: var(--color-white);
    border: 2px var(--color-white) solid;
    border-radius: 50px;
    padding: 10px;
    height: 20px;
    width: 20px;
    align-content: center;
}

    .fab:hover {
        color: var(--color-navy);
        background-color: var(--color-white);
    }
/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media screen and (min-width: 300px) {
    .utilities ul li {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 991px) {

    header {
        position: sticky;
        top: 0;
        z-index: 100;
        width: 100%;
        background: var(--color-white);
    }

    #apiLogo {
        display: none;
    }

    #apiMobileLogo {
        display: block;
    }

    .second-nav {
        padding: 1rem 0;
        background-color: var(--color-gray-100);
        box-shadow: 0 8px 8px -4px rgba(0, 0, 0, 0.1);
    }

    .mobile-nav {
        display: flex;
        gap: 0.5rem;
        margin-left: auto;
        padding-right: 1rem;
    }

        .mobile-nav img {
            width: 25px;
            height: 25px;
            background-color: var(--color-white);
            padding: 0.5rem;
            border-radius: 8px;
        }

    .dropdown-desc {
        display: none;
    }

    .dropdown-items {
        display: flex;
        flex-direction: column;
    }

        .dropdown-items a {
            color: var(--color-slate);
            font-size: 1rem;
            font-weight: normal;
        }

    .dropdown-panel {
        padding: 1rem 2rem;
    }

    .parent-nav {
        background-color: var(--color-white);
        display: block;
        padding: 2rem 0 1rem 0;
        position: absolute;
        top: 70px;
        z-index: 11111;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .main-item,
    .main-item a {
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-blue);
        cursor: pointer;
    }

    .main-item {
        display: flex;
        margin-bottom: 0.5rem;
        cursor: pointer;
    }

    .main-nav {
        display: none;
    }

        .main-nav.is-open {
            display: block;
        }

    .main-item a {
        display: block !important;
    }

    .utilities {
        display: none;
    }

    .main-nav.is-open .utilities {
        display: block;
    }

    .utilities {
        list-style-type: none;
        border-top: 1px solid var(--color-border);
        padding-inline-start: 2rem;
        padding-top: 1.5rem;
        margin: 2rem 0 0 0;
    }

        .utilities a {
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-slate);
        }

        .utilities li {
            line-height: 1.5;
        }

    .content-section {
        margin: 0 auto;
        border-radius: 0;
    }

    .second-col {
        flex-direction: column;
    }
}

@media screen and (min-width: 992px) {
    #apiLogo {
        display: block;
    }

    #apiMobileLogo {
        display: none;
    }

    .mobile-nav {
        display: none;
    }

    .parent-nav {
        background-color: var(--color-white);
        display: flex;
        flex-direction: row;
        justify-self: center;
    }

    .main-item,
    .main-item a {
        font-size: 1.2rem;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
        color: var(--color-blue);
        cursor: pointer;
    }

        .main-item a {
            text-decoration: none;
        }

            .main-item a:hover {
                color: var(--color-red);
            }

    .main-item {
        border-right: 1px solid var(--color-blue);
    }

        .main-item:nth-child(4),
        .main-item:last-child {
            border: none;
        }

    nav {
        margin: 0 0 0 auto;
    }

    .utilities {
        list-style-type: none;
        display: flex;
        flex-direction: row;
        gap: 2rem;
        padding: 1rem 0;
        margin: 0;
    }

        .utilities a {
            color: var(--color-white);
            font-weight: 600;
            display: flex;
            font-size: 1rem;
        }

        .utilities li {
            align-self: center;
        }

    .second-col {
        flex-direction: row;
    }

    /* ==========================================================================
DROPDOWN @ DESKTOP ========================================================== */
    .dropdown {
        background-color: var(--color-white);
        border-top: 1px solid var(--color-mid-blue);
        position: absolute;
        top: 148px;
        z-index: 11111;
        width: 100%;
        padding: 2rem 0;
        box-shadow: 0 8px 8px -4px rgba(0, 0, 0, 0.1);
    }

    .dropdown-panel {
        padding: 0 2rem;
    }

    .dropdown-items {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

        .dropdown-items .main-link {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-red);
        }

        .dropdown-items a {
            color: var(--color-blue);
            font-weight: normal;
            text-transform: uppercase;
            font-size: 1rem;
        }
}

.main-item.expand {
    position: relative;
    padding-right: 2.5rem;
    cursor: pointer;
}

    .main-item.expand .menu-arrow {
        position: absolute;
        right: 1rem;
        top: 50%;
        width: 16px;
        height: 16px;
        transform: translateY(-50%);
        color: var(--color-red);
    }

        .main-item.expand .menu-arrow::before,
        .main-item.expand .menu-arrow::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 8px;
            height: 2px;
            background: currentColor;
            transform-origin: center;
            transition: transform 180ms ease, left 180ms ease, right 180ms ease, width 180ms ease;
        }

        .main-item.expand .menu-arrow::before {
            left: 3;
        }

        .main-item.expand .menu-arrow::after {
            right: 0;
        }

    .main-item.expand[aria-expanded="false"] .menu-arrow::before {
        transform: translateY(-50%) rotate(45deg);
    }

    .main-item.expand[aria-expanded="false"] .menu-arrow::after {
        transform: translateY(-50%) rotate(-45deg);
    }

    .main-item.expand[aria-expanded="true"] .menu-arrow::before,
    .main-item.expand[aria-expanded="true"] .menu-arrow::after {
        width: 16px;
    }

    .main-item.expand[aria-expanded="true"] .menu-arrow::before {
        left: 0;
        transform: translateY(-50%) rotate(45deg);
    }

    .main-item.expand[aria-expanded="true"] .menu-arrow::after {
        right: 0;
        transform: translateY(-50%) rotate(-45deg);
    }
/* ==================================================== 
FOOTER @ DESKTOP ====================================== */
.footer-wrap {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

    .footer-wrap a {
        color: var(--color-white);
        font-weight: normal;
        font-size: 0.8rem;
    }

.top {
    padding: 0 0 2rem 0;
    display: grid;
    grid-template-columns: 20% 40% 40%;
    gap: 0;
}

.first-col {
    align-self: baseline;
    justify-self: center;
}

.second-col {
    display: flex;
    gap: 2rem;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    padding-left: 5rem;
}

    .second-col > div {
        display: flex;
        flex-direction: column;
    }

.third-col {
    padding-left: 5rem;
}

.bottom .group {
    margin-left: auto;
}

@media screen and (max-width:1200px) {
    .footer-wrap .top {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .footer-wrap .bottom {
        padding: 2rem;
    }

    .second-col, .third-col {
        border: none;
        padding: 0;
    }
}
/* ==================================================== 
FORM @ SEARCH PAGE ====================================== */
label {
    font-size: 1.1rem !important;
    font-weight: 600;
    margin: 1rem 0;
}

select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.search-container h2 {
    margin: 0;
}

.search-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-choices input[type=radio] {
    width: 20px;
    height: 12px;
    margin: 0 0.25rem 0 0;
}

.search-choices label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-right: 2rem;
}

.login-container form {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-container button {
    margin: 1rem 0;
}

.login-container label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-blue);
}

.text-danger {
    color: var(--color-red);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 1rem;
    margin: 1rem 0;
}

    .form-control::placeholder {
        font-size: 1rem;
    }

.div-faq {
    align-self: self-start;
    text-align: center;
    padding: 2rem;
    border: 1px solid #333;
}

.submit-group {
    padding: 2rem 0;
}

.flex-group {
    border-top: 1px solid var(--color-blue);
}

.btn-success:hover > .fa-file-pdf {
    color: var(--color-white);
}

#divSubCommittees select {
    width: 80%;
    padding: 0.5rem;
}

    #divSubCommittees select option {
        font-size: 1.1rem;
    }

#divSubCommittees p {
    font-size: 0.8rem;
    font-style: italic;
}

#divSubCommittees hr {
    margin: 2rem 0;
}

@media screen and (max-width:991px) {
    .col-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .flex-group {
        display: flex;
        flex-wrap: wrap-reverse;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 1rem 0;
    }

    .export-group {
        padding: 1rem 0;
        margin: 0;
    }

        .export-group > button {
            margin-bottom: 1rem;
        }
}

@media screen and (min-width:992px) {
    .col-container {
        display: grid;
        grid-template-columns: 70% 30%;
    }

    .search-container {
        padding-right: 4rem;
    }

    .flex-group {
        width: 90vw;
        max-width: 1850px;
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        text-align: center;
    }

    .export-group {
        margin: 0 0 0 auto;
    }
}
/* ==================================================== 
TABLE @ SEARCH PAGE ====================================== */
#resultsdiv {
    max-width: 1850px;
    overflow: auto;
}

.col-title, .col-title-text {
    border: none;
    background-color: transparent;
    padding: 5px 10px;
    color: var(--color-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

table {
    display: table;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--color-border);
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    font-size: 1.1rem;
}

thead {
    background-color: #D4DEE9;
}

th {
    font-weight: 600;
    color: var(--color-blue);
    border: 1px solid var(--color-border);
}

td {
    padding: 10px 15px;
    border: 1px solid var(--color-border);
    line-height: 1.25;
}

th, td {
    padding: 0.5rem;
}

table tbody td:nth-child(7) {
    text-align: left;
}

table a {
    color: var(--color-blue) !important;
}

table tbody tr:nth-child(odd) {
    background-color: var(--color-gray-100);
}

@media screen and (min-width:992px) {
    #resultsdiv {
        width: 90vw;
    }
}

@media screen and (max-width:991px) {
    #resultsdiv {
        width: 100%;
    }
}
/* ==================================================== 
TOOLTIP and MODAL @ SEARCH PAGE ======================= */
.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}

    .close:hover,
    .close:focus {
        color: #000000;
        text-decoration: none;
        cursor: pointer;
        opacity: 0.5;
        filter: alpha(opacity=50);
    }

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}

.modal-open {
    overflow: hidden;
}

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1040;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    min-height: 100vh;
}

.modal-open .modal {
    overflow: hidden;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 1rem;
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-color: #000000;
}

    .modal-backdrop.fade {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .modal-backdrop.in {
        opacity: 0.5;
        filter: alpha(opacity=50);
    }

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.42857143px;
}

    .modal-header .close {
        margin-top: -2px;
    }

.modal-title {
    margin: 0;
    line-height: 1.42857143;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

    .modal-footer .btn + .btn {
        margin-left: 5px;
        margin-bottom: 0;
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px;
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0;
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    visibility: visible;
    font-family: 'Museo W01', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.4;
    opacity: 0;
    filter: alpha(opacity=0);
}

    .tooltip.in {
        opacity: 0.9;
        filter: alpha(opacity=90);
    }

    .tooltip.top {
        margin-top: -3px;
        padding: 5px 0;
    }

    .tooltip.right {
        margin-left: 3px;
        padding: 0 5px;
    }

    .tooltip.bottom {
        margin-top: 3px;
        padding: 5px 0;
    }

    .tooltip.left {
        margin-left: -3px;
        padding: 0 5px;
    }

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background-color: #000000;
    border-radius: 0px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    right: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000000;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000000;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}
