#dmg_layout_internal.dmg_internal_area_buyingguide,
#dmg_layout_internal.dmg_internal_area_sellingguide {
    max-width: 1270px;
}


/* ============================================================== */
/*      BUYING GUIDE
/* ============================================================== */
.guide-wrapper {

}

.guide-list li {
    margin-bottom: 16px;
}

.guide-list li:last-child {
    margin-bottom: 0;
}

.expandable-control {
    margin-bottom: 40px;
    font-size: 30px;
    line-height: 30px;
    text-align: left;
    color: #D71344;
    cursor: pointer;
}

.expandable-control .fa {
    font-size: 24px;
    line-height: 30px;
}

.expandable-control.active-expandable .fa {
    transform: rotate(180deg);
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
    box-sizing: border-box;
}

.active-expandable + .expandable-content {
    max-height: 700px;
    padding-bottom: 20px;
    transition: max-height .5s ease;
}

.guide-slideshow-wrapper {
    width: 100%;
    max-width: 960px;
    margin: 120px auto 10px;
}

.guide-slide-flex {
    padding: 0 30px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    box-sizing: border-box;
}

.slide-heading {
    width: 100%;
    text-align: center;
    font-family: 'Noto Serif', serif !important;
    color: #23346D !important;
}

.slide-text {
    flex: 1;
}

.slide-image {
    margin-top: 20px;
    margin-right: 30px;
}

.guide-slideshow-wrapper .slick-prev, .guide-slideshow-wrapper .slick-next {
    width: 36px;
    height: 36px;
    background: #edeef2 !important;
    border-radius: 5px;
}

.guide-slideshow-wrapper .slick-prev:before, .guide-slideshow-wrapper .slick-next:before {
    font-family: "Font Awesome 5 Pro";
    font-size: 20px;
    line-height: 1;
    color: #d71344;
    opacity: 0.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.guide-slideshow-wrapper .slick-next:before {
    content: "\f054";
    font-weight: bold;
}

.guide-slideshow-wrapper .slick-prev:before {
    content: "\f053";
    font-weight: bold;
}

.guide-slideshow-wrapper .slick-next:hover:before,
.guide-slideshow-wrapper .slick-prev:hover:before {
    color: #23346D !important;
}

.guide-slideshow-wrapper .slick-dots {
    display: flex;
    justify-content: space-between;
}

.guide-slideshow-wrapper .slick-dots:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #CCCCCC;
    position: absolute;
    top: 23px;
}

.guide-slideshow-wrapper .slick-dots {
    bottom: auto;
    top: -100px;
}

.guide-slideshow-wrapper .slick-dots li {
    width: 50px;
    height: 50px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.guide-slideshow-wrapper .slick-dots button {
    width: 50px;
    height: 50px;
    background: #edeef2;
    border-radius: 5px;
    border: 0;
    font-family: 'Noto Serif', serif !important;
    color: #d71344;
    font-size: 30px;
    line-height: 30px;
}

.guide-slideshow-wrapper .slick-dots li:hover button {
    color: #23346D;
} 

.guide-slideshow-wrapper .slick-dots .slick-active button {
    background: #23346D;
    color: #FFFFFF;
}

.guide-slideshow-wrapper .slick-dots .slick-active:hover button {
    background: #23346D;
    color: #FFFFFF;
}

@media only screen and (max-width: 600px) {
    .guide-slide-flex {
        padding: 0 10px;
    }

    .guide-slideshow-wrapper {
        width: 90%;
    }
}

