@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200&display=swap');
html,
body {
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #dedede !important;
    height: 100%;
    width: 100%;
    overflwo-x: hidden;
}

* {
    font-family: 'Montserrat', sans-serif;
}

header {
    background-color: #1b1d29;
    height: 50px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 100;
}

header .logo img {
    height: 30px;
    margin: 10px;
}

nav {
    position: fixed;
    top: 0;
    bottom: 0px;
    background-color: white;
    width: 180px;
    z-index: 100;
    margin-top: 50px;
}

.content {
    margin-left: 200px;
    margin-top: 70px;
    position: absolute;
    width: 75%;
}

.card {
    width: fit-content;
    padding: 15px;
    min-width: 200px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.card .card-title {
    font-weight: bold;
}

section {
    margin-top: 10px;
}

section .section-title {
    font-weight: bold;
    font-size: 2em;
    padding-bottom: 5px;
}

header ul {
    margin: 5px;
    list-style-type: none;
    margin-top: 10px;
    margin-right: 20px;
}

header ul li {
    display: inline-block;
    margin-left: 50px;
}

header ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

header ul li a:hover {
    color: white;
}

nav ul {
    list-style-type: none;
    padding: 0px;
}

nav ul li {
    display: inline-block;
    width: 100%;
}

nav ul li a {
    color: #1b1d29;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 5px;
}

nav ul li a:hover {
    color: black;
    background-color: #dedede;
}

table {
    background-color: white;
    width: 100%;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

table thead {
    font-weight: bold;
    padding-bottom: 10px;
}

table td {
    padding: 5px;
}

span.badge-success {
    background-color: #39875c;
}

.payment-methods label {
    padding-left: 1rem;
    padding-bottom: 5px;
}

.icon-responsive-menu {
    display: none;
}

.bt-row {
    display: flex;
    grid-gap: 1rem;
    justify-content: space-between;
}

.auth-card .card {
    width: 50%;
    margin: auto;
}

.auth-card .card .form-submit {
    text-align: center;
    margin-top: 10px;
}

.bt-row .card {
    width: 70%;
}

#toPay {
    width: 50%;
}

@media (max-width: 720px) {
    header ul li {
        margin: 5px;
    }
    .bt-row {
        display: block;
    }
    .bt-row .card {
        width: 100%;
        margin-top: 1rem;
        margin: auto;
        margin: 1rem auto;
    }
    header ul:last-child {
        margin-right: 45px;
    }
    .icon-responsive-menu {
        display: block;
        cursor: pointer;
        text-align: center;
    }
    nav:not(.sidebar-expanded) ul {
        display: none;
    }
    nav:not(.sidebar-expanded) {
        position: fixed;
        width: 3em;
        height: 3em;
        left: 5px;
        top: 50px;
        border-radius: 5px;
        align-items: center;
        top: 60%;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
        -ms-transform: translateY(-60%);
        transform: translateY(-60%);
    }
    .right-pane ul li:not(:last-child) {
        display: none;
    }
    nav:not(.sidebar-expanded) .icon-responsive-menu {
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        text-align: center;
        margin: auto;
        margin-left: 12px;
    }
    .content {
        margin-left: 5px;
    }
}