﻿.sliderContainer {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 3px 3px 6px #767575;
    margin-top: 100px;
}

#slideBox {
    width: 100%;
    height: auto;
}

.imageBox {
    width: 100%;
    overflow: hidden;
}

    .imageBox img {
        width: 100%;
        height: auto;
    }

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 36px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
        background-color: rgb(52 23 2 / 0.8);
    }

.dotBox {
    position: absolute;
    text-align: center;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .active, .dot:hover {
        background-color: #341702;
    }

/* Fading animation */
.fadeIt {
    -webkit-animation-name: fadeIt;
    -webkit-animation-duration: 2.5s;
    animation-name: fadeIt;
    animation-duration: 2.5s;
}

@-webkit-keyframes fadeIt {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIt {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

#timerProgressBox {
    position: absolute;
    top: 0;
    width: 100%;
}

#timerProgress {
    height: 5px;
    width: 0;
    background-color: #341702;
}

.pointerCursor {
    cursor: pointer;
}

.devotionContainer {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.devoBox {
    width: 32%;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 3px 3px 6px #767575;
    padding: 5px;
    border-radius: 10px;
}


.devoBoxTitle {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    background-color: #341702;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.devoBoxContent {
    width: 100%;
    height: 270px;
    display: flex;
    flex-direction: column;
    padding: 10px;
    overflow-y: auto;
}

.devoItemBoxLink {
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0px 10px;
    position: relative;
}

    .devoItemBoxLink:nth-child(2n+1) {
        background-color: rgb(219 215 215 / 0.75);
    }

    .devoItemBoxLink:hover {
        background-color: #341702;
        color: #fff;
        border-radius: 3px;
    }

.overAudioBox {
    position: absolute;
    width: 100%;
    height: 50px;
    left: 0px;
    top: 0px;
    background-color: rgb(0 0 0 / 0.80);
    color: rgb(255,255,255);
    border-radius: 5px;
    text-align: center;
    font-size: smaller;
}

.itemTitleBox {
    height: 30px;
    background-color: #341702;
    color: #fff;
    text-transform: uppercase;
}


#multiSliderContainer .MS-content {
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
}


#multiSliderContainer .MS-content .item {
    width: 25%;
    height: auto;
}

.itemImgBox {
    width: 70%;
    height: auto;
}



.itemTitleBox {
    max-width: 70%;
    text-align: center;
    white-space: normal;
}

.modalBox {
    display: none;
    position: fixed;
    z-index: 1300;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(52 23 2 / 0.85);
}

.modalDialog {
    position: fixed;
    width: 70%;
    height: auto;
    overflow: hidden;
    top: 50%;
    border-radius: 10px;
    box-shadow: 3px 3px 6px rgba(0 0 0 / 0.90);
}

    .modalDialog .imgBox {
        width: 100%;
        height: auto;
        overflow: hidden;
        border-radius: 10px;
    }

        .modalDialog .imgBox img {
            width: 100%;
            height: auto;
        }

    .modalDialog .btnClose {
        position: absolute;
        width: 40px;
        height: 40px;
        left: 50%;
        top: 0;
        display: flex;
        justify-content: center;
        transform: translateX(-50%);
        align-items: center;
        font-size: large;
        border-radius: 50%;
        background-color: #ffffff;
        box-shadow: 3px 3px 6px grey;
    }

        .modalDialog .btnClose:hover {
            cursor: pointer;
            background-color: #000;
            color: #ffffff;
        }

.modalDlgShown {
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
    .devotionContainer {
        flex-wrap: wrap;
    }

    .devoBox {
        margin: 0;
        margin-bottom: 30px;
        width: 100%;
    }

    #multiSliderContainer .MS-content .item {
        width: 50%;
    }

    .modalDialog {
        width: 95%;
    }


}
