@font-face {
  font-family: 'Hershey Simplex';
  src: url('../fonts/AVHersheySimplexLight.otf');
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: 'Hershey Simplex';
  src: url('../fonts/AVHersheySimplexMedium.otf');
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: 'Hershey Simplex';
  src: url('../fonts/AVHersheySimplexHeavy.otf');
  font-style: normal;
  font-weight: 700;
}
/*
@font-face {
  font-family: 'Hershey Duplex';
  src: url('../fonts/AVHersheyDuplexLight.otf');
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: 'Hershey Duplex';
  src: url('../fonts/AVHersheyDuplexMedium.otf');
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: 'Hershey Duplex';
  src: url('../fonts/AVHersheyDuplexHeavy.otf');
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: 'Hershey Complex';
  src: url('../fonts/AVHersheyComplexLight.otf');
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: 'Hershey Complex';
  src: url('../fonts/AVHersheyComplexMedium.otf');
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: 'Hershey Complex';
  src: url('../fonts/AVHersheyComplexHeavy.otf');
  font-style: normal;
  font-weight: 700;
}*/


[class^='button-']>span.mdi {
    font-size: larger;
    position: relative;
    top: .05em;
}
a[class^="button-"] {
    display: inline-flex;
    gap: 0.4em;
    text-align: center;
    border-radius: 8px;
    flex-direction: row;
    padding: 0 0.9em;
    font-weight: 500;
    cursor:pointer;
    height: 2.6em;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size:medium;
    margin-right: 5px;
}
@container (max-width: 200px) {
    a[class^="button-"] {
        padding: 0.7em;
    }
   a[class^="button-"] span:not(.mdi){
        display:none;
   }
    
}
/* expand side padding for iconless buttons */
[class^="button-"]:not(:has(.mdi)) {
    padding: 0.65em 1em .55em;
}

a.button-new {
    background-color: var(--button-new-background-color);
    color: var(--button-new-color);
    border: var(--button-new-border);

    &:hover {
        background-color: var(--button-new-background-color-hover);
        color: var(--button-new-color-hover);
        border: var(--button-new-border-hover);

        .mdi:before {
            color: var(--button-new-color-hover);
            opacity: .95;
        }
    }
}

a.button-utility {
    background-color: var(--button-utility-background-color);
    color: var(--button-utility-color);
    border: var(--button-utility-border);

    &:hover {
        background-color: var(--button-utility-background-color-hover);
        color: var(--button-utility-color-hover);
        border: var(--button-utility-border-hover);

        .mdi:before {
            color: var(--button-utility-color-hover);
            opacity: .95;
        }
    }
}

a.button-go{
    background-color: var(--button-go-background-color);
    color: var(--button-go-color);
    border: var(--button-go-border);
    >span.mdi:before{
        color: var(--button-go-color);
    }
    &:hover {
        background-color: var(--button-go-background-color-hover);
        color: var(--button-go-color-hover);
        border: var(--button-go-border-hover);

        .mdi:before {
            color: var(--button-go-color-hover);
            opacity: .95;
        }
    }
}

a.button-neutral {
    background-color: var(--button-neutral-background-color);
    color: var(--button-neutral-color);
    border: var(--button-neutral-border);
    >span.mdi:before{
        color: var(--button-neutral-color);
    }
    &:hover {
        background-color: var(--button-neutral-background-color-hover);
        color: var(--button-neutral-color-hover);
        border: var(--button-neutral-border-hover);

        .mdi:before {
            color: var(--button-neutral-color-hover);
            opacity: .95;
        }
    }
}

a.button-spicy {
    background-color: var(--button-spicy-background-color);
    color: var(--button-spicy-color);
    border: var(--button-spicy-border);
    >span.mdi:before{
        color: var(--button-spicy-color);
    }
    &:hover {
        background-color: var(--button-spicy-background-color-hover);
        color: var(--button-spicy-color-hover);
        border: var(--button-spicy-border-hover);

        .mdi:before {
            color: var(--button-spicy-color-hover);
            opacity: .95;
        }
    }
}

a.button-warning {
   background-color: var(--button-warning-background-color);
    color: var(--button-warning-color);
    border: var(--button-warning-border);
    >span.mdi:before{
        color: var(--button-warning-color);
    }
    &:hover {
        background-color: var(--button-warning-background-color-hover);
        color: var(--button-warning-color-hover);
        border: var(--button-warning-border-hover);

        .mdi:before {
            color: var(--button-warning-color-hover);
            opacity: .95;
        }
    }
}

a.button-negative {
    background-color: var(--button-negative-background-color);
    color: var(--button-negative-color);
    border: var(--button-negative-border);
    >span.mdi:before{
        color: var(--button-negative-color);
    }
    &:hover {
        background-color: var(--button-negative-background-color-hover);
        color: var(--button-negative-color-hover);
        border: var(--button-negative-border-hover);

        .mdi:before {
            color: var(--button-negative-color-hover);
            opacity: .95;
        }
    }
}



nav#main_nav{
    position:absolute;
    z-index:10;
    margin-left:40px;
    margin-top:30px;

    div ul{
        list-style: none;
        display:flex;
        margin:0;
        li{
            margin-right:10px;

        }
    }
}


/*// center
.some-container {
  display: grid;
  place-items: center;
}*/
.content-arrow{
    padding-right: 0.5em;
    position: relative;
    bottom: 1px;
    
}
.mdi.content-arrow:before{
    font-size:.7em;
    line-height:1em;
    content: "\F0536";
    color: var(--text-heavy-alt); 
}
.content-arrow-up:before{
    position;relative;
    position:relative;
    bottom:1px;
}
.content-arrow-right:before{
    transform:rotate(90deg);  
    position:relative;
    bottom:2px;
}
.content-arrow-down:before{
    transform:rotate(180deg);
    position:relative; 
    bottom:4px;
}
.content-arrow-left:before{
    transform:rotate(270deg);
    position:relative;
    bottom:2px;
}



.interface-cap{
    padding: 0% 10%;
    /* padding-right:40px; */
    /* width: 73%; */
    /* float: left; */
    display: inline-block;
}
.site-caps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0% 4%;
    grid-gap: 1px;
    /* padding-right:40px; */
    grid-template-rows: 1fr 1fr;
    /* width: 60%; */
    /* float: left; */
    margin-top: 2em;
}

.site-caps > img{

}


#login{
    margin: 0px -1px;
    position: relative;
    z-index: 1;
    display: inline-block;
    /* overflow: hidden; */
}



#login:before {
    content: '';
    display: block;
    position: absolute;
    top: 46.6px;
    right: -20px;
    width: 315px;
    opacity: 0.6;
    height: 0px;
    border-bottom-color: var(--wires-xxx-light);
    border-bottom-width: var(--wires-width);
    border-bottom-style: var(--wires-style-alt);
    transition: border-color 0s ease-out;
    /* border-bottom-width: 0px; */
    z-index: 1;
}
#login:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 12px;
    right: -20px;
    width: 315px;
    opacity: 0.5;
    height: 0px;
    border-bottom-color: var(--wires-xxx-light);
    border-bottom-width: var(--wires-width);
    border-bottom-style: var(--wires-style-alt);
    transition: border-color 0s ease-out;
    /* border-bottom-width: 0px; */
    z-index: 1;
}
#login .button-go {
    margin-top: 30px;
}
.connecting {
    display: none;
    margin-top: 1.11em;
    right: 4px;
    position: relative;
    font-size: larger;
    font-weight: 500;
    color: var(--text-heavy-alt);
    /* line-height: 0.9em; */
    padding: 0em 0 0.3em;
    border-width: var(--wires-width);
    border-left: none;
    border-right: none;
    border-color: transparent;
    border-style: solid;
    align-content: flex-end;
}
.connecting .connecting-msg {
    margin-left: .4em;
    color: var(--text-heavy-alt);
}
.connecting span.mdi:before {
    content: "\F1395";
    padding-top: 0px;
    color: var(--text-heavy-alt);

    -webkit-animation: spin .25s infinite linear;
    animation:spin .25s infinite linear;
    padding: 0;
}

.skillset-summary a {
    color: var(--link-color);
    display: inline-block;
    letter-spacing: normal;
    position: relative;
    &:hover {
        color: var(--link-hover-color);
        text-decoration-color: currentcolor;
        text-decoration-line: underline;
        text-decoration-thickness: 1px;
        text-decoration-style: solid;
    }
    span.mdi{
        font-size:22px;margin-right:5.5px;position:relative;top:2px;
    }
}
.skillset.blue>div>code {
    color: #fff;
    background-color: hsl(210 24% 30% / 1);
}
img.small_icons {
    filter: brightness(62%) sepia(100%) saturate(1.3) contrast(124%) hue-rotate(160deg);
    max-width: 93%;
    margin-bottom: 1.1em;
    margin-top: 1.5em;
}
img.icons {
    filter: brightness(.7) sepia() saturate(2) hue-rotate(10deg);
    margin-bottom: 0;
     max-width: 100%; 
    
}
img.rp-records {
    filter:  brightness(3);
    transform: rotate(-1deg);
    max-width: 88%;
}
img.wex {
    filter: brightness(2.0);
    transform: rotate(1deg);
    max-width: 88%;
}
body[data-theme="dark"] {
    .theme-light-only{
        display:none;
    }
    .identity:after {
        mix-blend-mode: lighten;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    --max-width: 1300px;
    --text-headline: #ffffff;
    --text-headline-light: #666;
    --text-headline-strong: #ffffff;
    --text-normal: #666;
    --text-heavy: #aaa;
    --text-section: #ffffff;
    --text-thin: #bbb;
    --text-alt: #666;
    --text-heavy-alt: #aaa;
    --background: #0c0b0e;
    --far-background: #111;
    --near-background: rgba(13, 13, 13, 1);
    --anti-background: #fff;
    --link-color: hsl(233 41% 60% / 1);
    --link-hover-color: hsl(213 51% 70% / 1);
    --underline-color: rgba(123, 147, 102, .4);
    --hover-underline-color: rgba(123, 147, 102, .5);
    --textarea-border: #1c1b20;
    --textarea-bg: #14141a;
    /* --textarea-color: #fff; */
    --textarea-focus-border: #3e3e3e;
    --textarea-focus-bg: transparent;
    --textarea-placeholder-color: #666;
    --textarea-placeholder-color-focus: #333;
    --input-default: #555;
    --input-hover: #999;
    --input-focus: #fdd835;
    --input-focus-value: #eee;
    --input-focus-border: #fdd835db;
    --input-focus-background: #fdd83533;
    --button-border-width:1px;
    --wires-width: 2px;
    --wires-style: solid;
    --wires-style-alt: dashed;
    --sub-wires-style: dotted;
    --background-stripe-width: 1.5px;
    --background-stripe-color: #222;
    --background-stripe-spacing: 12.5px;
    --void-mix-blend-mode: difference;
    --void-background-color: #009f9f;
    --void-border-color: #3f5;
    /*--void-initial-image: url(../images/likewise-dotted-stroke.svg);*/
    --void-initial-image: url(../images/likewise-outer-stroke.svg);
    --void-hover-image: url(../images/likewise-outer-stroke.svg);
    --wires-horizontal: #333;
    --wires-vertical: #333;
    --wires-x-heavy: #ccc;
    --wires-heavy: #bbb;
    --wires-medium: #aaa;
    --wires-light: #999;
    --wires-x-light: #888;
    --wires-xx-light: #666;
    --wires-xxx-light: #444;
    --wires-xxxx-light: #333;
    --wires-xxxxx-light: #111;
    --background-stripe-width: 1px;
    --send-button-color: #ccc;
    
 --button-new-background-color: #222;
--button-new-color: #fff;
--button-new-border: var(--button-border-width) solid #666;
--button-new-background-color-hover: #fff;
--button-new-color-hover: #000;
--button-new-border-hover: var(--button-border-width) solid #fff;

--button-utility-background-color: #ddd;
--button-utility-color: #413c47;
--button-utility-border: var(--button-border-width) solid #bbb;
--button-utility-background-color-hover: #222222;
--button-utility-color-hover: #fff;
--button-utility-border-hover: var(--button-border-width) solid #ccc;

--button-go-background-color: #518953;
--button-go-color: #fff;
--button-go-border: var(--button-border-width) solid #518953;
--button-go-background-color-hover: #222222;
--button-go-color-hover: #fff;
--button-go-border-hover: var(--button-border-width) solid #ccc;

--button-neutral-background-color: #293d3b;
--button-neutral-color: #bdddda;
--button-neutral-border: var(--button-border-width) solid #293d3b;
--button-neutral-background-color-hover: #222222;
--button-neutral-color-hover: #fff;
--button-neutral-border-hover: var(--button-border-width) solid #ccc;

--button-spicy-background-color: #b6f56f;
--button-spicy-color: #333;
--button-spicy-border: var(--button-border-width) solid #b6f56f;
--button-spicy-background-color-hover: #222222;
--button-spicy-color-hover: #fff;
--button-spicy-border-hover: var(--button-border-width) solid #ccc;

--button-warning-background-color: #ef7f22;
--button-warning-color: #fff;
--button-warning-border: var(--button-border-width) solid #ef7f22;
--button-warning-background-color-hover: #222222;
--button-warning-color-hover: #fff;
--button-warning-border-hover: var(--button-border-width) solid #ccc;

--button-negative-background-color: #EF5350;
--button-negative-color: #fff;
--button-negative-border: var(--button-border-width) solid #EF5350;
--button-negative-background-color-hover: #222222;
--button-negative-color-hover: #fff;
--button-negative-border-hover: var(--button-border-width) solid #ccc;
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

    .vert-compact {
    margin-top: -10px;
    margin-bottom: 25px;
    }
    span.contact {
        background-color: #ddd;
    }
    div.logo-wires:before {
        top: 20px;
    }
    div.logo-wires:after {
        top: 103px;
    }
  
    .arc-wires:
    after {

left: -42px;
    bottom: 82px;
    transform: rotate(316deg);
    width: 84px;
    height: 84px;
    border-bottom-width: calc(var(--wires-width) / 1.3);
    border-top-color: var(--wires-xx-light);
    border-right-width: calc(var(--wires-width) / 1.4);
    border-top: none;

}
    div.logo-wires:after {
        content: '';
        display: block;
        position: relative;
        top: 104px;
        opacity: 0.3;
        height: calc(var(--wires-width) / 1.3);
    }
    .arc-wires:
    before {
        content: '';
    display: block;
    transform: rotateZ(7deg);
    position: absolute;
    bottom: 210px;
    border-right-width: calc(var(--wires-width) / 1.4);
    border-bottom-width: calc(var(--wires-width) / 1.4);
    }
    div.logo-alt {
        z-index: 0;
    pointer-events: none;
    background-image: var(--void-initial-image);
    filter: var(--logo-alt-filter);
    display: block;
    width: 507px;
    height: 122px;
    left: -330px;
    bottom: 7px;
    opacity: 100%;
    }
}
body[data-theme="light"] {
    .theme-dark-only{
        display:none;
    }
    .identity:after {
        mix-blend-mode: darken;
    }

    /*--lines-R: 47;
    --lines-G: 180;
    --lines-B: 230;*/

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    --lines-R: 44;
    --lines-G: 170;
    --lines-B: 210;
    --max-width: 1300px;
    --wires-horizontal: rgba(var(--lines-R), var(--lines-G), var(--lines-B), .4);
    --wires-vertical: rgba(var(--lines-R), var(--lines-G), var(--lines-B), .5);
    --wires-x-heavy: rgba(var(--lines-R), var(--lines-G), var(--lines-B), .9);
    --wires-heavy: rgba(var(--lines-R), var(--lines-G), var(--lines-B), .8);
    --wires-medium: rgba(var(--lines-R), var(--lines-G), var(--lines-B), .8);
    --wires-light: rgba(var(--lines-R), var(--lines-G), var(--lines-B), .7);
    --wires-x-light: rgba(var(--lines-R), var(--lines-G), var(--lines-B), .7);
    --wires-xx-light: rgba(var(--lines-R), var(--lines-G), var(--lines-B), .6);
    --wires-xxx-light: rgba(var(--lines-R), var(--lines-G), var(--lines-B), .5);
    --wires-xxxx-light: rgba(var(--lines-R), var(--lines-G), var(--lines-B), .4);
    --wires-xxxxx-light: rgba(var(--lines-R), var(--lines-G), var(--lines-B), .07);
    --text-warm-gray: #66a3d3;
    --text-headline: #000000;
    --text-headline-light: #66a3d3;
    --text-headline-strong: #000000;
    --text-normal: #666;
    --text-heavy: #333;
    --text-section: #000;
    --text-thin: #66a3d3;
    --background: #fff;
    --far-background: #effbff;
    --near-background: rgba(57, 200, 250, .1);
    --anti-background: #000;
    --text-alt: #777;
    --text-heavy-alt: #333;
    --link-color: hsl(233 61% 50% / 1);
    --link-hover-color: hsl(223 81% 50% / 1);
    --underline-color: rgba(123, 147, 102, .3);
    --hover-underline-color: rgba(123, 147, 102, .5);
    --textarea-border: rgba(0, 0, 0, .4);
    --textarea-bg: transparent;
    --textarea-color: #000;
    --textarea-focus-border: rgba(0, 0, 0, .7);
    --textarea-focus-bg: #fff;
    --textarea-placeholder-color: #666;
    --textarea-placeholder-color-focus: #ccc;
    --background-stripe-width: 1.5px;
    --background-stripe-color: rgba(27, 170, 220, .17);
    --background-stripe-spacing: 12.5px;
    --button-border-width:1px;
    --wires-width: 2px;
    --wires-style: solid;
    --wires-style-alt: dashed;
    --sub-wires-style: dotted;
    --void-mix-blend-mode: difference;
    --void-background-color: #fff;
    --void-border-color: #42d761;
    --input-default: rgba(0, 0, 0, .4);
    --input-hover: rgba(0, 0, 0, .7);
    --input-focus-value: #000;
    /*--input-focus: #fdd835;
    --input-focus-value: #000;
    --input-focus-border: #fdd835db;
    --input-focus-background: #fdd83533;*/
    --send-button-color: #1e5d98;
    --input-focus: #000000;
    --input-focus-border: #000000db;
    --input-focus-background: #fffbe7;
    --void-initial-image: url(../images/likewise-dark.svg);
    --void-hover-image: url(../images/likewise-blue-marker.svg);
    --void-logo-alt-filter: unset;
    --button-new-background-color: #fff;
    --button-new-color: #413c47;
    --button-new-border: var(--button-border-width) dotted #000;
    --button-new-background-color-hover: #222222;
    --button-new-color-hover: #fff;
    --button-new-border-hover: var(--button-border-width) dotted #000;
    --button-utility-background-color: #ddd;
    --button-utility-color: #413c47;
    --button-utility-border: var(--button-border-width) dotted #000;
    --button-utility-background-color-hover: #222222;
    --button-utility-color-hover: #fff;
    --button-utility-border-hover: var(--button-border-width) dotted #222;
    --button-go-background-color: #518953;
    --button-go-color: #fff;
    --button-go-border: var(--button-border-width) solid #518953;
    --button-go-background-color-hover: #222222;
    --button-go-color-hover: #fff;
    --button-go-border-hover: var(--button-border-width) solid #222;
    --button-neutral-background-color: #3e5d5a;
    --button-neutral-color: #bdddda;
    --button-neutral-border: var(--button-border-width) solid #3e5d5a;
    --button-neutral-background-color-hover: #222222;
    --button-neutral-color-hover: #fff;
    --button-neutral-border-hover: var(--button-border-width) solid #222222;
    --button-spicy-background-color: #b6f56f;
    --button-spicy-color: #333;
    --button-spicy-border: var(--button-border-width) solid #b6f56f;
    --button-spicy-background-color-hover: #222222;
    --button-spicy-color-hover: #fff;
    --button-spicy-border-hover: var(--button-border-width) solid #222;
    --button-warning-background-color: #ef7f22;
    --button-warning-color: #fff;
    --button-warning-border: var(--button-border-width) solid #ef7f22;
    --button-warning-background-color-hover: #222222;
    --button-warning-color-hover: #fff;
    --button-warning-border-hover: var(--button-border-width) solid #222;
    --button-negative-background-color: #EF5350;
    --button-negative-color: #fff;
    --button-negative-border: var(--button-border-width) solid #EF5350;
    --button-negative-background-color-hover: #222222;
    --button-negative-color-hover: #fff;
    --button-negative-border-hover: var(--button-border-width) solid #222;
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    .invert-in-light {
        filter: invert(1) contrast(1.6);
    }
    .invert-fix {
        filter: invert(0) contrast(1.6);
    }
    img.wex {
        /* filter: sepia(1) saturate(5) brightness(.45) hue-rotate(292deg); */
    }
    img.icons {
        filter: invert(1) contrast(0.5) sepia(1) brightness(1.7) saturate(3) hue-rotate(164deg);    }
    img.pier73 {
        /* padding: 20px; */
        filter: none;
        background-color: #000000;
    }
    .vert-compact {
        margin-top: 0px;
        margin-bottom: 40px;
    }
    span.contact {
        background-color: transparent;
    }
    input[type="checkbox"]:before, input[type="checkbox"]:checked:before {
        filter: brightness(0) saturate(0);
    }
    div.logo-wires {
        position: absolute;
        z-index: 2;
        bottom: 153px;
        left: 30px;
        filter: saturate(1.5);
    }

 
    div.logo-alt {
        z-index: 1;
        pointer-events: none;
        background-image: var(--void-initial-image);
        filt er: unset;
        display: block;
        left: -330px;
        bottom: 7px;
        opacity: 100%;
    }
    #void {
        pointer-events: none;
        z-index: 271;
        content: "";
        filter: invert(1);
    }
    .skillset code {
        filter: brightness(2) saturate(0);
    }
    .skillset-summary a {
        filter: brightness(1.2) saturate(1) contrast(2);
    }
    a.button-go {
        filter: none;
    }
    div.skillset>h4 {
        filter: saturate(0) brightness(1.8);
    }
}
body:has(#dot:hover) .overlay{
    opacity:.25;
}
body[data-theme="light"]:has(#dot:hover) .overlay{
    opacity:.1;
}
body[data-theme="light"] {
    --max-width: 1300px;
    --background: #fff;
    --near-background: rgba(0, 0, 0, 10%);
    --void-initial-image: url(../images/likewise-dark.svg);
    --logo-alt-filter: brightness(4.3) huerotate(146.3deg);
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
     
    
    
    footer {
        font-weight: 300;
    color: #0a0a12;
    div.logo-alt {
            z-index: 0;
        }
    }
    #void {
    /* z-index: -3; */
    /* border: 3px solid #0e8336; */
    /* filter: blur(1px) invert(100%); */
    /* background-color: #000000; */
    background-color: #ffffff;
    }
}
body[data-theme="light"]:has(#dot:hover) {
    --max-width: 1300px;
    --wires-horizontal: rgba(27, 170, 220, 0);
    --wires-vertical: rgba(27, 170, 220, 0);
    --wires-x-heavy: rgba(27, 170, 220, 0);
    --wires-heavy: rgba(27, 170, 220, 0);
    --wires-medium: rgba(27, 170, 220, 0);
    --wires-light: rgba(27, 170, 220, 0);
    --wires-x-light: rgba(27, 170, 220, 0);
    --wires-xx-light: rgba(27, 170, 220, 0);
    --wires-xxx-light: rgba(27, 170, 220, 0);
    --wires-xxxx-light: rgba(27, 170, 220, 0);
    --background-stripe-color: rgba(27, 170, 220, 0);
    --background: #fff;
    --near-background: rgba(0, 0, 0, 10%);
    --void-initial-image: url(../images/likewise-dark.svg);
    --void-hover-image: url(../images/likewise-blue-marker.svg);
    --logo-alt-filter: invert(0) brightness(10) saturate(8) hue-rotate(-250deg);
    
    
    
    
    
    
    
    div.logo-alt {
        z-index: 240;
    }
}
body[data-theme="light"]:has(#dot:hover) body:after {
    content: '';
    display: inline-block;
    position: fixed;
    background-image: url("../images/noise-tile.png");
    height: 300%;
    width: 300%;
    left: -50%;
    top: -100%;
    animation: grain 1s steps(10) infinite;
}

#theme:before {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transtition: opacity color .2s ease-out;
}
body[data-theme="light"] #theme {
    background-image: url(../images/night.svg);
    filter: contrast(.1) sepia(1) saturate(3) brightness(1) hue-rotate(163deg);
    width: 52px;
    top: 20px;
    background-blend-mode: color-dodge;
    /* background-color: rgb(255 255 255 / 90%); */
    height: 52px;
    background-size: 28px 28px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .4;
    left: 27px;
}
#theme:before:hover {
    opacity: 1;
}
body[data-theme="light"] #theme:hover {
    opacity: 1;
    filter: saturate(1.5) hue-rotate(357deg);
    background: radial-gradient(circle, rgb(82 62 103) 0%, rgb(101 100 138) 22%, hsl(214.31deg 100% 94.08%) 44%, rgba(255, 255, 255, 1) 56%);
}
body[data-theme="light"] #theme:hover {
    opacity: 1;
    padding: 26px 26px;
    top: 19px;
    /* margin-right: -12px; */
}
body[data-theme="light"] #theme span {
    opacity: 0;
    width: 52px;
    position: relative;
    display: inline-block;
    height: 52px;
}
body[data-theme="light"] #theme:hover span {
    opacity: 1;
    background-image: url(../images/night-hover.svg);
    /* transition: color .2s ease-out; */
    width: 36px;
    height: 36px;
    background-size: 28px 28px;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    /* right: 11px; */
    right: 18px;
    top: -17px;
    opacity: 1;
}
body[data-theme="light"] #theme:hover span {
    opacity: 1;
    filter: sepia(1);
}
#theme {
    color: #444;
    position: absolute;
    left: 39px;
    top: 31px;
    z-index: 16;
}

#theme:hover {
    opacity: 1;
}
body[data-theme="dark"] #theme:before {
    content: "\F05A8";
    font-size: 27px;
    background-image: none;
}
/*light bulb F0335*/

body[data-theme="dark"] #theme {
    color: #444;
    opacity: 1;
}
body[data-theme="dark"] #theme:hover {
    color: #f3f9ac;
    text-shadow: #FF9800 0px 0px 20px, #FF9800 0px 0px 15px;
}


@-webkit-keyframes scan-x {
    0% {
        left: 0px;
        opacity: 1;
    }
    60% {
        left: -900px;
        opacity: 0;
    }
    100% {
        left: -900px;
        opacity: 0;
    }
}
@keyframes scan-x {
    0% {
        left: 0px;
        opacity: 1;
    }
    60% {
        left: -900px;
        opacity: 1;
    }
    100% {
        left: -900px;
        opacity: 0;
    }
}
.persistence {
    z-index: 1;
    pointer-events: none;
    width: 9px;
    opacity: 1;
    position: relative;
    overflow: hidden;
    height: 800px;
    .mdi {
        font-size: 800px;
        color: #fff;
    }
}
.persistence div {
    width: 800px;
    height: 800px;
    position: absolute;
    -webkit-animation: scan-x .2s infinite linear;
    animation: scan-x .2s infinite linear;
}
.contact-box form {
    position: relative;
    z-index: 10;
}
.thanks {
    /* font-size: 20px; */
    /* line-height: 22px; */
    /* line-height: 28px; */
    display: inline-block;
    max-width: 620px;
}
button.send-button {
    display: inline-block;
    color: var(--send-button-color);
    position: absolute;
    right: 15px;
    font-size: 30px;
    bottom: 21px;
    cursor: pointer;
    transition: bottom .5s ease-out;
}
button.send-button:hover {
    color: var(--send-button-color);
    font-size: 30px;
}
button.send-button:before {
    transform: rotate(-20deg);
    transform-origin: center;
}
button.send-button.loading-anim {}
button.send-button.loading-anim:before {
    content: "\F1395";
    padding-top: 0px;
    color: #ccc;
    -webkit-animation: spin .2s infinite linear;
    animation: spin .2s infinite linear;
    padding: 0;
}
button.send-button.throttled:before {
    transform: rotate(0deg);
    content: "\F0026";
    padding-top: 0px;
    color: #eb5733;
    -webkit-animation: none;
    animation: none;
    padding: 0;
}
button.send-button.sent {
    pointer-events: none;
    bottom: 20px;
}
button.send-button.sent:before {
    transform: rotate(0deg);
    content: "\F05E1";
    padding-top: 0px;
    color: #349626;
}
/*label*/

/*label*/

/*label*/

.input-wrapper:has(textarea:placeholder-shown:not(:focus)) label {
    color: var(--textarea-placeholder-color);
    position: absolute;
    display: inline-block;
    width: auto;
}
.input-wrapper:focus-within label {
    color: transparent;
}
.input-wrapper:has(textarea:hover:not(:focus)) label {
    color: transparent;
}
.input-wrapper:has(textarea:placeholder-shown) label {
    color: #666;
}
.input-wrapper:has(textarea:placeholder-shown:not(:focus)) label {
    /* color: var(--textarea-placeholder-color); */
    background-color: transparent;
}
.input-wrapper:has(textarea:placeholder-shown:not(:focus):hover) label {
    color: #666;
}
.input-wrapper:has(textarea:placeholder-shown:focus) label {
    color: var(--textarea-placeholder-color-focus);
}
.input-wrapper label {
    color: transparent;
    background-color: transparent;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    /*font-style: italic;*/
    font-family: "Hershey Simplex", sans-serif;
    letter-spacing: 0px;
    padding: 15px 50px 15px 20px;
    position: absolute;
    display: inline-block;
    width: auto;
    z-index: 10;
    pointer-events: none;
    user-select: none;
}
.input-wrapper textarea {
    border: 1px solid var(--textarea-border);
    background-color: var(--textarea-bg);
    padding: 15px 50px 15px 20px;
    color: var(--textarea-color);
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    width: 100%;
    border-radius: 5px;
    position: relative;
    font-family: "Hershey Simplex", sans-serif;
    height: 150px;
    transition: height .3s cubic-bezier(0.03, 1.08, 0.71, 1.01);
}
.input-wrapper textarea {
    border: 1px solid var(--textarea-border);
}
.input-wrapper textarea:focus, .input-wrapper textarea:hover {
    border: 1px solid var(--textarea-focus-border);
}
.input-wrapper textarea:placeholder-shown:not(:focus) {
    height: 54px;
    padding: 15px 50px 10px 20px;
    transition: height .3s cubic-bezier(0.03, 1.08, 0.71, 1.01);
}
.input-wrapper textarea:placeholder-shown:not(:focus)+span {
    display: none;
}
.input-wrapper textarea::selection {
    background-color: #1e5d98;
    color: #fff;
}
.input-wrapper:not(:focus-within) textarea:not([disabled]):hover {
    background-color: var(--textarea-focus-bg);
}
.input-wrapper:focus-within textarea {
    background-color: var(--textarea-focus-bg);
}
.input-wrapper:focus-within textarea::placeholder {
    color: transparent;
}
.input-wrapper textarea::placeholder {
    color: transparent;
}
.input-wrapper span {
    position: absolute;
    bottom: -28px;
    right: 0;
    letter-spacing: .5px;
    font-size: 18px;
    font-weight: 300;
    color: #676767;
}
.input-wrapper span.sent-time {
    letter-spacing: .1px;
    font-size: 18px;
    font-weight: 300;
    color: #999;
}
svg path {
    transform-box: fill-box;
    transform-origin: center;
}
*, *:after, *:before {
    /* border-width:0px; */
}
span.contact {
    display: inline-block;
    width: 85px;
    /* padding: 6px; */
    height: 85px;
    margin-top: 7px;
    /* position: relative; */
    background-image: url(../images/nd-vcf.svg);
    /* background-size: contain; */
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    margin-right: 25px;
    /* margin-top: 45px; */
}
footer:before {
    content: "";
    display: inline-block;
    height: 100%;
    z-index: 0;
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    border-radius: 15px;
    background-image: repeating-linear-gradient(45deg, transparent, transparent var(--background-stripe-spacing), var(--background-stripe-color) calc(var(--background-stripe-spacing)), var(--background-stripe-color) calc(var(--background-stripe-spacing) + var(--background-stripe-width)));
    font-family: 'Hershey Simplex', sans-serif;
}
footer>div {
    padding: 40px;
    max-width: var(--max-width);
    margin: 0px auto;
    position: relative;
}
footer {
    width: 100%;
    position: relative;
    /* t-weight: 300;
    font-size: 24px;
    background-color: var(--far-background);
}
footer .mdi-trophy {
    transform: rotateZ(6deg);
    display: inline-block;
    position: relative;
    top: 1.5px;
}
footer span {
    /*    text-shadow: 0px 0px 12px var(--background), 0px 0px 18px var(--background),0px 0px 18px var(--background);*/
}
/*div.contact:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    z-index: 0;
    left: 0px;
    width: 163px;
    height: 118px;
    border-left: var(--wires-width) var(--wires-style) var(--wires-xx-light);
    border-bottom: var(--wires-width) var(--wires-style) var(--wires-xx-light);
}*/

.layout-grid {
    position: relative;
    z-index: 10;
}
.overlay {
    width: 100vw;
    height: 100vh;
    display: inline-block;
    position: fixed;
    z-index: 99999;
    opacity: 0;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity 1s cubic-bezier(0, 0.7, 0, 1.02);

    display: none;
}
.overlay:after {
    content: '';
    content: '';
    display: inline-block;
    position: relative;
    background-image: url(../images/noise-tile.png);
    height: 400%;
    width: 300%;
    left: -150%;
    top: -173%;
    animation: grain 1s steps(10) infinite;
}
@keyframes grain {
    0%, 100% {
        transform: translate(0, 0)
    }
    10% {
        transform: translate(-5%, -10%)
    }
    20% {
        transform: translate(-15%, 5%)
    }
    30% {
        transform: translate(7%, -25%)
    }
    40% {
        transform: translate(-5%, 25%)
    }
    50% {
        transform: translate(-15%, 10%)
    }
    60% {
        transform: translate(15%, 0%)
    }
    70% {
        transform: translate(0%, 15%)
    }
    80% {
        transform: translate(3%, 35%)
    }
    90% {
        transform: translate(-10%, 10%)
    }
}
/*construction marks*/

.identity:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -24px;
    left: -20px;
    width: 499px;
    opacity: 0.5;
    height: 0px;
    border-bottom-color: var(--wires-xxx-light);
    border-bottom-width: var(--wires-width);
    border-bottom-style: var(--wires-style-alt);
    transition: border-color 0s ease-out;
    /* border-bottom-width: 0px; */
    z-index: 1;
}
/*.inner:before {
    content: '';
    display: block;
    transform: rotate(157deg);
    position: absolute;
    top: -10px;
    opacity: .6;
    left: -10px;
    width: 18px;
    height: 18px;
    border: var(--wires-width) var(--wires-style) var(--wires-xx-light);
    border-bottom-color: var(--wires-x-light);
    border-left-width: var(--wires-width);
    border-bottom-width: calc(var(--wires-width) / 2);
    border-right-width: var(--wires-width);
    border-radius: 50%;
    z-index: 1;
}*/

.pinned:after {
    content: '';
    display: block;
    transform: rotate(45deg);
    position: absolute;
    top: -53px;
    opacity: .5;
    left: -9.5px;
    width: 18px;
    height: 18px;
    border: var(--wires-width) var(--wires-style) var(--wires-xx-light);
    border-bottom-color: var(--wires-x-light);
    border-left-width: calc(var(--wires-width) / 1.2);
    border-bottom-width: calc(var(--wires-width) / 1.2);
    border-right-width: var(--wires-width);
    transition: border-color 0s ease-out;
    border-radius: 50%;
    z-index: 1;
}
.header-inner-grid:before {
    content: '';
    display: block;
    transform: rotate(157deg);
    position: absolute;
    top: -10px;
    opacity: .6;
    left: -9px;
    width: 18px;
    height: 18px;
    border: var(--wires-width) var(--wires-style) var(--wires-xx-light);
    border-bottom-color: var(--wires-x-light);
    border-left-width: var(--wires-width);
    border-bottom-width: calc(var(--wires-width) / 2);
    border-right-width: var(--wires-width);
    transition: border-color 0s ease-out;
    border-radius: 50%;
    z-index: 1;
}
section:not(:first-child) .inner:after {
    content: '';
    display: block;
    position: absolute;
    top: -13px;
    right: -13px;
    opacity: .6;
    width: 25px;
    height: 25px;
    border: var(--wires-width) var(--wires-style) var(--wires-xx-light);
    border-bottom-color: var(--wires-x-light);
    border-left-color: var(--wires-xx-light);
    border-radius: 50%;
    border-top-width: calc(var(--wires-width) / 1.5);
    transition: border-color 0s ease-out;
}
.header-inner-grid:after {
    content: '';
    display: block;
    position: absolute;
    top: -13px;
    right: -12px;
    opacity: 0.6;
    width: 25px;
    height: 25px;
    border: var(--wires-width) var(--wires-style) var(--wires-xx-light);
    border-bottom-color: var(--wires-xx-light);
    border-left-color: var(--wires-xx-light);
    transition: border-color 0s ease-out;
    border-radius: 50%;
    border-top-width: 1px;
}
/*.pinned:after {
    content: '';
    display: block;
    position: absolute;
    top: -43px;
    z-index: 0;
    left: 42px;
    width: 0px;
    height: 520px;
    border-left: var(--wires-width) var(--wires-style) var(--wires-xx-light);
}*/

.inner h2:before, .pinned h2:before {
    content: '';
    display: block;
    mix-blend-mode: lighten;
    position: relative;
    bottom: -28px;
    left: -49px;
    /* overflow: hidden; */
    width: 80%;
    opacity: .6;
    height: 25px;
    border-bottom: var(--wires-width) var(--wires-style) var(--wires-xxx-light);
    transition: border-color 0s ease-out;
    /* background: rgba(10, 7, 6, 0.4); */
    -moz-box-shadow: 0px 0px 10px 3px rgb(10,7,16,0.5);
    /* box-shadow: 0px 0px 10px 3px rgb(10,7,16,0.5); */
    /* z-index: 1; */
}
.inner h2:after {
    content: '';
    display: block;
    position: absolute;
    top: 44px;
    opacity: 0.3;
    transform: rotate(44deg);
    left: -49px;
    width: 17px;
    height: 17px;
    border: var(--wires-width) var(--wires-style) var(--wires-medium);
    transition: border-color 0s ease-out;
    /* border-top-width: 0px; */
    border-bottom-color: var(--wires-light);
    border-left-width: 1px;
    border-bottom-width: 2px;
    border-radius: 50%;
    z-index: 1;
}
.pinned h2:after {
    content: '';
    display: block;
    position: absolute;
    top: 59px;
    opacity: .3;
    transform: rotate(302deg);
    left: -9px;
    width: 18px;
    height: 19px;
    border: var(--wires-width) var(--wires-style) var(--wires-medium);
    /* border-top-width: 0px; */
    border-bottom-color: var(--wires-light);
    border-left-width: 1px;
    /* border-bottom-width: 0px; */
    border-radius: 50%;
    z-index: 1;
}
.inner aside div h2:before {
    content: '';
    display: none;
    mix-blend-mode: lighten;
    position: absolute;
    top: 4px;
    right: -71px;
    width: 345px;
    height: 25px;
    border-bottom: var(--wires-width) var(--wires-style) var(--wires-light);
    transition: border-color 0s ease-out;
    background: none;
    z-index: 1;
}
.inner aside div h2:after {
    content: '';
    display: none;
    position: absolute;
    top: 16px;
    right: -53px;
    width: 25px;
    height: 25px;
    border: 2px var(--wires-style) var(--wires-medium);
    border-bottom-color: var(--wires-medium);
    border-left-width: var(--wires-width);
    border-bottom-width: var(--wires-width);
    transition: border-color 0s ease-out;
    /* border-bottom-width: 0px; */
    border-radius: 5%;
    /*background: rgba(10, 7, 6, 0.3);
    -moz-box-shadow: 0px 0px 10px 3px rgb(10,7,16,0.5);
    box-shadow: 0px 0px 10px 3px rgb(10,7,16,0.5);*/
    z-index: 1;
}
.arc-wires {
    width: 100%;
    pointer-events: none;
    z-index: 3;
    max-width: var(--max-width);
    position: relative;
    margin: 0px auto;
    filter: saturate(1.2);
    height: 321px;
    opacity: 50%;
}
.arc-wires:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    bottom: 79px;
    left: -44px;
    width: 88px;
    transform: rotate(305deg);
    height: 88px;
    border: var(--wires-width) var(--wires-style) var(--wires-xx-light);
    border-bottom-color: var(--wires-xx-light);
    border-right-width: var(--wires-width);
    /* transition: border-color 0s ease-out; */
    z-index: 5;
    border-left-width: 0px;
    border-top-width: 0px;
    border-left-color: var(--wires-light);
    border-radius: 50%;
    clip-path: inset(0 0% 0% 36.8%);
}
.arc-wires:before {
    content: '';
    display: block;
    transform: rotateZ(7deg);
    position: absolute;
    bottom: 208.5px;
    left: -110px;
    width: 220px;
    height: 220px;
    /* border: none; */
    border-bottom-style: var(--wires-style);
    border-bottom-color: var(--wires-medium);
    border-right-width: var(--wires-width);
    border-right-color: transparent;
    transition: border-color 0s ease-out;
    z-index: 1;
    /* border-left-style: var(--wires-style); */
    border-top-width: 0px;
    /* border-right-width: 18px; */
    border-left-width: 0px;
    border-bottom-width: var(--wires-width);
    /* border-color: #000; */
    border-bottom-color: var(--wires-xxx-light);
    border-radius: 50%;
    clip-path: inset(0 7% 0 34%);
}
/*arc measuring space-first
.identity:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    transform: rotate(55deg);
    top: -46px;
    right: -42px;
    width: 81px;
    height: 81px;
    opacity: .5;
    border: var(--wires-width) var(--wires-style) var(--wires-xx-light);
    border-top-color: var(--wires-xx-light);
    border-right-width: var(--wires-width);
    border-left-width: 0px;
    border-bottom-width: 0px;
    border-left-color: var(--wires-medium);
    border-radius: 50%;
    clip-path: inset(0 0% 0% 13%);
}*/

/*svg-settables

.close-x {
  stroke: black;
  fill: transparent;
  stroke-linecap: round;
  stroke-width: 2;
}

rect {
  fill: #FEFECE;
  stroke: #A80036;
  stroke-width: 1.5;
}*/

body {
    background-color: var(--background);
    /* color: #888; */
    margin: 0px;
    /* background-image: repeating-linear-gradient(-45deg, transparent,
        transparent var(--background-stripe-spacing),
        var(--wires-xxx-light) calc(var(--background-stripe-spacing) ),
        var(--wires-xxx-light) calc(var(--background-stripe-spacing)  + var(--background-stripe-width))
    ); */
    font-family: 'Hershey Simplex', sans-serif;
    font-size: 20px;
    line-height: 1.3em;
    color: var(--text-normal);
}
header:after, header:before {
    content: "";
    display: block;
    z-index: -4;
    position: absolute;
    background-color: var(--far-background);
    background-image: repeating-linear-gradient(45deg, transparent, transparent var(--background-stripe-spacing), var(--background-stripe-color) calc(var(--background-stripe-spacing)), var(--background-stripe-color) calc(var(--background-stripe-spacing) + var(--background-stripe-width)));
}
header:before {
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: calc( ((100dvw + var(--max-width))) / 2);
}
header:after {
    top: 0px;
    right: 0px; 
    bottom: 0px;
    left: calc( ((100dvw + var(--max-width))) / 2); 
}
main:before, main:after {
    content: "";
    display: block;
    z-index: 12;
    position: absolute;
    background-color: var(--far-background);
    background-image: repeating-linear-gradient(45deg, transparent, transparent var(--background-stripe-spacing), var(--background-stripe-color) calc(var(--background-stripe-spacing)), var(--background-stripe-color) calc(var(--background-stripe-spacing) + var(--background-stripe-width)));
}
main:before {
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: calc( ((100dvw + var(--max-width))) / 2);
}
main:after {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: calc( ((100dvw + var(--max-width))) / 2);
}
main {
    position: relative;
}
.inner.logos {
    position: relative;
}

.inner.identity {
    padding-top: 300px;
}
a.logo {
    display: block;
    z-index: 225;
    pointer-events: none;
    width: 506px;
    position: absolute;
    left: -330px;
    bottom: -88px;
    /* opacity: 1; */
    filter: brightness(0.1);
    height: 119px;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: opacity .2s;
    transition: opacity .6s;
}
div.logo-alt {
    display: block;
}
div.logo-alt svg {
    overflow: visible;
}
#dot {
    display: block;
    z-index: 31;
    border-radius: 12px;
    opacity: 1;
    position: static;
}
#void {
    display: none;
}
div.logo-wires {
    position: absolute;
    z-index: 1;
    bottom: 147px;
    left: 30px;
    filter: saturate(1.5);
    opacity: .8;
}
div.logo-wires:before {
    content: '';
    display: block;
    position: relative;
    bottom: -26px;
    opacity: 0.3;
    border-radius: 2.5px;
    left: -79px;
    width: 469px;
    height: calc(var(--wires-width)/1.5);
    z-index: 40;
    -webkit-transition: opacity 0s;
    /* background: rgb(255, 255, 255); */
    background: linear-gradient(90deg, var(--wires-x-light) 0%, var(--wires-heavy) 40%, var(--wires-medium) 65%, var(--wires-medium) 81%, var(--wires-heavy) 91%, var(--wires-xx-light) 100%);
    transition: opacity 0s, background 0s ease-out;
}
div.logo-wires:after {
    content: '';
    display: block;
    position: relative;
    top: 110px;
    opacity: 0.5;
    left: -79px;
    width: 699px;
    height: calc( var( --wires-width) / 1.3);
    z-index: 0;
    border-radius: 1.5px;
    background: linear-gradient(91deg, var(--wires-light) 0%, var(--wires-heavy) 17%, var(--wires-medium) 35%, var(--wires-heavy) 81%, var(--wires-xxx-light) 100%);
    -webkit-transition: opacity 0s, border-color 0s ease-out;
    transition: opacity 0s, border-color 0s ease-out;
}
#void {}
div.logo-alt {
    z-index: 0;
    pointer-events: none;
    /*    night*/
    background-image: var(--void-initial-image);
    /*    day*/
    /* filter: sepia(1) saturate(1.4) hue-rotate(160deg) brightness(2);
    background-image: url(../images/likewise-dotted.svg);*/
    filter: var(--logo-alt-filter);
    display: block;
    position: relative;
    opacity: 1;
    background-size: contain;
    background-repeat: no-repeat;
    width: 506px;
    height: 124px;
    left: -328px;
    bottom: 6px;
    transition: filter 2s cubic-bezier(0, 0.63, 0, 0.66), scale 2.5s ease-in-out;
}
body:has(#dot:hover) {
    overflow: hidden;
}
#void {
    pointer-events: none;
    z-index: 0;
    content: "";
    /* filter: blur(1px); */
    display: block;
    mix-blend-mode: var(--void-mix-blend-mode);
    background-color: var(--void-background-color);
    width: 23px;
    bottom: 1px;
    /* border-width: 0px; */
    /* border-style: solid; */
    /* border-color: #4aff7d; */
    height: 24px;
    scale: 1;
    left: 2px;
    border-radius: 50%;
    position: absolute;
    transform-origin: center;
    -webkit-transition: background-color .6s ease-in, scale 1s cubic-bezier(0, 0.99, 0.1, 1);
    transition: background-color .6s ease-out, scale 1s cubic-bezier(0, 0.99, 0.1, 1);
}
/*day placeholder void*/

/*#void {
    pointer-events: none;
    z-index: 2;
    content: "";
    display: block;
    background-color: #65b2f34a;
    width: 24px;
    bottom: 0px;
    border-width: 2px;
    border-style: solid;
    border-color: #84aae4;
    
    height: 24px;
    scale: 1;
    left: -0.5px;
    border-radius: 50%;
    position: absolute;
    transform-origin: center;
    -webkit-transition: background-color .4s ease-in, scale 1s cubic-bezier(0, 0.99, 0.1, 1);
    transition: background-color .4s ease-out, scale 1s cubic-bezier(0, 0.99, 0.1, 1);
}*/

#dot:hover #void {
    scale: 170;
    left: 249.5px;
    background-color: #d4ffe5;
    mix-blend-mode: exclusion;
    filter: 0;
    /* backdrop-filter: drop-shadow(2px 4px 6px black); */
    webkit-transition: left .5s, background-color 1.2s cubic-bezier(0, 0.6, 0.1, 1), scale .6s cubic-bezier(0, 0.6, 0.1, 1), border-width .3s ease-out;
    transition: left .5s, background-color 1.2s cubic-bezier(0, 0.6, 0.1, 1), scale 1s cubic-bezier(0, 0.6, 0.1, 1), border-width .3s ease-out;
}
body[data-theme="light"] #dot:hover div.logo-alt {
    opacity: 1;
    /* -webkit-transition: opacity .1s, scale 1s ease-in-out;
    transition: opacity .1s, scale 1s ease-in-out;*/
}
body[data-theme="dark"] #dot:hover .overlay:after {
    opacity: .3;
}
#dot:hover a.logo {
    opacity: 1;
    /*transition-duration: .2s;
    filter: brightness(0);*/
    transition: opacity 0s;
    background-image: var(--void-hover-image);
}
body[data-theme="dark"] #dot:hover a.logo {
    opacity: 0;
}
aside p {
    font-family: 'Hershey Simplex', sans-serif;
    letter-spacing: .25px;
    font-weight: 500;
    color: var(--text-normal);
    margin-top: 20px;
    margin-bottom: 35px;
    clear: both;
}
/*#likewise svg {
 -webkit-filter: url("#goo");
 filter: url("#goo");
}*/

.header-inner-grid {
    /* overflow: hidden; */
    margin: 0px auto;
    /* z-index: 1; */
    max-width: var(--max-width);
    display: grid;
    position: relative;
    grid-template-columns: 1fr 40px 275px;
    grid-template-rows: 241px min-content;
    gap: 0px 0px;
    grid-template-areas:
        "identity space-first side-first"
        "pinned space-second side-first";
    background-image: repeating-linear-gradient(45deg, transparent, transparent var(--background-stripe-spacing), var(--background-stripe-color) calc(var(--background-stripe-spacing)), var(--background-stripe-color) calc(var(--background-stripe-spacing) + var(--background-stripe-width)));
    background-color: var(--far-background);
}
.identity {
    position: relative;
    background-color: var(--background);
}
/*
.identity {
    transform: rotate(0deg);
    transform-origin: bottom left;
    transition: transform .2s ease-out;
     top:2px;z-index: 15;
}
.identity:hover {
    transform: rotate(-4deg);
}*/

.identity:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    /*border-bottom: var(--wires-width) var(--wires-style) var(--wires-xxx-light);*/
    border-left: var(--wires-width) var(--wires-style) var(--wires-vertical);
    border-right: var(--wires-width) var(--wires-style) var(--wires-xxxx-light);
    transition: border-color 0s ease-out;
}
.inner {
    padding: 30px 20px;
    position: relative;
}
.space-first, .space-second {
    margin: 0px;
    padding: 0px;
    background-color: transparent;
    /* border-left: var(--wires-width) var(--wires-style) var(--wires-xxx-light); */
    border-right: var(--wires-width) var(--wires-style-alt) var(--wires-xxxx-light);
    transition: border-color 0s ease-out;
    /* background-image: repeating-linear-gradient(-45deg, transparent, transparent 16.5px, rgb(100 100 100 / 14%) 16.5px, rgb(50 50 50 / 100%) 18px); */
    /*background-color: rgb(26 15 48 / 29%);
    mix-blend-mode: lighten;*/
    background-color: transparent;
    /*    var(--near-background);*/
}
/*.space-first::before {
    content: '';
    opacity: 0.6;
    display: block;
    height: 100%;
    background: linear-gradient(1deg,  transparent, #111);
}
.space-second:before {
    content: '';
    opacity: 0.6;
    display: block;
    margin-left: -4px;
    margin-right: -4px;
    height: 100%;
    background: linear-gradient(1deg, #24162c, transparent);
}*/

.space-first {
    grid-area: space-first;
    position: relative;
    opacity: 1;
}
.space-first:before, .space-second:before {
    content: "";
    display: block;
    z-index: 2;
    width: 100%;
    height: 100%;
    position: absolute;
    /* background-color: var(--far-background); */
    /* background-image: repeating-linear-gradient(45deg, transparent,
        transparent var(--background-stripe-spacing),
        var(--wires-xxxx-light) calc(var(--background-stripe-spacing) ),
        var(--wires-xxxx-light) calc(var(--background-stripe-spacing)  + var(--background-stripe-width))
    ); */
}
.space-second {
    grid-area: space-second;
    position: relative;
    opacity: 0.4;
}
.side-first, .side-second {
    padding: 40px 0 0 0;
    /* background-color: var(--background); */
    /* border-left: 2px var(--wires-style) #444; */
    /* z-index: 0; */
    border-right: var(--wires-width) var(--wires-style-alt) var(--wires-xxxx-light);
    transition: border-color 0s ease-out;
}
.side-first:before, .side-second:before {
    background-color: var(--background);
    content: "";
    display: inline-block;
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
}
.side-first {
    grid-area: side-first;
}
.side-second {
    grid-area: side-first;
}

.side-second:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -13px;
    z-index: 8;
    right: -12px;
    opacity: 0.5;
    width: 25px;
    height: 25px;
    border: var(--wires-width) var(--wires-style) var(--wires-xx-light);
    border-bottom-color: var(--wires-x-light);
    border-left-color: var(--wires-xx-light);
    border-radius: 50%;
    border-top-width: calc(var(--wires-width) / 1.5);
    transition: border-color 0s ease-out;
}

.pinned {
    padding: 0px 40px 40px;
    grid-area: pinned;
    position: relative;
    width: 100%;
    z-index: 0;
    margin: 0px auto;
    border-left: var(--wires-width) var(--wires-style) var(--wires-vertical);
    /*    border-top: var(--wires-width) var(--wires-style) var(--wires-xxxxx-light);*/
    border-bottom: none;
    border-right: var(--wires-width) var(--wires-style) var(--wires-xxxx-light);
    transition: border-color 0s ease-out;
    background-color: var(--background);
}
.inner {
    transition: border-color 0s ease-out;
    border-left: var(--wires-width) var(--wires-style) var(--wires-vertical);
    border-right: var(--wires-width) var(--wires-style) var(--wires-vertical);
    padding: 40px;
    max-width: var(--max-width);
    margin: 0px auto;
    /* overflow: hidden; */
    /* background-color: var(--background); */
}
.inner:has(aside) {
    border-left: var(--wires-width) var(--wires-horizontal) var(--wires-style);
    border-right: var(--wires-width) var(--wires-vertical) var(--wires-style);
    padding: 0px;
    display: flex;
    max-width: var(--max-width);
    margin: 0px auto;
    background-color: transparent;
}
.inner:has(aside)>div {
    width: 100%;
    padding: 40px 40px;
    border-left: var(--wires-width) var(--sub-wires-style) var(--wires-xxx-light);
    /* background-color: var(--background); */
    transition: border-color 0s ease-out;
    
    /*display: flex;
    row-gap: 40px;
    flex-direction: column;
    flex-wrap: nowrap;*/
}
.inner:has(aside)>div>div:not(.roller, .lof-maps){
    /* clear: both; */
    margin-bottom: 50px;
    /* overflow: hidden; */
    position: relative;
}

.inner:has(aside)>div>div p{
/*    margin-bottom:0px;*/
}
.inner:has(aside)>div>div:last-of-type{
    margin-bottom:0px;
}
.inner aside {
    position: relative;
    width: 379px;
    /*    border-bottom: var(--wires-width) var(--sub-wires-style) var(--wires-xxx-light);*/
    padding: 40px 40px 45px;
    /*    background-color: var(--background);*/
    transition: border-color 0s ease-out;
}
.inner aside>div {
    position: sticky;
    top: 40px;
    /*    transform: rotate(359deg);*/
}
section:last-of-type .inner aside {
    border-bottom-width: 0px;
}
.inner aside:after {
    content: '';
    display: block;
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: .7;
    width: 19px;
    height: 19px;
    border: var(--wires-width) var(--wires-style) var(--wires-xxx-light);
    /* border-top-width: 0px; */
    border-bottom-color: var(--wires-xx-light);
    border-right-width: 1px;
    /* border-top-width: 0px; */
    border-radius: 50%;
    z-index: 1;
    transition: border-color 0s ease-out;
}
#dot {
    display: block;
    width: 24px;
    scale: 0.8;
    pointer-events: all;
    height: 24px;
    border-radius: 12px;
    position: absolute;
    left: 300px;
    bottom: 107px;
}
.inner.icons>div {
    text-align: center;
    padding-top: 20px;
}
.side-tag {
    position: absolute;
    padding-top: 23px;
    background-color: #291127;
    color: rgb(255 255 255 / 78%);
    font-weight: 600;
    font-size: 25px;
    border: var(--wires-width) var(--wires-style) #525252;
    border-top: none;
    transform-origin: top left;
    left: -60px;
    padding: 33px 10px 20px;
    top: 0;
    width: 60px;
    height: 120px;
    font-family: "Hershey Simplex";
    font-size: 32px;
    text-align: center;
    -webkit-clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%, 50% calc(100% - 25px));
    clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%, 50% calc(100% - 25px));
    /*-webkit-clip-path: polygon(100% 100%, 0 100%, 0 0, 100% 0, 90% 50%);
clip-path: polygon(100% 100%, 0 100%, 0 0, 100% 0, 90% 50%);*/
}
.side-tag .mdi {
    font-size: 38px;
    line-height: 1.2rem;
}
.login-options {
    /* margin-left: 3px; */
    margin-top: 25px;
    z-index: 1;
    position: relative;
}
header {
    width: 100%;
     z-index: -3; 
    grid-area: header;
    border-bottom: var(--wires-width) var(--wires-style) var(--wires-horizontal);
    position: relative;
    transition: border-color 0s ease-out;
    .inner {
    padding-top: 300px;
    border-left: var(--wires-width) var(--wires-style) var(--wires-medium);
    border-right: none;
    transition: border-color 0s ease-out;
    }
}

main {
    width: 100%;
    t;
    z-index: -4;
    position: relative;
}
section {
    width: 100%;
    /* border-bottom: var(--wires-width) var(--wires-style) var(--wires-horizontal); */
    border-bottom: var(--wires-width) var(--sub-wires-style) var(--wires-xxx-light);
    /* background-color: rgb(255 255 255); */
    position: relative;
    z-index: 13;
}
section .inner:before {
    /*border-left: var(--wires-width) var(--wires-style) var(--wires-vertical);
    border-right: var(--wires-width) var(--wires-style) var(--wires-vertical);
    padding: 40px;*/
    max-width: var(--max-width);
    margin: 0px auto;
    /*    background-color: var(--background);*/
    content: "";
    display: inline-block;
    z-index: -4;
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
}
main section:last-of-type {}
main section:last-of-type>div {}
p {
    font-family: 'Hershey Simplex', sans-serif;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 1.25em;
}
ul {
    list-style: disc;
    padding-left: 35px;
    margin-top: 0px;
    margin-bottom: 1.25em;
}
ol {
    list-style: decimal;
    padding-left: 35px;
    margin-top: 0px;
    margin-bottom: 1.25em;
}
ul>li, ol>li {
    font-family: 'Hershey Simplex', sans-serif;
    /* font-size: 18px; */
    /* line-height: 21px; */
    /* padding-bottom: 5px; */
    color: var(--text-normal);
}
li>ul, li>ol {
    padding-top: 15px;
}
em, i {
    font-style: italic;
}
b, strong {
    font-weight: 800;
    color: var(--text-heavy);
    letter-spacing: 0.7px;
}
p > a {
     color: var(--link-color);


    &:hover {
        color: var(--link-hover-color);
        text-decoration:underline;
    }
}
h1, h2, h3, h4, h5, h6 {
    color: var(--text-headline);
    margin-top: 0px;
    margin-bottom: 20px;
    clear: both;
}
h1 {
    font-size: 30px;
    line-height: 32px;
    font-weight: 600;
}
aside h2 > span.mdi{
    font-size: smaller;
    margin-right:10px;
}

h2 {
    font-family: 'Hershey Simplex', sans-serif;
    font-size: xx-large;
    line-height: 1em;
    position: relative;
    display: block;
    width: 100%;
    letter-spacing: -0.5px;
    margin-top: -1em;
    margin-bottom: 1.2em;
    font-weight: 300;
    color: var(--text-headline);
}
h2 strong {
    font-weight: 500;
    display: inline-block;
    padding: 1px 1px 1px;
    font-size: 1.1em;
    /* background-color: #333; */
    /* line-height: 32px; */
    color: var(--text-headline-strong);
    letter-spacing: 0px;
}
.intro {
    font-family: 'Hershey Simplex', sans-serif;
    font-size: larger;
    /* line-height: 1.25em; */
    display: inline-block;
    width: 100%;
    /* border-left: 1px solid var(--far-background); */
    letter-spacing: -0.5px;
    margin-top: 0px;
    margin-bottom: 1em;
    font-weight: 300;
    color: var(--text-headline);
}
.intro:last-child {
    margin-bottom: 0px;
}
.intro strong {
    font-weight: 600;
    color: var(--text-heavy-alt);
    font-size: 32.5px;
    letter-spacing: 0px;
}
.intro.services {
    max-width: 733px;
}
.intro.services strong {
    font-weight: 700;
    color: var(--text-heavy-alt);
    /*    display: inline-block;*/
    /* padding: 1px 6px 1px; */
    font-size: larger;
    /* background-color: #333; */
    letter-spacing: -.5px;
    /* line-height: 38px; */
}
.intro>span.mdi {
    margin-right: 10px;
    margin-left: -3px;
    position: relative;
    top: 1px;
    font-size: larger;
}
.intro .add-contact-text span.mdi {
    margin-right: 9px;
    margin-left: -2px;
    position: relative;
    top: 1px;
    /* line-height: 1px; */
    font-size: 36px;
    margin-right: 6px;
}
.intro .add-contact-text strong {
    color: #4f7949;
}
.intro .add-contact-text span.arrow-fix {
    font-size: 20px;
    position: relative;
    bottom: 0px;
    top: unset;
    color: #4f7949;
}
.intro .add-contact-text {
    position: absolute;
    bottom: 42px;
    color: #4f7949;
    left: 150px;
    font-weight: 400;
    font-size: 20px;
    display: inline-block;
}
.side-first h2 {
    margin-bottom: 15px;
    font-size: 24px;
    text-align: right;
}
aside p:last-of-type {
    margin-bottom: 0px;
}
aside h2 {
    color: var(--text-section);
    font-weight: 500;
    margin-bottom: 0px;
    margin-top: 0em;
    letter-spacing: .25px;
}




h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: 700;
    color: var(--text-heavy);
    letter-spacing: 1.5px;
}
h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: var(--text-normal);
}
h5 {
    font-size: 20px;
    text-transform: uppercase;
}
h6 {
    font-size: 24px;
    line-height: 25px;
    margin-bottom: 15px;
}
h2>span.mdi {
    margin-right: 14px;
    color: #ccc;
    margin-left: -4px;
    position: relative;
    top: 1px;
    /* line-height: 1px; */
}
h2>span.mdi.right {
    margin-right: 0px;
    color: #666;
    float: right;
    position: relative;
}
/*h2>span.mdi.right:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    top: -42px;
    right: -42px;
    width: 80px;
    height: 80px;
    border: 2px var(--wires-style) #292929;
    border-left-width: 2px;
    z-index: 5;
    border-left-width: 0px;
    border-bottom-width: 2px;
    border-radius: 50%;
    -moz-box-shadow: 0px 0px 20px 13px rgb(10,7,16,0.3);
}*/

blockquote {
    color: #777;
    font-family: 'Hershey Simplex', sans-serif;
    border-top: var(--wires-width) var(--wires-style) #666;
    border-bottom: var(--wires-width) var(--wires-style) #666;
    padding: 20px 5px 20px 70px;
    margin: 0px 0px 35px;
    position: relative;
    font-weight: bold;
    font-size: 22px;
    line-height: 28px;
}
blockquote:before {
    content: 'ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“';
    display: inline;
    font-weight: bold;
    font-size: 80px;
    line-height: 90px;
    position: absolute;
    position: absolute;
    font-family: serif;
    left: 10px;
    top: 12px;
}
code {
    white-space: nowrap;
    padding: 0px 8px;
    margin-right: 3px;
    margin-bottom: 7px;
    font-family: 'Hershey Simplex', sans-serif;
    font-size: 18px;
    display: inline-block;
    line-height: 30px;
    letter-spacing: .25px;
    font-weight: 300;
    border-radius: 2px;
}
.skills-graph {
    height: auto;
    margin-bottom: 0px;
}
.skillset-container {
    display: grid;
    grid-template-columns: 270px 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 0px;
    margin-top: 10px;
    margin-bottom: 20px;
    align-items: start;
}
.skillset-summary {
    margin-top: 10px;
}
.container {}
.skillset:nth-child(1) {}
.skillset:nth-child(2) {}
.skillset:nth-child(3) {
    /*    display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content min-content;
  gap: 10px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "."
    ".";
  grid-area: col3;*/
}
.skillset {
    display: inline-grid;
    margin-bottom: 0px;
    margin-top: 0px;
    >h4 {
        font-family: 'Hershey Simplex', sans-serif;
        font-size: 28px;
        margin-bottom: 20px;
        font-weight: 300;
        letter-spacing: -.25px;
        line-height: 30px;
        display: inline-block;
        margin-right: 10px;
    }
    >div>span {
        white-space: nowrap;
        padding: 0 5px 0 0;
        font-family: 'Hershey Simplex', sans-serif;
        font-size: 18px;
        display: inline-block;
        line-height: 30px;
        letter-spacing: .25px;
        font-weight: 300;
        border-radius: 2px;
    }
}
table {
    margin: 15px 0px 35px;
}
table td {
    border: 1px solid #777;
    font-family: 'Hershey Simplex', sans-serif;
    color: #777;
    padding: 10px;
    font-weight: 300;
}
table th {
    border: 1px solid #777;
    color: #777;
    padding: 10px;
    font-weight: 500;
}
table thead {
    background: #777;
}
table thead th {
    font-weight: normal;
    color: #000;
}
table tfoot {
    font-weight: bold;
}
.network_canvas {
    position: relative;
    aspect-ratio: 1.65;
    /* background-color: var(--textarea-bg); */
    text-align: center;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    margin: 0px auto;
}
.network_controls .experiment{
    width:150px;display: inline-block;
}
.network_controls input{
    text-align: left;
}
.network_controls button{
    font-size: medium;
    font-family: "Roboto";
    font-weight: 400;
    padding: 3px 10px;
    border: 1px solid #999;
    border-radius: 7px;
}
/*
.network_controls input, .network_controls button {
    font-size: 20px;
    line-height: 1rem;
    border-radius: 3px;
    border: none;
    height: 37px;
}
.network_controls input {
    background-color: #ddd;
    color: #111;
    padding: 7px 10px 5px;
}
.network_controls button {
    background-color: #aaa;
    color: #111;
    font-weight: 400;
    padding: 10px 10px 8px;
}*/
canvas#node_layer {
    width: 90%;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
canvas#conn_layer {
    width: 90%;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    filter: sepia(.1) saturate(.8) contrast(1);
}
.network_controls>span{
    padding-top: 6px;
}
.inner:has(aside)>div>div.network_controls {
    text-align: center;
    /* width: 100%; */
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    /* padding: 10px 20px 10px; */
    /* background-color: var(--textarea-bg); */
    display: flex;
    margin: 0px auto;
    gap: 15px 20px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.network_controls .experiment input[type="text"]{
    padding: 12px 14px 9px;
}
#draw_btn{
    cursor: pointer;
}
#draw_btn > span.mdi{
    padding-right: 7px;
    font-size: 19px;
    position: relative;
    top: 1px;
}
img.gun {}
img.unh_logo {
    opacity: .9;
    margin-top: -5%;
}
img.pier73 {
    /* max-width: 80%; */
}
.art-grid {
    font-size: 0;
}
.art-grid>img {
    margin-bottom: 20px;
    display: inline-block;
}
.split-50-50.lof-maps {
    max-width: 100%;
    grid-gap: 0px 40px;
    margin-bottom: 9%;
    display: grid;
    overflow:visible;
    grid-template-columns: repeat(2, minmax(calc(50% - 40px), 375px));
}
.lof-maps img:nth-of-type(1){
    filter: brightness(1.1) contrast(.9) saturate(1);
}
body[data-theme="dark"] .lof-maps img:nth-of-type(2){
    box-shadow: -10px 0px 80px #ab4fa038;
}


.design-grid {
    font-size: 0;
    text-align: center;
    margin: 20px auto;
    max-width: 96%;
}

.split-50-50 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 0px 40px;
    justify-content: center;
    justify-items: center;
    align-items: center;
}
.split-70-30 {
    display: grid;
    grid-template-columns:  1fr 28%;
    grid-template-rows: 1fr;
    gap: 0px 40px;
    justify-content: center;
    justify-items: center;
    align-items: center;
}
.split-30-70 {
    display: grid;
    grid-template-columns: 36% 1fr;
    grid-template-rows: 1fr;
    gap: 0px 40px;
    justify-content: center;
    justify-items: center;
    align-items: center;
}
.split-80-20 {
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 40px;
    justify-content: center;
    justify-items: center;
    align-items: center;
}
.split-60-40 {
    display: grid;
    grid-template-columns: 62% 1fr;
    grid-template-rows: 1fr;
    gap: 6%;
    justify-content: center;
    justify-items: center;
    align-items: center;
}
.split-55-45 {
    display: grid;
    grid-template-columns: 56% 1fr;
    grid-template-rows: 1fr;
    gap: 0px 40px;
    justify-content: center;
    justify-items: center;
    align-items: center;
    margin: 0px 15px 40px;
}
[class^="split"].no-bottom-margin{
    margin-bottom:0px;
}

[class^="split"]{
    margin: 0px auto 40px;
    text-align: center;
}
.cat-toys {
    align-self: end;
}
img.blue {
    margin-bottom: -1em;
}
img.populated {
    object-fit: cover;
}
.sw-logo{
    margin-bottom: 50px;
    scale: 86%;
    transform: rotate(-1deg);
}

.interfaces .inner:has(aside)>div>div {
    /* overflow:hidden; */
}
.auth-status {
    color: var(--text-alt);
    font-family: 'Hershey Simplex', sans-serif;
    font-size: 17px;
    letter-spacing: .25px;
    line-height: 30px;
    position: relative;
    display: inline-block;
    font-weight: 500;
    bottom: 10px;
    margin-bottom: 15px;
}
.auth-status.auth-message {
    color: var(--text-heavy-alt);
}
.auth-status span.mdi {
    padding-right: 9px;
    font-size: 20px;
    position: relative;
    top: 1px;
    color: var(--text-alt);
    /*    #fdd835;*/
}
@-webkit-keyframes scan-bg {
    0% {
        background-position: 0% top;
        opacity: 1;
    }
    90% {
        background-position: 90% top;
        opacity: 1;
    }
    100% {
        background-position: 100% top;
        opacity: 0;
    }
}
@keyframes scan-bg {
    0% {
        background-position: 0% top;
        opacity: 1;
    }
    90% {
        background-position: 90% top;
        opacity: 1;
    }
    100% {
        background-position: 100% top;
        opacity: 0;
    }
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}
@-webkit-keyframes spin-stop {
    0% {
        -webkit-transform: rotate(-359deg);
        transform: rotate(-359deg)
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}
@keyframes spin-stop {
    0% {
        -webkit-transform: rotate(-359deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(-359deg);
        transform: rotate(0deg)
    }
}
.experiment {
    margin-bottom: 0px;
    margin-top: 0px;
    border-radius: 7px;
    background-color: var(--background);
    position: relative;
    clear: both;
}
.experiment input[type="text"], .experiment input[type="password"] {
     color: var(--anti-background);
     width: 100%;
     position: relative;
     font-family: "Hershey Simplex", sans-serif;
     font-size: 19px;
     letter-spacing: .5px;
     line-height: 13px;
     font-weight: 300;
     border: 1px solid var(--input-default);
     border-radius: 7px;
     background-color: var(--far-background);
     padding: 13px 14px 14px;
     transition-property: border-color;
     transition-timing-function: cubic-bezier(0.21, 0.96, 1, 1);
     transition-duration: 100ms;
}
.experiment input[type="text"] {
    border-bottom-color: var(--input-default);
    font-weight: 400;
}
.experiment input[type="password"] {
    color: var(--text-heavy-alt);
    font-size: 32px;
    border-top-color: var(--input-default);
    font-family: sans-serif;
    padding: 8px 14px 4px;
    /* bottom: 1px; */
}


.experiment:has(input[type="password"]) {
    bottom: 1px;
}
.experiment:focus-within input[type="text"], .experiment:focus-within input[type="password"] {
    border-color: var(--input-focus-border);
    border-width: 1px;
    border-style: solid;
    background-color: var(--input-focus-background);
    color: var(--input-focus-value);
    z-index: 2;
}
.experiment:focus-within input[type="text"] {}
.experiment:focus-within input[type="password"] {}
input#uname::selection, input[type="password"]::selection {
    background-color: #fdd835db color: #000;
}
.experiment:focus-within input[type="text"]::placeholder, .experiment:focus-within input[type="password"]::placeholder {
    color: transparent;
}
.experiment:focus-within label {
    color: var(--input-focus);
}
.experiment:not(:focus-within) input[type="text"]:hover, .experiment:not(:focus-within) input[type="password"]:hover {
    border-color: var(--input-hover);
    z-index: 1;
}
.experiment:has(input[type="text"]:placeholder-shown:not(:focus)) label, .experiment:has(input[type="password"]:placeholder-shown:not(:focus)) label {
    color: var(--input-default);
    background-color: transparent;
}
.experiment:has(input[type="text"]:placeholder-shown:not(:focus):hover) label, .experiment:has(input[type="password"]:placeholder-shown:not(:focus):hover) label {
    color: var(--input-hover);
}
.experiment:has(input[type="text"]:placeholder-shown:not(:focus)) label, .experiment:has(input[type="password"]:placeholder-shown:not(:focus)) label {
    color: var(--input-default);
    background-color: transparent;
    /* font-style: italic; */
    font-size: 19px;
    line-height: 21px;
    font-weight: 500;
    padding: 0px 3px 0px 2px;
    position: absolute;
    display: inline-block;
    width: auto;
    top: 15px;
    left: 14px;
}
.experiment input[type="text"]::placeholder, .experiment input[type="password"]::placeholder {
    color: transparent;
}
.experiment:has(input:hover:not(:focus)) label {
    color: var(--input-hover);
}
.experiment input[type="text"]:not(:focus,:placeholder-shown),
.experiment input[type="password"]:not(:focus,:placeholder-shown)
 {
    background-color: var(--background);
}

.experiment label {
    color: var(--input-default);
    background-color: var(--far-background);
    font-size: 13px;
    font-family: "Hershey Simplex", sans-serif;
    letter-spacing: 0.3px;
    line-height: 6px;
    font-weight: 400;
    padding: 0px 3px 0px 3px;
    position: absolute;
    display: inline-block;
    width: auto;
    top: -4px;
    left: 6px;
    z-index: 10;
    transition-property: background-color,font-style, line-height, letter-spacing, padding, color, font-size, left, top;
    transition-timing-function: cubic-bezier(0.56, 0.12, 0.14, 0.99);
    transition-duration: 100ms;
    pointer-events: none;
    user-select: none;
}
input[type="checkbox"] {
    display: block;
    /* padding-bottom: 2px; */
    clear: both;
    float: left;
    cursor: pointer;
}
input[type="checkbox"]:before {
    content: "";
    background-image: url(../images/checkbox.svg);
    width: 16px;
    height: 16px;
    /* background-color: var(--background); */
    background-size: 17px 17px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    opacity: .7;
}
input[type="checkbox"]:checked:before {
    background-image: url(../images/checkbox-on.svg);
    opacity: 1;
}
input[type="checkbox"]:checked+label {
    color: var(--text-heavy-alt);
}
input[type="checkbox"]+label {
    cursor: pointer;
    font-size: 19px;
    font-weight: 500;
    line-height: 22px;
    font-family: "Hershey Simplex", sans-serif;
    color: var(--text-alt);
    position: relative;
    padding: 0;
    display: inline-block;
    padding-bottom: 6px;
    top: -2px;
    float: left;
    padding-left: 10px;
    letter-spacing: 0px;
    position: relative;
}
.side-first a.forgot {
    /* margin-top: 6px; */
    font-size: 16px;
    line-height: 22px;
    font-family: "Roboto", sans-serif;
    color: var(--text-thin);
    letter-spacing: .3px;
    position: relative;
    top: 10px;
}
.side-first a.forgot:hover {
    color: #fff;
}
@media (max-width: 1380px) {
    .header-inner-grid, .inner, .inner:has(aside) {
        margin: 0px 40px;
    }
    div.logo-wires:after {
        width: 529px;
    }
   
    header:before {
        left: 0px;
        width: 40px;
        right: unset;
    }
    header:after {
        right: 0px;
        width: 40px;
        left: unset;
    }
    main:before {
        left: 0px;
        width: 40px;
        right: unset;
    }
    main:after {
        right: 0px;
        width: 40px;
        left: unset;
    }

}
@media (max-width: 1100px) {
     #login:before, #login:after {
        width: 275px;
    }
    .identity:before {
        border-left: none;
    }
    .pinned {
        border-left: none;
    }
    .header-inner-grid, .inner, .inner:has(aside) {
        margin: 0px 0px;
        border-left: none;
        border-right: none;
    }
    .header-inner-grid:after, .inner:after {
        display:none;
    }
    .side-first, .side-second {/* border-right: none; */margin-right:40px;border-right: var(--wires-width) var(--wires-style-alt) var(--wires-xxxx-light);}
    body {
        --wires-vertical: #0c0b0e;
    }
    header:before, header:after, main:before, main:after {
        display: none;
    }
    :
}
@media (max-width: 915px) {
    #login:before,#login:after,.pinned:after, .identity:after{
        display:none;
    }

    .identity {
        /* border-left: 2px var(--wires-style) #444; */
        border-bottom: none;
        border-left: none;
        height: 100px;
    }
    .identity, .pinned, .inner {
        padding: 30px 20px;
    }
    .arc-wires, .header-inner-grid:before {
        display: none;
    }
    .header-inner-grid {
        /* overflow: hidden; */
        margin: 0px auto;
        max-width: 1100px;
        display: grid;
        position: relative;
        grid-template-columns: 1fr;
        grid-template-rows: min-content min-content min-content;
        gap: 0px 0px;
        grid-template-areas: "identity" "side-first" "pinned";
    }
    #nav_toggle {
        display: inline-block;
    }
    div.skillset-container {
        display: grid;
        grid-template-columns: unset;
        grid-template-rows: unset;
        gap: 20px;
        align-items: start;
        margin-top: -10px;
        margin-bottom: 10px;
    }
    .skillset-summary p:last-child {
        margin-bottom: 20px;
    }
    .inner:has(aside) {
        border-left: none;
        border-right: none;
        padding: 0px;
        display: flex;
        flex-direction: column;
        max-width: 1100px;
        margin: 0px auto;
        background-color: transparent;
    }
    .inner:has(aside)>div {
        width: 100%;
        padding: 20px 20px;
        border-left: none;
        border-right: none;
        background-color: var(--background);
    }
    .inner aside {
        position: relative;
        width: 100%;
        padding: 25px 20px 0px;
        background-color: var(--background);
        border-left: none;
        border-right: none;
    }
    .side-first {
        padding: 30px 20px 30px;
        margin-right: 0px;
    }
    .side-second, .space-first, .space-second {
        display: none;
    }
    .pinned, .inner {
        border-left: none;
    }
    .side-first, .inner {
        border-right: none;
    }
    .inner h2:before, .pinned h2:before {
        display: none;
    }
    .inner h2:after, .pinned h2:after, .header-inner-grid:after, .inner aside:after, .pinned:before, .inner:after {
        display: none;
    }
    .art-grid .split {
        gap: 0px 25px;
        display: block;
    }
    .art-grid .split {
        margin: 0px auto 0px;
    }
    .art-grid img {
        margin-bottom: 20px;
    }
    .intro .add-contact-text {
        left: 127px;
        bottom: 27px;
    }
    #nav_toggle {
        z-index: 101;
        position: absolute;
        right: 25px;
        left: unset;
        top: 25px;
        width: 30px;
        height: 30px;
        filter: invert(1);
    }
    #nav_toggle.active {
        filter: brightness(0);
    }
    #dot {
        display: block;
        width: 24px;
        z-index: 50;
        height: 24px;
        border-radius: 12px;
        background-color: #060606;
        position: absolute;
        left: 180px;
        scale: .5;
        top: 21px;
    }
    .logo-wires {
        display: none;
    }
    footer>div {
        padding: 30px 20px;
        margin: 0px;
    }
    .identity:before {
        display: none;
    }
    .split-50-50.lof-maps {
        max-width: 100%;
        grid-gap: 0px 20px;
    }
    canvas#node_layer,
    canvas#conn_layer{
/*        width:95%;*/
    }
    .design-grid {
        margin: 0px auto 0px;
        max-width: 100%;
    }

    h2{
        margin-top:0;
    }
}



svg {
    --data-exchange-light-color: #2791c0;
    --data-exchange-color: #303e68;
    --data-exchange-network-color: #2791c0;
}
path.interweb {
    opacity: 0.7;
    fill: rgb(40 47 75);
}
tspan {
    text-anchor: middle;
    font-size: 10px;
    fill: #fff;
}
text, text tspan {
    pointer-events: none;
    user-select: none;
}
/*.no-wrap text tspan{
      text-anchor: start;
    }*/

.primary-node text tspan {
    font-size: 19px;
    /* font-family: "Hershey Simplex"; */
    font-weight: 400;
    fill: #515151;
}
.secondary-node text tspan {
    font-size: 14px;
    font-weight: 500;
    fill: #222;
}
.secondary-node.smaller-text text tspan {
    font-size: 12px;
    font-weight: 500;
}
.secondary-node.secondary-alt text tspan {
    fill: #eee;
}
line {
    stroke-width: 12px;
    stroke: #555;
}
line.primary-link {
    stroke-width: 12px;
    stroke: #888;
}
line.secondary-link {
    stroke-width: 12px;
    stroke: #666;
}
line.data-exchange-network {
    stroke-width: 12px;
    stroke-opacity: 1;
    stroke: var(--data-exchange-network-color);
    stroke-dasharray: 11 12;
}
line.data-exchange-light {
    stroke-width: 12px;
    stroke-opacity: 1;
    stroke: var(--data-exchange-light-color);
}
line.data-exchange {
    stroke-width: 12px;
    /* stroke-opacity: .2; */
    stroke: var(--data-exchange-color);
}
g circle {
    fill: #555;
    cursor: grab;
}
g circle:active {
    cursor: grabbing;
}
g.primary-node circle {
    stroke-width: 0px;
    stroke: #111;
    fill: #fff;
}
g.data-exchange text tspan {
    font-size: 11px;
    fill: #a0e2ff;
}
g.secondary-node.data-exchange text tspan, g.secondary-node.data-exchange-light text tspan {
    font-size: 13px;
    font-weight: 500;
    fill: #fff;
}
g.secondary-node.data-exchange circle, g.data-exchange circle {
    stroke-width: 0px;
    stroke: #111;
    fill: #303e68;
}
g.secondary-node circle {
    stroke-width: 0px;
    stroke: #111;
    fill: #888;
}
g.outer-node {
    circle {
        stroke-width: 0px;
        stroke: #111;
        fill: #888;
    }
    text tspan {
        font-size: 14px;
        font-weight: 500;
        fill: #222;
    }
}
g.inner-node {
    circle {
        stroke-width: 0px;
        stroke: #111;
        fill: #447744;
    }
    text tspan {
        font-size: 14px;
        font-weight: 500;
        fill: #fff;
    }
}
g.inner-sub {
    circle {
        stroke-width: 0px;
        stroke: #111;
        fill: #474;
    }
    text tspan {
        font-size: 10px;
        font-weight: 500;
        fill: #fff;
    }
}
g.outer-sub {
    circle {
        stroke-width: 0px;
        stroke: #111;
        fill: #888;
    }
    text tspan {
        font-size: 12px;
        font-weight: 500;
        fill: #222;
    }
}
line.invisible {
    stroke-width: 12px;
    stroke: transparent;
}
line.outer-link {
    stroke-width: 12px;
    stroke: #888;
}
line.inner-link {
    stroke-width: 12px;
    stroke: #474;
}
g.secondary-node.data-exchange-light circle, g.data-exchange-light circle {
    stroke-width: 0px;
    stroke: #fff;
    fill: var(--data-exchange-light-color);
}
g.rip text tspan {
    font-size: 9px;
    font-weight: 500;
    fill: #ccc;
}
g.rip foreignObject body {
    margin: 0;
    padding: 0;
    display: block;
}
g.rip foreignObject {
    display: block;
    transform-origin: top left;
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'><path d='M 100 100 L 0 100 L 0 50 C 0 22.386 22.386 0 50 0 C 77.614 0 100 22.386 100 50 L 100 100 Z' style='fill: rgba(255, 255, 255, 0.15);' /></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}
g.rip circle {
    fill: transparent;
}
body[data-theme="light"] {
    path.interweb {
        opacity: 0.4;
        fill: rgb(85 173 221);
    }
    svg {
        --data-exchange-light-color: #2791c0;
        --data-exchange-color: #303e68;
        --data-exchange-network-color: #2791c0;
    }
    tspan {
        text-anchor: middle;
        font-size: 10px;
        fill: #333;
    }
    text, text tspan {
        pointer-events: none;
        user-select: none;
    }
    /*.no-wrap text tspan{
      text-anchor: start;
    }*/
    .data-exchange-light text tspan {
        fill: #ffffff;
    }
    .primary-node text tspan {
        font-size: 19px;
    
        font-weight: 400;
        fill: #ffffff;
    }
    .secondary-node text tspan {
        font-size: 14px;
        font-weight: 500;
        fill: #fff;
    }
    .secondary-node.smaller-text text tspan {
        font-size: 12px;
        font-weight: 500;
    }
    .secondary-node.secondary-alt text tspan {
        fill: #eee;
    }
    line {
        stroke-width: 12px;
        stroke: #ccc;
    }
    line.primary-link {
        stroke-width: 12px;
        stroke: #888;
    }
    line.secondary-link {
        stroke-width: 12px;
        stroke: #666;
    }
    line.data-exchange-network {
        stroke-width: 12px;
        stroke-opacity: 1;
        stroke: var(--data-exchange-network-color);
        stroke-dasharray: 11 12;
    }
    line.data-exchange-light {
        stroke-width: 12px;
        stroke-opacity: 1;
        stroke: #38b;
    }
    line.data-exchange {
        stroke-width: 12px;
        stroke: #88ccee;
    }
    g circle {
        fill: #ccc;
        cursor: grab;
    }
    g circle:active {
        cursor: grabbing;
    }
    g.primary-node circle {
        stroke-width: 0px;
        stroke: #fff;
        fill: #37474F;
    }
    g.data-exchange text tspan {
        font-size: 11px;
        fill: #457da7;
    }
    g.secondary-node.data-exchange text tspan, g.secondary-node.data-exchange-light text tspan {
        font-size: 13px;
        font-weight: 500;
        fill: #fff;
    }
    g.secondary-node.data-exchange circle, g.data-exchange circle {
        stroke-width: 0px;
        stroke: #111;
        fill: #8ce;
    }
    g.secondary-node circle {
        stroke-width: 0px;
        stroke: #111;
        fill: #888;
    } 
    g.outer-node {
        circle {
            stroke-width: 0px;
            stroke: #111;
            fill: #888;
        }
        text tspan {
            font-size: 14px;
            font-weight: 500;
            fill: #fff;
        }
    }
    g.inner-node {
        circle {
            stroke-width: 0px;
            stroke: #111;
            fill: #559955;
        }
        text tspan {
            font-size: 14px;
            font-weight: 500;
            fill: #fff;
        }
    }
    g.inner-sub {
        circle {
            stroke-width: 0px;
            stroke: #111;
            fill: #595;
        }
        text tspan {
            font-size: 10px;
            font-weight: 500;
            fill: #fff;
        }
    }
    g.outer-sub {
        circle {
            stroke-width: 0px;
            stroke: #111;
            fill: #888;
        }
        text tspan {
            font-size: 12px;
            font-weight: 500;
            fill: #fff;
        }
    }
    line.invisible {
        stroke-width: 12px;
        stroke: transparent;
    }
    line.outer-link {
        stroke-width: 12px;
        stroke: #888;
    }
    line.inner-link {
        stroke-width: 12px;
        stroke: #595;
    }
    g.secondary-node.data-exchange-light circle, g.data-exchange-light circle {
        stroke-width: 0px;
        stroke: #fff;
        fill: #3388bb;
    }
    g.rip text tspan {
        font-size: 9px;
        font-weight: 500;
        fill: #aaa;
    }
    g.rip foreignObject body {
        margin: 0;
        padding: 0;
        display: block;
    }
    g.rip foreignObject {
        display: block;
        transform-origin: top left;
        background-image: url("data:image/svg+xml,<svg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'><path d='M 100 100 L 0 100 L 0 50 C 0 22.386 22.386 0 50 0 C 77.614 0 100 22.386 100 50 L 100 100 Z' style='fill: rgba(200, 200, 200, 0.4);' /></svg>");
        background-repeat: no-repeat;
        background-size: contain;
    }
    g.rip circle {
        fill: transparent;
    }
}


div.roller {
    display: inline-block;
    width: 75%;
    text-align: center;
    overflow:hidden;
    filter: brightness(1.3) saturate(.8);
}
.inner:has(.design-grid)>div {
    width: 100%;
    padding-bottom: 0px;
}
span.dateline{
    position: absolute;
    top: 29px;
    right: 0px;
    font-size: large;
    text-transform: uppercase;
    color: #518953;
    display:inline-flex;
    >.mdi{
        padding-right:6px;
    }
}
.copper{
    width: 99%;
    filter: brightness(0.7) contrast(1.6) saturate(0.2);
    transform: rotate(179.5deg);
}