.combobox {
    width: 100%;
    background: white;
    border-radius: 20px;
    /*cursor: pointer;*/
    position: relative;
    z-index: 7;
    border: solid 3px var(--amarillo);
}

.combobox * {
    font-family: "Futura Medium";
    color: white;
    font-size: 14px;
    /*  background: #ffce00;*/
    z-index: 7;
}

.combobox .multiple {
    user-select: none;
}

.combobox .multiple>p {
    overflow-y: scroll;
    overflow-x: hidden;
    margin: 0;
    max-height: 70px;
}

.combobox .multiple>p::-webkit-scrollbar {
    display: none;
}

.combobox .multiple .value {
    padding: 5px;
    color: yellow;
    margin: 3px 0;
    margin-right: 5px;
    white-space: pre;
}

.combobox .multiple .cerrar {
    background: image-url("iconos/cancelar/IconoCancelarInactivoHover.svg");
    background-position: center;
    background-size: contain;

    margin-left: 5px;
    height: 20px;
    width: 20px;
}

.combobox .multiple .cerrar:hover {
    background: image-url("iconos/cancelar/IconoCancelarInactivo.svg");
    background-position: center;
    background-size: contain;
}

.combobox input,
.combobox .multiple {
    margin: 0;
    background: rgba(255, 255, 255, 0.001);
    border: none;
    width: 100%;
    padding: 5px;
    cursor: pointer;
    /*padding-right:20px;*/
    color: black;
    z-index: 7;
}

.combobox input {
    padding-left: 15px;
    /*padding-right:15px;*/
    border-left: 0px solid #B4B5B4;
    border-bottom: 0px solid #B4B5B4;
    cursor: text;
    z-index: 7;
}

.combobox input[disabled] {
    background: rgba(255, 255, 255, 0.001);
    color: #000000;
}

.combobox input::placeholder,
.combobox .multiple .placeholder {
    color: #000000;
    font-weight: bold;
}

.combobox .multiple .placeholder {
    padding: 6.5px 0;
}

.combobox .text-field-hide {
    display: none;
}

.combobox .flecha {
    background: transparent;
    width: 0;
    height: 0;
    border-top: 10px solid #fff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: -1;
    display: inline;
}

.combobox .multiple~.flecha {
    display: block;
}

.combobox input:read-only:not(.text-field-hide)~.flecha {
    display: block;
}

.combobox input:read-only:not(.text-field-hide) {
    border: none;
    padding-left: 5px;
    padding-right: 5px;
    cursor: pointer;
}

.combobox.second-combo input,
.combobox.second-combo .multiple {
    color: white;
}

.combobox.second-combo ul,
.combobox.second-combo ul li {
    background: #ffffff;
    color: #000000;
    box-shadow: none;
}

.combobox ul:not(.movil) {
    box-shadow: 0px 0px 1px #B4B5B4;
    background: white;
    position: absolute;
    top: 100%;
    min-width: 250px;
    width: 100%;
    max-height: 200px;
    margin: 0;
    padding: 0;
    display: none;
    z-index: 1000;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-backface-visibility: hidden;
}

.combobox ul::-webkit-scrollbar {
    display: none;
}

.combobox ul li {
    text-align: left;
    margin: 0;
    padding: 5px 10px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    white-space: pre;
    overflow: hidden;
    background: white;
    color: #000000;
}

.combobox ul {
    overflow: hidden;
    background: white;
}

.combobox ul li:hover {
    background: #ffce00;
    border-radius: 50px;
    overflow: hidden;
}

.combobox ul li.active,
.combobox ul.multiple-list li:hover {
    background: white;
    color: #000000;
}

.combobox ul li.active:hover,
.combobox ul.multiple-list li.active:hover {
    background: #ffce00;
    color: #000000;
    border-radius: 50px;
}

.combobox ul.multiple-list li.active {
    color: white;
    background: inherit;
}

.combobox ul.movil {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;

    background: #ffffff;
    margin: 0;
    padding: 20px;
    padding-top: 60px;
    z-index: 10000;

    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-backface-visibility: hidden;
}

.combobox.second-combo ul.movil {
    background: white;
}

.combobox ul.movil li {
    white-space: normal;
    padding: 10px;
    padding-left: 18px;
    font-size: 18px;
    border-bottom: 0.5px solid #ffce00;
}

.combobox ul.movil input {
    font-size: 18px;
}

.combobox ul.movil .button-eliminar.cerrar {
    position: fixed;
    right: 20px;
    background-color: white;
    background-image: url(../assets/img/Cerrar.svg) no-repeat;
    top: 20px;
}

.movil_design_close_button {
    background-size: contain;
    margin-right: 0px;
    width: 50px;
    height: 50px;
}


.text-field {
    background: white;
    padding: 5px 10px;
    border-radius: 20px;
    width: 100%;
    font-size: 15px;
    border: none;
    margin: 5px 0;
}

#MD-container {
    background: #000;
    width: 100vw;
    min-height: 100vh;

    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    display: none;
}

#MD-container .MD {
    width: 90vw;
    max-width: 800px;
    border: 3px solid var(--amarillo);
    border-radius: 10px;
    min-height: 400px;
    background: var(--gris);
    padding: 10px;
}

#MD-container .MD .cerrar {
    align-self: flex-end;
    margin: 0;
    margin-bottom: 10px;
}

#MD-container .MD .mensaje {
    color: var(--grisclaro);
    font-size: 22px;
    text-align: center;
    margin: 10px 0;
}

#MD-container .MD .btn {
    background: white;
    font-size: 16px;
    text-align: center;
    border: none;
    border-radius: 20px;
    min-width: 150px;
    padding: 10px;
    color: #000;
    cursor: pointer;
    margin: 10px 0;
}

#MD-container .MD .btn:hover {
    background: var(--grisclaro);
}

#MD-container .MD .logo {
    align-self: flex-end;
    background: url("../assets/img/YoDenuncio.svg") no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center;
    width: 250px;
    height: 50px;
    margin-top: 10px;
}


