/*@import url('https://fonts.googleapis.com/css?family=Raleway:700,700i&display=swap');*/

body {
    margin: 0;
    overflow-x: hidden;
    outline: 0;
    -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

h1, h2, h3, figure {
    margin: 0;
    padding: 0;
    border: 0;
    display: block;
}

input[type="submit"] {
    cursor: pointer;
}

.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

::placeholder {
    color: #00000090;
}

a.black {
    color: #000000;
    text-decoration: none;
}
a.black:hover {
    color: #ff0079;
    text-decoration: underline;
}

header {
    background: #00ff4d;
    color: #000000;
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    text-align: center;
    font-size: 30px;
    line-height: 43px;
    height: 40px;
    display: flex;
    padding: 0 0 0 10px;
    align-items: center;
}
header > div {
    flex: 1;
}
header > div.logo {
    font-size: 12px;
    max-width: 100px;
}
header > .header__account {
    max-width: 40px;
    height: 40px;
    background: url('/images/chichi/account.png') no-repeat center center;
    background-size: 28px 28px;
    cursor: pointer;
}
header > .header__username {
    max-width: -moz-fit-content;
    max-width: fit-content;
    font-size: 20px;
    padding: 0 10px 0 0;
}
header > div.menu {
    font-size: 12px;
    max-width: 40px;
    cursor: pointer;
}
header > .upload > #header__upload__btn {
    color: #000000;
    text-decoration: none;
}
header > .upload > #header__upload__btn:hover {
    color: #ff0079;
}

header > .header__account:hover, header > div.menu:hover {
    background-color: #ff0079;
}

nav.navbar {
    padding: 0 10px;
    background: #FF0079;
    color: #000000;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 43px;
    height: 40px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-flow: nowrap;
}
nav.navbar .navbar__link {
    flex: 1;
    color: #000000;
    text-decoration: none;
    padding: 0 5px;
    max-width: -moz-fit-content;
    max-width: fit-content;
}
nav.navbar .navbar__link:hover {
    color: #00ff4d;
}


#menuToggle {
    display: block;
    position: relative;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    padding-top: 9px;
    padding-left: 3px;
}

#menuToggle a {
    text-decoration: none;
    color: #232323;

    transition: color 0.3s ease;
}

#menuToggle a:hover {
    color: #FF0079;
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */
    -webkit-touch-callout: none;
    margin: 0;
    padding: 0;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #000000;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #000000;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}



/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
    position: absolute;
    left: -260px;
    top: 0;
    width: 300px;
    height: 100vh;
    box-sizing: border-box;
    margin: 0;
    padding: 40px 20px 20px 20px;
    background: #00ff4d;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translate(115%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li {
    padding: 10px 0;
    font-size: 22px;
    text-transform: uppercase;
    text-align: right;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul {
    transform: none;
}

#dropzone-layer {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    display: none;
    z-index: 7999;
}
#dropzone {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 7990;
    overflow: hidden;
    display: none;
}
.sunburst {
    position: absolute;
    left: calc(50% - 1310px);
    top: calc(50% - 585px);
    width: 2704px;
    height: 1340px;
    margin:-11px -11px -11px -11px;
    overflow: hidden;
    background: #00ff4ddd;
}
.sunburst .outer {
    width: 4000px;
    height: 1820px;
    padding-top: 2180px;
    margin: -1400px 0 0 -680px;
    /*-webkit-animation-name: rotate1;
    -webkit-animation-duration:1s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:linear;
    -moz-animation-name: rotate1;
    -moz-animation-duration:1s;
    -moz-animation-iteration-count:infinite;
    -moz-animation-timing-function:linear;*/
    transition: all .5s ease;
    -webkit-animation:
            rotate1 1s ease-out 0s 1,
            rotate1 15s linear 1s infinite;

    /*-moz-animation: rotate1 1s linear 0s 1, rotate2 20s linear 5s infinite;
    animation: rotate1 1s linear 0s 1, rotate2 20s linear 5s infinite;*/
}
.sunburst b {
    display: block;
    width: 0;
    height: 0;
    border-width: 180px 2000px;
    margin: -360px 0 0 0;
    border-color: transparent #ff0079;
    border-style: solid;
}
.sunburst b:nth-child(1) { -webkit-transform:rotate(20deg);  -moz-transform:rotate(20deg);  }
.sunburst b:nth-child(2) { -webkit-transform:rotate(40deg);  -moz-transform:rotate(40deg);  }
.sunburst b:nth-child(3) { -webkit-transform:rotate(60deg);  -moz-transform:rotate(60deg);  }
.sunburst b:nth-child(4) { -webkit-transform:rotate(80deg);  -moz-transform:rotate(80deg);  }
.sunburst b:nth-child(5) { -webkit-transform:rotate(100deg); -moz-transform:rotate(100deg); }
.sunburst b:nth-child(6) { -webkit-transform:rotate(120deg); -moz-transform:rotate(120deg); }
.sunburst b:nth-child(7) { -webkit-transform:rotate(140deg); -moz-transform:rotate(140deg); }
.sunburst b:nth-child(8) { -webkit-transform:rotate(160deg); -moz-transform:rotate(160deg); }
.sunburst b:nth-child(9) { -webkit-transform:rotate(180deg); -moz-transform:rotate(180deg); }

@-webkit-keyframes rotate1 {
    from { -webkit-transform: rotate(0deg); }
    to   { -webkit-transform: rotate(20deg); }
}
@-moz-keyframes rotate1 {
    from { -moz-transform: rotate(0deg); }
    to   { -moz-transform: rotate(20deg); }
}

@-webkit-keyframes rotate2 {
    from { -webkit-transform: rotate(0deg); }
    to   { -webkit-transform: rotate(20deg); }
}
@-moz-keyframes rotate2 {
    from { -moz-transform: rotate(0deg); }
    to   { -moz-transform: rotate(20deg); }
}


@-webkit-keyframes open_acc {
    from { -webkit-transform: scale(0.2); }
    to   { -webkit-transform: scale(1); }
}
@-moz-keyframes open_acc {
    from { -moz-transform: scale(0.2); }
    to   { -moz-transform: scale(1); }
}

.cancel-button {
    width: 30px;
    height: 30px;
    max-width: 30px;
    min-width: 30px;
    background: #000000;
    color: #ff0079;
    text-align: center;
    line-height: 32px;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
}
.cancel-button:hover {
    background: #00ff4d;
    color: #000000;
}

#acc {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 7990;
}

#acc .acc__form {
    display: none;
    position: absolute;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    box-sizing: border-box;
    left: 3px;
    top: 3px;
    padding: 0;
    transition: all .3s  cubic-bezier(.75,-0.5,0,1.75);
    background: #ff0079;
}

#acc .acc__form__title {
    display: flex;
    width: 100%;
    border-bottom: 1px black solid;
}

#acc .acc__form__title__text {
    height: 30px;
    line-height: 30px;
    background: #00ff4d;
    padding: 0 5px;
    width: 100%;
}
#acc .acc__form__title__cancel {
    flex: 1;
}

#acc .acc__form__fields input {
    width: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.1);
    border: 0;
    outline: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    color: #000000;
    padding: 3px 10px;
    line-height: 50px;
    box-sizing: border-box;
    border-bottom: 1px #000000 solid;
}
#acc .acc__form__fields input:focus {
    background: #00ff4d;
}
#acc .acc__form__fields input[type="submit"]:hover {
    background: #00ff4d;
}

#acc .acc__form__links {
    margin-top: 10px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 24px;
}
#acc .acc__form__links a {
    color: #000000;
}
#acc .acc__form__links a:hover {
    color: #00ff4d;
}

/* Tablet and Desktop */
@media screen and (min-width: 1024px) {

    #acc .acc__form {
        position: absolute;
        width: 40%;
        box-sizing: border-box;
        left: 30%;
        border: 10px #ff0079 solid;
        padding: 20px;
        transition: all .5s cubic-bezier(.75, -0.5, 0, 1.75);
        background: #ff0079;
        animation: open_acc .5s cubic-bezier(.75, -0.5, 0, 1.75) 1;
    }
    #acc .acc__form#acc__form-signin {
        height: 320px;
        top: calc(50% - 160px);
    }
    #acc .acc__form#acc__form-signup {
        height: 410px;
        top: calc(50% - 205px);
    }

}



section.gallery {
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    padding: 20px;
}
section.gallery a:hover {
    color: #ff0079;
}

section.gallery h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    margin-bottom: 20px;
}

section.gallery .gallery__post {
    display: flex;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 40px;
}
section.gallery .gallery__post .gallery__post__content {
    flex: 1;
    max-width: 50%;
}
section.gallery .gallery__post .gallery__post__content img {
    width: 100%;
    height: auto;
}
section.gallery .gallery__post .gallery__post__title {
    padding: 0 20px;
    box-sizing: border-box;
    flex: 1;
    max-width: 50%;
}
section.gallery .gallery__post .gallery__post__title__title {
    font-size: 18px;
    color: #000000;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
}
section.gallery .gallery__post:hover .gallery__post__title__title {
    color: #ff0079;
}

section.gallery .gallery__post .gallery__post__title__author {
    font-size: 12px;
    color: #000000;
    font-family: 'Arial', sans-serif;
    font-style: italic;
}

/* Tablet and Desktop */
@media screen and (min-width: 1024px) {
    section.gallery h1 {
        font-size: 60px;
    }
    section.gallery .gallery__post .gallery__post__title__title {
        font-size: 30px;
    }
}

















article.post {
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    padding: 20px;
}

article.post a:hover {
    color: #ff0079;
}

article.post h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    margin-bottom: 20px;
}

article.post .post__content {
    width: 100%;
}
article.post .post__content img {
    width: 100%;
    height: auto;
}

article.post .post__hashtag {
    background-image: url('/images/chichi/hashtag.png');
    background-position: 5px center;
    background-size: 25px 25px;
    background-repeat: no-repeat;
    padding-left: 35px;
    text-transform: lowercase;
    height: 30px;
    line-height: 30px;
    display: inline-block;
}

section.gallery .gallery__post__title__hashtag {
    background-image: url('/images/chichi/hashtag.png');
    background-position: left center;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    padding-left: 25px;
    text-transform: lowercase;
    height: 25px;
    line-height: 25px;
    display: inline-block;
}

/* Tablet and Desktop */
@media screen and (min-width: 1024px) {
    article.post h1 {
        font-size: 60px;
    }
}









.error {
    background: #000000;
    color: #ff0079;
    padding: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}
.error .errortext {
    font-family: 'Raleway', sans-serif;
}
.error .errorcta {
    font-family: 'Raleway', sans-serif;
    border: 1px white solid;
    margin-top: 16px;
    cursor: pointer;
    text-align: center;
    font-size: 32px;
    line-height: 60px;
    color: #ff0079;
}
.error .errorcta:hover {
    border: 1px #000000 solid;
    color: #000000;
    background: #00ff4d;
}



.lds-roller {
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: 80px auto;
}
.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}
.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00ff4d;
    margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}
.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}
.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}
.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}
.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}
.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}
.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}
.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}
@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}








