* {
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

:root {
    --primary: #2a7ae4;
    --black: #000000;
    --blackLighter: #9e9e9e;
    --grayLight: #f5f5f5;
    --grayMedium: #e5e5e5;
    --white: #ffffff;
    --frontEnd: #6bd1ff;
    --backEnd: #00c86f;
}

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

body {
    --bodyPaddingTop: 94px;
    padding-top: var(--bodyPaddingTop);
    /* min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--black);
    color: var(--white);
    flex: 1;
    padding-top: 50px;
    padding-left: 5%;
    padding-right: 5%; */
}

a {
    color: inherit;
}

.custom-container {
    min-height: calc(100vh - var(--bodyPaddingTop));
    display: flex;
    flex-direction: column;
}

/* ============ MENU COMPONENT ================= */
.logo {
    max-width: 168px;
}

@media (max-width: 800px) {
    .logo {
        max-width: 105px;
    }
}

.menu {
    width: 100%;
    height: 94px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* padding-left: 5%;
    padding-right: 5%; */
    background: var(--black);
    border-bottom: 2px solid var(--primary);
}

@media (max-width: 800px) {
    .menu {
        height: 65px;
        justify-content: center;
    }
    body {
        --bodyPaddingTop: 65px;
        padding-top: var(--bodyPaddingTop);
    }
    /* .navbar-nav li {
        border-bottom: 1px solid white;
    } */

    .navbar-wrapper {
        padding: 0 !important;
    }
    .navbar-nav {
        gap: 0 !important;
    }
}

.navbar-wrapper {
    padding: 0 5%;
}

.navbar-nav {
    background-color: var(--black);
    color: white;
}
.navbar-toggler {
    padding: 0;
}

.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

a.header-link {
    color: var(--white);
    box-sizing: border-box;
    cursor: pointer;
    padding: 16px 24px;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    outline: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
    text-transform: uppercase;
}

a.header-link:hover,
a.header-link:focus {
    opacity: 0.5;
}

a.button-link {
    color: var(--white);
    border: 1px solid var(--white);
    background: var(--primary);
    box-sizing: border-box;
    cursor: pointer;
    padding: 16px 24px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    outline: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
}

a.button-link:hover,
a.button-link:focus {
    opacity: 0.5;
}

@media (max-width: 800px) {
    a.header-link {
        font-size: 14px;
    }

    a.button-link {
        /* position: fixed;
        left: 0;
        right: 0;
        bottom: 0; */
        background: var(--primary);
        border-radius: 0;
        border: 0;
        text-align: center;
    }
    .content-area-container-item {
        width: 100% !important;
    }
}

button.button-link {
    color: var(--white);
    border: 1px solid var(--white);
    background: var(--primary);
    box-sizing: border-box;
    cursor: pointer;
    padding: 16px 24px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    outline: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
}

button.button-link:hover,
button.button-link:focus {
    opacity: 0.5;
}

main {
    padding: 0;
    flex: 1;
    background-color: var(--black);
    color: var(--white);
}

/* ============ BANNER MAIN COMPONENT ================= */
.banner-main-container {
    height: 80vh;
    position: relative;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.banner-main-container:after,
.banner-main-container:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 20%;
}

.banner-main-container:before {
    top: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner-main-container:after {
    bottom: 0;
    background: linear-gradient(0deg, #141414 0%, transparent 100%);
}

@media (max-width: 800px) {
    .banner-main-container {
        height: auto;
        min-height: 50vh;
    }
}

.content-area-container {
    margin-left: 5%;
    margin-right: 5%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.content-area-container-item {
    width: 50%;
    display: inline-block;
    /* margin-bottom: 50px; */
}

.content-area-container-category {
    font-style: normal;
    font-weight: 300;
    font-size: 40px;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 32px;
}

.content-area-container-description {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.watch-button {
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
    cursor: pointer;
    padding: 16px 24px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    outline: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    border: 1px solid transparent;
    color: var(--black);
    background: var(--white);
    border-color: var(--black);
    transition: opacity 0.3s;
    display: none;
    margin: 0 auto;
}

/* ============ CAROUSEL COMPONENT ================= */

.video-card-group-container {
    color: white;
    min-height: 197px;
    margin-left: 5%;
    margin-bottom: 16px;
}

.video-links {
    margin-right: 5%;
}

.video-card-container-title {
    font-style: normal;
    font-weight: normal;
    font-size: 35px;
    line-height: 1;
    margin-bottom: 16px;
    display: inline-block;
    padding: 20px;
    background: red;
    line-height: 1;
    border-radius: 4px;
}

@media (max-width: 800px) {
    .video-card-container-title {
        font-size: 18px;
        padding: 10px;
    }
    .content-area-container {
        flex-direction: column;
    }
    .content-area-container-item {
        margin-top: 50px;
        text-align: center;
    }
    .content-area-container-category {
        font-size: 24px;
    }
}

.video-card-extra-link {
    margin-left: 16px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.video-card-extra-link :hover,
.video-card-extra-link :focus {
    opacity: 0.5;
}

@media (max-width: 800px) {
    .video-card-extra-link {
        display: block;
        margin-bottom: 16px;
        margin-left: 0;
    }
}

.video-card-group-container-link {
    text-decoration: none;
    color: inherit;
}
.video-card-group-container-link:hover {
    text-decoration: none;
    color: inherit;
}

.video-card-group-container-link-action {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1;
    height: fit-content;
    margin: 5px;
    display: inline-block;
    line-height: 1;
    align-self: center;
}

.video-card-group-container-link-action:hover {
    color: inherit;
    opacity: 0.7;
}

.video-card-list {
    padding: 0;
}
/* ============ SLIDER COMPONENT ================= */

/* ============ SLICK SLIDER COMPONENT ================= */
.slick-next {
    height: 201px;
}

.slick-slider {
    padding: 0;
    margin: 0;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
    z-index: 50;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    transform: initial;
}

.slick-slider .slick-prev:before,
.slick-slider .slick-next:before {
    font-size: 30px;
}

.slick-slider .slick-prev {
    left: 0;
}

.slick-slider .slick-next {
    right: 16px;
}

.movie-item {
    margin-right: 16px;
    width: 100%;
    display: inline-block;
}

.movie-card {
    border: 2px solid;
    border-radius: 4px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    color: white;
    flex: 0 0 298px;
    width: 298px;
    height: 197px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    transition: opacity 0.3s;
}
.movie-card:hover,
.movie-card:focus {
    opacity: 0.5;
}

/* ============ FOOTER COMPONENT ================= */
.footer-main {
    background: var(--black);
    border-top: 2px solid var(--primary);
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 32px;
    padding-bottom: 32px;
    color: var(--white);
    text-align: center;
}

.footer-bottom {
    background: var(--primary);
}

/* ============ CUSTOM-SWITCH ================= */

.custom-switch {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

.custom-switch-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-switches-stacked {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}
.custom-switches-stacked .custom-switch {
    margin-bottom: 0.5rem;
}

.custom-switch-indicator {
    display: inline-block;
    height: 1.25rem;
    width: 2.25rem;
    background: #e9ecef;
    border-radius: 50px;
    position: relative;
    vertical-align: bottom;
    border: 1px solid rgba(0, 40, 100, 0.12);
    transition: 0.3s border-color, 0.3s background-color;
}
.custom-switch-indicator:before {
    content: "";
    position: absolute;
    height: calc(1.25rem - 4px);
    width: calc(1.25rem - 4px);
    top: 1px;
    left: 1px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s left;
}

.custom-switch-input:checked ~ .custom-switch-indicator {
    background: red;
}
.custom-switch-input:checked ~ .custom-switch-indicator:before {
    left: calc(1rem + 1px);
}
.custom-switch-input:focus ~ .custom-switch-indicator {
    border-color: #6777ef;
}

.custom-switch-description {
    margin-left: 0.5rem;
    color: #6e7687;
    transition: 0.3s color;
}

.custom-switch-input:checked ~ .custom-switch-description {
    color: #495057;
}

/*  ============ FORM CSS ================= */
form {
    position: relative;
    display: block;
}

@media (max-width: 370px) {
    form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.form-field {
    position: relative;
    margin: 0 auto;
    padding-bottom: 16px;
}
.form-field input {
    box-sizing: border-box;
    width: 100%;
    font-family: inherit;
    padding: 16px 20px 0 20px;
    height: 50px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: #53585d;
    color: #ffffff;
    border-bottom: 4px solid #53585d;
}

.form-field label {
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    top: 20%;
    left: 20px;
    font-size: 18px;
    cursor: text;
    color: #8c8c8c;
    transition: font 0.1s ease, top 0.1s ease, transform 0.1s ease;
    transition: font 0.1s ease, top 0.1s ease, transform 0.1s ease,
        -webkit-transform 0.1s ease, -moz-transform 0.1s ease,
        -o-transform 0.1s ease;
}
input:focus:not([type="color"]) ~ .floating-label {
    font-size: 11px;
    top: 7px;
}
input:focus {
    border-bottom-color: var(--primary);
}

input[type="color"] {
    padding-left: 56px;
}

/*  ============ CUSTOM CSS ================= */
td.text-center > a {
    margin: 0 3px;
}

.list-movies {
    color: white;
    min-height: 197px;
    margin-left: 5%;
    margin-bottom: 16px;

    margin-top: 25px;
    display: flex;
    gap: 24px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.wrapper-socials-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-icon {
    font-weight: 400;
    list-style: none;
    box-sizing: border-box;
    outline: 0;
    display: inline-block;
    text-decoration: none;
    margin: 0;
    padding: 0;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 37px;
    border-radius: 50%;
    font-size: 15px;
    transition: all linear 0.3s;
    background: red;
    color: #fff;
}

a:hover {
    opacity: 0.7;
    color: #fff;
}

/*  movie page */

/* global style */

/* *,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: inherit;
    font-family: "Roboto";
    color: #fff;
}
:root {
    --primaryColor: #fff;
    --secondaryColor: #1f1f1f;
}

html {
    font-size: 10px;
} */

strong {
    font-weight: 500;
}

.btn {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

input {
    border: none;
    outline: none;
}
.custom-container {
    /* min-height: 100vh; */
    background-color: var(--black);
}

/* header style */

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    height: 5.6rem;
    background-color: #282828fa;
    z-index: 69;
}

.menu-btn {
    margin-right: 2.4rem;
    margin: 0 2.4rem;
}
.menu-btn svg {
    fill: var(--primaryColor);
}

.home-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90px;
    font-size: 1.3rem;
    font-weight: 500;
}
.home-btn svg {
    fill: var(--primaryColor);
}

.search-bar {
    width: 700px;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn .microphone {
    height: 2.5rem !important;
    width: 2.6rem !important;
    fill: var(--primaryColor);
    margin-left: -3rem;
}

@media only screen and (max-width: 630px) {
    .search-bar {
        width: 0;
        visibility: hidden;
    }

    .auth .btn {
        margin-right: 1.5rem;
    }
}

.search-input {
    width: 100%;
    height: 32px;
    padding: 1rem;
    margin-left: 4rem;
    font-size: 1.6rem;
    background-color: rgba(0, 0, 0, 0.55);
    border: 1px solid rgb(49, 49, 49);
}

.search-btn {
    min-width: 65px;
    height: 32px;
    margin-right: 4rem;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border: 1px solid rgb(49, 49, 49);
    background-color: #393939;
}

.search-btn img {
    width: 20px;
}

.auth {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth .btn {
    margin-right: 2.4rem;
    height: 40px;
}

@media only screen and (max-width: 630px) {
    .auth .btn,
    .menu-btn {
        margin-right: 1.5rem;
    }

    .menu-btn {
        margin: 0 1.5rem;
    }
}

.auth .profile {
    display: block;
    width: 3.2rem !important;
    height: 3.2rem !important;
    margin-right: 4rem;
}

.auth .profile img {
    max-width: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.options-btn {
    position: relative;
}
.options-btn svg {
    fill: var(--primaryColor);
}
.options-btn span {
    display: block;
    position: absolute;
    top: 5px;
    right: -7px;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    line-height: 18px;
    background-color: #cc0000;
}

/* main style */

.movie-page-main {
    margin: 0 2.4rem 3rem 0;
}

.content {
    display: grid;
    grid-template: auto 1fr / 2fr 1fr;
    padding: 2rem 3rem 2rem 3rem;
}

@media only screen and (max-width: 1200px) {
    .content {
        padding: 3rem 1rem 1rem 1rem;
    }
}

@media only screen and (max-width: 1020px) {
    .movie-page-main {
        margin: 0 0.5rem 3rem 0.5rem;
    }

    .content {
        display: flex;
        flex-direction: column;
    }
}

.video-player {
    border-bottom: 1px solid rgba(156, 92, 92, 0.2);
}
.options-btn {
    position: relative;
}
.options-btn svg {
    fill: var(--primaryColor);
}
.options-btn span {
    display: block;
    position: absolute;
    top: 5px;
    right: -7px;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    line-height: 18px;
    background-color: #cc0000;
}
.player {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding-top: 2rem;
}

.video-title {
    font-size: 1.8em;
    font-weight: 400;
}

.video-primary-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -1px;
}

.video-views-date {
    font-size: 1.2rem;
    color: #aaa;
}

@media only screen and (max-width: 630px) {
    .video-primary-info {
        flex-direction: column;
    }
    .video-views-date {
        width: 100%;
        /* max-width: 100px;
        min-width: 0;
        visibility: hidden;
        white-space: nowrap;
        display: none; */
    }
    .video-options {
        padding: 1rem 0;
        width: 100%;
    }
    .video-description {
        padding-left: 0 !important;
    }

    .video-download-links {
        margin: 1.5rem 0 !important;
    }
    .download-link {
        margin-right: 0 !important;
    }
    .video-options .btn img {
        width: 17px !important;
        height: 17px !important;
    }
    .video-options .btn span {
        font-size: 1.2rem !important;
        padding-left: 1.1rem;
    }
}

.video-options {
    display: flex;
}

.video-options .btn {
    display: flex;
    align-items: center;
    width: 100%;
    height: 32px;
    padding-left: 1rem;
    margin-left: 1rem;
}

.video-options .btn img {
    width: 20px;
    height: 20px;
}

.video-options .btn span {
    color: #aaa;
    font-size: 1.3rem;
    font-weight: 500;
    padding-left: 0.8rem;
}

.likes-percents {
    display: flex;
    padding-bottom: 1rem;
    padding-right: 1rem;
    border-bottom: 2px solid #aaa;
}

.video-options .like-btn {
    margin: 0;
}

.video-options .more-options-btn {
    padding: 0 1rem;
}

.video-options .more-options-btn img {
    align-self: flex-end;
    width: 24px;
    height: 24px;
}

/* description */

/* channel-info */

.channel-info {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
}

.channel-logo img {
    width: 85px;
    border-radius: 50%;
}

.channel-primary-info {
    padding-left: 1.5rem;
}

.channel-name {
    display: flex;
    align-items: center;
}

.channel-name img {
    width: 1.4rem;
}

.channel-link {
    width: auto;
    padding-right: 0.4rem;
    text-decoration: none;
    font-size: 1.4rem;
}

.channel-name > img {
    filter: invert(0.5) sepia(1) saturate(5) hue-rotate(175deg);
}

.channel-subscribers-count {
    color: #aaa;
    font-size: 1.1rem;
}

.subscribe-btn {
    width: auto;
    height: auto;
    margin-left: auto;
    padding: 1rem 1.5rem;
    border-radius: 2px;
    font-size: 1.4rem;
    font-weight: 500;
    background-color: #393939;
}

.video-description {
    margin-top: 1rem;
    /* padding-left: 6.3rem; */
    border-bottom: 1px solid rgba(170, 170, 170, 0.2);
}

.video-description-para {
    font-size: 1.2rem;
}

.video-download-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    margin: 2rem 0;
}

.download-link {
    display: flex !important;
    margin-right: 2rem;
    border-radius: 15px;
    overflow: hidden;
    width: 200px;
}

.game-info {
    margin-top: 1.6rem;
    display: grid;
    grid-gap: 1.6rem;
    grid-auto-flow: column;
}

@media only screen and (max-width: 630px) {
    .game-info {
        grid-auto-flow: row;
    }
}

.card {
    display: flex;
    align-items: center;
    flex-grow: 1;
    background-color: white;
}

.card img {
    height: 100%;
}

.card.gaming > img {
    margin-left: 1.6rem;
    border-radius: 50%;
    height: 55%;
}

.card-title {
    font-size: 1.6rem;
}

.card-info {
    display: flex;
    flex-direction: column;
    padding-left: 1.6rem;
}

.card-link {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    text-decoration: none;
    color: #aaa;
}

.game-year {
    padding: 0.6rem 0;
    font-size: 1.2rem;
    color: #aaa;
}

.show-more-btn {
    width: auto;
    margin: 1.6rem 0;
    font-size: 1.3rem;
    font-weight: 500;
    color: #aaa;
}

/* aside */

aside {
    grid-column: 2;
    grid-row: 1 / span 2;
}

/* up-next */

.up-next {
    margin-bottom: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(170, 170, 170, 0.2);
}

.autoplay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0.5rem;

    flex-wrap: wrap;
    gap: 15px;
}

.autoplay a {
    padding: 0.3rem 1.4rem;
    margin-right: 1rem;
    border-radius: 15px;
    font-size: 15px;
    background-color: #393939;
    align-items: center;
    text-decoration: none;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.autoplay a:first-child {
    color: var(--secondaryColor);
    background-color: var(--backEnd);
}

.thumbnail {
    position: relative;
    display: flex;
    width: 100%;
    padding-top: 1rem;
    text-decoration: none;
}

.duration {
    width: 100%;
    padding: 0.5rem;
    margin-top: -3.7rem;
    text-align: right;
}

.duration span {
    padding: 0.1rem 0.4rem;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 2px;
    background-color: #000;
}

.thumbnail-img {
    position: relative;
}

/* .thumbnail-img img {
    height: 96px;
} */

.thumbnail-info {
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thumbnail-title {
    width: 202px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 1rem 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 500;
}

@media only screen and (max-width: 1200px) {
    .thumbnail-title {
        width: auto;
    }
}

.thumbnail-channel-name {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    color: #aaa;
}

.thumbnail-channel-name > img {
    margin-left: 0.5rem;
    width: 14px;
}

.thumbnail-video-info {
    padding-top: 0.2rem;
    padding-bottom: 0.3rem;
    font-size: 1.3rem;
    color: #aaa;
    margin: 0;
}

.thumbnail-new {
    padding: 0.1rem 0.5rem;
    background-color: rgb(51, 51, 51);
    border-radius: 2px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #aaa;
}

.thumbnail-img-overlay {
    visibility: hidden;
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    top: 0;
}

.thumbnail-img-overlay .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0.4rem 0.4rem 0 0;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.9);
}

.thumbnail-img-overlay img {
    width: 20px;
    height: 20px;
}

.thumbnail-overlay {
    visibility: hidden;
    position: absolute;
    right: 0;
}

.thumbnail-overlay .btn {
    margin-right: -1rem;
}

.thumbnail:hover .thumbnail-img-overlay,
.thumbnail:hover .thumbnail-overlay {
    visibility: initial;
}
.comments-info {
    display: flex;
    align-items: center;
}

.comments-count {
    font-size: 1.6rem;
}

.sort-btn {
    display: flex;
    align-items: center;
    width: auto;
    margin-left: 3rem;
    font-weight: 500;
    font-size: 1.4rem;
    color: #aaa;
}

.sort-btn img {
    padding-right: 1rem;
}

.new-comment,
.comment {
    display: flex;
    align-items: center;
    margin-top: 3rem;
    width: 100%;
}

.user-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.comment-input {
    flex-grow: 1;
    align-self: self-start;
    margin: 0 2.4rem 0 1.5rem;
    height: 2.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #393939;
}

.comment {
    align-items: initial;
}

.comment-info {
    margin-left: 1.5rem;
}

.comment-user {
    display: flex;
    align-items: center;
}

.user-name,
.comment-time {
    font-size: 1.3rem;
}

.comment-time {
    padding-left: 0.5rem;
    color: #aaa;
}

.comment-text {
    padding: 0.5rem 0 0.5rem 0;
    line-height: 1.5;
    font-size: 1.4rem;
}

.comment-options,
.cm-show-replies-btn {
    display: flex;
    align-items: center;
}

.comment-options .btn {
    display: flex;
    align-items: center;
    width: auto;
    height: 32px;
    color: #aaa;
}

.comment-options .btn img {
    width: 16px;
    height: 16px;
}

.btn.cm-like-btn,
.btn.cm-dislike-btn {
    padding-right: 1.5rem;
}

.cm-like-btn span,
.cm-reply-btn span {
    font-size: 1.3rem;
    font-weight: 500;
    color: #aaa;
}

.cm-like-btn span {
    padding-left: 1rem;
}

.cm-reply-btn {
    padding: 0 1rem;
}

.cm-show-replies-btn {
    width: auto;
}

.cm-show-replies-btn img {
    margin-left: -6px;
}

.cm-show-replies-btn span {
    padding-left: 0.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: #3ea6ff;
}
