/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 9/04/2019, 01:10:36 PM
    Author     : Desarrollo-A8
*/

/* NEGRO */
/*the container must be positioned relative:*/
.style-select-negro {
    position: relative;
    border:1px solid #000;
    border-radius: .25rem; 
    line-height: 1.5;
    height: 50px;
    margin: 10px 0; 
    color: #000;
    font-size: 14px;
    margin-top: -7px;
    font-size: 16px;    
}

.style-select-negro select {
    display: none; /*hide original SELECT element:*/
}

.select-selected-negro {
    background-color: transparent;  
}

/*style the arrow inside the select element:*/
.select-selected-negro:after {
    position: absolute;
    content: "";
    top: 20px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected-negro.select-arrow-active-negro:after {
    border-color: transparent transparent #000 transparent;
    top: 15px;
}

/*style the items (options), including the selected item:*/
.select-items-negro div,.select-selected-negro {
    padding: 13px 16px;
    cursor: pointer;
    user-select: none;
}

/*style items (options):*/
.select-items-negro {
    color:#fff;
    position: absolute;
    background-color: #000000;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide-negro {
    display: none;
}

.select-items-negro div:hover, .same-as-selected-negro {
    background-color: rgba(0, 0, 0, 0.1);
}

/* NEGRO */

/* BLANCO */
/*the container must be positioned relative:*/
.style-select-blanco {
    position: relative;
    border: 1px solid #ced4da;
    border-radius: 2rem; 
    box-shadow: 1px 1px 2px 0px #333 inset;
    line-height: 1.5;
    height: 38px;
    margin: 10px 0; 
    color: #495057;
    font-size: 14px;
    margin-top: -1px;
    font-size: 16px;
    background-color: #fff;    
}

.style-select-blanco select {
    display: none; /*hide original SELECT element:*/
}

.select-selected-blanco {
    background-color: transparent;  
}

/*style the arrow inside the select element:*/
.select-selected-blanco:after {
    position: absolute;
    content: "";
    top: 16px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected-blanco.select-arrow-active-blanco:after {
    border-color: transparent transparent #000 transparent;
    top: 10px;
}

/*style the items (options), including the selected item:*/
.select-items-blanco div,.select-selected-blanco {
    padding: 7px 16px;
    cursor: pointer;
    user-select: none;
}

/*style items (options):*/
.select-items-blanco {
    color:black;
    position: absolute;
    background-color: #ebebeb;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid #ced4da;
    border-radius: 9px;
}

/*hide the items when the select box is closed:*/
.select-hide-blanco {
    display: none;
}

.select-items-blanco div:hover, .same-as-selected-blanco {
    background-color: rgba(0, 0, 0, 0.1);
}

/* BLANCO */


/* ROSA */
.style-select-rosa {
    position: relative;
    border:1px solid #f7505a;
    border-radius: .25rem; 
    line-height: 1.5;
    height: 50px;
    margin: 10px 0; 
    color: #f7505a;
    font-size: 14px;    
}

.style-select-rosa select {
    display: none; /*hide original SELECT element:*/
}

.select-selected-rosa {
    background-color: transparent;  
}

/*style the arrow inside the select element:*/
.select-selected-rosa:after {
    position: absolute;
    content: "";
    top: 20px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #f7505a transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected-rosa.select-arrow-active-rosa:after {
    border-color: transparent transparent #f7505a transparent;
    top: 15px;
}

/*style the items (options), including the selected item:*/
.select-items-rosa div,.select-selected-rosa {
    padding: 13px 16px;
    cursor: pointer;
    user-select: none;
}

/*style items (options):*/
.select-items-rosa {
    color:#fff;
    position: absolute;
    background-color: #f7505a;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide-rosa {
    display: none;
}

.select-items-rosa div:hover, .same-as-selected-rosa {
    background-color: rgba(0, 0, 0, 0.1);
}

/* ROSA */