body {
    font-family: 'SF Pro Text', 'SF Pro Icons', 'Helvetica Neue', 'Helvetica',
        'Arial', sans-serif;
    margin: 20px;
    overflow-x: hidden;
    padding: 0;
    box-sizing: border-box;
}

a {
    cursor: pointer;
    color: #0076ff;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid white;
}

a:hover {
    border-bottom: 1px solid #0076ff;
}

footer {
    opacity: 0.5;
    font-size: 0.8em;
}

footer a {
    color: black;
}

.center,
h1 {
    text-align: center;
}

.container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.split {
    display: flex;
    justify-content: center;
    width: 100%;
}

.pull-left {
    min-width: 50%;
    display: flex;
    justify-content: flex-end;
}

.pull-right {
    min-width: 50%;
}

button {
    appearance: none;
    align-items: center;
    color: #fff;
    background: #000;
    display: inline-flex;
    width: 100px;
    height: 40px;
    padding: 0 25px;
    outline: none;
    border: 1px solid #000;
    font-size: 12px;
    justify-content: center;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    user-select: none;
    font-weight: 100;
    position: relative;
    overflow: hidden;
    transition: border 0.2s, background 0.2s, color 0.2s ease-out;
    border-radius: 5px;
    white-space: nowrap;
    text-decoration: none;
    line-height: 0;

    height: 24px;
    width: calc(100% + 2px);
    padding: 0 10px;
    font-size: 12px;
    background: #fff;
    border: 1px solid #eaeaea;
    color: #666;
}

button:hover {
    color: #000;
    border-color: #000;
    background: #fff;
}

.input-outer-wrapper {
    align-items: center;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    display: inline-flex;
    height: 37px;
    position: relative;
    transition: border 0.2s ease, color 0.2s ease;
    vertical-align: middle;
    width: 100%;
    background: white;
}

.input-outer-wrapper:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-color: #ddd;
}

.input-inner-wrapper {
    display: block;
    margin: 4px 10px;
    position: relative;
    width: 100%;
}

.input-inner-wrapper input {
    background-color: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    box-sizing: border-box;
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
        'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
        'Helvetica Neue', sans-serif;
    font-size: 14px;
    line-height: 27px;
    outline: 0;
    width: 90%;
}

.select-wrapper {
    appearance: none;
    color: #000;
    background: #fff;
    display: inline-flex;
    height: 40px;
    outline: none;
    border: 1px solid #eaeaea;
    font-size: 12px;
    text-transform: uppercase;
    user-select: none;
    font-weight: 100;
    position: relative;
    overflow: hidden;
    transition: border 0.2s, background 0.2s, color 0.2s ease-out,
        box-shadow 0.2s ease;
    border-radius: 5px;
    white-space: nowrap;
    line-height: 0;
    width: auto;
    min-width: 100%;
}

.select-wrapper:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-color: #ddd;
}

.select-wrapper.small {
    height: 24px;
    min-width: 97px;
    width: 100px;
    margin-right: 5px;
}

.select-arrow {
    border-left: 1px solid #eaeaea;
    background: #fff;
    width: 40px;
    height: 100%;
    position: absolute;
    right: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-arrow.small {
    width: 22px;
}

.svg {
    fill: #151513;
    color: #fff;
    position: absolute;
    top: 0;
    border: 0;
    right: 0;
}
select {
    height: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    color: #000;
    line-height: 40px;
    font-size: 14px;
    margin-right: -20px;
    width: calc(100% + 20px);
    padding: 0 0 0 16px;
    text-transform: none;
}

.field-flex {
    display: flex;
    margin-top: 10px;
}

.field-value {
    margin: 10px 10px;
}

.field-label {
    display: inline-block;
    width: 100px;
    margin-right: 20px;
    text-align: right;
}

.field-value {
    width: 200px;
    display: inline-block;
}

label {
    display: flex;
    align-items: center;
}

.toast-area {
    position: fixed;
    bottom: 10px;
    right: 20px;
    max-width: 420px;
    z-index: 2000;
    transition: transform 0.4s ease;
}

.toast-outer {
    width: 420px;
    height: 72px;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.4s ease;
    transform: translate3d(0, 130%, 0px) scale(1);
    animation: show-jsx-1861505484 0.4s ease forwards;
    opacity: 1;
}

.toast-inner {
    width: 420px;
    background: black;
    color: white;
    border: 0;
    border-radius: 5px;
    height: 60px;
    align-items: center;
    justify-content: space-between;

    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.12);
    font-size: 14px;
    display: flex;
}

.toast-message {
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    margin-top: -1px;
    margin-left: 20px;
}

img {
    max-width: 100%;
    transition: all 0.3s ease-in 0s;
}

.image-wrapper {
    display: block;
    cursor: pointer;
    text-decoration: none;
    background: #fff;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    margin-bottom: 15px;
    transition: all 0.2s ease;
    max-width: 100%;
}

.image-wrapper:hover {
    box-shadow: 0 1px 16px rgba(0, 0, 0, 0.1);
    border-color: #ddd;
}

.image-preview-container {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: sticky;
    top: 0px;
    background: white;
    z-index: 10;
}

.image-preview-container .image-preview-actions {
    display: flex;
}

.btn-cta {
    color: white;
    background: black;
    letter-spacing: 0.1rem;
}

.btn-cta:hover {
    color: black;
    border-color: black;
}

.field .input-inner-wrapper.color-hint {
    width: 50%;
}

.field span.color-hint {
    width: 30%;
    padding: 10px;
    text-align: right;
    color: #818181;
    font-size: 0.8rem;
}

.footer {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 2fr 1fr;
    margin: 2rem 1rem;
}

.footer-actions {
    display: grid;
    place-content: center;
    margin: 2rem 0px;
}

div.what-is-this {
    text-align: left;
}

.what-is-this p,
.what-is-this h2 {
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
}

.what-is-this p {
    color: #424242;
}

.protip {
    color: #5a5a5a;
    max-width: 500px;
    margin: auto;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

@media (min-width: 1000px) {
    .field.field-custom {
        font-size: 0.8rem;
        background: whitesmoke;
        color: #424242;
        font-weight: 500;
        border-left: 5px solid #0000001f;
        max-width: 380px;
    }
}

@media (max-width: 1000px) {
    .field {
        margin: 0px 10px;
    }
    .image-wrapper {
        margin-bottom: 5px;
    }
    .image-preview-container {
        flex-direction: row;
    }
    .image-preview-container .image-preview-actions {
        flex-direction: column;
        padding-left: 5px;
    }
    .image-preview-container .image-preview-actions .btn-cta:nth-child(2) {
        margin-left: 0px !important;
        margin-top: 4px;
    }
    .footer {
        display: block;
    }
}

@media (max-width: 900px) {
    .split {
        flex-wrap: wrap;
    }
    .field-label {
        width: 60px;
        font-size: 13px;
    }
}

.github-corner {
    position: absolute;
    top: 0;
    right: 0;
}

.github-corner:hover .octo-arm {
    animation: octocat-wave 560ms ease-in-out;
}

@keyframes octocat-wave {
    0%,
    100% {
        transform: rotate(0);
    }
    20%,
    60% {
        transform: rotate(-25deg);
    }
    40%,
    80% {
        transform: rotate(10deg);
    }
}

@media (max-width: 500px) {
    .github-corner:hover .octo-arm {
        animation: none;
    }
    .github-corner .octo-arm {
        animation: octocat-wave 560ms ease-in-out;
    }
    .svg {
        right: -33%;
    }
}

@media (max-width: 360px) {
    .svg {
        right: -52%;
    }
}
