:root {
    --main-title-color: #FFC614;
    --default-light-font-color: #E1F4FD;
    --default-dark-font-color: #000000;
    --default-dark-bg-color: #002A3D;
    --default-btn-hover-color: #00D8C8;
    --default-btn-active-color: #dec104;
    --default-btn-error-color: red;
    --default-btn-tab-hover-color: #00D8C8;
    --default-btn-tab-active-color: #dec104;
}

body {
    display: flex;
    min-height: 100vh;
    justify-content: flex-start;
    background-color: #000000;
    font-family: 'Roboto', sans-serif;
    color: #eceee8;
    padding: 0;
    margin: 0;
}

#root {
    display: flex;
    flex: 1;
    width: 100%;
}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.frame-border {
    width: 100%;
    height: 15px;
}

.centered {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.header {
    display: flex;
    align-items: center;
    padding: 4px 0px 4px 0px;
    margin: 0;
    list-style: none;
}

.header li {
    padding-right: 20px;
    font-size: 18px;
}

.header li:not(.header-streamcap) {
    padding-right: 20px;
}

.header li div a {
    text-decoration: none;
}

.header-streamcap {
    margin: 10px 10px 5px 15px;
}

.header-streamer {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.header-streamer img {
    padding-right: 6px;
}

.header-discord {
    display: flex;
    align-items: center;
}

.header-discord i {
    padding-top: 4px;
}

.header-discord div {
    font-weight: bold;
}

.header-twitter{
    display: flex;
    align-items: center;
}

.header-twitter i {
    padding-top: 4px;
}

.header-twitter div {
    font-weight: bold;
}

.header-youtube{
    display: flex;
    align-items: center;
}

.header-youtube i {
    padding-top: 4px;
}

.header-youtube div {
    font-weight: bold;
}

.header-msg div {
    font-weight: bold;
}

.btn-desktop-client-download {
    height: 60px;
    background: #00988D;
    border: 2px solid #3AF6FF;
    box-sizing: border-box;
    border-radius: 4px;
    display: flex;
    justify-content: center;
}

.btn-desktop-client-download:hover {
    filter: brightness(1.5);
}

.btn-modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    align-items: center;
    justify-content: right;
    background: var(--default-btn-error-color);
    font-family: 'Rajdhani', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--default-light-font-color);
    outline: none;
    border: none;
    cursor: pointer;
    display: block;
}

.user-items {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0px 30px 0px 20px;
}

.user-items img {
    border-radius: 4px;
    width: 40px;
    height: 40px;
    padding-right: 8px;
}

.user-items span {
    padding-right: 8px;
}

a, a:link, a:visited, a:hover, a:active {
    color: #ffffff;
    text-decoration: underline;
    cursor: pointer;
}

.user-items {
    color: #ffffff;
    text-decoration: none;
}

.sub-menu {
    z-index: 1000;
    display: none;
    position: absolute;
    padding: 0;
    margin: 0;
    padding-top: 14px;
    list-style: none;
    right: 0;
}

.sub-menu li {
    background-color: #354545;
    border: 2px solid #354545;
    padding: 5px 10px 5px 10px;
    cursor: pointer;
    white-space: nowrap;
}

.sub-menu li:hover {
    background-color: #2D8683;
}

.sub-menu li:last-child {
    padding-bottom: 8px;
    border-radius: 0px 0px 10px 10px;
}

.sub-menu li a {
    margin: 0px;
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px;
    text-decoration: none;
}

.sub-menu li i {
    min-width: 20px;
    padding-right: 10px;
}

.web-lite-toggle {
    display: none;
}

nav {
    background-color: #1D242B;
}

nav ul li:hover > .sub-menu {
    display: block;
}

.warning {
    border: 2px solid #FCEAB5;
    border-radius: 4px;
    padding: 10px;
    color: #000000;
    background-color: #FFFDF7;
    margin-bottom: 15px;
    font-size: 14px;
    display: inline-block;
    text-align: left;
}

.warning i {
    color: #FCEAB5;
    padding: 5px;
    display: block;
    float: left;
    margin-right: 5px;
}

.error {
    border: 2px solid #C14E3F;
    border-radius: 4px;
    padding: 14px;
    color: #000000;
    background-color: #FEF8F7;
    margin-bottom: 15px;
    font-size: 18px;
    display: inline-block;
}

.error i {
    color: #FF0000;
    padding: 5px;
    display: block;
    float: left;
    margin-right: 5px;
}

.button {
    padding: 10px 40px 10px 40px;
    color: #000000;
    border-radius: 4px;
    border: none;
    outline: none;
    box-shadow: 1px 1px #000000;
}

.button.slim {
    padding: 5px 5px 5px 5px;
}

.button-standard {
    background-color: #ffcc02;
    cursor: pointer;
}

.button-disabled {
    cursor: not-allowed !important;
    background-color: #909090;
}

.button-standard:hover {
    background-color: var(--default-btn-hover-color);
}

.button-standard:active {
    background-color: var(--default-btn-active-color);
}

.button-warning {
    background-color: #ff0000;
    cursor: pointer;
}

.button-warning:hover {
    background-color: #ff4646;
}

.button-warning:active {
    background-color: #ff6565;
}

.tab-unselected {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px solid #0f0f0f;
    border-bottom: none;
    padding: 10px;
    background-color: #ffcc02;
    cursor: pointer;
    min-width: 150px;

    vertical-align: middle;;
    color: #000000;
}

.tab-selected {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px solid #0f0f0f;
    border-bottom: none;
    padding: 10px;
    cursor: not-allowed !important;
    background-color: #ffcc0293;
    min-width: 150px;

    vertical-align: middle;
    color: #ffffff;
}

.tab-unselected:hover {
    background-color: var(--default-btn-tab-hover-color);
}

.tab-selected:active {
    background-color: var(--default-btn-tab-active-color);
}

.button-container {
    display: inline-block;
}

.button-text {
    vertical-align: middle;
    font-weight: bold;
    font-size: 16px;
}

h1 {
    margin: 0px;
    font-size: 20px;
    font-weight: normal;
    text-shadow: 1px 1px black;
    padding-bottom: 5px;
}

.boxed {
    padding: 20px;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.boxed div {
    align-items: left;
}

.copy-code {
    display: flex;
    flex-direction: row;
}

.copy-code div {
    flex: 1;
}

.two-col {
    display: flex;
    flex-direction: row;
    flex: 1 1;
    width: 100%;
}

#header-left{
  align-items: left;
}

#header-right{
  position: relative;
  margin-left: auto;
  margin-right: 0;
}

#right {
    padding: 5px 20px 0px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#left {
    flex: 0 0 220px;
    background-color: rgba(4, 61, 81, 0.7);
}

#footer {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: auto 0px 6px 0px;
    opacity: 0.6;
}

#load-disclaimer {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin: auto 0px 6px 0px;
    opacity: 0.8;
    display: inline-block;
}

.load-disclaimer {
    margin-top: 4px;
    text-align: center;
}

.footer-spacer-short {
    margin-top: 8px;
}

.footer-spacer-tall {
    margin-top: 8px;
}

#footer div {
    padding-right: 10px;
}

#footer div:first-child {
    margin-left: auto;
}

#footer div:last-child {
    margin-right: auto;
}

.nav-header {
    font-size: 20px;
    font-weight: bold;
    color: #8CCEE3;
    padding: 10px 10px 10px 30px;
    margin: 20px 0px 10px 0px;
    background-color: #093341;
}

.nav-header a {
    text-decoration: none;
}

.left-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

.left-nav li {
    cursor: pointer;
    padding: 12px 0px 12px 10px;
}

.left-nav li:hover {
    background-color: #6aa8bc;
    cursor: pointer;
    transition: 0.2s;
}

.left-nav .header-img {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.left-nav li.item-title {
    background-color: #093341;
    color: #8CCEE3;
    font-weight: bold;
    cursor: auto;
    margin-top: 10px;
    margin-bottom: 5px;
}

.left-nav li.item-active {
    background-color: #6aa8bc;
    cursor: auto;
}

.left-nav li a {
    margin: 0px;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.left-nav li i {
    min-width: 20px;
    padding-right: 8px;
    padding-left: 18px;
    text-align: center;
}

.item-sub-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

.item-sub-nav > li {
    padding: 6px 0px 6px 32px;
}

.item-sub-item-active {
    font-weight: bold;
}

.tool-boxes {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tool-box {
    position: relative;
    margin-right: 20px;
    margin-bottom: 20px;
}

.tool-box img {
    border-radius: 10px;
    border: 2px solid #1B1D26;
}

.tool-box div {
    font-size: 18px;
    text-align: center;
    padding: 5px;
}

.hidden-text {
    opacity: 0;
    transition: 0.5s;
}

.revealed-text {
    opacity: 1;
    transition: 0.5s;
}

.rounded {
    border: 2px solid #78A9B9;
    border-radius: 10px;
}

.buttons button {
    margin-right: 10px;
    margin-top: 10px;
}

.image-stretch {
    width: 100%;
    height: auto;
}

.more-block {
    display: none;
}

.more-block a, .more-link a {
    padding-left: 5px;
}

.scrim {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0 ,0);
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
}

#steps-header {
    font-family: 'Rajdhani', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 40px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    margin-right: 40px;
    text-align: center;
}

.notif-banner {
    display: flex;
    width: 100%;
    background-color: #f8f3c5;
    color: #000000;
}

.notif-message {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    text-align: center;
}

.notif-message a {
    color: #000000;
}

.notif-img img {
    padding: 0px 10px 0px 10px;
}

.notif-close {
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.button-twitch-login-small {
    border-radius: 4px;
    border: 1px solid #9F48FF;
    background-color: #6441A4;
    color: #FFFFFF;
    outline: none;
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
}

.button-twitch-login-small i {
    font-size: 24px;
    padding-right: 12px;
    padding-left: 7px;
    margin-top: 5px;
}

.button-twitch-login-small div {
    font-size: 18px;
    padding-right: 12px;
    padding-bottom: 2px;
}

.button-twitch-login-small:hover {
    background-color: #7F43C4;
}

#discord-icon {
    font-size: 24px;
}

#twitter-icon {
    font-size: 24px;
}

#youtube-icon {
    font-size: 24px;
}

.legal {
    padding: 40px;
}

.legal table {
    border-collapse: collapse;
}

.legal table, .legal table th, .legal table td {
    border: 1px solid black;
}

.legal table th, .legal table td {
    padding: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.toggle:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .toggle {
    background-color: #ffcc02;
}

input:focus + .toggle {
    box-shadow: 0 0 1px #ffcc02;
}

input:checked + .toggle:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

.toggle.round {
    border-radius: 34px;
}

.toggle.round:before {
    border-radius: 50%;
}

.switch-group {
    display: flex;
    align-items: center;
}

.switch-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
}

.slide-cont {
    min-width: 300px;
    margin-left: 20px;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    background: #d3d3d3;
    outline: none;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border-radius: 34px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 34px;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 34px;
}

.button-twitch-login-desktop {
    width: 318px;
    height: 72px;
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
    font-size: 26px;
    font-weight: 600;
    outline: none;
    border: none;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.button-twitch-login-desktop i {
    padding-right: 10px;
    font-weight: normal;
}

.button-signup {
    padding: 20px 30px 20px 30px;
    color: #FFFFFF;
    background-color: #00988D;
    border: 1px solid #3AF6FF;
    border-radius: 4px;
    outline: none;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.button-signup:hover {
    background-color: var(--default-btn-hover-color);
}

.button-signup:active {
    background-color: var(--default-btn-active-color);
}

.button-secondary {
    height: 60px;
    background: #144574;
    border: 2px solid #3594F0;
    box-sizing: border-box;
    border-radius: 4px;
    display: flex;
    justify-content: center;
}

.button-secondary:hover {
    filter: brightness(1.5);
}

.button-modal-text{
    font-family: Rajdhani;
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    line-height: 41px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
    padding-left: 40px;
    padding-right: 40px;
}

.button-text-signup {
    vertical-align: middle;
    font-weight: bold;
    font-style: normal;
    font-size: 24px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
}

.button-signup-small {
    padding: 10px 14px 10px 14px;
    color: #FFFFFF;
    background-color: #00988D;
    border: 1px solid #3AF6FF;
    border-radius: 2px;
    outline: none;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.button-text-signup-small {
    vertical-align: middle;
    font-weight: bold;
    font-style: normal;
    font-size: 18px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
}
.button-signup-small:hover {
    background-color: var(--default-btn-hover-color);
}

.button-signup-small:active {
    background-color: var(--default-btn-active-color);
}

.button-twitch-login-large {
    width: 318px;
    height: 72px;
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
    font-size: 26px;
    font-weight: 600;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    margin-bottom: 30px;
}

.button-twitch-login-large i {
    padding-right: 10px;
    font-weight: normal;
}

.button-twitch-login-large:hover {
    filter: brightness(1.25);
}

.button-twitch-login-viewer {
    width: 245px;
    height: 50px;
    font-family: Rajdhani;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    outline: none;
    border: none;
}

.button-twitch-login-viewer i {
    padding-right: 10px;
    font-weight: normal;
}

.button-twitch-login-viewer:hover {
    filter: brightness(1.25);
}

.disclaimer {
    font-size: smaller;
    padding: 0px 0px 10px 0px;
}

@media (max-aspect-ratio: 1/1) {
    .button-signup {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .button-text-signup {
        font-size: 36px;
    }

    #steps-header {
        margin-bottom: 30px;
    }
    .button-twitch-login-large {
        background-size: cover !important;
        color: #FFFFFF !important;
        width: 620px;
        height: 140px;
        font-size: 3em;
    }
    .button-twitch-login-large i {
        font-size: 1em;
        padding-right: 10px;
        margin-top: 4px;
    }
}

.productskin-img {
    width: 60px;
    height: 60px;
    border: 1px solid #333333;
    margin-bottom: 5px;
    margin-left: 10px;
}
