.cm-select {
    border: 1px solid #53340D;
    border-radius: 5px;
    cursor: pointer;
    padding: 7px 15px;
    font-size: 17px;
    position: relative;
}

.cm-select .cm-angle-icon {
    position: absolute;
    right: 15px;
    top: 10px;
    font-weight: 700;
    font-size: 20px;
    -webkit-transition: all linear .1s;
    transition: all linear .1s;
}

.cm-select .cm-angle-icon.open {
    transform: scale(1, -1);
    -webkit-transition: all linear .1s;
    transition: all linear .1s;
}

.cm-select_dropdown {
    min-width: 100%;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 1000;
    background: white;
    border-radius: 5px;
    box-shadow: 0 30px 40px rgba(37, 73, 89, 0.2);
}

.cm-select_dropdown_i {
    padding: 7px 15px;
    white-space: nowrap;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}

.cm-select_dropdown_i:first-child {
    border-radius: 5px 5px 0 0;
}

.cm-select_dropdown_i:last-child {
    border-radius: 0 0 5px 5px;
}

.cm-select_dropdown_i:hover, .cm-select_dropdown_i.active {
    background: #53340D;
    white-space: nowrap;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    color: white;
}

@media screen and (max-width: 1500px) {
    .cm-select {
        font-size: 13px;
        padding: 6px 15px;
    }

    .cm-select .cm-angle-icon {
        top: 6px;
        font-size: 17px;
    }
}