:root {
    --primary-color: #4717F6;
    --secound-color: #222222;
    --background-color: #0f0f0f;
    --text-color: rgb(215, 215, 215);
    --white-color: rgba(108, 108, 108, 0.532);
    --black-color: #161616;
    --gray-color: #2f2f2f;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400&display=swap');

@font-face {
    font-family: 'yt';
    src: url('../../files/font/youtube-sans-medium.ttf');
}

* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body,
html {
    background: var(--background-color);
    min-height: 100%;
    color: var(--text-color);
}

:focus-visible {
    outline: none;
}

::-webkit-scrollbar {
    width: 7px;
    scroll-behavior: smooth;
}

::-webkit-scrollbar-track {
    background: #353535;
    border-radius: 15px;
}

::-webkit-scrollbar-thumb {
    background: rgb(12, 12, 12);
    border-radius: 15px;
    border: 2px solid #353535;
}

:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px var(--background-color) inset;
    -webkit-text-fill-color: var(--text-color) !important;
}

.pesquisar::placeholder {
    color: gray;
}

.pesquisar {
    width: 550px;
    border: 1px solid var(--gray-color);
    color: #ffffffe0;
    padding: 7px 0 7px 20px;
    background: transparent;
    border-radius: 40px 0px 0 40px;
}

.pesquisarButton {
    background: var(--secound-color);
    border: 1px solid var(--gray-color);
    fill: white;
    padding: 7px 19px;

    border-radius: 0px 40px 40px 0px;
}

.yt {
    margin-right: 10px;
    width: 30px;
    height: 30px;
}

.chipoustore {
    font-family: 'yt';

}

.header {
    height: 70px;
    padding: 0px 5%;
}

.mic {
    background: var(--secound-color);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    cursor: pointer;
    margin-left: 20px
}

.micSVG {
    width: 24px;
    height: 24px;
    fill: white;
}

.iconRight {
    width: 23px;
    height: 24px;
    fill: white;
}

.perfil {
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.rightIcons {
    width: 150px;
}

.youtube-player {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 333px;
    height: 180px;
    background: #000;
    margin: 5px;
}

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent;
}

.youtube-player img {
    object-fit: cover;
    display: block;
    left: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    transition: 0.4s all;
}

.youtube-player img:hover {
    -webkit-filter: brightness(75%);
}

.youtube-player .play {
    height: 48px;
    width: 68px;
    left: 50%;
    top: 50%;
    margin-left: -34px;
    margin-top: -24px;
    position: absolute;
    background: url('https://i.ibb.co/j3jcJKv/yt.png') no-repeat;
    cursor: pointer;
}

.perfilboxvideos {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin-right: 15px;
}

.infovideos {

    padding: 10px;
}

.verify {
    width: 12px;
    margin-left: 5px;
    height: 12px;
    filter: invert(100%);

}

.titleVideo {
    color: white;
    width: 265px;
    word-break: keep-all;
}

.w-100 {
    width: auto;
}

.ytchannel,
.view {
    font-family: Arial, Helvetica, sans-serif;
    color: #aaaaaa;
    font-size: .9rem;
}

.videos {
    margin: 10px;
}

.main {
    margin-top: 70px;
    padding: 0 4%;
}

@media (max-width:800px) {

    .pesquisar,
    .mic,
    .pesquisarButton {
        display: none !important;
    }

    .rightIcons {
        width: 90px;
    }

    .rightIcons>svg:nth-child(1) {
        display: none !important;
    }
}