:root {
    --color-primary: #0000ff;
    --color-danger: #dc3545;
    --color-success: #28a745;
    --color-secondary: #21d8d3;
    --color-border: #333;
    --color-texto: #333;
    --color-hover: #efefef;
    --color-grey-bg: #F2F2F2;
    --color-oscurecer: rgba(0, 0, 0, 0.05);
    --color-aclarar: rgba(255, 255, 255, 0.6);
    --color-oscurecer-iconos: rgba(0, 0, 0, 0.1);
    --font-family: 'Poppins', sans-serif;
    --font-color: #333333;
    --font-size: 16px;
    --input-height: 36px;
    --window-full: rgba(0, 0, 0, 0.9);
    --box-shadow-one: 0 2px 8px 1px rgb(0 0 0 / 25%);
    --box-shadow-light: 0 1px 10px 3px rgb(255 255 255 / 30%);
    --box-shadow-light-two: 0 0px 25px 0px rgb(255 255 255 / 15%);
}

html,
body {
    margin: 0px;
    height: 100%;
    font-family: var(--font-family);
    font-size: var(--font-size);
    color: var(--font-color);
}

a:hover {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

button:hover {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

button {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 10px;
    box-sizing: border-box;
    border: 1px solid var(--color-primary);
    border-radius: 3px;
    padding: 10px 30px;
    color: var(--color-primary);
    font-size: var(--font-size);
    background-color: transparent;
    cursor: pointer;
    outline: none;
}

.section-login { background: url( ../images/bg-assist-market.jpg)  no-repeat 50% 50%; padding-top: 60px;  padding-bottom: 60px; -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}


.pad-logo {
    padding-top: 10px;
    padding-bottom: 10px;
    height: 80px;
}

.grey-bg {
    background-color: #F2F2F2 !important;
    padding-top: 40px;
    padding-bottom: 80px;
}

.marg-left {
    margin-right: 5px;
}

button:hover {
    background-color: var(--color-primary);
    color: white;
    box-shadow: var(--box-shadow-one);
}

.form-control {
    margin-top: 0px !important;
}

.pt-10 {
    padding-top: 20px !important;
    padding-bottom: 40px !important;
}

.pb-10 {
    padding-bottom: 20px !important;
}

.form-control2 {
    margin-top: 0px !important;
}


/* The container must be positioned relative: */

.custom-select {
    position: relative;
    font-family: Arial;
}

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

.select-selected {
    background-color: DodgerBlue;
}


/* Style the arrow inside the select element: */

.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}


/* Point the arrow upwards when the select box is open (active): */

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}


/* style the items (options), including the selected item: */

.select-items div,
.select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}


/* Style items (options): */

.select-items {
    position: absolute;
    background-color: DodgerBlue;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}


/* Hide the items when the select box is closed: */

.select-hide {
    display: none;
}

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

input[type="text"] {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: var(--input-height);
    margin-top: 10px;
    border: 1px solid #f2f2f2;
    padding: 6px 20px;
    height: 50px;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: var(--font-size);
}

input[type="password"] {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: var(--input-height);
    margin-top: 10px;
    border: 1px solid #f2f2f2;
    padding: 6px 20px;
    height: 50px;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: var(--font-size);
}

input[type="number"] {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: var(--input-height);
    margin-top: 10px;
    border: 1px solid #f2f2f2;
    padding: 6px 20px;
    height: 50px;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: var(--font-size);
}

input[type="date"] {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: var(--input-height);
    margin-top: 10px;
    border: 1px solid #f2f2f2;
    padding: 6px 20px;
    height: 50px;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: var(--font-size);
}

input[type="file"] {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100% !important;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type="checkbox"]+label {
    margin-top: 15px !important;
    margin-bottom: 5px;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin-top: 10px;
    border: 1px solid #f2f2f2;
    padding: 6px 20px;
    height: 50px;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: var(--font-size);
}

select {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: var(--input-height);
    margin-top: 10px;
    border: 1px solid #f2f2f2;
    padding: 6px 20px;
    height: 50px;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: var(--font-size);
}

option {
    font-family: var(--font-family);
    font-size: var(--font-size);
}

option:hover {
    color: white;
    background-color: var(--color-primary);
}

label {
    display: inline-block;
    margin-top: 36px;
}


/* UPLOAD.PHP */

.login-flexbox {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-flexitem {
    box-sizing: border-box;
    border: 1px solid var(--color-primary);
    padding: 30px 20px 60px;
    flex-basis: 400px;
    flex-shrink: 1;
    flex-grow: 0;
}

.flex-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.flex-container nav {
    flex-grow: 0;
    flex-shrink: 0;
}

.flex-container .flex-body {
    flex-grow: 1;
    flex-shrink: 1;
}

.flex-container footer {
    flex-grow: 0;
    flex-shrink: 0;
}

.flex-container .body-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

section {
    padding-bottom: 30px;
}

section label:first-of-type {
    margin-top: 0px;
}

select,
button {
    outline: none;
}


/* ADMIN STYLE */

nav.facing-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.usr-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.usr-options>div:first-of-type {
    margin-right: 60px;
}

#cadenas_ux ul {
    list-style-type: none;
    padding: 0px;
}

#cadenas_ux ul+div {
    padding: 0px 30px 15px;
}

#cadenas_ux li {
    margin: 0px;
    padding: 0px 30px;
    cursor: pointer;
}

#cadenas_ux li:hover,
#cadenas_ux li[data-li-selected="true"] {
    background-color: var(--color-oscurecer);
}

#cadenas_ux input[type=text] {
    background-color: var(--color-oscurecer);
    display: inline;
    margin-top: 0px !important;
    border: 0px;
    padding: 5px 10px;
    width: fit-content;
    cursor: pointer;
}

#cadenas_ux input[type=text]:disabled {
    background-color: transparent;
}

#cadenas_ux li span:first-of-type {
    display: none;
}

#cadenas_ux {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

#cadenas_ul {
    background-color: var(--color-hover);
}

#cadenas_ux>div:nth-of-type(2) {
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#cadenas_ux>div:nth-of-type(2)>div:nth-of-type(2) {
    flex-grow: 1;
    background-color: white;
}

#opciones_ux {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#opciones_ux h2 {
    padding: 15px 30px;
    background-color: var(--color-primary);
    color: white;
    font-weight: 700;
    font-size: 18px;
}

a,
a:visited {
    color: var(--color-primary);
}

.file-upload {
    width: 100%;
    margin: 0 auto;
}

.fixed-wa {
    position: fixed !important;
    right: 0px !important;
    bottom: 10px !important;
    z-index: 99999999999999999999999999999 !important;
}

.file-upload-btn {
    width: 100%;
    margin: 0;
    color: #fff;
    background: var(--color-secondary);
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid var(--color-secondary);
    transition: all .2s ease;
    outline: none;
    font-weight: 300;
}

.file-upload-btn:hover {
    background: var(--color-secondary);
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.file-upload-btn:active {
    border: 0;
    transition: all .2s ease;
}

.file-upload-content {
    text-align: center;
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100% !important;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.image-upload-wrap {
    background-color: #ffffff;
    width: 100% !important;
    border: 1px dashed var(--color-primary);
    position: relative;
    color: var(--color-primary);
    min-height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.image-dropping,
.image-upload-wrap:hover {
    color: var(--color-secondary);
    border: 1px dashed var(--color-secondary);
}

.image-title-wrap {
    padding: 0 15px 15px 15px;
    color: #222;
    text-align: center;
}

.drag-text {
    text-align: center;
}

.drag-text h3 {
    font-weight: 300;
    color: var(--color-primary);
    padding: 60px 0;
}

.file-upload-image {
    max-height: 200px;
    width: 200px;
    margin: auto;
    padding: 20px;
}

.remove-image {
    width: 200px;
    margin: 0;
    color: #fff;
    background: #cd4535;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #b02818;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.remove-image:hover {
    background: #c13b2a;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.remove-image:active {
    border: 0;
    transition: all .2s ease;
}

.file-upload-remove-btn {
    margin-top: 0px;
    margin-right: 0px;
}