
:root {
    --body-color: rgba(230, 230, 255, .7);
    --body-color-opaque: rgba(230, 230, 255, 1);
    --second-blue: #3f5491;
    --muted: #607080;

    /*  ADVERT VARS  */
    --ad-light: #f4f4f4;
    --ad-overlay: rgba(23, 25, 29, .8);
    --ad-ease: all .3s ease 0s;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--body-color);
}

a {
    text-decoration: none;
}

loader {
    background: rgba(255, 69, 0, 0.55);
}

loader .spinners {
    width: 30%;
}


/*=== === === === === === === === === === === === === === === === === === === === ===  GLOBAL  */
img {
    object-fit: cover;
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

#home.container,
#queue.container,
#watch.container {
    position: relative;
    min-height: 100vh;
}

#queue .rewad {
    color: #000;
    background: rgba(0, 136, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}


/*=== === === === === === === === === === === === === === === === === === === === ===  SIDENAV  */
#sidebar {
    padding: 3rem 0;
    z-index: 9;
    display: flex;
    align-items: center;
    min-width: 250px;
    max-width: 250px;
    color: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: fixed;
    border-bottom-right-radius: 40rem;
    border-top-right-radius: 40rem;
    margin-left: -250px;

    background: rgba(245, 142, 51, 0.90);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

#sidebar.active {
    margin-left: 0;
}

#sidebar .items {
    position: relative;
    padding: 1rem 1.5rem 1rem 2rem;
}

#sidebar .custom-menu {
    display: inline-block;
    position: absolute;
    right: 0;
    margin-right: -50px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#sidebar.active .custom-menu {
    margin-right: -20px;
}

#sidebar .custom-menu .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

#sidebar .custom-menu .btn.btn-toggle {
    background: var(--rewad-dark-blue);
    border: none;
    color: white;
}

#sidebar .custom-menu .btn.btn-toggle:hover,
#sidebar .custom-menu .btn.btn-toggle:focus {
    color: var(--rewad-blue);
    background: rgba(0, 136, 255, 0.25) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

#sidebar h2 .logo {
    margin-left: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--rewad-dark-blue);
}

#sidebar ul.list-unstyled {
    padding-left: 1.7rem;
}

#sidebar ul li {
    font-size: 16pt;
}

#sidebar ul li > ul {
    margin-left: 10px;
}

#sidebar ul li > ul li {
    font-size: 14px;
}

#sidebar ul li a {
    padding: 10px 0;
    display: block;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#sidebar ul li a:hover {
    color: var(--rewad-blue);;
}

#sidebar ul li.active > a {
    background: transparent;
    color: #fff;
}

#sidebar .nav-etc {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);

    border-radius: 37px;
    background: linear-gradient(145deg, var(--rewad-dark-blue), #304ea8);
    box-shadow: inset 0 11px 8px -10px #29428d,
    inset 0 -11px 8px -10px #29428d;
}

#sidebar .nav-etc .icons {
    list-style: none;
    padding: .3rem .5rem;
    margin: 0;
}

#sidebar .nav-etc .icons a {
    display: flex;
    justify-content: center;
}

#sidebar .nav-etc .icons i {
    padding: .3rem 0;
    font-size: 14pt;
}

#sidebar .nav-etc .icons a:hover {
    color: var(--rewad-orange);
}

/*=== === === === === === === === === === === === === === === === === === === === ===  HOME  */
#home .btn {
    border-radius: 40rem;
    font-size: 20pt;
}


/*=== === === === === === === === === === === === === === === === === === === === ===  ADVERTS  */
#watch,
#ads {
    background-color: var(--rewad-dark-blue);
}

#ads p, #ads h1, #ads h4, #ads header .btn {
    color: var(--ad-light);
}

#ads p, #ads h1 {
    font-weight: 400;
}

#ads h4, #ads header .btn {
    font-weight: 700;
    text-transform: uppercase;
}

#ads h1 {
    font-size: 40px;
    margin-bottom: 17px;
}

#ads p, #ads h4 {
    font-size: 1rem;
}

#ads header p {
    max-width: 530px;
}

#ads header .btn:hover {
    transform: scale(1.02);
}

#ads section.top {
    position: relative;
    padding: 0 3rem;
    min-height: 330px;
}

#ads section.top:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(var(--ad-overlay), var(--ad-overlay));
}

#ads section.top .col {
    z-index: 2;
}

#ads section.content {
    padding: 2rem 3rem;
}

#ads .playlist-title {
    padding: 1.5rem 0 1.3rem;
    margin-bottom: 0;
}

#ads .videos .col-6.col-md-4.col-lg-3 {
    padding: 0 .3rem .7rem;
}

#ads .video {
    height: 170px;
    position: relative;
    transition: var(--ad-ease);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#ads .video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}

.vbox-inline video {
    width: 100%;
    height: 100%;
}

#ads .video:hover {
    transform: scale(1.02);
}

#ads .video:hover > small {
    font-size: 7pt;
    transition: all .5s ease;
    color: var(--rewad-light-blue) !important;
    background-color: var(--rewad-dark-blue) !important;
}

#ads .video i {
    position: absolute;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: var(--rewad-orange-dark);
    opacity: .7;
    transition: var(--ad-ease);
}

#ads .video i:hover {
    opacity: 1;
}

#comment-modal .btn,
#comment-action .btn {
    border-radius: 0;
}

#ads .modal .modal-content {
    background-color: rgba(188, 208, 247, .9);
}

#comment-modal #comment::placeholder {
    color: grey;
}

#comment-modal #comment.active {
    min-height: 7em;
    background-color: rgba(0, 0, 0, .7);
    color: var(--rewad-light-blue);
    box-shadow: none;
}

#search-ads-form .rounded-pill {
    border-radius: 50%;
    background: linear-gradient(145deg, #232941, #2a314d);
    box-shadow: 6px 6px 12px #21273c,
    -6px -6px 12px #2d3554;
}


/*=== === === === === === === === === === === === === === === === === === === === ===  WATCH  */
#watch .feature-img video {
    max-height: 50vh;
}

#watch .feature-img:hover {
    cursor: pointer;
}

#watch .small-img-row:hover img,
#watch .feature-img:hover img {
    filter: invert(1);
}

#watch .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

#watch .current-vid small {
    color: var(--muted);
}

#watch .video-list {
    margin-bottom: 5rem;
    max-height: 80vh;
    overflow-y: auto;
}

#watch .video-list > a {
    text-decoration: none;
}

#watch .small-img-row {
    margin: .5rem 0;
    color: black;
    overflow: hidden;
    transition: all .3s ease;

    background: rgba(255, 100, 0, 0.70);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

#watch .small-img-row:hover {
    margin-left: -.5rem;
}

#watch .small-img-row video {
    height: 5rem;
    width: 100%;
    object-fit: cover;
}

#watch .small-img img {
    width: 100%;
    object-fit: cover;
}

#watch .small-img .play-btn {
    width: 2rem;
}

#comment-modal #comment,
#comment-section #comment {
    height: 1em;
    border: none;
    outline: none;
    background-color: transparent;
    border-bottom: 1px solid var(--rewad-orange-dark);
    border-radius: 0;
    transition: all .3s ease-in-out;
}

#comment-section #comment.active {
    height: 4em;
    background-color: rgba(0, 0, 0, .5);
    color: white;
    box-shadow: none;
}

#comment-section #comment::placeholder {
    color: var(--rewad-orange-dark);
}

#comment-section #comment.active::placeholder {
    color: white;
}

#watch #comment-section .accordion-item {
    background: transparent;
}

#watch #comment-section .accordion-item h6 {
    font-weight: 400;
    color: #607080;
}

#watch #comment-section .accordion-body {
    max-height: 20rem;
    overflow-y: auto;
}

#watch #comment-section .accordion-body .avatar img {
    width: 2rem;
    height: 2rem;
}

#watch #comment-section .accordion-button {
    background: transparent;
    border-bottom: 1px;
    border-style: solid;
    color: var(--rewad-light-blue);
    font-size: 14pt;
}

#watch #comment-section .avatar img {
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}


/*=== === === === === === === === === === === === === === === === === === === === ===  VIDEO PLAYER  */
#video-player .background {
    background-color: rgba(0, 0, 0, .9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    filter: blur(1rem);
    z-index: 1;
}

#video-player .container {
    width: 100%;
    max-width: 70rem;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

#video-player .container:hover .controls {
    transform: translateY(0);
}

#video-player video {
    width: 100%;
}

#video-player .controls {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 100%;
    flex-wrap: wrap;
    transform: translateY(100%) translateY(-.2rem);
    transition: all .2s;

    background: rgba(30, 30, 30, .7);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
}

#video-player .controls .orange-bar {
    height: .3rem;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
}

#video-player .controls .orange-juice {
    height: 100%;
    background-color: var(--rewad-orange-dark);
}

#video-player .controls .buttons {
    padding: .3rem 1rem .5rem;
}

#video-player .controls .buttons button {
    background: none;
    border: 0;
    outline: 0;
    cursor: pointer;
    color: white;
}

#video-player video:focus {
    outline: none;
}

#video-player .close-btn {
    position: absolute;
    top: .7rem;
    right: 1.3rem;
    width: 1.7rem;
    cursor: pointer;
}

#queue .close-btn:hover,
#video-player .close-btn:hover {
    filter: invert(1);
}


/*=== === === === === === === === === === === === === === === === === === === === ===  REWARD QUEUE  */
#queue .rewad .btn-claim {
    transition: all .4s;
    color: #007ae6;
    border-radius: 50px;
    background: linear-gradient(145deg, #b4e1e6, #d6ffff);
    box-shadow: 20px 20px 60px #aad5d9,
    -20px -20px 60px #e6ffff;
}

#queue .rewad .btn-claim:hover {
    color: #fff;
    background: linear-gradient(145deg, #0092ff, #007ae6);
    box-shadow: 20px 20px 60px #0074d9,
    -20px -20px 60px #009cff;
}

#queue .rewad .btn-claim:disabled {
    background: linear-gradient(145deg, #0092ff, #007ae6);
    color: #e6ffff;
    font-weight: bolder;
    box-shadow: none;
}

#queue .code {
    display: flex;
    justify-content: end;
    align-items: center;
    right: .7rem;
    top: .3rem;
    position: absolute;
    width: auto;
    padding: .3rem 2rem;
    border-radius: 2rem;

    background: linear-gradient(145deg, #e63e00, #ff4a00);
    box-shadow: 5px 5px 100px #fc4400;
}

#queue .rewad .reward-video video {
    height: 12rem;
}

#queue .rewad .reward-image img {
    height: 12rem !important;
    width: 100%;
}


/*=== === === === === === === === === === === === === === === === === === === === ===  PROFILE  */
.account-settings .user-profile h6.user-email,
#profile label {
    color: #bcd0f7 !important;
}

.account-settings .user-profile {
    margin: 0 0 1rem 0;
    padding-bottom: 1rem;
    text-align: center;
}

.account-settings .user-profile .user-avatar {
    margin: 0 0 1rem 0;
}

.account-settings .user-profile .user-avatar img {
    width: 90px;
    height: 90px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

.account-settings .user-profile h5.user-name {
    color: var(--rewad-orange);
    margin: 0 0 0.5rem 0;
}

.account-settings .user-profile h6.user-email {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 400;
}

.account-settings .about {
    margin: 1rem 0 0 0;
    font-size: 0.8rem;
    text-align: center;
}

#profile .card {
    background: #272E48;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 0;
    margin-bottom: 1rem;
}

#profile .divider-text {
    background: none !important;
}

#profile h6.text-primary {
    color: var(--rewad-orange) !important;
}

#profile .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #596280;
    background-color: transparent;
    font-size: .825rem;
    color: rgb(150, 150, 150);
}

#profile .form-control.is-invalid {
    border-color: #dc3545;
}

#profile .form-control:focus {
    background: #1A233A;
}

#profile .form-control:disabled, .form-control[readonly] {
    background-color: #000;
    opacity: 1;
}

#profile .btn-outline-orange:hover {
    color: #1A233A;
}

#profile .board {
    font-size: 14pt;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.5;
    text-shadow: 1px 1px #666, 3px 3px #000;
    padding: 20px;
    color: #bcd0f7;
    border: 10px solid #eee;
    background: #1A233A;
    box-shadow: 0 -1px 0 2px #aaa, 0 -7px 5px -5px #000, 0 -15px 30px -15px #000, 0 3px 4px -2px #000, -60px 30px 70px -70px #000, 70px 30px 70px -70px #000, 0 200px 20px rgba(255, 255, 255, .05), inset 0 0 25px #000, inset 0 0 5px #000;
}

#profile .board:focus {
    outline: none;
}

#profile .board u {
    color: #fd0;
    text-underline-position: under;
}


/*=== === === === === === === === === === === === === === === === === === === === ===  ABOUT  */
#about .card {
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(14.0px);
    -webkit-backdrop-filter: blur(14.0px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}


/*=== === === === === === === === === === === === === === === === === === === === ===  PRIVACY POLICY  */
#policy .card {
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #000;
}


/*=== === === === === === === === === === === === === === === === === === === === ===  CONTACT  */
#contact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
}

#contact .card {
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(14.0px);
    -webkit-backdrop-filter: blur(14.0px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

#contact .info_icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    transition: box-shadow .3s ease;
    box-shadow: -2px -2px 4px var(--rewad-orange-dark),
    -2px -2px 6px rgba(184, 134, 11, .5),
    inset 2px 1px 4px rgba(184, 134, 11, .1),
    2px 2px 4px rgba(0, 0, 0, .15);
}

#contact .info_icon:hover {
    border: none;
    outline: none;
    box-shadow: -2px -2px 4px rgba(217, 180, 60, 1),
    -2px -2px 6px rgba(217, 180, 60, .5),
    inset 2px 1px 4px rgba(217, 180, 60, .1),
    2px 2px 4px rgba(0, 0, 0, .15);
}

#contact .info_icon a {
    color: var(--rewad-light-blue);
    transition: all .3s ease;
}

#contact .info_icon:hover a {
    color: rgb(220, 220, 220);
    font-size: 1.3rem;
}

#contact .info_text {
    transition: color .3s ease;
    color: rgb(184, 134, 11);
}

#contact .info_link {
    color: var(--rewad-light-blue);
}

#contact .info_link:hover {
    color: white;
}

#contact label {
    color: #bcd0f7;
    font-weight: 400;
}

#contact .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #bcd0f7;
    background-color: transparent;
    color: #fff;
}

#contact .form-control::placeholder {
    color: #bcd0f7;
}


/*=== === === === === === === === === === === === === === === === === === === === ===  FOOTER  */
#footer {
    position: fixed;
    bottom: 0;
    right: 0;
}

#footer .shape {
    color: #fff;
    padding: 2rem;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;

    background: linear-gradient(145deg, #29428d, #304ea8);
    box-shadow: 20px 20px 60px #263e85,
    -20px -20px 60px #3454b5;
}

#footer .link-light:hover {
    color: var(--rewad-orange) !important;
}
