/*!
 * Start Bootstrap - Shop Homepage HTML Template (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

/* Carousel and slides styling */
/* NOTE: these styles rely on existing bootstrap styling */
.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    background-color: #000000;
}

/* Controls styling */
/* NOTE: these styles rely on existing bootstrap styling */
.carousel-control-prev,
.carousel-control-next {
    background-image: none;
    background-color: #ffffff;
    top: 50%;
    bottom: auto;
    width: auto;
    padding: calc(0.7 * 14px);
    margin-top: calc(0.7 * -45px);
    opacity: 1;
    box-shadow: 0 2px 6px 3px rgba(0, 0, 0, 0.39);
}

.carousel-control-prev {
    left: 0;
    border-radius: 0 calc(0.7 * 12px) calc(0.7 * 12px) 0;
}

.carousel-control-next {
    right: 0;
    border-radius: calc(0.7 * 12px) 0 0 calc(0.7 * 12px);
}

.carousel-control-prev img,
.carousel-control-next img {
    width: calc(0.7 * 26px);
}

@media screen and (min-width: 992px) {
    .carousel-control-prev,
    .carousel-control-next {
        padding: 14px;
        margin-top: -45px;
    }

    .carousel-control-prev {
        border-radius: 0 12px 12px 0;
    }

    .carousel-control-next {
        border-radius: 12px 0 0 12px;
    }

    .carousel-control-prev img,
    .carousel-control-next img {
        width: 26px;
    }
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #dddddd;
    opacity: 1;
}

.carousel-indicators {
    align-items: center;
    height: 28px;
    margin-bottom: 0;
}

.carousel-indicators li {
    opacity: 1;
    width: calc(0.8 * 12px);
    height: calc(0.8 * 12px);
    border: 2px solid #ffffff;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.31);
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.39);
    background-clip: unset;
    transition: background-color 0.6s ease;
}

.carousel-indicators li.active {
    opacity: 1;
    background-color: #ffffff;
    transform: scale(1.25);
}

@media screen and (min-width: 992px) {
    .carousel-indicators {
        align-items: center;
        height: 6.75%;
        margin-bottom: 0;
    }

    .carousel-indicators li {
        opacity: 1;
        width: 12px;
        height: 12px;
    }
}

/* Embedded video styling */
.carousel-item .video {
    position: absolute;
    border: 0;
}

.carousel-item .video.variant-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.carousel-item .video.variant-2 {
    width: 86.5%;
    height: 86.5%;
    top: 6.75%;
    left: 6.75%;
}

@media screen and (min-width: 1200px) {
    .carousel-item .video.variant-1,
    .carousel-item .video.variant-2 {
        width: 86.5%;
        height: 86.5%;
        top: 6.75%;
        left: 6.75%;
    }
}

