/*======================================================================
  Selectric
======================================================================*/
.selectricWrapper {
    position: relative;
    margin: 0;
    width: 100%;
    cursor: pointer;
}

.selectricResponsive {
    width: 100%;
}

.selectric {
    position: relative;
    height:64px;
    border:2px solid #e6e6e6;
    padding:0 15px;
    font-size:16px;
    line-height:22px;
    color:#000;
    font-family: 'montserratlight', sans-serif;
    font-weight: normal;
    font-style: normal;
    width:100%;
    border-radius:0;
    letter-spacing: 0.25px;
    background: #fff;
    z-index: 999;
    

}
.selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 30px 0 0;
    padding: 20px 0;
    font-size:16px;
    line-height:22px;
    color:#000;
    min-height: 62px;
    font-family: 'montserratlight', sans-serif;
    font-weight: normal;
    font-style: normal;
}
.selectric .button {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    width: 30px;
    height: 30px;
    text-align: center;
    background: #ffd600;
    border-radius: 50%;
    z-index: 9999;
    font: 0/0 a;
    /* IE Fix */
    *font: 20px/30px Lucida Sans Unicode, Arial Unicode MS, Arial;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.06);
}
.selectric .button:after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -3px 0 0 -8px;
    width: 16px;
    height: 7px;
    background: url("../images/select-arrow.png") no-repeat 0 0;
    transform:rotateX(0deg) translateY(0) translateZ(0);
    -ms-transform:rotateX(0deg) translateY(0) translateZ(0); 
    -webkit-transform:rotateX(0deg) translateY(0) translateZ(0); 
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.selectricHover .selectric {
    /*    border-color: #CCC;*/
}
.selectricHover .selectric .button {
    /*    color: #888;*/
}
.selectricHover .selectric .button:after {
    /*    border-top-color: #888;*/
}

.selectricOpen {
    z-index: 9999;
}
.selectricOpen .selectric .button:after {
    transform:rotateX(180deg) translateY(1px) translateZ(0);
    -ms-transform:rotateX(180deg) translateY(1px) translateZ(0); 
    -webkit-transform:rotateX(180deg) translateY(1px) translateZ(0); 
}
.selectricOpen .selectricItems {
    display: block;
}

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

.selectricHideSelect {
    position: relative;
    overflow: hidden;
    width: 0;
    height: 0;
}
.selectricHideSelect select {
    position: absolute;
    left: -100%;
    display: none;
}

.selectricInput {
    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;
}

.selectricTempShow {
    position: absolute !important;
    visibility: hidden !important;
    display: block !important;
}

/* Items box */
.selectricItems {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #F9F9F9;
    z-index: -1;
}
.selectricItems .selectricScroll {
    height: 100%;
    overflow: auto;
}
.selectricAbove .selectricItems {
    top: auto;
    bottom: 100%;
}
.selectricItems ul, .selectricItems li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size:16px;
    line-height:22px;
    color:#000;
    font-family: 'montserratlight', sans-serif;
    font-weight: normal;
    font-style: normal;
}
.selectricItems li {
    display: block;
    padding: 20px;
    border-bottom: 2px solid transparent;
    background: #ebebeb;
    cursor: pointer;
}
.selectricItems li.selected {
    background: #ffd600;
    border-bottom: 2px solid #e5c000;
}
.selectricItems li:hover {
    background: #ffd600;
    border-bottom: 2px solid #e5c000;
}
.selectricItems li.disabled {
    background: #F5F5F5;
    color: #BBB;
    border-top-color: #FAFAFA;
    cursor: default;
}

@media only screen and (max-width :980px){
    .selectric {
	height: 50px;
    }
    .selectric .button {
	top: 8px;
    }
    .selectric .label {
	padding: 12px 0;
	min-height: 42px;
    }
    .selectricItems li {
	padding: 15px;
    }
}

@media only screen and (max-width :768px){
    .selectric .label {
	font-size: 14px;
    }
    .selectric{
	border-width: 1px;
    }
}