* {
    font-family: arial;
    padding: 0;
    margin: 0;
}


.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.2;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media__wrapper {
    max-width: 100%;
    margin: auto;
    margin-top: 0;
}

.media__content {
    width: 100%;
    display: flex;
    
}

.collection, .notcollected {
    margin-bottom: 64px;
}

.countries {
    width: 500px;
}


.logo img {
    width: 100px;
    margin-right: 64px;
}


.media__filter {
    width: 100%;
    position: fixed;
    
    background-color: rgba(0,0,0, 0.9);
    backdrop-filter: blur(5px);
    padding: 8px;
    padding-left: 0;
    z-index: 97;
    padding: 24px;
    display: flex;
    align-items: center;
    /*backdrop-filter: blur(5px);*/
    box-shadow: -2px 7px 10px -5px rgba(0,0,0,0.47);
-webkit-box-shadow: -2px 7px 10px -5px rgba(0,0,0,0.47);
-moz-box-shadow: -2px 7px 10px -5px rgba(0,0,0,0.47);
}

.media__filter select {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 8px;
    margin: 4px 0;
    outline: none;
    margin-bottom: 16px;
    margin-right: 12px;
}

.media__output {
   
    padding: 0;
    margin-top: 200px;
    max-width: 100%;
    min-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}


.login-box input {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 8px;
    margin: 4px 0;
    width: 100%;
    max-width: 300px;
    outline: none;
   
}

.title {
    font-size: 24px;
    margin-right: 64px;
    color: #fff;
    height: 100%;
}

.competition {
    font-size: 10px;
    margin-bottom: 12px;
}

.btn {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 8px;
    display: inline-block;
    cursor: pointer;
    margin: 4px 0;
    background-color: rgba(255,255,255,0.5);
}

.row {
    display: flex;
    padding: 0;
    justify-content: flex-start;
    color: #fff;
    font-weight: bold;
    
}   



.row.header .col.label {
    background-color: transparent;
    visibility: hidden;
}



.row.header .col {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 6px;
    margin: 0 6px;
    border-radius: 10px 10px 0 0;
}

.filename {
    font-size: 11px;
    font-weight: normal;
}

.col {
    padding: 12px 6px;
    margin: 0 6px;
    width: 100px;
   
    color: #000;
}


.row:nth-child(even) .col {
    background-color: rgba(167,167,167,1);
    color: #000;
    /*background-color: rgba(255,255,255,0.5);*/
}

.row:nth-child(odd) .col {
    background-color: rgba(200,200,200,1);
    color: #000;
    /*background-color: rgba(0,0,0,0.5);*/
}


.row.header {
    text-transform: uppercase;
    margin: 0;
    background-color: transparent;
}

.row.header .col {
    color: #fff;
    font-size: 12px;
}

.row.header .col {
    background-color: rgba(0,0,0,0.7);
}

.col.label {
    background-color: rgba(0,0,0,0.5);
    padding: 12px;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
    font-size: 12px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 10px 0 0 10px;
}

.col img {
    width: 100%;
    max-height: 50px;
    object-fit: contain;
}


body {
   /*background-image: url(../img/login_image.jpeg);*/
    z-index: 0;
}

.loading-icon {
    position: fixed;
    top: 50vh;
    left: 50vw;
    display: none;
    z-index: 99;
}

.loading-icon--active {
    display: block;
    z-index: 98;
}

.country {
    margin-bottom: 8px;
    font-family: arial;

}

.login-box {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 24px;
    background-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 200px;
    height: 200px;

    position: fixed;
    top: calc(50vh - 124px);
    right: calc(50vw - 124px);
    transition: 0.3s ease-in-out;
    
    z-index: 99;
}

.login-box--active {
    top: 24px;
    right: 24px;
    width: 50px;
    height: 20px;
    background-color: rgba(255,255,255,0);
    display: none;
}

h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.infos {
    position: fixed;
    width: 300px;
    height: 50px;
    top: -200vh;
    left: calc(50vw - 174px);
    background-color: rgba(0,0,0,0.8);
    z-index: 997;
    border-radius: 5px;
    padding: 24px;
    transition: 0.3s ease-in-out;
    color: #fff;
    font-family: arial;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infos--active {
    top: calc(50vh - 49px);
}