*,
*:before,
*:after {
   box-sizing: border-box;
}
:root {
    --main-text-color: #002157;
    --site-title-color: #c1d9ff;
}
body {
   font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
   margin: 0px;
}
fieldset {    
    width: -webkit-fill-available;
}

article h1 {
    font-size: 3em;
    line-height: 1.3em;
}
article h2 {
    font-size: 2em;
    line-height: 1.3em;
}
article h3 {
    font-size: 1.8em;
    line-height: 1.3em;
}
article h4 {
    font-size: 1.7em;
}
article h5 {
    font-size: 1.5em;
}
article h6 {
    font-size: 1.25em;
}
footer nav li a {
    color: #fff;
}
var#password-entropy {
    color: #3fff00;
    font-weight: 800;
    font-family: 'FontAwesome';
    letter-spacing: 0.2em;
    text-shadow: 1px 1px 0px #0000ff;
}
a {
    text-decoration: none;
}

/* Styling and Behaviors for the dropdown character-selection buttons */
body {
    counter-reset: enabled-chars enabled-ucalpha enabled-lcalpha enabled-numbers enabled-symbols;
}
input[type="checkbox"].ucalpha-checklist:checked {
    counter-increment: enabled-ucalpha enabled-chars;

}
input[type="checkbox"].lcalpha-checklist:checked {
    counter-increment: enabled-lcalpha enabled-chars;

}
input[type="checkbox"].numbers-checklist:checked {
    counter-increment: enabled-numbers enabled-chars;

}
input[type="checkbox"].symbols-checklist:checked {
    counter-increment: enabled-symbols enabled-chars;

}
#ucalpha-checklist > label > div > p var::after {
    content: counter(enabled-ucalpha);
}
#lcalpha-checklist > label > div > p var::after {
    content: counter(enabled-lcalpha);
}
#number-checklist > label > div > p var::after {
    content: counter(enabled-numbers);
}
#symbols-checklist > label > div > p var::after {
    content: counter(enabled-symbols);
}
#character-count > p > var::after {
    content: counter(enabled-chars);
    margin: 0 0;
}
[id$="checklist"] > label > div > p, 
#character-count > p {
    font-weight: 100;
    font-style: normal;
    padding: 5px 10px 3px 14px;
    margin: 12px 0 0 0;
    color: #005fa3;
    background-color: #c1d9ff;
    border: 1px solid #b4befd;
    border-radius: 3px;
}
[id$="checklist"] > label > div > p var,
#character-count > p var {
    font-style: normal;
    color: green;
    font-weight: 900;
    
}
fieldset#symbols-checklist:hover fieldset {
    display: block !important;
}
fieldset[id$="checklist"] label {
    display: inline-block !important;
    margin: 4px -4px;        
}     


label[for="32"]:after {
    content: "space";
    padding: 0 1.1em;
}
        
.checkboxlabel span {
    font-family: monospace;
    letter-spacing: 0.2em;
    font-weight: 600;
    padding: 1.5em 2em;

}        
label.checkboxlabel input[type="checkbox"] ~ div {
    display: none;
}       
label.checkboxlabel input[type="checkbox"]:checked ~ div {
    display: block;
    padding: 10px 10px 0 10px;
}
input[type="checkbox"][class$="checklist"] {
     width: 0;
     height: 0;

 }
input[type="checkbox"][class$="checklist"] + label {
    color: #e0e1ff;
    text-shadow: 1px 1px 0px #ff0000;
    padding: 0.35em 0.5em 0.2em 0.7em;
    font-size: 0.95em;
    border: 1px solid #ff0000;
    border-radius: 7px;
    box-shadow: 2px 2px 1px 0px inset #4d90fe, 
                -1px -1px 1px 0px inset #ff9999;
    background-color: #d8ccff;
}

input[type="checkbox"][class$="checklist"]:checked + label {
        /*counter-increment: enabled-chars;*/
    color: #002157;
    border: 1px solid #b8ff99;
    /* background-color: #d1d3ff; */
    text-shadow: -1px -1px 0px #fff, 
                -2px -2px 2px #b8ff99;
    box-shadow: 2px 2px 1px 0px #4d90fe, 
                2px 2px 2px 1px inset #adcdff, 
                1px 0px 2px 1px #83f375;
    background-color: #dedfff;
}
input[type="checkbox"][class$="checklist"] + label:hover {
    /*background-color: #c1d9ff;*/
    border-color: #ffff00;
    color: #8080ff;
}
/* Styling and Behaviors for the dropdown character-selection buttons */


/*
body {
    counter-reset: tags;
}
*:after {
    color: #ccc;
    counter-increment: tags;
    content: " " counter(tags);
}*/
nav, body > header {
   display: flex;
   justify-content: center;
   /*list-style-type: none;*/
   margin: 0;
   padding: 0;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
nav ul li {
      display: inline-flex;      
      text-align: center;
}
nav ul li a:hover {
    background-color: #ddd;
}
main > aside {
    position: sticky;
    float: none;
    top: 5rem;
    margin-right: 10px;
    height: fit-content;
}
main > aside > div#password-configurator {
    background-color: #0008ff21;
    border-radius: 25px;
    box-shadow: 1px 1px 5px 1px #00000059;
    padding: 10px 15px 10px 25px;
    height: fit-content;
}
article > aside:not(.ad-position) {
    /* background-color: #ddd; */
    border: 1px solid #f00;
    padding: 10px 15px 10px 25px;
    border-radius: 7px;
    box-shadow: 2px 2px 5px 4px #00000038;
}

body > header {
    background-image: url("/passphrase/includes/img/header-bg.webp");
    background-size: contain;
    border-radius: 0 0 50% 50%;
    
    height: 8em;
    
}
main {
display: grid;
grid-template-columns: 3.5fr 2fr;
gap: 2em;

}
article {
    margin: 0 1.5em 0 2.5em;
    line-height: 1.6em;
}
#site-title {
    font-size: 3rem;
    margin: auto 0;
    font-family: Verdana, Arial;
    font-weight: 700;
    letter-spacing: 0.1rem;
    color: var(--site-title-color);
    /*text-shadow: -2px -1px 3px #3300ffe0, 2px 2px 3px #3f00ffd1;*/
    text-shadow: -3px -2px 5px #0008ff, 3px 3px 4px #1200ffc7;
}

nav li:hover ul {
    display: grid;
}
nav ul ul {
    position: absolute;
    margin-top: 1.3em;
    display: none;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 1px 1px 2px 1px #00000075;
}

nav#breadcrumbs {
    display: inline-flex;
    font-size: 0.75em;

}
article nav ol {
    padding-inline-start: 0;
    list-style: upper-roman;
    margin-top: -0.5em;
}
article nav ol li {
    display: list-item;
    float: left;
    margin: 0 1.2em 0 1.2em;
}
article header h1 {
    font-size: 3.25rem;
    letter-spacing: 1rem;
    margin-bottom: 10px;
}


footer {
    background-color: black;
    color: #ffffffa6;
    padding: 10px 10px 25px 15px;
    margin: 25px 0 0 0;
    text-align: center;
}
footer nav {
    font-size: 0.7em;
}
section#introduction > p:first-of-type:first-letter {
    float: left;
    letter-spacing: 14px;
    font-size: 6.5em;
    line-height: .48;
    font-weight: 700;
    margin: 0.05em 0.05em 0.15em -0.15em;
    color: var(--main-text-color);
    text-shadow: 5px 3px 5px #fff, 3px 3px 15px #6b00ff85;
}






.ad-image-border img, img.ad-image-border {
    border: 3px solid #00f;
    text-align: center;
}
.widget_media_image, .widget_block {
    text-align: center;
}

.passw-header-banner {
    margin-top: 20px;
}
.ad-image-border2:hover {
    border-color: #0f0;
}

.widget_media_image h2, h2.ad-label, .passw-adlabel {
    margin-bottom: 0px;
    text-align: center;
    display: block;
    font-size: 0.65em;
    font-weight: 700;
    color: #8d8d8d;
    font-family: system-ui;
    text-transform: uppercase;
}
.wp-block-column figure.wp-block-image {
    margin-top: 0;
    width: 125px;
}
span.ad-label-above {
    text-align: center;
    display: block;
    font-size: 0.65em;
    font-weight: 700;
}

.ad-image-border img:hover, img.ad-image-border:hover, .passw-adlabel ~ form:hover {
  --angle: 0deg;
  border: 3px solid;
  border-image: conic-gradient(from var(--angle), red, orange, yellow, green, blue, indigo, violet, red) 1;
  
  animation: 3s rotate ease-in-out infinite;
}

@keyframes rotate {
  to {
    --angle: 360deg;
  }
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
    --adlabel-hide: 1.35em;
}
.passw-adlabel {
    top: var(--adlabel-hide);
    position: relative;
    opacity: 0;
}
.passw-adlabel {
    position: relative;
    animation: adlabelpopdown 1s;
    animation-delay: 0.4s;
    animation-fill-mode: both;    
    animation-timing-function: ease-in;
}
div:hover > .passw-adlabel  {
    animation: adlabelpopup 1.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
}


@keyframes adlabelpopdown {
    from {
        top: 0;
        opacity: 1;
        letter-spacing: 0.2em;
    }
    80% { opacity: 0;}
    to { 
        top: var(--adlabel-hide);
        letter-spacing: inherit;
    }
}
@keyframes adlabelpopup {
    30% { color: violet;}
    40% { color: indigo;}
    50% { color: blue;}
    60% { color: green;}
    70% { color: yellow;}
    80% { color: orange;}
    90% { color: red;}
    to {
        letter-spacing: 0.2em;
        top: 0;
        /*z-index: 1;*/
        color: #10eb2b;
        opacity: 1;

    }
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

div#respond {
    border: 2px solid #00ff72;
    margin: 25px;
    padding: 10px 50px;
    background-color: #00ffff;
    border-radius: 25px;
    box-shadow: 0px 9px 20px 6px #000000ad;
}

.password {
    font-size: 1.5em;
    background-color: #fff;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
    font-weight: 400;
    outline: 1px solid #bfbfbf;
    border: 1px solid blue;
    border-radius: 3px;
    box-shadow: 1px 1px 14px 4px yellow;
    line-height: unset;
    letter-spacing: 0.07em;
    padding: 16px 20px 12px 20px;
    font-family: "Lucida Console", "Courier New", monospace;    
    text-shadow: -4px 0px 0px #ffffff, 1px 1px 0px #000;
}
span.nowrap {
    white-space: nowrap;
}
.pw-refresh {
    float: right;
    border: 0;
    font-size: 0.8em;
    background: none;
    margin-left: 30px;
    color: #ff05e0;
    cursor: pointer;
    text-shadow: 1px 1px 1px #0008ff;
}
.pw-refresh:hover {
    color: #00f
}
#password-result {
    margin-top: 25px;
    margin-bottom: 25px;
}
.password-label {
    text-align: center;
    font-family: system-ui;
    font-size: 0.75em;
    color: #1efdff;
    margin: 15px 0 0 0;

}
.password-label small {
    background-color: #1155da;
    border-radius: 6px;
    border: 1px solid red;
    padding: 2px 10px 2px 10px;
}

.password .fa-gear {
    color: #000;
    font-size: small;
    float: right;
    margin: -10px -15px 0 0;
    text-shadow: 1px 1px 2px #0000006e;
}


.password .fa-gear:hover {
    color: #646363;
}
section a[href^="#breadcrumb"], a.fa-regular {
    float: right;
    font-size: 1.6rem;
    margin: 7px -26px 0px 0px;
}
a[href^="#breadcrumb"]:hover {
    color: #f00;
}

.checkboxlabel.monospace span {
    font-family: monospace;
    letter-spacing: 0.2em;
    font-weight: 600;
}
fieldset#character-sets fieldset {
    padding: 10px 5px 12px 12px;
}

.checkboxlabel input[type="checkbox"] {
    position: relative;
    margin: 0 10px 0px 0px;
}
.monospace input[type="checkbox"] {
    top: 2px;
}
fieldset#character-sets:hover > label:after {
    font: var(--fa-font-solid);
    content: "\f077";
}
fieldset#character-sets > label:after {
    float: right;
    font: var(--fa-font-solid);    
    content: "\f078";
}

fieldset#character-sets:hover fieldset {
    display: block;
}

fieldset#character-sets > fieldset {
    display: none;
}

fieldset#password-length:hover > label:after {
    font: var(--fa-font-solid);
    content: "\f077";
}
fieldset#password-length > label:after {
    float: right;
    font: var(--fa-font-solid);    
    content: "\f078";
}

fieldset#password-length:hover fieldset {
    display: block;
}

fieldset#password-length > fieldset {
    display: none;
}

fieldset#password-length:hover label, fieldset#character-sets:hover label {
    display: block;
}

fieldset legend i.fa-gears {
    text-shadow: none;
}


#password-result {
    border: 2px solid #1155da;
    width: fit-content;
    padding: 50px 50px 35px 50px;
    margin: 10px auto;
    border-radius: 999px;
}

article h1, article h2, article h3, article h4, article h5, article h6 {
    color: var(--main-text-color);
    font-weight:700;
    text-shadow: 5px 3px 5px #fff, 3px 3px 15px #6b00ff85;
} 

dfn {
    font-weight: 800;
}
strong {
    font-weight: 900;
}


aside#special-note {
    width: 67%;
    margin: 0 auto;
    font-size: 0.8rem;
    line-height: 1.2rem;
    background-color: aliceblue;
    box-shadow: inset 0px 0px 5px 1px var(--main-text-color);
    padding: 10px 15px 15px 15px;
    border-radius: 4px;
}


.byline {
    display: flex;
    color: var(--main-text-color);
}
address.author, time {
    display: contents;
}

a[href$=".pdf"]:after {
    font-family: 'FontAwesome';
    content: "\f1c1";
    font-size: 0.55em;
    color: #e92727;
    font-weight: 100;
    padding-left: 0.25em;
    vertical-align: super;
}
.blockyletters {
    display: inline-block;
    text-shadow: #bbb 1px 3px 2px, #fff 2px -2px 4px, #fff 0px 4px 2px, rgb(0 0 0 / 70%) 0px 20px 25px;
    /* transition: margin-left 0.3s cubic-bezier(0, 1, 0, 1); */
    color: hsl(240deg 87% 58%);
    /* perspective: 80px; */
    outline: none;
    font-size: 3em;
    font-weight: bold;
    font-family: monospace;
    /* background: hsl(210, 30%, 0%) radial-gradient( hsl(210, 30%, 20%), hsl(210, 30%, 0%)); */
    padding: 25px 10px;
    width: fit-content;
    margin: auto;
    width: -webkit-fill-available;
    /* border: 1px solid blue; */
    /* align-items: center; */
    text-align: center;
    transform: rotate(354deg);
    cursor: not-allowed;
}

@media only screen and (max-width: 768px) {
    body header > #site-title {
        font-size: 2.0rem;
        letter-spacing: unset;        
    }    
    .passw-header-banner {
        display: none;
    }
    main {
        display: block;
        margin: 0px 0.5em 0px 1em;
    }
    main > aside {
        position: static;
        margin-top: 20px;
        margin-left: unset;
    }
    article {
        line-height: 1.7em;
    }
}

@media only screen and (max-width: 475px) {
    body > header {
        height: 5em;
    }
    body header > #site-title {
        font-size: 1.5rem;
        letter-spacing: unset;        
    }
    article header h1 {
        font-size: 2.25rem;
        letter-spacing: unset;
    }
    
    .password {
        font-size: 0.9em;
        letter-spacing: 0.05em;
        text-shadow: none;
    }
    span.nowrap {
        white-space: normal;
    }
    figure {
        margin: unset;
    }
    .blockyletters {
        font-size: 2.3em;
    }
}
@media only screen and (max-width: 340px) {
    body header > #site-title {
        font-size: 1.2rem;
        letter-spacing: unset;
        
    }
    #passw-1214055559 {
        display: none;
    }
}
@media only screen and (max-width: 300px) {
    body header > #site-title {
        font-size: 1.5rem;
        text-shadow: 1px 1px 2px #fff;
        
    }
}    

.spin-letters {
    display: table-cell;
    color: red;
   animation: letterspinx .5s infinite;
   animation-iteration-count: 999;
   animation-fill-mode: forwards;
   animation-timing-function: ease-in-out;
}
.spin2 {
   animation: letterspinx 1.0s infinite;
   animation-delay: 0.2s;
   animation-iteration-count: 999;
   animation-fill-mode: backwards;
   animation-timing-function: ease-in-out;
}
.spin3 {
   animation: letterspinx 0.75s infinite;
   animation-delay: 0.1s;
   animation-iteration-count: 999;
   animation-fill-mode: backwards;
   animation-timing-function: ease-in-out;
}

@keyframes letterspinx {
  0% {transform: rotateX(0deg);}
  100% {transform: rotateX(360deg);}
}
@keyframes letterspiny {
  0% {transform: rotateY(0deg);}
  100% {transform: rotateY(360deg);}
}
@keyframes letterspinz {
  0% {transform: rotateZ(0deg);}
  100% {transform: rotateZ(360deg);}
}

.video-container {
    box-shadow: 1px 1px 16px 4px var(--main-text-color);
}

p#see-also {
    font-family: system-ui;
    padding: 20px 10px 30px 30px;
    border: 1px solid var(--main-text-color);
    border-radius: 3px;
    margin: 20px 20px 25px 30px;
    font-size: 1.25em;
    font-weight: 600;
    box-shadow: -5px 1px 2px 0px var(--main-text-color);
}



/* Amazon Native Search Ad styles */
:root {
    --ukr-flag-blue: #dedfff;
    --ukr-flag-yellow: #002157;
}
.amzn-native-header-text {
    font-weight: 800;
    font-size: 1.45rem !important;
    color: #fed501;
    text-shadow: 2px 2px 2px var(--ukr-flag-blue);
}
span.amzn-native-header-text {
    font-weight: 800;
    font-size: 1.35rem !important;
    color: royalblue;
    letter-spacing: 0.1rem;
    text-shadow: 1px -1px 0px white,
        -1px -1px 9px black;
}
.amazon-shopper .amzn-native-search-bar {
    display: none;
}

.amazon-shopper {
	margin: 25px 0 40px 0;
}

.amazon-shopper .amzn-native-container {
    background-color: var(--ukr-flag-blue);
    padding: 25px 30px 8px 30px;
    border-radius: 25px;
	/*border: 4px solid var(--ukr-flag-yellow);*/
    box-shadow: 1px 1px 5px 1px #00000059;
}
.amazon-shopper .amzn-native-header-text {
    color: var(--ukr-flag-yellow);
}
.amazon-shopper .amzn-native-product-asin-container {
    border-radius: 25px;
    border: 1px solid var(--ukr-flag-yellow) !important;
}
.passw-header-banner {
    text-align: -webkit-center;
}
