.wrap {
    flex-wrap: wrap;
}

.nowrap {
    flex-wrap: nowrap;
}

.details_modal {
    cursor: pointer;
}

a.download {
    text-decoration: none;
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.column-vcenter {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.column-hcenter {
    display: flex;
    flex-direction: column;
    align-items: center
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-column-center-start {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.flex-column-center-spacea {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}




.row-hcenter {
    display: flex;
    flex-direction: row;
    align-items: center
}

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

.flex-row-start {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.flex-row-start-spaceb {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.flex-row-center-spacea {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center
}

.flex-row-center-end {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center
}

.flex-row-center-start {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center
}

.flex-row-start-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start
}

.flex-row-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

.email-content input[type='email'],
.form-info input[type='password'] {
    outline: none;
    padding: 10px;
    font-size: .8em;
    border: 1px solid #707070;
    border-radius: 8px;
    background-color: #F6F6F6;
}

.button {
    padding: 5px 10px 5px 10px;
    background-color: #414e56;
    border-radius: 4px;
    color: #F6F6F6;
    outline: none;
    box-sizing: border-box;
    border: 3px solid transparent;
    transition: .2s ease-in;
    cursor: pointer;
}

.button:active {
    border: 3px solid #1d242a;
}

.button-small {
    width: 25% !important;

}

.button-mid {
    width: 50% !important;
    /* border: 3px solid #1d242a; */
}

.button-big {
    width: 100% !important;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', 'sanserif';
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {

    opacity: 1;

}

body {
    height: 100vh;
    background-color: white;
}

.login-contain {
    width: 100%;
    height: 95%;
    color: #f6f6f6;
}

footer {
    box-sizing: border-box;
    width: 100%;
    height: 5%;
    background-color: #1d242a;
}

footer span {
    font-size: .6em;
    color: #F6F6F6;
    padding-left: 10px;
}

.logo {
    width: 447px;
    height: 75px;
}

.login-form {
    width: 50%;
}

.login-form form {
    width: 80%;
    height: 100%;
}

.email-content {
    width: 80%;
    height: auto;
}

.login-input {
    width: 70%;
    margin-left: 20px;
}

.line-info {
    width: 100%;
    margin-top: 10px;
}

.line-info:last-child {
    margin-top: 20px;
}

.line-info h2,
.line-info i {
    font-size: 1.4em;
    margin-right: 20px;
}

.line-info label {
    font-size: .8em;
    margin-left: 5px;
}

.form-info {
    width: 80%;
}



/*top bar*/

.top-bar {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    padding: 10px;
    background-color: #FFFFFF;
}

.title-bar {
    width: 70%;
    color: #414e56;
    font-size: .9em;
}

.title-bar i {
    margin-right: 20px;
}

.bar-menu,
.user-menu {
    width: 10%;
}

.bar-menu>i,
.user-menu>i {
    cursor: pointer;
}



.menu-home {
    position: fixed;
    width: 15%;
    height: 100vh;
    background-color: #323f48;
    transition: .2s ease-in;

}

.menu-home footer {
    position: absolute;
    bottom: 0;
}

.menu-home .logo-lateral-bar {
    height: 160px;
}

.menu-home ul li {
    width: 100%;
    height: 40px;
    list-style-type: none;
    font-size: .8em;
    border: none;
    border-bottom: 1px solid #1d242a;
    transition: .2s ease-in;
}

.menu-home ul li a {
    width: 80%;
    text-decoration: none;
    color: #f6f6f6;
    transition: .3s ease-in;
}

.menu-home ul li:hover {
    background-color: #1d242a;
}

.menu-home ul li:hover>a {
    width: 70%;
}

.menu-item {
    width: 100%;
}

.content {
    position: absolute;
    left: 15%;
    width: 85%;
    height: auto;
    transition: .2s ease-in;
    margin-bottom: 35px;
}

/*info-bar*/
.info-bar {
    width: 100%;
    height: 80px;
    background-color: #414e56;
}

.info-bar-top {
    width: 95%;
    height: 60px;
    color: #F6F6F6
}

.info-bar-top label {
    font-size: 1.3em;
    font-weight: lighter;
}

/*
    add buttons
*/
.add-buttons-big {
    width: 50%;
}

.add-buttons-mid {
    width: 30%;
}

.add-buttons-short {
    width: 15%;
}

.add-buttons input[type='button'] {
    width: 47.5%;
    padding: 5px;
    border-radius: 4px;
}

.add-buttons a,
.add-buttons label {
    text-decoration: none;
    font-weight: normal;
    text-align: center;
    font-size: .8em;
    width: 47.5%;
    padding: 5px;
    border-radius: 4px;
}

.danger {
    background-color: #414e56;
    text-align: center;
    text-decoration: none;
}

.cancel-button {
    background-color: #6b6b6b;
    text-align: center;
    text-decoration: none;
}

.special-button {
    text-align: center;
    text-decoration: none;
}

/*
    search-bar
*/
.search-bar {
    width: 70%;
    padding: 15px 20px 15px 20px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, .1);
    border-radius: 1px;
    background-color: #FFFFFF;
    border: none;
    z-index: 3;
}

.warehouse-index-search {
    width: 75%;
}

.search-short {
    width: 20% !important;
}

.search-bar input[type='text'],
.search-bar input[type='number'],
.search-bar input[type='date'],
.search-bar select,
.search-bar input[type='email'],
.search-bar input[type='password'],
.form-configuration input[type='text'],
.form-configuration input[type='number'],
.form-configuration input[type='date'],
.form-configuration select,
.form-configuration input[type='email'],
.form-configuration input[type='password'] {
    width: 100%;
    height: 30px;
    padding: 0px 5px 0px 5px;
    border: none;
    background-color: #E3E4E5;
    /* color:#A0A0A0; */
    color: #000000;
    outline: none;
}

.search-bar form {
    width: 100%;
}

.search-bar button {
    padding: 5px;
}

/*
    documentos almacen
    Cuando search bar tiene demasiados elementos que no pueden ser posicionados de manera separada
    añadri esta clase a los elementos en el .search-bar
*/
.space-input {
    margin-right: 10px;
}

/*
    content section
*/
.content article {
    width: 100%;
}

.content section {
    width: 90%;
    margin-top: 10px;
}

/*
    home
*/
.welcome-content {
    width: 60%;
}

#welcome-text,
#intro-text {
    font-size: 5em;
    text-align: center;
    color: #24282A;
    margin-top: 10px;
}

#intro-text {
    font-size: 4em;
    font-weight: lighter;
}

/*content-configuration*/
.content-configuration {
    width: 95%;
    margin-top: 70px;
}

.space-search {
    margin-left: calc(20% + 20px);
}

.configuration-menu-card {
    width: 20%;
}

.menu-card {
    width: 100%;
    padding: 10px 0px 10px 0px;
    background-color: #F6F6F6;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, .1);
    border-radius: 1px;
    margin-bottom: 10px;
}

.menu-card:last-child {
    margin-bottom: 0px;
}

.title-menu-card {
    width: 50%;
    font-size: .9em;
    color: #6F7480;
}

.list-menu-card {
    width: 80%;
}

.list-menu-card ul {
    width: 100%;
    margin-top: 10px;
}

.list-menu-card li {
    list-style: none;
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}

.list-menu-card a {
    width: 80%;
    text-decoration: none;
    font-size: 0.78em;
    color: #414e56;
}

.list-menu-card a:hover {
    color: #414e56;
}

.list-menu-card a:hover+.list-menu-card span {
    text-decoration: underline;
}

.content-child-configuration {
    width: 77%;

}

.no-margin {
    margin-bottom: 0px !important;
}

.mt-80 {
    margin-top: -80px;
}

.ml30 {
    margin-left: 30px;
}

.ml50 {
    margin-left: 50px;
}

.mt-100 {
    margin-top: -100px;
}

.box-form {
    width: 65%;
    padding: 20px;
    background-color: #f6f6f6;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, .1);
    box-sizing: border-box;
}

.form-configuration,
.form-configuration form {
    width: 90%;
}

.input-configuration-group {
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-configuration-group input[type='text'],
.input-configuration-group input[type='number'],
.input-configuration-group input[type='date'],
.input-configuration-group select,
.input-configuration-group input[type='email'],
.input-configuration-group input[type='password'] {
    height: 25px !important;
    box-sizing: border-box;
}

.input-configuration-group input[type='submit'] {
    padding: 5px;
}

.input-configuration-group:last-child {
    margin-bottom: 0;
}

/*
surgery-type-index
*/
.show-details:hover {
    cursor: pointer;
}


/*
Ceye menuhome
*/
.big-icons {
    width: 10%;
}

.big-icons i {
    font-size: 3em;
}

.big-icons ul li {
    height: 70px;
}

.big-icons ul li:active {

    background-color: #1d242a;
}

.content-big {
    width: 90%;
    left: 10%;
}

.big-icons footer {
    margin-top: calc(100vh - ((71px * 4) + 160px) - 5vh);
}

.big-buttons-info-bar {
    height: 75px;
    width: calc(100% - (20% + 30px + 240px));
    overflow-x: scroll;
    overflow-y: hidden;
    margin-top: 20px;

}

.big-buttons-info-bar button {
    min-width: 100px;
    max-width: 300px;

}

.special-selected {
    border: 2px solid #F6F6F6;
    background-color: #414e56;
}

.light-font {
    color: #414e56;
    cursor: pointer;
}

.white-font {
    color: #ffffff;
    cursor: pointer;
}

.gray-font {
    color: #414e56;
}

.content-child-table {
    width: 95%;
    margin-top: 50px;
}

.select-mid {
    width: 60% !important;
}

td input {
    background-color: transparent;
    border: none;
    outline: none;
    width: 50px;
}

.table-font-ceye {
    font-size: .7em;
}

th i {
    font-size: 1.5em;
}

td .button {
    font-size: .8em;
    padding: 5px;
}

.footer-buttons {
    width: 50%;
}

.footer-content-buttons {
    margin-top: 50px;
    margin-bottom: 20px;
}

.footer-buttons button {
    padding: 5px;
}

.print-new-code {
    width: 90%;
    margin-top: 20px;
}

.modal-icon {
    font-size: 12em;
    animation-duration: 1s;
    transition: .2s all;
    animation-iteration-count: infinite;
}

.body-modal-text {
    width: 80%;
    text-align: center;
    margin-top: 20px;
    font-size: 1.7em;
}

.modal-table {
    font-size: .7em;
}

.setting-elements {
    width: 200px;
    padding: 5px;
    position: absolute;
    top: 40px;
    background-color: #ffffff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, .1);
    border-radius: 1px;
    transition: .2s ease-in;
}

.setting-elements:hover {
    color: #f6f6f6;
    background-color: #CECECE;

}

.setting-elements a {
    width: 70%;
    text-decoration: none;
    color: #24282A;
    transition: .2s ease-in;
}

#menu-session {
    visibility: hidden;
}

.alert-main-success {
    background-color: #27AE61;
    color: #ffffff;
    position: fixed !important;
    bottom: 5px;
    right: 10px;
    z-index: 99;

}

.alert-main-error {
    background-color: #ae2727;
    color: #ffffff;
    position: fixed !important;
    bottom: 5px;
    right: 10px;
    z-index: 99;

}

.main-not-row {
    padding: 10px;
    border: 5px dashed #949494;
    color: #949494;
    text-align: center
}

.main-not-row i:nth-child(2) {
    margin: 10px 0px 10px 0px;
    font-size: 10em;
}

.finger-configuration-group {
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.locked-fingerprint {
    color: #6b6b6b !important;
    cursor: not-allowed !important;
}

#enroller-steps {
    display: none;
    color: #6b6b6b;
    flex-direction: row-reverse;
}

#enroller-steps h1 {
    font-size: 2.5em;
}

.email-verified-fingerprint {
    margin-bottom: 10px;
}

/*
    Animated
*/
.animated {
    background-position: left top;
    padding-top: 95px;
    margin-bottom: 60px;
    -webkit-animation-duration: 12s;
    animation-duration: 12s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        display: none;
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        display: none;
    }
}

@keyframes animate {
    from {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

textarea {
    background-color: #e3e4e6;
    padding: 10px;
    height: 100px
}

label {
    color: #797c85;
    font-size: 18px;
}

h3 {
    font-weight: normal;
    font-size: 20px;
    margin-bottom: 20px;
}

.info-bar-top label {
    color: white;
}

.title-bar h3 {
    margin-bottom: 5px;
}
/* Estilo para el ícono de lápiz */
td.editable-po i {
    display: none; /* Por defecto, ocultar el ícono */
}

/* Mostrar el ícono de lápiz solo cuando se hace hover */
td.editable-po:hover i {
    display: inline; /* Mostrar el ícono al hacer hover */
}
td.editable-po{
    text-wrap: nowrap;
}
td.vendor {
    text-wrap: pretty;
}

.delete-icon .invoice-icon {
    display: block; /* Asegura que el icono de la factura esté visible inicialmente */
}

.delete-icon .delete-icon-hover {
    display: none; /* Oculta el icono de eliminar inicialmente */
}

.delete-icon:hover .invoice-icon {
    display: none; /* Oculta el icono de la factura cuando se hace hover en el contenedor */
}

.delete-icon:hover .delete-icon-hover {
    display: inline-block; /* Muestra el icono de eliminar cuando se hace hover en el contenedor */
}

html,
body {
	padding: 0;
	margin: 0;
	height: 100%;
	font-family: "Inter", sans-serif;
	position: relative;
}

body {
	background: #f5f7fa ;
}

.modal-lg {
    max-width: 900px !important;
}

#vendor-user-modal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

#vendor-user-modal input {
    max-width: 100%;
    box-sizing: border-box;
}
