@import url('https://fonts.googleapis.com/css2?family=Spicy+Rice&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amethysta&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caesar+Dressing&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Piedra&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body{
    background-color: black;
    min-height: 300vh;
}
html{
    scroll-behavior: smooth;
}
/* Stream */
.stream{
    position: inherit;
    padding-left: 40vw;
    padding-top: 30.5vh;
    transform: translateX(0);
    scale: 1;
    -moz-transform: scale(1,1) translateX(0);
    -webkit-transform: scale(1,1) translateX(0);
    -o-transform: scale(1,1) translateX(0);
    opacity: 1;
    transition: 1.5s;
}
.stream > iframe{
    border-radius: 25px;
    height: 57.65vh;
    width: 50vw;
}
/* Stream Chat */
.landing .chat-icon {
    width: 40px;
    height: 28px;
    background-color: gray;
    border-radius: 50%;
    position: relative;
    left: 37vw;
    top: -5vh;
    cursor: pointer;
    transform: rotate(0);
    scale: 1;
    opacity: 1;
    transition: opacity 3s, scale 3s, transform 3s, background-color .3s;
    animation: chat-icon 5s linear;
}
@media (min-width: 1199px) {
@keyframes chat-icon{
    0%{
        visibility: hidden;
        opacity: 0;
    }
    50%{
        visibility: hidden;
        opacity: 0;
        scale: 0;
        transform: rotate(0deg);
    }
    62.5%{
        transform: rotate(360deg);
    }
    75%{
        transform: rotate(720deg);
    }
    87.5%{
        transform: rotate(1080deg);
    }
    100%{
        transform: rotate(1440deg);
        scale: 1;
        visibility: visible;
        opacity: 1;
    }
}
}
.landing .chat-icon:after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    right: 10px;
    bottom: -8px;
    border-left: 10px solid transparent;
    border-right: 2px solid transparent;
    border-top: 10px solid gray;
    transform: rotate(-15deg);
    transition: border-top-color .3s;
    -moz-transition: border-top-color .3s;
    -webkit-transition: border-top-color .3s;
    -o-transition: border-top-color .3s;
}
.landing .chat-icon.change:after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    right: 10px;
    bottom: -8px;
    border-left: 10px solid transparent;
    border-right: 2px solid transparent;
    border-top: 10px solid white;
    transform: rotate(-15deg);
}
.landing .chat-icon.clicked {
    background-color: white!important;
    transition: opacity 3s, scale 3s, transform 3s, background-color .3s;
}
.landing .chat-icon.clicked:after {
    border-top: 10px solid white!important;
    transition: opacity 3s, scale 3s, transform 3s, background-color .3s;
}
.landing .chat{
    position: absolute;
    top: 30.5vh;
    left: 6.5vw;
    width: 29.5vw;
    height: 57.65vh;
    opacity: 0;
    visibility: hidden;
}
.landing .chat > iframe{
    border-radius: 15px;
}
/* Stream Chat dots*/
.landing .chat-icon .dot1{
    margin-left: 7.5px;
    display: inline-block;
    height: 5px;
    width: 5px;
    background-color: black;
    border-radius: 50%;
}
.landing .chat-icon .dot2{
    margin-left: 0;
    display: inline-block;
    height: 5px;
    width: 5px;
    background-color: black;
    border-radius: 50%;
}
.landing .chat-icon .dot3{
    margin-left: 0;
    display: inline-block;
    height: 5px;
    width: 5px;
    background-color: black;
    border-radius: 50%;
}
/* Landing */
.landing{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 105vh;
    background-image: url(img/bg2.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}
/* Landing - Nadpis */
.landing > h1{
    position: absolute;
    left: 8vw;
    top: 3.8vw;
    font-family: 'Spicy Rice', cursive;
    font-style: normal;
    font-weight: normal;
    font-size: 90px;
    line-height: 72px;
    background: -webkit-linear-gradient(red,black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(3px 3px rgb(53, 14, 14));
    pointer-events: none;
}
/* Landing - Obraz */
.landing > img{
    position: absolute;
    top: 1.5vw;
    left: 1.5vw;
    pointer-events: none;
}
/* Landing - Menu */
.menu-in > svg{
    position: fixed;
    top: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateX(120px);
    transition: all 1s;
}
.menu-wrap{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    visibility: hidden;
}
.menu-wrap .menu-in{
    width: 170px;
    height: 740px;
    top: 0;
    right: 0;
    z-index: 1;
}
.menu-wrap .menu{
    visibility: visible;
}
.menu-in > ul{
    visibility: hidden;
    transform: translateX(120px);
    opacity: 0;
    position: fixed;
    margin-left: 20px;
    margin-top: 140px;
    width: 130px;
    height: 740px;
    text-align: center;
    transition: all 1s;
}
.menu-in > ul > li{
    list-style: none;
    margin-bottom: 40px;
}
.menu-in > ul > li > a{
    text-decoration: none;
    font-size: 24px;
    font-family: 'Spicy Rice', cursive;
    color: darkred;
    transition: 1s;
    cursor: pointer;
    z-index: 999;
}
.menu-in > ul > li > a:hover{
    color: red;
}
.menu-wrap .menu.hover.open ~ .menu-wrap{
    visibility: visible;
}
.menu-wrap .menu.open ~ .menu-wrap{
    visibility: visible;
}
.menu-wrap .menu.hover.open ~ .menu-in > ul{
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    z-index: 1000;
}
.menu-wrap .menu.open ~ .menu-in > ul{
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    z-index: 1000;
}
.menu-wrap .menu.hover.open ~ .menu-in > svg{
    visibility: visible;
    transform: translateX(0);
    z-index: 999;
    opacity: 1;
}
.menu-wrap .menu.open ~ .menu-in > svg{
    visibility: visible;
    transform: translateX(0);
    z-index: 999;
    opacity: 1;
}
.menu-wrap .menu:hover{
    z-index: 1000;
    filter: brightness(1.25);
    transition: all .5s;
}
.menu-wrap .menu.hover.open:hover{
    z-index: 1000;
    filter: brightness(1.25);
    transition: all .5s;
}


/* Landing - Linky */
.landing .links{
    position: absolute;
    top: 0;
    left: 60vw;
    height: 30.5vh;
    width: 12.5vw;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    transition: opacity 2s;
}
.landing .links-bg{
    position: absolute;
    top: 26.5vh;
    left: 59.5vw;
    height: 4vh;
    width: 12.5vw;
    z-index: 0;
    border-radius: 10px 10px 0 0;
    animation: back 1.5s infinite linear;
    animation-delay: 5s;
    opacity: 1;
    transition: 2s;
}
.landing .links > a{
    position: absolute;
    font-size: 30px;
    margin: 0 10rem 0 15px;
    z-index: 2;
    pointer-events: all;
    text-decoration: none;
    top: 27vh;
    animation: bounce 5s;
    animation-timing-function: linear; 
    transition: opacity 3s, filter .3s;
    opacity: 1;
}
@media (min-width: 1199px) {
@keyframes back{
    0%{
        background-color: rgba(255,255,255,.0);
        backdrop-filter: blur(0);
    }
    50%{
        background-color: rgba(255,255,255,.02);
        backdrop-filter: blur(2px);
    }
    0%{
        background-color: rgba(255,255,255,.0);
        backdrop-filter: blur(0);
    }
}
@keyframes bounce{
    0%{
        top: -20vh;
        opacity: 0;
    }
    58.999%{
        top: -20vh;
        opacity: 0;
    }
    59%{
        top: -20vh;
        opacity: 1;
    }
    67%{
        top: 27vh;
        opacity: 1;
    }
    72%{
        top: 17vh;
        opacity: 1;
    }
    77%{
        top: 27vh;
        opacity: 1;
    }
    81%{
        top: 20vh;
        opacity: 1;
    }
    85%{
        top: 27vh;
        opacity: 1;
    }
    88.75%{
        top: 23vh;
        opacity: 1;
    }
    92.5%{
        top: 27vh;
        opacity: 1;
    }
    95%{
        top: 25vh;
        opacity: 1;
    }
    97.5%{
        top: 27vh;
        opacity: 1;
    }
    98.75%{
        top: 26vh;
        opacity: 1;
    }
    99%{
        top: 27vh;
        opacity: 1;
    }
    99.5%{
        top: 26.5vh;
        opacity: 1;
    }
    100%{
        top: 27vh;
        opacity: 1;
    }
}
}
.landing .links > a:nth-child(1){
    font-size: 30px;
    z-index: 2;
    color: rgb(88, 119, 255);
    animation-delay: -.8s;
    margin: 0 0 0 0;
}
/* Start Line*/
.landing .links > a:nth-child(1)::after{
    display: block;
    content: '';
    border-top: solid 3px rgb(88, 119, 255);
    transform: scaleX(0);  
    transition: transform 250ms ease-in-out;
}
.landing .links > a:nth-child(1):hover::after{
    transform: scaleX(1);  
}
/* End Line */
.landing .links > a:nth-child(1):hover{
    filter: contrast(.5);
}
.landing .links > a:nth-child(2){
    font-size: 30px;
    margin: 3px 3px 0 2.5vw;
    z-index: 2;
    color: purple;
    animation-delay: -.6s;
}
/* Start Line*/
.landing .links > a:nth-child(2)::after{
    display: block;
    content: '';
    border-top: solid 3px purple;
    margin-top: -3px;
    transform: scaleX(0);  
    transition: transform 250ms ease-in-out;
}
.landing .links > a:nth-child(2):hover::after{
    transform: scaleX(1);  
}
/* End Line */
.landing .links > a:nth-child(2):hover{
    filter: contrast(.5);
}
.landing .links > a:nth-child(3){
    font-size: 30px;
    margin: 0 0 0 5vw;
    z-index: 2;
    color: rgb(170, 2, 2);
    animation-delay: -.4s;
}
/* Start Line*/
.landing .links > a:nth-child(3)::after{
    display: block;
    content: '';
    border-top: solid 3px rgb(170, 2, 2);
    transform: scaleX(0);  
    transition: transform 250ms ease-in-out;
}
.landing .links > a:nth-child(3):hover::after{
    transform: scaleX(1);  
}
/* End Line */
.landing .links > a:nth-child(3):hover{
    filter: contrast(.5);
}
.landing .links > a:nth-child(4){
    font-size: 30px;
    margin: 0 0 0 7.5vw;
    z-index: 2;
    color: rgb(52, 82, 141);
    animation-delay: -.2s;
}
/* Start Line*/
.landing .links > a:nth-child(4)::after{
    display: block;
    content: '';
    border-top: solid 3px rgb(52, 82, 141);
    transform: scaleX(0);  
    transition: transform 250ms ease-in-out;
}
.landing .links > a:nth-child(4):hover::after{
    transform: scaleX(1);  
}
/* End Line */
.landing .links > a:nth-child(4):hover{
    filter: contrast(.5);
}
.landing .links > a:nth-child(5){
    font-size: 30px;
    margin: 0 0 0 10vw;
    z-index: 2;
    color: gray;
    margin-right: 15px;
    animation-delay: 0s;
}
/* Start Line*/
.landing .links > a:nth-child(5)::after{
    display: block;
    content: '';
    border-top: solid 3px gray;
    transform: scaleX(0);  
    transition: transform 250ms ease-in-out;
}
.landing .links > a:nth-child(5):hover::after{
    transform: scaleX(1);  
}
/* End Line */
.landing .links > a:nth-child(5):hover{
    color: darkgray;
}
/* Navbar */
.menu{
    position: fixed;
    border: 0 none;
    cursor: pointer;
    right: 40px;
    top: 30px;
    color: white;
    z-index: 99;
    width: 40px;
    height: 28px;
}
.menu-burger{
    position: absolute;
    top: 10px;
    right: 0px;
    width: 40px;
    height: 5px;
    background-image: url(img/fire.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(255,101,47,.2);
    transition: all .3s ease-in-out;
}
.menu-burger::before, .menu-burger::after{
    content: '';
    position: absolute;
    width: 40px;
    height: 5px;
    background-image: url(img/fire.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(255,101,47,.2);
    transition: all .3s ease-in-out;
}
.menu-burger::before{
    transform: translateY(-12px);
}
.menu-burger::after{
    transform: translateY(12px);
}
/* Animation */

.menu.hover.open .menu-burger{
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
}
.menu.hover.open .menu-burger::before{
    transform: rotate(45deg) translate(35px, -35px);
    z-index: 999;
}
.menu.hover.open .menu-burger::after{
    transform: rotate(-45deg) translate(35px, 35px);
    z-index: 999;
}
.menu.open .menu-burger{
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
    visibility: hidden;
}
.menu.open .menu-burger::before{
    transform: rotate(45deg) translate(35px, -35px);
    background-image: url(img/fire.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    visibility: visible;
}
.menu.open .menu-burger::after{
    transform: rotate(-45deg) translate(35px, 35px);
    background-image: url(img/fire.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
    visibility: visible;
}

.menu.open{
    color: darkred;
    z-index: 1000;
    transition: all .5s;
}
.menu.hover .menu-burger::before{
    transform: translate(0px, -15px);
}
.menu.hover .menu-burger::after{
    transform: translate(0px, 15px);
}
#scroll {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border: none;
    outline: none;
    background-color: rgba(0,0,0,.25);
    color: white;
    cursor: pointer;
    padding: 11px;
    border-radius: 50%;
    transition: all .4s ease;
    z-index: 9;
}
/* Klipy */

.clip-container{
    position: relative;
    top: 0vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(img/clip-bg2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* Klipy - text */
.clip-container > h1 {
    position: absolute;
    top: 0rem;
    width: 100%;
    font-size: 2em;
    font-family: 'Amethysta', serif;
    text-align: center;
    line-height: 1.4em;
    text-transform: uppercase;
    letter-spacing: .3em;
    white-space:nowrap;
    cursor: default;
    margin: 0 auto;
}
  
.clip-container > h1 > span {
    color: #000;
    font-size: 5em;
    font-family: 'Caesar Dressing', cursive;
    text-transform: lowercase;
    vertical-align: middle;
    letter-spacing: .2em;
}
@media (min-width: 1199px) {
.clip-container .fire {
    animation: animation 1s ease-in-out infinite alternate;
    -moz-animation: animation 1s ease-in-out infinite alternate;
    -webkit-animation: animation 1s ease-in-out infinite alternate;
    -o-animation: animation 1s ease-in-out infinite alternate;
}
  
.clip-container .burn {
    animation: animation .65s ease-in-out infinite alternate;
    -moz-animation: animation .65s ease-in-out infinite alternate;
    -webkit-animation: animation .65s ease-in-out infinite alternate;
    -o-animation: animation .65s ease-in-out infinite alternate;
}

@keyframes animation
{
0% {text-shadow: 0 0 20px #fefcc9,
  10px -10px 30px #feec85,
  -20px -20px 40px #ffae34,
  20px -40px 50px #ec760c,
  -20px -60px 60px #cd4606,
  0 -80px 70px #973716,
  10px -90px 80px #451b0e;}
100% {text-shadow: 0 0 20px #fefcc9,
  10px -10px 30px #fefcc9,
  -20px -20px 40px #feec85,
  22px -42px 60px #ffae34,
  -22px -58px 50px #ec760c,
  0 -82px 80px #cd4606,
  10px -90px 80px  #973716;}
}

@-moz-keyframes animation
{
0% {text-shadow: 0 0 20px #fefcc9,
  10px -10px 30px #feec85,
  -20px -20px 40px #ffae34,
  20px -40px 50px #ec760c,
  -20px -60px 60px #cd4606,
  0 -80px 70px #973716,
  10px -90px 80px #451b0e;}
100% {text-shadow: 0 0 20px #fefcc9,
  10px -10px 30px #fefcc9,
  -20px -20px 40px #feec85,
  22px -42px 60px #ffae34,
  -22px -58px 50px #ec760c,
  0 -82px 80px #cd4606,
  10px -90px 80px  #973716;}
}

@-webkit-keyframes animation
{
0% {text-shadow: 0 0 20px #fefcc9,
  10px -10px 30px #feec85,
  -20px -20px 40px #ffae34,
  20px -40px 50px #ec760c,
  -20px -60px 60px #cd4606,
  0 -80px 70px #973716,
  10px -90px 80px #451b0e;}
100% {text-shadow: 0 0 20px #fefcc9,
  10px -10px 30px #fefcc9,
  -20px -20px 40px #feec85,
  22px -42px 60px #ffae34,
  -22px -58px 50px #ec760c,
  0 -82px 80px #cd4606,
  10px -90px 80px  #973716;}
}

@-o-keyframes animation
{
0% {text-shadow: 0 0 20px #fefcc9,
  10px -10px 30px #feec85,
  -20px -20px 40px #ffae34,
  20px -40px 50px #ec760c,
  -20px -60px 60px #cd4606,
  0 -80px 70px #973716,
  10px -90px 80px #451b0e;}
100% {text-shadow: 0 0 20px #fefcc9,
  10px -10px 30px #fefcc9,
  -20px -20px 40px #feec85,
  22px -42px 60px #ffae34,
  -22px -58px 50px #ec760c,
  0 -82px 80px #cd4606,
  10px -90px 80px  #973716;}
}
}
@media (max-width: 1199px) {
    .clip-container .fire {
        text-shadow: 0 0 20px #fefcc9,
  10px -10px 30px #feec85,
  -20px -20px 40px #ffae34,
  20px -40px 50px #ec760c,
  -20px -60px 60px #cd4606,
  0 -80px 70px #973716,
  10px -90px 80px #451b0e;
    }
      
    .clip-container .burn {
        text-shadow: 0 0 20px #fefcc9,
  10px -10px 30px #feec85,
  -20px -20px 40px #ffae34,
  20px -40px 50px #ec760c,
  -20px -60px 60px #cd4606,
  0 -80px 70px #973716,
  10px -90px 80px #451b0e;
    }
}
/* Klipy - iframe*/
#carouselExampleIndicators{
    top: 0rem;
    height: 33vw;
    width: 44vw;
    margin: 0 auto;
    padding-top: 10rem;
    z-index: 2;
}
.carousel-control-prev{
    margin-top: 25rem;
    width: 20px;
    height: 20px;
    margin-left: -2rem;
}
.carousel-control-next{
    margin-top: 25rem;
    width: 20px;
    height: 20px;
    margin-right: -2rem;
}
.carousel-inner {
    border-radius: 20px;
}
.carousel.slide{
    transform: translateY(0);
    transition: 1s;
    opacity: 1;
}
/* Scrollbar */
::-webkit-scrollbar{
    width: 12px;
    background: rgba();
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(transparent,rgb(97, 1, 1));
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover{
    background: linear-gradient(transparent,rgb(233, 0, 0));
}
/* Voting */
.vote-container{
    position: relative;
    top: -5vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(img/video-bg2.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
/* Voting - text*/
.vote-container > h1 {
    position: absolute;
    top: -7rem;
    width: 100%;
    font-size: 2em;
    font-family: 'Amethysta', serif;
    text-align: center;
    line-height: 1.4em;
    text-transform: uppercase;
    letter-spacing: .3em;
    white-space:nowrap;
    cursor: default;
    margin: 0 auto;
    z-index: 1;
}
.vote-container > h2 {
    position: absolute;
    top: 3rem;
    width: 100%;
    font-size: 1.6em;
    font-family: 'Amethysta', serif;
    text-align: center;
    line-height: 1.4em;
    text-transform: uppercase;
    letter-spacing: .3em;
    white-space:nowrap;
    cursor: default;
    margin: 0 auto;
    z-index: 1;
}
.vote-container > img{
    position: absolute;
    top: -26rem;
    left: -30rem;
    animation: rocker 10s ease-in-out infinite;
    transform: rotate(45deg);
}
@keyframes rocker{
    0%{
        transform: rotate(0) translateX(-20vw);
        opacity: 1;
    }
    30%{
        transform: rotate(0) translateX(-20vw);
        opacity: 0;
    }
    40%{
        transform: rotate(45deg) translateX(0);
        opacity: 1;
    }
    60%{
        transform: rotate(45deg) translateX(0);
        opacity: 1;
    }
    70%{
        transform: rotate(0) translateX(-20vw);
        opacity: 0;
    }
    100%{
        transform: rotate(0) translateX(-20vw);
        opacity: 0;
    }
}
.vote-container > h1 > span {
    color: #000;
    font-size: 5em;
    font-family: 'Caesar Dressing', cursive;
    text-transform: lowercase;
    vertical-align: middle;
    letter-spacing: .2em;
}
.vote-container > h2 > span {
    color: #000;
    font-size: 5em;
    font-family: 'Caesar Dressing', cursive;
    text-transform: lowercase;
    vertical-align: middle;
    letter-spacing: .2em;
}
@media (min-width: 1199px) {
.vote-container .fire {
    animation: animation 1s ease-in-out infinite alternate;
    -moz-animation: animation 1s ease-in-out infinite alternate;
    -webkit-animation: animation 1s ease-in-out infinite alternate;
    -o-animation: animation 1s ease-in-out infinite alternate;
}
  
.vote-container .burn {
    animation: animation .65s ease-in-out infinite alternate;
    -moz-animation: animation .65s ease-in-out infinite alternate;
    -webkit-animation: animation .65s ease-in-out infinite alternate;
    -o-animation: animation .65s ease-in-out infinite alternate;
}
}
@media (max-width: 1199px) {
    .vote-container .fire {
        text-shadow: 0 0 20px #fefcc9,
  10px -10px 30px #feec85,
  -20px -20px 40px #ffae34,
  20px -40px 50px #ec760c,
  -20px -60px 60px #cd4606,
  0 -80px 70px #973716,
  10px -90px 80px #451b0e;
    }
      
    .vote-container .burn {
        text-shadow: 0 0 20px #fefcc9,
  10px -10px 30px #feec85,
  -20px -20px 40px #ffae34,
  20px -40px 50px #ec760c,
  -20px -60px 60px #cd4606,
  0 -80px 70px #973716,
  10px -90px 80px #451b0e;
    }
}
.poll{
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: -85vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: default;
    opacity: 1;
    transform: translateY(0);
    transition: transform 1s;
}
.title{
    font-size: 38px;
    -webkit-text-stroke: 2px black;
    color: darkred;
    font-family: 'Piedra', cursive;
    width: fit-content;
    margin: 0 auto;   
}
.tabulka{
    position: relative;
    width: 40vw;
    margin: 0 auto;   
    border-radius: 7px;
    backdrop-filter: blur(5px);
    border: 4px;
    border-color: rgba(0,0,0,.4);
    border-style: solid;
    height: fit-content;
}
.bg-info{
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: rgb(255, 255, 255, .8);
    background-image: linear-gradient(to right, rgb(196, 160, 2), red, black);
}
.bg-info{
    text-decoration: none;
}
.voting{
    position: relative;
    color: red;
    filter: drop-shadow(2px 2px rgb(141, 37, 37));
    -webkit-text-stroke: .3px black;
    width: fit-content;
    text-align: center;
    top: 5rem;
    font-size: 24px;
    font-weight: bold;
}
.voting .twitch-btn > a{
    position: relative;
    top: -6rem;
}
.voting .twitch-btn > a > img{
    border-radius: 10px;
    box-shadow: 5px 5px 10px #493079;
}
.voting .twitch-btn{
    width: 99vw;
    text-align: center;
}
.error{
    position: relative;
    color: red;
    filter: drop-shadow(2px 2px rgb(141, 37, 37));
    -webkit-text-stroke: .3px black;
    width: 99vw;
    text-align: center;
    top: 11rem;
    font-size: 24px;
    font-weight: bold;
}

/* Copyright */
.copyright > span{
    position: absolute;
    width: 100%;
    font-weight: bolder;
    text-align: center;
    font-family: 'Amethysta', serif;
    color: rgb(82, 0, 0);
    filter: drop-shadow(1px 1px rgb(53, 14, 14));
    margin-top: -2rem;
    cursor: default;
}
@media (max-width: 1199px) {
    .carousel.slide{
        transform: translateY(0)!important;
        opacity: 1!important;
    }
    
    .stream{
        transform: translateX(0)!important;
        opacity: 1!important;
        scale: 1!important;
        -moz-transform: scale(1,1) translateX(0)!important;
        -webkit-transform: scale(1,1) translateX(0)!important;
        -o-transform: scale(1,1) translateX(0)!important;
    }
    
    .chat-icon{
        transform: rotate(0deg)!important;
        scale: 1!important;
        opacity: 1!important;
    }
    
    .landing .links{
        opacity: 1!important;
    }
    
    .landing .links-bg{
        opacity: 1!important;
    }
    .vote-container ~ .poll{
        opacity: 1!important;
        transform: translateY(0)!important;
    }
}
.tabulka > table > tbody > tr > td > a{
    text-decoration: none;
    cursor: default;
}
.tabulka > table > tbody > tr > td > a > div:hover{
    cursor: pointer;
    color: white;
    transition: .3s;
}
/* Editor */
.editor-input{
    background: rgba(255,255,255,.3);
    border-color: gray;
    border-radius: 10px;
    color: darkred;
    font-weight: bold;
}
.editor-input:focus{
    color: red;
    background: rgba(255,255,255,.7);
    outline: none;
}
.editor-button{
    border-style: solid;
    border-bottom-color: darkred;
    border-right-color: darkred;
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 2px;
    border-bottom-width: 3px;
    background: rgba(255,0,0,.65);
    border-radius: 15px;
    font-weight: 800;
}
.editor-button:hover{
    border-bottom-color: red;
    border-right-color: red;
    background: rgba(255,0,0,1);
    transition: .3s;
}
.editor-win{
    font-weight: bold;
    color: red;
    width: fit-content;
    border-radius: 3px;
    background: rgba(0,0,0,.5);
    margin: 0 auto;
}
.editor-container{
    width: 99vw;
    align-items: center;
    justify-content: center;
}
.align-items-center{
    width: 99vw;
}
/* Log In */
.login-btn{
    border-radius: 4px;
    border-color: darkred;
    background-color: rgb(0,0,0,0);
    color: darkred;
    font-weight: bold;
    transition: .3s;
    padding: .25rem .5rem;
}
.login-btn:focus{
    outline: none;
}
.login-btn:hover{
    color: rgba(0,0,0,1);
    background-color: rgb(170, 0, 0, .8);
}
/* Log In Form*/
#loginModal{
    padding-right: 0;
}
#login-dialogModal{
    margin: 10rem auto;
}
.modal-content{
    background-color: rgba(255,255,255,.7);
    border-radius: 15px;
    overflow: hidden;
}
.modal-header{
    border:none;
}
.modal-footer{
    border:none;
}
.login-modal-title{
    color: darkred;
    font-weight: bold;
    cursor: default;
    margin: 0 auto;
}
.login-close{
    background: rgba(0,0,0,0);
    border-radius: 50%;
    color: darkred;
    border: 2px solid darkred;
    height: 30px;
    width: 30px;
    font-weight: 900;
}
.login-close:hover{
    background: rgba(140,0,0,1);
    color: black;
    transition: .3s;
}
.login-close:focus{
    outline: none;
}
/* Nickname */
.login-input-nickname{
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 100%;
    height: 2.5rem;
    margin-top: -1rem;
}
.login-input-nickname:focus{
    outline: none;
}
.login-content-nickname{
    position: absolute;
    top: 10px;
    left: 0;
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.login-label-nickname{
    position: absolute;
    top: -.5rem;
    left: 1rem;
    width: 93.5%;
    height: 2.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
.login-label-nickname::after {
    content: "";
    position: absolute;
    left: 0rem;
    bottom: -2px;
    height: 100%;
    width: 100%;
    border-bottom: 3px solid red;
    transform: translateX(-105%);
    transition: all 0.3s ease;
}

.login-input-nickname:focus+.login-label-nickname .login-content-nickname,
.login-input-nickname:valid+.login-label-nickname .login-content-nickname {
    transform: translateY(-100%);
    font-size: 14px;
    color: red;
}

.login-input-nickname:focus+.login-label-nickname::after,
.login-input-nickname:valid+.login-label-nickname::after {
    transform: translateX(0%);
}
/* Password */
.login-input-password{
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 100%;
    height: 2.5rem;
    margin-top: 1.5rem;
}
.login-input-password:focus{
    outline: none;
}
.login-content-password{
    position: absolute;
    top: 10px;
    left: 0;
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.login-label-password{
    position: absolute;
    bottom: 1.5rem;
    left: 1rem;
    width: 93.5%;
    height: 2.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
.login-label-password::after {
    content: "";
    position: absolute;
    left: 0rem;
    bottom: -2px;
    height: 100%;
    width: 100%;
    border-bottom: 3px solid red;
    transform: translateX(-105%);
    transition: all 0.3s ease;
}
.login-input-password:focus+.login-label-password .login-content-password,
.login-input-password:valid+.login-label-password .login-content-password {
    transform: translateY(-100%);
    font-size: 14px;
    color: red;
}
.login-input-password:focus+.login-label-password::after,
.login-input-password:valid+.login-label-password::after {
    transform: translateX(0%);
}
/* Others */
.login-btn-form{
    border-style: solid;
    border-bottom-color: darkred;
    border-right-color: darkred;
    border-top-color: darkred;
    border-left-color: darkred;
    border-top-width: 1px;
    border-left-width: 1px;
    border-right-width: 2px;
    border-bottom-width: 3px;
    background: rgba(255,0,0,0);
    color: darkred;
    border-radius: 7px;
    font-weight: 800;
    padding: .375rem .75rem;
}
.login-btn-form:hover{
    border-bottom-color: red;
    border-right-color: red;
    background: rgba(140,0,0,1);
    color:black;
    transition: .3s;
}
.login-btn-form:focus{
    outline: none;
}
.login_links > li{
    list-style: none;
}
.login_links > li > a:hover{
    color: red!important;
    transition: .3s;
}
.login-no-acc{
    color: darkred!important;
    font-weight: bold;
    cursor: pointer;
}
.login-no-pass{
    color: darkred!important;
    font-weight: bold;
    cursor: pointer;
}
.form-group{
    margin-bottom: 0;
}
/* Sign Up */
#signup-dialogModal{
    margin: 10rem auto;
}
.signup-modal-title{
    color: darkred;
    font-weight: bold;
    cursor: default;
    margin: 0 auto;
}
.signup-close{
    background: rgba(0,0,0,0);
    border-radius: 50%;
    color: darkred;
    border: 2px solid darkred;
    height: 30px;
    width: 30px;
    font-weight: 900;
}
.signup-close:hover{
    background: rgba(140,0,0,1);
    color: black;
    transition: .3s;
}
.signup-close:focus{
    outline: none;
}
.signup-btn-form{
    border-style: solid;
    border-bottom-color: darkred;
    border-right-color: darkred;
    border-top-color: darkred;
    border-left-color: darkred;
    border-top-width: 1px;
    border-left-width: 1px;
    border-right-width: 2px;
    border-bottom-width: 3px;
    background: rgba(255,0,0,0);
    color: darkred;
    border-radius: 7px;
    font-weight: 800;
    padding: .375rem .75rem;
}
.signup-btn-form:hover{
    border-bottom-color: red;
    border-right-color: red;
    background: rgba(140,0,0,1);
    color:black;
    transition: .3s;
}
.signup-btn-form:focus{
    outline: none;
}
.signup-acc{
    color: darkred!important;
    font-weight: bold;
    cursor: pointer;
}
/* First Name */
.signup-input-fname{
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: -1rem;
}
.signup-input-fname:focus{
    outline: none;
}
.signup-content-fname{
    position: absolute;
    top: 10px;
    left: 0rem;
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.signup-label-fname{
    position: absolute;
    top: .25rem;
    left: 2rem;
    width: 39.5%;
    height: 2.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
.signup-label-fname::after {
    content: "";
    position: absolute;
    left: 0rem;
    bottom: -2px;
    height: 100%;
    width: 100%;
    border-bottom: 3px solid red;
    transform: translateX(-120%);
    transition: all 0.3s ease;
}
.signup-input-fname:focus+.signup-label-fname .signup-content-fname,
.signup-input-fname:valid+.signup-label-fname .signup-content-fname {
    transform: translateY(-100%);
    font-size: 14px;
    color: red;
}
.signup-input-fname:focus+.signup-label-fname::after,
.signup-input-fname:valid+.signup-label-fname::after {
    transform: translateX(0%);
}
/* Last Name */
.signup-input-lname{
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: -1rem;
    margin-left: 2.25rem;
}
.signup-input-lname:focus{
    outline: none;
}
.signup-content-lname{
    position: absolute;
    top: 10px;
    left: 0rem;
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.signup-label-lname{
    position: absolute;
    top: .25rem;
    left: 16.7rem;
    width: 39.5%;
    height: 2.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
.signup-label-lname::after {
    content: "";
    position: absolute;
    left: 0rem;
    bottom: -2px;
    height: 100%;
    width: 100%;
    border-bottom: 3px solid red;
    transform: translateX(220%);
    transition: all 0.3s ease;
}
.signup-input-lname:focus+.signup-label-lname .signup-content-lname,
.signup-input-lname:valid+.signup-label-lname .signup-content-lname {
    transform: translateY(-100%);
    font-size: 14px;
    color: red;
}

.signup-input-lname:focus+.signup-label-lname::after,
.signup-input-lname:valid+.signup-label-lname::after {
    transform: translateX(0%);
}
/* Nickname */
.signup-input-f_nickname{
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: 1rem;
}
.signup-input-f_nickname:focus{
    outline: none;
}
.signup-content-f_nickname{
    position: absolute;
    top: 10px;
    left: 0rem;
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.signup-label-f_nickname{
    position: absolute;
    top: 3.75rem;
    left: 2rem;
    width: 39.5%;
    height: 2.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
.signup-label-f_nickname::after {
    content: "";
    position: absolute;
    left: 0rem;
    bottom: -2px;
    height: 100%;
    width: 100%;
    border-bottom: 3px solid red;
    transform: translateX(-120%);
    transition: all 0.3s ease;
}
.signup-input-f_nickname:focus+.signup-label-f_nickname .signup-content-f_nickname,
.signup-input-f_nickname:valid+.signup-label-f_nickname .signup-content-f_nickname {
    transform: translateY(-100%);
    font-size: 14px;
    color: red;
}
.signup-input-f_nickname:focus+.signup-label-f_nickname::after,
.signup-input-f_nickname:valid+.signup-label-f_nickname::after {
    transform: translateX(0%);
}
/* E-mail */
.signup-input-mail{
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: 1rem;
    margin-left: 2.25rem;
}
.signup-input-mail:focus{
    outline: none;
}
.signup-content-mail{
    position: absolute;
    top: 10px;
    left: 0rem;
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.signup-label-mail{
    position: absolute;
    top: 3.75rem;
    left: 16.7rem;
    width: 39.5%;
    height: 2.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
.signup-label-mail::after {
    content: "";
    position: absolute;
    left: 0rem;
    bottom: -2px;
    height: 100%;
    width: 100%;
    border-bottom: 3px solid red;
    transform: translateX(220%);
    transition: all 0.3s ease;
}
.signup-input-mail:focus+.signup-label-mail .signup-content-mail,
.signup-input-mail:valid+.signup-label-mail .signup-content-mail {
    transform: translateY(-100%);
    font-size: 14px;
    color: red;
}

.signup-input-mail:focus+.signup-label-mail::after,
.signup-input-mail:valid+.signup-label-mail::after {
    transform: translateX(0%);
}
/* Password 1 */
.signup-input-password1{
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: 1rem;
}
.signup-input-password1:focus{
    outline: none;
}
.signup-content-password1{
    position: absolute;
    top: 10px;
    left: 0rem;
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.signup-label-password1{
    position: absolute;
    top: 7.25rem;
    left: 2rem;
    width: 39.5%;
    height: 2.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
.signup-label-password1::after {
    content: "";
    position: absolute;
    left: 0rem;
    bottom: -2px;
    height: 100%;
    width: 100%;
    border-bottom: 3px solid red;
    transform: translateX(-120%);
    transition: all 0.3s ease;
}
.signup-input-password1:focus+.signup-label-password1 .signup-content-password1,
.signup-input-password1:valid+.signup-label-password1 .signup-content-password1 {
    transform: translateY(-100%);
    font-size: 14px;
    color: red;
}
.signup-input-password1:focus+.signup-label-password1::after,
.signup-input-password1:valid+.signup-label-password1::after {
    transform: translateX(0%);
}
/* Password 2 */
.signup-input-password2{
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: 1rem;
    margin-left: 2.25rem;
}
.signup-input-password2:focus{
    outline: none;
}
.signup-content-password2{
    position: absolute;
    top: 10px;
    left: 0rem;
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.signup-label-password2{
    position: absolute;
    top: 7.25rem;
    left: 16.7rem;
    width: 39.5%;
    height: 2.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
.signup-label-password2::after {
    content: "";
    position: absolute;
    left: 0rem;
    bottom: -2px;
    height: 100%;
    width: 100%;
    border-bottom: 3px solid red;
    transform: translateX(220%);
    transition: all 0.3s ease;
}
.signup-input-password2:focus+.signup-label-password2 .signup-content-password2,
.signup-input-password2:valid+.signup-label-password2 .signup-content-password2 {
    transform: translateY(-100%);
    font-size: 14px;
    color: red;
}
.signup-input-password2:focus+.signup-label-password2::after,
.signup-input-password2:valid+.signup-label-password2::after {
    transform: translateX(0%);
}
/* Forgot */
.forgot-modal-title{
    color: darkred;
    font-weight: bold;
    cursor: default;
    margin: 0 auto;
}
.forgot-close{
    background: rgba(0,0,0,0);
    border-radius: 50%;
    color: darkred;
    border: 2px solid darkred;
    height: 30px;
    width: 30px;
    font-weight: 900;
}
.forgot-close:hover{
    background: rgba(140,0,0,1);
    color: black;
    transition: .3s;
}
.forgot-close:focus{
    outline: none;
}
#forgot-dialogModal{
    margin: 10rem auto;
}
.forgot-input-f_mail{
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 100%;
    height: 2.5rem;
    margin-top: -1rem;
}
.forgot-input-f_mail:focus{
    outline: none;
}
.forgot-content-f_mail{
    position: absolute;
    top: 10px;
    left: 0;
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.forgot-label-f_mail{
    position: absolute;
    top: -.5rem;
    left: 1rem;
    width: 93.5%;
    height: 2.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
.forgot-label-f_mail::after {
    content: "";
    position: absolute;
    left: 0rem;
    bottom: -2px;
    height: 100%;
    width: 100%;
    border-bottom: 3px solid red;
    transform: translateX(-105%);
    transition: all 0.3s ease;
}

.forgot-input-f_mail:focus+.forgot-label-f_mail .forgot-content-f_mail,
.forgot-input-f_mail:valid+.forgot-label-f_mail .forgot-content-f_mail {
    transform: translateY(-100%);
    font-size: 14px;
    color: red;
}

.forgot-input-f_mail:focus+.forgot-label-f_mail::after,
.forgot-input-f_mail:valid+.forgot-label-f_mail::after {
    transform: translateX(0%);
}
.forgot-btn-form{
    border-style: solid;
    border-bottom-color: darkred;
    border-right-color: darkred;
    border-top-color: darkred;
    border-left-color: darkred;
    border-top-width: 1px;
    border-left-width: 1px;
    border-right-width: 2px;
    border-bottom-width: 3px;
    background: rgba(255,0,0,0);
    color: darkred;
    border-radius: 7px;
    font-weight: 800;
    padding: .375rem .75rem;
    margin: 0 auto;
}
.forgot-btn-form:hover{
    border-bottom-color: red;
    border-right-color: red;
    background: rgba(140,0,0,1);
    color:black;
    transition: .3s;
}
.forgot-btn-form:focus{
    outline: none;
}

#form-messages{
    background-color: rgb(255, 232,232, .7);
    border: 1px solid red;
    color: red;
    display: none;
    font-size: 12px;
    font-weight: bold;
    margin: 0 auto;
    padding: 10px 25px;
    max-width: 250px;
    border-radius: 5px;
}
#form-l-messages{
    background-color: rgb(255, 232,232, .7);
    border: 1px solid red;
    color: red;
    display: none;
    font-size: 12px;
    font-weight: bold;
    margin: 0 auto;
    padding: 10px 25px;
    max-width: 250px;
    border-radius: 5px;
}
#form-e-messages{
    background-color: rgb(255, 232,232, .7);
    border: 1px solid red;
    color: red;
    display: none;
    font-size: 12px;
    font-weight: bold;
    margin: 0 auto;
    padding: 10px 25px;
    max-width: 250px;
    border-radius: 5px;
}
#form-f-messages{
    background-color: rgb(255, 232,232, .7);
    border: 1px solid red;
    color: red;
    display: none;
    font-size: 12px;
    font-weight: bold;
    margin: 0 auto;
    padding: 10px 25px;
    max-width: 250px;
    border-radius: 5px;
}
#form-f-msg-messages{
    background-color: rgba(255, 252, 203, 0.7);
    border: 1px solid #ffeeba;
    color: #856404;
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin: 0 auto;
    padding: 10px 25px;
    max-width: 350px;
    border-radius: 5px;
    margin-top: .3rem;
}
.menu-in > ul > li > p > a{
    text-decoration: none;
    list-style: none;
    font-size: 24px;
    font-family: 'Spicy Rice', cursive;
    color: darkred;
    transition: 1s;
}
.menu-in > ul > li > p > a:hover{
    text-decoration: none;
    color: red;
}
.menu-in > ul > li > a > img{
   cursor: pointer;
}
/* Account */
.account-modal-title{
    color: darkred;
    font-weight: bold;
    cursor: default;
    margin: 0 auto;
}
.account-close{
    background: rgba(0,0,0,0);
    border-radius: 50%;
    color: darkred;
    border: 2px solid darkred;
    height: 30px;
    width: 30px;
    font-weight: 900;
}
.account-close:hover{
    background: rgba(140,0,0,1);
    color: black;
    transition: .3s;
}
.account-close:focus{
    outline: none;
}
#account-dialogModal{
    margin: 10rem auto;
}
.account-btn-form{
    border-style: solid;
    border-bottom-color: darkred;
    border-right-color: darkred;
    border-top-color: darkred;
    border-left-color: darkred;
    border-top-width: 1px;
    border-left-width: 1px;
    border-right-width: 2px;
    border-bottom-width: 3px;
    background: rgba(255,0,0,0);
    color: darkred;
    border-radius: 7px;
    font-weight: 800;
    padding: .375rem .75rem;
    margin: 0 auto;
}
.account-btn-form:hover{
    border-bottom-color: red;
    border-right-color: red;
    background: rgba(140,0,0,1);
    color:black;
    transition: .3s;
}
.account-btn-form:focus{
    outline: none;
}
#account-dialogModal > div > div > div > input{
    cursor: default;
}
/* First name */
.account-input-fname{
    position: absolute;
    top: 5%;
    left: 5.5%;
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 42.5%;
    height: 2.5rem;
    margin-top: 1rem;
}
.account-input-fname:focus{
    outline: none;
}
.account-content-fname{
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.account-label-fname{
    width: 42.5%;
    margin-left: 2.5%;
    height: 2.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
/* Last name */
.account-input-lname{
    position: absolute;
    top: 5%;
    left: 54.5%;
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: 1rem;
}
.account-input-lname:focus{
    outline: none;
}
.account-content-lname{
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.account-label-lname{
    width: 42.5%;
    margin-left: 9%;
    height: 2.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
/* Nickname */
.account-input-nickname{
    position: absolute;
    top: 31.75%;
    left: 5.5%;
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: 1rem;
}
.account-input-nickname:focus{
    outline: none;
}
.account-content-nickname{
    position: absolute;
    transform: translateY(-150%);
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.account-label-nickname{
    width: 42.5%;
    margin-left: 2.5%;
    margin-top: 12%;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
/* E-mail */
.account-input-mail{
    position: absolute;
    top: 31.75%;
    left: 54.5%;
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: 1rem;
}
.account-input-mail:focus{
    outline: none;
}
.account-content-mail{
    position: absolute;
    transform: translateY(-150%);
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.account-label-mail{
    width: 42.5%;
    margin-left: 9%;
    margin-top: 12%;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
/* Password 1 */
.account-input-password1{
    position: absolute;
    top: 65%;
    left: 5.5%;
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: 1rem;
}
.account-input-password1:focus{
    outline: none;
}
.account-content-password1{
    position: absolute;
    transform: translateY(-150%);
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.account-label-password1{
    width: 42.5%;
    margin-left: 2.5%;
    margin-top: 12%;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
/* Password 2 */
.account-input-password2{
    position: absolute;
    top: 65%;
    left: 54.5%;
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: 1rem;
}
.account-input-password2:focus{
    outline: none;
}
.account-content-password2{
    position: absolute;
    transform: translateY(-150%);
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.account-label-password2{
    width: 42.5%;
    margin-left: 9%;
    margin-top: 12%;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
/* Edit Account */
.edit-modal-title{
    color: darkred;
    font-weight: bold;
    cursor: default;
    margin: 0 auto;
}
.edit-close{
    background: rgba(0,0,0,0);
    border-radius: 50%;
    color: darkred;
    border: 2px solid darkred;
    height: 30px;
    width: 30px;
    font-weight: 900;
}
.edit-close:hover{
    background: rgba(140,0,0,1);
    color: black;
    transition: .3s;
}
.edit-close:focus{
    outline: none;
}
#edit-dialogModal{
    margin: 10rem auto;
}
.edit-btn-form{
    border-style: solid;
    border-bottom-color: darkred;
    border-right-color: darkred;
    border-top-color: darkred;
    border-left-color: darkred;
    border-top-width: 1px;
    border-left-width: 1px;
    border-right-width: 2px;
    border-bottom-width: 3px;
    background: rgba(255,0,0,0);
    color: darkred;
    border-radius: 7px;
    font-weight: 800;
    padding: .375rem .75rem;
    margin: 0 auto;
}
.edit-btn-form:hover{
    border-bottom-color: red;
    border-right-color: red;
    background: rgba(140,0,0,1);
    color:black;
    transition: .3s;
}
.edit-btn-form:focus{
    outline: none;
}
#edit-dialogModal > div > div > div > input{
    cursor: default;
}
/* First name */
.edit-input-fname{
    position: absolute;
    top: 5%;
    left: 5.5%;
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 42.5%;
    height: 2.5rem;
    margin-top: 1rem;
}
.edit-input-fname:focus{
    outline: none;
}
.edit-content-fname{
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.edit-label-fname{
    width: 42.5%;
    margin-left: 2.5%;
    height: 2.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
/* Last name */
.edit-input-lname{
    position: absolute;
    top: 5%;
    left: 54.5%;
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: 1rem;
}
.edit-input-lname:focus{
    outline: none;
}
.edit-content-lname{
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.edit-label-lname{
    width: 42.5%;
    margin-left: 9%;
    height: 2.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
/* Nickname */
.edit-input-nickname{
    position: absolute;
    top: 31.75%;
    left: 5.5%;
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: 1rem;
}
.edit-input-nickname:focus{
    outline: none;
}
.edit-content-nickname{
    position: absolute;
    transform: translateY(-150%);
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.edit-label-nickname{
    width: 42.5%;
    margin-left: 2.5%;
    margin-top: 12%;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
/* E-mail */
.edit-input-mail{
    position: absolute;
    top: 31.75%;
    left: 54.5%;
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: 1rem;
}
.edit-input-mail:focus{
    outline: none;
}
.edit-content-mail{
    position: absolute;
    transform: translateY(-150%);
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.edit-label-mail{
    width: 42.5%;
    margin-left: 9%;
    margin-top: 12%;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
/* Password 1 */
.edit-input-password1{
    position: absolute;
    top: 65%;
    left: 5.5%;
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: 1rem;
}
.edit-input-password1:focus{
    outline: none;
}
.edit-content-password1{
    position: absolute;
    transform: translateY(-150%);
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.edit-label-password1{
    width: 42.5%;
    margin-left: 2.5%;
    margin-top: 12%;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
/* Password 2 */
.edit-input-password2{
    position: absolute;
    top: 65%;
    left: 54.5%;
    background: rgba(0,0,0,0);
    border: none;
    border-radius: 0px;
    font-weight: bold;
    color: red;
    width: 45%;
    height: 2.5rem;
    margin-top: 1rem;
}
.edit-input-password2:focus{
    outline: none;
}
.edit-content-password2{
    position: absolute;
    transform: translateY(-150%);
    color: darkred;
    font-weight: bold;
    pointer-events: none;
    transition: all .3s ease;
}
.edit-label-password2{
    width: 42.5%;
    margin-left: 9%;
    margin-top: 12%;
    border-bottom: 2px solid darkred;
    pointer-events: none;
}
/* Alerts */
.alert {
    position: fixed;
    left: 43%;
    min-width: 14%;
    top: 2%;
    text-align: center;
    font-family: 'PT Serif', serif;
    font-weight: lighter;
    color: #fff;
    border-style: hidden;
    z-index: 999;
}

.alert-success {
    background: rgba(11, 156, 49, 0.5)!important;
}

.alert-danger {
    background: rgba(240, 52, 52, 0.5)!important;
}
/* Others */
.logout-btn{
    border-radius: 4px;
    border-color: darkred;
    background-color: rgb(0,0,0,0);
    color: darkred;
    font-weight: bold;
    transition: .3s;
    padding: .25rem .5rem;
}
.logout-btn:focus{
    outline: none;
}
.logout-btn:hover{
    color: rgba(0,0,0,1);
    background-color: rgb(170, 0, 0, .8);
}
/*--- Media Queries ---*/
/*--- All Browsers ---*/
    /* Mozzila */
@-moz-document url-prefix() { 
    
}
    /* IE */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .carousel.slide{
        transform: translateY(0);
        opacity: 1;
    }
    
    .stream{
        transform: translateX(0);
        opacity: 1;
        scale: 1;
        -moz-transform: scale(1,1) translateX(0);
        -webkit-transform: scale(1,1) translateX(0);
        -o-transform: scale(1,1) translateX(0);
    }
    
    .landing .chat-icon{
        transform: rotate(0deg);
        scale: 1;
        opacity: 1;
    }
    
    .landing .links{
        opacity: 1;
    }
    
    .landing .links-bg{
        opacity: 1;
    }
    .poll{
        opacity: 1;
        transform: translateY(0);
    }
    .landing > h1{
        color: darkred;
    }
}
    /* Edge */
@supports (-ms-accelerator:true) {
    
}
    /* Opera */
@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {
    
}
    /* Chrome */
@supports (-webkit-appearance:none) and (not (overflow:-webkit-marquee)) and (not (-ms-ime-align:auto)) and (not (-moz-appearance:none)) { 
    
}
/*============ BOOTSTRAP BREAK POINTS:
Extra (xl) large devices (large desktops, 1200px and up)
*/

/*
Large (lg) devices (desktops, 992px and up)
*/
@media (max-width: 1199px) {
    .landing > h1{
        left: 18vw;
        font-size: 100px;
        top: 5vh;
    }
    .landing > img{
        display: block;
        height: auto;
        width: auto;
    }
    .clip-container > h1{
        font-size: 26px;
    }
    .vote-container > h1{
        font-size: 24px;
        top: -25vh;
        z-index: 0;
    }
    .vote-container > h2{
        font-size: 22px;
        top: -6rem;
        z-index: 0;
    }
    .stream > iframe {
        height: 36vh;
        width: 85vw;
        margin-left: -31vw;
        margin-top: -10vh;
    }
    .landing .links{
        top: -9.5vh;
        left: 40vw;
        z-index: 0;
    }
    .landing .links > a:nth-child(1){
        margin: 0 0 0 0;
    }
    .landing .links > a:nth-child(2){
        margin: 0 0 0 45px;
    }
    .landing .links > a:nth-child(3){
        margin: 0 0 0 90px;
    }
    .landing .links > a:nth-child(4){
        margin: 0 0 0 135px;
    }
    .landing .links > a:nth-child(5){
        margin: 0 0 0 180px;
    }
    #carouselExampleIndicators{
        top: 0;
        height: 55vh;
        width: 85vw;
        z-index: 2;
    }
    .carousel-control-prev{
        margin-left: 0;
        margin-top: 35vh;
    }
    .carousel-control-next{
        margin-right: 0;
        margin-top: 35vh;
    }
    .vote-container > img{
        top: -10vh;
        left: -16rem;
        max-width: 100vw;
        animation: none;
    }
    .landing .chat-icon{
        top: .5vh;
        left: 88vw;
        z-index: 2;
    }
    .landing .chat{
        z-index: 1;
        height: 38vh;
        left: 8.75vw;
        top: 61vh;
        width: 85vw;
    }
    .poll{
        top: -4vh;
    }
    .menu-wrap .menu-in > ul{
        margin-top: 80px;
    }
    .menu-wrap .menu-in > ul > li{
        margin-bottom: 20px;
    }
    #login-dialogModal{
        margin: 2rem auto;
    }
    #signup-dialogModal{
        margin: 2rem auto;
    }
    #forgot-dialogModal{
        margin: 4rem auto;
    }
    .menu-wrap{
        z-index: 3;
    }
    /* Animations off */
    .landing .chat-icon {
        animation: none;
        transform: rotate(0);
        scale: 1;
        opacity: 1;
        transition: none;
        color: gray;
    }
    .landing .chat-icon.clicked{
        color: white;
    }
    .landing .chat-icon.clicked:after{
        color: white;
    }
    .twitch-btn{
        margin-top: -1rem;
    }
    .voting{
        font-size: 20px;
    }
}
/*
Medium (md) devices (tablets, 768px and up)
*/
@media (max-width: 767px) {
    .landing > h1{
        left: 6rem;
        font-size: 70px;
    }
    .menu-wrap{
        z-index: 3;
    }
    .landing > img{
        display: block;
        height: 82px;
        width: 82px;
        top: 2.8vh;
    }
    .clip-container > h1{
        font-size: 24px;
    }
    .vote-container > h1{
        font-size: 19px;
        top: -32vh;
        z-index: 0;
    }
    .vote-container > h2{
        font-size: 17px;
        top: -16vh;
        z-index: 0;
    }
    .stream > iframe {
        height: 40vh;
        margin-top: -10vh;
        width: 85vw;
    }
    .landing .links{
        top: -10vh;
        left: 33vw;
        z-index: 0;
    }
    .landing .links > a:nth-child(1){
        margin: 0 0 0 0;
    }
    .landing .links > a:nth-child(2){
        margin: 0 0 0 45px;
    }
    .landing .links > a:nth-child(3){
        margin: 0 0 0 90px;
    }
    .landing .links > a:nth-child(4){
        margin: 0 0 0 135px;
    }
    .landing .links > a:nth-child(5){
        margin: 0 0 0 180px;
    }
    #carouselExampleIndicators{
        top: -6vh;
        height: 60vh;
        width: 85vw;
        z-index: 2;
    }
    .carousel-control-prev{
        margin-left: 0;
        margin-top: 40vh;
    }
    .carousel-control-next{
        margin-right: 0;
        margin-top: 40vh;
    }
    .vote-container > img{
        top: -16vh;
        left: -11rem;
        max-width: 80vw;
        animation: none;
    }
    .landing .chat-icon{
        top: .5vh;
        left: 85vw;
        z-index: 2;
    }
    .landing .chat{
        z-index: 1;
        height: 35vh;
        left: 8vw;
        top: 66vh;
    }
    .poll{
        top: -10vh;
    }
    .menu-wrap .menu-in > ul{
        margin-top: 80px;
    }
    .menu-wrap .menu-in > ul > li{
        margin-bottom: 20px;
    }
    #login-dialogModal{
        margin: 2rem auto;
    }
    #signup-dialogModal{
        margin: 2rem auto;
    }
    #forgot-dialogModal{
        margin: 4rem auto;
    }
    /* Animations off */
    .landing .chat-icon {
        animation: none;
        transform: rotate(0);
        scale: 1;
        opacity: 1;
        transition: none;
        color: gray;
    }
    .landing .chat-icon.clicked{
        color: white;
    }
    .landing .chat-icon.clicked:after{
        color: white;
    }
    .twitch-btn{
        margin-top: -1rem;
    }
    .voting{
        font-size: 20px;
    }
}
/*
Small (sm) devices (landscape phones, 576px and up)
*/
@media (max-width: 575px) {
    #carouselExampleIndicators{
        top: -5rem;
        height: 80vw;
        width: 95vw;
        z-index: 2;
    }
    .carousel-control-prev{
        margin-left: 0;
        margin-top: 38vh;
    }
    .carousel-control-next{
        margin-right: 0;
        margin-top: 38vh;
    }
    .landing > h1{
        left: 7rem;
    }
    .menu-wrap{
        z-index: 3;
    }
    .landing .chat-icon{
        top: .5vh;
        left: 87.5vw;
        z-index: 2;
    }
    .landing .chat{
        top: 71vh;
        left: 3vw;
        width: 95vw;
        height: 28vh;
        z-index: 1;
    }
    .landing .links-bg{
        display: none;
    }
    .landing .links{
        top: -2.5rem;
        left: 35vw;
    }
    .landing .links > a:nth-child(1){
        margin: 0 0 0 0;
    }
    .landing .links > a:nth-child(2){
        margin: 0 0 0 45px;
    }
    .landing .links > a:nth-child(3){
        margin: 0 0 0 90px;
    }
    .landing .links > a:nth-child(4){
        margin: 0 0 0 135px;
    }
    .landing .links > a:nth-child(5){
        margin: 0 0 0 180px;
    }
    .clip-container > h1{
        font-size: 24px;
    }
    .vote-container > h1{
        top: -40vh;
        font-size: 24px;
    }
    .vote-container > h1 > span{
        letter-spacing: 0;
    }
    .vote-container > h2{
        top: -10.5rem;
        font-size: 21px;
    }
    .vote-container > h2 > span{
        letter-spacing: 0;
    }
    .vote-container > img{
        top: -27vh;
        left: -13rem;
        max-width: 100vw;
        animation: none;
    }
    .stream{
        padding-left: 33.5vw;
        padding-top: 15.5vh;
        margin: 0 auto;
    }
    .stream > iframe{
        height: 40vh;
        width: 95vw;
        margin-top: 10vh;
    }
    .tabulka{
        min-width: 80vw;
        max-width: 100vw;
    }
    .poll{
        top: -20vh;
    }
    /* Animations off */
    .landing .chat-icon {
        animation: none;
        transform: rotate(0);
        scale: 1;
        opacity: 1;
        transition: none;
        color: gray;
    }
    .landing .chat-icon.clicked{
        color: white;
    }
    .landing .chat-icon.clicked:after{
        color: white;
    }
    .twitch-btn{
        margin-top: -1rem;
    }
    .voting{
        font-size: 20px;
    }
}
/*
Extra small (xs) devices (portrait phones, less than 576px)
*/
@media (max-width: 484px) {
    .landing > h1{
        left: .5rem;
        font-size: 70px;
    }
    .landing > img{
        display: none;
    }
    .clip-container > h1{
        font-size: 18px;
    }
    .vote-container > h1{
        font-size: 16px;
    }
    .vote-container > h2{
        font-size: 16px;
        top: -28vh;
    }
    .stream > iframe {
        height: 40vh;
        margin-top: 10vh;
    }
    .landing .links{
        top: -2.5rem;
        left: 18vw;
    }
    #carouselExampleIndicators{
        height: 58vh;
        z-index: 2;
    }
    .vote-container > img{
        left: -8rem;
        animation: none;
    }
    .signup-input-fname{
        margin-left: -1.5rem;
    }
    .signup-label-fname{
        left: .5rem;
    }
    .signup-input-lname{
        margin-left: 2rem;
    }
    .signup-label-lname{
        left: 11rem;
    }
    .signup-input-f_nickname{
        margin-left: -1.5rem;
    }
    .signup-label-f_nickname{
        left: .5rem;
    }
    .signup-input-mail{
        margin-left: 2rem;
    }
    .signup-label-mail{
        left: 11rem;
    }
    .signup-input-password1{
        margin-left: -1.5rem;
    }
    .signup-label-password1{
        left: .5rem;
    }
    .signup-input-password2{
        margin-left: 2rem;
    }
    .signup-label-password2{
        left: 11rem;
    }
    /* Animations off */
    .landing .chat-icon {
        animation: none;
        transform: rotate(0);
        scale: 1;
        opacity: 1;
        transition: none;
        color: gray;
    }
    .landing .chat-icon.clicked{
        color: white;
    }
    .landing .chat-icon.clicked:after{
        color: white;
    }
    .twitch-btn{
        margin-top: -1rem;
    }
    .voting{
        font-size: 20px;
    }
}
/*
=============*/