@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@200;300;400;500&display=swap');
:root{
    --font: 'Work Sans', sans-serif;
}
body{
    font-family: var(--font);
}
.navbar-brand #logo{
    width: 70px;
}
.navbar-brand span.h5{
    font-size: 1.2rem;
    max-width: 300px;
    white-space: break-spaces;
}
@media (max-width:575px) {
    .navbar-brand #logo{
        width: 55px;
    }
    .navbar-brand span.h5{
        max-width: 200px;
    }
}
::placeholder {
    font-weight: 200;
    color: rgb(194, 194, 194);
    font-size: 1rem;
}

.form-group{
    margin-bottom: 1rem;
}
.form-group label{
    margin-bottom: 0px;
    color: rgb(110, 110, 110);
    font-size: .9rem;
}

.member_card{
    position: relative;
    padding: 1.5rem;
    background-color: #FFF;
    
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.08);
}
.member_card:first-child{
    border-radius: 6px 6px 0 0;
}
.member_card:last-child{
    border-radius: 0 0 6px 6px;
}
.member_card:not(:last-child){
    border-bottom:1px solid rgba(0, 0, 0, 0.15)
}
.remove_member{
    position: absolute;
    top: .5rem;
    right: .5rem;
}
.remove_member a{
    color: red;
}


._slot_{
    display: inline-block;
    background-color: rgba(12, 231, 110, 0.07);
    padding: .5rem 1rem;
    border-radius: 5px;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    min-width: 104px;
    margin: 10px 20px 10px 0;
    cursor: pointer;
}
._slot_ .form-check{
    margin-bottom: 0px !important;
}
@media (max-width:768px) {
    .slots{
        text-align: center;
    }
}