html {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background-color: #fff;
    color: #636b6f;
    font-family: "Titillium Web", sans-serif;
    font-weight: 100;
    margin: 0;
    padding: 0 !important;
}

.hero {
    height: 160px;
    margin: 10px;
    background-color: #382f60;
    border-radius: 0.25rem;
}

.search-wrapper {
    align-self: center;
    width: 600px;
}

.search {
    margin-bottom: 0px !important;
}

.hero h1 {
    color: white;
}

.image-public-container {
    position: relative;
    overflow: hidden;
}

.image-sizes {
    width: 100%;
    height: auto;
    display: block;
    padding-bottom: 10px;
    opacity: 0;
}

.skeleton-loader{
    display: block;
    position: relative;
    background-color: #e7e7e7;
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

.images-gallery {
    columns: 4 300px;
    gap: 10px;
    margin-right: 10px;
    margin-left: 10px;
}

.loaded .image-sizes {
    opacity: 1;
}

.loaded .skeleton-loader {
    animation: pulse-end 1s;
    background-color: #fff;
}

@keyframes pulse-end {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fg-0 {
    flex-grow: 0 !important;
}

.position-ref {
    position: relative;
}

.content {
    text-align: center;
}

.links > a {
    color: white;
    padding: 0 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.detail-container {
    width: 100%;
    height: 100vh;
}

.image-detail-container {
    height: 100vh;
    align-items: baseline;
}

.image-detail {
    margin-top: 50px;
    max-width: 80%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.options-wrapper {
    position: absolute;
    z-index: 0;
    top: 60px;
    border: solid 1px #e7e6e6;
    border-radius: 20px 10px 10px 20px;
    background-color: #fff;
}

.nickname {
    margin-left: 10px;
    margin-right: 10px;
    width: 50px;
}

.like-image {
    width: 20px;
    height: 20px;
}

.download-panel {
    border-top: solid 1px #e7e6e6;
    width: 100%;
}

.container-avatar {
    width: 36px;
    height: 36px;
    border-radius: 900px;
    overflow: hidden;
}

.container-avatar img {
    height: 100%;
}

@media screen and (min-width: 600px) and (max-width: 1200px) {
    .search-wrapper {
        align-self: center;
        width: 500px;
    }
}

@media screen and (min-width: 200px) and (max-width: 600px) {
    .title {
        font-size: 30px;
        padding-top: 100px;
    }

    .subtitle {
        font-size: 10px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .m-b-md {
        margin-bottom: 30px;
    }

    .design1 {
        width: 280px;
        height: 280px;
        margin-left: 0;
    }

    .reference {
        top: 42rem;
        right: 20%;
        width: 140px;
        height: auto;
        position: absolute;
    }

    .search-wrapper {
        align-self: center;
        width: 90%;
    }
}
