@font-face {
    font-family: "PublicSans";
    src: url("/assets/Fonts/PublicSans.ttf") format("truetype");
}

.song_counter_wrapper {
    height: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
}

.song_counter {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 40px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

input {
    border-radius: 15px;
    padding: 15px 20px;
    font-family: 'PublicSans';
    font-weight: normal;
    font-size: 15px;
    color: white;
    background-color: var(--color-input-dark);
    width: 100%;
}

label {
    color: var(--color-secondary);
    font-family: 'PublicSans';
}

select {
    appearance: none;
    border-radius: 15px;
    padding: 15px 20px;
    font-family: 'PublicSans';
    font-weight: normal;
    font-size: 15px;
    color: var(--color-secondary);
    background-color: var(--color-input);
    width: 100%;
}

.action_button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.action_button {
    background-color: var(--color-primary);
    border-radius: 100px;
    padding: 15px 20px;
    font-family: 'PublicSans';
    font-weight: normal;
    font-size: 15px;
    margin: 10px;
    color: white;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.action_button:active {
    transform: scale(0.9);
}

.add_song_form {
    transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1) !important;
}

.add_song_form.hidden {
    opacity: 0 !important;
    transform: translateX(-200px) !important;
}


.hideable-input {
    transition: opacity 1s cubic-bezier(0.075, 0.82, 0.165, 1), transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), filter 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.songSuggestion {
    background-color: var(--color-input-dark);
    color: white;
    transition: opacity 1s cubic-bezier(0.075, 0.82, 0.165, 1), border 1s cubic-bezier(0.075, 0.82, 0.165, 1), transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    border: 2px solid rgba(255, 255, 255, 0);
}

.songSuggestion:not(.selected) {
    opacity: 0.5;
}

.selected {
    border: 2px solid var(--color-primary);
}

.sing_counter {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-text-stroke: 2px var(--color-primary);
    color: #ffffff00 !important;
}

.input_views {
    transition: transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 1s cubic-bezier(0.075, 0.82, 0.165, 1), filter 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

#modal {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    perspective: 175px;
    background-color: rgba(0, 0, 0, 0.092);
    backdrop-filter: blur(3px);
}

.modal_container {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1.1) rotateX(-1deg) rotateY(0deg);
    transform-style: preserve-3d;
    filter: blur(10px);
    opacity: 0;
    max-height: 95%;
    overflow-y: scroll;
}

#modal.modal_visible {
    opacity: 1;
    pointer-events: all;
}

#modal.modal_visible .modal_container {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}