
/*
# Container / Columns / Grid
============================================ */
/*
.wrapper {
    max-width: 1366px;
    margin: 4rem auto;
    
}
*/

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.column {
    flex: 1;
}

.item {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 20%;
    min-width: auto;
    max-width: 25%;
}


/*
# Helper Classes
============================================ */
.text-uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.mb-50 {
    margin-bottom: 5rem;
}

.divider {
    margin: 3.2rem 0 2rem 0;
    border: none;
    height: 1px;
    color: #ddd;
    background-color: #ddd;
}


/*
# CAD Stuff
============================================ */
.cad_card {
    border: 1px solid #B7B7B7;
    padding: 3rem 2rem 1.4rem 2rem;
    text-align: center;

}

.cad_info strong {
    font-weight: 400;
}

.cad_card--heading {
    font-size: 2.4rem;
    margin-top: 0;
    margin-bottom: 0;
}

.cad_card--content {
    font-size: 1.4rem;
    margin-top: 4rem;
    padding: 0 2rem;
}

.cad_card--content strong {
    font-weight: 400;

}

.cad_card--download-btn {
    color: white;
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    /*border:1px solid #ccc;*/
    background-color: #009fde;
    padding:7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    
}

.cad_card--download-btn .fa {
    margin-right: 0.32rem;
}

/*
# Search
============================================ */
.search input[type=text] {
    font-size: 2rem;
    font-weight: 300;
    width: 50%;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 1px solid;
    border-color: #B7B7B7;
}

.search h4 {
	margin-bottom: var(--space-xs);
}

.fumex-downloads input {
    width: 100%;
}

.fumex-downloads .search {
    margin-bottom: 2rem;
}


/*
# Dropdowns
============================================ */
/* The container must be positioned relative: */

.dropdowns {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2rem;
}

.custom-select {
    min-width: 300px;
    position: relative;
}

.custom-select select {
    display: none;
    /*hide original SELECT element: */
}

.select-selected {
    background-color: white;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "\f078";
    font-family: "FontAwesome";
    top: 0.7rem;
    right: 3rem;
    width: 0;
    height: 0;
    /* border: 6px solid transparent;
    border-color: #333 transparent transparent transparent; */
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
    color: #333;
    padding: 8px 16px;
    border: 1px solid #B7B7B7;
    border-bottom: 0;
    cursor: pointer;
}

.select-items div:last-child,
.select-selected {
    border-bottom: 1px solid #B7B7B7;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}



/*
# Media query for screens smaller than 768px
============================================ */
@media (max-width: 768px) {
    .column {
        flex-basis: 100%;
        max-width: 100%;
    }
    .cad_card {
        padding: 3rem 0;
    }
}