.images {
    padding-left: 100px;
    padding-right: 50px;
    overflow: auto;
    height: 100vh;
}

.image_selector__back {
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100vw;
    height: 100vh;
    background-color: gray;
    overflow: auto;
}

.images_page__container {
    height: 100vh;
    overflow: auto;
}

.images {
    padding-left: 100px;
    padding-right: 50px;
}

.images_header {
    font-size: 100px;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.image_name_header {
    font-size: 50px;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.images_header__underline {
    background-color: black;
    height: 2px;
    width: 50%;
    margin-bottom: 50px;
    margin-top: 50px;
}

.images_container {
    display: flex;
    flex-wrap: wrap;
}

.images_container__image_block {
    width: 120px;
    height: 120px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.images_container__image {
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    background-color: rgb(230, 230, 230);
}

.images_container__image>img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.images_container__image:hover {
    width: calc(100% - 5px);
    height: calc(100% - 5px);
}

.image_page__image {
    max-width: 70%;
    max-height: 70vh;
}

.image_page__box {
    display: flex;
}

.image_page__tag-list {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-items: start;
    align-content: start;
}

.image_page__tag-list__tag {
    display: flex;

    margin: 10px;
    /* padding: 10px; */
    height: 50px;
    background-color: rgb(200, 200, 200);
    text-align: center;
    position: relative;
}

.image_page__tag-list__text {
    padding: 10px;
    /* width: 100%;
    height: 100%; */
}

.image_page__tag-list__button {
    margin: 10px;
    padding: 10px;
    background-color: rgb(100, 200, 100);
    text-align: center;
    height: 30px;
}

.image_page__tag-list__button:hover {
    background-color: rgb(80, 180, 80);
    cursor: pointer;
}

.image_page__tag-list__button:active {
    background-color: rgb(60, 160, 60);
    cursor: pointer;
}

.image_page__tag-list__dropdown {
    position: absolute;
    top: 40px;
    background-color: #f1f1f1;
    min-width: 160px;
    padding: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.images_page-controls {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.images_page-controls__page {
    width: 50px;
    margin: 10px;
    padding: 10px;
    text-align: center;
}

.images_page-controls__button {
    width: 50px;
    margin: 10px;
    padding: 10px;
    background-color: rgb(200, 200, 200);
    text-align: center;
}

.images_page-controls__button:hover {
    background-color: rgb(180, 180, 180);
    cursor: pointer;
}

.images_page-controls__button:active {
    background-color: rgb(160, 160, 160);
    cursor: pointer;
}

.images_search {
    display: flex;
    width: 90%;
}

.images_search__textbox {
    margin: 10px;
    width: 100%;
    height: 40px;
    background-color: white;
    border: 1px solid black;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.images_search__text {
    width: 100%;
    font-size: 20px;
    outline: 0px solid transparent;
}

.images_search__button {
    margin: 10px;
    padding: 10px;
    background-color: rgb(100, 200, 100);
    text-align: center;
}

.images_search__button:hover {
    background-color: rgb(80, 180, 80);
    cursor: pointer;
}

.images_search__button:active {
    background-color: rgb(60, 160, 60);
    cursor: pointer;
}