
/* 
    Created on : 15/12/2022, 10:35:09 AM
    Author     : jsmartinezr
*/

/*PERSONALIZADO*/
#lblCantidad, input:optional ~ #lblCantidad {
    left:40px !important;
}

input:focus ~ #lblCantidad, input:valid ~ #lblCantidad {
    left:5px !important;
}

.highlightResumen
{
    background-color: #f7f7f9;
    border: 1px solid #e1e1e8;
    border-radius: 4px;
    margin-bottom: 14px;
    padding: 9px 14px;
    font-size: 16px;
}

.lblResumen
{
    font-weight:normal;
    color: darkslategrey;
}

/*ESTILOS UNIDADES*/
/*
input[type="text"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type=text]::-webkit-inner-spin-button,
input[type=text]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
*/

.number-input {
  border: 0;
  display: inline-flex;
  width: 100%;
}

.number-input,
.number-input * {
  box-sizing: border-box;
}

.number-input button {
  outline:none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 3rem;
  cursor: pointer;
  margin: 0;
  position: relative;
  box-shadow: 0px 0px 1px #474747;
}

.number-input button:before,
.number-input button:after {
  display: inline-block;
  position: absolute;
  content: '';
  width: 1rem;
  height: 2px;
  background-color: #212121;
  transform: translate(-50%, -50%);
}
.number-input button.plus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.number-input input[type=text] {
  /*font-family: sans-serif;
  max-width: 5rem;*/
  padding: .5rem;
  border: none;
  border-width: 0 2px;
  font-size: 16px;
  height: 3rem;
  /*font-weight: bold;*/
  text-align: center;
}

/*ESTILOS IMPORTE TOTAL*/
input:disabled ~ .lblMaterialImpT {
    font-size:14px;
    color:#999;
    top:-20px;
}

/*ESTILOS SECCIÓN PUNTO DE ENTREGA*/
.mapMarker {
    cursor: pointer;
    font-size: 22px;
    /*content: url(../svg/geo-alt.svg);
    background: url(../svg/geo-alt.svg);*/
}

.mapMarker:hover {
  color: #9F2241;
}

.highlightPE {
    background-color: #f7f7f9;
    border: 1px solid #e1e1e8;
    border-radius: 4px;
    margin-bottom: 14px;
    padding: 9px 14px;
    font-size: 16px;
    border-left-width: 5px;
}

.highlightPE:hover {
    border-left-color: #235B4E;
}

.lblPE {
    font-weight:normal;
    color: darkslategrey;
}

.radioPE:hover {
    cursor: pointer;
}

.radioPE::checked {
    background-color: red;
    border-color: #1C5B8E;
}

/*RADIOS*/
:root {
	--color-active: #BC955C;
	--color-background: #e1e2e3;
	--color-dark: #333;
	--color-letter: #585858;
}

input[type=radio] {
	display: none;
}

.labelRadio {
    display: flex;
    align-items: center;
    justify-content: center;
    /*gap: 60px;*/
    cursor: pointer;
}

.radio-button-1 {
	width: 20px;
	height: 20px;
	background-color: #fff;
        border: 1px solid #6F7271;
	display: inline-block;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	position: relative;
}

.radio-button-1::after {
	content: '';
	position: absolute;
	height: 15px;
	width: 15px;
	background-color: var(--color-active);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
}

input:checked + label .radio-button-1::after {
	opacity: 1;
}

/*input:checked + label {
	color: var(--color-dark);
	font-weight: 700;
}*/

input:checked + label .radio-button-1 {
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
