/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* Page Themes */

html[color-mode="light"] {
    --text: #191b25;
    --page: #F6FCFF;
    --frame: #191b25;
    --scrollBar: #F6FCFF;
    --scrollBG: #191b25;
    --colorShiftBase: #fc4d4e;
}

html[color-mode="dark"] {
    --text: #fff;
    --page: #16181a;
    --frame: #353535;
    --scrollBar: #F6FCFF;
    --scrollBG: #191b25;
    --colorShiftBase: #fc4d4e;
}

/* Scroll Bar */

/* Firefox */
* {
    scrollbar-color: var(--scrollBar) var(--scrollBG);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 14px;
}

*::-webkit-scrollbar-track {
    background: var(--scrollBG);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--scrollBar);
    border-radius: 20px;
    border: 3px solid var(--scrollBG);
}

@font-face {
    font-family: 'cool awesome font';
    src: url('../fonts/coolAwesomeFont.woff2') format('woff2'),
        url('../fonts/coolAwesomeFont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Layout Style */

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}

body {
    background-color: white;
    color: var(--text);
    font-family: 'Playpen Sans', cursive;
    image-rendering: -webkit-optimize-contrast;
    text-rendering: optimizeLegibility;
    padding: 0;
    margin: 0;
}


#stagingBanner {
    padding: 10px;
    display: block;
    animation: colorChangeBackground 60s linear infinite;
    z-index: 100;
    color: white;
    position: relative;
    text-align: center;
    text-decoration: none;
    cursor: pointer !important;
}

/* Preloaded Images */
/*body:after {*/
/*  content: url(../img/tile_3.jpg) url(../img/irl/photo.png) url(../img/irl/overlay.png) url(../img/silhouette-black.svg);*/
/*  display: none;*/
/*}*/

page {
    position: relative;
    display: block;
    padding: 25px;
    border-radius: 10px;
    width: 779px;
    float: right;
    height: auto;
    margin: 15px;
    margin-bottom: 0;
    padding-bottom: 32px;
}

.centerPage {
    display: block;
    background: var(--page);
    width: 1050px;
    position: relative;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    /*-webkit-box-shadow: 0 0 55px 20px rgba(0, 0, 0, 0.45);*/
    /*box-shadow: 0 0 55px 20px rgba(0, 0, 0, 0.45);*/
    min-height: 100vh;
    overflow: initial;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    bottom: 0;
    top: 0;
}

.pageShadows {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 100%;
    max-width: 100vw;
    overflow: hidden;
    pointer-events: none;
}

.shadowRect-left {
    fill: url(#shadowLeft) !important;
}

.shadowRect-right {
    fill: url(#shadowRight) !important;
}

.pageShadows svg {
    height: 100%;
    width: 75px;
}

.leftShadow {
    /* Half of centerPage width */
}

.rightShadow {
    float: right;
    /* Half of centerPage width */
}



#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background-color: #000000;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1000;
}

/* Fallback for browsers that don't support dvh/dvw */
@supports not (height: 100dvh) {
    #loading {
        width: 100vw;
        height: 100vh;
    }
}

#loading img {
    position: absolute;
    right: 1vw;
    bottom: 1vw;
    max-width: 256px;
}


#content {
    /* display: none; */
}

/* General Styles */

/* Invisible div */
.hidden {
    /*display: none !important;*/
    visibility: hidden;
    overflow: hidden;
    width: 0px !important;
    height: 0px !important;
    position: fixed;
}

/* Fix for Centered Page div */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* Color rotating Anim */
.hueShiftSVG svg {
    -webkit-animation: colorChangeColor 60s linear infinite;
    animation: colorChangeColor 60s linear infinite;
    -webkit-animation-delay: none;
    animation-delay: none;
    -webkit-transition: -webkit-filter 0s none !important;
    transition: -webkit-filter 0s none !important;
    -o-transition: filter 0s none !important;
    transition: filter 0s none !important;
    transition: filter 0s none, -webkit-filter 0s none !important;
}

.hueShiftSVG:not(:hover):not(:focus):not(.selected) svg,
copyrightLogo svg,
shopCartToggle svg {
    color: var(--text) !important;
}

/* 
	/* Unselected menuitems become black */
/*   :root[color-mode="light"] .hueShiftSVG:not(:hover):not(:focus):not(.selected), :root[color-mode="light"] #raceButton:not(:hover):not(:focus):not(.selected) {
	color: black !important;
  } */

/*   :root[color-mode="dark"] .hueShiftSVG:not(:hover):not(:focus):not(.selected), :root[color-mode="dark"] #copyrightLogo, :root[color-mode="dark"] #raceButton:not(:hover):not(:focus):not(.selected) {
	filter: brightness(0) invert();
  } */

:root[color-mode="dark"] #logo,
:root[color-mode="dark"] #charlieHead,
:root[color-mode="dark"] #pluginBannerContainer img,
:root[color-mode="dark"] #contactImageContainer img {
    -webkit-filter: invert();
    filter: invert();
}

/* Offset rotation left and right on all children!*/
.oddRotateChildren :nth-child(odd) {
    -webkit-transform: rotate(-.3deg);
    -ms-transform: rotate(-.3deg);
    transform: rotate(-.3deg);
    /* Rotates odd children slightly to the left */
}

.oddRotateChildren :nth-child(even) {
    -webkit-transform: rotate(.3deg);
    -ms-transform: rotate(.3deg);
    transform: rotate(.3deg);
    /* Rotates even children slightly to the right */
}

/* No ghost image when dragging. No dragging in general! */
.noDrag,
img,
.social-icon,
#carContainer {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.noSelect,
img,
.social-icon {
    user-select: none !important;
    /* supported by Chrome and Opera */
    -webkit-user-select: none !important;
    /* Safari */
    -khtml-user-select: none !important;
    /* Konqueror HTML */
    -moz-user-select: none !important;
    /* Firefox */
    -ms-user-select: none !important;
    /* Internet Explorer/Edge */
}

/* Cool ass background hover a tag! */

#resume a,
#homeAboutBlock a,
.pluginTileDescription a,
.aBlock {
    color: #fd5759;
    position: relative;
    -webkit-animation: colorChangeColor 60s linear infinite;
    animation: colorChangeColor 60s linear infinite;
    cursor: pointer;
    display: inline-block;
    padding: 3px;
    margin: -3px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    text-decoration: none !important;
    z-index: 1
}

#resume a:hover,
#homeAboutBlock a:hover,
.pluginTileDescription a:hover,
.aBlock:hover {
    color: #ffffff !important;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

#resume a::before,
#homeAboutBlock a::before,
.pluginTileDescription a::before,
.aBlock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: colorChangeBackground 60s linear infinite, colorChangeGlowShadow 60s linear infinite;
    animation: colorChangeBackground 60s linear infinite, colorChangeGlowShadow 60s linear infinite;
    border-radius: 6px;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    animation-delay: inherit;
}

#resume a:hover::before,
#homeAboutBlock a:hover::before,
.pluginTileDescription a:hover::before,
.aBlock:hover::before {
    opacity: 1;
}

:root[star-mode="true"] #resume a::before,
:root[star-mode="true"] #homeAboutBlock a::before,
:root[star-mode="true"] .pluginTileDescription a::before,
:root[star-mode="true"] .aBlock::before {
    -webkit-animation-duration: 1.5s !important;
    animation-duration: 1.5s !important;
}

#resume p a,
#homeAboutBlock p a,
.pluginTileDescription p a,
.aBlock {
    margin-right: 5px;
}


@-webkit-keyframes hueShift {
    0% {
        -webkit-filter: hue-rotate(0deg);
        filter: hue-rotate(0deg);
    }

    100% {
        -webkit-filter: hue-rotate(360deg);
        filter: hue-rotate(360deg);
    }
}


@keyframes hueShift {
    to {
        filter: hue-rotate(360deg);
    }
}


@-webkit-keyframes colorChangeBackground {
    0.0% {
        background-color: #fc4d4e;
    }

    5.0% {
        background-color: #e9542b;
    }

    10.0% {
        background-color: #c96014;
    }

    15.0% {
        background-color: #a26c00;
    }

    20.0% {
        background-color: #777900;
    }

    25.0% {
        background-color: #4f8601;
    }

    30.0% {
        background-color: #2b9009;
    }

    35.0% {
        background-color: #139720;
    }

    40.0% {
        background-color: #019a41;
    }

    45.0% {
        background-color: #009966;
    }

    50.0% {
        background-color: #019291;
    }

    55.0% {
        background-color: #058ab9;
    }

    60.0% {
        background-color: #1f7ddc;
    }

    65.0% {
        background-color: #3f71f5;
    }

    70.0% {
        background-color: #6764fd;
    }

    75.0% {
        background-color: #9258fb;
    }

    80.0% {
        background-color: #b94ee8;
    }

    85.0% {
        background-color: #dd48c8;
    }

    90.0% {
        background-color: #f746a1;
    }

    95.0% {
        background-color: #fe4876;
    }

    99.0% {
        background-color: #fe4c55;
    }

    100.0% {
        background-color: #fc4d4e;
    }
}

@keyframes colorChangeBackground {
    0.0% {
        background-color: #fc4d4e;
    }

    5.0% {
        background-color: #e9542b;
    }

    10.0% {
        background-color: #c96014;
    }

    15.0% {
        background-color: #a26c00;
    }

    20.0% {
        background-color: #777900;
    }

    25.0% {
        background-color: #4f8601;
    }

    30.0% {
        background-color: #2b9009;
    }

    35.0% {
        background-color: #139720;
    }

    40.0% {
        background-color: #019a41;
    }

    45.0% {
        background-color: #009966;
    }

    50.0% {
        background-color: #019291;
    }

    55.0% {
        background-color: #058ab9;
    }

    60.0% {
        background-color: #1f7ddc;
    }

    65.0% {
        background-color: #3f71f5;
    }

    70.0% {
        background-color: #6764fd;
    }

    75.0% {
        background-color: #9258fb;
    }

    80.0% {
        background-color: #b94ee8;
    }

    85.0% {
        background-color: #dd48c8;
    }

    90.0% {
        background-color: #f746a1;
    }

    95.0% {
        background-color: #fe4876;
    }

    99.0% {
        background-color: #fe4c55;
    }

    100.0% {
        background-color: #fc4d4e;
    }
}

@-webkit-keyframes colorChangeColor {
    0.0% {
        color: #fc4d4e;
    }

    5.0% {
        color: #e9542b;
    }

    10.0% {
        color: #c96014;
    }

    15.0% {
        color: #a26c00;
    }

    20.0% {
        color: #777900;
    }

    25.0% {
        color: #4f8601;
    }

    30.0% {
        color: #2b9009;
    }

    35.0% {
        color: #139720;
    }

    40.0% {
        color: #019a41;
    }

    45.0% {
        color: #009966;
    }

    50.0% {
        color: #019291;
    }

    55.0% {
        color: #058ab9;
    }

    60.0% {
        color: #1f7ddc;
    }

    65.0% {
        color: #3f71f5;
    }

    70.0% {
        color: #6764fd;
    }

    75.0% {
        color: #9258fb;
    }

    80.0% {
        color: #b94ee8;
    }

    85.0% {
        color: #dd48c8;
    }

    90.0% {
        color: #f746a1;
    }

    95.0% {
        color: #fe4876;
    }

    99.0% {
        color: #fe4c55;
    }

    100.0% {
        color: #fc4d4e;
    }
}

@keyframes colorChangeColor {
    0.0% {
        color: #fc4d4e;
    }

    5.0% {
        color: #e9542b;
    }

    10.0% {
        color: #c96014;
    }

    15.0% {
        color: #a26c00;
    }

    20.0% {
        color: #777900;
    }

    25.0% {
        color: #4f8601;
    }

    30.0% {
        color: #2b9009;
    }

    35.0% {
        color: #139720;
    }

    40.0% {
        color: #019a41;
    }

    45.0% {
        color: #009966;
    }

    50.0% {
        color: #019291;
    }

    55.0% {
        color: #058ab9;
    }

    60.0% {
        color: #1f7ddc;
    }

    65.0% {
        color: #3f71f5;
    }

    70.0% {
        color: #6764fd;
    }

    75.0% {
        color: #9258fb;
    }

    80.0% {
        color: #b94ee8;
    }

    85.0% {
        color: #dd48c8;
    }

    90.0% {
        color: #f746a1;
    }

    95.0% {
        color: #fe4876;
    }

    99.0% {
        color: #fe4c55;
    }

    100.0% {
        color: #fc4d4e;
    }
}

@-webkit-keyframes colorChangeFill {
    0.0% {
        fill: #fc4d4e !important
    }

    5.0% {
        fill: #e9542b !important
    }

    10.0% {
        fill: #c96014 !important
    }

    15.0% {
        fill: #a26c00 !important
    }

    20.0% {
        fill: #777900 !important
    }

    25.0% {
        fill: #4f8601 !important
    }

    30.0% {
        fill: #2b9009 !important
    }

    35.0% {
        fill: #139720 !important
    }

    40.0% {
        fill: #019a41 !important
    }

    45.0% {
        fill: #009966 !important
    }

    50.0% {
        fill: #019291 !important
    }

    55.0% {
        fill: #058ab9 !important
    }

    60.0% {
        fill: #1f7ddc !important
    }

    65.0% {
        fill: #3f71f5 !important
    }

    70.0% {
        fill: #6764fd !important
    }

    75.0% {
        fill: #9258fb !important
    }

    80.0% {
        fill: #b94ee8 !important
    }

    85.0% {
        fill: #dd48c8 !important
    }

    90.0% {
        fill: #f746a1 !important
    }

    95.0% {
        fill: #fe4876 !important
    }

    99.0% {
        fill: #fe4c55 !important
    }

    100.0% {
        fill: #fc4d4e !important
    }
}

@keyframes colorChangeFill {
    0.0% {
        fill: #fc4d4e !important
    }

    5.0% {
        fill: #e9542b !important
    }

    10.0% {
        fill: #c96014 !important
    }

    15.0% {
        fill: #a26c00 !important
    }

    20.0% {
        fill: #777900 !important
    }

    25.0% {
        fill: #4f8601 !important
    }

    30.0% {
        fill: #2b9009 !important
    }

    35.0% {
        fill: #139720 !important
    }

    40.0% {
        fill: #019a41 !important
    }

    45.0% {
        fill: #009966 !important
    }

    50.0% {
        fill: #019291 !important
    }

    55.0% {
        fill: #058ab9 !important
    }

    60.0% {
        fill: #1f7ddc !important
    }

    65.0% {
        fill: #3f71f5 !important
    }

    70.0% {
        fill: #6764fd !important
    }

    75.0% {
        fill: #9258fb !important
    }

    80.0% {
        fill: #b94ee8 !important
    }

    85.0% {
        fill: #dd48c8 !important
    }

    90.0% {
        fill: #f746a1 !important
    }

    95.0% {
        fill: #fe4876 !important
    }

    99.0% {
        fill: #fe4c55 !important
    }

    100.0% {
        fill: #fc4d4e !important
    }
}

@-webkit-keyframes colorChangeGlowShadow {
    0.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #fc4d4e, 0px 0px 8px 0px #fc4d4e70;
        box-shadow: inset 1px 1px 8px 0px #fc4d4e, 0px 0px 8px 0px #fc4d4e70
    }

    5.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #e9542b, 0px 0px 8px 0px #e9542b70;
        box-shadow: inset 1px 1px 8px 0px #e9542b, 0px 0px 8px 0px #e9542b70
    }

    10.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #c96014, 0px 0px 8px 0px #c9601470;
        box-shadow: inset 1px 1px 8px 0px #c96014, 0px 0px 8px 0px #c9601470
    }

    15.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #a26c00, 0px 0px 8px 0px #a26c0070;
        box-shadow: inset 1px 1px 8px 0px #a26c00, 0px 0px 8px 0px #a26c0070
    }

    20.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #777900, 0px 0px 8px 0px #77790070;
        box-shadow: inset 1px 1px 8px 0px #777900, 0px 0px 8px 0px #77790070
    }

    25.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #4f8601, 0px 0px 8px 0px #4f860170;
        box-shadow: inset 1px 1px 8px 0px #4f8601, 0px 0px 8px 0px #4f860170
    }

    30.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #2b9009, 0px 0px 8px 0px #2b900970;
        box-shadow: inset 1px 1px 8px 0px #2b9009, 0px 0px 8px 0px #2b900970
    }

    35.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #139720, 0px 0px 8px 0px #13972070;
        box-shadow: inset 1px 1px 8px 0px #139720, 0px 0px 8px 0px #13972070
    }

    40.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #019a41, 0px 0px 8px 0px #019a4170;
        box-shadow: inset 1px 1px 8px 0px #019a41, 0px 0px 8px 0px #019a4170
    }

    45.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #009966, 0px 0px 8px 0px #00996670;
        box-shadow: inset 1px 1px 8px 0px #009966, 0px 0px 8px 0px #00996670
    }

    50.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #019291, 0px 0px 8px 0px #01929170;
        box-shadow: inset 1px 1px 8px 0px #019291, 0px 0px 8px 0px #01929170
    }

    55.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #058ab9, 0px 0px 8px 0px #058ab970;
        box-shadow: inset 1px 1px 8px 0px #058ab9, 0px 0px 8px 0px #058ab970
    }

    60.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #1f7ddc, 0px 0px 8px 0px #1f7ddc70;
        box-shadow: inset 1px 1px 8px 0px #1f7ddc, 0px 0px 8px 0px #1f7ddc70
    }

    65.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #3f71f5, 0px 0px 8px 0px #3f71f570;
        box-shadow: inset 1px 1px 8px 0px #3f71f5, 0px 0px 8px 0px #3f71f570
    }

    70.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #6764fd, 0px 0px 8px 0px #6764fd70;
        box-shadow: inset 1px 1px 8px 0px #6764fd, 0px 0px 8px 0px #6764fd70
    }

    75.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #9258fb, 0px 0px 8px 0px #9258fb70;
        box-shadow: inset 1px 1px 8px 0px #9258fb, 0px 0px 8px 0px #9258fb70
    }

    80.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #b94ee8, 0px 0px 8px 0px #b94ee870;
        box-shadow: inset 1px 1px 8px 0px #b94ee8, 0px 0px 8px 0px #b94ee870
    }

    85.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #dd48c8, 0px 0px 8px 0px #dd48c870;
        box-shadow: inset 1px 1px 8px 0px #dd48c8, 0px 0px 8px 0px #dd48c870
    }

    90.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #f746a1, 0px 0px 8px 0px #f746a170;
        box-shadow: inset 1px 1px 8px 0px #f746a1, 0px 0px 8px 0px #f746a170
    }

    95.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #fe4876, 0px 0px 8px 0px #fe487670;
        box-shadow: inset 1px 1px 8px 0px #fe4876, 0px 0px 8px 0px #fe487670
    }

    99.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #fe4c55, 0px 0px 8px 0px #fe4c5570;
        box-shadow: inset 1px 1px 8px 0px #fe4c55, 0px 0px 8px 0px #fe4c5570
    }

    100.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #fc4d4e, 0px 0px 8px 0px #fc4d4e70;
        box-shadow: inset 1px 1px 8px 0px #fc4d4e, 0px 0px 8px 0px #fc4d4e70
    }
}

@keyframes colorChangeGlowShadow {
    0.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #fc4d4e, 0px 0px 8px 0px #fc4d4e70;
        box-shadow: inset 1px 1px 8px 0px #fc4d4e, 0px 0px 8px 0px #fc4d4e70
    }

    5.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #e9542b, 0px 0px 8px 0px #e9542b70;
        box-shadow: inset 1px 1px 8px 0px #e9542b, 0px 0px 8px 0px #e9542b70
    }

    10.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #c96014, 0px 0px 8px 0px #c9601470;
        box-shadow: inset 1px 1px 8px 0px #c96014, 0px 0px 8px 0px #c9601470
    }

    15.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #a26c00, 0px 0px 8px 0px #a26c0070;
        box-shadow: inset 1px 1px 8px 0px #a26c00, 0px 0px 8px 0px #a26c0070
    }

    20.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #777900, 0px 0px 8px 0px #77790070;
        box-shadow: inset 1px 1px 8px 0px #777900, 0px 0px 8px 0px #77790070
    }

    25.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #4f8601, 0px 0px 8px 0px #4f860170;
        box-shadow: inset 1px 1px 8px 0px #4f8601, 0px 0px 8px 0px #4f860170
    }

    30.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #2b9009, 0px 0px 8px 0px #2b900970;
        box-shadow: inset 1px 1px 8px 0px #2b9009, 0px 0px 8px 0px #2b900970
    }

    35.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #139720, 0px 0px 8px 0px #13972070;
        box-shadow: inset 1px 1px 8px 0px #139720, 0px 0px 8px 0px #13972070
    }

    40.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #019a41, 0px 0px 8px 0px #019a4170;
        box-shadow: inset 1px 1px 8px 0px #019a41, 0px 0px 8px 0px #019a4170
    }

    45.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #009966, 0px 0px 8px 0px #00996670;
        box-shadow: inset 1px 1px 8px 0px #009966, 0px 0px 8px 0px #00996670
    }

    50.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #019291, 0px 0px 8px 0px #01929170;
        box-shadow: inset 1px 1px 8px 0px #019291, 0px 0px 8px 0px #01929170
    }

    55.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #058ab9, 0px 0px 8px 0px #058ab970;
        box-shadow: inset 1px 1px 8px 0px #058ab9, 0px 0px 8px 0px #058ab970
    }

    60.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #1f7ddc, 0px 0px 8px 0px #1f7ddc70;
        box-shadow: inset 1px 1px 8px 0px #1f7ddc, 0px 0px 8px 0px #1f7ddc70
    }

    65.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #3f71f5, 0px 0px 8px 0px #3f71f570;
        box-shadow: inset 1px 1px 8px 0px #3f71f5, 0px 0px 8px 0px #3f71f570
    }

    70.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #6764fd, 0px 0px 8px 0px #6764fd70;
        box-shadow: inset 1px 1px 8px 0px #6764fd, 0px 0px 8px 0px #6764fd70
    }

    75.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #9258fb, 0px 0px 8px 0px #9258fb70;
        box-shadow: inset 1px 1px 8px 0px #9258fb, 0px 0px 8px 0px #9258fb70
    }

    80.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #b94ee8, 0px 0px 8px 0px #b94ee870;
        box-shadow: inset 1px 1px 8px 0px #b94ee8, 0px 0px 8px 0px #b94ee870
    }

    85.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #dd48c8, 0px 0px 8px 0px #dd48c870;
        box-shadow: inset 1px 1px 8px 0px #dd48c8, 0px 0px 8px 0px #dd48c870
    }

    90.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #f746a1, 0px 0px 8px 0px #f746a170;
        box-shadow: inset 1px 1px 8px 0px #f746a1, 0px 0px 8px 0px #f746a170
    }

    95.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #fe4876, 0px 0px 8px 0px #fe487670;
        box-shadow: inset 1px 1px 8px 0px #fe4876, 0px 0px 8px 0px #fe487670
    }

    99.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #fe4c55, 0px 0px 8px 0px #fe4c5570;
        box-shadow: inset 1px 1px 8px 0px #fe4c55, 0px 0px 8px 0px #fe4c5570
    }

    100.0% {
        -webkit-box-shadow: inset 1px 1px 8px 0px #fc4d4e, 0px 0px 8px 0px #fc4d4e70;
        box-shadow: inset 1px 1px 8px 0px #fc4d4e, 0px 0px 8px 0px #fc4d4e70
    }
}

@keyframes outlineColor {
    0.0% {
        --color: #fc4d4e;
    }

    5.0% {
        --color: #e9542b;
    }

    10.0% {
        --color: #c96014;
    }

    15.0% {
        --color: #a26c00;
    }

    20.0% {
        --color: #777900;
    }

    25.0% {
        --color: #4f8601;
    }

    30.0% {
        --color: #2b9009;
    }

    35.0% {
        --color: #139720;
    }

    40.0% {
        --color: #019a41;
    }

    45.0% {
        --color: #009966;
    }

    50.0% {
        --color: #019291;
    }

    55.0% {
        --color: #058ab9;
    }

    60.0% {
        --color: #1f7ddc;
    }

    65.0% {
        --color: #3f71f5;
    }

    70.0% {
        --color: #6764fd;
    }

    75.0% {
        --color: #9258fb;
    }

    80.0% {
        --color: #b94ee8;
    }

    85.0% {
        --color: #dd48c8;
    }

    90.0% {
        --color: #f746a1;
    }

    95.0% {
        --color: #fe4876;
    }

    99.0% {
        --color: #fe4c55;
    }

    100.0% {
        --color: #fc4d4e;
    }
}

#bgContainer {
    background: url('../img/bgNew_002.svg') 0% 0% repeat;
    background-size: 1095px;
    width: calc(max(2190px, 200vw));
    height: 110vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    will-change: background-position-x;
}

#bgColorUnderlay {
    background-size: 1095px;
    width: calc(max(2190px, 100vw));
    height: 110vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-animation: colorChangeBackground 60s linear infinite;
    animation: colorChangeBackground 60s linear infinite;
    will-change: background-color;
}

/* BG Animation lags differently on chrome and firefox, super annoying */
/* Chrome  */
.bgAnimated {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

@keyframes bgSlide {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-1095px, 0, 0);
    }
}

:root[bg-scrolling="true"] .bgAnimated {
    animation: bgSlide 60s linear infinite;
    animation-play-state: running;
}

/* Firefox  */
@-webkit-keyframes bgSlideFirefox {
    from {
        background-position-x: 0px;
    }

    to {
        background-position-x: -1095px;
    }
}

@keyframes bgSlideFirefox {
    from {
        background-position-x: 0px;
    }

    to {
        background-position-x: -1095px;
    }
}

.gecko .bgAnimated {
    transform: none;
    backface-visibility: unset;
}

:root[bg-scrolling="true"].gecko .bgAnimated {
    -webkit-animation: bgSlideFirefox 60s linear infinite !important;
    animation: bgSlideFirefox 60s linear infinite !important;
}

/* Header & Menu */

header {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
}

#charlieHeadOld img {
    width: inherit;
}

#charlieHeadOld {
    width: 220px;
    display: block;
    padding-left: 25px;
}

#charlieHead {
    /*! width: auto; */
    height: 225px;
    display: block;
    padding-left: 20px;
    cursor: pointer;
}

#logo {
    all: unset;
    display: block;
    position: absolute !important;
    left: 260px;
    top: 5px;
    z-index: 1;
    position: absolute;
    image-rendering: optimizeQuality;
}

#logo img {
    width: 760px;
}

#menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 175px;
    padding-left: 15px;
    position: absolute;
}

.menu-item {
    all: unset;
    cursor: pointer;
    display: inline-block;
    /*! margin-right: 3px; */
    -webkit-transition: color .2s ease-out, border-radius .1s ease-out, height .1s ease-in-out, -webkit-transform .2s ease-out;
    transition: color .2s ease-out, border-radius .1s ease-out, height .1s ease-in-out, -webkit-transform .2s ease-out;
    -o-transition: transform .2s ease-out, color .2s ease-out, border-radius .1s ease-out, height .1s ease-in-out;
    transition: transform .2s ease-out, color .2s ease-out, border-radius .1s ease-out, height .1s ease-in-out;
    transition: transform .2s ease-out, color .2s ease-out, border-radius .1s ease-out, height .1s ease-in-out, -webkit-transform .2s ease-out;
    /*! padding: 7px; */
    /*! padding-top: 0px; */
    /*! padding-bottom: 0px; */

    margin-bottom: -12px;
}

#menu>*:nth-last-child(2) {
    margin-bottom: 0;
}

.menu-item img,
.menu-item svg {
    height: 75px;
    width: auto;
    overflow: visible;
    pointer-events: none;
}

svg * {
    fill: currentColor;
}

.menu-item:focus {
    -webkit-transform: translate(5px, 0);
    -ms-transform: translate(5px, 0);
    transform: translate(5px, 0);
    outline: 0px solid var(--highlight) !important;
}

.menu-item:hover {
    -webkit-transform: translate(5px, 0);
    -ms-transform: translate(5px, 0);
    transform: translate(5px, 0);
    cursor: pointer;
}

.menu-item.selected {
    -webkit-transform: translate(5px, 0);
    -ms-transform: translate(5px, 0);
    transform: translate(5px, 0);
}

@keyframes outlineThickness {
    0% {
        --thickness: 3px;
    }

    50% {
        --thickness: 4.25px;
    }

    100% {
        --thickness: 3px;
    }
}

@property --thickness {
    syntax: '<length>';
    /* <- defined as type number for the transition to work */
    initial-value: 3px;
    inherits: false;
}

.element {
    --color: #fc4d4e;
    --thickness: 4px;
}

.menu-item::after {
    content: '';
    position: absolute;
    inset: -10px 4px 0px 2px;
    /* top right bottom left */
    pointer-events: none;
    opacity: 0;
    border-radius: 10px;
    outline: var(--thickness) solid var(--color);
    animation:
        outlineColor 60s linear infinite,
        outlineThickness 1.5s ease-in-out infinite;
    transition:
}

.menu-item:focus-visible::after {
    opacity: 1;
}

/* Social Media Icons */

#socialMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 145px;
    padding-left: 10px;
}

.social-item {

    cursor: pointer;
    display: inline-block;
    margin-right: 3px;
    -webkit-transition: all .2s ease-out, -webkit-filter 0s;
    transition: all .2s ease-out, -webkit-filter 0s;
    -o-transition: all .2s ease-out, filter 0s;
    transition: all .2s ease-out, filter 0s;
    transition: all .2s ease-out, filter 0s, -webkit-filter 0s;
    padding: 7px;
    padding-top: 4px;
    padding-bottom: 4px;
    border-radius: 4px;
    display: inline-block;
    padding: 0;
    background: none;
    border: none;
    margin-top: -6px;
}

.social-item:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
}

.social-item:focus {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
}

.social-item img,
.social-item svg {
    width: 45px;
    height: auto;
}

.social-blank {
    display: inline-block;
    width: 45px;
    height: 45px;
}

.social-break {
    display: inline-block;
    width: 135px;
    height: 15px;
}

/* Color Mode Swap Buttons */

.color-mode__btn:hover,
#raceButton:hover,
.bgScroll__btn:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
}

.color-mode__btn img,
#raceButton img,
.color-mode__btn svg,
#raceButton svg,
.bgScroll__btn svg {
    /*! width: 45px; */
    /*! height: auto; */
    /*! padding: 0; */
    /*! margin: 0; */
}

:root[color-mode="light"] .light--hidden,
:root[color-mode="dark"] .dark--hidden {
    display: block;
    position: absolute;
    width: 0px;
    height: 0px;
}

:root[bg-scrolling="true"] .scrolling--hidden,
:root[bg-scrolling="false"] .stopped--hidden {
    display: block;
    position: absolute;
    width: 0px;
    height: 0px;
}

/*.bgScroll__btn {*/
/*  padding-left:5px;*/
/*}*/

/* Video Player */

#videoPlayer,
#demoReelPlayer {
    border-radius: 18px;
    overflow: hidden;
    border: 7px var(--frame) solid;
    -webkit-transform: rotate(-.25deg);
    -ms-transform: rotate(-.25deg);
    transform: rotate(-.25deg);
}


#copyrightContainer {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
}

#copyrightLogo {
    width: 250px;
    height: auto;
    padding: min(10px, 2vw);
    max-width: 100vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.vjs-poster {
    z-index: 2;
}

#home .vjs-poster:after {
    content: "";
    display: block;
    -webkit-animation: colorChangeBackground 60s linear infinite;
    animation: colorChangeBackground 60s linear infinite;
    background: var(--colorShiftBase);
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    animation-delay: inherit !important;
}

:root[star-mode="true"] .vjs-poster:after {
    -webkit-animation-duration: 1.5s !important;
    animation-duration: 1.5s !important;
}

:root[star-mode="true"] .bgAnimated {
    -webkit-animation-duration: 1.5s !important;
    animation-duration: 1.5s !important;
}

/* Charlie IRL photo frame */

#irlFrame {
    width: 200px;
    height: 300px;
    overflow: hidden;
    background: url('../img/irl/optimized/photo.jpg');
    background-size: cover;
    border-radius: 20px;
    border: 7px var(--frame) solid;
    margin: 30px;
    rotate: -364deg;
    float: left;
    z-index: 1;
    position: relative;
}

#irlFrame img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    -webkit-animation: hueShift 60s linear infinite;
    animation: hueShift 60s linear infinite;
    border-radius: 12px;

    mix-blend-mode: screen;
}

#irlBlink {
    display: none;
}

#irlBlink {
    mix-blend-mode: unset !important;
    -webkit-animation: none !important;
    animation: none !important;
    /*display: none !important;*/
}

#menu-burger {
    height: 0;
    overflow: hidden;
}

#menu-burger svg {
    -webkit-animation: colorChangeColor 60s linear infinite;
    animation: colorChangeColor 60s linear infinite;
}

#homeAboutBlock {
    padding: 15px;
    font-family: Playpen Sans;
    font-weight: 400;
}

#homeAboutBlock h1 {
    font-family: cool awesome font;
    font-size: 17pt;
    font-weight: lighter;
}

#homeAboutBlock h3 {
    font-size: large;
}

.wiggleText {
    display: inline-block;
    /*-webkit-animation: colorChangeColor 60s linear infinite;*/
    /*animation: colorChangeColor 60s linear infinite;*/
}

.wiggleLetter {
    display: inline-block;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@-webkit-keyframes shake-vertical {
    0% {
        -webkit-transform: translate(0px, -1.5px) rotate(0.1deg);
        transform: translate(0px, -1.5px) rotate(0.1deg);
    }

    50% {
        -webkit-transform: translate(.5px, .5px) rotate(0.1deg);
        transform: translate(.5px, .5px) rotate(0.1deg);
    }

    100% {
        -webkit-transform: translate(0px, -1.5px) rotate(0.1deg);
        transform: translate(0px, -1.5px) rotate(0.1deg);
    }
}

@keyframes shake-vertical {
    0% {
        -webkit-transform: translate(0px, -1.5px) rotate(0.1deg);
        transform: translate(0px, -1.5px) rotate(0.1deg);
    }

    50% {
        -webkit-transform: translate(.5px, .5px) rotate(0.1deg);
        transform: translate(.5px, .5px) rotate(0.1deg);
    }

    100% {
        -webkit-transform: translate(0px, -1.5px) rotate(0.1deg);
        transform: translate(0px, -1.5px) rotate(0.1deg);
    }
}

.wiggling {
    /*animation: shake-vertical 1.25s infinite ease-in-out;*/
    /*-webkit-animation: shake-vertical 1.25s infinite ease-in-out, colorChangeColor 60s linear infinite;*/
    /*animation: shake-vertical 1.25s infinite ease-in-out, colorChangeColor 60s linear infinite;*/
}

/* Resume STUFF */

#resume {
    padding-bottom: 10px;
}

#resume h3 {
    text-align: start;
    width: 85%;
    display: inline-block;
    font-family: playpen sans;
    font-weight: 600;
    margin-bottom: 6px;
}

#resume h2 {
    font-family: cool awesome font;
    font-weight: 100;
    width: 85%;
    display: inline-block;
    text-align: left;
    font-size: xx-large;
    margin: 0;
    margin-top: 20px;
}

#resume h1 {
    font-family: cool awesome font;
    width: 85%;
    display: inline-block;
    text-align: left;
}

#resume ul {
    text-align: start;
    width: 85%;
    display: inline-block;
    font-family: playpen sans;
    list-style: none;
}

#resume li::before {
    content: "•";
    color: #fd5759;
    -webkit-animation: colorChangeColor 60s linear infinite;
    animation: colorChangeColor 60s linear infinite;
    font-size: larger;
    padding-right: 8px;
    animation-delay: inherit !important;
}

:root[star-mode="true"] #resume li::before {
    -webkit-animation-duration: 1.5s !important;
    animation-duration: 1.5s !important;
}

#resume p {
    width: 85%;
    text-align: left;
    display: inline-block;
    font-size: 15pt;
    margin: 0;
    margin-top: 5px;
}

#resume table {
    width: 85%;
    display: inline-table;
    border: none;
    font-family: Playpen Sans;
    text-align: left;
    font-size: min(4vw, 12pt);
}

#resume table * {
    border: none;
}

#resumeLogo {
    width: 85%;
    display: inline-block;
}

#resumeLogo img,
#resumeLogo svg {
    display: block;
    width: 100%;
    height: auto;
    max-width: 331px;
}

/* PLUGIN PAGE */
#plugins {}

#pluginBannerContainer {
    display: block;
    width: 100%;
    background: url('../img/plugins/bannerBack.png');
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-animation: hueShift 60s linear infinite;
    animation: hueShift 60s linear infinite;
}

#pluginBannerContainer img {
    position: relative;
    width: 100%;
}

/* Offset rotation left and right on all children!*/
#pluginTileList :nth-child(odd) .pluginTileIcon {
    float: left;
    margin-right: 20px;
}

#pluginTileList :nth-child(even) .pluginTileIcon {
    float: right;
    margin-left: 20px;
}

#pluginTileList :nth-child(odd) .pluginTileButton {
    float: left;
    left: -10px;
}

#pluginTileList :nth-child(even) .pluginTileButton {
    float: right;
}

#pluginTileList :nth-child(odd) .pluginTileName,
#pluginTileList :nth-child(odd) .pluginTileDescription {
    text-align: left;
}

#pluginTileList :nth-child(even) .pluginTileName,
#pluginTileList :nth-child(even) .pluginTileDescription {
    text-align: right;
}


.pluginTile {
    overflow: hidden;
    background-size: cover;
    margin: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 20px;
    margin-top: 0px;
    /*! display: flex; */
}

.pluginTileIcon {
    width: 130px;
    border-radius: 12px;
    outline: 7px var(--frame) solid;
    background: var(--frame);
}

.pluginTileName {
    font-family: cool awesome font;
    font-size: 30pt;
    position: relative;
    top: -8px;
    display: block;
}

.pluginTileDescription {
    position: relative;
    top: -12px;
}

.pluginTileButton {
    background: var(--text);
    color: var(--page);
    cursor: pointer;
    border-radius: 10px;
    padding: 7px;
    margin-left: 8px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    text-decoration: none !important;
    z-index: 1;
    position: relative;
    top: -5px;
}

.pluginTileButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: colorChangeBackground 60s linear infinite, colorChangeGlowShadow 60s linear infinite;
    animation: colorChangeBackground 60s linear infinite, colorChangeGlowShadow 60s linear infinite;
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    animation-delay: inherit;
}

.pluginTileButton:hover {
    background: unset;
    color: #ffffff;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.pluginTileButton:hover::before {
    opacity: 1;
}

/* portfolio */

#portfolio {
    padding-bottom: 20px;
}

#portfolioHeader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#portfolioSectionTitle {
    display: inline-block;
    margin: auto;
    font-size: 35px;
    margin-left: 0;
    font-family: cool awesome font;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#portfolioMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.portfolioSectionButton {
    display: block;
    background: #fd5759;
    color: white;
    margin: 10px;
    border-radius: 12px;
    padding: 20px;
    font-size: 15pt;
    -webkit-animation: hueShift 60s linear infinite;
    animation: hueShift 60s linear infinite;
    cursor: pointer;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    -webkit-box-shadow: inset 0px 0px 0px 7px var(--frame);
    box-shadow: inset 0px 0px 0px 7px var(--frame);
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    min-width: 25%;
    aspect-ratio: 1/1;
}

.portfolioSectionButton:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    background: #fd5759;

    -webkit-box-shadow: inset 1px 1px 8px 0px #ff8376, 0px 0px 8px 0px #fa525270;

    box-shadow: inset 1px 1px 8px 0px #ff8376, 0px 0px 8px 0px #fa525270;
}

.portfolioSectionButton img {
    display: inline-block;
    width: 100%;
}

.hideHeader {
    visibility: hidden;
    overflow: hidden;
    width: 0px !important;
    height: 0px !important;
    position: absolute;
}

#portfolioBackButton {
    all: unset;
    display: block;
    -webkit-animation: colorChangeColor 60s linear infinite;
    animation: colorChangeColor 60s linear infinite;
    rotate: 180deg;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    overflow: hidden;
}

#portfolioBackButton:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.portfolioFlexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* .portfolioHoverable {
  will-change: transform;
  transform: translateZ(0);
} */

.portfolioHoverable,
.portfolioVideo {
    border-radius: 20px;
    border: 7px var(--frame) solid;
    pointer-events: all !important;
    -webkit-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    cursor: pointer;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: auto;
    margin: 5px;
    display: inline-block;
    max-height: calc(min(195px, 42vw));
    opacity: 0;
}

.portfolioHoverableLoaded,
.portfolioVideo {
    opacity: 1 !important;
}

#portfolioPage_animation.hidden,
#portfolioPage_graphicdesign.hidden,
#portfolioPage_conceptart.hidden,
#portfolioPage_3d.hidden {
    display: none;
}

.portfolioHoverable:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}

.portfolioPage h3 {
    margin-bottom: 5px;
}

.portfolioFlexbox .video-js {
    height: 210px;
    max-height: calc(min(210px, 42vw));
    border: 7px var(--frame) solid;
    border-radius: 20px;
    overflow: hidden;
    display: inline-block;
}

.video-js.vjs-fullscreen {
    border: none !important;
}

.portfolioVideo16x9 {
    width: calc(min(210px, 42vw) * (16/9));
    /* Width based on max-height */
    max-width: calc(203px * (16/9));
    /* Maximum width based on regular height */

    /*! height: 100px !important; */
}

.portfolioVideo1x1 {
    width: 210px !important;
    max-width: calc(min(210px, 42vw));
}


.portfolioProgrammingBlock {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.programmingTextHalf {

    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.programmingTitle {
    text-decoration: none;
    display: inline-block;
    font-size: 35px;
    margin-left: 0;
    font-family: cool awesome font;
}

.programmingImage {
    width: 40%;
    margin: 25px;
    border-radius: 20px;
    border: 7px var(--frame) solid;
    display: block;
    margin-left: 45px;
    margin-right: 45px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-animation: colorChangeBackground 60s linear infinite !important;
    animation: colorChangeBackground 60s linear infinite !important;
}

.webkit .programmingImage {
  height: auto;
}

.portfolioFlexbox :nth-child(even).portfolioProgrammingBlock {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

/* image modal */

#modalContainer {
    display: block;
    position: fixed;
    background: #000c;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: .15s ease-in-out;
    -o-transition: .15s ease-in-out;
    transition: .15s ease-in-out;
}

#modalContent {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90%;
    height: 90%;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

#modalImage {
    border-radius: 6px;
    /*! flex: 0 0 30%; */
    max-width: 90%;
    max-height: 90%;
}

#modalText {
    color: white;
    text-align: center;
    font-size: 25px;
    margin: 0;
    margin-top: 10px;
}

.modalHidden {
    pointer-events: none;
    opacity: 0;
}

.modalHidden #modalContent {
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
}

#modalCloseText {
    color: white;
    position: absolute;
    top: 5px;
    margin: 8px;
    width: 100vw;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
}

#modalArrowContainer {
    display: block;
    width: 95vw;
    position: absolute;
    top: 42%;
}

#modalNavLeft,
#modalNavRight {
    display: block;
    position: absolute;
    cursor: pointer;
    color: white;
    font-size: 40px;
    padding: 16px;
    padding-top: 24px;
    padding-bottom: 24px;
    box-sizing: initial;
    background-color: #00000077;
    border-radius: 15px;
    transition: all .2s ease-in-out;
    z-index: 4;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

#modalNavLeft:hover,
#modalNavRight:hover {
    transform: scale(1.1);
    background-color: white;
    color: black;
}

#modalNavLeft {
    left: 0;
}

#modalNavRight {
    right: 0;
}

@media only screen and (max-width: 930px) {
    #modalArrowContainer {
        display: block;
        /*! width: 90dvw; */
        position: absolute;
        top: 86.5dvh;
        height: 10vh;
        z-index: 1000;
    }

    #modalNavLeft,
    #modalNavRight {
        padding: 7px;
        padding-left: 22px;
        padding-right: 22px;
        padding-bottom: 12px;
        margin: 10px;
    }

    #modalNavLeft:hover,
    #modalNavRight:hover {
        transform: none;
        background-color: #00000077;
        color: white;
    }

    /* Fallback for browsers that don't support dvh/dvw */
    @supports not (height: 100dvh) {
        #modalArrowContainer {
            top: 86.5vh;
            width: 90vh;
        }
    }

}

#modalCollision {
    display: block;
    position: absolute;
    height: 100vh;
    width: 100vw;
    z-index: 3;
}

/* Contact */

#contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contactContainer {
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#contactImageContainer {
    display: block;
    width: 45%;
    background: url('../img/contact/contactBack.png');
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-animation: hueShift 60s linear infinite;
    animation: hueShift 60s linear infinite;
    float: right;
    max-width: 300px;
}

#contactImageContainer img {
    position: relative;
    width: 100%;
}

#contactTitle {
    font-family: cool awesome font;
    font-size: 25pt;
    position: relative;
    top: -8px;
    display: block;
    padding-bottom: 20px;
}

.contactButton {
    color: var(--text);
    cursor: pointer;
    padding: 7px;
    margin-left: 8px;
    transition: all .2s ease-in-out;
    text-decoration: none !important;
    z-index: 1;
    position: relative;
    top: -5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px;
    background: var(--page);
    margin: 12px;
    font-size: 20pt;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contactButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: colorChangeBackground 60s linear infinite, colorChangeGlowShadow 60s linear infinite;
    animation: colorChangeBackground 60s linear infinite, colorChangeGlowShadow 60s linear infinite;
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.contactButton:hover {
    color: #ffffff;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.contactButton:hover::before {
    opacity: 1;
}

.contactButton svg {
    width: 70px;
    height: auto;
    padding-right: 20px;
}

/* RC CAR*/

#carContainer {
    position: fixed;
    z-index: 9999;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#RC {
    display: block;
    width: 50px;
    height: 57px;
    background: url('../img/car.png');
    position: relative;
    -webkit-transition: -webkit-transform 0s none !important;
    transition: -webkit-transform 0s none !important;
    -o-transition: transform 0s none !important;
    transition: transform 0s none !important;
    transition: transform 0s none, -webkit-transform 0s none !important;
    background-size: 400px;
    background-position: left, center;
}

#carMobileControls {
    display: none;
}

#carPopUp {
    z-index: 2;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    opacity: 1;
}

.hiddenPopUp {
    /*right: -260px !important;*/
    opacity: 0 !important;
}

.hiddenRaceButton {
    visibility: hidden;
}

/* Juno */

#junoContainer {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 99999999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@-webkit-keyframes junoJump {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    10% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    50% {
        -webkit-filter: invert(0);
        filter: invert(0);
        -webkit-transform: scale(.98);
        transform: scale(.98);
    }

    50.5% {
        -webkit-filter: invert(1);
        filter: invert(1);
    }

    60% {
        -webkit-filter: invert(0);
        filter: invert(0);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    70% {
        -webkit-filter: invert(0);
        filter: invert(0);
    }

    70.5% {
        -webkit-filter: invert(1);
        filter: invert(1);
    }

    80% {
        -webkit-filter: invert(0);
        filter: invert(0);
    }

    90% {
        -webkit-filter: invert(0);
        filter: invert(0);
    }

    90.5% {
        -webkit-filter: invert(1);
        filter: invert(1);
    }

    10% {
        -webkit-filter: invert(0);
        filter: invert(0);
    }
}

@keyframes junoJump {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    10% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    50% {
        -webkit-filter: invert(0);
        filter: invert(0);
        -webkit-transform: scale(.98);
        transform: scale(.98);
    }

    50.5% {
        -webkit-filter: invert(1);
        filter: invert(1);
    }

    60% {
        -webkit-filter: invert(0);
        filter: invert(0);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    70% {
        -webkit-filter: invert(0);
        filter: invert(0);
    }

    70.5% {
        -webkit-filter: invert(1);
        filter: invert(1);
    }

    80% {
        -webkit-filter: invert(0);
        filter: invert(0);
    }

    90% {
        -webkit-filter: invert(0);
        filter: invert(0);
    }

    90.5% {
        -webkit-filter: invert(1);
        filter: invert(1);
    }

    10% {
        -webkit-filter: invert(0);
        filter: invert(0);
    }
}

#junoJumper {
    height: 75%;
    -webkit-animation: junoJump 1.45s ease-in-out;
    animation: junoJump 1.45s ease-in-out;

}

/* Mobile Styling */

@media only screen and (max-width: 1050px) {

    #loading img {
        right: unset;
        bottom: unset;
    }

    #homeAboutBlock h1 {
        font-size: none;
    }

    .centerPage {
        width: 100%;
        margin-bottom: 125px;
    }

    .pageShadows {
        display: none;
    }

    #headerTop {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 24.5vw;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #charlieHead,
    #logo {
        all: unset;
        display: contents;
    }

    #logo img {
        width: inherit;
    }

    #headerTop * {
        height: inherit;
    }

    #charlieHead {
        height: 97%;
        padding: 1vw;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        position: relative;
        /*! left: -1.25vw; */
        top: -1.4vw;
    }

    #logo {
        position: unset !important;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        height: 102%;
        left: -.6vw;
        position: relative !important;
        top: -.3vw;
    }

    #menu-burger {
        position: absolute;
        right: 5vw;
        height: 40px;
        display: block;
        width: 40px;
        cursor: pointer;
        z-index: 1;
        top: calc(24vw + 30px);
    }

    #menu-burger svg {
        height: 40px;
        width: auto;
        position: relative;
        -webkit-transition: -webkit-transform .2s ease-in-out;
        transition: -webkit-transform .2s ease-in-out;
        -o-transition: transform .2s ease-in-out;
        transition: transform .2s ease-in-out;
        transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
    }

    /*.bgScroll__btn {*/
    /*  position: relative;*/
    /*  bottom: 210px; */
    /*  left: -94px;*/
    /*}*/

    .burgerActive svg {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .menu-item {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        padding-left: 3vw;
        height: 66px;
        margin-bottom: 0;
    }

    #menu {
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        width: 100% !important;
        overflow: hidden;
        padding: 0 !important;
        position: initial !important;
        margin-bottom: -20px;
        height: 330px;
    }

    #socialMenu {
        position: absolute;
        right: 4vw;
        top: calc(24.5vw - 70px);
        /*! overflow: hidden; */
        height: 235px !important;
        padding-top: calc(170px);
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

    .social-break {
        display: none;
    }

    .burgerhide #socialMenu {
        position: absolute;
        right: 4vw;
        top: calc(24vw);
        padding-top: 0px;
        overflow: hidden;
        height: 0px !important;
    }

    .burgerhide .menu-item:not(.selected) {
        height: 0px;
        overflow: hidden;
    }

    .burgerhide .menu-item.selected {
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }

    .burgerhide {
        height: 80px !important;
    }


    .burger img {
        width: 40px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    page {
        all: unset;
        display: block;
        position: relative;
        width: 100%;
        top: unset;
        left: unset;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 3vw;
    }

    #home #videoPlayer,
    #demoReelPlayer {
        width: calc(90vw + 10px);
        height: calc(51vw + 10px);
    }

    .noSelect,
    img,
    .social-icon {
        user-select: none !important;
        /* supported by Chrome and Opera */
        -webkit-user-select: none !important;
        /* Safari */
        -khtml-user-select: none !important;
        /* Konqueror HTML */
        -moz-user-select: none !important;
        /* Firefox */
        -ms-user-select: none !important;
        /* Internet Explorer/Edge */
    }

    /*:root[color-mode="light"] .hueShiftSVG:not(:hover):not(:focus):not(.selected) {*/
    /*  filter: none !important;*/
    /*}*/

    #carMobileControls {
        position: fixed;
        bottom: 0px;
        right: 0px;
        display: block;
        width: 100%;
        height: auto;
        z-index: 9999;
        max-width: 500px;
    }

    #carMobileControls img {
        width: 100%;
    }

    #carMobileControls div {
        position: absolute;
    }

    #carMobileLeft {
        width: 23%;
        height: 68%;
        left: 0px;
        bottom: 0px;
    }

    #carMobileRight {
        width: 23%;
        height: 68%;
        left: 23%;
        bottom: 0px;
    }

    #carMobileHorn {
        width: 27%;
        height: 68%;
        left: 46%;
        bottom: 0px;
    }

    #carMobileBackward {
        width: 27%;
        height: 50%;
        right: 0;
        bottom: 0px;
    }

    #carMobileForward {
        width: 27%;
        height: 50%;
        right: 0;
        bottom: 50%;
    }

    #carMobileLeft,
    #carMobileRight,
    #carMobileHorn,
    #carMobileForward,
    #carMobileBackward {
        user-select: none;
        /* Standard syntax */
        -webkit-user-select: none;
        /* Safari */
        -moz-user-select: none;
        /* Firefox */
        -ms-user-select: none;
        /* IE/Edge */
    }

    #carPopUp {
        display: none;
    }

    .pluginTileName {
        font-size: calc(min(40px, 7vw));
        float: unset;
    }

    .pluginTileIcon {
        width: 13vw;
    }

    .pluginTileDescription {
        top: 6px;
        margin-bottom: 20px;
        font-size: calc(min(3.5vw, 16px));
    }

    .pluginTileButton {
        /*     float: unset !important; */
        padding: 2vw;
        padding-left: 3vw;
        padding-right: 3vw;
        border-radius: 18px;
        font-size: calc(max(2vw, 16px));
    }

    .pluginTileIcon {
        margin-bottom: 2vw;
    }

    /*.portfolioHoverable, .portfolioVideo {*/
    .portfolioHoverable {
        max-height: 90%;
        max-width: calc(min(400px, 80vw));
    }

}

/* Fix for homepage charlie irl frame cutting off text! */

@media only screen and (max-width: 475px) {

    #irlFrame {
        float: unset;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Fix for flex box of programming portfolio portion */

@media only screen and (max-width: 650px) {

    .portfolioProgrammingBlock {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .programmingImage {
        width: 90%;
        display: block;
    }

    .programmingTextHalf {
        width: 90%;
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 750px) {

    .contactContainer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #contactTitle {
        font-size: calc(min(40px, 8vw));
    }
}

:root[star-mode="true"] * {
    -webkit-animation-duration: 1.5s !important;
    animation-duration: 1.5s !important;
}

#stretchyClickBox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: block;
}

/* Smoke Container BITCH! */

#smokeContainer {
    position: fixed;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    display: block;
    z-index: 9999999999999;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* Fix nasty issues with rotating the video players! */
.video-js * {
    transform: none !important;
}

/* ablock fix, thanks Juno! */
.aBlock {
    z-index: 5;
}

/* Shop */

#shop h2 {
    font-family: cool awesome font;
    font-weight: 100;
    width: 100%;
    display: inline-block;
    font-size: xxx-large;
    margin-top: 0px;
    /*! top: 0px; */
    /*! position: inherit; */
}

#shopCartToggle {
    cursor: pointer;
    transition: transform .2s ease-in-out;
    width: 80px;
    height: 80px;
    position: absolute;
    right: 20px;
    top: min(35px, 4vw);
    display: block;
}

#shopCartToggle svg {
    width: 70%;
    height: auto;
}


#cartCount {
    display: block;
    width: fit-content;
    padding: 2px;
    position: absolute;
    background: red;
    border-radius: 12px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: small;
    top: 3px;
    right: 8px;
    transition: transform .2 ease-in-out;
    -webkit-animation: colorChangeBackground 60s linear infinite !important;
    animation: colorChangeBackground 60s linear infinite !important;
    color: var(--page);
}

#shopCartToggle:hover {
    transform: scale(1.05);
}

#shopCartToggle:hover #cartCount {
    transform: scale(1.05);
    background: var(--text) !important;
}

.productGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 100px;
}

.productCard {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s cubic-bezier(.4, .01, .05, 1.25);
    -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.productCard:hover {
    transform: scale(1.05);
    -webkit-filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.15));
    filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.15));
    cursor: pointer;
}

.productImage {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
}

.productDescription {
    color: #666;
    margin: 10px 0;
    font-size: 0.9em;
}

.productCard button {
    display: none;
}

.productDescription {
    display: none;
}

.productPrice,
.productName {
    display: block;
    width: fit-content;
    padding: 3px;
    position: absolute;
    border-radius: 15px;
    padding-left: 6px;
    padding-right: 6px;
    bottom: 40px;
    left: 20px;
    transition: all .2s ease-in-out;
    -webkit-animation: colorChangeBackground 60s linear infinite, colorChangeGlowShadow 60s linear infinite !important;
    animation: colorChangeBackground 60s linear infinite, colorChangeGlowShadow 60s linear infinite !important;
    color: white;
    font-size: 15px;
    opacity: 0;
    margin: 0;
}

.productName {
    top: 20px;
    bottom: auto;
}

.productCard:hover .productPrice,
.productCard:hover .productName {
    opacity: 1;
    pointer-events: none;
}


/*.productCard.infoMode * {*/
/*  display: block;*/
/*  opacity: 1;*/
/*}*/

/*.productCard.infoMode {*/
/*  position: absolute;*/
/*  left: 0;*/
/*  margin-top: -30px;*/
/*  background: #ff663355;*/
/*  height: 400px;*/
/*  width: 95%;*/
/*}*/

/*.productCard.infoMode img {*/
/*  display: block;*/
/*  height: 100%;*/
/*}*/

/*.productCard.infoMode .productName {*/
/*  opacity: 0;*/
/*}*/


/*.productCard.infoMode:hover {*/
/*  transform: none;*/
/*  cursor: unset;*/
/*}*/

/* Hide and disable any products that aren't selected, if there's a selected one. */
.productGrid:has(> .productCard.infoMode) .productCard:not(.infoMode) {
    pointer-events: none;
    opacity: 0;
}

#shopBackButton {
    all: unset;
    display: block;
    -webkit-animation: colorChangeColor 60s linear infinite;
    animation: colorChangeColor 60s linear infinite;
    rotate: 180deg;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    overflow: hidden;
    position: absolute;
    top: 30px;
}

#shopBackButton:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

#cartLoading {
    display: none;
    margin-left: 10px;
}

.total {
    text-align: right;
    padding-right: 0px;
    font-size: x-large;
}

#checkoutButton {
    display: block;
    position: absolute;
    right: 15px;
    left: auto;
    cursor: pointer;
    padding: 15px;
    transition: transform .2s ease-in-out;
    text-decoration: none !important;
    font-family: inherit;
    padding: 15px;
    margin: 10px;
    margin-top: 5px;
    font-size: 20pt;
    cursor: pointer;
    font-size: x-large;
    border: none;
    background: var(--text);
    border-radius: 15px;
    color: var(--page);
    z-index: 1;
}

#checkoutButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: colorChangeBackground 60s linear infinite, colorChangeGlowShadow 60s linear infinite;
    animation: colorChangeBackground 60s linear infinite, colorChangeGlowShadow 60s linear infinite;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;

    -webkit-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

#checkoutButton:hover {
    transform: scale(1.05);
    background #00000000;
    color: white;
}

#checkoutButton:hover::before {
    opacity: 1;
}

#cartEmpty {
    font-size: larger;
    padding-top: 20px;
    padding-bottom: 20px;
}


#productInfo {
    background: var(--page);
    display: block;
    width: 95%;
    position: absolute;
    height: 350px;
    padding: 0px;
    box-sizing: border-box;
    z-index: 2;
    margin-top: -20px;
    transition: opacity .2s ease-in-out;
}

.hideProductInfo {
    pointer-events: none;
    background: none;
    opacity: 0;
}

.hideProductInfo #productInfoRight {
    margin-top: 50px;
}

.hideProductInfo #productInfoRight * {
    margin-top: 15px;
}

#productInfoImage {
    position: absolute;
    left: 35px;
    top: 0px;
    height: calc(100% - 30px);
    /*width: auto;*/
    display: block;
    padding: 15px;
    transition: all 0.4s cubic-bezier(.22, 0, .11, 1.14);
    z-index: 1;
    filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.1));
}

#productInfoRight {
    display: block;
    position: absolute;
    width: 43%;
    right: 20px;
    padding: 15px;
    height: calc(100% - 30px);
    transition: all 0.2s ease-in-out;
    transition-property: all, color;
    transition-duration: 0.2s, 0s;
}

#productInfoRight * {
    transition: all 0.2s ease-in-out;
    transition-property: all, color;
    transition-duration: 0.2s, 0s;
}

#productInfoDescription {
    font-size: 25px;
    text-align: left;
    line-height: 30px;
}

#productInfoPrice {
    font-size: 75px;
    position: relative;
    text-align: left;
    font-family: 'cool awesome font';
    margin-bottom: 5px;
    height: 80px;
    overflow: hidden;
    -webkit-animation: colorChangeColor 60s linear infinite !important;
    animation: colorChangeColor 60s linear infinite !important;
}

#productInfoPrice:after {
    margin: 3px;
    content: "$";
    font-size: 30px;
    position: relative;
    top: -32px;
    font-family: 'Playpen Sans', cursive;
}

#productInfoAction {
    display: block;
    cursor: pointer;
    transition: transform .2s ease-in-out;
    text-decoration: none !important;
    font-family: inherit;
    padding: 20px;
    padding-left: 60px;
    padding-right: 60px;
    font-size: 20pt;
    cursor: pointer;
    font-size: x-large;
    border: none;
    background: var(--text);
    border-radius: 20px;
    color: var(--page);
    z-index: 1;
}

#productInfoAction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: colorChangeBackground 60s linear infinite, colorChangeGlowShadow 60s linear infinite;
    animation: colorChangeBackground 60s linear infinite, colorChangeGlowShadow 60s linear infinite;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;

    -webkit-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

#productInfoAction:hover {
    transform: scale(1.05);
    background #00000000;
    color: white;
}

#productInfoAction:hover::before {
    opacity: 1;
}

#productInfoDescription p {
    margin: 0;
}

#productInfoDescription p:not(:last-child) {
    margin-bottom: 18px;
}