:root {
    --open-width: 200px;
}

.move-to-left {
    transform: translateX(var(--open-width));
}

.default {
    /* transform: translateX(100px); */
}

.sidebar {
    height: 100%;
    width: var(--open-width);
    position: fixed;
    z-index: 1;
    left: calc(var(--open-width) * -1);
    background-color: rgb(38, 38, 38);
    box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.4);
    transition: transform .7s ease-in-out;
}

.sidebar-tab {
    height: 100%;
    width: 2rem;
    position: fixed;
    z-index: 1;
    left: 0;
    background-color: rgb(10, 10, 10);
    box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.5);
    transition: transform .7s ease-in-out;
}

#sidebar-tab-text {
    width: var(--open-width);
}

.vertical-text {
    transform: rotate(90deg);
    transform-origin: left 2rem;
    vertical-align: middle;
    color: white;
}

.arrow {
    margin-left: 10px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    transform: rotate(0deg) scale(0.75);
    transition: all 0.5s ease-in-out;
    width: 32px;
    height: 32px;
    z-index: 1;
}

.arrow:after, .arrow:before {
    content: "";
    box-sizing: border-box;
    display: block;
    position: absolute;
    transition: all 0.25s ease-in-out;
    border-radius: 10px;
    background: rgb(255, 255, 255);
    width: 16px;
    height: 3.2px;
    top: 9px;
}

.arrow:after {
    transform: rotate(-44deg);
    left: 3.2px;
}

.arrow:before {
    right: 3.2px;
    transform: rotate(44deg);
}

.arrow.active:after {
    transform: rotate(44deg);
}

.arrow.active:before {
    transform: rotate(-44deg);
}

.slide {
    width: 100%;
    background-color: rgb(83, 83, 83);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0px 10px 0px;
}

.response {
    background-color: rgb(96, 96, 96);
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.response div button {
    border-width: 0px;
    border-radius: 10px;
    padding: 5px 10px 5px 10px;
    margin: 5px;
    background-color: rgb(152, 152, 152);
    color: white;
}

.response div button:hover {
    background-color: rgb(122, 122, 122);
}

.pending {
    position: absolute;
    bottom: 54px;
    height: 100px;
    width: 100%;
    background-color: rgb(83, 83, 83);
}

/* Slides */
.mySlides {
    display: flex;
    justify-content: center;
    background-color: rgb(83, 83, 83);
}

/* Next & previous buttons */
.prev, .next {
    text-decoration: none;
    cursor: pointer;
    position: absolute;
    width: auto;
    padding: 0px 18px 0px 18px;
    color: #888;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.prev {
    left: 0px;
}

.prev:hover, .next:hover {
    color: rgb(200, 200, 200);
}

/* Position the "next button" to the right */
.next {
    position: absolute;
    right: 0;
    border-radius: 3px 0 0 3px;
}

.addFriend {
    border-width: 0px;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 5px 25px 5px 25px;
}

.friend {
    margin: 10px;
    background-color: rgba(157, 157, 157, 0.631);
    border-radius: 5px;
    padding: 10px 25px 10px 25px;
}

.friend a {
    position: relative;
    left: 15px;
    top: -3px;
    color: white;
    text-decoration: none;
}

.online {
    background-color: rgba(60, 255, 0, 0.631);
}