.header_items {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	width: 100%;
	max-width: 1000px;
	flex-wrap: wrap;
}

.header_nav{
	padding: 0.5rem 0 0 2rem;
	font-size: 1rem;
}

.PuzTitle {
    font-size: 15pt;
    color: #800000;
    font-weight: bold;
}

.CopyTag {
    font-size: 10pt;
    color: #000000;
}

.PuzContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #000000;
}

#CrosswordCompilerPuz-div{
    outline: 20px solid white;
    padding: 3rem;
    border-radius: 8px;
    margin: 0.5rem 20px 28px 28px !important;
}

.PuzContainer td {
    outline: 1px solid #000;
}


.Clues, .GridClues {
    font-size: 11pt;
    font-family: Times New Roman,Times;
}

.Clues *{
    font-size: 11pt;
    font-family: Times New Roman,Times;
    box-sizing: border-box;
}

.ButtonText{
    padding: 0 1rem;
}

.centered-top{
    margin-bottom: 2rem;
}

.hr-player-bottom{
    margin: 2rem 0 0 0;
}

CENTER{
    margin-top: 1rem;
    color: #ddd;
}

.author {
    font-size: 1rem;
    font-style: italic;
}

/* American style clues */

#CrosswordCompilerPuz{
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap-reverse;
}

.outside-clues{
    background-color: #ddd;
    padding: 1rem 1rem 1rem 1rem !important;
    /* margin-right: 18px !important; */
    max-width: 400px !important;
    min-width: 250px;
    border-radius: 8px;
}

.clues-list{
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0 0 1rem 0 !important;
    height: auto;
}

.clues-list > li{
    font-size: 0.8rem;
}

.hidden {
    display: none;
}

@media (max-width: 800px) {
    /* #CrosswordCompilerPuz{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    } */

    .outside-clues{
        background-color: #ddd;
        padding: 0 1rem 1.1rem 1rem !important;
        max-width: 90% !important;
    }
}


@media (max-width: 620px) {
	.header_items{
        justify-content: center;
    }

    header{
        height: 5rem;
    }

    center{
        margin-top: 2rem;
    }
}

