@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');

* { 
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html {
    background-color: #212121;
}

nav { 
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 4vh;
    background-color: #212121;
    font-family: 'Roboto', sans-serif;
}

.pm-only {
    color: #346beb;
}

.premium-command {
    color: #f5f112;
}

.table {
    margin: auto;
    align-items: center;
    border-spacing: 10px;
    width: 90%;
}

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}

th, td {
    padding: 20px;
}

.table td {
    border-top: 1px; 
    padding: .1rem;
}

.table-data {
    color: rgb(226, 226, 226);
}

.table td:first-child>span{
    font-size: 10px;
}

.normal-command {
    color: #1eb04c;
}

.casino-command {
    color: #b342f5;
}

.bk-premium-command {
    color: #9e9c13;
}

.bk-pirho-command {
    color: #b342f5;
}

.bk-bot-command {
    color: #5e92e8;
}

.bot-available {
    color: #17b159;
}

.bot-full {
    color: #ffca36;
}

.bot-banned {
    color: #ff2e34;
}

.banned-row {
    display: none;
}

.bot-link, .bot-link:visited {
    color: lightblue;
}

.admin-command {
    color:#eb8634;
}

.bot-owner-only {
    color:#ffcccb;
}

.accordion {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.accordion-button {
    display: block;
    width: 100%;
    padding: 25px;
    border: none;
    outline: none;
    cursor: pointer;
    background: #212121;
    color: rgb(226, 226, 226);
    text-align: left;
    transition: background 0.2s;
}

.accordion-button::after {
    content: '\25be';
    float: right;
    transform: scale(1.5);
}

.accordion-button--active {
    background: "#555555";
}

.accordion-button--active::after {
    content: '\25b4';
}

.accordion-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s;
    padding: 0 25px;
    font-family: 'Roboto', sans-serif;
    background: "#eeeeeee";
    text-align: left;
    box-shadow: .5 rem 2px .5 rem rgba(0, 0, 0, 1);
}

.casino-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 200px;
    margin-top: 15px;
}

.hero {
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem 1rem;
    max-width: 50rem;
    font-family: 'Roboto', sans-serif;
    color: rgb(226, 226, 226);
}

.hero-title {
    font-size: 3rem;
    color: rgb(226, 226, 226);
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    font-family: 'Roboto', sans-serif;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgb(200, 200, 200);
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    font-family: 'Roboto', sans-serif;
}

.hero-button {
    padding: 9px 25px;
    background-color: rgba(100, 149, 237, 1);
    color: black;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    transition: all 0.2s ease 0s;
}

.hero-button:hover {
    background-color: rgba(100, 149, 237, 0.8);
}

.bot-title {
    color: rgb(226, 226, 226);
    font-size: 20px;
    text-decoration: none;
}

.nav-links {
    padding: 0px;
    display: flex;
    justify-content: space-around;
    width: 60%;
}

.nav-links a {
    color: rgb(226, 226, 226);
    text-decoration: none;
    font-size: 14px;
}

.nav-links li {
    list-style: none;
}

.burger {
    display: none;
    cursor: pointer;
    color: rgb(226, 226, 226);
}

.burger div {
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: rgb(226, 226, 226);
    color: rgb(226, 226, 226);
    transition: all 0.2s ease;
}

@media screen and (max-width:2000px) {
    .nav-links {
        width: 60%;
    }
}

@media screen and (max-width:1500px) {
    body {
        overflow-x: hidden;
    }
    .nav-links {
        position: absolute;
        right: 0px;
        height: 50vh;
        width: 20vh;
        top: 5vh;
        background-color: #212121;
        flex-direction: column;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3 ease-in;
    }
    .nav-links li {
        opacity: 0;
    }
    .burger {
        display: block;
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Form */

.form-container {
    width: 100%;
    height: 100vh;
    display: block;
    justify-content: center;
    padding: 5px;
}


.form-container h3 {
    color: #eeeeee;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.form-container input, .form-container textarea {
    border: 0;
    margin: 20px 0;
    padding: 20px;
    outline: none;
    background: #313131;
    font-size: 14px;
}

.login-form-input {
    width: 300px;
    display: inline-block;
    margin-bottom: 5px;
    color: #eeeeee;
    background-color: #dddddd;
    border-color: transparent;
    border-style: solid;
    border-width: 1px;
    border-radius: 50px;
    text-align: center;
}

.swal-height-fix {
    max-height: 90%;
    max-width: 90%;
}

.table-data {
    text-align: center;
    vertical-align: middle;
    font-size: 12px;
}
.feature-no {
    background-color:#be1616;
    text-align: center;
    vertical-align: middle;
}
.feature-yes {
    background-color:#13ca50;
    text-align: center;
    vertical-align: middle;
}
.table {
    margin-left: auto;
    margin-right: auto;
    table-layout: fixed;
    width: 300px;
}