@media all
and (min-width: 20rem)
and (max-width: 62.5rem) {
    h1 {
        margin: 0 0 20px;
        text-align: center;
    }

    h2, h3 {
        margin: 0;
        text-align: center;
    }

    #header {
        position: fixed;
        width: 100%;
        background-color: #fff;
        z-index: 10000;
        box-shadow: 0 0 5px #000;
    }

    #header .header-logo {
        position: absolute;
        width: 80%;
        overflow: hidden;
        -webkit-transition: opacity 0.5s ease-out;
        -moz-transition: opacity 0.5s ease-out;
        -o-transition: opacity 0.5s ease-out;
        transition: opacity 0.5s ease-out;
        text-align: center;
    }

    #header .header-logo .logo {
        width: 200px;
    }

    #header-logo__link {
        display: block;
        height: 2rem;
        padding: 0.5rem;
    }

    .logo {
        display: block;
    }

    #header .top-menu {
        position: relative;
    }

    #menu-toggle {
        position: absolute;
        right: 0.1rem;
        top: 0;
        height: 45px;
        background: #006a72;
        z-index: 5;
        border-radius: 4px;
        border: 1px solid #8a8a8a;
    }

    #menu-toggle__label {
        display: inline-block;
        width: 3.2rem;
        height: 100%;
        cursor: pointer;
    }

    #menu-toggle__label:before,
    #menu-toggle__label:after,
    #menu-toggle__label-dash {
        content: '';
        position: absolute;
        display: block;
        width: 50%;
        height: 0.25rem;
        left: 25%;
        top: 35%;
        border-radius: 10px;
        background-color: #fff;
    }

    #menu-toggle__label:before {
        top: 27%;
    }

    #menu-toggle__label-dash {
        top: 45%;
    }

    #menu-toggle__label:after {
        top: 65%;
    }

    #menu-toggle__input:checked ~ #menu-toggle {
        background: #FB6801;
        background: linear-gradient(to bottom, #FF832C 0%, #FB6801 100%);
    }

    #header #menu-left-public-menu {
        position: absolute;
        top: 100%;
        width: 100%;
        max-height: 0;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
        background-color: #fff;
        text-align: center;
    }

    .menu-item {
        border-top: 1px solid #434343;
    }

    .menu-link {
        display: block;
        padding: 0.5rem;
        font-weight: bold;
    }

    #menu-link__login {
        background-color: #006a72;
        color: #fff;
    }

    #menu-toggle__input:checked ~ #menu-left-public-menu {
        display: block;
        max-height: 300px;
    }

    #header .user-block {
        display: block;
        position: relative;
        text-align: center;
    }

    #userpic {
        display: block;
        width: 3rem; /* todo remove */
    }

    #userpic__link {
        display: inline-block;
    }

    #header #userpic__link:hover {
        background-color: #000;
        color: #fff;
    }

    #userpic__link.with-icon:before {
        content: '\ea36';
        margin: 0 0 0 1rem;
        font-size: 2.25rem;
    }

    #content {
        padding-top: 5rem;
    }

    .block-info-table {
        padding: 10px 20px;
        border-left: none;
        border-right: none;
        text-align: center;
    }

    .block-info-table .block-content .item-wrapper {
        padding: 0 15px 10px 15px;
    }

    .digital-counter {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }

    .page-description {
        padding: 1rem 1.5rem;
        text-align: justify;
        border-top: 1px dashed #b8b8b8;
        border-bottom: 1px dashed #b8b8b8;
        margin: 2rem 0 1rem;
    }

    .table {
        width: 100%;
    }

    .table-header th {
        display: none;
    }

    .table tr, .table td {
        display: block;
    }

    .table tr {
        padding: 0.2rem;
    }

    #select2-drop {
        left: 0!important;
    }

    .flash-message {
        min-width: 0;
        width: 100%;
        max-width: none;
        z-index: 20000;
    }

    .flash-message .text {
        display: inline-block;
        max-width: 80%;
        font-size: 13px;
    }

    .popup-window .content {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }

}