@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i');
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (max-width: 768px) {
    #navbarToggler .btn {
        width: 100%;
    }
  html {
    font-size: 12px;
  }
}

@font-face {
    font-family: 'RavePool-Font';
    font-style: normal;
    font-weight: 400;
    src: url(fonts/segoe-ui.woff) format('woff');
}
body {
    margin-bottom: 5px;
    font-family: Inter,Roboto, Segoe UI,RavePool-Font, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-image: url(/Images/background.jpg)
}

input[type="file"].r-image {
    display: none;
}
.r-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}

.r-image-picker label:not(.r-selected) {
    cursor: pointer;
    filter: grayscale(100%);
}
.r-image-picker label.r-selected {
    border: 3px solid red!important;
    filter: grayscale(0);
}

    .r-image-picker label:hover {
        filter: grayscale(0);
    }

.r-image-picker input[type="radio"]:checked + label {
    filter: grayscale(0);
}

.r-track {
    outline: none;
    padding: 4px;
    margin: -4px;
}
.r-expiring > td{
    background-color:#ffe186;
}
a.r-link {
    color: #212529;
}
a.r-link:hover {
    text-decoration:underline;
} 

    .r-track:focus-within::file-selector-button,
    .r-track:focus::file-selector-button {
        outline: 2px solid #0964b0;
        outline-offset: 2px;
    }

    .r-track::before {
        top: 16px;
    }

    .r-track::after {
        top: 14px;
    }
.text-stroke {
    font-family: Segoe UI,RavePool-Font, "Helvetica Neue", Helvetica, Arial, sans-serif;
    ;
    letter-spacing: 0px;
    font-size: 30px;
    color: #000000;
    font-weight: bold;
    margin-bottom: 2px;
    text-transform: uppercase;
}
.btn { border-radius:20px!important;}
.bg-primary {
    background-color: #1863fa!important;
}
.btn-primary {
    background-color: #1863fa!important;
}
.bg-artist {
    background-color: #ee6e75 !important;
    color:#ffffff!important;
}
.btn-artist {
    background-color: #ee6e75 !important;
    color: #ffffff !important;
}
.li-artist {
    border: 1px solid #ee6e75 !important;
}
.text-primary {
    color: #1863fa !important;
}
.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
    background-color: #c9e5fd !important;
    color: #000000 !important;
}
tr.r-selected td, tr.r-selected th {
    background-color: #c9e5fd !important;
    color: #000000 !important;
}
/* ------- From Step 2 ------- */
.r-track {
    position: relative;
}

    .r-track::file-selector-button {
        width: 150px;
        color: transparent;
    }

    /* Faked label styles and icon */
    .r-track::before {
        position: absolute;
        pointer-events: none;
        /*   top: 11px; */
        left: 40px;
        top: 5px;
        color: #0964b0;
        content: "Track (*.wav)";
    }

    .r-track::after {
        position: absolute;
        pointer-events: none;
        /*   top: 10px; */
        left: 16px;
        top: 8px;
        height: 20px;
        width: 20px;
        content: "";
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230964B0'%3E%3Cpath d='M18 15v3H6v-3H4v3c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-3h-2zM7 9l1.41 1.41L11 7.83V16h2V7.83l2.59 2.58L17 9l-5-5-5 5z'/%3E%3C/svg%3E");
    }


    /* ------- From Step 1 ------- */

    /* file upload button */
    .r-track::file-selector-button {
        border-radius: 4px;
        padding: 0 16px;
        height: 40px;
        cursor: pointer;
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.16);
        box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
        margin-right: 16px;
        transition: background-color 200ms;
    }

        /* file upload button hover state */
        .r-track::file-selector-button:hover {
            background-color: #f3f4f6;
        }

        /* file upload button active state */
        .r-track::file-selector-button:active {
            background-color: #e5e7eb;
        }
        .r-filter {
            background-color: yellow;
            cursor:pointer;
        }

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    td {border-left: hidden; border-right:hidden}
    th {padding-top: 2px!important;padding-bottom:2px!important;}


.r-progress:before {
    content: "";
    /* width: 40px; */
    height: 3px;
    background: #1863fa;
    position: absolute;
    animation: loader 2s;
    -webkit-animation: loader 2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    transition-timing-function: linear;
    -webkit-transition-timing-function: linear;
    bottom: 5px;
    margin-left: 0;
}

@keyframes loader {
    0% {
        width: 0%;
        left: 0;
        right: 0
    }

    50% {
        width: 100%;
        left: 0;
        right: 0
    }

    99% {
        width: 0%;
        left: 100%;
        right: 0
    }
}

@-webkit-keyframes loader {
    0% {
        width: 0%;
        left: 0;
        right: 0
    }

    50% {
        width: 100%;
        left: 0;
        right: 0
    }

    99% {
        width: 0%;
        left: 100%;
        right: 0
    }
}

.r-box-light {
    background-color:#e0e0e0;
    color:#454545;
    border: 1px solid #c0c0c0;
}
.r-box-white {
    background-color: #ffffff;
    color: #454545;
    border: 1px solid #c0c0c0;
}



.r-loading {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}