﻿
div.picker_wp {
    display: block;
    margin: 0 auto;
    padding: 2px !IMPORTANT;
    box-sizing: border-box;
    border: thin solid #dfdfdf;
    background: linear-gradient(to bottom, #eeeeee, #dfdfdf, #dfdfdf);
    color: inherit;
    max-width: 90vw;
    width: 380px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
}

.picker {
    display: block;
    background: #ffffff;
    padding: 20px;
}


.picker >

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
    padding: 0 0.5em 0 0.5em;
}

.item.st {
   background-color: rgba(0, 0, 0, 0.1);
   padding: 0.5em;
   border-top: 2px solid var(--oscuro);
}

.item.st > * {
    color: var(--oscuro);
    font-weight: 600;
}


.item.sd {
    background-color: rgba(1, 173, 180, 0.1);
    padding: 0.5em;

}

.item.sd > * {
    color: rgb(1 173 180);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}


.item.tp {
   background-color:rgba(7, 94, 84, 0.1);
   padding: 0.5em;
}

.item.tp > * {
    color: rgb(7 94 84);
    font-weight: 600;
    /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);*/
}


.item.clc {
    margin-bottom: 0.4em;
}



.item:last-child {
    margin-bottom: 0;
}

.control {
    display: flex;
    align-items: center;
    gap: 10px;
}

button,
select {
    background: var(--oscuro);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
}

button:hover,
select:hover {
    background: var(--claro);
}



select {
    font-size: 14px;
}

div.controls {
    display: block;
    clear: both;
}

/*div.controls > .ctl_row {
    width: auto;
    margin: 0 auto !important;
}*/

button.cotizar{
    display: block;
    margin: 0 auto !important;
    font-weight: 600;
}

button.accion {
    /*display: inline-flex;
    justify-items: center;
    justify-content: center;*/
    font-weight: 600;
    margin: 0 auto;
    margin-left: 1em;
}

button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.value {
    width: 40px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

span {
    font-size: 16px;
}


/* date picker*/

.date-picker-container {
    display: block;
    clear: left !important;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
}

label {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

input[type="date"] {
    width: 90%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 16px;
}

input[type="date"]:disabled {
    background-color: #f5f5f5;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}