html{
    background-color: #2a9d8f;
    background-attachment: fixed;
}

body{
    font-family: 'crossorigin', Open Sans;
    font-size: 15px;
}

a{
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #2a9d8f;
}

::-webkit-scrollbar-thumb {
    background-color: #137769;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*LAYOUT STYLE*/

.header{
    max-width: 1024px;
    font-size: 35px;
    margin-top: 50px;
    margin-bottom: 50px;
    color: white;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
}

.web_container{
    height: 100%;
    max-width: 1024px;
    margin: auto;
    position: relative;
}


.titel{
    font-size: 25px;
    color: white;
}

.person-png{
    width: 50px;
    display: block;
    right: 15px;
    border-radius: 50px;
}

.dropdown-menu{
    position: absolute;
    right: 10px;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
}

.dropdown-btn{
    display: none;
    cursor: pointer;
    margin-top: 5px;
    position: absolute;
    top: 50px;
    border-radius: 5px;
    width: 70px;
    padding: 8px;
    background: transparent;
    color: black;
}

.dropdown-btn:hover{
    color: white;
    background: #e76f51;
}

.dropdown-menu:hover > .dropdown-btn{
    display: inline;
}

.logo{
    width: 150px;
}

/**/

/**LOGIN BLADE STYLE**/

.inlog-container{
    margin-left: auto;
    margin-right: auto;
    width: 640px;
    margin-top: 200px;
    border-radius: 35px;
    background-color: #ffff;
    box-shadow: 0 0 30px 12px #071330;
}

.form{
    margin-right: auto;
    margin-left: auto;
    width: 640px;
    display: inline-grid;
    justify-items: center;
}

h1{
    margin-right: auto;
    margin-left: auto;
    width: 200px;
    padding-top: 5px;
    text-align: center;
}

label{
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    text-align: center;
    padding: 10px;
}

input{
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    border: none;
    border-bottom: 1px solid #071330;
    outline: none;
    background-color: #d7d1ca;
}

.inlog-btn{
    padding: 8px;
    margin-top: 25px;
    font-size: 18px;
    border-radius: 5px;
    color: white;
    background-color: #e76f51;
    cursor: pointer;
    border: 1px solid #071330;
}

.inlog-btn:hover{
    background: transparent;
    color: black;
}

.error{
    color: red;
    font-weight: bold;
    padding: 5px;
}

/**/

/*REGISTER STYLE*/

.registreer-container{
    margin-left: auto;
    margin-right: auto;
    width: 640px;
    margin-top: 150px;
    border-radius: 35px;
    background-color: #f1faee;
    box-shadow: 0 0 30px 12px #071330;
}

/**/

/*home.blade.php*/

.menu{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-top: 10px;
}

.redirect-btn{
    width: 70px;
    padding: 10px;
    height: 40px;
    float: right;
    cursor: pointer;
    background: #e76f51;
    color: white;
    justify-self: end;
}

.file-redirect-a{
    text-decoration: none;
    color: black;
    margin: 10px;
}

.file-redirect-a:hover{
    color: red;
}

.redirect-btn:hover{
    background: transparent;
    color: black;
}

.search-container{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 80px;
}

.searchbar{
    background: transparent;
    float: left;
    border: none;
    border-radius: 0;
    border-bottom: 3px solid white;
    outline: none;
    color: white;
    position: relative;
}
#searchbar{
    overflow: hidden;
    position: relative;
    margin: 0;
}
#searchbar:after{
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left: 10px;
    top: 8px;
    background-image: url('/img/search.png');
    background-size: cover;
}


.lijst{
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    width: 100%;
    display: inline-grid;
    background-color: white;
}

table.table-container{
    border-collapse: collapse;
    border: 2px solid #071330;
    table-layout: fixed;
}

.table-header{
    height: 40px;
    text-align: center;
    -ms-flex-align: center;
    justify-content: space-evenly;
    align-items: center;
    background-color: #e76f51;
    border-bottom: none;
}

.table-content{
    width: 1024px;
    height: 40px;
    text-align: center;
    -ms-flex-align: center;
    justify-content: space-evenly;
    align-items: center;
    background-color: white;
    animation: fadeIn 0.2s ease-in-out;
    border-bottom: 1px dashed #071330;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-text{
    color: white;
    font-size: 20px;
    text-align: center;
}

.download-lijst-container form{
    display: inline;
}

.download-lijst-container{
    width: 100px;
}

.download-icons{
    height: 18px;
    text-decoration: none;
}

.datum-container{
    width: 100px;
}

.language-container{
    width: 100px;
}

.time-container{
    width: 100px;
}

.size-container{
    width: 100px;
}

.nav-text th {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

.nav-lijst1 td{
    border-top: 1px dashed black;
}

.nav-container{
}

.arrow-container{
    height: 45px;
    color: #e76f51;
}

.arrow-container:hover{
    color: white;
}

.navigation-container{
    display: flex;
    justify-content: center;
    align-items: center;
    justify-items: center;
    margin: 20px;
}

.number-container{
    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50px;
    margin: 10px;
    color: black;
    background: transparent;
}

a.number-container:hover{
    background: transparent;
    color: white;
}

.number-span.active{
    color: white;
    background: #e76f51;
    height: 25px;
    width: 25px;
    border-radius: 50px;
    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: center;
}

.download-btn{
    border: none;
    padding: 0;
    cursor: pointer;
}
/**/

/*TRANSCRIBE STYLE*/

.transcribe-container{
    margin-right: auto;
    margin-left: auto;
    width: 512px;
    height: 300px;
    margin-top: 50px;
    display: flex;
    text-align: center;
    align-items: center;
    -ms-flex-align: center;
    border: 1px dashed #071330;
}

fieldset{
    border: 0;
}

.transcribe-submit{
    border: none;
    border-radius: 10px;
    width: 100px;
    cursor: pointer;
    background-image: linear-gradient(rgb(218,232,258), rgb(126,166,224));
}

.cloud-img{
    height: 128px;
    width: 128px;
}

.cloud-container{
    align-items: center;
    text-align: center;
    height: 150px;
    margin: auto;
    top: 0;
    width: 128px;
    position: relative;
}

.transcribe-form{
    margin: auto;
    width: 256px;
    position: relative;
}

.transcribe-input{
    justify-items: center;
    text-align: center;
    display: inline-block;
    border: none;
    height: 128px;
    width: 128px;
    cursor: pointer;
}

input[type='file']{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.form-text{
    text-align: center;
    color: white;
}

#gallery {
    margin-top: 10px;
}
#gallery img {
    width: 150px;
    margin-bottom: 10px;
    margin-right: 10px;
    vertical-align: middle;
}

.audio-container{
    text-align: center;
    margin-top: 50px;
    color: white;
    width: 1024px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.transcribe-layout{
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    text-align: center;
    font-size: 35px;
    color: white;
    width: 1024px;
    border-radius: 25px;
    background-color: #071330;
}

.text-container{
    margin-right: auto;
    margin-left: auto;
    width: 512px;
    text-align: center;
    font-size: 25px;
}

.main{
    display: grid;
}

.audio{
    height: 50px;
}

.text{
    height: 50px;
}

.audio-text{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

audio{
    margin: auto;
}

.load-display{
    display: none;
}

.load-div{
    display: flex;
    text-align: center;
    height: 48px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 10px;
}

.files-container {
    margin-left: auto;
    margin-right: auto;
    border: 1px dashed #000;
    border-top: none;
    width: 512px;
    text-align: center;
}

.file-info{
    width: 100%;
    display: grid;
    grid-template-columns: 15fr 5fr;
    border-bottom: 1px dashed #000;
}

.file-name{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    padding: 10px;
}

.error-container{
    grid-column: 1 / -1;
}

.alert-danger{
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
    background: #ff8686;
    color: red;
    border: 2px solid red;
    font-weight: bold;
}

.fadeInLeft{
    animation: fadeInLeft 0.2s ease forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.redirect-home-btn{
    margin-right: auto;
    margin-left: auto;
    width: 70px;
    height: 35px;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 20px;
    border-radius: 5px;
    border: 1px solid #071330;
    background: #e76f51;
    color: white;
    text-decoration: none;
}

.redirect-home-btn:hover{
    background: transparent;
}

.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: white;
    position: absolute;
}

.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}

.loader:after {
    color: #e76f51;
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {
    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }
    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }
    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }
    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }
    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }
    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }
    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }
    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}

/**/

/*file.blade style*/

.content-container{
    margin-right: auto;
    margin-left: auto;
    position: relative;
    max-width: 1024px;
    display: grid;
    margin-top: 100px;
}


.file-info-nav-container{
    height: 100px;
    border-radius: 5px;
    background-color: white;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.file-info-btn{
    font-weight: bold;
    display: block;
    text-decoration: none;
    color: black;
    position: relative;
    padding-left: 30px;
    margin-left: 15px;
}

.file-info-btn:before{
    content: '';
    display: block;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    position: absolute;
    background-size: cover;
}

.file-info-btn.icon-file:before{
    background-image: url('/img/info.png');
    }
    .file-info-btn.icon-text:before{
    background-image: url('/img/text.png');
    }
    .file-info-btn.icon-subrip:before{
    background-image: url('/img/srt.png');
}

.file-info-btn:hover{
    color: #2a9d8f;
}

.file-info-btn.active{
    color: red;
}

.info-container{
    width: 100%;
    display: inline-grid;
    border-radius: 5px;
    background-color: white;
}

.grid-container{
    display: grid;
    grid-template-columns: 100px 1fr 32px;
    column-gap: 5px;
    position: relative;
}

.info-text{
    margin: 0 20px;
    display: flex;
    align-items: center;
    word-break: break-word;
}

p{
    font-weight: bold;
    word-break: normal;
    padding-right: 5px;
}

.redirect-home{
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    background: #e76f51;
    color: white;
    text-align: center;
    text-decoration: none;
    border: 1px solid #071330;
}

.redirect-home:hover{
    background: transparent;
    color: black;
}

h2{
    font-size: 18px;
    text-align: center;
    color: #071330;
}

.nav-pngs-container{
    display: grid;
    justify-content: end;
    align-content: space-around;
}


.nav-pngs{
    height: 20px;
    text-decoration: none;
}

.download-menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 0;
}

.download-container{
    position: sticky;
    top: 0;
}

.download-icon{
    height: 20px;
    cursor: pointer;
    padding: 6px;
    border-radius: 5px;
    margin-bottom: 5px;
    background-color: #e76f51;
    width: 20px;
    border: 1px solid #071330;
}

.download-icon:hover{
    border: 1px solid white;
}

/**/

/*text.blade.style*/

.file-text-container{
    font-size: 16px;
    margin: 15px;
    min-height: 250px;
    height: auto;
    resize: vertical;
    overflow-y: auto;
    border: none;
    outline: none;
    padding: 5px;
}

.file-text-container::-webkit-scrollbar-track{
    background-color: white;
}

.file-text-container::-webkit-scrollbar-thumb {
    background-color: #e76f51;
    border-radius: 10px;
}

.opslaan-btn {
    float: right;
    border-radius: 5px;
    cursor: pointer;
    background: #e76f51;
    color: white;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 5px;
    width: 50px;
    height: 30px;
    border: 1px solid #071330;
}

.opslaan-btn:hover{
    background: transparent;
    color: black;
}

.buttons{
    display: grid;
    grid-template-columns: 100px 1fr;
    column-gap: 5px;
    margin-bottom: 5px;
}

/**/

/*srt.blade.style*/

.srt-box{
    list-style: none;
}

.srt-box li{
    display: block;
    min-height: 20px;
}

.acties-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 5px;
    position: sticky;
    top: 38px;
}

.acties-container a{
    background: white;
    padding: 6px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.acties-container a:hover{
    background: #e76f51;
}

.copy-img{
    cursor: pointer;
    height: 20px;
}

.audio-player{
    width: 100%;
    background-color: white;
}

audio::-webkit-media-controls-panel {
    background: white;
    color: white;
}

.audio-center{
    display: flex;
    width: 100%;
    grid-row: 2/4;
    position: sticky;
    top: 0;
    border-radius: 0;
    box-shadow: 0 4px 4px -4px #ccc;
}

.naam-copy-container{
    display: grid;
    grid-template-columns: 15fr 2fr;
    word-break: break-word;
    align-items: center;
}

/**/

/*MOBILE STYLING*/

@media screen and (max-width: 700px) {

/*Home Mobile Styling*/
.menu{
    margin-top: 100px;
}

.lijst{
    margin-top: 10px;
}

.titel {
    display: none;
}

.table-container tr td,
.table-container tr th {
    display: none;
}

.table-container tr td:first-child,
.table-container tr td:last-child,
.table-container tr th:last-child,
.table-container tr th:first-child {
    display: table-cell;
}
/**/

/*File Page Styling*/

.grid-container{
    grid-template-columns: 1fr 30px;
    row-gap: 5px;
}

.file-info-nav-container{
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav-pngs-container{
    display: none;
}

.info-container{
    grid-row: 2/3;
    word-break: break-word;
}

.download-menu{
    grid-row: 1/3;
}

.srt-box{
    margin: 0;
    padding: 10px;
}

.info-container a{
    margin-right: 10px;
}

.buttons{
    display: grid;
    grid-template-columns: 80px 1fr;
}

.audio-player{
    background-color: white;
}

.audio-center{
    display: inline;
    width: 100%;
    grid-row: 2/4;
    position: sticky;
    top: 45px;
    border-radius: 0;
    box-shadow: 0 4px 4px -4px #ccc;
}

.original-name{
    font-weight: normal;
}

/**/

/*Transcribe Styling*/

.transcribe-container{
    width: auto;
    margin-top: 140px;
}

.files-container{
    width: auto;
}

.file-info{
    align-items: center;
}

/**/

/*Inlog Styling*/

.inlog-container{
    width: auto;
    display: flex;
}

.form{
    width: auto;
}

input{
    width: auto;
}

/**/
}

