* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
}

#root {
    min-height: 720px;
    min-width: 1280px;
    height: 100vh;
    margin: 0;
    display: flex;
    flex-flow: column;
    align-items: stretch;
}

header {
    margin-bottom: 20px;
}

#root > div#app {
    padding: 20px 42px 0 42px;
    display: flex;
    flex-flow: column;
    flex-grow: 1;
    align-content: stretch;
}

#loading {
    background-color: #eeeeee;
    flex-flow: column;
    overflow: hidden;
    position: fixed;
    display: flex;
    height: 100vh;
    width: 100vw;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;

    -webkit-transition: all 200ms;
       -moz-transition: all 200ms;
        -ms-transition: all 200ms;
         -o-transition: all 200ms;
            transition: all 200ms;
}

#loading > div {
    text-align: center;
    margin: auto;
}

#loading-status {
    -webkit-transition: all 100ms;
       -moz-transition: all 100ms;
        -ms-transition: all 100ms;
         -o-transition: all 100ms;
            transition: all 100ms;
}

.fade-in,
.fade-out {
    -webkit-transition: all 100ms;
       -moz-transition: all 100ms;
        -ms-transition: all 100ms;
         -o-transition: all 100ms;
            transition: all 100ms;
}

.fade-in {
    opacity: 1;
}

.fade-out {
    opacity: 0;
}

#loading.hidden {
    display: none;
}

header > img {
    height: 20px;
    justify-content:center;
    display: center;
    transform: translateY(10px)

}

.app-subtitle,
.app-developer,
.icon-cb {
    text-transform: uppercase;
    display: inline-block;
    line-height: 1.2em;
    font-size: 20px;
    color: #a71b1f;
    margin: 0;
    padding: 5px;
}

.app-title, .app > img {
    color:  #a71b1f;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    float:left;
    position: absolute;
    justify-self: center;
    margin-top: 45px;
    display: inline-flexbox;
}

.app-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    float: right;
    }

.app-developer {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    float: right;

}

.icon-cb {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    float: right;
    background: #E5E5E5;
    border-radius: 5px;
}

.icon-cb:hover {
    background: rgba(191, 108, 31, 0.1);
}

.app-line {
    height: 4px;
    width: 100%;

}

.app-line div {
    background-color: #a71b1f;
    height: 4px;
    width: 100%;
    }

#search-container {
    padding: 34px 0;
}

#search-container label,
#search-container input {
    display: block;
}

#search-container label {
    font-family: 'Roboto', sans-serif;
    line-height: 1.2em;
    font-weight: 400;
    font-size: 16px;
    color: #a71b1f;
    margin-top: 30px;
    padding-bottom: 5px; 
}

#search-container input {
    font-family: 'Roboto', sans-serif;
    border: 1px solid #A5A5A5;
    border-radius: 4px;
    padding: 3px 10px;
    line-height: 31px;
    font-weight: 400;
    background: #fff;
    font-size: 16px;
    outline: none;
    width: 400px;

    -webkit-transition: all 200ms;
       -moz-transition: all 200ms;
        -ms-transition: all 200ms;
         -o-transition: all 200ms;
            transition: all 200ms;
}

#search-container input:focus {
    border: 1px solid #a71b1f;
}

.app-hero-list {
    width: 100%;
}

.app-hero-list-header,
.app-hero-list-row {
    justify-content: space-between;
    display: flex;
}

.app-hero-list-header > div {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    background-color: #a71b1f;
    line-height: 37px;
    font-weight: 400;
    padding: 0 12px;
    width: 25%;
    color: #fff;
    border-radius: 5px;
}

.app-hero-list-header > div:last-child,
.app-hero-list-row > div:last-child {
    width: calc(50% - 20px);
}

.app-hero-list-row {
    border-bottom: 2px solid rgba(112, 20, 20, 0.5);
    font-family: 'Roboto', sans-serif;
    padding: 20px 0;
    height: 112px;
    cursor: pointer;
}

.app-hero-list-row:hover,
.app-hero-list-row:focus {
    background-color: rgba(191, 108, 31, 0.1);
}

.app-hero-list-row > div {
    line-height: 1.1em;
    font-size: 20px;
    padding: 0 12px;
    width: 25%;
}

.app-hero-list-row > div:first-child {
    padding-top: 6px;
}

.app-hero-list-row > div:first-child > div {
    width: calc(100% - 58px - 25px);
    vertical-align: middle;
    display: table-cell;
    text-align: left;
    height: 100%;
}

.app-hero-list-row > div:first-child > div > img {
    background-color: #a59a9a;
    box-shadow:rgb(0 0 0 / 15%) 1.95px 1.95px 2.6px;
    margin-right: 25px;
    border-radius: 30%;
    width: 58px;
    height: 58px;
}

.app-pagination-container {
    font-family: 'Roboto', sans-serif;
    transition-delay: 100ms;
    align-items: center;
    text-align: center;
    min-height: 64px;
    display: flex;
    flex-grow: 1;
    border-radius: 10px;


    -webkit-transition: all 200ms;
       -moz-transition: all 200ms;
        -ms-transition: all 200ms;
         -o-transition: all 200ms;
            transition: all 200ms;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.app-pagination-container.row-1 {
    height: calc(100% - 174px - 149px);
}

.app-pagination-container.row-2 {
    height: calc(100% - 174px - 261px);
}

.app-pagination-container.row-3 {
    height: calc(100% - 174px - 373px);
}

.app-pagination-container.row-4 {
    height: calc(100% - 174px - 485px);
}

.app-pagination {
    margin: auto;
}

.app-pagination > span,
.app-pagination > ul > li {
    -webkit-transition: color 200ms, background-color 200ms;
       -moz-transition: color 200ms, background-color 200ms;
        -ms-transition: color 200ms, background-color 200ms;
         -o-transition: color 200ms, background-color 200ms;
            transition: color 200ms, background-color 200ms;
}

.app-pagination > span {
    color: #a71b1f;
    cursor: pointer;
    margin: 0 12px;
}

.app-pagination > span.disabled {
    color: rgba(112, 20, 20, 0.5);
}

.app-pagination > ul {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.app-pagination > ul > li {
    border: 1px solid #a71b1f;
    display: inline-block;
    border-radius: 20%;
    line-height: 28px;
    cursor: pointer;
    color: #a71b1f;
    height: 28px;
    width: 28px;
}

.app-pagination > ul > li + li {
    margin-left: 20px;
}

.app-pagination > ul > li.active {
    background-color: #a71b1f;
    color: #fff;
}

#footer {
    font-family: 'Roboto', sans-serif;
    border-bottom: 1px solid #a71b1f;
    border-radius: 5px;
    background-color: #a71b1f;
    text-align: center;
    line-height: 12px;
    font-weight: 900;
    font-size: 12px;
    color: #FFF;
    display: flex;
    width: 100%;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

#copyright {
    margin: auto;
    padding: 2.5px;
;
}