.activitiesControls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8px 8px;
  border-bottom: 1px solid #28223E;
  /* width: calc(100% - 16px); */
}

.activitiesControls .filterControls {
  display: flex;
}
    .activitiesControls .filterControls .form-check {
        /* display: block; */
        position: relative;
        padding-inline-start: 16px;
        margin-bottom: 0px;
        cursor: pointer;
        font-size: 22px;
        margin-inline-end: 24px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
.activitiesControls .filterControls .form-check span{
    color: #B6B4BD;
    text-shadow: 0px 1px 2px #0F0B1D52;
    font-size: 8px;
    font-weight: 600;
    text-transform: capitalize;
}
/* Hide the browser's default radio button */
.activitiesControls .filterControls .form-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
        .activitiesControls .filterControls .form-check label {
            position: absolute;
            top: 0;
            inset-inline-start: 0;
            height: 13px;
            width: 13px;
            background-color: #28223E;
            border-radius: 50%;
            border: 1px solid #214E87;
        }

/* On mouse-over, add a grey background color */
.activitiesControls .filterControls .form-check:hover input ~ label {
    background-color: rgba(40, 34, 62, 0.5);
;
}

/* When the radio button is checked, add a blue background */
.activitiesControls .filterControls .form-check input:checked ~ label {
  background-color: #28223E;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.activitiesControls .filterControls .form-check label:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.activitiesControls .filterControls .form-check input:checked ~ label:after {
  display: block;
}

/* Style the indicator (dot/circle) */
        .activitiesControls .filterControls .form-check label:after {
            top: 3px;
            inset-inline-start: 3px;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #214E87;
        }

.activitiesControls .expandControl {
}
.activitiesControls .expandControl img {
  width: 16px;
  height: 16px;
}
