.module__nav {
    background: #F7F6F6;
    margin-bottom: 40px;
    padding: 25px 0;
}

.module__nav-link {
    color: #7A7A7A;
    font-weight: bold;
    margin-right: 40px;
    font-size: 13px;
}

.module__nav-link:hover {
    color: #000;
}

.module__card {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 1px solid #F1F0F0;
}

.module__img-holder {
    width: 33%;
}

.module__info {
    width: 58%;
}

.module__img {
    width: 100%;
}

.module__name {
    font-weight: bold;
    font-size: 24px;
    color: #181818;
    margin-bottom: 25px;
}

.module__property {
    margin-bottom: 50px;
    padding-left: 65px;
    position: relative;
    color: #181818;
}

.module__property-icon {
    width: 45px;
    position: absolute;
    left: 0;
    top: 0;
}

.module__property-title {
    font-size: 15px;
    font-weight: bold;
    padding-bottom: 5px;
}

.module__manufacturer {
    font-size: 18px;
    color: #E20932;
    font-weight: bold;
}

.module__includes, .module__downloads {
    padding-left: 20px;
}

.module__includes-item, .module__downloads-item {
    list-style: circle;
    list-style-type: disc;
    color: #000;
}

.module__downloads-item-link {
    color: #E20932;
}

.module__downloads-item-link:hover {
    text-decoration: underline;
}

.module__basic-set-price {
    font-size: 18px;
    font-weight: bold;
}

.module__buy-controls {
    padding-left: 65px;
}

.module__buy-btn {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    text-align: center;
    background: #E20932;
    padding: 10px 20px;
    border: 2px solid #E20932;
    transition: 200ms ease all;
}

.module__buy-btn:hover {
    background: #fff;
    color: #E20932;
}

.module__buy-btn--inactive {
    background: #999999;
    border: 2px solid #999999;
    cursor: default;
}

.module__buy-btn--inactive:hover {
    color: #fff;
    background: #999999;
}

.module__availability {
    margin-top: 25px;
    font-size: 13px;
    font-weight: bold;
}

.module__desc {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    color: #010101;
    padding: 50px 15px;
}

.module__desc p {
    margin-bottom: 10px;
}

.module__list-title {
    margin: 20px 0 10px;
    font-size: 19px;
}

.module__desc ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.module__desc ul li {
    list-style: circle;
    list-style-type: disc;
}

.module .recommended-modules{
    padding-bottom: 90px;
}
@media screen and (max-width: 992px) {
    .module__card {
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    .module__nav-links {
        display: inline-flex;
        flex-direction: column;
    }
    .module__nav-link {
        margin-right: 0;
        margin-bottom: 5px;
        text-align: center;
    }
    .module__basic-set-price {
        display: block;
    }
}
