
.my-select,
.select {
    margin: 0 !important;
    visibility: hidden;
    width: 0;
    height: 0;
}

.mys-expand {
    display: block;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    padding: 7px 0;
    font-size: 1.3rem;
    cursor: pointer;
    background-image: url(../../img/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: right 0 top 4px;
    background-size: 42px;
}
.mys-expand.mys-expanded {
    background-image: url(../../img/arrow-up.svg);
}

.mys-expand .mys-selected-resume {
    display: block;
    font-size: .9rem;
    opacity: .5;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.mys-expand .mys-selected-resume:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#141414+0,141414+100,141414+100&0+0,1+50,1+100 */
    background: -moz-linear-gradient(left,  rgba(20,20,20,0) 0%, rgba(20,20,20,1) 50%, rgba(20,20,20,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(20,20,20,0) 0%,rgba(20,20,20,1) 50%,rgba(20,20,20,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(20,20,20,0) 0%,rgba(20,20,20,1) 50%,rgba(20,20,20,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00141414', endColorstr='#141414',GradientType=1 ); /* IE6-9 */
}

.mys-options {
    position: absolute;
    z-index: 10;
    min-width: 230px;
    padding: 8px 0;
    background-color: rgb(20, 20, 20);
    color: #b4b4b4;
    font-size: 1.3rem;
    -webkit-transform: translateX(-18px);
    -ms-transform: translateX(-18px);
    transform: translateX(-18px);
}
.mys-options label {
    display: block;
    padding: 10px 28px 10px 18px;
    cursor: pointer;
}
.mys-options label:hover,
.mys-options label:focus
{
    color: #ffffff;
}
.mys-options label input {
    visibility: hidden;
}
.mys-options label input:checked + span:before {
    display: block;
}
.mys-options label span {
    margin-left: -24px;
    margin-top: -4px;
    margin-right: 10px;
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 1px solid #ffffff;
    vertical-align: middle;
}
.mys-options label span:before {
    content: '';
    display: none;
    width: 28px;
    height: 28px;
    background: url(../../img/check.svg) no-repeat;
    background-size: 150%;
    background-position-x: -6px;
    background-position-y: -7px;
}
.mys-options.mys-hidden {
    visibility: hidden;
    opacity: 0;
}