/* Global Styles */

.wttb-section {
    margin-bottom: 60px;
    opacity: 0.2;
    cursor: not-allowed;
    transition: opacity 0.45s;
    color: #232323;
}

.wttb-section.wttb-active {
    cursor: unset;
    opacity: 1;
}

.wttb-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 5px 10px;
    background-color: #232323;
    color: #fff;
}

.wttb-options {
    display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-gap: 20px;
}

.wttb-option {
    cursor: pointer;
    padding: 10px 10px 50px 10px;
    background-color: #f3f3f3;
    min-height: 250px;
    border: 1px solid #dadada;
    transition: 0.2s;
    position: relative;
}

.wttb-option-image {
    margin-bottom: 10px;
}

.wttb-option-image img {
    max-width: 100%;
}

.wttb-section:not(.wttb-section-series) .wttb-option {
    display: none;
}

.wttb-option:hover,
.wttb-option.wttb-selected {
    border: 1px solid #4a4a4a;
}

.wttb-option-title {
    font-weight: 700;
    text-align: center;
    font-size: 16px;
}

.pld-sf, .pld-sf * {
    font-family: sans-serif;
    font-size: 1em;
}

.pld-sf-required {
    color: #d9534f;
}

.pld-sf-formset {
    margin-bottom: 15px;
}

.pld-sf-formset.pld-sf-last {
    margin-bottom: 0;
}

.pld-sf-formset label {     
    font-weight: 600;
    margin-bottom: 2px;
    display: inline-block;
    cursor: pointer;
    color: #232323;
    font-size: 0.9em;
}

.pld-sf-formset textarea {
    height: 100px;
}

.pld-sf-formset input[type="submit"] {
    border: none;
    padding: 15px 10px;
    background-color: #ea3124;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    border-radius: 4px;
    width: 100%;
    max-width: 200px;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.pld-sf-formset input[type="submit"]:hover {
    background-color: #ea3124;
}

.pld-sf-formset .pld-sf-input {
    outline: 0;
    padding: 10px;
    width: 100%;
    display: block;
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    color: inherit;
}

.pld-sf-formset-sending {
    font-size: 1.5em;
    line-height: normal;
    position: relative;
    top: 4px;
    margin-left: 10px;
    color: #bbb;
    display: none;
}

.pld-sf-formset-success {
    padding: 12px 10px;
    font-size: 0.85em;
    background-color: #222;
    color: #fff;
    margin-top: 10px;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.wttb-selections {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
    margin-bottom: 30px;
}

.wttb-selection-header {
    font-weight: bold;
    margin-bottom: 20px;
}

.wttb-option-price {
    text-align: center;
}

.wttb-next {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    display: none;
}

.wttb-next .wttb-btn {
    padding: 10px;
    display: inline-block;
    background-color: #ea3124;
    width: 100%;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
}

/* Responsive Styles */

@media (max-width: 1010px){

    .wttb-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 768px){

    .wttb-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wttb-selections {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .pld-sf-formset input[type="submit"] {
        max-width: 100%;
    }

}

@media (max-width: 550px){

    .wttb-options {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

}