@import url('https://fonts.googleapis.com/css2?family=Damion&family=Dancing+Script&family=Righteous&display=swap');



html{
    min-height: 100%;
    width: 100%;
    background: linear-gradient(rgba(100,100,255,1) 50%, rgba(30,134,214) 100%);
    background-repeat: no-repeat;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    /* background: linear-gradient(rgba(0,200,195,1) 0%, rgba(0,238,191,1) 50%, rgba(0,196,134,1) 100%); */
}

button{
    text-decoration: none;
    outline: none;
}

a{
    outline: none;
}

.noselect{
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
.fixed{
    position: fixed;
}

.flex{
    display: flex;
    justify-content: flex-start;
}
.flexcenter{
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}
.flexend{
    display: flex;
    justify-content: flex-end;
}

.fwrap{
    flex-wrap: wrap;
}

.f1{
    flex: 1;
}

.textcenter{
    text-align: center;
}


::-webkit-input-placeholder { /* Edge */
    color: #ffffffaa;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ffffffaa;
}

::placeholder {
    color: #ffffffaa;
}


.anone{
    outline: none;
    text-decoration: none;
}



.logo{
    margin: 0 20px;
    font-size: 50px;
    color: #ffffff;
    
    font-family: 'Damion', cursive;
    
    /* font-family: 'Dancing Script', cursive; */
}

.navcon{
    width: 60%;
    align-items: center;
}

.navigation{
    color: #fff;
    font-family: 'Righteous', cursive;
    font-weight: lighter;
    width: 100%;
    transform: translateY(7px);
}

.navbuttons{
    margin: 10px 20px;
    padding: 10px 20px;
    
    transition: transform 0.4s ease;
}

.navbuttons:hover{
    transform: translateY(-3px);
}

.sign{
    cursor: pointer;
    background-color: #fff;
    border-radius: 30px;
    color: rgba(100,100,255,1);
}

.upload{
    color: #fff;
}

.upicon{
    opacity: 0;
    transition: opacity 0.4s ease;
}
.upload:hover .upicon{
    opacity: 1;
}

#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 7px 12px; /* Padding */
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 5px;
    position: fixed; /* Sit on top of the screen */
    z-index: 100; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    top: 50px; /* 30px from the top */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.4s, fadeout 0.5s 4.5s;
    animation: fadein 0.4s, fadeout 0.5s 4.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 50px; opacity: 1;}
}

@keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 50px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {top: 50px; opacity: 1;}
    to {top: 0; opacity: 0;}
}

@keyframes fadeout {
    from {top: 50px; opacity: 1;}
    to {top: 0; opacity: 0;}
}

[v-cloak] {display: none}
/* common end */




.mainloadingicon{
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -20;
}

#mlicon{
    border: 10px solid #ffffff67;
    border-top: 10px solid #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
}
.mliconrotate{
    animation: rotate 1s linear 0s infinite normal;
}

.imgcoverup{
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 10;
}

.imgcoverupbig{
    top: 0;
    bottom: 0;
    height: 27.5px;
    width: 100%;
    z-index: 10;
}


.conscon{
    /* height: 500px; */
    margin: 50px 0;
}
.conschild{
    display: flex;
    justify-content: flex-end;
    position: relative;
    height: 100%;
    width: calc(60% + 143px);
}

.menus{
    position: absolute;
    top: 0;
    left: 0;
    /* height: 100%; */
}

.menu{
    cursor: pointer;
    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    background-color: #ffffff14;
    transition: background-color 0.2s ease;
}
.menu:hover{
    background-color: #ffffff34;
}

.selected{
    background-color: #ffffff54;
}



.controls{
    padding: 10px 10px;
}

.contb{
    cursor: pointer;
    padding: 5px 10px;
    margin-left: 8px;
    border: none;
    border-radius: 3px;
    background-color: #fff;
    color: rgba(100,100,255,1);
    transition: background-color 0.2s ease, color 0.2s ease;
}
.contb:hover{
    background-color: rgba(100,100,255,1);
    color: #fff;
}


.linksconmain{
    height: 100%;
    width: calc(100% - 150px);
}
.linkscon{
    height: 100%;
    background-color: #ffffff24;
    border-radius: 4px;
}

.linkschild{
    height: 400px;
    overflow-y: auto;
    margin-top: 20px;
    padding-top: 20px;
    border: 2px solid #ffffff44;
}

.link{
    margin: 0 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff44;
    
}


.ellipted{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.date{
    color: #ffffffb4;
    margin-left: 20px;
}

.playicfr{
    cursor: pointer;
    height: 13px;
    padding-right: 10px;
}

.playic{
    cursor: pointer;
    height: 13px;
    margin-left: 15px;
    transition: transform 0.15s ease;
}
.playic:hover{
    transform: scale(1.1);
}


.inputid{
    padding: 3px 7px;
    color: #ffffff;
    background-color: #ffffff23;
    border: none;
    border-radius: 3px;
}

.inputidbig{
    font-size: medium;
    padding: 5px 10px;
    color: #ffffff;
    background-color: #ffffff23;
    border: none;
    border-radius: 3px;
}

.addextb{
    padding: 3px 7px;
    border: none;
    border-radius: 3px;
    background-color: #fff;
    color: rgba(100,100,255,1);
    transition: background-color 0.2s ease, color 0.2s ease;
}
.addextb:hover{
    background-color: rgba(100,100,255,1);
    color: #fff;
}

.bigbut{
    padding: 5px 10px;
    font-size: medium;
}


.remic{
    cursor: pointer;
    margin-left: 10px;
    height: 17px;
    width: 17px;
}


#selectedist{
    padding: 10px;
}

.selecteditem{
    padding: 4px 5px 4px 10px;
    margin: 5px 10px 5px 0;
    border-radius: 3px;
    background-color: #ffffff45;
    font-size: small;
}

.dialogmsg{
    color: #ffffffab;
    font-size: small;
    padding-bottom: 15px;
}


.rotating{
    animation: rotate 2s linear 0s infinite normal;
}
@keyframes rotate {
    0%   {transform: rotate(0deg);}
    100%  {transform: rotate(360deg);}
}


#playlistdialog{
    display: none;
    padding-bottom: 70px;
}

.dialog{
    width: calc(100% - 17px);
    top: 0;
    z-index: 10;
}

.dialogcon{
    width: 98%;
    max-width: 600px;
    margin-top: 70px;
    border-radius: 10px;
    background-color: #6464ff;
    box-shadow: 0px 32px 101px 3px rgba(0,0,0,0.47);
}

.deletemsg{
    padding: 20px 30px;
    color: #fff;
}

.dltcontcon{
    padding: 20px 30px;
}

@media screen and (max-width: 40rem){
    
    .logo{
        margin: 0 0px;
        font-size: 30px;
    }
    
    .navigation{
        transform: translateY(2px);
    }
    
    .navcon{
        width: 75%;
    }
    
    .navbuttons{
        margin: 5px 5px;
        padding: 5px 10px;
        font-size: small;
    }
    /* common end */
    
    
    .linksconmain{
        width: 100%;
    }
    
    .conschild{
        display: block;
    }
    
    .menus{
        position: relative;
        display: flex;
        justify-content: flex-start;
    }
    .menu{
        margin-right: 5px;
        padding: 7px 15px;
        font-size: small;
    }
    
    
}

[v-cloak]{
    display: none;
}