/* Nav Dropdowns */

.navContent ul li ul a {
    white-space: normal !important;
    overflow: visible !important;
}

@media only screen and (min-width: 768px) {
    .navContent ul li ul {
        min-width: 250px !important;
        right: auto !important; 
    }
}

/* Button Padding - Sitewide */

.button, .navContent li .button {
    padding: 10px 30px;
}

/* Custom Font Import - Overrides Sitewide Settings */

h1, h2, h3, h4, h5, h6, .contentTitle, .contentTitle a, .navContainer, .button, .navContent li .button {
    font-family: "minerva-modern", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

/* Responsive Inline Simple List */

@media only screen and (max-width: 767px) {
    #page_e00b3f7930bf44a9af4a89931b583d51 .listView.vAlgn1 .itemPreview.hasImg, 
    #page_e00b3f7930bf44a9af4a89931b583d51 .listView.vAlgn2 .itemPreview.hasImg {
        display: block;
    }
    
    #page_e00b3f7930bf44a9af4a89931b583d51 .listView .itemPreview.hasImg .itemImg {
        width: 100%;
        margin-bottom: 20px;
    }
    
    #page_e00b3f7930bf44a9af4a89931b583d51 .listView .itemPreview.hasImg .itemContent {
        width: 100%;
    }
}

/* Homepage - Mobile Hero Styling */

@media only screen and (max-width: 768px) {
/*
    div.blockWrap_ca1ee18fdbce4f3aa90e5a9067086564 {
        padding-top: 50px;
        padding-bottom: 150px;
    }
*/

    .blockWrap_ca1ee18fdbce4f3aa90e5a9067086564 .contentTitle {
    font-size: 40px;
    }
}


/* Book Pages - Buy Now Buttons Full Width */

.items_dfb52d32bef944ce922ee9308c1fb8ee  .itemInnerContent .button {
    width: 100%;
}

/* Equalize Simple List Blocks*/

/* Change item class here */
.items_aba81e2b94d24149ad90c4af7f80cc8a,
.items_dfacf06031c84278810756062c4613c3,
.items_aaad78f02f4e4c35a719b2b42d7cb191 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_aba81e2b94d24149ad90c4af7f80cc8a  > .item,
.items_dfacf06031c84278810756062c4613c3  > .item,
.items_aaad78f02f4e4c35a719b2b42d7cb191  > .item {
	display: flex;
	flex-direction: column;
}

/* Image Full Width Homepage */
.blockWrap_ca1ee18fdbce4f3aa90e5a9067086564 .contentImg {
    width: 100%;
    padding-bottom: 30px;
}

/* Scrolling Images */

#scrollcontainer {
    width: 100%;
    overflow: hidden;
}
#scrollcontainer .scroll {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: fit-content;
    white-space: nowrap;
    animation: loop 60s linear infinite;
}

@keyframes loop {
    0% {transform: translateX(0%);}
    100% {transform: translateX(-50%);}
}

.scrollimage {
    max-width: 1400px;
}
/*Popup CSS*/
.mad-popup-wrap {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 76%);
    z-index: 9999;
}

.mad-popup-wrap.show{
  display:block;
}

.mad-popup-content img {
    max-width: 100%;
    width: 100%;
}

.mad-popup-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    min-width: 500px;
    text-align: center;
}

.mad-popup-wrap .close {
    position: absolute;
    top: 5px;
    right: 5px;
    min-width: 30px;
    cursor: pointer;
}

.mad-popup-text {
    padding: 15px;
}

.mad-popup-wrap p.popup-header {
    margin: 0;
    font-size: 30px;
    text-align: center;
}

.mad-popup-wrap p.popup-subheader {
    margin: 0;
    font-size: 25px;
    text-align: center;
}

@media screen and (max-width: 550px){
  .mad-popup-box {
        min-width: 90%;
        top: 12rem;
        transform: translate(-50%);
    }
}

/*uncomment to change color of the popup text*/
/*p.popup-header, p.popup-subheader {*/
/*    color: black;*/
/*}*/

/*uncomment to change close button to white*/
/*.close svg {*/
/*    filter: invert(1);*/
/*}*/