body{
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    background-color:#FFFFFF;
}
html,body{
    height:100%;
    margin: 0;
}
.myError {
    margin: 2px 6px 0;
    position: absolute;
    font-size: 10px;
    font-weight: 600;
    color: #DB3838;
}

input[type=date] {
    -webkit-appearance: none;
    font-family: 'Roboto', sans-serif;
}
input[type=text] {
    -webkit-appearance: none;
    font-family: 'Roboto', sans-serif;
}
select{
    -webkit-appearance: none;
    font-family: 'Roboto', sans-serif;
}

input[type=text]::placeholder, input[type=password]::placeholder, input[type=date]::placeholder, [type=search]::placeholder, select::placeholder{
  color: #4A4A4A;
  padding-left: 5px;
  opacity: 1; /* Firefox */
}

input[type=text], [type=password], [type=date], [type=search] , select{
font-family: 'Roboto', sans-serif;
    border: 1px solid #D7D7D7;
    border-radius: 6px;
    width: 96%;
    height: 40px;
    background-color: #FFFFFF !important;
    font-size: 14px;
    padding-left: 8px;
    color: #4A4A4A;
}
select{
    width: 100%;
}

input[type=text].smallText{
    height: 30px;
    width: 60%;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

/* -------------- PAGES -------------- */


.search{
    display: flex;
    align-items: center;
}
.errorText {
    margin: 0;
    color: red;
}

.inputWerror{
    align-items: flex-start;
    flex-direction: column;
}
.iconsSearch{
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50px;
    margin-left: -68px;
    padding: 0 8px;
    background: #fff;
}
.searchResultContent{
    border-left: 1px solid #D7D7D7;
    border-right: 1px solid #D7D7D7;
    border-bottom: 1px solid #D7D7D7;
    border-radius: 0 0 6px 6px;
    margin-top: -4px;
    padding: 2px 0;
    background: #ffffff;
    position: absolute;
    width: 99%;
    overflow-y: scroll;
    max-height: 150px;
    z-index: 1;
}

.searchResultContent.one{
    max-height: 170px;
}
.searchResultContent::-webkit-scrollbar {
	width: 12px;
	background-color: #F5F5F5;
}
.searchResultContent::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #EA6E19;
}

.searchResultContent::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.searchResultContent .searchOptionCar, .searchResultContent .searchOptionPart{
    padding: 8px;
    transition: all ease 300ms;
    cursor: pointer;
    margin: 0;
}
.searchResultContent .searchOptionCar:hover, .searchResultContent .searchOptionPart:hover{
    background-color: #EA6E19;
    color: #ffffff;
}
.searchResultContent .searchOptionCar:hover .iconSearch, .searchResultContent .searchOptionPart:hover .iconSearch{
    color: #ffffff;
}
.searchResultContentSelect{
    width: 100%;
}
.iconSearch{
    font-size: 16px;
    color: #c3c3c3;
    transition: all ease 300ms;
}
.iconSearch.iconResult{
    margin: 0 12px;
}
.iconX{
    font-size: 12px;
    border-right: 1px solid #D7D7D7;
    padding: 10px 12px 10px 0;
    transition: all ease 300ms;
    color: #6a6a6a;
}
.iconSearch:hover, .iconX:hover{
    color: #959595;
}
.stdLabel{
    color: #4D4D4D;
    font-size: 16px;
    margin: 20px 0 5px;
}

input[type="checkbox"]:checked {
  background-color: #EA6E19;
}

.stdSelect{
    display: flex;
    align-items: center;
}
.selectIcon{
    margin-left: -24px;
}

.productImage{
    border: 1px solid #D7D7D7;
    border-radius: 4px;
}
.productImage img{
    width: 98%;
    padding: 2%;
    object-fit: contain;
}
.agotado{
    background: #EA6E19;
    color: #ffffff;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0px 6px;
    font-weight: bold;
}
/*RESULT*/
.productName{
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}
.bsPrice{
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0 6px;
}


/* The Modal (background) */
.modal{
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2; /* Sit on top */
  padding-top: 9%; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgb(38 38 38 / 70%); /* Black w/ opacity */
}

/* Modal Content */
.modalContent {
    color: #4A4A4A;
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.5);
  width: 360px;
  margin: auto;
  padding: 10px 40px 20px;
  font-size: 16px;
}
.modal .close{
    position: absolute;
    right: 30px;
    top: 30px;
    color: #ffffff;
    font-size: 28px;
    border: 1px solid #fff;
    border-radius: 25px;
    line-height: 1;
    padding: 4px 11px;
    cursor: pointer;
    transition: all ease 300ms;
}
.modal .close:hover{
    border-color: #EA6E19;
    color: #EA6E19;
}
.modalContent .titleArea{
    padding-bottom: 5px;
}
.modalContent .title{
  color: #EA6E19;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: -4px;
}
.modal .stdbtnSubmit{
    width: 100%;
    margin: 0 0 15px;
    font-size: 14px;
}

.modal .deleteInfo{
    background: #FCE0CD;
    margin-top: -6px;
    padding: 3px 0;
    border-radius: 6px;
}
#myModalCreateEdit .stdbtn{
    margin-top: 30px;
}
/* EDIT */
.editSection{
    background-color: #ffffff;
    padding: 8px 0 25px;
    border-radius: 6px;
    margin-top: 12px;
}


/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #D8D8D8;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
  background-color: #EA6E19;
}

.usrimg{
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
}

#backResultMob {
    display: none !important;
}

@media screen and (max-width: 367px) {
    .stdbtnSubmit {
        width: 90px;
    }
    .userName {
        min-width: 150px;
    }
}