/* Content
0. Default elements
1. Header
2. Main
3. Footer
*/


/* 0. Default elements */

::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 2px 0 #ff6666;
    box-shadow: inset 2px 0 #ff6666;
}

::-webkit-scrollbar-thumb {
    background: #ff6666;
    border-radius: 10px;
}

body {
    color: #fbf0de;
    background-color: #000000;
    margin: 0;
    overflow-x: hidden;
    text-align: center;
}

body * {
    word-wrap: break-word;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -ms-transition: all 0.2s;
        -o-transition: all 0.2s;
}

div {
    background-color: #000000;
    color: #fbf0de;
}

a {
    color: #ff6666;
    font-weight: bold;
}

a:hover {
    color: #FBE81C;
}

button {
    background-color: #ff6666;
    color: #000000;
    font-weight: bold;
}

button:hover {
    background-color: #FBE81C;
    cursor: pointer;
}

select,
option {
    max-width: 90%;
}

iframe {
    max-width: 90%;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1920px;
        min-width: 320px;
    height: 100%;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    margin: auto;
        display: flex;
        flex-direction: column;
        padding: 10px;
}

.container.plugin {
    padding: 0;
    margin-left: -10px;
}

/* 1. Header */

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    text-align: left;
}

.container.plugin header {
    justify-content: flex-end;
    padding-right: 25px;
}

.container.plugin .logo {
    display: none;
}
.logo img {
    width: 150px;
}

.search {
    position: relative;
}

.search .icon {
    display: block;
    width: 30px;
    height: 30px;
    background-image: url("../img/iconmonstr-magnifier-pink.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

.search .icon.clicked {
    background-image: url("../img/iconmonstr-magnifier-yellow.png");
}

.search .input {
    display: none;
    position: absolute;
    width: 250px;
    max-height: 300px;
    overflow-y: scroll;
    top: 50px;
    right: 0;
    padding: 10px;
    z-index: 100;
    background-color: #000000;
    border: 2px solid #ff6666;
}

.search .input.shown {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.search .input select {
    margin-bottom: 20px;
}

.search .input input {
    width: 150px;
    margin-right: 10px;
}

.search .results {
    margin-top: 20px;
    width: 90%;
}


/* 2. Main */

main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.container.plugin .page-title {
    margin: 0 10px;
}
.player {
    width: 80%;
}

.youtube-videos {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 0 25px;
}

.player.plugin {
    width: 90%;
}
.youtube-videos.plugin {
    width: 90%;
        margin-left: 35px;
            margin-right: 25px
}

.youtube-videos .filters {
    margin-top: 10px;
}

.hidden {
    display: none;
}

.youtube-videos .filters button {
    margin-top: 10px;
}

.youtube-videos .filters button.active,
.youtube-videos .favourite.added {
    background-color: #FBE81C;
    color: #000000;
}

.youtube-videos .youtube-item a.active {
    color: #FBE81C;
}

#youtube-player {
    position: relative;
    width: 95%;
    height: 300px;
    border: 2px solid #fbf0de;
}

.back-to-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 10;
}

.buy-premium {
    display: block;
    margin: 0 auto;
}


/* Cookies Consent Styling */

.cc-cp-body-tabs-item-link {
    background-color: black;
}

.cc-cp-body-tabs-item[active=true] a {
    border: solid 2px #FBE81C;
    background-color: black;
}


/* 3. Footer */

footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
}