﻿
/*Complete Posters*/
/******************************************************************************************************************/

.poster-container {
    display: flex;
    flex-direction: column;

}

.poster-info {
    display: flex;
    background: #fff;
}

.poster {
    display: flex;
    flex-direction: column;
    flex: 0 0 400px;
    align-items: center;
    border: 1px solid #ccc;
    padding: 14px 0 20px 0;
}

    .poster > .name {
        color: #06AFDA;
        font-size: 24px;
        text-align: center;
        font-weight: 500;
    }


    .poster > .poster-image {
        margin: 20px 0;
    }


    .poster > .download-poster {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .poster .download-link {
        display: flex;
        font-size: 13px;
        color: #666;
        transition: color 0.3s ease-in;
        margin: 5px 0;
    }

        .poster .download-link:hover {
            color: #222;
        }

        .poster .download-link.margin {
            margin-bottom: 20px;
        }

        .poster a:last-child .download-link {
            margin-bottom: 20px;
        }

        .poster .download-link > img {
            margin-right: 5px;
        }

.requirements {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 20px;
    color: #333;
}

    .requirements > .heading {
        font-size: 16px;
        font-weight: bold;
    }


    .requirements > .state-heading,
    .requirements > .federal-heading {
        font-weight: 500;
        margin-top: 20px;
    }


    .requirements ul {
        list-style-type: disc;
        list-style-position: inside;
    }

        .requirements ul li {
            color: #666;
        }


.revision {
    display: flex;
    flex-direction: column;
    flex: 0 0 250px;
    align-items: center;
    border: 1px solid #ccc;
    color: #333;
    padding: 20px 0;
}


    .revision > .title {
        font-size: 16px;
        font-weight: bold;
    }

    .revision > .date {
        font-size: 16px;
        margin-bottom: 40px;
        color: #bd3f3f;
        font-weight: 500;
    }


    .revision > .english-code {
        margin-bottom: 20px;
    }

        .revision > .english-code img,
        .revision > .spanish-code img {
            border: 1px solid #ccc;
        }

    .revision > .code-text {
        font-size: 12px;
        text-align: center;
        color: #666;
        margin-top: 40px;
    }


.extra-downloads {
    display: flex;
    flex-direction: column;
    background: #fff;
}

    .extra-downloads > .title {
        display: flex;
        border: 1px solid #ccc;
        border-top: none;
        justify-content: center;
        font-size: 20px;
        color: #333;
        background: #e4f5f9;
        padding: 5px 0;
    }

    .extra-downloads > .extra-link-container {
        display: flex;
        border: 1px solid #ccc;
        border-top: none;
        color: #333;
        padding: 10px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

        .extra-downloads > .extra-link-container > .extra-link {
            display: flex;
            flex-direction: column;
            flex: 0 0 30%;
            align-items: center;
            margin-bottom: 10px;
        }

.extra-link a {
    color: #06AFDA;
}

.return-to-top {
    margin: 25px 0 40px 0;
    display: flex;
    justify-content: center;
    color: #333;
}

    .return-to-top:hover {
        color: #06afda;
    }


.quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 10px 0;
    padding: 10px;
    background: #eee;
    border: 1px solid #ccc;
    align-items: center;
}

.quick-links > .title {
    margin-right: 10px;
}


    .quick-links > select {
        font-family: inherit;
        color: #333;
        height: 32px;
        padding: 2px;
        border: 1px solid #ccc;
        width: 175px;
    }

        .quick-links > select > option:first-child {
            color: #ccc;
        }

        .quick-links > select:invalid {
            color: #999;
            box-shadow: none;
        }





/*Complete Posters*/
/******************************************************************************************************************/





