@import "../../_common/scss/main";

.CuisineCarouselItem {
    position: relative;

    @include mobile-only {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    &:hover {
        text-decoration: none;
        cursor: pointer;
    }

    & + .CuisineCarouselItem {
        margin-left: $gutter-large;

        @include mobile-only {
            margin-left: $gutter;
        }

        @include iphone6{
            margin-left: $gutter-small
        }
        
    }

    &__Icon__Container {
        position: absolute;
        right: 5px;
        top: 2px;
        color: $white;
        background: $blue-primary;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        font-size: $font-size-small;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    &__Img {
        width: 84px;
        height: 84px;
        margin-bottom: $gutter;
        box-sizing: border-box;
        border-radius: 50%;

        @include mobile-only {
            width: 64px;
            height: 64px;
        }

        &--active {
            border: 1px solid $blue-primary;
            padding: $gutter-extra-small;
            border-radius: 50%;
        }
    }

    &__Title {
        color: $gray-titles;
        font-size: $primary-font-size;
        letter-spacing: 0;
        line-height: $primary-line-height;
        text-align: center;
        margin: 0;

        @include mobile-only {
            font-size: $font-size-small;
            width: 70px;
        }

        &--active {
            font-weight: 600;
        }

        &--feature {
            width: 88px;

            @include mobile-only{
                width: 72px;
            }
        }
    }

    &:hover {
        text-transform: none;
    }
}
