.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;
    box-shadow: inset 0px -2px 0px #000000;
    border-radius: 0;
    background: transparent;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

.SumoSelect.open > .CaptionCont {
    border-radius: none;
}

.SumoSelect > .optWrapper {
    background-color: #FFF;
    border-radius: none;
    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;
    border-top-width: 0;
}

.SumoSelect.open > .CaptionCont,
.SumoSelect:focus > .CaptionCont,
.SumoSelect:hover > .CaptionCont {
    -webkit-box-shadow: none;
    box-shadow: none;
    box-shadow: inset 0px -2px 0px var(--color-mint_dark);
}

.SelectBox {
    height: 70px;
    font-size: 28px;
    line-height: 38px;
    padding: 22px 62px 10px 8px;
    font-family: 'Arimo', sans-serif;
}

.SumoSelect > .CaptionCont > span.placeholder {
    font-family: 'Arimo', sans-serif;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-charcoal);
    -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);
    color: var(--color-mint_dark);
}

.SumoSelect > .CaptionCont > span {
    font-family: 'Arimo', sans-serif;
    padding-right: 0;
    cursor: pointer;
    line-height: 38px;
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 0.17px;
}

.SumoSelect > .CaptionCont > label {
    cursor: pointer;
    width: 62px;
}

.SumoSelect > .CaptionCont > label > i {
    background-image: none;
    opacity: 1;
    width: 62px;
    height: 62px;
}

.SumoSelect > .CaptionCont > label > i:before {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 14px;
    left: 50%;
    transform: translate(-50%,0);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: var(--color-mint_dark) transparent transparent transparent;
    transition: var(--transition);
    backface-visibility: hidden;
    pointer-events: none;
}

.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 8px;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    color: var(--color-charcoal);
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

.SumoSelect > .optWrapper > .options {
    max-height: 252px;
    border-radius: 0;
    padding: 10px 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;
    box-shadow: inset 0px -2px 0px #cccccc;
}

.SumoSelect.disabled > .CaptionCont > label > i {
    cursor: not-allowed;
}

.SumoSelect.disabled > .CaptionCont > label > i:before {
    border-color: #cccccc transparent transparent transparent;
}

.SumoSelect.disabled > .CaptionCont > span {
    cursor: not-allowed;
    color: #cccccc;
}

.SumoSelect > .optWrapper > .options li.opt.selected label {
    -webkit-text-decoration-color: currentColor;
    text-decoration-color: currentColor;
}

@media (min-width: 1200px) {
    .SumoSelect > .CaptionCont:hover {
        border-color: var(--color-mint_dark);
    }

    .SumoSelect > .CaptionCont:hover > span.placeholder {
        opacity: 1;
    }

    .SumoSelect > .optWrapper > .options li.opt:hover label {
        -webkit-text-decoration-color: currentColor;
        text-decoration-color: currentColor;
    }

    .SumoSelect .select-all:hover {
        -webkit-text-decoration-color: currentColor;
        text-decoration-color: currentColor;
    }
}

@media (max-width: 1199px) {
    .SumoSelect > .optWrapper > .options {
        max-height: 204px;
    }

    .SumoSelect > .CaptionCont > span,
    .SelectBox,
    .SumoSelect > .CaptionCont > span.placeholder{
        font-size: 20px;
    }

    .SelectBox {
        height: 64px;
        padding: 22px 62px 10px 8px;
    }
}