.sumoselect-wrapp {
    position: relative;
}

.SumoSelect {
    display: block;
    width: 100%;
    cursor: pointer;
    z-index: 3;
}

.SumoSelect.open {
    z-index: 4 !important;
}

.SumoSelect:hover {
    z-index: 3;
}

.SumoSelect > .CaptionCont {
    cursor: pointer;
    border: none;
    border: 1px solid var(--color-black);
    border-radius: 2px;
    background: #F5F5F5;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.SumoSelect.open > .CaptionCont {
    border-radius: 2px;
}

.SumoSelect > .optWrapper {
    background-color: #F5F5F5;
    border: 2px solid var(--color-black);
    border-width: 0 2px 2px 2px;
    border-radius: 2px;
    padding: 0;
    overflow: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    top: 100%;
    z-index: 2;
    display: block;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.SumoSelect.open > .CaptionCont,
.SumoSelect:focus > .CaptionCont,
.SumoSelect:hover > .CaptionCont {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #fff;
    border-color: var(--color-black);
}

.SumoSelect:hover > .CaptionCont {
    background-color: #F5F5F5!important;
}

.SumoSelect:focus > .CaptionCont::before {
    content: '';
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: 2px;
    border: 2px solid var(--color-black);
    position: absolute;
    left: -1px;
    top: -1px;
    transition: var(--transition);
    backface-visibility: hidden;
    pointer-events: none;
}

.SelectBox {
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 28px;
    padding: 12px 50px 12px 16px;
}

.SumoSelect > .CaptionCont > span.placeholder {
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.SumoSelect.open > .CaptionCont > span.placeholder {
    opacity: 1;
}

.SumoSelect > .CaptionCont > span.placeholder.active {
    -webkit-transform: scale(0.75) translateY(-170%) translateX(-8px);
    -ms-transform: scale(0.75) translateY(-170%) translateX(-8px);
    transform: scale(0.75) translateY(-170%) translateX(-8px);
}

.SumoSelect > .CaptionCont > span {
    padding-right: 0;
    cursor: pointer;
    line-height: 20px;
    font-weight: 400;
    font-size: 18px;
}

.SumoSelect > .CaptionCont > label {
    cursor: pointer;
    width: 28px;
    position: absolute;
    right: 12px;
}

.SumoSelect > .CaptionCont > label > i {
    background-image: none;
    opacity: 1;
    width: 28px;
    height: 28px;
}

.SumoSelect > .CaptionCont > label > i:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4.5px 0 4.5px;
    border-color: var(--color-black) transparent transparent transparent;
    transition: var(--transition);
    backface-visibility: hidden;
}

.SumoSelect.open > .CaptionCont > label > i:before {
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
    -ms-transform: translate(-50%, -50%) rotate(-180deg);
    transform: translate(-50%, -50%) rotate(-180deg);
}

.SumoSelect.open > .optWrapper {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    top: 100%;
}

.SumoSelect > .optWrapper > .options li.opt {
    padding: 0;
    border-bottom: 0;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.SumoSelect > .optWrapper > .options > li.opt:first-child {
    border-radius: 0;
}

.SumoSelect > .optWrapper > .options li label {
    padding: 20px 12px;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    color: var(--color-main);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.SumoSelect > .optWrapper > .options {
    max-height: 232px;
    border-radius: 0;
    padding: 0;
}

.options > .opt.disabled:first-child {
    display: none;
}

.SumoSelect > .optWrapper.multiple > .options li.opt label {
    padding-left: 25px;
}

.SumoSelect .select-all > label {
    padding-left: 25px;
}

.SumoSelect .select-all > span, .SumoSelect > .optWrapper.multiple > .options li.opt span {
    width: 10px;
    margin-left: 0;
}

.SumoSelect.disabled {
    opacity: 1;
}

.SumoSelect.disabled > .CaptionCont {
    cursor: not-allowed;
}

.SumoSelect.disabled > .CaptionCont > span {
    cursor: not-allowed;
    color: #D9D7D8;
}

.SumoSelect > .optWrapper > .options li.opt.selected label {
    -webkit-text-decoration-color: currentColor;
    text-decoration-color: currentColor;
}

@media (min-width: 992px) {
    .SumoSelect > .CaptionCont:hover > span.placeholder {
        opacity: 1;
    }

    .SumoSelect>.optWrapper>.options li.opt:hover {
        background-color: transparent;
    }

    .SumoSelect>.optWrapper>.options li.opt:hover label {
        color: var(--color-orange);
    }
}

@media (max-width: 1199px) {
    .SumoSelect > .optWrapper > .options {
        max-height: 174px;
    }
}