body{
    max-width: 100%;
    overflow-x: hidden;
}

/* --- Product Selection --- */
.selection-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-row-gap: 15px;
    grid-column-gap: 15px;
}

@media (max-width: 500px) {
    .selection-products {
        display: block;
    }
        .selection-products label {
            display: block;
            margin-bottom: 15px;
        }
}

.selection-products label {
    
}
    /* individual product item */
    .selection-product-item {
        background: #fff;
        border: 1px solid #e7e6e6;
        cursor: pointer;
        display: block;
        height: 100%;
        
        text-align: center;
        position: relative;
        z-index: 0;
    }
        .selection-product-item img {
            padding: 10px 0 0 0;
            margin-bottom: 20px;
            height: 100%;
            max-height: 100px;
            width: auto !important;
            max-width: none !important;
        }

/* radio button functionality + selection notification */
.selection-product-item [type=radio] {
    position: absolute;
    top: 0;
    left: 0;
}

.selection-product-item input {
    margin: 0 !important;
    opacity: 0;
    height: 0;
    width: 0;
    
    z-index: -25;
}

.selection-product-item-title {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
    /* selected option */
    [type=radio]:checked ~ .selection-product-item-title {
        outline: 3px solid #009530;
    }

/*
    .selection-product-item [type=radio]:after {
        content: '';
        height: 100%;
        width: 100%;
        position: absolute;
        background: #fff;
    }
*/
/*
        .selection-product-item [type=radio]:checked:after {
            outline: 3px solid #009530;
        }
*/

/* form spacing */
#id_questions input {
    margin-bottom: 15px;
}

/* --- other --- */

.location-title{
    font-size: 18px;
}

.location-title i {
    font-size: 24px;
    margin-right: 5px;
    color: #003e7e;
}

.form-flags {
    float: right;
    margin: -60px 0 30px 0
}

@media (min-width: 1175px) {
    
}

@media (max-width: 1175px) and (min-width: 981px) {
    
}

@media (max-width: 980px) {
    .form-flags {
        float: none;
        margin: 0 0 30px 0
    }
}

@media (max-width: 395px) {
    .form-flags {
        float: none;
        margin: 0 0 30px 0
    }
}

/* Hides slider dots */
.et-pb-controllers{
    display: none;
}

/* === Rates Page === */
.entry-content table, body.et-pb-preview #main-content .container table{
    text-align: center !important;
}

@media (max-width: 980px){
    .responsive-table{
        overflow-x: scroll;
    }
    
}

.wpsl-search{
    padding: 15px;
}
