/* root */
:root {
    --draw-width: 49.907px;
    --draw-height: var(--draw-width);
    --mask-width: calc(var(--draw-width) * .59077885);

    --doge-switch: 0;

    --car-anim-w: 100vw;
    --car-anim-h: calc(100vw * .39);
}
html {
    overflow-y: scroll;
}
body {
    z-index: 1;
    background-color: #F8F8F8;
    overflow: hidden;
}
.shrink:active {
    animation: .2s clicked linear;
}
@keyframes clicked {
    0% {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
    }
    50% {
	opacity: .8;
	-webkit-transform: scale(.98);
	-moz-transform: scale(.98);
	-o-transform: scale(.98);
	transform: scale(.98);
    }
}
h3 { font-size: 22px; margin-bottom: 0px; }

/* header */
.header {
    background-color: #F7F7F7;
    width: 100%;
    height: 71.6px;
    top: 0px;
    position: sticky;
    position: -webkit-sticky;
    display: block;
    z-index: 200;
    box-shadow: 0px 4px 6px grey;
}
#header_logo {
    height: 48.6px;
    position: relative;
}
#draw_logo_mask {
    pointer-events: none;
    width: var(--mask-width);
    height: var(--mask-width);
    top: calc(11.3px + calc(var(--mask-width) * -.059));
    left: 15px;
    position: absolute;
    overflow: hidden;
    z-index: 4;
}
#draw_logo {
    pointer-events: none;
    width: var(--draw-width);
    height: var(--draw-height);
    position: absolute;
    left: calc(var(--mask-width) * -.323015873);
    top: calc(var(--mask-width) * -.34634);
    z-index: 4;
}
#draw_logo_outermask_mask {
    pointer-events: none;
    width: calc(var(--mask-width) + 4px);
    height: calc(var(--mask-width) + 4px);
    top: calc(9.3px + calc(var(--mask-width) * -.059));
    left: 13px;
    position: absolute;
    overflow: hidden;
    z-index: 4;
}
#draw_logo_outermask {
    pointer-events: none;
    width: var(--draw-width);
    height: var(--draw-height);
    position: absolute;
    left: calc(calc(var(--mask-width) * -.323015873) + 2px);
    top: calc(calc(var(--mask-width) * -.34634) + 2px);
    z-index: 4;
}
@keyframes drawPaths {
    0% { stroke-dashoffset: 500; }
    13% { stroke-dashoffset: 0; }
    70% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1000; }
}
#logo {
    width: 150.060px;
    height: 48.6px;
    display: block;
    position: absolute;
}
#burger {
    display: block;
    width: 57.176px;
    height: 48.6px;
    position: absolute;
    right: 0;
}
.dropdown-header {
    background-color: black;
    color: white;
    font-family: Arial;
}
.dropdown-item {
    min-height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: Arial;
}
#bar {
    width: 100%;
    height: 3px;
    background-color: #991B1E;
}
#bar2 {
    width: 100%;
    background-color: #01060B;
}

/* default main */
#storefront_main {
    margin-bottom: calc(1vw + 8px);
    position: relative;
}
#help_wanted {
    position: absolute;
    width: 180px;
    top: 25px;
    right: 5px;
    transform: rotate(5deg);
}
.well_container {
    margin-top: calc(1vw + 6px);
    text-align: center;
    font-size: calc(.5vw + 12px);
    padding: 0px;
    margin-bottom: 0px;
}
#storefront_cont {
    overflow: hidden;
    width: 100%;
    /*margin-bottom: calc(1vw + 4px);*/
    margin-bottom: 18pt;
    box-shadow: 0px 0px 4px grey;
}
#storefront_img {
    overflow: hidden;
    background: url("../img/storefront.jpg");
    animation: zoomy 35s ease-in-out infinite;
    width: 100vw;
    height: calc(100vw * .4);
    object-fit: cover;
    object-position: 48.75% 0px;
}
#naps_secret {
    display: none;
    width: 86%;
    max-width: 360px;
    margin-top: 20pt;
    margin-bottom: calc(1vw + 8px);
}
p {
    font-family: Arial;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
}
#lg {
    font-size: 16px;
}
#well_table {
    width: 220pt;
    font-family: Arial;
    font-size: 14px;
    margin-bottom: 6px;
}
#del {
    font-family: Arial;
    font-size: 14px;
}
#phone_graphic {
    background-color: #ede8ce;
    margin-top: 20pt;
    margin-bottom: 10pt;
    box-shadow: 0px 0px 8px black;
}
#phone_graphic_img {
    padding-bottom: calc(.5vw + 4px);
    padding-top: calc(.5vw + 4px);
    width: 86%;
    max-width: 114pt;
    margin-top: calc(1vw + 8px);
    margin-bottom: calc(1vw + 8px);
}
#guru_award {
  width: 100%;
  height: max-content;
  margin: 32px 0;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.images {
    background-color: #000000;
    padding: 0px;
    width: 100%/4;
    box-shadow: 0px 0px 6px black;
}

#options_container {
    margin-top: 80pt;
    margin-bottom: 66pt;
}
#options {
    width: 90%;
}
@keyframes zoomy {
    0% { transform: scale(1);}
    50% { transform: scale(1.25);}
    100% { transform: scale(1); }
}

/* menu pages */
.menu_contents {
    z-index: 1;
    margin-top: calc(1vw + 8px);
    text-align: center;
    font-size: calc(.5vw + 12px);
    padding: 0px;
    min-height: 0px;
    margin-bottom: 0px;
}
#menu_title {
    width: 70%;
    max-width: 320px;
    margin-top: calc(1vw + 8px);
    margin-bottom: calc(1vw + 12px);
    border-radius: 6px;
}
.menu_subtitle {
    width: 85%;
    max-width: 360px;
    margin-bottom: calc(2vw + 8px);
    margin-top: calc(1vw + 12px);
}
.title_food_container {
    width: 100%;
    padding: 0px;
    margin-bottom: calc(1vw + 2px);
    margin-top: calc(1vw + 2px);
    margin-left: auto;
    margin-right: auto;
}
.title_food {
    box-shadow: 0px 2px 3px grey;
}
.menu_body {
    font-family: Arial;
    font-size: 14px;
    margin-bottom: calc(1vw + 4px);
    margin-top: calc(1vw + 4px);
}
#bar_menu {
    width: 85%;
    max-width: 360px;
    margin-bottom: calc(1vw + 12px);
    margin-top: calc(1vw + 8px);
}

/* footer */
#footer {
    width: 100%;
    padding: 0;
}
#foot_container {
    margin-top: 60pt;
    box-shadow: 0px 0px 10px black;
    border-radius: 6px;
    width: 90vw;
    max-width: 240pt;
    background-image: url('../img/footer_bg.png');
    background-size: cover;					   
}
#logo_new_img {
    max-width: 200pt;
    width: 80vw;
    margin-top: calc(2vw + 4px);
    margin-bottom: calc(8vw + 4px);
}
#bottom_phone {
    width: 50vw;
    max-width: 140pt;
    margin-top: 4vw;
    box-shadow: 0px 0px 6px white;
    border-radius: 10px;
}
#bottom_online {
    width: 50vw;
    max-width: 140pt;
    margin-bottom: 4vw;
    box-shadow: 0px 0px 6px white;
    border-radius: 10px;
}
#cards {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: calc(2vw + 20pt);
    margin-top: calc(4vw + 12px);
    width: 140pt;
}
.social_img {
    width: 90vw;
    max-width: 280pt;
    margin-top: 40pt;
}
#social_cont {
    width: 129pt;
    margin-top: 2vw;
}
.social {
    width: 41pt;
    align-items: center;
    justify-content: center;
    transition-property: color;
    transition-duration: .5s;
    background-color: #EDEBEB;
}
.social:active {
    animation: .2s clicked linear;
}
#socialname {
    width: 107pt;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 40pt;
}
#doge::before {
    content: "";
    width: 80pt;
    height: 40pt;
    background-image: url('../img/pizzadoge.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    position: absolute;
    opacity: calc(calc(var(--doge-switch) - 1) * -1);
    z-index: 2;
    transition: .25s ease;
}
#doge {
    width: 80pt;
    height: 40pt;
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 2;
}
#doge::after {
    content: "";
    width: 80pt;
    height: 40pt;
    background-image: url('../img/doge.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    position: absolute;
    opacity: var(--doge-switch);
    z-index: 2;
    transition: .25s ease;
}

/* car animation */
#car_left {
    background: url('../img/anim/car_left.png') no-repeat;
    width: 50vw;
    height: calc(50vw * .357142857);
    display: block;
    z-index: 12;
    background-size: 100%;
    position: absolute;
    left: 2vw;
    opacity: var(--doge-switch);
    transition: .25s ease;
}
#car_left span {
    background: url('../img/anim/car_left.png') no-repeat;
    width: 100%;
    height: 100%; 
    display: block;
    z-index: 12;
    background-size: 100%;
    position: absolute;
    filter: blur(calc(var(--car-anim-w) * .0025)); /* 1px ~ 400px */
}
#car_left span:nth-child(1) {
    filter: blur(calc(var(--car-anim-w) * .0125)); /* 5px ~ 400px */
}
#car_left span:nth-child(2) {
    filter: blur(calc(var(--car-anim-w) * .025)); /* 10px ~ 400px */
}
#car_left span:nth-child(3) {
    filter: blur(calc(var(--car-anim-w) * .025)); /* 12px ~ 400px */
    animation: blink2 .6s linear infinite;
}
#car_left span:nth-child(4) {
    background: url('../img/anim/car_left1.png') no-repeat;
    background-size: 100%;
    filter: blur(calc(var(--car-anim-w) * .0025)); 
}
#car_right {
    background: url('../img/anim/car_right.png') no-repeat;
    width: 50vw;
    height: calc(50vw * .357142857);
    display: block;
    z-index: 12;
    background-size: 100%;
    position: absolute;
    left: 55vw;
    opacity: var(--doge-switch);
    transition: .25s ease;
}
#car_right span {
    background: url('../img/anim/car_right.png') no-repeat;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 12;
    background-size: 100%;
    position: absolute;
    filter: blur(calc(var(--car-anim-w) * .0025)); /* 1px ~ 400px */
}
#car_right span:nth-child(1) {
    filter: blur(calc(var(--car-anim-w) * .0125)); /* 5px ~ 400px */
}
#car_right span:nth-child(2) {
    filter: blur(calc(var(--car-anim-w) * .025)); /* 10px ~ 400px */
}
#car_right span:nth-child(3) {
    filter: blur(calc(var(--car-anim-w) * .025)); /* 15px ~ 400px */
    animation: blink2 .6s linear .2s infinite;
}
#car_right span:nth-child(4) {
    background: url('../img/anim/car_right1.png') no-repeat;
    background-size: 100%;
    filter: blur(calc(var(--car-anim-w) * .0025)); 
}
#car_anim {
    width: var(--car-anim-w);
    height: var(--car-anim-h);
    padding: 0px;
    position: relative;
    overflow: hidden;
}
#car_bg_grad {
    background: url('../img/anim/bg_grad.png') no-repeat 0 0%;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 4;
    background-size: 100%;
    position: absolute;
}
#car_noise {
    width: 100%;
    height: 76.34%;
    display: block;
    z-index: 5;
    position: absolute;
    overflow: hidden;
}
#car_noise::after {
    content: "";
    background: url('../img/anim/noise.png') repeat-x 0 0%;
    width: 200%;
    height: 200%;
    display: block;
    animation: moveNoise 60s linear infinite;
    z-index: 5;
    background-size: 50%;
    position: absolute;
    overflow: hidden;
}
@keyframes moveNoise {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0px); }
}
#car_bg {
    width: 100%;
    height: 100%;
    display: block;
    z-index: 6;
    position: absolute;
}
#car_lights0 {
    background: url('../img/anim/lights0.png') no-repeat 0 0%;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 7;
    background-size: 100%;
    position: absolute;
}
#car_lights0 span {
    background: url('../img/anim/lights0.png') no-repeat 0 0%;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 7;
    background-size: 100%;
    position: absolute;
    filter: blur(calc(var(--car-anim-w) * .0025)); /* 1px ~ 400px */
}
#car_lights0 span:nth-child(1) {
    filter: blur(calc(var(--car-anim-w) * .0125)); /* 5px ~ 400px */
}
#car_lights0 span:nth-child(2) {
    filter: blur(calc(var(--car-anim-w) * .025)); /* 10px ~ 400px */
}
#car_lights0 span:nth-child(3) {
    filter: blur(calc(var(--car-anim-w) * .0375)); /* 15px ~ 400px */
}
#car_lights0 span:nth-child(4) {
    filter: blur(calc(var(--car-anim-w) * .003)); /* 12px ~ 400px */
    animation: blink .9s linear .26s infinite;
}
#car_lights0 span:nth-child(5) {
    filter: blur(calc(var(--car-anim-w) * .0625)); /* 25px ~ 400px */
}
#car_lights0 span:nth-child(6) {
    filter: blur(calc(var(--car-anim-w) * .05)) brightness(103%); /* 20px ~ 400px */
    animation: blink2 .4s linear .12s infinite;
}
#car_lights1 {
    background: url('../img/anim/lights1.png') no-repeat 0 0%;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 7;
    background-size: 100%;
    position: absolute;
}
#car_lights1 span {
    background: url('../img/anim/lights1.png') no-repeat 0 0%;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 7;
    background-size: 100%;
    position: absolute;
    filter: blur(calc(var(--car-anim-w) * .005));
}
#car_lights1 span:nth-child(1) {
    filter: blur(calc(var(--car-anim-w) * .01));
}
#car_lights1 span:nth-child(2) {
    filter: blur(calc(var(--car-anim-w) * .025));
}
#car_lights1 span:nth-child(3) {
    filter: blur(calc(var(--car-anim-w) * .0375));
}
#car_lights1 span:nth-child(4) {
    filter: blur(calc(var(--car-anim-w) * .003));
    animation: blink .9s linear .78s infinite;
}
#car_lights1 span:nth-child(5) {
    filter: blur(calc(var(--car-anim-w) * .0625));
}
#car_lights1 span:nth-child(6) {
    filter: blur(calc(var(--car-anim-w) * .05)) brightness(103%);
    animation: blink2 .4s linear .36s infinite;
}
#car_lights2 {
    background: url('../img/anim/lights2.png') no-repeat 0 0%;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 7;
    background-size: 100%;
    position: absolute;
}
#car_lights2 span {
    background: url('../img/anim/lights2.png') no-repeat 0 0%;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 7;
    background-size: 100%;
    position: absolute;
    filter: blur(calc(var(--car-anim-w) * .0025));
}
#car_lights2 span:nth-child(1) {
    filter: blur(calc(var(--car-anim-w) * .0125));
}
#car_lights2 span:nth-child(2) {
    filter: blur(calc(var(--car-anim-w) * .02));
}
#car_lights2 span:nth-child(3) {
    filter: blur(calc(var(--car-anim-w) * .003));
}
#car_lights2 span:nth-child(4) {
    filter: blur(calc(var(--car-anim-w) * .0125));
    animation: blink .9s linear infinite;
}
#car_lights2 span:nth-child(5) {
    filter: blur(calc(var(--car-anim-w) * .005));
}
#car_lights2 span:nth-child(6) {
    filter: blur(calc(var(--car-anim-w) * .0025)) brightness(103%);
    animation: blink2 .4s linear infinite;
}
#car_lights3 {
    background: url('../img/anim/lights3.png') no-repeat 0 0%;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 7;
    background-size: 100%;
    position: absolute;
}
#car_lights3 span {
    background: url('../img/anim/lights3.png') no-repeat 0 0%;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 7;
    background-size: 100%;
    position: absolute;
    filter: blur(calc(var(--car-anim-w) * .0025));
}
#car_lights3 span:nth-child(1) {
    filter: blur(calc(var(--car-anim-w) * .0125));
}
#car_lights3 span:nth-child(2) {
    filter: blur(calc(var(--car-anim-w) * .025));
}
#car_lights3 span:nth-child(3) {
    filter: blur(calc(var(--car-anim-w) * .0375));
}
#car_lights3 span:nth-child(4) {
    filter: blur(calc(var(--car-anim-w) * .003));
    animation: blink .9s linear .52s infinite;
}
#car_lights3 span:nth-child(5) {
    filter: blur(calc(var(--car-anim-w) * .0625));
}
#car_lights3 span:nth-child(6) {
    filter: blur(calc(var(--car-anim-w) * .05)) brightness(103%);
    animation: blink2 .4s linear .24s infinite;
}
#car_lights4 {
    background: url('../img/anim/lights4.png') no-repeat 0 0%;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 7;
    background-size: 100%;
    position: absolute;
}
#car_lights4 span {
    background: url('../img/anim/lights4.png') no-repeat 0 0%;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 7;
    background-size: 100%;
    position: absolute;
    filter: blur(calc(var(--car-anim-w) * .0025));
}
#car_lights4 span:nth-child(1) {
    filter: blur(calc(var(--car-anim-w) * .0125));
}
#car_lights4 span:nth-child(2) {
    filter: blur(calc(var(--car-anim-w) * .025));
}
#car_lights4 span:nth-child(3) {
    filter: blur(calc(var(--car-anim-w) * .0375));
}
#car_lights4 span:nth-child(4) {
    filter: blur(calc(var(--car-anim-w) * .003));
    animation: blink .9s .13s linear infinite;
}
#car_lights4 span:nth-child(5) {
    filter: blur(calc(var(--car-anim-w) * .0625));
}
#car_lights4 span:nth-child(6) {
    filter: blur(calc(var(--car-anim-w) * .05)) brightness(103%);
    animation: blink2 .4s .06s linear infinite;
}
#car_lights5 {
    background: url('../img/anim/lights5.png') no-repeat 0 0%;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 7;
    background-size: 100%;
    position: absolute;
}
#car_lights5 span {
    background: url('../img/anim/lights5.png') no-repeat 0 0%;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 7;
    background-size: 100%;
    position: absolute;
    filter: blur(calc(var(--car-anim-w) * .0025));
}
#car_lights5 span:nth-child(1) {
    filter: blur(calc(var(--car-anim-w) * .0125));
}
#car_lights5 span:nth-child(2) {
    filter: blur(calc(var(--car-anim-w) * .02));
}
#car_lights5 span:nth-child(3) {
    filter: blur(calc(var(--car-anim-w) * .003));
}
#car_lights5 span:nth-child(4) {
    filter: blur(calc(var(--car-anim-w) * .0125));
    animation: blink .9s linear .39s infinite;
}
#car_lights5 span:nth-child(5) {
    filter: blur(calc(var(--car-anim-w) * .005));
}
#car_lights5 span:nth-child(6) {
    filter: blur(calc(var(--car-anim-w) * .0025)) brightness(103%);
    animation: blink2 .4s linear .18s infinite;
}
@keyframes blink {
    0% { opacity: 1; }
    15% { opacity: 0; }
    20% { opacity: 1; }
    40% { opacity: 0; }
    60% { opacity: 1; }
    80% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes blink2 {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
#car_svg {
    width: calc(var(--car-anim-w) * .7401225);
    height: calc(var(--car-anim-h) * .494045);
    display: block;
    animation: carBob 2s linear infinite;
    z-index: 9;
    position: absolute;
    left: calc(var(--car-anim-w) * -.0187975);
    bottom: calc(var(--car-anim-w) * -.003);
}
@keyframes carBob {
    0% { transform: translateY(calc(var(--car-anim-w) * -.0025)); }
    50% { transform: translateY(calc(var(--car-anim-w) * .0025)); }
    100% { transform: translateY(calc(var(--car-anim-w) * -.0025)); }
}
#car_wheel {
    width: calc(var(--car-anim-w) * .0716025);
    height: calc(var(--car-anim-w) * .0716025);
    display: block;
    animation: wheelSpin 1s linear infinite;
    z-index: 11;
    position: absolute;
    left: calc(var(--car-anim-w) * .3268);
    bottom: calc(var(--car-anim-w) * .0345475);
}
#car_wheel2 {
    width: calc(var(--car-anim-w) * .0716025);
    height: calc(var(--car-anim-w) * .0716025);
    display: block;
    animation: wheelSpin 1s linear infinite;
    z-index: 11;
    position: absolute;
    left: calc(var(--car-anim-w) * .60744);
    bottom: calc(var(--car-anim-w) * .0345475);
}
@keyframes wheelSpin {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}
#spin {
    width: 20vw;
    height: 20vw;
    display: block;
    position: absolute;
    top: calc(50% - 10vw);
    left: 40vw;
    animation: loadSpin .7s linear infinite;
}
@keyframes loadSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* order online */
.online {
    display: block;
    width:120pt;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
    margin-top: 32px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.online:active {
    transform: translateY(4px);
}

/* unused/removed */
.dropdown-menu {
    overflow: visible;
}
.dropdown-toggle {
    margin: 0px;
    padding: 2px;
    background-color: black;
    color: white;
    font-family: Helvetica;
    font-size: 14px;
}
#menu_number {
    font-family: Helvetica;
    font-size: 14px;
    color: white;
    float: right;
    padding: 2px;
}
#phone_number {
    font-size: 16px;
    font-weight: bold;
    margin-top: calc(1vw + 8px);
}
.well {
    margin: 0px;
    padding-left: 0px;
    padding-right: 0px;
    background-color: #F8F8F8;
    border: 0px;
    border-radius: 0px;
    box-shadow: none;
}
#sub {
    font-size: 12px;
}
.tmp {
    background-color: #f8f8f8;
    margin-top: 14pt;
    box-shadow: 0px 0px 14px black;
}
.tmp2 {
    margin-bottom: 14pt;
}
#cards_holder {
    width: 100%;
}
