#bloom--attribute-select-list select {
    position: absolute;
    z-index: -1000;
    left: -1000px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

#bloom--attribute-select-list {
    margin-bottom: -5px;
}

.bloom--attribute--dropdown--widget .widget-title {
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 18px;
    margin-bottom: 15px;
    text-align: left;
}

.dropdown-button {
    position: relative;
    cursor: pointer;
    height: 50px;
    /*width: 375px;*/
    width: 100%;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #ededed;
}

.dropdown-button:after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.104' height='6.097' viewBox='0 0 10.104 6.097'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23c5c5c5;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M-79.48-278.729l3.771-3.748a.755.755,0,0,0,0-1.067l-.012-.011h0a.754.754,0,0,0-1.057.01l-4.808,4.816,4.807,4.844a.755.755,0,0,0,1.06.011h0a.754.754,0,0,0,.019-1.066l-.01-.01Z' transform='translate(283.766 -75.484) rotate(-90)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    position: absolute;
    width: 10px;
    height: 6px;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.dropdown-button.show {
    border-color: #53b6e8;
    border-radius: 5px 5px 0 0;
}

.dropdown-button.show:after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.attribute-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
    width: 100%;
    max-width: calc(100% - 45px);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.06em;
}

.attribute-content > div {
    margin: 0 3px;
}


.dropdown-content {
    display: none;
    position: absolute;
    width: 100%;
    /*max-width: 375px;*/
    max-width: 100%;
    background-color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 99;

    border-radius: 0px 0px 5px 5px;
    border: 1px solid #ededed;
    border-top: 0;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    cursor: pointer;
    max-height: 350px;

}

.dropdown-content.js-reverse {
    bottom: 50px;
}



.mobile-add-to-cart-form--wrapper .dropdown-content {
    max-height: 200px;
}

.mobile-add-to-cart-form--wrapper .dropdown-content.js-reverse {
    bottom: unset;
}


.dropdown-content .attribute-content {
    height: 54px;
    position: relative;
    /*max-width: 100%;*/
    flex-wrap: wrap;
}

.dropdown-content .attribute-content.out-of-stock {
    opacity: 0.5; /* Makes the div look faded */
    filter: grayscale(100%);
}

#attribute--dropdown-button .attribute-content.out-of-stock {
    opacity: 0.5; /* Makes the div look faded */
    filter: grayscale(100%);
}



.dropdown-content .attribute-content:hover:before {
    content: '';
    background-color: #fbfbfb;
    z-index: -1;
    position: absolute;
    width: 999em;
    left: -100em;
    height: 100%;
}


.show {
    display: block;
}
