.type-container {
    padding: .5rem 1rem 1rem 1rem;
    min-width: 18rem;
}

.type-container .filter-button.vessel-filter {
    width: 100%;
    padding: .25rem 1rem .25rem .25rem;
    line-height: 2;
}

.type-container .filter-button.vessel-filter.active:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctitle%3Echeck-bold%3C/title%3E%3Cpath fill='%233cac62' d='M9,20.42L2.79,14.21L5.62,11.38L9,14.77L18.88,4.88L21.71,7.71L9,20.42Z' /%3E%3C/svg%3E");
    background-color: rgb(255 255 255 / 50%);
    transition: opacity 300ms linear;
}

.type-container .filter-button.vessel-filter.active {
    background-color: rgb(25 59 103 / 10%);
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.02);
    transition: background 300ms linear, box-shadow 300ms linear;
}

.type-container .filter-button.vessel-filter.active:hover {
    background-color: rgb(25 59 103 / 15%);
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.type-container .filter-button.vessel-filter.active:hover:after {
    opacity: 0.00001;
}

.type-container .filter-button.vessel-filter.active:after,
.type-container .filter-button.vessel-filter.vessel-filter-locked:after {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 2rem;
    top: 50%;
    left: 1.25rem;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 1;
    transition: background-color 300ms linear, opacity 300ms linear;
}

.type-container .filter-button.vessel-filter div {
    display: flex;
}

.type-container .filter-button.vessel-filter.vessel-filter-locked {
    position: relative;
    opacity: .85;
    color: rgb(0 0 0 / 50%);
    transition: opacity 300ms linear, color 300ms linear;
}

.type-container .filter-button.vessel-filter.vessel-filter-locked:hover {
    opacity: 1;
    color: rgb(0 0 0 / 25%);
}

.type-container .filter-button.vessel-filter.vessel-filter-locked:hover .image-container {
    opacity: .5;
}

.type-container .filter-button.vessel-filter.vessel-filter-locked:hover:after {
    background-color: rgb(0 0 0 / 20%);
    opacity: 1;
}

.type-container .filter-button.vessel-filter.vessel-filter-locked:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12,17A2,2 0 0,0 14,15C14,13.89 13.1,13 12,13A2,2 0 0,0 10,15A2,2 0 0,0 12,17M18,8A2,2 0 0,1 20,10V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V10C4,8.89 4.9,8 6,8H7V6A5,5 0 0,1 12,1A5,5 0 0,1 17,6V8H18M12,3A3,3 0 0,0 9,6V8H15V6A3,3 0 0,0 12,3Z' /%3E%3C/svg%3E");
    background-color: #A3A3A3;
    opacity: 0.00001;
}

.type-container .filter-button.vessel-filter .image-container {
    margin: 0 0.25rem;
    height: 1rem;
    background: rgb(0 0 0 / 20%);
    padding: .25rem;
    border-radius: 2rem;
    transition: opacity 300ms linear;
}

.type-container .filter-button:not(.vessel-filter) {
    width: fit-content;
    justify-content: space-between;
    padding: .25rem .75rem;
}

.type-container .filter-button {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    background: rgb(25 59 103 / 5%);
    border-radius: 2rem;
    min-width: fit-content;
    max-width: 100%;
    margin: 2px 0;
    opacity: 1;
    transition: width 300ms linear, opacity 300ms linear;
    font-weight: 500;
    position: relative;
}