/**
 * simonovtony
 */

.admin-table {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

.admin-table * {
    font-family: Roboto-Regular, sans-serif;
    font-size: 16px;
    background-color: transparent;
    color: black;
    cursor: pointer;
}

.admin-table .row {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

.admin-table .row-footer {
    text-align: center;
    margin: 0 auto;
}

.admin-table .row .column {
    display: inline-block;
    padding: 10px 0px 10px 5px;
    margin: 0px -3px 0px 0px;
    width: 200px;
    background-color: white;
    word-wrap: break-word;
    overflow: none;
}

.admin-table .row:hover .column {
    background-color: #fbdeb9;
    text-decoration: underline;
}

.button-link {
    text-decoration: none;
}

.admin-table .row.header .column {
    text-align: center;
    background-color: #526489;
    text-transform: uppercase;
    color: white;
}

.block {
    display: block;
}

.block-inline {
    display: inline-block;
}

.block-label {
    display: inline-block;
    padding: 10px 0px;
    font-family: Roboto-Regular;
    font-size: 16px;
    color: #526489;
}

/* ADMIN */

.admin {
    display: block;
    width: 100%;
    height: auto;
}

.admin * {
    box-sizing: border-box;
    font-size: 14px;
    color: black;
    background-color: transparent;
}

.admin > .table {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.admin > .table > tbody > .row > .column,
.admin > .table > tbody > .row > .column.next {
    background-color: #FFFFFF;
    font-size: 16px;
}

.admin > .table > tbody > .row > .column.now {
    background-color: #00FF00;
}

.admin > .table > tbody > .row > .column.prev {
    background-color: #FF0000;
}

.admin > .table .row::before {
    display: none;
}

.admin > .table > thead > .row > .column {
    background-color: #526489;
    text-transform: uppercase;
    color: white;
    font-size: 18px;
    font-weight: 200;
}

.admin > .table > tbody > .row:hover > .column {
    background-color: #fbdeb9;
    text-decoration: underline;
}

.admin .button {
    position: relative;
    background-color: #526489;
    color: #FFF;
    display: inline-block;
    height: 40rem;
    font-size: 16rem;
    line-height: 40rem;
    font-family: Roboto-Medium,sans-serif;
    border: none;
    border-radius: 2rem;
    padding: 0 16rem;
    box-shadow: inset 0 -2rem 0 rgba(33,33,33,.2);
    transition: all .3s;
}

.powered {
    display: block;
    width: 100%;
    height: auto;
    position: fixed;
    left: 0;
    bottom: 0;
}