/* FORMS */
.tab_sign_in .tab_sign_in_field{
    border-radius: 9px;
    color: #5A6660;
    font-weight: 600;
    margin-bottom: 18px;
    min-height: 46px;
    padding: 18px 20px;
}

.row.row-end{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    align-items: center;
}

.tab_sign_in .ids_button_login{
    display: flex;
    gap: 8px;
    min-height: 42px;
    align-items: center;
}

.error-form{
    color: #ff0909;
}

.text-center{
    text-align: center;
}

.form-ids button {
    align-items: center;
    border-radius: 100px;
    display: flex;
    gap: 10px;
    height: 45px;
    justify-content: center;
    margin-top: 20px;
    padding: 5px 25px;
}

.form-ids .row .col{
    position: relative;
}

.form-ids .icon-form{
    position: absolute;
    right: 10px;
    top: 36px;
}

.e-con.css-register-sign-up, 
.css-register-sign-up,
.form-codigo-activacion{
    display: none;
}

/*LOADING*/
.loading{
    width: 30px;
    height: 30px !important;
    display: none;
    animation: circle 3s linear infinite;
}

.form-ids .loading{
    margin-top: 10px;
}

@keyframes circle{
    0%{
      transform:rotate(0deg);
    
    }
    100%{
      transform:rotate(360deg);
    }
}

/*AUDIO*/
.audio-player {
    width: 100%;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1;
}

.audio-player .audio-thumb {
    width: 22%;
}

.audio-player .controls {
    width: 76%;
}

.audio-player .audio-date{
    margin-bottom: 10px;
}

.flex-between-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.audio-player select{
    border: 0;
    background: transparent;
    box-shadow: none;
    width: 76px;
    text-align: right;
}

.audio-time, .audio-time select{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
}

.seek-slider {
    width: 100%;
    cursor: pointer;
}
.seek-slider.ui-widget.ui-widget-content{ 
    background-color: #D9D9D9; 
    border-radius: 11px;
    height: 4px;
    border: 0;
}
.seek-slider .ui-slider-range { 
    background: #FCBD14; 
    border-radius: 11px; 
}
.seek-slider .ui-slider-handle { border-color: #ef2929; }

.seek-slider.ui-state-default, 
.seek-slider.ui-widget-content .ui-state-default{
    opacity: 0;
}

button.play-pause{
    background-color: transparent;
    padding: 0;
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
}

button.play-pause:hover {
    transition: all .3s ease-out;
    transform: scale(1.1);
    opacity: 0.9;
}

.audio-player select {
    height: 20px;
    padding: 0;
}

.audios-book-all {
    max-height: 599px;
    overflow-y: auto;

    /* Scrollbar styles */
    scrollbar-width: thin;
    scrollbar-color: #ff6600 #f0f0f0;
}


/* For WebKit-based browsers (Chrome, Safari) */
.audios-book-all::-webkit-scrollbar {
    width: 10px;
}

.audios-book-all::-webkit-scrollbar-track {
    background: #f0f0f0; /* Track color */
}

.audios-book-all::-webkit-scrollbar-thumb {
    background-color: #ff6600; /* Thumb color */
    border-radius: 10px; /* Rounded corners */
    border: 2px solid #f0f0f0; /* Padding around thumb */
}

.audios-book-all::-webkit-scrollbar-thumb:hover {
    background-color: #ff4500; /* Thumb color on hover */
}

.audios-book-all .audio-player{
    margin-bottom: 10px;
}

.audio-player .style2 .audio-thumb{
    width: 80px;
    height: 80px;
}

.audio-player .style2 .controls{
    width: calc( 100% - 90px );
}