/*@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');*/

:root {
    --foregroundColorBase: 0, 0, 0;
    --backgroundColorBase: 255, 255, 255;
    --foregroundColor: red;
    --backgroundColor: red;
    --backgroundColorSecondary: red;
    --backgroundColorTertiary: red;

    /* Light */
    --newBackgroundColor0: #ededed;
    --newBackgroundColor1: #FFFFFF;
    --newForegroundColor: #1d1d1f;
    --newBoxShadow: 2px 4px 12px rgba(0, 0, 0, .08);
    --newBorderRadius: 18px;
    --newBorderColor: #CECECE;
    --maxContentWidth: 1200px;
    --accentFont: Urbanist, futura, sans-serif;
    

    /* Dark 
    --newBackgroundColor0: #000000;
    --newBackgroundColor1: #252525;
    --newForegroundColor: #e0e0e0;
    --newBoxShadow: 2px 4px 12px rgba(0, 0, 0, .08);
    --newBorderRadius: 18px;
    --newBorderColor: #CECECE;
    --maxContentWidth: 1200px;
    --accentFont: Urbanist, futura, sans-serif;
    */


    --accentColor: #DAFFE7;
    --accentColorSecondary: rgb(230,230,240);

    --logoInvertAmount: 0;

    --auroraColorPrimary: #de3e09;
    --auroraColorSecondary: #e35914;
    --auroraColorTertiary: #ffa220;
    --auroraTransitionTime: 1s;

    /*
    --styleBorderInner: 0px 0px 0px 1px rgba(var(--foregroundColorBase), 0.35);
    --styleBorderOuter: 0px 0px 0px 2px rgba(var(--backgroundColorBase), 0.75);
    --styledBoxShadow: var(--styleBorderInner), var(--styleBorderOuter);
    */
    
    --styledBackground: rgba(var(--backgroundColorBase),0.8);
    --styledBackgroundHover: rgba(var(--backgroundColorBase),1)
}

/* 
    Universal 
*/

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Gothic';
    src: url('/fonts/gothic.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Urbanist';
    src: url('/fonts/Urbanist/Urbanist-VariableFont_wght.ttf') format('truetype');
    font-weight: 1 1000;
    font-style: normal;
}

@font-face {
    font-family: 'Urbanist';
    src: url('/fonts/Urbanist/Urbanist-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 1 1000;
    font-style: italic;
}

/*
@font-face {
    font-family: 'Albert Sans';
    src: url('/fonts/websafe/albertsans-variablefont_wght-webfont.woff') format('woff'),
         url('/fonts/websafe/albertsans-variablefont_wght-webfont.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}
*/

img {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

body {
    background: var(--newBackgroundColor0);
    margin: 0;
    font-family: Helvetica, sans-serif;
    font-weight: 100;
    overflow-x: hidden;
/*
    overflow-y: scroll;
    */
    color: var(--newForegroundColor);
    fill: var(--newForegroundColor);
}

h1 {
    font-family: var(--accentFont);
    font-weight: 500;
}

h2 {
    font-family: var(--accentFont);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--newForegroundColor);
}

svg {
    fill: var(--newForegroundColor);
}

.rainbowColorText {
    /* font-weight: 1000; */
    /* background: -webkit-linear-gradient(var(--auroraColorTertiary), var(--auroraColorSecondary)); */
    background: -webkit-linear-gradient(45deg, #cc2b5e, #753a88);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* New */

.contentWrapper {
    display: block;
    position: relative;
    background-color: var(--newBackgroundColor0);
    z-index: 2;
    width: 100%;
}

.contentInner {
    display: block;
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.contentBox {
    background-color: var(--newBackgroundColor1);
    border-radius: var(--newBorderRadius);
    -webkit-border-radius: var(--newBorderRadius);
    box-shadow: var(--newBoxShadow);
    overflow: hidden;
    color: var(--newForegroundColor);
    fill: var(--newForegroundColor);
    border: 1px solid var(--newBorderColor);
}

/*
.gryzleLogo {
    filter: invert(var(--logoInvertAmount));
}
*/

/* Aurora */

.aurora {
    position: fixed;
    z-index: 0;
    width: 100vw;
    height: 100vh;
}

@keyframes fly {
    100% {
        transform: rotate(1turn) translate(100px) rotate(-1turn);
        -webkit-transform: rotate(1turn) translate(100px) rotate(-1turn);
        -moz-transform: rotate(1turn) translate(100px) rotate(-1turn);
        -ms-transform: rotate(1turn) translate(100px) rotate(-1turn);
        -o-transform: rotate(1turn) translate(100px) rotate(-1turn);
}
}

@keyframes fly2 {
    50% {
        transform: translateX(100%) translateY(-100%);
        -webkit-transform: translateX(100%) translateY(-100%);
        -moz-transform: translateX(100%) translateY(-100%);
        -ms-transform: translateX(100%) translateY(-100%);
        -o-transform: translateX(100%) translateY(-100%);
}
}
  
@keyframes flyPlus {
    100% {
        transform: rotate(-1turn) translate(200px) rotate(1turn);
        -webkit-transform: rotate(-1turn) translate(200px) rotate(1turn);
        -moz-transform: rotate(-1turn) translate(200px) rotate(1turn);
        -ms-transform: rotate(-1turn) translate(200px) rotate(1turn);
        -o-transform: rotate(-1turn) translate(200px) rotate(1turn);
}
}

.wrapper {
    width: 100%;
    height: 100%;
    background: var(--newBackgroundColor0);
    position: fixed;
    overflow: hidden;
    border-radius: 0px;
}

.base {
    position: fixed;
    filter: blur(150px);
    opacity: 0.8;
}

.one {
    border-radius: 100%;
    width: 60%;
    height: 60%;
    background-color: var(--auroraColorPrimary);
    left:-5%;
    top:-30%;
    z-index: 3;
    animation: fly 30s linear infinite;
    transform: rotate(0) translate(80px) rotate(0);
    transition: background-color var(--auroraTransitionTime);
    -webkit-transform: rotate(0) translate(80px) rotate(0);
    -moz-transform: rotate(0) translate(80px) rotate(0);
    -ms-transform: rotate(0) translate(80px) rotate(0);
    -o-transform: rotate(0) translate(80px) rotate(0);
    -webkit-transition: background-color var(--auroraTransitionTime);
    -moz-transition: background-color var(--auroraTransitionTime);
    -ms-transition: background-color var(--auroraTransitionTime);
    -o-transition: background-color var(--auroraTransitionTime);
}

.two {
    border-radius: 100%;
    width: 60%;
    height: 80%;
    background-color: var(--auroraColorSecondary);
    bottom: -10%;
    left: -8%;
    animation: fly2 60s ease-in-out infinite;
    transition: background-color var(--auroraTransitionTime);
    -webkit-transition: background-color var(--auroraTransitionTime);
    -moz-transition: background-color var(--auroraTransitionTime);
    -ms-transition: background-color var(--auroraTransitionTime);
    -o-transition: background-color var(--auroraTransitionTime);
    -webkit-animation: fly2 60s ease-in-out infinite;
}

.three {
    border-radius: 100%;
    width: 65%;
    height: 65%;
    bottom: -8%;
    right: -10%;
    background-color: var(--auroraColorTertiary);
    animation: flyPlus 30s linear infinite;
    transform: rotate(0) translate(100px) rotate(0);
    transition: background-color var(--auroraTransitionTime);
    -webkit-transform: rotate(0) translate(100px) rotate(0);
    -moz-transform: rotate(0) translate(100px) rotate(0);
    -ms-transform: rotate(0) translate(100px) rotate(0);
    -o-transform: rotate(0) translate(100px) rotate(0);
    -webkit-transition: background-color var(--auroraTransitionTime);
    -moz-transition: background-color var(--auroraTransitionTime);
    -ms-transition: background-color var(--auroraTransitionTime);
    -o-transition: background-color var(--auroraTransitionTime);
}

@keyframes fly {
    100% {
        transform:rotate(1turn) translate(100px) rotate(-1turn);
        -webkit-transform:rotate(1turn) translate(100px) rotate(-1turn);
        -moz-transform:rotate(1turn) translate(100px) rotate(-1turn);
        -ms-transform:rotate(1turn) translate(100px) rotate(-1turn);
        -o-transform:rotate(1turn) translate(100px) rotate(-1turn);
}
}

@keyframes flyPlus {
    100% {
        transform:rotate(-1turn) translate(100px) rotate(1turn);
        -webkit-transform:rotate(-1turn) translate(100px) rotate(1turn);
        -moz-transform:rotate(-1turn) translate(100px) rotate(1turn);
        -ms-transform:rotate(-1turn) translate(100px) rotate(1turn);
        -o-transform:rotate(-1turn) translate(100px) rotate(1turn);
}
}

/* Aurora Static */

.aurora > .wrapper {
    display: none !important;
}

.aurora {
    background-size: cover;
    opacity: 0.5;
}

/* Theme */

.styledBorder {
    box-shadow: var(--styleBorderInner), var(--styleBorderOuter);
}

/* Sections */

.section {
    width: calc(100% - 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "image text";
    height: 50vh;
    background-color: var(--newBackgroundColor1);
    z-index: 10;
    padding: 20px;
    transform: translateZ(0);
    overflow: hidden;
    z-index: 10;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    margin: 20px;
}

.section:nth-child(odd) {
    grid-template-areas: "text image";
}

.section:nth-child(odd) .sectionDescription {
    padding-right: 0;
    text-align: right;
}

body > a:nth-child(even) .section {
    grid-template-areas: "image text";
}

body > a:nth-child(even) .section .sectionDescription {
    text-align: left !important;
}

.section > img {
    grid-area: image;
    max-width: 80%;
    max-height: 40vh;
}

.section > div {
    padding: 20px;
}

@media (max-width: calc(700px)) {
    .section {
        height: 75vh;
        grid-template-columns: 1fr;
        grid-template-rows: 40vh 35vh; /* 35vh */
        grid-template-areas: "image" "text" !important;
        overflow: hidden;
    }

    .section > img {
        max-height: 100% !important;
        object-fit: contain;
    }

    .section .sectionDescription {
        text-align: center !important;
    }
}

.section > * {
    margin: auto;
}

.sectionDescription {
    width: calc(100% - 25px);
    max-width: 600px;
}

.section a {
    font-weight: bold;
    color: inherit;
}

.section a:hover {
    background-color: rgba(150,150,150,0.2);
    border-radius: 3px;
}


.section > img {
    transition: filter 0.5s, scale 0.5s;
    -webkit-transition: filter 0.5s, scale 0.5s;
}

.section > img:hover {
    filter: brightness(1.1);
    -webkit-filter: brightness(1.1);
    scale: 1.1;
}

.sectionDynamicImage {
    transform: translateY(calc((var(--pagePositionY) - 25vh)/6));
    -webkit-transform: translateY(calc((var(--pagePositionY) - 25vh)/6)) scale(calc(1 - var(--pagePositionPercent)/5));
    opacity: calc(1 - var(--pagePositionPercent)/5);
    transition: transform 0.05s, opacity 0.05s;
    -webkit-transition: transform 0.05s, opacity 0.05s;
}

/* App Section */

.appSection {
    background-color: /*rgba(255,255,255,0.75)*/ var(--newBackgroundColor1);
    color: black;
    fill: black;
    height: 60vh;
    grid-template-areas: "image text" !important;
}

@media (max-width: calc(700px)) {
    .appSection {
        grid-template-columns: 1fr;
        grid-template-rows: 35vh max-content;
        grid-template-areas: "image" "text" !important;
        height: max-content;
    }
}

.appSection img {
    max-height: 60vh;
}

.appSection .sectionDescription {
    text-align: left !important;
}

.appSection h1 {
     margin-bottom: 0 !important;
}

.appSection p {
    margin-top: 0;
}

.featuredAward {
    display: grid;
    grid-template-columns: min-content max-content min-content;
    grid-template-rows: min-content;
    opacity: 0.75;
    margin: auto;
}

.featuredAward h2 {
    margin: 0;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: light;
}

.featuredAward img {
    margin: auto;
    filter: invert();
    -webkit-filter: invert();
}

.appSectionStoreLinkWrapper, .appPageLinkWrapper {
    width: min-content;
}

.appSectionStoreLink, .appPageLink { /* App Store Link */
    padding-left: 10px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    font-weight: lighter;
    background: rgba(0,0,0,0.85);
    color: white;
    fill: white;
    width: max-content;
    -webkit-border-radius: 5px;
    display: grid;
    grid-template-columns: min-content max-content;
    grid-template-rows: 1fr;
    transition: color 0.1s, fill 0.1s, background 0.1s;
    -webkit-transition: color 0.1s, fill 0.1s, background 0.1s;
    box-shadow: var(--newBoxShadow);
    margin: 0 !important;
}

.appSectionStoreLink:hover, .appPageLink:hover {
    background: rgba(255,255,255,1);
    color: black;
    fill: black;
}

.appSectionStoreLink p, .appPageLink p {
    margin: auto;
}

.appPageLink p {
    font-weight: 1000;
}

.appSectionStoreLink svg {
    width: 40px;
    fill: inherit
}

.appPageLink { /* App Store Link */
    margin-bottom: 15px !important;
}

.appPageLink img {
    width: 40px;
    margin: auto;
    padding-right: 10px;
}

.appLinksWrapper {
    display: grid;
    grid-template-columns: max-content max-content;
    grid-template-rows: 1fr;
    gap: 10px;
}
/* 
@media (max-width: calc(700px)) {
    .appLinksWrapper {
        display: grid;
        grid-template-columns: max-content;
        grid-template-rows: 1fr 1fr;
        gap: 0px;
    }
} */

/* Scroll Indicator */

.scrollIndicator {
    width: 100vw;
    height: 10vh;
    display: block;
    background: var(--backgroundColor);
}

.scrollIndicator svg {
    width: 30px;
    display: block;
    margin: auto;
    transform: translateY(calc(5vh - 100%));
    -webkit-transform: translateY(calc(5vh - 100%));
    opacity: 0.5;
    animation-name: scrollIndicatorPoint;
    animation-timing-function: ease-in-out;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-delay: 5s;
}

@keyframes scrollIndicatorPoint {
    0% {
        transform: translateY(calc(5vh - 100%));
        -webkit-transform: translateY(calc(5vh - 100%));
    }
    10% {
        transform: translateY(calc(5vh - 150%));
        -webkit-transform: translateY(calc(5vh - 125%));
    }
    20% {
        transform: translateY(calc(5vh - 100%));
        -webkit-transform: translateY(calc(5vh - 100%));
    }
    30% {
        transform: translateY(calc(5vh - 150%));
        -webkit-transform: translateY(calc(5vh - 125%));
    }
    40% {
        transform: translateY(calc(5vh - 100%));
        -webkit-transform: translateY(calc(5vh - 100%));
    }
    100% {
        transform: translateY(calc(5vh - 100%));
        -webkit-transform: translateY(calc(5vh - 100%));
    }
}

.scrollIndicator p {
    text-align: center;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    font-size: 12px;
    opacity: 0.5;
}

.notificationBanner {
    width: calc(100vw - 40px);
    border-radius: 15px;
    left: 20px;
    min-height: 50px;
    position: fixed;
    top: 75px;
    z-index: 998;
    display: grid;
    grid-template-columns: 1fr 50px;
    animation-name: notificationBannerEntry;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1);
    -webkit-border-radius: 15px;
}

@keyframes notificationBannerEntry {
    0% {
        opacity: 0;
        transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
}
    100% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
}
}

.notificationBannerWarning {
    background-color: rgb(221, 77, 77);
    color: white;
    fill: white;
}

.notificationBannerContent {
    width: 1fr;
    margin: auto;
    display: grid;
    grid-template-columns: 50px 1fr;
}

.notificatonBannerIcon > svg {
    width: 36px;
    fill: inherit !important;
    padding: 7px;
}

.notificationBannerExitButton {
    cursor: pointer;
}

.notificationBannerExitButton > svg {
    width: 24px;
    fill: inherit !important;
    padding: 13px;
}

/* Source Chip */

.sourceChipWrapper {
    width: max-content;
    height: max-content;
}

.sourceChip {
    height: max-content;
    width: max-content;
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 0px;
    padding-left: 5px;
    padding-right: 5px;
    align-items: center;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    transition: padding-right 0.5s cubic-bezier(.22, 1, .36, 1);
    -webkit-transition: padding-right 0.5s cubic-bezier(.22, 1, .36, 1);
    opacity: 1;
    color: white !important;
    fill: white !important;
}

.sourceChipIcon {
    padding: 6px;
    height: 20px;
}

.sourceChipIcon svg {
    height: 20px;
    width: 20px;
    fill: inherit;
}

.sourceChipText {
    margin: 0;
    font-size: 0px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(.22, 1, .36, 1);
    -webkit-transition: all 0.5s cubic-bezier(.22, 1, .36, 1);
}

.sourceChip:hover .sourceChip, .sourceChip.persistent {
    padding-right: 13px;
    transition: all 0.5s cubic-bezier(.22, 1, .36, 1);
    -webkit-transition: all 0.5s cubic-bezier(.22, 1, .36, 1);
}

.sourceChip:hover .sourceChipText, .sourceChip.persistent .sourceChipText {
    font-size: 12px;
    opacity: 1;
}

.sourceChip.persistent:hover {
    transform: scale(1.1);
    /*box-shadow: 0px 0px 0px 3px white;
    */-webkit-transform: scale(3);
    -webkit-transform: scale(1.1);
}

/* Source Chip Presets */

.chipAppStore {
    background: linear-gradient(to bottom, #17B5EF, #177ede);
}
.chipAppStore .sourceChipText:after {
    content: "Open in the App Store";
}
.chipAppStore > .sourceChipIcon > svg > path {
    d: path("M43.927 29.191h-7.333l-8.397-14.51c-1.332 1.468-2.144 3.41-2.144 5.544 0 1.425.363 2.765.998 3.936.065 .118.129 .233.201 .347l10.496 18.138c.793 1.37 2.55 1.84 3.924 1.049s1.845-2.544 1.051-3.914l-2.813-4.861h4.017c1.586 0 2.872-1.283 2.872-2.865S45.514 29.191 43.927 29.191zM9.103 35.997c-.663 0-1.292.142-1.863.392l-1.964 3.394c-.793 1.37-.322 3.123 1.051 3.914 1.374.791 3.131.322 3.924-1.049l2.679-4.629C12.098 36.799 10.695 35.997 9.103 35.997zM26.209 29.191H18.04l12.139-20.974c.793-1.371.323-3.123-1.051-3.914-1.374-.791-3.131-.322-3.924 1.049l-1.204 2.08-1.204-2.08c-.793-1.371-2.55-1.84-3.924-1.049s-1.845 2.544-1.052 3.914l2.862 4.945-9.277 16.028h-7.334c-1.586 0-2.872 1.283-2.872 2.865s1.286 2.865 2.872 2.865h25.976c.203-.489.316-1.023.316-1.585C30.365 31.047 28.504 29.191 26.209 29.191z");
}

.chipGithub {
    background: linear-gradient(to bottom, #2b2b2b, #111111);
}
.chipGithub .sourceChipText:after {
    content: "Open in the App Store";
}
.chipGithub > .sourceChipIcon > svg > path {
    d: path("M43.927 29.191h-7.333l-8.397-14.51c-1.332 1.468-2.144 3.41-2.144 5.544 0 1.425.363 2.765.998 3.936.065 .118.129 .233.201 .347l10.496 18.138c.793 1.37 2.55 1.84 3.924 1.049s1.845-2.544 1.051-3.914l-2.813-4.861h4.017c1.586 0 2.872-1.283 2.872-2.865S45.514 29.191 43.927 29.191zM9.103 35.997c-.663 0-1.292.142-1.863.392l-1.964 3.394c-.793 1.37-.322 3.123 1.051 3.914 1.374.791 3.131.322 3.924-1.049l2.679-4.629C12.098 36.799 10.695 35.997 9.103 35.997zM26.209 29.191H18.04l12.139-20.974c.793-1.371.323-3.123-1.051-3.914-1.374-.791-3.131-.322-3.924 1.049l-1.204 2.08-1.204-2.08c-.793-1.371-2.55-1.84-3.924-1.049s-1.845 2.544-1.052 3.914l2.862 4.945-9.277 16.028h-7.334c-1.586 0-2.872 1.283-2.872 2.865s1.286 2.865 2.872 2.865h25.976c.203-.489.316-1.023.316-1.585C30.365 31.047 28.504 29.191 26.209 29.191z");
}

.chipWebsite {
    background: linear-gradient(to bottom, #2b2b2b, #111111);
}
.chipWebsite .sourceChipText:after {
    content: "Open in the App Store";
}
.chipWebsite > .sourceChipIcon > svg > path {
    d: path("M43.927 29.191h-7.333l-8.397-14.51c-1.332 1.468-2.144 3.41-2.144 5.544 0 1.425.363 2.765.998 3.936.065 .118.129 .233.201 .347l10.496 18.138c.793 1.37 2.55 1.84 3.924 1.049s1.845-2.544 1.051-3.914l-2.813-4.861h4.017c1.586 0 2.872-1.283 2.872-2.865S45.514 29.191 43.927 29.191zM9.103 35.997c-.663 0-1.292.142-1.863.392l-1.964 3.394c-.793 1.37-.322 3.123 1.051 3.914 1.374.791 3.131.322 3.924-1.049l2.679-4.629C12.098 36.799 10.695 35.997 9.103 35.997zM26.209 29.191H18.04l12.139-20.974c.793-1.371.323-3.123-1.051-3.914-1.374-.791-3.131-.322-3.924 1.049l-1.204 2.08-1.204-2.08c-.793-1.371-2.55-1.84-3.924-1.049s-1.845 2.544-1.052 3.914l2.862 4.945-9.277 16.028h-7.334c-1.586 0-2.872 1.283-2.872 2.865s1.286 2.865 2.872 2.865h25.976c.203-.489.316-1.023.316-1.585C30.365 31.047 28.504 29.191 26.209 29.191z");
}

.chipLearnMore {
    /* background: -webkit-linear-gradient(45deg, #cc2b5e, #753a88); */
    background: black;
}
.chipLearnMore .sourceChipText:after {
    content: "Learn More";
}
.chipLearnMore > .sourceChipIcon > svg > path {
    d: path("M 24 4 C 12.972066 4 4 12.972074 4 24 C 4 35.027926 12.972066 44 24 44 C 35.027934 44 44 35.027926 44 24 C 44 12.972074 35.027934 4 24 4 z M 24 7 C 33.406615 7 41 14.593391 41 24 C 41 33.406609 33.406615 41 24 41 C 14.593385 41 7 33.406609 7 24 C 7 14.593391 14.593385 7 24 7 z M 24 14 A 2 2 0 0 0 24 18 A 2 2 0 0 0 24 14 z M 23.976562 20.978516 A 1.50015 1.50015 0 0 0 22.5 22.5 L 22.5 33.5 A 1.50015 1.50015 0 1 0 25.5 33.5 L 25.5 22.5 A 1.50015 1.50015 0 0 0 23.976562 20.978516 z");
}

.chipOutline {
    background: none;
    box-shadow: 0px 0px 0px 2px black inset;
    color: black !important;
    fill: black !important;
}

/* Transitions */

.transition {
    transition: all 1s !important;
    -webkit-transition: all 1s !important;
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.delayShort {
    transition-delay: 0.2s !important;
}

.delayMedium {
    transition-delay: 0.5s !important;
}

.delayLong {
    transition-delay: 1.0s !important;
}

.entryLeft {
    opacity: 0;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    transform: translateX(-50%) scale(0.9);
    -webkit-transform: translateX(-50%) scale(0.9);
}

.entryRight {
    opacity: 0;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    transform: translateX(50%) scale(0.9);
    -webkit-transform: translateX(50%) scale(0.9);
}

.entryUp {
    opacity: 0;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    transform: translateY(-50%) scale(0.9);
    -webkit-transform: translateY(-50%) scale(0.9);
}

.entryDown {
    opacity: 0;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    transform: translateY(50%) scale(0.9);
    -webkit-transform: translateY(50%) scale(0.9);
}

.tiltLeft {
    transform: perspective(400px) rotate3d(0, 1, 0, 15deg) translateX(-100px);
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 15deg) translateX(-100px);
}

.tiltUp {
    opacity: 0;
    filter: blur(5px);
    transform: perspective(400px) rotate3d(1, 0, 0, 15deg) translateY(-150px);
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 15deg) translateY(-150px);
}

.isVisible {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -webkit-filter: blur(0);
}