body {
    background-color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: .85rem;
}

a {
    text-decoration: none;
    font-size: .85rem;
}

input, button, select {
    color: #000;
    font-size: .85rem;
}

#gallery {
    position: relative;
}

.gallery__item {
    width: 100%;
    position: relative;
}

.gallery__item > img {
    width: 100%;
}

.gallery__item:hover {
    cursor: zoom-in;
}

@media (min-width: 600px) {
    .gallery__item:hover::after {
        content: '⚲';
        position: absolute;
        bottom: 25%;
        left: 38%;
        font-weight: bold;
        font-size: 7rem;
        color: #fff;
        -webkit-transform: rotate(45deg); 
        -moz-transform: rotate(45deg); 
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        display: block;
    }
}

#tagList {
    width: max-content;
    margin: 0 auto 20px;
    overflow-y: scroll;
    max-width: 100%;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

#tagList::-webkit-scrollbar { /* WebKit */
    width: 0;
    height: 0;
}

#tagList > .gallery__taglist_tag {
    display: inline-block;
    padding: 10px;
    border: 2px solid #efefef;
    border-radius: 25px;
    text-transform: lowercase;
    margin-right: 10px;
    cursor: pointer;
    background: #fff;
}

#tagList > .gallery__taglist_tag:hover {
    border-color: rgba(236, 1, 134, 0.25);
    -webkit-transition: all 0.5s ease-out allow-discrete;
    -moz-transition: all 0.5s ease-out allow-discrete;
    transition: all 0.5s ease-out allow-discrete;
}

#tagList > .gallery__taglist_tag.active {
    border-color: rgba(236, 1, 134, 0.25);
    background-color: rgba(236, 1, 134, 0.15);
    -webkit-transition: all 0.5s ease-out allow-discrete;
    -moz-transition: all 0.5s ease-out allow-discrete;
    transition: all 0.5s ease-out allow-discrete;
}

#tagList > .gallery__taglist_tag.favorite {
    width: 40px;
}

#tagList > .gallery__taglist_tag:last-child {
    margin-right: 0;
}

#moreButton {
    position: relative;
    bottom: 50px;
    padding: 10px;
    border: 2px solid #efefef;
    border-radius: 25px;
    cursor: pointer;
    border-color: rgba(236, 1, 134, 1);
    background-color: rgba(236, 1, 134, 0.85);
    color: #fff;
    font-weight: bold;
}

#downloadButton {
    display: inline-block;
    padding: 10px;
    margin-right: 10px;
    border: 2px solid #efefef;
    border-radius: 25px;
    cursor: pointer;
    border-color: rgba(236, 1, 134, 1);
    background-color: rgba(236, 1, 134, 0.85);
    color: #fff;
    font-weight: bold;
}

#moreButton:hover, #downloadButton:hover {
    border-color: rgba(236, 1, 134, 0.75);
    background-color: rgba(236, 1, 134, 1);
    -webkit-transition: all 0.5s ease-out allow-discrete;
    -moz-transition: all 0.5s ease-out allow-discrete;
    transition: all 0.5s ease-out allow-discrete;
}

#loader {
    position: absolute;
    z-index: 1000;
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: rgba(255, 255, 255, 0.45);
    -webkit-transition: all 0.5s ease-out allow-discrete;
    -moz-transition: all 0.5s ease-out allow-discrete;
    transition: all 0.5s ease-out allow-discrete;
}

#loader > svg {
    position: absolute;
    margin-left: -70px;
    bottom: 50px;
}

.zoomModal {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    min-width: 150px;
    min-height: 150px;
    z-index: 1001;
    background: rgba(0,0,0,0.75);
}

.zoomModal > img {
    max-width: 100%;
    max-height: calc(100% - 20px);
    border: 10px solid #fff;
    box-shadow: 0px 0 20px 0px black;
}

fieldset {
    border: none;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}

.form-row {
    margin-bottom: 65px;
}

legend {
    margin: 30px 0;
    font-weight: bold;
}

label, input {
    display: block;
}

input, select {
    margin: 0 0 10px;
    border: none;
    border-bottom: 1px solid #000;
    width: 100%;
    line-height: 3rem;
    font-size: 3rem;
    text-align: center;
}

label {
    font-weight: bold;
}

select:focus, input:focus {
    outline: none;
    border-bottom-color: rgba(236, 1, 134, 1);
}

#authButton {
    padding: 10px;
    border: 2px solid #efefef;
    border-radius: 25px;
    cursor: pointer;
    border-color: rgba(236, 1, 134, 1);
    background-color: rgba(236, 1, 134, 0.85);
    color: #fff;
    font-weight: bold;
    margin-top: -30px;
}

#authButton:hover {
    border-color: rgba(236, 1, 134, 0.75);
    background-color: rgba(236, 1, 134, 1);
    -webkit-transition: all 0.5s ease-out allow-discrete;
    -moz-transition: all 0.5s ease-out allow-discrete;
    transition: all 0.5s ease-out allow-discrete;
}

.likeButton {
    width: 45px;
    height: 45px;
    position: absolute;
    border: 0;
    background-color: #fff;
    border-radius: 15px;
    font-size: 35px;
}

.likeButton.active, .likeButton:hover {
    color: rgba(236, 1, 134, 1);
    -webkit-transition: all 0.5s ease-out allow-discrete;
    -moz-transition: all 0.5s ease-out allow-discrete;
    transition: all 0.5s ease-out allow-discrete;
    cursor: pointer;
}