/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*
 * orange: #ffc301
 */
@font-face {
    font-family: "cinnamoncake";
    src: url('/static/1678363505/cinnamoncake.ttf?2724c7becef7') format("truetype");
}

* {
    box-sizing: border-box;
}
body {
    font-family:Arial, Arial, Helvetica, sans-serif;
}

button, .button-like {
    font-size:16px;
    border:1px solid #999;
    background: linear-gradient(0deg, #ccc 0%, #fff 100%);
    border-radius:none;
    padding:5px;
}


button:hover, .button-like:hover {
    background: linear-gradient(0deg, #ddd 0%, #fff 100%);
}

button.submit, .button-like.submit {
    background: linear-gradient(0deg, #ffcf33 0%, #fff3cc 100%);
    border:1px solid #ffc301;
}

button.submit:hover, .button-like.submit:hover {
    background: linear-gradient(0deg, #ffdb66 0%, #fff3cc 100%);
}

button.depressed,
.button-like.depressed,
button:active,
.button-like:active,
button.depressed:hover,
.button-like.depressed:hover {
    background: linear-gradient(0deg, #fff 0%, #ccc 100%);
}


a.button-like:link,
a.button-like:visited,
a.button-like:hover {
    color:black;
    text-decoration:none;
}

h1 {
    font-size:32px;
    margin-bottom:5px;
    line-height:normal;
}

h2 {
    font-size:18px;
    margin-bottom:5px;
    line-height:normal;
}

h4 {
    font-weight:bold;
}

legend {
    box-sizing: border-box;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
    font-size: 22px;
    margin-left: 10px;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: bold;
}

input, select {
    font-size:16px;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding-left: 0;
    padding-right: 0;
    margin-top:20px;
}

small {
    font-size:11px;
}

strong {
    font-weight:bold;
}

em {
    font-style:italic;
}

label {
    display:block;
    line-height:normal;
    margin-bottom:1px;
}

blockquote {
    background-color:#efefef;
    padding:10px;
    border-left:5px solid #999;
    line-height:1.3;
}

ul {
    list-style-type:circle;
    margin-left:20px;
    margin-bottom:10px;
}

ol {
    margin-left:20px;
    list-style-type:decimal;
}

ol.extra-space li {
    line-height:1.5;
}

ol#word-list {
    /*margin-left:50px;*/
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -moz-column-gap: 20px;
    /*list-style-position: inside;*/
}

#word-list img {
    max-width:100px;
    max-height:100px;
    display:block;
}

#word-list li {
    font-size:18px;
    padding-bottom:10px;
}

.cut {
    background-image: url(/static/1678363505/img/cut.svg?2724c7becef7);
    width: 24px;
    height: 24px;
    display: inline-block;
    content: "";
    position: absolute;
    background-size: contain;
	background-repeat:no-repeat;
    top: -29px;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
    left: 80px;
    transform: rotate(50deg);
    transform-origin: center;
}

#word-list img {
    max-width:100px;
    max-height:100px;
    display:block;
}

#word-list li {
    font-size:18px;
    padding-bottom:10px;
}

details {
    line-height:1.3;
    margin-bottom:8px;
}

summary {
    text-decoration:underline;
    cursor:pointer;
}

summary:hover {
    text-decoration:none;
}

.faqs-wrapper p {
    line-height:1.3;
}

.faqs-wrapper h3 {
    font-size:22px;
    margin-top:30px;
}

@keyframes demo {
    0% {
        background-color: white;
        opacity:1;
    }
	50% {
		background-color: #fff587;
	}
    100% {
        background-color: white;
    }
}

.demo {
    animation-name: demo;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
}


.faq {
    color:#333;
    cursor:pointer;
    font-weight:normal;
    text-decoration:underline;
    margin-bottom:0;
}

.faqs h2 {
    margin-top:20px;
}

.faqs h2:first-of-type {
    margin-top:0;
}

.faq:hover {
    text-decoration:none;
}

a:link, a:visited, a:hover {
    text-decoration:underline;
    color:#003cfe;
}

a:visited {
    color:#003c88;
}

a:hover {
    text-decoration:none;
}

li {
    line-height:normal;
}

p {
    line-height:1.3;
    margin-bottom:10px;
    margin-top:5px;
}

* {
    line-height:1.3;
}

.check-list {
    line-height:1.3;
}

.check-list > div {
    margin-bottom:10px;
}

#payment-modal .check-list > div {
    font-size:14px;
}

.check-list > div strong {
    font-size:16px;
}

.check-list > div:before {
    content:"✓";
    color: #009900;
    font-weight: bold;
    margin-right:5px;
}

.check-list > div.nothing:before {
    content:"";
}

.member-check {
    color: #009900;
    font-weight: bold;
    margin-left:5px;
}

li {
    line-height:1.3;
}

.readable p,
.readable h1,
.readable h2,
address,
.readable h3  {
    line-height:1.4;
}

.readable h2 {
    font-weight:bold;
}

.readable h3 {
    font-weight:bold;
}

.readable #instructions h2 {
    font-weight:normal;
}

.readable ol {
    margin-left:20px;
    margin-bottom:10px;
}

.readable ol li {
    line-height:1.4;
}

.play-buttons {
    display:flex;
    justify-content:space-between;
}

.play-buttons a {
    background-color:#ffe89e;
    text-align:center;
    padding:3px;
    border-color:#999;
    border-style:solid;
    border-right-width:1px;
    border-top-width:1px;
    border-bottom-width:1px;
    display:flex;
    align-items:center;
    line-height:1.2;
    font-size:14px;
    font-weight:bold;
    text-decoration:none;
    color:black;
    background: linear-gradient(0deg, #ffcf33 0%, #fff3cc 100%);
    flex:1;
    text-align:center;
    justify-content:center;
}


.play-buttons a:hover {
    background:transparent;
}
.play-buttons a:first-child {
    border-left-width:1px;
}

a.tab-link-active, a.tab-link-active:hover {
    background:white;
    border-bottom-color:white;
}

.tab-wrapper {
    margin-bottom:10px;
    border-color:#999;
    border-style:solid;
    border-right-width:1px;
    border-left-width:1px;
    border-bottom-width:1px;
}

.tab {
    background-color:white;
    padding:10px;
    line-height:1.2;
    display:none;
}

.tab-wrapper .tab:nth-child(1) {
    display:block;
}

.form-row p.form-help {
    margin:0 !important;
}

.tab input[type="text"], .tab textarea {
    width:100%;
    display:block;
    font-size:16px;
}

.tab label {
    font-weight:bold;
}

.form-row {
    margin-bottom:5px;
}

.tab textarea {
    display:block;
    width:100%;
}

.wrapper {
    margin:auto;
    max-width:870px;
}

#wrapper {
    /*margin-bottom:30px;*/
    background-color:#fff;
    margin:auto;
    max-width:870px;
}
#header {
    /*display:none;*/
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin:auto;
    max-width:870px;
}

#nav2 {
    display:flex;
    aligin-items:center;
    justify-content:center;
}

#footer {
    margin-top:20px;
    margin-bottom:20px;
}

#nav2 a {
    color:#333;
    display:block;
    font-size:14px;
    margin-left:5px;
    margin-right:5px;
}

#nav {
    margin-top:10px;
    /*background-color:#f1f1f1;*/
    font-size:18px;
    white-space:nowrap;
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    justify-content: flex-end;
}

#nav a {
    padding:5px;
    margin-left:5px;
    margin-right:5px;
}

#header p {
    float:right;
    padding-right:20px;
    padding-top:5px;
}

#hint {
    margin-top:10px;
    font-size:12px;
    line-height:normal;
}

.card {
    border-collapse:collapse;
    margin:auto;
}

.card td {
    width: 100px;
    height:100px;
    border:1.1px solid black;
    vertical-align:middle;
    text-align:center;
}

.card td textarea {
    vertical-align:middle;
    text-align:center;
    /*width: 100px;*/
    height:100px;
    border:none;
    font-family:Arial, Arial, Helvetica, sans-serif;
    font-size:18px;
    overflow:auto;
    padding:2px;
    resize: none;
}

.card tr#bingo-boxes th input {
    font-family:Arial, Arial, Helvetica, sans-serif;
    font-size:18px;
    text-align:center;
    /*width:50px;*/
    border:none;
    height:30px;
    margin-bottom:20px;
}

#name  {
    font-family:Arial, Arial, Helvetica, sans-serif;
    font-size:18px;
    text-align:center;
    width:100%;
    border:none; /*1px solid black;*/
    box-shadow: #ccc 0 0 2px 0;
    height:100%;
}

#card-wrapper, .card-wrapper {
    background-color:#f1f1f1;
    padding-top:20px;
    padding-bottom:20px;
    padding-left:18px;
    padding-right:18px;
    flex:1;
    position:relative;
    z-index:0;
}


.card-wysiwyg input, .card-wysiwyg textarea, .card-wysiwyg select {
    background-color:transparent;
    color:inherit;
}

.card-title input, .card-letters input {
    text-shadow:none;
}

#card-wrapper tfoot th {
    text-align:left;
}

#card-wrapper form {
    /*width:500px;*/
    margin:auto;
}

#card-wrapper label {
    margin-top:5px;
    display:block;
}

#card-wrapper input[type="checkbox"] {
    margin:0;
    vertical-align:bottom;
}

#instructions {
    border:5px solid #ffc301;
    /*background-color:#ffc301;*/
    padding:15px;
    /*border-radius:10px;*/
    margin-left:30px;
    width:300px;
}

.instruction-block {
    margin-bottom:20px;
    transition:.2s background-color ease-in;
}

.wiggle {
    animation: shake 1s;
    /*background-color:#ffdb66;*/
}

@keyframes shake {
    0% { opacity: 1; }
    16% { opacity: .1; }
    33% { opacity: 1; }
    50% { opacity: .1; }
    65% { opacity: 1; }
    81% { opacity: .1; }
    100% { opacity: 1; }
}

.call-list-buttons {
    text-align:center;
    display:flex;
    align-items:center;
    justify-content:center;
}

.call-list-buttons > * {
    margin:0 5px;
}

/*
.external:after {
    background-size: 12px;
    background-image: url(/static/1678363505/img/external.svg?2724c7becef7);
    content: "O";
    background-size: contain;
    color: transparent;
    background-repeat: no-repeat;
    margin-left: 2px;
}*/

.confirm-window {
    display:none;
}


.danger-zone div, #danger-button {
    background: linear-gradient(0deg, #cc0000 0%, #ff0000 100%);
    color:#fff;
    border:1px solid black;
    margin:0 5px;
    font-weight:bold;
    text-align:center;
    padding:2px;
    text-decoration:none;
    cursor:pointer;
}

.interesting {
    background-color:#ffcf33;
    clip-path: polygon(-100px 20px, 100% -10px, 98% 98%, 3% 101%);
}

#instructions iframe {
    /*background-color:white;*/
    /*padding:20px;*/
}

#instructions input, #instructions select {
}

#instructions h2 {
    margin-bottom:5px;
    margin-top:20px;
    font-size:28px;
    line-height:normal;
}


#instructions h2:first-of-type {
    margin-top:10px;
}

#instructions p {
    margin-bottom:10px;
}

/*
#instructions a {
    font-size:14px;
}
    */

#submit {
    font-size:18px;
    color:#000;
    display:block;
    font-weight:bold;
    margin:auto;
    padding:5px;
    margin-top:20px;
    /*border-radius:10px;*/
    text-align:center;
    /*margin-bottom:20px;*/
}

#panic {
    margin-top:25px;
    padding-top:5px;
    border-top:1px dashed #999999;
}

#more {
    display:none;
}

#more p {
}

.results {
    margin-top:20px;
}
.results ol {
    margin-top:10px;
    margin-left:25px; 
}

.results li {
    margin-bottom:20px;
}

.results-little li {
    margin-bottom:5px;
}

#more-options {
    display:flex;
    margin-top:10px;
    position:relative;
    justify-content:space-between;
}

#color-options {
    display:flex;
    /*background-color: #ffc301;*/
    padding:5px 0;
    align-items:flex-start;
    justify-content:center;
    margin-top:20px;
}

/*
#mini-color-options {
    display:flex;
    align-items:center;
    justify-content:center;
}

#mini-color-options > div {
    padding:0px 5px;
    margin-left:2px;
    margin-right:2px;
    cursor:pointer;
}*/

#mini-color-options .splotch-color {
    width:10px;
    height:10px;
}

#color-options > div {
    margin-left:5px;
    margin-right:5px;
    flex:1;
}

.splotch {
    /*
    width:30px;
    height:30px;
    box-shadow: #ccc 0 0 2px 0;*/
    /*width:60px;*/
}

.splotch-color {
    box-shadow: #ccc 0 0 2px 0;
    height:40px;
    width:40px;
    margin:auto;
}

.splotch-label {
    margin-top:4px;
    font-size:14px;
    word-break:break-all;
    text-align:center;
}

#id_border_thickness {
    text-align:center;
    display:block;
    width:40px;
    margin:auto;
}

#clear-link {
    text-align:right;
    margin-bottom:0px;
    margin-top:0px;
    top: -3px;
    right: 0;
    position:relative;
}

.error {
	color:#ff0000;
	font-weight:bold;	
}

.error-list {
	color:#ff0000;
	margin-top:10px;
}


#half-page-wrapper .errorlist {
    margin-bottom:1px;
}

#half-page-wrapper, #full-page-wrapper {
    background-color:#f1f1f1;
    padding-top:20px;
    padding-bottom:20px;
    max-width:520px; /* for ie7 */
    padding-left:20px;
    padding-right:20px;
}

#full-page-wrapper {
    max-width:100%;
    width:100%;
}

#freeloader {
	width:50%;
	float:left;
	border-right:1px solid #ffc301;
    padding-right:50px;
}

#supporter {
	width:50%;
	float:right;
    padding-left:50px;
}

#supporter ul {
	margin-top:15px;	
}

#supporter ul li {
	margin-bottom:5px;
}

#freeloader h2, #supporter h2 {
	font-size:18px;
}

#freeloader h2 small {
	color:#333;
	font-style: italic;
}

#freeloader .errorlist {
    margin-bottom:1px;
}

#freeloader label {
    margin-bottom:1px;
}


#page-wrapper {
    background-color:#f1f1f1;
    padding-top:20px;
    padding-bottom:20px;
    padding-left:20px;
    padding-right:20px;
}

.clear {
    clear:both;
}

#register {
    width:100%;
}

.errorlist {
	color:#ff0000;
	margin-left:0px;
	list-style-type:none;
    line-height:1.3;
}

.errorlist li {
	margin-left:0;
    font-weight:bold;
}

.errorlist a {
}

.success {
    color:#008833;
    font-weight:bold;
}

#template-list {
	margin-top:10px;	
}

#template-list thead th 
{
	font-size:16px;
	font-weight:bold;
	padding-left:10px;
	padding-right:10px;
	border-bottom:3px solid #ffc301;
	border-top:0px solid #ffc301;
	padding-top:4px;
	padding-bottom:4px;
}

#template-list td 
{
	padding-left:10px;
	padding-right:10px;
	padding-top:4px;
	padding-bottom:4px;
}

#template-list td.counter
{
	font-size:10px;
	font-weight:bold
}

#template-list tr.even td {
	background-color:#ccc;
}

#tooltip {
	position:absolute;
	border:1px solid #333;
	background:#000;
	padding:2px 5px;
	color:#fff;
	display:none;
	max-width:300px;
	/*
    max-height:100px;
    overflow:auto;*/
	font-size:12px;
    z-index:1000;
    line-height:1.3;
}


#tooltip p:last-child {
    margin-bottom:0;
}

#tooltip a {
    color:#fff;
}

.tooltip-top:after,
.tooltip-bottom:after,
.tooltip-left-down:after,
.tooltip-left-up:after,
.tooltip-right-down:after,
.tooltip-right-up:after {
    padding: 0;
    margin: 0;
    border-color:#000;
    border-width:10px;
    content: ' ';
    height: 0;
    pointer-events: none;
    position: absolute;
    width: 0;
    line-height:1.3;
}

.tooltip-top:after {
    border-top-style:solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    top: 100%;
    left: 50%;
    margin-left: -10px;
}

.tooltip-bottom:after {
    border-bottom-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    top: -10px;
    left: 50%;
    margin-left: -10px;
}

.tooltip-left-down:after {
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    border-left-style: solid;
    top: 0px;
    left: 100%;
    margin-top: 0px;
}

.tooltip-left-up:after {
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    border-left-style:solid;
    top: 100%;
    left: 100%;
    margin-top: -20px;
}

.tooltip-right-up:after {
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    border-right-style: solid;
    top: 100%;
    left: -10px;
    margin-top: -20px;
}

.tooltip-right-down:after {
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    border-right-style: solid;
    top: 0%;
    left: -10px;
    margin-top: 0px;
}

.help {
    color:#d630c1;
    font-weight:bold;
    font-size:12px;
}

#security {
    float:right;
    width:150px;
}

#payment-errors {
    color:#ff0000;
    padding-top:10px;
}

.card-box-cell textarea.over {
    background-color:#ffff00;
}

.loading {
    background-image:url('/static/1678363505/img/loading.gif?2724c7becef7');
    background-size: auto !important;
}

.new {
    color:#ff0000;
}

kbd
{
    border-radius:3px;
    box-shadow:0 1px 0 rgba(0,0,0,0.2),0 0 0 2px #fff inset;
    background-color:#f7f7f7;
    border:1px solid #ccc;
    border-radius:3px;
    box-shadow:0 1px 0 rgba(0,0,0,0.2),0 0 0 2px #fff inset;
    color:#333;
    display:inline-block;
    font-family:Arial,Helvetica,sans-serif;
    font-size:11px;
    line-height:1.4;
    margin:0 .1em;
    padding:.1em .6em;
    text-shadow:0 1px 0 #fff;
}

.active-cell textarea {
    /*text-decoration:underline;*/
}

@media print {
    #header {
        display:none;
    }

    .noprint {
        display:none;

    }
}

#id_size {
    padding:5px;
    font-family: Arial, Arial, Helvetica, sans-serif;
    font-size: 18px;
    border:none;
    box-shadow: #ccc 0 0 2px 0;
    height:100%;
}

#id_extra_words {
    width:100%;
    height:150px;
}

#add-another-row, #more-link {
    /*margin-top:5px;*/
    /*margin-bottom:15px;*/
    display:inline-block;
}

#more-link, #more {
    margin-top:0;
    /*margin-bottom:10px;*/
}

.card td.extra-words {
    height: auto;
    border-left: none;
    border-right: none;
    padding-top: 15px;
    font-style: italic;
}

#has-free-space input {
}

.pagination {
    font-weight:bold;
}

.pagination {
    margin-top:20px;
}

.pagination a {
    display:inline-block;
    border:3px solid black;
    padding:5px;
    background-color:#333;
    text-align:center;
    margin-right:2px;
    margin-left:2px;
    margin-bottom:5px;
    font-size:18px;
    color:#fff;
    min-width:50px;

}

a.page-current {
    background-color:#ffc301;
}

.step-links {
	text-align:center;
}

.box-word {
    border:1px dotted gray;
    padding:1px;
    margin:1px;
    display:inline-block;
}

/*
.box-word:hover {
    background-color:#fff;
}*/

    /*
#search-preview {
    float:right;
    width:50%;
    border:5px solid #ffc301;
    background-color:#fff;
    padding:0px;
    border-radius:10px;
    box-sizing:border-box;
    z-index:2;
    position:relative;
}
*/

.content-area {
    padding-top:20px;
    padding-bottom:20px;
    padding-left:20px;
    padding-right:20px;

}

#search-wrapper {
    background-color:#f1f1f1;
    padding-top:20px;
    padding-bottom:20px;
    padding-left:20px;
    padding-right:20px;
}

/*
.one-line {
    white-space: nowrap;
    overflow:hidden;
}*/

.svg-triangle {
    position:absolute;
    top:250px;
    left:-25px;
    fill:#ffc301;
}

.member-benefits li {
    line-height:1.3;
}

.hover-preview a {
    font-size:16px;
}

.hover-preview:hover {
}

#print-box {
    text-align:center;
    margin-top:10px;
}

#search-box {
    width:100%;
    display:block;
    border:none;
    outline:none;
}

#search-box:focus, #search-box:active {
    outline:none;
}

a.preview-link {
    font-size:12px;
}

.created-info {
    float:right;
}

#username-available {
    font-size:12px;
}

.pretty-forms label {
    margin-top:15px;
}

.pretty-forms input[type='text'], .pretty-forms input[type='password'], .pretty-forms input[type='email']{
    padding:5px;
    font-size:16px;
    border-radius: 3px;
    border: 1px solid #b8c3cc;
    width:100%;
    display:block;
}

.cell-spacing tr td {
    padding-left:10px;
    padding-right:10px;
}

.cell-spacing tr td:first-child {
    padding-left:0;
}

.cell-spacing tr td:last-child {
    padding-right:0;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.half {
    width:50%;
    float:left;
}

.row .half:first-child {
    padding-right:10px;
}

.row .half:last-child {
    padding-left:10px;
}


#popular {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}

#popular > a {
    width:30%;
    align-items:center;
    text-align:center;
    padding:10px;
}

#popular a {
    font-size:18px;
    display:block;
}

#popular a:hover {
    background-color:#ffc301;
}

#popular img {
    margin-top:5px;
}



/**
 * The CSS shown here will not be introduced in the Quickstart guide, but shows
 * how you can use CSS to style your Element's container.
 */
.StripeElement {
    display:block;
    font-size:20px;
    width:100%;
    border:1px solid #b8c3cc;
    border-radius:3px;
    padding:3px;
    background-color:#fff;
}

.ElementsApp, .ElementsApp .InputElement {
    font-family:arial;
}

.StripeElement--focus {
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

.card-error {
	color:#ff0000;
    font-weight:bold;
}

.third {
    padding-right:30px;
    float:left;
    width:33%;
}


.promise {
    background-color: #fff587;
    padding: 10px;
    line-height:1.3;
}

#trust {
    margin-top:20px;
    margin-bottom:20px;
}
#trust img {
    padding-left:5px;
    padding-right:5px;
}

#order-total {
    width:100%;
    margin-top:10px;
    line-height:18px;
}

#order-total tr td:last-child {
    text-align:right;
}

#order-total tr td {
    padding-bottom:5px;
    padding-top:5px;
}

#order-total .total td {
    border-top:3px solid black;
}

.inform-options .third {
    border:5px solid #ffc301;
    border-radius:10px;
    padding:10px;
    background-color:#fff;
    width:calc(33% - 20px);
    margin-right:10px;
    margin-left:10px;
}

.inform-options h3 {
    text-align:center;
    font-size:18px;
    font-weight:bold;
    margin-bottom:15px;
}

.center {
    text-align:center;
}

#search-list {
    display:flex;
    margin-bottom:10px;
    flex-wrap:wrap;
    justify-content:space-around;
}

#search-list > div {
    width:390px;
    margin-bottom:30px;
    margin-top:30px;
    /*overflow:hidden;*/
    padding:10px;
}

#search-list > div:hover .bingo-svg-wrapper{
    box-shadow:#ffc301 0 0 10px 0;
}

.search-list-preview {
}

.search-list-details {
    text-align:center;
}

.search-list-details h3 {
    font-size:18px;
}

.edit-options {
    display:flex;
    justify-content:flex-start;
    margin-bottom:3px;
    align-items:flex-end;
    flex-wrap:wrap;
}

.edit-options img {
    width:24px;
}

.edit-options a {
    color:#000;
}
.edit-options div {
    margin-left:5px;
}

.edit-options div.dot:after {
    margin-left:5px;
    content:"\2022";
}

.edit-options div.thumbs {
    display:flex;
    margin-left:auto;
}

.thumbs {
    position:relative;
}

/*
.search-list-preview .thumbs {
    position: absolute;
    display: flex;
    flex-direction: column-reverse;
    right: 0;
    top: 0;
    bottom: 13px;
    justify-content: space-between;
    align-items:flex-end;
}

.search-list-preview div.thumbs-down {
    margin-right:2px;
}*/

.search-list-details > h3 {
    position:relative;
}

/*
.thumbs > div {
    position:relative;
    z-index:2;
    cursor:pointer;
    background-repeat:no-repeat;
    background-position:50% 50%;
    margin-left:1px;
    margin-right:1px;
    transition:.1s background-position ease-in;
}*/

.bingo-svg-wrapper .thumbs-down {
}

.thumbs-down-wrapper {
    position:absolute;
    right:0;
    top:calc(100% - 30px);
}

.thumbs-up, .thumbs-down {
    position:relative;
    z-index:2;
    cursor:pointer;
    background-repeat:no-repeat;
    background-position:50% 50%;
    margin-left:1px;
    margin-right:1px;
    transition:.1s background-position ease-in;
}

.thumbs-up, .thumbs-up.frozen:hover {
    /*top:7px;*/
    background-image:url('/static/1678363505/img/thumbs-up-light.svg?2724c7becef7');
    width:24px;
    height:24px;
    background-size:85% 85%;
    background-position:50% 50%;
}

.thumbs-up:hover {
    background-position:50% 0%;
    /*
    background-image:url('/static/1678363505/img/thumbs-up-light-active.svg?2724c7becef7');*/
}

.thumbs-up.thumbs-up-active,  .thumbs-up.thumbs-up-active.frozen:hover {
    background-image:url('/static/1678363505/img/thumbs-up-light-active.svg?2724c7becef7');
    background-position:50% 0%;
}

.thumbs-up.thumbs-up-active:hover {
    background-image:url('/static/1678363505/img/thumbs-up-light-active.svg?2724c7becef7');
    background-position:50% 50%;
}



div.thumbs-down {
    background-image:url('/static/1678363505/img/flag-duotone.svg?2724c7becef7');
    /*top:12px;*/
    width:20px;
    height:20px;
    background-size:contain;
    opacity:.5;
}

.thumbs-down:hover, .thumbs-down.thumbs-down-active {
    background-image:url('/static/1678363505/img/flag-duotone-active.svg?2724c7becef7');
    background-position:50% 100%;
    opacity:1;
}

#search-list .thumbs-down-wrapper {
    top:calc(100% - 22px);
}

#search-list .thumbs-up {
    position:absolute;
    display:inline-block;
    width:20px;
    height:20px;
    /*background-size:20px 20px;*/
    margin-top:-2px;
    margin-left:5px;
}

div#thumbs-down-menu {
    position:absolute;
    /*top:calc(100% + 20px);*/
    background-color:#fff587;
    width:150px;
    /*margin-left:-50%;*/
    padding:10px;
    border:2px solid black;
	/*left:-25px;*/
    z-index:4;
}
#thumbs-down-menu:after, #thumbs-down-menu:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

#thumbs-down-menu:after {
	border-color: rgba(255, 245, 135, 0);
	border-bottom-color: #fff587;
	border-width: 15px;
	margin-left: -15px;
}
#thumbs-down-menu:before {
	border-color: rgba(0, 0, 0, 0);
	border-bottom-color: #000000;
	border-width: 18px;
	margin-left: -18px;
}


div#thumbs-down-menu label {
    display:flex !important;
    margin-bottom:5px;
    align-items:center;
}

.submit-rating-wrapper {
    margin-top:10px;
    text-align:center;
}


/*
.thumbs-down.thumb-active {
    background-image:url('/static/1678363505/img/thumbs-down.svg');
    background-position:50% 100%;
}

.thumbs-down.thumb-active:hover {
    background-image:url('/static/1678363505/img/thumbs-o-down.svg');
    background-position:50% 50%;
}*/


.edit-options-date {
    margin-left:auto;
}


.corner-icon {
    position:absolute;
    top:0;
    left:0;
    z-index:2;
}

/* new!*/

.container {
    display:flex;
    justify-content: space-between;
    flex-direction:row-reverse;
    align-items:flex-start;
}

.container.reverse {
    flex-direction:row;
}

.container.reverse > div:first-child {
    flex:1;
}


.container > div {
}

.welcome {
    /* background-color: #ffc301; */
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 20px;
    /*clip-path: polygon(-4% 9%, 104% 10%, 99% 98%, 3% 90%);*/
    clip-path:polygon(-4% 3%, 100% -2%, 98% 104%, 3% 90%);
    padding-top: 32px;
    padding-bottom: 27px;
    /* border-radius: 10px; */
    /* border-top: 5px solid #ffc301; */
    /* border-bottom: 5px solid #ffc301; */
    margin-top: 5px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, rgba(255,195,1,1) 0%, rgba(255,195,1,1) 50%, rgba(255, 195, 1, 0.89) 100%);
    /* border: 5px solid #ffc301; */
}

/*
.welcome:after {
    background-color:#000;
    transform:rotate(90deg);
    width:100px;
    content:"hi";
    display:block;
}*/

.welcome p {
    line-height:1.3;
    font-size:18px;
}

.search {
    text-align:center;
    display:flex;
    justify-content:center;
}

.search input {
    font-size:18px;
    padding:5px;
    border:1px solid black;
    flex:1;
    max-width:250px;
}

.search button {
    /*
    background:#333;
    color:white;
    border:none;*/
    font-size:18px;
}


.help-hand {
    font-family:"cinnamoncake";
    color:#ffa200;
    font-weight:bold;
    transition: opacity 200ms ease;
}

.messages {
    color:#ffa200;
    font-weight:bold;
}

#help1 {
    font-size:22px;
    position:absolute;
    width:200px;
    transform:translate(-259px, 200px) rotate(3deg);
}

#help2 {
    font-size:16px;
    position:absolute;
    width:200px;
    transform:translate(-220px, 320px) rotate(-5deg);
    opacity:0;
}

#help3 {
    font-size:28px;
    position:absolute;
    width:200px;
    transform: translate(-47px, -161px) rotate(17deg);
    z-index:1;
}

.instructions-offset {
    margin-top:170px;
}

.examples {
    display:flex;
    justify-content:space-around;
    margin-bottom:25px;
    margin-top:20px;
}

.examples > div {
    text-align:center;
    margin-left:10px;
    margin-right:10px;
    border:5px solid #f1f1f1;
    padding:5px;
    background-color:#fff;
}

.examples img {
    cursor:pointer;
    max-width:100%;
    height:auto;
}

.examples > div:hover {
    border:5px solid #333;
}

.card-title {
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.card-title > div:first-child {
    flex:1;
    margin-right:20px;
}


.card-letters input {
    width:40px;
    text-align:center;
    font-family:Arial, Arial, Helvetica, sans-serif;
    font-size:18px;
    text-align:center;
    border:none;
    box-shadow: #ccc 0 0 2px 0;
    height:30px;
}

.card-boxes .active-cell {
    outline-color: #ffc300;
    outline-width: 4px;
    outline-style: solid;
}

.extra-words {
    height: auto;
    border-left: none;
    border-right: none;
    padding-top: 15px;
    font-style: italic;
    text-align:center;
    font-size:16px;
    margin-bottom:10px;
}

.card-boxes-extra {
    transition: height 200ms ease;
}

.card-boxes-extra-adder {
    text-align:center;
    background-color: #ffc301;
    padding:5px;
    font-weight:bold;
    /*margin-top:5px;*/
    /*margin-bottom:20px;*/
    cursor:pointer;
    position:relative;
    top:-20px;
    /*
    position:absolute;
    right:20px;*/
}

.card-boxes-extra-adder:hover {
    background-color: #ffc301;
}

.modal-wrapper {
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background-color:rgba(255,195,1,.9);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:100;
}

.modal {
    background-color:#fff;
    max-width:500px;
    padding:10px;
    border-radius:10px;
    line-height:1.3;
    max-height:100%;
    overflow:auto;
}

.modal button {
    margin:auto;
    display:block;
    padding:5px;
}

.modal #id_email {
    padding:3px;
}

.modal .errorlist {
    margin-top:5px;
}

.modal label {
    font-size:16px;
    display:block;
    margin-top:20px;
    font-weight:bold;
}

.modal input[type='text'] {
    width:100%;
    font-size:16px;
}

.modal p {
    font-size:16px;
}

.modal li {
    font-size:16px;
    margin-bottom:3px;
}

p.modal-warning {
    font-family:"cinnamoncake";
    font-size:28px;
    color:#ffa200;
    font-weight:bold;
    text-align:center;
    clear:both;
}

button.modal-close {
    float: right;
    position: relative;
    top: -10px;
    right: -10px;
    font-weight: bold;
    font-size: 18px;
    z-index: 2;
    display: inline-block;
    background:none;
    background-color: #000;
    color: white;
    cursor:pointer;
    padding-left:5px;
    padding-right:5px;
}

.modal-inner {
    /*display:flex;
    justify-content:space-between;*/
}

.modal-inner > div {
    /*width:45%;*/
}

.modal #order-total {
    font-size:16px;
}

#card-errors {
    padding-top:2px;
    color:#ff0000;
    font-size:16px;
}

.template-list-header {
    display:flex;
	border-bottom:3px solid #ffc301;
    padding:5px;
}


.template-list-header > div {
	font-size:16px;
	font-weight:bold;
	padding-bottom:4px;
}

.template-list-header > div:last-child {
    margin-left:auto;
    text-align:right;
}

a.template-list-row-title {
    font-size:18px;
    font-weight:bold;
}

.template-list-row-second {
    margin-top:5px;
    display:flex;
}

.template-list-row-second div:last-child {
    margin-left:auto;
}

.template-list-links a {
    color:#000;
    display:inline-block;
    margin-right:5px;
    font-size:14px;
    text-decoration:none;
    /*border:1px solid #ffc301;*/
    padding:2px;
    /*font-weight:bold;*/
    background-color:#fff;
    background-color:#ebebeb;
}

/*
.template-list-row.even  .template-list-links a {
    background-color:#ebebeb;
}*/

.template-list-links a:hover {
    background-color:#ffc301;
}

#account-menu li {
    margin-bottom:5px;
    font-size:16px;
}

.permission-tag {
    display:inline-block;
    font-weight:bold;
    font-size:14px;
}


.permission-tag-1 {
    color:#009400;
}

.permission-tag-2 {
    color:#ff8800;
}

.permission-tag-4 {
    color:#ff0000;
}


.template-list-header small {
    font-size:12px;
}

.template-list-row {
    /*display:flex;*/
    padding:10px 5px;
}


.template-list-row.even {
	background-color:#e0e0e0;
}

.template-list-row small {
}

.test-active-sort-asc:after{
    content:"\25b2";
    font-size:12px;
}

.test-active-sort-desc::after {
    content: "\25bc";
    font-size: 12px;
}

#mini-menu {
    background-color: #ffc301;
    position:absolute;
    top:200px;
    display:flex;
    align-items:center;
    width:35px;
    transition-property:top, left, opacity;
    transition-duration:.25s;
    opacity:0;
}

#mini-menu-inner {
    width:100%; /* for IE 11 */
    display:flex;
    align-items:center;
    flex-direction:column;
}

#id_margin {
    background-color:transparent;
    width:100%;
    border:none;
    border-bottom:1px solid black;
    text-align:center;
}

#mini-menu-inner > div.toolbar-icon {
    padding-left:2px;
    padding-right:2px;
    /*border:1px solid black;*/
    width:32px;
    text-align:center;
    height:32px;
    cursor:pointer;
}

#mini-menu-inner > div.toolbar-icon:hover {
    background-color:#ff8800;
}

#mini-menu img {
    width:24px;
    padding-top:4px;
}

#flipper img {
    width:18px;
}

.valign-box {
	font-family: TimesNewRoman,Times New Roman,Times,Baskerville,Georgia,serif; 
	font-weight:bold;
	width:24px;
    padding-top:5px;
}

.valign-box rect {
    stroke: black;
    stroke-width:1;
    fill:none;
}

#pages {
    text-align:center;
}

#print-form {
}

#print-form label {
}

#print-form input {
    margin-left:0;
}

#per-page, #pages {
    height:25px;
}

#id_border_width {
    width:100%;
}

#privacy h3 {
    font-weight:bold;
}

#privacy label {
    display:flex;
    flex:1;
    margin-bottom:10px;
}

#privacy input {
    margin-left:0;
}

.bingo-svg-wrapper {
    padding:15px 20px 20px 20px;
    box-shadow: #d8d8d8 0 0 10px 0;
    position:relative;
}

.bingo-svg-wrapper img {
    max-width:100%;
    height:auto;
}

.ie-svg-padder {
    display:none;
}

#popular a {
    text-decoration:none;
}

#popular a > div:first-child {
    text-decoration:underline;
    margin-bottom:5px;
}

.bingo-card-svg text {
    stroke-width:0 !important;
}

@supports (-ms-ime-align:auto) {
    .bingo-card-svg text {
        filter:none !important;
        stroke-width:4 !important;
    }
}

.better-headings h1,
.better-headings h2,
.better-headings h3 {
    line-height:1.3;
}

.better-headings {
    line-height:1.3;
}

.better-headings h2 {
    font-size:24px;
}

.better-headings p {
    line-height:1.3;
}

.better-headings h3 {
    font-size:18px;
    font-weight:bold;
}

.feature-stars {
    display:flex;
    justify-content:space-between;
    text-align:center;
    margin-top:20px;
    margin-bottom:20px;
    position:relative;
}

/*
.feature-stars h3:after,
.feature-stars h3:before {
    content:"\1f7ca";
    color:#000;
    margin:0 5px;
    top:5px;
    font-size:24px;
    line-height:1.5;
}*/

.feature-stars > div {
    flex:1;
    margin-left:30px;
    margin-right:30px;
    position:relative;
}

.cards-featured {
    display:flex;
}

.card-feature {
    text-align:center;
    flex:1;
}

.card-feature h3 a {
    text-decoration:none;
    color:black;
}

.card-feature {
    margin-left:10px;
    margin-right:10px;
}

.card-feature h3 {
    text-align:center;
}

.card-feature img {
    padding:0px 0;
    max-width:100%;
    display:block;
    margin:10px auto;
    height:auto;
}

.card-options {
    display:flex;
    justify-content:space-around;
    font-size:18px;
}

.card-categories {
    display:flex;
    align-items: flex-start;
    justify-content: space-between;
}

.card-category {
    display:flex;
    width:31%;
    padding:10px 20px;
    background-color:#f1f1f1;
    align-items:flex-start;
    box-shadow: #ccc 0 0 2px 0;
	margin-bottom:20px;
}



.card-category h3 {
    margin-bottom:5px;
}

.card-category h2 {
    text-align:center;
}

.card-category img {
    max-width:100%;
    box-shadow: #ccc 0 0 2px 0;
    height:auto;
}

.card-category ul {
    list-style-type:circle;
}

.card-category ul li {
    margin-bottom:5px;
}

.card-category a {
    color:black;
}

.card-category-sublinks {
    text-align:center;
}

.bullet-sep > span:after {
    content:"\2022";
}

.bullet-sep > span:last-child:after {
    content:"";
}

.card-category-thumbnail {
    max-width:200px;
}

.popular-terms {
    font-size:18px;
    margin-top:10px;
}

.print-example {
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

.print-example > div {
    max-width:19%;
    font-size:12px;
}

.online-example > div {
    max-width:32%;
    font-size:12px;
}

.print-example img {
    max-width:100%;
    transition:.15s ease-in;
}

/*
.print-example img:active {
    transform:scale(3);
    transform-origin:50% 50%;
}*/

.share-block {
    display:flex;
    align-items:center;
    border:1px solid #999;
    padding:2px;
    background-color:#efefef;
    margin-bottom:20px;
}

.share-card-image {
    text-align:center;
}

.share-card-iframe {
    overflow:hidden;
    max-width: 160px;
    max-height:160px;
}

.clippy {
    width:18px;
    cursor:pointer;
    padding:2px;
    vertical-align:middle;
    margin-right:5px;
}

.share-block code {
    overflow:auto;
    flex:1;
    white-space:nowrap;
    margin-right:5px;
    border: none;
    background-color: transparent;
    padding: 0px;
}

code {
    border: 1px solid #999;
    background-color: #efefef;
    padding: 2px;
    font-family:monospace;
}

pre {
    border: 1px solid #999;
    background-color: #efefef;
    padding: 2px;
    font-family:monospace;
    text-align:left;
}

pre code {
    border: none;
    background-color: transparent;
    padding: 0px;
}

#more-settings, #more-settings2, #more-settings3 {
    margin-left:20px;
    font-size:14px;
}

#more-settings {
    margin-bottom:15px;
}

#marker-placeholder img {
    max-width:150px;
    max-height:150px;
}

.featured {
    background-color:#fff587;
}

.payment-tabs {
    align-items:center;
    font-size:16px;
}

.payment-tabs > a {
    display:inline-block;
    margin:0 5px;
    padding:5px;
    background-color:white;
    cursor:pointer;
    margin-bottom:10px;
    text-decoration:none;
    color:black;
}

#payment-modal .payment-tabs > a {
    background-color:#efefef;

}

.payment-tab {
    display:none;
}

a.payment-tab-active,
#payment-modal a.payment-tab-active {
    background-color: #fff587;
}

.advanced {
    display:none;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
   /* add your IE10-IE11 css here */   
	.ie-svg-wrapper {
		position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
	}

	.ie-svg-padder {
        position:relative;
        height:0;
        width:100%;
        padding-top:calc(5/4*100%);
        display:block;
    }
}

/*
@media only screen and (max-width : 960px) {
    #instructions {
        max-width:35%;
    }
}*/

@media only screen and (max-width : 600px) {
    #header {
        display:block;
    }
    #nav {
        text-align:center;
        margin-bottom:10px;
        justify-content:center;

    }
    .container {
        display:block;
    }

    #wrapper {
        margin-left:0;
        margin-right:0;
        max-width:100%;

    }
    #card-wrapper, #half-page-wrapper, .card-wrapper {
        max-width:100%;
    }

    #instructions {
        max-width:none;
        width:100%;
        margin-left:0px;
    }

    #header p {
        text-align:center;
        float:none;
        line-height:32px;
        font-size:18px;
    }
    #logo {
        text-align:center;
        display:block;
    }

    #print-box {
        text-align:left;
    }

    .created-info:before {
        content:"/ ";
    }
    .created-info {
        float:none;
    }

    #supporter, #freeloader {
        float:none;
        width:100%;
        border:none;
        padding-left:0;
        padding-right:0;
    }

    #supporter {
        margin-top:30px;
    }

    .third, .inform-options .third {
        width:100%;
        max-width:100%;
        float:none;
        margin-bottom:10px;
    }

    .help-hand {
        display:none;
    }

    .instructions-offset {
        margin-top:20px;

    }

    .examples > div {
        display:none;
    }
    .examples > div:first-child {
        display:block;

    }

    .examples > div:last-child {
        display:block;
    }

    .cards-featured {
        display:block;
    }

    .cards-featured > div:last-child {
        display:none;
    }

    .card-feature {
        margin:10px 0;
    }

    .card-categories {
        display:block;
    }

    .card-category > div {
        width:100%;
    }

    .card-category {
        width:100%;
        text-align:center;
    }

    .print-example {
        display:block;
    }

    .print-example > div {
        max-width:100%;
    }

    .feature-stars {
        display:block;
    }

    .feature-stars > div {
        margin:10px 0;
    }

    #nav2 {
        display:block;
        text-align:center;
    }
    #nav2 a {
        margin:10px 0;
    }
}


.cdiff {
    background-color:yellow;
}

.helpy li {
    margin-bottom:10px;
}

* {
    box-sizing: border-box;
}
body {
    font-family:Arial, Arial, Helvetica, sans-serif;
}
.has-image {
    background-size: contain;
    background-repeat:no-repeat;
    background-position: 50% 50%;
    color:inherit;
    text-shadow:inherit;
    /*
    text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;*/

}

.bingo-word {
    display:flex;
    width:100%;
    height:100%;
    justify-content:center;
}

.header {
    font-family:Arial, Arial, Helvetica, sans-serif;
    font-size:24px;
    padding-top:10px;
    padding-bottom:10px;
}

.cell {
    font-family:Arial, Arial, Helvetica, sans-serif;
    font-size:32px;
    cursor:pointer;
    /* 75 for 4x4*/
    /* 90 for 1x2 */
    /* 150 for 1x1 */
    width: 150px;
    height:150px;
    background-color:#fff;
}

.enlarged {
    font-size:130px;
}

#height-test, #width-test {
    padding:6px; /* adjust to make text fit in box without touching border */
}

#height-test {
    overflow:hidden;
}

#hidden {
    position:absolute;
    top:-5000px;
}

.output {
    margin:auto;
    page-break-after:always;
}

.output-cell {
}

.highlighted {
    /*box-shadow: inset 0 0 0 1000px rgba(255, 195, 17, .5);*/
    background-size: contain;
    background-repeat:no-repeat;
    background-position: 50% 50%;
}

.call-sheet {
    margin-left:50px;
    list-style-type:none;
}

ol.call-sheet {
    margin-top:20px;
}

.call-sheet img {
    max-width:100px;
    max-height:100px;
    margin-top:5px;
    display:block;
}

.call-sheet li {
    font-size:18px;
    padding-bottom:15px;
    width:32%;
    display:inline-block;
    vertical-align:top;
}

#additional-set {
    text-align:center;
    border-top:1px solid black;
    border-bottom:1px solid black;
    padding:5px;
    font-weight:bold;
}

.card-wysiwyg {
    box-shadow: #d8d8d8 0 0 10px 0;
    padding:20px;
    border-color:black;
}

.mini-card .card-wysiwyg {
    padding:3px;
}

.pdf .card-wysiwyg {
    box-shadow:none;
}

.playable .card-box-cell {
    cursor:pointer;
}

.card-size-wrapper {
    /*width:501px;*/
    margin:auto;
}

.card-letters {
    display:flex;
    margin-bottom:20px;
    justify-content:center;
}

.size-7 .card-box-cell-height,
.size-6 .card-box-cell-height,
.size-5 .card-box-cell-height,
.size-4 .card-box-cell-height,
.size-3 .card-box-cell-height {
    margin-top:100%;
}

.card-box-cell {
    position:relative;
}

.card-box-cell-inner {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}

.card-box-cell {
    border-top-width:1px;
    border-right-width:1px;
    border-style:solid;
    border-color:inherit;
}

.size-7 .card-box-cell:nth-child(7n+1),
.size-6 .card-box-cell:nth-child(6n+1),
.size-5 .card-box-cell:nth-child(5n+1),
.size-4 .card-box-cell:nth-child(4n+1),
.size-3 .card-box-cell:nth-child(3n+1) {
    border-left-width:1px;
}

.size-7 .card-box-cell:nth-last-child(-n+7),
.size-6 .card-box-cell:nth-last-child(-n+6),
.size-5 .card-box-cell:nth-last-child(-n+5),
.size-4 .card-box-cell:nth-last-child(-n+4),
.size-3 .card-box-cell:nth-last-child(-n+3) {
    border-bottom-width:1px;
}

.size-7 .card-letters > div, .size-7 .card-boxes > div {
    /*width:100px;*/
    width:calc(100% / 7);
    max-width:150px;
}

.size-6 .card-letters > div, .size-6 .card-boxes > div {
    /*width:100px;*/
    width:calc(100% / 6);
    max-width:150px;
}

.size-5 .card-letters > div, .size-5 .card-boxes > div {
    /*width:100px;*/
    width:calc(100% / 5);
    max-width:150px;
}

.card-boxes {
    margin-left:auto;
    margin-right:auto;
    border-color:inherit;
    perspective: 1000px;
}


/* flip the pane when hovered */
/*
.flipper:hover {
	transform: rotateY(180deg);
}*/

.flipper {
    transition: transform .25s linear;
    transform-style: preserve-3d;
    position: relative;
}

.flipper-flipped {
	/*transform: rotateY(180deg);*/
}

.front, .back {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    transform-style: preserve-3d;
    transition: transform .25s linear;
}

.front {
	z-index: 2;
	/* for firefox 31 */
	transform: rotateY(0deg);
}

/* back, initially hidden pane */
.back {
	transform: rotateY(-180deg);
    /*visibility:hidden;*/
}

.flipper-flipped .back {
    /*visibility:visible;*/
    transform: rotateY(0deg);
}

.flipper-flipped .front {
    visibility:visible;
    transform: rotateY(180deg);
}

.back-tooltip {
    display:none;
}

.flipper-flipped .back-tooltip {
    content:"Back";
    display:inline-block;
    background-color:#ffc300;
    font-size:12px;
    position:absolute;
    bottom:0px;
    left:0;
    color:black;
    padding:2px;
}

.flipper-tooltip {
    display:none;
}

.active-cell .flipper-tooltip {
    display:block;
    cursor:pointer;
    position:absolute;
    bottom:0px;
    right:0;
    background-image:url("/static/1678363505/img/flip.svg?2724c7becef7");
    background-color:#ffc300;
    background-size:10px 10px;
    width:15px;
    height:15px;
    background-repeat:no-repeat;
    background-position:center center;
}



.card-render h1 {
    margin:0;
    /*margin-bottom:20px;*/
    font-size:32px;
    text-align:center;
    /*padding-bottom:20px;*/
    /*padding-bottom:5%;*/
}

.card-render .card-letters {
    font-family: Arial, Arial, Helvetica, sans-serif;
    font-size: 24px;
    /*padding-top: 10px;*/
    /*padding-bottom: 10px;*/
    margin-bottom:0;
    align-items:flex-end;
}

.card-title-pretty {
    display:flex;
    align-items:top;
    justify-content:center;
    text-align:center;
    margin-bottom:2%;
}

.size-7 form {
    max-width:calc(150px * 7);
}

.size-6 form {
    max-width:calc(150px * 6);
}

.size-5 form {
    max-width:calc(150px * 5);
}

.size-4 form {
    max-width:calc(150px * 4);
}

.size-3 form {
    max-width:calc(150px * 3);
}

.size-4 .card-letters > div, .size-4 .card-boxes > div {
    /*width:100px;*/
    width:calc(100% / 4);
    max-width:150px;
}

.size-3 .card-letters > div, .size-3 .card-boxes > div {
    /*width:100px;*/
    width:calc(100% / 3);
    max-width:150px;
}

.card-letters > div {
    text-align:center;
}

.card-boxes {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    /*
    border-right:1px solid black;
    border-bottom:1px solid black;
    background-color:#fff;*/
}

.card-box-cell {
    /*border-left:1px solid black;
    border-top:1px solid black;*/
    /*overflow: hidden;*/ /* is this ok? */
}

.pdf .card-box-cell {
    background-repeat:no-repeat;
    background-size: contain;
    background-position: 50% 50%;
    /*
    position:relative;
    overflow:hidden;*/
}

.card-boxes textarea {
    vertical-align: middle;
    text-align: center;
    border: none;
    font-family: Arial, Arial, Helvetica, sans-serif;
    font-size: 18px;
    overflow: auto;
    padding: 2px;
    resize: none;
    width:100%;
    height: calc(100% - 2px);
    padding-top:40px;
    overflow-wrap:normal;
    overflow:hidden;
    line-height:normal;
    outline:none;
}

.card-wysiwyg {
    margin-left:auto;
    margin-right:auto;
}

#menu-expander {
    width: 35px;
    height: 35px;
    border-radius: 10%;
    background-image: url(/static/1678363505/img/bars.svg?2724c7becef7);
    background-size: 25px 25px;
    background-repeat: no-repeat;
    background-position: center;
    z-index:10;
    /*background-color: #009adb;*/
    cursor:pointer;
    user-select:none;
    background-color:rgba(255,255,255,.8);
}

#mini-menu2.menu-expanded #mini-menu2-content {
    display:flex;
    flex-wrap:wrap;
    line-height:1.5;

}


#mini-menu2 {
    position:absolute;
    right:5px;
    bottom:5px;
    z-index:12;
    display:flex;
    border:1px solid transparent;
    flex-direction:row-reverse;
    box-shadow:#ccc 0 0 10px 0;
}

#mini-menu2-content {
    display:none;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    background-color: white;

}

#mini-menu2 img {
    width:20px;
    height:20px;
    cursor:pointer;
}

#clear-puzzle {
    cursor:pointer;
}

#mini-menu2-content > div {
    margin-left:10px;
    margin-right:10px;
}


#mini-menu2:hover, #mini-menu2.menu-expanded {
    /*border:1px solid black;*/
    box-shadow:#ccc 0 0 10px 0;
}

.print-icon {
    font-size:18px;
    cursor:pointer;
    /*margin-left:auto;*/
}

#mini-menu2 a {
    text-decoration:none;
    font-weight:bold;
    color:#000;
    cursor:pointer;
}

.help-box {
	position: relative;
	background: #fff587;
	border: 2px solid #000000;
}
.help-box:after, .help-box:before {
	top: 100%;
	right:0px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.help-box:after {
	border-color: rgba(255, 245, 135, 0);
	border-top-color: #fff587;
	border-width: 15px;
	margin-right: 0px;
}
.help-box:before {
	border-color: rgba(0, 0, 0, 0);
	border-top-color: #000000;
	border-width: 18px;
    position: absolute;
    bottom: 0;
    right: -3px;
}

@media print {
    #mini-menu2 {
        display:none;

    }

    .create-card {
        display:none;
    }

    #card-wrapper, .card-wrapper {
        background-color:transparent;
        padding:0;
    }

    #footer {
        display:none;
    }

    .wrapper {
        max-width:none;
    }
}



#bingo-background-wrapper {
    z-index:-1;
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    opacity:.7;
    filter:blur(10px);
    overflow:hidden;
}


.create-card {
    background-color: #fff587;
    max-width: 500px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: #ccc 0 0 2px 0;
    border:2px solid black;
}

.create-card, .create-card li {
    line-height:1.3;
    font-size: 18px;
}

.create-card form {
    text-align:center;
}

.create-card ul, .create-card ol {
    /*
    display:table;
    margin:0 auto;*/
    text-align:left;
    margin-left:25px;
}

.create-card ol li {
    list-style: decimal;
}

.create-card ul li {
    list-style: circle;
}

/*
.create-card li {
    line-height:1.3;
}*/



.word-list {
	position:relative;
    line-height:0;
}

.word-list-item {
    align-items:center;
    text-align:center;
    page-break-inside: avoid;
    /*display:inline-block;*/
    border:2px dashed black;
    width:100px;
    line-height:0;
    display:inline-block;
    box-sizing:content-box;
}

.word-list-item-pair {
    width:233px; /* (100[div width] / 150[svg width]) = (x[div width] / 350[svg width]) => x = 100/150 * 350 = 233*/
}

.word-list-legend {
    text-align:left;
    line-height:normal;
    color:black;
    background-color:white;
}

.word-list-legend span {
    border-right:1px solid black;
    border-bottom:1px solid black;
    display:inline-block;
    padding:2px;
    font-size:100%;
}

.word-list-col {
    font-size:28px;
    margin-top:10px;
    margin-bottom:5px;
}


.layout_default .picker_clear {
	-webkit-box-ordinal-group: 2;
	order: 1
}

.picker_wrapper .picker_palette {
	width: 100%;
	order: 1;
	display: flex;
	/* align-items: center; */
	/*justify-content: center;*/
	margin-top: 0;
	margin-bottom: 0;
	flex-wrap:wrap;
/*
	margin-left:-2px;
	margin-right:-2px;*/
}

.picker_wrapper .picker_splotch {
	/*flex:1;*/
    width: 17px;
	height:19px;
    margin: 4px 4px;
    box-shadow: 0 0 0 1px silver;
}

.picker_wrapper .picker_splotch:hover {
    box-shadow: 0 0 0 3px silver;
}

.picker_wrapper .picker_splotch.picker_splotch_active {
    box-shadow: 0 0 0 3px yellow;
}

.picker_transparent {
    background-image:url('/static/1678363505/img/x.svg?2724c7becef7');
    background-position:center;
}
