﻿/* custom-icons.css */
.icon-large {
    font-size: 2rem; /* Ajusta el tamaño según tus necesidades */
    vertical-align: middle; /* Ajusta la alineación vertical */
}

.icon-medium {
    font-size: 1.5rem; /* Ajusta el tamaño según tus necesidades */
    vertical-align: middle; /* Ajusta la alineación vertical */
    line-height: 1;
}

.icon-small {
    font-size: 1rem; /* Ajusta el tamaño según tus necesidades */
    vertical-align: middle; /* Ajusta la alineación vertical */
}
.custom-file-input input[type="file"] {
    display: none;
}

.custom-file-input label {
    cursor: pointer;
}
.modal-dialog-custom-wide {
    max-width: 80%;
}
.arrow-transition {
    transition: transform 0.5s;
}

.arrow-rotate {
    transform: rotate(180deg);
    padding-bottom: 15px;
}
.transition-collapse {
    transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    overflow: hidden;
}

.collapse {
    height: 0;
    opacity: 0;
    transition: height 0.9s ease;
}


    .collapse.show {
        height: auto;
        opacity: 1;
    }
