.wizard-navigation {
    display: flex;
    border-bottom: solid 1px #ddd;
    padding-bottom: 20px;
}

.wizard-navigation__count {
    font-size: 17px;
    line-height: 25px;
    background-color: #eee;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #aaa;
    border: solid 2px #eee;
}

    .wizard-navigation__count.active {
        background-color: #aaa;
        color: #fff;
        border: solid 2px #7d7d7d;
    }

    .wizard-navigation__count.complete {
        color: #fff;
        background-color: #5bcc22;
        border: solid 2px #5bcc22;
    }

.wizard-navigation__item {
    flex: 1;
    cursor: pointer;
}

.wizard__step {
    padding: 15px;
}

    .wizard__step h2 {
        margin-bottom: 10px;
        margin-top: 0;
    }

.buttonset {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.filter-box {
    width: 50%;
}

.button--add {
    display: inline-block;
    padding: 5px 15px;
    color: #fff;
    background-color: #78cb31;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 17px;
    transition: .3s ease all;
}

    .button--add:hover {
        text-decoration: none;
        transform: scale(1.1);
        color: #fff;
    }

.selected__count {
    background-color: #fff;
    font-size: 24px;
    position: sticky;
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: center;
}

.input--search {
    padding: 5px 15px;
    width: 100%;
}

button.modal-default-button {
    background-color: #78cb31;
    color: #fff;
}

.team {
    margin-bottom: 20px;
}

    .team.team-closed .team__members {
        display: none;
    }

.team__header {
    cursor: pointer;    
    background-color: #ddd;
    font-size: 18px;
    padding: 5px;
}

.team__members, .chosen__items {
    display: flex;
    flex-wrap: wrap;
}

.team__member, .chosen__item {
    flex: 1 0 49%;
    margin-right: 5px;
}

.chosen__item {
    max-width: calc(50% - 5px);
}

    .chosen__item.single {
        margin: auto;
    }

.team__member:nth-child(even) {
    margin-right: 0;
}

.member__image {
    height: 50px;
    width: 50px;
    margin-right: 15px;
    border-radius: 50%;
    display: block;
    background-position: center top;
    background-size: 140%;
}

.member__card {
    position: relative;
    display: flex;
    padding: 10px;
    background-color: #f8f8f8;
    cursor: pointer;
    color: black;
    margin-bottom: 0px;
    align-items: center;
    border: solid 1px #f8f8f8;
}

    .member__card.disabled--double {
        opacity: .5;
        pointer-events: none;
    }

    .member__card.active {
        background-color: #eee;
        border: solid 1px #ddd;
        opacity: 1;
    }

.member__flag {
    display: inline-block;
    margin-right: 5px;
    font-size: 0;
    vertical-align: middle;
}

.member__name {
    display: inline;
    font-weight: bold;
    vertical-align: middle;
}

.member__info {
    margin-top: 5px;
}

.disabled--double .error--double {
    position: absolute;
    right: 15px;
    bottom: 0px;
    font-weight: bold;
    font-size: 11px;
}
/*.member__card.disabled:not(.active){
    pointer-events: none;
    cursor:default;
}*/
.member__card:hover {
    text-decoration: none;
    color: black;
    border: solid 1px #000;
}

.member__flag img {
    width: 20px;
}

.checkmark-container {
    flex: 1;
    text-align: right;
}

    .checkmark-container img {
        height: 25px;
        width: auto;
        text-align: right;
        display: none;
    }

.close-container {
    flex: 1;
    display: flex;
    justify-content: end;
}

.member__card.active .checkmark-container img {
    display: inline;
}

.btn:disabled {
    opacity: .5;
}

    .btn:disabled:hover {
        transform: none;
        background-color: #ed1c23;
        border-color: #ed1c23;
    }

.selection__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border: 1px dashed #aaa;
    font-size: 18px;
    cursor: pointer;
    transition: .3s ease all;
    margin: auto;
    height: 90px;
}

    .selection__placeholder:hover {
        background-color: #f8f8f8;
    }

.selection__single {
    margin-bottom: 30px;
}

    .selection__single .chosen__items {
        margin-top: 0;
    }

    .selection__single .member__card {
        margin-bottom: 0;
    }

.errors {
    text-align: center;
}

    .errors span {
        color: #ed1c23;
        font-weight: bold;
        font-size: 16px;
    }

.form-group {
    width: 50%;
    margin: auto;
    margin-bottom: 20px;
    ;
}

.wizard__step ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

    .wizard__step ul:not(.personaldata) li:nth-child(even) {
        background-color: #eee;
    }

    .wizard__step ul:not(.personaldata) li:nth-child(odd) {
        background-color: #eee;
        background-color: #f8f8f8;
    }

    .wizard__step ul:not(.personaldata) li {
        padding: 5px 15px;
    }
ul.personaldata {
    margin-bottom: 0;
}
ul.personaldata li {
    margin-bottom: 15px;
}

.mt-30 {
    margin-top: 30px;
}

.mr-5 {
    margin-right: 5px !important;
}

.chosen__item {
    display: flex;
}

    .chosen__item .member__card {
        flex: 1;
    }

    .chosen__item .selectionnumber {
        display: flex;
        width: 50px;
        font-size: 20px;
        align-items: center;
        justify-content: center;
        background-color: #eee;
    }

.jersey {
    width: 40px;
}

@media only screen and (max-width: 768px) {

    .selected__count {
        font-size: 14px;
    }
    .chosen__item .selectionnumber {
        width: 30px;
        font-size: 16px;
    }
    .team__member, .chosen__item {
        max-width: 100%;
        width: 100%;
        flex: 1 0 100%;
    }

    .form-group {
        width: 100%;
    }

    .wizard-navigation__title {
        font-size: 11px;
    }

    .wizard__step {
        padding: 15px 0;
    }


    .filter-box {
        width: 75%;
    }

    .selection__placeholder {
        font-size:14px;
        height: 55px;
    }

    .team__header {
        font-size: 14px;
    }
}
