@import "blocks/_global.css";
@import "blocks/_fonts.css";

@import "blocks/scope.css";
@import "blocks/header.css";
@import "blocks/logo.css";
@import "blocks/title.css";
@import "blocks/page.css";
@import "blocks/input.css";
@import "blocks/button.css";
@import "blocks/flag.css";
@import "blocks/languages.css";
@import "blocks/rooms.css";
@import "blocks/social.css";
@import "blocks/auth.css";
@import "blocks/card.css";
@import "blocks/rooms-menu.css";
@import "blocks/hall.css";
@import "blocks/player.css";


@import "blocks/footer.css";


.page__exhibits {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.exhibits {
    overflow: hidden;
}

.exhibits__item {
    display: inline-block;
    width: 100%;
}

@media (min-width: 64rem) {
    .exhibits__item {
        display: inline-block;
        width: 49.5%;
        float: left;
    }
}

.exhibit {
    padding: 2rem;
}
.exhibit__header {
    height: 0;
    padding-bottom: 60%;
    position: relative;
}

.exhibit__preview {
    position: absolute;
    max-width: 70%;
    max-height: 70%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.exhibit__title {
    text-align: center;
    min-height: 5.5rem;
    font-family: 'Gotham Pro', Arial, sans-serif;
    font-size: .9rem;
    line-height: 1.3;
}

.exhibit__player {
    margin-top: 1rem;
}

.exhibit__player .player {
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
}


.search {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #333;
    top: 0;
    left: 0;
    z-index: 1000;
}

.search_active {
    display: block;
}

.search__inner {
    height: 100%;
    width: 100%;
    position: relative;
}

.search__close {
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 3rem;
    right: 0;
    background-color: transparent;
    border: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23fff' d='M310.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 210.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L114.7 256 9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 301.3 265.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L205.3 256 310.6 150.6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    padding: 0;
}

.search__form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.search__input {
    background-color: transparent;
    font-size: 2rem;
    border: none;
    border-bottom: 2px solid white;
    width: 90%;
    width: calc(99% - 3rem);
    height: 3rem;
    color: white;
    padding: 0 0.5rem;
    box-sizing: border-box;
    float: left;
}

.search__submit {
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352c79.5 0 144-64.5 144-144s-64.5-144-144-144S64 128.5 64 208s64.5 144 144 144z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
    border: none;
    box-sizing: content-box;
    padding: 0;
    float: left;
}