.lobby-wrapper {
    max-width: 100%;
    height: auto;
    padding: 0;
    margin:5px auto 0 auto;
}
.lobby-wrapper .row {
    margin-right: 0px;
    margin-left: 0px;
    padding: 10px 0 20px 0;
}
.lobby-wrapper .row .col-3 {
    padding-right: 5px;
    padding-left: 5px;
    margin: 10px 0;
    height: auto;
}
.lobby-wrapper .row .col-4 {
    padding-right: 5px;
    padding-left: 5px;
    margin: 10px 0;
    height: auto;
}
.slot__title {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
}
.slot__title .left__Div {
    width: 100%;
    height: auto;
    flex: 1;
}
.left__Div h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 300;
    padding: 0 0 0 10px;
    text-align: left;
}
.slot__title .right__Div {
    width: 100%;
    padding: 0 10px 0 0;
    height: auto;
    flex: 1;
}
.search__container {
    padding-top: 64px;
}
.search__input {
    width: 100%;
    padding: 8px 24px;
    background-color: transparent;
    transition: transform 250ms ease-in-out;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    background-color: transparent;
    background-image: url("../images/search.png");
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: 95% center;
    border-radius: 50px;
    border: 1px solid #575756;
    transition: all 250ms ease-in-out;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}
.search__input::placeholder {
    color: rgba(87, 87, 86, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.search__input:hover,
.search__input:focus {
    padding: 12px 0;
    outline: 0;
    border: 1px solid transparent;
    border-bottom: 1px solid #575756;
    border-radius: 0;
    background-position: 100% center;
}
.filter {
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 5px;
    row-gap: 5px;
    width: 100%
}
.filter ul {
    margin-top: 0;
    margin-bottom: 1rem;
}
.filter .nav-item {
    flex: 1 1 auto;
    text-align: center;
    border: 0;
}

*,
::before,
::after {
    box-sizing: border-box;
}
.btn-block {
    display: block;
    width: 100%;
}
.btn_filter {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 10px;
    line-height: 1.5;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    cursor: pointer;
    color: #000 !important;
    text-decoration: none;
    border: 1px solid #c4c4c4;
    background: rgb(255, 255, 255, 1);
    border-radius: 5px;
}
.btn_filter:hover {
    background: #0543cf;
    color: #fff !important;
}
.filter .nav-item .active {
    color: #28acc5;
    border: 1px solid #28acc5;
    background-image: -moz-linear-gradient(90deg, rgb(202, 216, 219) 0%, rgb(255, 253, 248) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(202, 216, 219) 0%, rgb(255, 253, 248) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(202, 216, 219) 0%, rgb(255, 253, 248) 100%);
}
.boxes {
    width: 100%;
    height: auto;
    margin: 10px 0;
    padding: 20px 15px 0 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}
.lobby-game {
    width: 100%;
}
.lobby-game img {
    max-width: 100%;
}
.btn-lobby-play {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-align: center;
    letter-spacing: normal;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 1px solid #fff;
    display: inline-block;
    cursor: pointer;
    width: 100%;
    padding: 5px 3px;
    margin-bottom: 10px;
    text-decoration: none;
    text-shadow: 0px 0px 0px #022147;
    text-transform: uppercase;
    background: #f9ad1c;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}