.bt-option {
    display: flex;
    margin: 10px;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.d-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
    --auto-grid-min-size: 16rem;
    align-items: center;
    justify-content: center;
    justify-items: center;
    grid-gap: 1rem;
}

.selectable-option {
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0 !important;
}

.selectable-option.selected {
    background-color: transparent;
    color: white;
    /*filter: brightness(0.6);*/
        box-shadow: 1px 1px 10px 1px #33677fc4;
}

.option-input {
    display: none;
}

ul.final-results {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

ul.final-results li {
    margin: 15px;
}

label.option-title {
    position: absolute;
    color: white;
    z-index: 1;
    top: 10px;
    left: 25px;
        text-transform: capitalize;
}

.option-image {
    width: 100%;
    width: -webkit-fill-available;
    object-fit: cover;
    /*filter: brightness(0.5);*/
    border-radius: 12px;
    width: 250px;
    height: 150px;
    position:relative;
}

.selectable-option.selected {
    color: white;
    /*padding: 1px;*/
    background-color: transparent;
    border-radius: 14px;
    transform: scale(1.05);
        box-shadow: 1px 1px 10px 1px #33677fc4;
}

.option-item {
    margin: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 21px;
    font-weight: 600;
    justify-content: center;
    width: 250px;
    cursor: pointer;
    position:relative;
}

.option-item.selected {
    color: white;
    /*padding: 1px;*/
    box-shadow: 1px 1px 10px 1px #33677fc4;
    background-color: transparent;
    border-radius: 12px;
    transform: scale(1.05);
    filter: brightness(0.8);
        border: 2px solid #128be0;
}

.slash-line {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    align-content: center;
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr)) !important;
    --auto-grid-min-size: 10rem !important;
    align-items: center;
    justify-content: center;
    justify-items: center;
    grid-gap: 1rem !important;
}

p.option-title {
    position: absolute;
    z-index: 1;
    color: white;
}
span.option-title {
    /* margin-top: -21px; */
    position: absolute;
    z-index: 1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
        text-transform: capitalize;
}

.overlay {
    display: flex;
    background: linear-gradient(85deg, #000000, #00000030);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    border-radius: 12px;
}

.divider {
    font-size: 85px;
    padding: 0px 25px;
    color: #589abb;
}

.overlay:hover {
    background: linear-gradient(100deg, #12759b, transparent);
}
.selected .overlay {
    background: linear-gradient(100deg, #12759b, #12759b38);
}

    button.bt-upload-image, .btn-remove-image {
    width: auto;
    margin: 10px;
}
.bt-option {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}
@media screen and (max-width: 600px){
    .compare-grid {

    flex-direction: column;
}
}
div#selected-count, div#selection-count  {
    position: fixed;
    height: 100px;
    width: 100px;
    text-wrap: wrap;
    line-height: 25px;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 50%;
    color: white;
    bottom: 20%;
    display: flex;
    box-shadow: 1px 1px 20px 1px #2c84a4;
    z-index: 111;
    background: #2c84a4;
    padding: 10px;
    left: 15px;
    align-items: center;
    justify-content: center;
}
