/*Global variables*/
:root {
    --accent: #e63125;
    --soft: #f28869;
    --light: #ffded4;
}

p.highlight {
    color: var(--accent) !important;
}
/*Spacings*/
.ml-1 {
    margin-left: 1em;
}

/*Cards*/
.client-cards {
    margin-right: 6%;
    margin-left: 4%;
}

.log-cards {
    margin-right: 6%;
    margin-left: 4%;
}


.header-card {
    background-color: var(--accent);
    width: 100%;
    border-radius: 20px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    display: flex;
    padding: 0.5em 2em;
    font-size: 1.1em;
    color: #FFF;
}

.body-card {
    margin-bottom: 0.5em;
    padding: 0;
}


.text-element {
    width: 90%;
    margin-top: 1%;
}

.body-elementl {
    height: 70px;
}


.id-b, .id-h {
    width: 10%;
}
.name-b, .name-h {
    width: 30%;
}
.dpi-b, .dpi-h {
    width: 23%;
}
.tel-b, .tel-h {
    width: 15%;
}
.client-dropdown {
    margin-left: 5px;
}
    
.table-btn {
    width: 15%;
    display: flex;
    justify-content: end;
}

.id-bl, .id-h {
    width: 10%;
}
.name-log, .namel-h {
    width: 15%;
}
.date-b, .date-h {
    width: 25%;
}
.act-b, .action-h {
    width: 50%;
    display: block;
    float: left;
}



/*Modal Client*/
.button-create {
    margin-right: 6%;
    text-align: right;
    margin-top: 2%;
}

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle {
    white-space: nowrap;
    margin-top: 10%;
}


.fa {
    margin: 2px;
    color: black;
}


.options-head {
    margin-left: 45%;
}



.document-btn {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: #FFF;
    border: none;
    outline: none;
    padding: 1em;
    border-radius: 10px;
    position: relative;
}
.document-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5em;
}

#client-document .modal-body {
    padding: 1em 2em;
    margin: 0;
}

.document-download {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 0.5em;
}


.page-header {
    display: flex;
    justify-content: space-between;
}





/*Loader*/
.main-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #9b9b9b94;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    z-index: 9999;
}
.loader1 {
    display: inline-block;
    font-size: 0px;
    padding: 0px;
}
    .loader1 span {
        vertical-align: middle;
        border-radius: 100%;
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 3px 2px;
        -webkit-animation: loader1 0.8s linear infinite alternate;
        animation: loader1 0.8s linear infinite alternate;
    }
.loader1 span:nth-child(1) {
   -webkit-animation-delay:-1s;
   animation-delay:-1s;
  background:rgba(245, 103, 115,0.6);
}
.loader1 span:nth-child(2) {
   -webkit-animation-delay:-0.8s;
   animation-delay:-0.8s;
  background:rgba(245, 103, 115,0.8);
}
.loader1 span:nth-child(3) {
   -webkit-animation-delay:-0.26666s;
   animation-delay:-0.26666s;
  background:rgba(245, 103, 115,1);
}
.loader1 span:nth-child(4) {
   -webkit-animation-delay:-0.8s;
   animation-delay:-0.8s;
  background:rgba(245, 103, 115,0.8);
  
}
.loader1 span:nth-child(5) {
   -webkit-animation-delay:-1s;
   animation-delay:-1s;
  background:rgba(245, 103, 115,0.4);
}

@keyframes loader1 {
   from {transform: scale(0, 0);}
   to {transform: scale(1, 1);}
}
@-webkit-keyframes loader1 {
   from {-webkit-transform: scale(0, 0);}
   to {-webkit-transform: scale(1, 1);}
}


/*Search*/
.search-wrapper {
    margin: 1em 0 0.5em;
    display: flex;
    align-items: center;
}
.search-wrapper input {
    width: 300px;
    margin-right: 0.4em;
}
.search-wrapper button {
    padding: 1em;
    min-width: unset;
    margin-right: 0.4em;
    
}