/*

---------------

*/

.carousel-indicators>li {
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.carousel-indicators .active  {
    background-color: grey;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #dedede;
    font-family: 'DM Sans', sans-serif;
}

.pointer {
    cursor: pointer;
}

.arial {
    /*font-family: "Arial Black", Gadget, sans-serif;*/
}

.btn-round {
    border-radius: 17px;
}

.bg-shop {
    /* The image used */
    background-image: url('../img/shop.png');
    /* Full height */
    min-height: 80vh;
    height: 100%;
    /* Center and scale the image nicely */
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.bg-shop2 {
    /* The image used */
    background-image: url('../img/shop.svg');
    /* Full height */
    height: 100%;
    /* Center and scale the image nicely */
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 100%;
}

.img-phone {
    transform: scale(1.4);
}

.bg-queue {
    /* The image used */
    background-image: url('../img/queue-header.svg');
    /* Full height */
    /* Center and scale the image nicely */
    background-repeat: no-repeat;
    /*background-size: cover;*/
    background-position: right center;
    background-size: 60%;
}

.bg-bakery {
    /* The image used */
    background-image: url('../img/bakery-header.svg');
    /* Full height */
    /* Center and scale the image nicely */
    background-repeat: no-repeat;
    /*background-size: cover;*/
    background-position: right center;
    background-size: 60%;
}

.img-device {
    max-width: 100%;
    max-height: 100%;
    display: block;
    /* remove extra space below image */
}

.center {
    background-color: white;
    margin: 0;
    position: absolute;
    bottom: 1%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 10px 17px;
    border-radius: 25%;
    cursor: pointer;
    text-decoration: none;
}

.top-right {
    background-color: #3879F1;
    margin: 0;
    position: absolute;
    top: 50px;
    right: 1%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.menu {
    position: absolute;
    top: 50px;
    right: 1%;
}

/* Portrait phones and smaller (xss)*/

@media (max-width: 576px) {
    .menu {
        position: static;
        top: auto;
        right: auto;
    }
}

/* Landscape phones and portrait tablets (xs)*/

@media (max-width: 768px) {
    .menu {
        position: static;
        top: auto;
        right: auto;
    }
}

/* Portrait tablets and small desktops (sm)*/

@media (max-width: 992px) {
    .bg-shop {
        background-image: none;
    }
    .menu {
        position: static;
        top: auto;
        right: auto;
    }
    .bg-queue, .bg-bakery, .bg-shop2 {
        background-image: none;
    }
    .img-phone {
        transform: scale(1);
    }
}

/* Landscape tablets and medium desktops  (md)*/

@media (max-width: 1200px) {

}