/*
 ____                 _     
| __ ) _ __ _____   _(_)___ 
|  _ \| '__/ _ \ \ / / / __|
| |_) | | |  __/\ V /| \__ \
|____/|_|  \___| \_/ |_|___/
                
CSS File - These are the styles for drop-dow selectors.
*/

/* Custom select skin: underline selector */
div.bre-skin-underline {
	background: transparent;
	font-size: 1.2em;
    width: 140px;
    position: absolute;
    top: 23px;
    left: 33%;
}
@media (min-width: 640px) and (max-width: 750px) {
    div.bre-skin-underline {
        width: 100px;
        left: 35%;
    }
}
@media (max-width: 640px) {
    div.bre-skin-underline {
        top: 20px;
        width: 90px;
        font-size: 1em;
        left: 36.5%;
    }
}
.withdrawal-underline {
    left: 8%!important;
}
.bre-skin-underline > span {
	padding: 0.75em 1.5em 0.65em 0.5em;
	font-weight: 500;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 640px) and (max-width: 750px) {
    .bre-skin-underline > span {
        padding: 0.75em 1.8em 0.65em 0.5em;
        border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    }
}
@media (max-width: 640px) {
    .bre-skin-underline > span {
        padding: 0.65em 1.8em 0.55em 0.5em;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    }
}
.bre-skin-underline > span::after {
	content: '';
    right: 0.35em;
    top: 12px;
    background: url('../images/slider-arrow.png') right center no-repeat;
    width: 13px;
    height: 13px;
    background-size: 13px;
	-webkit-transform: rotate3d(0,0,1,0);
	transform: rotate3d(0,0,1,0);
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}
@media (max-width: 640px) {
    .bre-skin-underline > span::after {
        right: 0.3em;
        top: 8px;
        background-size: 11px;
    }
}
.bre-skin-underline.cs-active > span::after {
	-webkit-transform: translate3d(0, 1px, 0) rotate3d(0,0,1,90deg);
	transform: translate3d(0, 1px, 0) rotate3d(0,0,1,90deg);
}

.bre-skin-underline .cs-options {
	background: transparent;
	opacity: 0;
    width: 140px;
    padding-bottom: 0.3em;
	-webkit-transition: opacity 0.3s 0.4s, visibility 0s 0.7s;
	transition: opacity 0.3s 0.4s, visibility 0s 0.7s;
}

.bre-skin-underline.cs-active .cs-options {
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.bre-skin-underline ul span {
	position: relative;
	font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 0.9em 1.3em;
    text-align: center;
    background: rgba(54, 58, 63, 0.7);
    border-bottom: 3px solid #5E6165;
	opacity: 0;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}

.bre-select ul span::after {
	content: '';
	opacity: 0;
}

.bre-select .bre-selected span::after {
	font-family: 'icomoon';
	content: '\e010';
	opacity: 1;
	-webkit-transition: opacity 0.3s 0.7s;
	transition: opacity 0.3s 0.7s;
}

.bre-skin-underline ul span::before {
	content: '';
	position: absolute;
	bottom: 1px;
	left: 0;
	height: 3px;
	width: 100%;
	-webkit-transform: translate3d(200%,0,0);
	transform: translate3d(200%,0,0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

/* The options animations */
.bre-skin-underline.cs-active ul span,
.bre-skin-underline.cs-active ul span::before {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.bre-skin-underline li:nth-child(5) span,
.bre-skin-underline li:nth-child(5) span::before,
.bre-skin-underline.cs-active li:first-child span,
.bre-skin-underline.cs-active li:first-child span::before {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.bre-skin-underline li:nth-child(4) span,
.bre-skin-underline li:nth-child(4) span::before,
.bre-skin-underline.cs-active li:nth-child(2) span,
.bre-skin-underline.cs-active li:nth-child(2) span::before {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

.bre-skin-underline li:nth-child(3) span,
.bre-skin-underline li:nth-child(3) span::before {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.bre-skin-underline li:nth-child(2) span,
.bre-skin-underline li:nth-child(2) span::before,
.bre-skin-underline.cs-active li:nth-child(4) span,
.bre-skin-underline.cs-active li:nth-child(4) span::before {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.bre-skin-underline li:first-child span,
.bre-skin-underline li:first-child span::before,
.bre-skin-underline.cs-active li:nth-child(5) span,
.bre-skin-underline.cs-active li:nth-child(5) span::before {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
} /* more items require more delay declarations */

.bre-skin-underline .cs-options li span:hover,
.bre-skin-underline .cs-options li.cs-focus span,
.bre-skin-underline li.bre-selected span {
	color: #00A8E8;
	background: rgba(54, 58, 63, 1);
}
