.whatsapp-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 40px;
    background-color: transparent;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .whatsapp-icon {
        bottom: 17px;
        right: 0;
    }

    .whatsapp-icon i {
        font-size: 1.5em;
    }
}

.button-search {
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    height: 42px;
    width: 100%;
}
.button-search-outline{
    background-color: #fff;
    border: 2px solid var(--red);
    border-radius: 7px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    height: 42px;
    width: 100%;
}
.max-width111 {
    max-width: 111px;
}

.max-width231 {
    max-width: 231px;
}
@media (max-width: 576px) {
    .max-width111 {
        max-width: 100%;
    }

}

.form-denso {
    height: 42px;
    border: 1px solid #777;
    color: #777;
    max-width: 352px;
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    padding-left: 16.2px;
    font-weight: 300;
}

@media (max-width: 576px) {
    .form-denso {
        max-width: 100%;
    }

    .form-denso-container {
        width: 100%;
    }
}

.section-separation {
    margin-bottom: 74px;
}

@media (max-width: 768px) {
    .section-separation {
        margin-bottom: 34px;
    }
    .button-search-outline{
        max-width: 100%;
    }
}

.infopicker-container {
    display: flex;
    gap: 9px;
    margin-bottom: 11px;
    align-items: baseline;
}

.infopicker {
    max-width: 173px;
    width: 100%;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #777;
    background: #FFF;
    padding: 0 21px 0 17px;
    color: #212529;
    font-size: 13px;
}

.data-table thead {
    margin-top: 20px;
    padding: 5px;
    border-collapse: collapse;
    font-size: 16px;
    background: #212529;
    color: #FFF;
}

@media (max-width: 768px) {
    .data-table thead {
        font-size: 14px;
    }
}

.data-table thead th:first-child {
    border-top-left-radius: 10px;
}

.data-table thead th:last-child {
    border-top-right-radius: 10px;
}

.data-table td {
    border: 1px solid #212529;
    padding: 5px;
}

.canvas-container {
    background-color: #E9ECEF;
    border-radius: 23px;
    padding: 23px;
}

.rank-title {
    padding: 0;
    margin-bottom: 21px;
    font-size: 26px;
    line-height: 100%;
}

@media (max-width: 960px) {
    .rank-title {
        font-size: 20px;
        margin-bottom: 18px;
    }
}

.input-with-icon {
    position: relative;
    cursor: pointer;
}

.input-with-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-size: contain;
}

.icon-calendar::before {
    background: url("../assets/icons/calendar.svg") no-repeat;
}

.table-scroll {
    max-height: 350px;
    overflow: auto;
}

.table-scroll thead {
    position: sticky;
    top: 0;
}

/* Firefox */
.table-scroll {
    scrollbar-width: thin;
    scrollbar-color: #DC0032 #E9ECEF;
}

/* Chrome, Edge and Safari */
.table-scroll::-webkit-scrollbar {
    width: 7px;
    width: 7px;
}

.table-scroll::-webkit-scrollbar-track {
    border-radius: 6px;
    background-color: #E9ECEF;
    border: 1px solid #FFFFFF;
}

.table-scroll::-webkit-scrollbar-track:hover {
    background-color: #F2F2F2;
}

.table-scroll::-webkit-scrollbar-track:active {
    background-color: #E9ECEF;
}

.table-scroll::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #DC0032;
    border: 1px solid #FFFFFF;
}

.table-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #AF0028;
}

.table-scroll::-webkit-scrollbar-thumb:active {
    background-color: #DC0032;
}

.button-icon {
    position: relative;
    padding: 8px 35px 8px 45px;

}

.button-icon::before {
    content: '';
    width: 22px;
    height: 22px;
    background: url("../assets/icons/download.svg") no-repeat center;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 14px;
}

.order-card .order-card__head i{
    font-size: 19px;
}

.order-card .order-card__head span{
    font-size: 16px;
}

.order-card__title {
    font-size: 22px;
    text-transform: uppercase;
    margin: 0;
}
.order-card__name{
    text-transform: uppercase;
    margin-bottom: 0;
}

.order-card__price{
    font-size: 30px;
    color: #212529;
}

.list-filter-denso{
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
}
.list-filter-denso li:not(:first-child){
    border-bottom: 1px solid #777 !important;
}
@media (max-width: 991px){
    .list-filter-denso{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 25px;
    }
    .list-filter-denso li:not(:first-child){
        border-bottom: none !important;
        border-right: 1px solid #777;
        width: 25%;
    }
}
@media (max-width: 767px){
    .list-filter-denso{
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 21px;
    }
    .list-filter-denso li:not(:first-child){
        border-bottom: 1px solid #777 !important;
        border-right:none;
        width: 100%;
    }
}
.list-filter-denso li:first-child{
    border-radius: 5px;
}
.list-filter-denso li{
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px){
    .list-filter-denso li{
        justify-content: flex-start;
    }
}

.cuentas-card{
    display: flex;
    flex-direction: column;
    border: 1px solid #212529;
    border-radius: 10px;
    margin-bottom: 13px;
    min-height: 350px;
    justify-content: space-between;
}
.cuentas-card__header p,
.cuentas-card__header h5,
.cuentas-card__header h4{
    padding-left: 29px;
    padding-right: 14px;
    margin-bottom: 0;
    overflow-wrap: break-word;
    line-height: 24px;
}
.cuentas-card__header h4{
    font-size: 16px;
}
.cuentas-card__header h5{
    font-size: 20px;
    color: #DC0032;
    margin-bottom: 21px;
}
.cuentas-card__colorhead{
    border-radius: 10px 10px 0px 0px;
    height: 50px;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-weight: normal;
    margin-bottom: 29px;
}

.cuentas-card__footer a{
    border-radius: 0px 0px 10px 10px;
    height: 53px;
    border: 4px solid #DC0032;
    display: block;
    text-decoration: none;
    color: #DC0032;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .1s ease, color .1s ease;
    text-transform: uppercase;
    margin-top: 34px;
}
.cuentas-card__footer a:hover{
    background-color: #DC0032;
    color: white;
}

.btn-filter{
    text-decoration: none;
    color: white;
    height: 22px;
    gap: 12px;
    border-radius: 200px;
    padding: 12px;
    background-color: var(--red);
}

.btn-filter:hover{
    color: white;
    opacity: .8;
    filter: grayscale(40%);
}

.importacion-content{
    background-color: var(--dark);
    color: white;
    padding: 0 67px;
    border-radius: 10px;
}
.importacion-content h3{
    font-size: 20px;
    text-transform: uppercase;
    padding-top: 47px;
    padding-bottom: 10px;
    margin: 0;
}

.importacion-inputs{
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 991px){
    .importacion-inputs{
        flex-direction: column;
        align-items: flex-start;
    }
}
.importacion-inputs label,
.importacion-inputs p{
    font-size: 16px;
    font-weight: 300 !important;
    text-transform: uppercase;
    margin: 0;
}
.importacion-inputs input{
    color: #212529;
    width: 100%;
    max-width: 100%;
}
.importacion-inputs input[type="file"] {
    display: none;
}
.form-denso-file__content{
    width: 100%;
    max-width: 405px;
}
@media (max-width: 991px){
    .button-search{
        max-width: 100% !important;
    }
    .form-denso-file__content{
        max-width: 100%;
    }
}
.form-denso-file{
    border-radius: 10px;
    background-color: #FFF;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    gap: 5px;
    cursor: pointer;
}

.alert-denso{
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-denso button{
    border: none;
    background: none;
}
.table-denso span{
    color: var(--red);
}
.table-denso a{
    text-decoration: none;
    max-width: 160px;
    display: flex;
    height: 31px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
}
.table-denso a:hover{
    color:white;
    opacity: .8;
}
.search-multiple input{
    border-radius: 10px 0 0 10px;
}
.search-multiple button{
    border-radius: 0 10px 10px 0;
    width: 42px;
}
.search-multiple__input{
    width: 100%;
    max-width: 956px;
}