/* Homepage Banner */
.homeContainerContent {
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.linkHolder .linkHolder:hover {
    text-decoration: none;
    color: #000;
}

.appHomeBannerContainer {
    width: 100%;
    background-color: white;
    height: auto;
    margin: auto;
    margin-bottom: 40px;
    border-radius: 3px;
    box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.1);
    position: relative;
}

a:hover {
    text-decoration: none;
}

.appBannerImage {
    height: 200px;
    border-radius: 3px 3px 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.appBannerTextContainer {
    padding: 10px;
    color: black;
}

.appBannerTextContainer:hover {
    padding: 10px;
    text-decoration: none;
    color: black;
}

.bannerHeadline {
    margin: 0;
    font-weight: 600;
}

.bannerDescription {
    font-size: 14px;
    padding-top: 5px;
    line-height: 19px;
}

.background {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    width: 100%;
    height: auto;
    padding-top: 60%;
}

/* Banner Label */
.labelHolder {
    position: absolute;
    right: 8px;
    margin-top: 8px;
    width: auto;
    padding: 2px 8px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 3px;
    color: white;
    background-color: #e4001b;
}

.newLabel {
    color: #e4001b;
    background-color: yellow;
}

.darkBaseLabel {
    color: #fff;
    background-color: #262626;
}

.plusLabel {
    color: white;
    background-color: #00b6e8;
}

.bestSellerLabel {
    color: white;
    background-color: green;
}

@media(min-width: 600px) and (max-width: 1200px) {
    .homeContainerContent {
        width: 60%;
    }
}

@media(min-width: 1400px) {
    .homeContainerContent {
        width: 30%;
    }
}

@keyframes scaleAnimation {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1)
    }
}

@keyframes becomeDarkAnimation {
    from {
        background-color: rgba(0, 0, 0, 0);
        ;
    }

    to {
        background-color: rgba(0, 0, 0, .8);
        ;
    }
}
