@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,600,600italic");

html, body {
  min-height : 100%;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 62.5%;
  color: #373737;
}

/* css resets */
ul {
    list-style: none;
}
* {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
pre {
  font-family: 'Source Sans Pro', sans-serif;
  white-space:pre-line;
  word-wrap: break-word;       /* Internet Explorer 5.5+ */
}
a {
   outline: 0;
}
button::-moz-focus-inner {
  border: 0;
}
input::-moz-focus-inner {
  border: 0;
}

body {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
#nav {
  text-align: center;
  font-size: 14px;
  z-index: 1;
}
#nav ul li {
  display: inline-block;
}
#nav ul li a , #nav ul li a :link, #nav ul li a :visited {
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  display: block;
  color: white;
  line-height: 1.7em;
  font-size: 1.7em;
  padding: 1.25em 1.05em;
  transition: color 0.5s;
  letter-spacing: 1px;
}
.community-nav {
  background-color: #f4f4f4;
}
.community-nav ul li a, .community-nav ul li a :link, .community-nav ul li a :visited {
  color: #000 !important;
}
.nav-underline {
  height: 5px;
  width: 100%;
  display: block;
  transition: 0.5s;
}
#nav ul li a:hover .nav-underline {
  transition: 0.5s;
  background-color: #37c0fb;
}
#nav ul li .active .nav-underline {
  transition: 0.5s;
  background-color: #37c0fb;
}
.front-page-nav ul li a, .front-page-nav ul li a :link, .front-page-nav ul li a :visited, .front-page-nav ul li a :active {
  text-shadow: 0px 0px 50px rgba(0,0,0);
}

.video-container, .plyr {
  flex: 1 0 auto;
  height: 100vh;
  width: 100%;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  display: flex;
  overflow: hidden;
}

#player {
  filter: grayscale(50%);
  -webkit-filter: grayscale(50%);
  -moz-filter: grayscale(50%);
}

.plyr__controls, .plyr__control {
  display: none;
  cursor: none;
}

.plyr__video-embed {
  position: relative;
  width:100%;
  height:100vh !important;
  padding-bottom:56.27198%  !important;
  z-index: -1;
}

.plyr__video-embed iframe {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.content-container {
  flex: 1 0 auto;
  width: 60%;
  margin: 3em auto;
  padding: 1em 0;
}

.article {
  margin: 0 1em;
  font-size: 20px;
}

.article h1, h2, h3, h4 {
  margin: 1em 0;
}
.article-header h1 {
  margin-top: 1em;
  margin-bottom: 0;
}
.article-header p {
  color: #999;
  font-size: 1.3em;
  margin-bottom: 1em;
}
.article p {
  margin-bottom: 2em;
}

.votegroup {
  margin: 0 auto;
  text-align: center;
  max-width: 990px;
}

.inputGroup {
  display: block;
  margin: 10px 0;
  position: relative;
}
.inputGroup label {
  padding: 20px 80px 20px 30px;
  display: block;
  text-align: left;
  color: #3C454C;
  background-color: #f4f4f4;
  cursor: pointer;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  font-size: 1.3em;
  word-break: break-all;
  position: relative;
}
.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: '';
  background-color: #5562eb;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
          transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}
.inputGroup label:after {
  width: 32px;
  height: 32px;
  content: '';
  border: 2px solid #D1D7DC;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: 4px 5px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}
.inputGroup input:checked ~ label {
  color: #fff;
}
.inputGroup input:checked ~ label:before {
  -webkit-transform: translate(-50%, -50%) scale3d(110, 110, 1);
          transform: translate(-50%, -50%) scale3d(110, 110, 1);
  opacity: 1;
}
.inputGroup input:checked ~ label:after {
  background-color: #54E0C7;
  border-color: #54E0C7;
}
.inputGroup input {
  width: 32px;
  height: 32px;
  order: 1;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.subplay-list li {
  box-shadow: 0 1px 3px rgba(0,0,0,.2), 0 1px 1px rgba(0,0,0,.14), 0 2px 1px -1px rgba(0,0,0,.12);
  background-color: #f4f4f4;
  border-bottom: 1px solid #000;
  padding: 10px 20px;
  font-size: 1.2em;
  font-weight: 700;
  margin: 0 auto;
}

.subplay-list li:last-of-type {
  border-bottom: none;
}

footer {
  background-color: #f4f4f4;
  padding: 3em 0;
  margin-top: auto;
}

footer .container {
  margin: 0 auto;
  width: 60%;
}

.footer-row {
  font-size: 16px;
  padding: 1em 2em;
}

.footer-row h1 {

}

.footer-row a, .footer-row a:link, .footer-row a:visited, .footer-row a:active {
  text-decoration: underline;
  font-weight: 100;
  letter-spacing: 1px;
  color: #555;
  font-size: 1.4em;
  transition: color 0.3s;
  /*border-bottom: dotted 1px rgba(71, 71, 71, 0.25);*/
}
.footer-row a:hover {
  color: #37c0fb;
  transition: color 0.3s;
  border-bottom: none;
}

.footer-row ul li {
  margin: 1em 0;
}

.footer-row ul li i {
  margin-right: 0.5em;
}

.ltv-error-page {
  background-color: #2c3136;
  color: white;
  width: 100%;
  min-height: 80vh;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
}

.ltv-error-page p {
  font-size: 5em;
  padding: 0 20%;
}

.ltv-login-error {
  font-size: 3.6em;
  color: #fff;
  margin-bottom: 1em;
}

.ltv-login-button {
  text-align: center;
  font-size: 3em;
}

.ltv-login-button i {
  margin-right: 0.5em;
}

.ltv-twitch-color {
  background-color: #6441A4 !important;
}

.ltv-twitch-color .fa-twitch {
  color: white;
}

.ltv-login-button a, .ltv-login-button a:link, .ltv-login-button a:visited, .ltv-login-button a:active {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 1em 2em;
  border-radius: 5px;
  font-size: 1.2em;
}

.ltv-login-container {
  background-color: #2c3136;
  width: 100%;
  min-height: 80vh;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
}

#ltv-top-user-bar, #ltv-top-user-bar-login {
  position: absolute;
  right: 2%;
  font-size: 2.5em;
  z-index: 2;
}

#ltv-top-user-bar-login {
  margin-top: 1em;
}

.ltv-top-login-button {
  margin-top: 1em;
  padding: 1em 2em;
  color: white;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  cursor: pointer;
}

.ltv-top-login-button i {
  margin-right: 0.75em;
}

.ltv-dropbtn {
  font-size: 1em;
  background-color: #2c3136;
  color: white;
  padding: 0.75em 2em;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.ltv-dropbtn>p::after {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  right: 1em;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../../cache/img/cd-arrow.svg);
}
.ltv-dropbtn:hover {
  transition: background-color 0.3s;
  background-color: #33383e;
}
.ltv-top-account {
  text-align: right;
}
.ltv-dropdown {
  display: inline-block;
}
.ltv-dropdown-content {
  right: 0;
  left: auto;
  display: none;
  position: absolute;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.ltv-dropdown-content ul li a, .ltv-dropdown-content ul li a:link, .ltv-dropdown-content ul li a:visited, .ltv-dropdown-content ul li a:active {
  text-decoration: none;
  text-align: left;
  background-color: #2c3136;
  color: #fff;
  display: block;
  padding: 0.5em 1em;
  transition: background-color 0.3s;
}
.ltv-dropdown-content ul li a:hover {
  transition: background-color 0.3s;
  color: #1784c7;
  background-color: #33383e;
}

.show {display: block;}

.ltv-page-content {
  background-color: #2c3136;
  color: white;
  width: 100%;
  min-height: 80vh;
}

.ltv-viewplay-layout, .ltv-commands-layout, .ltv-about-layout, .ltv-profile-layout, .ltv-community-layout, .ltv-strawpoll-layout {
  margin: 0 auto;
  width: 60%;
  padding: 1em;
}

.ltv-profile-config-list {
  font-size: 2.5em;
}

.ltv-profile-config-list .ltv-config-text-label {
  margin-top: 0.5em;
  display: block;
}

.ltv-profile-box-info, .ltv-profile-box-info {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  color: white;
  padding: 1em 1.5em;
  border: 1px solid #777;
  border-radius: 5px;
  background: #383e45;
  transition: background 0.3s;
}

.ltv-profile-hover-effect-button {
  transition: background 0.3s;
}

.ltv-profile-discord-info a:hover, .ltv-profile-hover-effect-button:hover {
  cursor: pointer;
  background: #414850;
  transition: background 0.3s;
}

.ltv-profile-discord-info a, .ltv-profile-discord-info a:link, .ltv-profile-discord-info a:visited, .ltv-profile-discord-info a:active {
  color: white;
}

.ltv-about-layout .ltv-faqs-accordions {
  margin-top: 1em;
  font-size: 2.5em;
}

.ltv-commands-layout table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.ltv-commands-layout td {
  padding: 0.75em 1.25em;
  font-size: 2.5em;
  border-top: 1px solid rgba(255,255,255,0.72);
  word-wrap: break-word;
}

.ltv-commands-layout table td:first-child, .ltv-commands-layout table th:first-child {
  width: 25%;
}

.ltv-commands-layout table th {
  padding: 0.5em 1.25em;
  font-size: 3em;
  text-align: left;
}

.ltv-commands-layout .icon-td {
  width: 25px;
  text-align: center;
  padding: 0.25em 0.4em;
}

.ltv-page-content-header {
  width: 100%;
  text-align: left;
  font-size: 4em;
  font-weight: bold;
}

.ltv-viewplay-top-player-counter {
  width: 100%;
  font-size: 3em;
}
.ltv-viewplay-top-player-counter p {
  padding: 0.2em 0.5em;
}

#ltv-viewplay-table-content {
  display: block;
  width: calc(100% - 20px);
  margin-left: 10px;
  margin-bottom: 10px;
  vertical-align: middle;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.80);
}
#ltv-viewplay-playertable {
  text-align: left;
  font-size: 3em;
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  word-break: break-word;
}

#ltv-viewplay-playertable>thead>tr>th, #ltv-viewplay-playertable>tbody>tr>td {
  border-bottom: 1px solid #ddd;
  padding: 12px 8px;
  width: 33%;
}

.ltv-accordion-button {
  background-color: #383f46;
  color: white;
  cursor: pointer;
  font-size: 1.1em;
  padding: 0.8em;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}
.ltv-accordion-button-active, .ltv-accordion-button:hover {
  background-color: #1b2025;
}
.ltv-accordion-panel {
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  background-color: #49525d;
  color: white;
  overflow: hidden;
  max-height: 0;
  transition: 0.4s;
}
.ltv-accordion-panel-open {
  transition: 0.2s ease-out;
  max-height: none;
  padding: 0.8em;
}
.ltv-accordion-button:after {
  font-family: Verdana, sans-serif;
  content: '\002B'; /* Unicode character for "plus" sign (+) */
  margin-left: 5px;
  font-size: 15px;
  color: #777;
  float: right;
}
.ltv-accordion-button-active:after {
  font-family: Verdana, sans-serif;
  content: "\2212"; /* Unicode character for "minus" sign (-) */
}


/* The Modal (background) */
.ltv-modal {
  font-size: 10px;
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1069; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.ltv-modal-content {
  color: white;
  background-color: #2c3136;
  margin: 20px auto; /* 15% from the top and centered */
  padding: 10px 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  min-height: 100px;
}

/* The Close Button */
.ltv-modal-close {
  color: #aaa;
  position: absolute;
  right: 10%;
  font-size: 4.5em;
  font-weight: bold;
  transition: color 0.3s;
}

.ltv-dark-modal-close {
  color: #222;
}

.ltv-modal-close:hover,
.ltv-modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}

#ltv-connect-fortnite-modal p {
  font-size: 3em;
}

#ltv-connect-fortnite-modal li {
  font-size: 2em;
}

#ltv-connect-fortnite-modal form label {
  font-size: 2em;
  margin-top: 0.15em;
  display: block;
}

#ltv-connect-fortnite-modal form input[type="text"] {
  border-radius: 2px;
  resize: unset;
  padding: 0.75em;
  max-width: calc(100% - 1.5em);
  min-height: 1em;
  width: 100%;
  height: 1em;
  border: 0px;
}

#ltv-connect-fortnite-modal form input[type="submit"], .ltv-voting-poll-options form input[type="submit"] {
  margin-top: 1em;
  padding: 1em 2em;
  background-color: green;
  border: 0px;
  color: white;
  border-radius: 2px;
  display: block;
  margin-left: auto;
  margin-right: 0;
  transition: background-color 0.5s;
}
#ltv-connect-fortnite-modal form input[type="submit"]:hover, .ltv-voting-poll-options form input[type="submit"]:hover  {
  cursor: pointer;
  transition: background-color 0.5s;
  background-color: #1f611f;
}

.ltv-voting-poll-options form input[type="submit"] {
  font-size: 0.9em;
  margin-right: auto;
}

.ltv-voting-poll-options form input[type="submit"]:disabled {
  background-color: #dddddd;
}

.ltv-vote-poll-option-result, .ltv-strawpoll-option-result {
  display: inline-block;
  text-align: right;
}

.ltv-voting-poll-status-text {
  margin-top: 1em;
  text-align: center;
  font-size: 1.4em;
  font-weight: bold;
}

.ltv-strawpoll-status-text {
  margin-top: 1em;
  text-align: center;
  font-size: 3.5em;
  font-weight: bold;
}

.ltv-community-list-box {
  margin: 0 auto;
  font-size: 3em;
  border: 1px solid rgba(0,0,0,0.35);
  padding: 1em 2em;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 1em;
  transition: background 0.5s;
  background: #383f46;
}

.ltv-community-list-box:hover {
  transition: background 0.5s;
  background: #1b2025;
}

.ltv-community-list-box-texts, .ltv-vote-poll-list-checkbox, .ltv-strawpoll-list-textdata {
  width: 70%;
}

.ltv-community-list-box-icon, .ltv-vote-poll-list-result, .ltv-strawpoll-list-result {
  width: 25%;
  margin-left: 3%;
  text-align:right;
  vertical-align: middle;
}

.ltv-voting-poll-timer-left {
  text-transform: uppercase;
}

.ltv-community-list-box-texts, .ltv-community-list-box-icon, .ltv-community-list-box-icon p, 
.ltv-community-list-box-icon i, .ltv-vote-poll-list-checkbox, .ltv-vote-poll-list-result,
.ltv-strawpoll-list-textdata, .ltv-strawpoll-list-result {
  display: inline-block;
  vertical-align: middle;
}

.ltv-community-list-box-title {
  font-weight: bold;
}

.ltv-community-list-box-description {
  font-size: 0.75em;
}

.ltv-voting-poll-options ul li, .ltv-strawpoll-options ul li {
  border: 1px solid rgba(0,0,0,0.35);
  padding: 1em 2em;
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 1em;
  transition: background 0.5s;
  background: #383f46;
  display: block;
  overflow-wrap: break-word;
}
.ltv-strawpoll-options ul li {
  cursor: default;
}

.ltv-voting-poll-options ul li:first-child, .ltv-strawpoll-options ul li:first-child {
  margin-top: 1em;
}

.ltv-voting-poll-options ul .ltv-vote-poll-demo-image-row {
  margin-bottom: 0;
  border-bottom: none;
}

.ltv-voting-poll-options, .ltv-strawpoll-options {
  width: 75%;
  margin: 0 auto;
  font-size: 3em;
  margin-bottom: 2em;
}

.ltv-vote-poll-option-checkbox {
  display: none;
}
.ltv-vote-poll-option-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}

.ltv-vote-poll-option-checkbox + label:before {
  content: '';
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 25px;
  height: 25px;
  background: white;
  transition: 0.3s background;
  border-radius: 2px;
}

.ltv-voting-poll-options ul li:hover .ltv-vote-poll-option-checkbox + label:before ,

.ltv-vote-poll-option-checkbox:hover + label:before {
  background: green;
  transition: 0.3s background;
}
.ltv-vote-poll-option-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.ltv-vote-poll-option-checkbox:checked + label:before {
  background: #1f611f;
}
.ltv-vote-poll-option-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.ltv-vote-poll-option-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.ltv-vote-poll-option-checkbox:checked + label:after {
  content: '';
  position: absolute;
  left: 7.5px;
  top: 12px;
  background: white;
  width: 3px;
  height: 3px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.ltv-vote-poll-demo-image {
  max-width: 100%;
  cursor: url("/cache/img/plus_cursor.png") 25 25, auto;
  display: block;
  max-height: 250px;
  margin: 0 auto;
}
.ltv-voting-poll-options ul .ltv-vote-poll-demo-image-row {
  cursor: default;
}

#ltv-vote-poll-demo-image-modal-content {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
  margin: 5% auto;
  display: block;
  max-width: 80%;
}

#ltv-viewplay-party-area {
  width: 350px;
  position: fixed;
  bottom: 0;
  right: 2%;
  z-index: 2;
}

#ltv-viewplay-party-content {
  display: block;
  font-size: 2.5em;
  background-color: #33383e;
  border-right: 1px solid #999;
  border-left: 1px solid #999;
  box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.8);
}

#ltv-viewplay-party-content table {
  width: 100%;
}
#ltv-viewplay-party-content table thead {
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

#ltv-viewplay-party-content table th {
  text-align: center;
  padding: 0.5em;
}
#ltv-viewplay-party-content table td {
  text-align: center;
  padding: 0.5em;
}
#ltv-viewplay-party-content table td i {
  text-align: center;
  cursor: pointer;
  transition: color 0.3s;
}

#ltv-viewplay-party-content table td i:hover {
  color: red;
  transition: color 0.3s;
}

#ltv-viewplay-party-create, #ltv-viewplay-party-join {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding: 1em 2em;
  background-color: green;
  border: 0px;
  color: white;
  border-radius: 2px;
  transition: background-color 0.5s;
}

#ltv-viewplay-party-join {
  margin-top: 1em;
}

#ltv-viewplay-party-invite, #ltv-viewplay-party-queue {
  display: inline-block;
  width: 40%;
  margin-left: 5%;
  padding: 1em 2em;
  background-color: green;
  border: 0px;
  color: white;
  border-radius: 2px;
  transition: background-color 0.5s;
}

#ltv-viewplay-party-create-holder,  #ltv-viewplay-party-action-holder {
  display: none;
  padding: 1em 0;
}

#ltv-viewplay-party-create:hover, #ltv-viewplay-party-join:hover, #ltv-viewplay-party-invite:not([disabled]):hover, #ltv-viewplay-party-queue:not([disabled]):hover {
  cursor: pointer;
  transition: background-color 0.5s;
  background-color: #1f611f;
}

#ltv-viewplay-party-header p {
  font-size: 2.5em;
  padding: 1em;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #2c3136;
  border: 1px solid #999;
  box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.8);
}

#ltv-viewplay-party-header p {
  cursor: pointer;
}

#ltv-viewplay-party-invite:disabled, #ltv-viewplay-party-queue:disabled {
  background-color: #515151;
}

.ltv-view-party-queue-leave:not([disabled]) {
  color: black !important;
  background-color: yellow !important;
}

.ltv-view-party-queue-leave:not([disabled]):hover {
  background-color: #806f00 !important;
}

#mobile-nav {
  display: none;
  width: 100%;
  margin: auto;
  z-index: 1;
  position: fixed;
}

#ltv-mobilenav-container {
  width: 100%;
  display: none;
  background-color: #333;
  max-height: 100vh;
  overflow-y: auto;
}

#ltv-hamburger-menu-button {
  z-index: 1;
  color: white;
  padding: 0.5em 0.75em;
  text-decoration: none;
  font-size: 4em;
  display: block;
  transition: 0.5s;
  background: #333;
  position: absolute;
  right: 0;
  top: 0;
}

#ltv-hamburger-menu-button:hover {
  background-color: #ddd;
  color: black;
  transition: 0.5s;
}

#ltv-mobilenav-container a {
  color: white;
  padding: 1em 1.2em;
  text-decoration: none;
  font-size: 3em;
  display: block;
  transition: 0.5s;
}

#ltv-mobilenav-container a:hover {
  background-color: #ddd;
  color: black;
  transition: 0.5s;
}

#player:hover {
  cursor: pointer;
}

@media screen and (max-width:465px){
  .inputGroup input:checked ~ label:before {
    -webkit-transform: translate(-50%, -50%) scale3d(36, 36, 1);
            transform: translate(-50%, -50%) scale3d(36, 36, 1);
  }
}

@media screen and (max-height:400px){
  .ltv-login-container, .ltv-error-page {
    min-height: 300px;
  }
}

@media only screen and (min-width: 568px) {
  .iziToast-wrapper {
    max-width: calc(100% - 30px);
  }
}

@media only screen and (max-width: 600px) {
  .ltv-commands-layout table td:first-child, .ltv-commands-layout table th:first-child {
    padding: 0.75em 0.1em;
  }
  .ltv-commands-layout .icon-td {
    display: none;
  }
}

@media only screen and (max-width: 768px) {  }

@media only screen and (max-width: 992px) {
  .inputGroup input:checked ~ label:before {
    -webkit-transform: translate(-50%, -50%) scale3d(74, 74, 1);
            transform: translate(-50%, -50%) scale3d(74, 74, 1);
  }
}

@media only screen and (max-width: 1200px) { /* Hamburger mode */
  .inputGroup input:checked ~ label:before {
    -webkit-transform: translate(-50%, -50%) scale3d(84, 84, 1);
            transform: translate(-50%, -50%) scale3d(84, 84, 1);
  }
  .content-container {
    width: 100%;
  }
  footer .container {
    width: 100%;
  }
  .votegroup {
    width: 80%;
  }
  .ltv-viewplay-layout, .ltv-commands-layout, .ltv-about-layout, .ltv-profile-layout, .ltv-community-layout, .ltv-strawpoll-layout {
    width: 95%;
  }
  .ltv-voting-poll-options, .ltv-strawpoll-options {
    width: 100%;
  }
  #nav, #ltv-top-user-bar, #ltv-top-user-bar-login {
    display: none;
  }
  #mobile-nav {
    display: block;
  }
  .ltv-page-content-header {
    max-width: 85%;
  }
}

@media only screen and (min-width: 1921px) {
}

@media only screen and (min-width: 2560px) {
  .inputGroup input:checked ~ label:before {
    -webkit-transform: translate(-50%, -50%) scale3d(140, 140, 1);
            transform: translate(-50%, -50%) scale3d(140, 140, 1);
  }
  .votegroup {
    max-width: 75%;
  }
}


/* BRANDING COLOURS */
.fa-discord {
  color: #7289DA;
}
.fa-instagram {
  color: transparent;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
}
.fa-twitch {
  color: #6441A4;
}
.fa-twitter-square {
  color: #1da1f2;
}
.fa-youtube-square {
  color: #FF0000;
}
.fa-check {
  color: #048a04;
}
.fa-times {
  color: #d80000;
}