/*======================================
  Selectric v1.11.0
======================================*/

.selectric-wrapper {
    position: relative;
    cursor: pointer;
}

.selectric-responsive {
    width: 100%;
    padding: 1.2rem 0 1rem 1.125rem;
}

.selectric {
    background: #F8F8F8;
    /*padding: 10px 0;*/
    background: transparent;
    position: relative;
    border: 1px solid #CCC;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 1.25rem;

    -webkit-transition: border .3s;
    -o-transition: border .3s;
    transition: border .3s;
}

.selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 58px 0 18px;
    font-size: 12px;
    line-height: 58px;
    color: #444;
    height: 58px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #818181;
    font-size: 1.25rem;
    background: transparent;

    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    
    /*padding: 0.25rem 0;*/
    padding: 0;
}

.selectric .button {
    display: block;
    position: absolute;
    background: transparent;
    right: 0;
    top: 0;
    width: 58px;
    height: 58px;
    color: #BBB;
    text-align: center;
    font: 0/0 a;
    *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric .button:after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 22px;
    height: 12px;
    /*border: 4px solid transparent;*/
    border: none;
    background: url('https://d3auo2ckzwuyv8.cloudfront.net/76e98c73-3e18-48d5-b734-0063ec054fe0/images/arrow-right-dark.png') no-repeat center center/contain;
    filter: alpha(opacity=60);
    opacity: .6;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    /*border-top-color: #BBB;*/
    /*border-bottom: none;*/
}

.selectric-focus .selectric {
    border-color: #aaaaaa;
}

.selectric-hover .selectric {
    border-color: #111;
}

.selectric-hover .selectric .label {
    color: #111;
}

.selectric-hover .selectric .button {
    color: #a2a2a2;
}

.selectric-hover .selectric .button:after {
    /*border-top-color: #a2a2a2;*/
    filter: alpha(opacity=100);
    opacity: 1;
}

.selectric-open {
    z-index: 9999;
}

.selectric-open .selectric {
    border-color: #111;
}

.selectric-open .selectric .label {
    color: #111;
}

.selectric-open .selectric .button:after {
    filter: alpha(opacity=100);
    opacity: 1;
}

.selectric-open .selectric-items {
    display: block;
}

.selectric-disabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectric-hide-select {
    position: relative;
    overflow: hidden;
    width: 0;
    height: 0;
}

.selectric-hide-select select {
    position: absolute;
    left: -100%;
}

.selectric-hide-select.selectric-is-native {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    border: none;
    z-index: 1;
    box-sizing: border-box;
    opacity: 0;
}

.selectric-input {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 1px !important;
    height: 1px !important;
    outline: none !important;
    border: none !important;
    *font: 0/0 a !important;
    background: none !important;
}

.selectric-temp-show {
    position: absolute !important;
    visibility: hidden !important;
    display: block !important;
}

/* Items box */
.selectric-items {
    margin-top: 5px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    /*border: 1px solid #c4c4c4;*/
    border: 1px solid #111;
    z-index: -1;
    box-shadow: 0 0 10px -6px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.selectric-items .selectric-scroll {
    height: 100%;
    overflow: auto;
}

.selectric-above .selectric-items {
    top: auto;
    bottom: 100%;
}

.selectric-items ul, .selectric-items li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    min-height: 20px;
}

.selectric-items li {
    display: block;
    padding: 10px;
    color: #666;
    cursor: pointer;
    -webkit-transition: background .3s, color .3s;
    -o-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

.selectric-items li:nth-child(-n+2){
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

.selectric-items li:last-child {
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

.selectric-items li.selected {
    background: #111;
    color: #fff;
}

.selectric-items li.highlighted {
    background: #111;
    color: #fff;
}

.selectric-items li:hover {
    background: #efefef;
    color: #111111;

    color: #fff;
    background: #111;
}

.selectric-items .disabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default !important;
    background: none !important;
    color: #666 !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: none;
}

.selectric-items .selectric-group .selectric-group-label {
    font-weight: bold;
    padding-left: 10px;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: none;
    color: #444;
}

.selectric-items .selectric-group.disabled li {
    filter: alpha(opacity=100);
    opacity: 1;
}

.selectric-items .selectric-group li {
    padding-left: 25px;
}


@media (max-width: 1024px) {
    .selectric .label {
        font-size: 1rem;
        height: 48px;
        margin: 0 48px 0 15px;
        line-height: 48px;
    }

    .selectric .button {
        width: 48px;
        height: 48px;
    }

    .selectric .button:after {
        width: 18px;
        height: 10px;
    }

    .selectric-items ul, .selectric-items li {
        font-size: 14px;
    }
}

@media (max-width: 639px) {
    .selectric {
        margin-bottom: 0.625rem;
    }
}
