.channels { margin-top: $space-medium; .inactive { filter: grayscale(100%); } .channel { @include flex; @include padding($space-normal $zero); @include background-white; @include border-light; cursor: pointer; flex-direction: column; margin: -1px; transition: all 0.200s ease-in; &:last-child { @include border-light; } &:hover { border: 1px solid $primary-color; box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1); z-index: 999; } &.disabled { opacity: .6; } img { @include margin($space-normal auto); width: 50%; } .channel__title { color: $color-body; font-size: var(--font-size-default); text-align: center; text-transform: capitalize; } p { width: 100%; color: $medium-gray; } } }