/* DeafHub | File: styles.css */

@import url('https://kit-pro.fontawesome.com/releases/latest/css/pro.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

::-ms-reveal {
    display: none;
}

::-webkit-scrollbar {
    width: 13px;
}
::-webkit-scrollbar-thumb {
    height: 60px;
    border: 4px solid transparent;
    border-radius: 6px;
    background-clip: content-box;
    background-color: #D60812;
}

.load {
    opacity: 0;
}
.loaded {
    opacity: 1;
    -webkit-transition: opacity 0.1s ease;
    transition: opacity 0.1s ease;
}
.title-mylist {
    display: inline-block;
    position: relative;
}
.title-mylist::after {
    content: "";
    display: block;
    width: 100%;
    margin-top: 1px;
    height: 2px;
    background-color: #EA2822;
}
.title-mylist > span {
    margin: 0 15px;
}

.movie-info .tagline {
    color: #FF0000;
    text-shadow: 0 0 5px rgb(0 0 0 / 50%);
}
.movie-info .metadata {
    display: inline-flex;
}
.metadata .metadata-list__item {
    display: inline-block;
    vertical-align: middle;
}
.metadata .metadata-list__item + .metadata-list__item:before {
    content: "";
    display: inline-block;
    margin: 0 5px;
}

.movie-info .watch {
    /*transition: background-color 0.1s ease-out;*/
}
.movie-info .watch:hover {
    background-color: #D60812;
}

.tabs {
    display: grid;
    min-height: calc(88vh);
}
.tabs .tab {
    text-align: center;
}
.tabs input {
    display: none;
}
.tabs label {
    display: inline-block;
    font-size: 18px;
    width: 120px;
    margin: 20px;
    padding-bottom: 5px;
    position: relative;
    text-align: center;
    color: #fff;
    cursor: pointer;
}
.tabs label:after {
    content: '';
    display: block;
    width: inherit;
    height: 4px;
    position: absolute;
    bottom: 0;
    background-color: #EA2822;
    border-radius: 2px;
}
#tab1:checked ~ .tab-content #one,
#tab2:checked ~ .tab-content #two {
    display: block;
}
.tabs .content {
    display: none;
}
.tab {
    display: flex;
    height: 65px;
    align-items: center;
    margin-bottom: 8px;
    padding-left: 15px;
    background-color: #282828;
    border-radius: 3px;
    border-left: 5px solid transparent;
    transition: border-left 0.1s linear;
}
.tabs li {
    cursor: pointer;
}
.tabs li:hover a {
    color: #EA2822;
}
.tabs .active {
    border-left: 5px solid #EA2822;
}