/* Nav Dropdowns */

.navContent ul li ul a {
    white-space: normal !important;
    overflow: visible !important;
    text-transform: Capitalize;
}

@media only screen and (min-width: 768px) {
    .navContent ul li ul {
        min-width: 250px !important;
        right: auto !important; 
    }
}

/* Equalize Simple List Blocks - Custom Home Page*/

/* Change item class here */
.items_d0b6ac4e7ef048138d64a65d701fead3 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_d0b6ac4e7ef048138d64a65d701fead3  > .item {
	display: flex;
	flex-direction: column;
}

/* Equalize Simple List Blocks*/

/* Change item class here */
.items_a1afdd7112e44c95a249dc995e1fee3c { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_a8e520a7058644e7864d97100fa772c8 > .item {
	display: flex;
	flex-direction: column;
}

 /********************
ACCORDION BASE STYLES
-edit look of accordion here
********************/
.mwd-header {
    font-size: 30px;
  }
  
  .mwd-accordion {
    margin: 30px 0;
  }
  
  .mwd-accordion .mwd-accordion-item {
    border: 1px solid #978C64;
    margin-bottom: 15px;
  }
  .mwd-accordion .mwd-accordion-item .mwd-accordion-title {
    font-size: 24px;
    background: #978C64;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
  }
  .mwd-accordion .mwd-accordion-item .mwd-accordion-content {
    color: black;
    padding: 20px 20px 0 20px;
  }
  .mwd-accordion .mwd-accordion-item .mwd-accordion p {
    margin: 0;
  }
  
  /********************
  BASE +/- STYLES
  ********************/
  .mwd-accordion-content {
    display: block;
    overflow: hidden;
    max-height: 100%;
    transition: all 0.3s ease-in-out;
  }
  
  .mwd-accordion-title > :first-child {
    max-width: 90%;
  }
  
  .mwd-accordion-title {
    position: relative;
  }
  .mwd-accordion-title .mwd-accordion-icon {
    position: absolute;
    background: white;
    width: 20px;
    height: 3px;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
  }
  
  /* Accordian Dropdown Button Styles */
.accordion {
    background-color: #eee;
    color: #a1a1a1;
    cursor: pointer;
    margin-top: 10px;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: 0px;
    outline: none;
    transition: 0.4s;
}

/* Accordian Button Hover */
.active, .accordion:hover {
    background-color: #dfdfdf;
}

/* Accordian Button Icon */
.accordion:after {
    content: '+'; /* Unicode character for "plus" sign (+) */
    font-size: 20px;
    color: #117CB4;
    margin-left: 20px;
}

.active:after {
    content: "-"; /* Unicode character for "minus" sign (-) */
}

/* Accordian Panel Styles */
.panel {
    padding: 10px 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}
  .mwd-accordion-title .mwd-accordion-icon:after {
    content: "";
    position: absolute;
    background: white;
    width: 3px;
    height: 20px;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
  }
  
  .active .mwd-accordion-icon:after {
    transform: translateY(-50%) rotate(90deg);
  }
  
  /*Deck Installation Equalize Simple List Blocks*/

/* Change item class here */
.items_f5e13dde61d448c2b5d15b524e92ce5a { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_f5e13dde61d448c2b5d15b524e92ce5a > .item {
	display: flex;
	flex-direction: column;
}
/*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;
    color: #13283A;
}
.popup-text {
    padding: 15px;
    color: #13283A;
}

.mad-popup-wrap p.popup-header {
    margin: 20px;
    font-size: 30px;
    color: #13283A;
    text-align: center;
}

.mad-popup-wrap p.popup-subheader {
    margin: 10px;
    font-size: 20px;
    color: #13283A;
    text-align: center;
}
.qr-code img {
    max-width:250px;
}
@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);*/
/*}*/