.selector {
    padding: 20px 10px;
    margin-bottom: 47px;
    border: 1px solid #F4F4F4;
    border-radius: 6px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1098039216);
    margin-top: 30px !important;
}

.selector__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

@media(max-width:991px) {
    .selector__wrapper {
        flex-wrap: wrap;
    }
}

.selector__wrapper > div {
    flex: 1;
    display: flex;
    justify-content: center;
}

@media(max-width:768px) {
    .selector__wrapper > div {
        flex: unset;
        width: 100%;
    }
}

select {
    width: 100%;
}

.selector__wrapper > div > div {
    width: 100%;
}

.selector__title {
    font-family: "Muller";
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 0;
    line-height: 15px;
    color: #000000;
}

@media(max-width:991px) {
    .selector__title {
        width: 100%;
        flex: unset !important;
    }
}

.selector__action-button {
    background: #FFCD00;
    border: none;
    border-radius: 6px;
    text-transform: uppercase;
    cursor: pointer;
    min-width: 150px;
    max-width: 100%;
    font-weight: bold;
    margin: 0;
    color: black;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
    transition: all .2s linear;
    line-height: 35px;
    display: inline-block;
    height: 35px;
}

.selector__action-button:hover {
    opacity: 0.9;
    box-shadow: unset;
}

.selector__notify {
    font-size: 18px;
    padding: 15px;
    background-color:#FFCD00;
    color: black;
    font-weight: bold;
}