#crop-img {
    max-height: 40vh;
    max-width: 100%;
    display: none;
}

#crop-loading {
    height: 40vh;
    width: 100%;
    margin-bottom: 8px;
    border: 1px dotted white;
}

.cropper-container {
    margin-bottom: 8px;
}

/* #crop-view {
    display: none;
} */

.view {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-height: 100%;
    max-width: 100%;
}

.res-container {
    height: 80%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: space-around;
    overflow-y: scroll;
    flex-wrap: wrap;
    width: 100%;
}

.button-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

@media only screen and (max-width: 600px) {
    .crop-modal-background {
        width: 100vw;
        left: 0vw;
    }
}

.searchbarType {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    height: 45px;
    border-right: none;
}

.searchbarGo {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid #babfc7;
    border-left: none;
}

.image-hover-wrapper {
    position: relative;
    cursor: pointer;
}

.photo-attribution {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.image-hover-wrapper:hover .photo-attribution {
    display: block;
}

.image-hover-wrapper:hover .photo-attribution .photo-attribution-link {
    opacity: 1;
}

.photo-attribution .photo-attribution-link {
    background: rgba(0,0,0,.5);
    color: white;
    font-size: 12px;
    line-height: 16px;
    text-align: left;
    cursor: pointer;
    opacity: 0;
    overflow: hidden;
    padding: 2px 4px;
    position: absolute;
    z-index: 1;
    text-decoration: underline;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    height: 20px;
    left: 0;
    bottom: 0;
}

@media only screen and (max-width: 667px) {
    .dropify-preview img {
        display: none;
    }
    .dropify-message p {
        display: none;
        visibility: hidden;
    }
    .dropify-message {
        padding: 0.7em !important;
    }
    .file-icon::before {
        font-size: .7em;
    }
    #crop-modal-upload-title {
        font-size: 1em;
    }
    #unsplash-collection-title {
        font-size: .7em;
    }
    #character-btn-group {
        width: 100%;
        top: 3em;
        z-index: 99;
    }
}
@media only screen and (min-width: 668px) {
    #character-btn-group {
        width: 49%;
        top: 3em;
        z-index: 99;
    }
}