
* {
    font-family: "Nunito Sans", Arial, sans-serif;
}

body {
    height: 100%;
    margin:0;
    padding:0;
    background-color: #F5F5F5;
      /*background-image: url('background.svg');*/
}


body#mobile {
    font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
    margin:0px;
    padding:0px;
    height: calc(100%- 70px);

background-attachment: fixed;

      /*background-image: url('background.svg');*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

html {
    height: 100%;
    width: 100%;
}

div.alert {
    border: 1px solid MediumAquamarine;
    border-radius: 3px;
    font-size:14px;
}
div.alert-success{
    background-color: HoneyDew;

}

.alert button {
    background-color: #A1E7CF;
    border: 2px solid MediumAquamarine;
    border-radius:3px;
    margin:1px;
}

    .alert button:hover {
        background-color: MediumAquamarine;
    }

div.patient {
    text-align: center;
    margin: 20px;
    display:none;
}


.patient input {
    font-size: 15pt;
}

div.image {
    margin: 10px;
    text-align: center;
}
div.syncIdentification {
    text-align: center;
    margin: 20px;
}
.syncIdentification input{
    font-size: 15pt;
}
input.imageInput{
    margin-left:10px;
}
.image input {
    font-size: 13pt;
    
}
#ck-button {
    margin: 4px;
    background-color: rgb(108,72,50);
    border-radius: 4px;
    border: 1px solid #D0D0D0;
}


    #ck-button label {
        width:auto;
        cursor:pointer;
    }

        #ck-button label span {
            text-align: center;
            padding: 10px 10px;
            display: block;
            margin:1px;
        }

        #ck-button label input {
            display:none;
        }

    #ck-button input:checked + span {
        background-color: rgb(108,72,50);
        color: white;
        border-radius: 2px;
    }
    #ck-button input + span {
        background-color: rgb(255, 210, 190);
        color: Black;
        border-radius:2px;
    }

div#ident_selector {
    display: flex;
    justify-content: center;
}
img#logo {
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
div#logoDiv {
    width:100%;
    align-content:center;

}

#submit {
    border: 2px solid rgb(108,72,50);
    border-radius: 3px;
    background-color: rgb(255, 210, 190);
    font-size: 13pt;
    color: black;
    padding: 5px 10px;
}

button#submit:hover {
    border: 2px solid rgb(108,72,50);
    border-radius: 3px;
    background-color: rgb(108,72,50);
    color: white;
    font-size: 13pt;
}

div#submitDiv {
    text-align: center;
}

.circle {
    width: 4.5vh;
    height: 4.5vh;
    min-height: 20px;
    min-width: 20px;
    background-color: #BE1622;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.circle-little{
    width: 2.4vh;
    min-width: 10px;
    height: 2.4vh;
    min-height: 10px;
    background-color: #BE1622;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin: 0 1.5vh 0 1vh;
}

.margin-right-30{
    margin-right: 30px;
}

.initialNameLetter {
    color: white;
    font-size: 2.4vh;
}

.initialNameLetter-little{
    color: white;
    font-size: 1.4vh;
}

.display-vertical {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.display-horizontal {
    display: flex;
    flex-direction: row;
}

.display-center{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.display-center-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.img-small {
    width: clamp(12px,1.5vh,1.5vh);
    height: clamp(12px,1.5vh,1.5vh);
}

.inputField {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    border: solid 1px #3C3C3B;
    padding: 0.5vh;
    margin: 5px;
    font-size: clamp(12px,1.5vh,1.5vh);
}

.saveButton {
    border:none;
    background-color:transparent;
    cursor: pointer;
}

.switch {
    --w: clamp(15px, 2vw, 2vw);
    --h: clamp(10px,calc(var(--w) * 0.45),calc(var(--w) * 0.45));

    position: relative;
    width: var(--w);
    height: var(--h);
    display: inline-block;
    margin: 0.5rem;
}

.switch input {
    display: none;
}

.switch span {
    position: absolute;
    inset: 0;
    background: #ccc;
    border: 1px solid #ccc;
    border-radius: var(--h);
    cursor: pointer;
    transition: .25s;
    width: clamp(15px, var(--w),var(--w));
}

.switch span::before {
    content: "";
    position: absolute;
    width: calc(var(--h) - 4px);
    height: calc(var(--h) - 4px);
    top: 2px;
    left: 2px;
    background: white;
    border-radius: 50%;
    transition: .25s;
}

.switch input:checked + span {
    background: #F8D4CB;
}

.switch input:checked + span::before {
    transform: translateX(calc(var(--w) - var(--h)));
}

.display-search-box {
    width: 50%;
    min-width: 300px;
    height: 3vh;
    min-height: 15px;
}

.placeholder-text {
    color: #3C3C3B;
    font-weight: 300;
    font-size: clamp(11px,1.6vh,1.6vh);
}

.loupe {
    width: 1.5vh;
    min-width: 8px;
    min-height: 8px;
    height: 1.5vh;
}

.topPart {
    display: flex;
    flex-direction: column;
}

.topOptions{
    margin: 1vh 0 2vh 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.salmon-button{
    border: none;
    background-color: #F8D4CB;
    color: black;
    padding: clamp(5px,1vh,1vh);
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    p{
        margin: 0 1vh 0 0;
    }
}

.salmon-light-button {
    height: auto;
    width: auto;
    margin: 1vh;
    padding: 1vh;
    background: #FFF5F1;
    color: black;
    border-radius: 4px;
    border: #f1f1f1 solid 1px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.salmon-light-button:hover{
    background-color: #F8D4CB;
}

.btn-text{
    font-size: clamp(12px,1.5vh,1.5vh);
}

.btn-img-add {
    width: clamp(14px,2vh,2vh);
    height: clamp(14px,2vh,2vh);
    margin: 1vh;
}

.btn-add{
    font-size: clamp(10px,1.5vh,1.5vh);

}

.box{
    background-color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    min-width: 80px;

    h1{
        font-size: clamp(15px,3vh,3vh);
        margin: 0;
    }
}

.box-padding {
    padding: 3vh;
}

#topBar {
    background-color: #FFFFFF;
    padding: 10px 0px;
    width: 100%;
    height: 7vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 16px 0px rgba(120, 117, 116, 0.2);
    position: fixed; /* Això fa que la barra es mantingui fixa al capdamunt de la pantalla */
    top: 0; /* Posiciona la barra a la part superior de la pantalla */
    z-index: 1000; /* Assegura't que la barra està sobre altres elements de la pàgina */
    min-height: 30px;
}

#topBarOptions{
    color: black;
    ul {
        list-style: none; /* Elimina els bullets de la llista */
        display: flex;
        column-gap: 4vh;
        li a {
            color: #3C3C3B;
            text-decoration: none; /* Elimina el subratllat dels enllaços */
            font-weight: bold;
            font-size: clamp(14px, 2.5vh, 2.5vh);
            text-emphasis: #3C3C3B;
            padding: 10px; /* Espaiat interior per als enllaços */
        }
    }

}

#topBarJustify {
    background-color: #FFFFFF;
    padding: 0px;
    width: 100%;
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* MOBILE */

#ck-buttonM {
    margin: 20px;
    margin-top:50px;
    background-color: rgb(108,72,50);
    border-radius: 4px;
    border: 1px solid #D0D0D0;
    font-size:25pt;
}


    #ck-buttonM label {
        width: auto;
        cursor: pointer;
    }

        #ck-buttonM label span {
            text-align: center;
            padding: 10px 10px;
            display: block;
            margin: 1px;
        }

        #ck-buttonM label input {
            display: none;
        }

    #ck-buttonM input:checked + span {
        background-color: rgb(108,72,50);
        color: white;
        border-radius: 2px;
    }

    #ck-buttonM input + span {
        background-color: rgb(255, 210, 190);
        color: Black;
        border-radius: 2px;
    }
div.patientM {
    text-align: center;
    margin: 20px;
    display: none;
}

.patientM input {
    font-size: 25pt;
}
div.syncIdentificationM {
    text-align: center;
    margin: 20px;
}

.syncIdentificationM input {
    font-size: 25pt;
}
#submitM {
    border: 2px solid rgb(108,72,50);
    border-radius: 3px;
    background-color: rgb(255, 210, 190);
    font-size: 23pt;
    color: black;
    padding: 5px 10px;
}

button#submitM:hover {
    border: 2px solid rgb(108,72,50);
    border-radius: 3px;
    background-color: rgb(108,72,50);
    color: white;
    font-size: 23pt;
}



.imageM input {
    font-size: 23pt;
}
div.imageM {
    margin: 40px;
    text-align: center;
}


#topBarM {
    background-color: #FFFFFF;
    padding: 0px;
    width: 100%;
    padding: 20px 0px;
    display: flex;
    justify-content: flex-end;
    font-size: 20pt;
}

#topBarJustifyM {
    background-color: #FFFFFF;
    padding: 0px;
    width: 100%;
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    font-size: 20pt;
}

#topBarM a {
    margin-left: 10px;
}

video.videoM{
    max-width:100%;
    max-height:90%;
}

#loginDiv {
    background-color: #FFF5F1;
    border: 1px solid rgb(108,72,50);
    border-radius: 15px;
    display: inline-table;
    word-wrap: normal;
    padding: 15px;
    margin:auto;
}

.login {
    margin: 15px;
    padding: 0px;
}

.login a{
    font-size:12pt;
    float:right;

}

a.aAsButton{
    background-color: #8f7b74;
    border: 2px solid #8f7b74;
    border-radius: 10px;
    padding: 4px 10px;
    color: #fff5f1;
    font-size:15pt;
        display: block;
    text-align: center;
    text-decoration: none;
}

a.aAsButton:hover{
    color: #fff5f1;
    background-color: #60524e;
    border: 2px solid #60524e;
}

#submitLogin {
       background-color: #8f7b74;
    border: 2px solid #8f7b74;
    border-radius: 10px;
    padding: 4px 10px;
    color: #fff5f1;
    width: 100%;
    font-size:15pt;

}

    #submitLogin:hover {
            color: #fff5f1;
    background-color: #60524e;
    border: 2px solid #60524e;
    }

.exterior {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 14pt;
}

#submitLoginDiv {
    width: 100%;
    display: flex;
    justify-content: center;
}

img#logo2 {
    width: 20%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom:20px;
    
}

.exterior input{
    font-size:15pt;
}

.base-center{
    width: 100%;
    height: 100%;
    margin-top: 7vh;
    padding-top: 88px;
}

.auth-page {
    width: 100%;
    min-height: calc(100vh - 7vh);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 5vh;
    box-sizing: border-box;
}

.auth-page-inline {
    min-height: auto;
    padding-top: 0;
}

.auth-card {
    width: min(500px, calc(100% - 48px));
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    box-sizing: border-box;
    padding: 30px 46px 42px;
}

.auth-logo {
    width: 115px;
    max-width: 44%;
    display: block;
    margin: 0 auto 16px;
}

.auth-title {
    color: #3c3c3b;
    font-size: 20pt;
    line-height: 1.15;
    margin: 0 0 6px;
    text-align: center;
}

.auth-subtitle {
    color: #4d4d4d;
    font-size: 12.5pt;
    line-height: 1.35;
    margin: 0 0 24px;
    text-align: center;
}

.auth-field {
    margin-bottom: 18px;
}

.auth-label {
    color: #3c3c3b;
    display: flex;
    font-size: 13.5pt;
    font-weight: 700;
    justify-content: space-between;
    margin-bottom: 6px;
}

.auth-label a,
.auth-link {
    color: #3c3c3b;
    font-size: 12pt;
    font-weight: 400;
    text-decoration: none;
}

.auth-label a:hover,
.auth-link:hover {
    text-decoration: underline;
}

.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"],
.auth-card input#id_login,
.auth-card input#id_code,
.auth-card input#id_email,
.auth-card input#id_oldpassword,
.auth-card input#id_password1,
.auth-card input#id_password2 {
    width: 100%;
    background: #dddddd;
    border: 0;
    border-radius: 12px;
    box-sizing: border-box;
    color: #3c3c3b;
    font-size: 12.5pt;
    padding: 12px 16px;
}

.auth-card input:focus {
    outline: 2px solid #f5cfc6;
    outline-offset: 2px;
}

.auth-card #submitLogin,
.auth-card button#submitLogin,
.auth-card .aAsButton {
    width: 100%;
    background: #ffd3c9;
    border: 0;
    border-radius: 12px;
    color: #3c3c3b;
    cursor: pointer;
    font-size: 12.5pt;
    font-weight: 700;
    margin-top: 16px;
    padding: 12px 16px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.auth-card #submitLogin:hover,
.auth-card button#submitLogin:hover,
.auth-card .aAsButton:hover {
    background: #fac5bb;
    color: #3c3c3b;
}

.auth-error {
    color: darkred;
    font-size: 11pt;
    margin: -10px 0 18px;
    text-align: center;
}

.auth-back {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.auth-qr {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.auth-qr img {
    max-width: min(260px, 80%);
    height: auto;
}

.auth-card button#id_cancel {
    background-color: transparent;
    border: none;
    color: #3c3c3b;
    cursor: pointer;
    font-size: 12pt;
}

@media (max-width: 640px) {
    .auth-page {
        padding-top: 24px;
    }

    .auth-card {
        width: calc(100% - 28px);
        padding: 26px 22px 34px;
    }

    .auth-title {
        font-size: 19pt;
    }

    .auth-subtitle,
    .auth-card input[type="text"],
    .auth-card input[type="email"],
    .auth-card input[type="password"],
    .auth-card input#id_login,
    .auth-card input#id_code,
    .auth-card input#id_email,
    .auth-card input#id_oldpassword,
    .auth-card input#id_password1,
    .auth-card input#id_password2 {
        font-size: 12pt;
    }

    .auth-label {
        font-size: 13pt;
    }
}

div.floatRight{
    padding-right:20px;
    display: flex;
    align-items: center;

}

div#logoutDiv{
    padding:20px;
}

div#buttonDiv{
    width: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    z-index: 10;
    bottom: 0px;
}
div#buttonDivM{
    width: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    z-index: 10;
    bottom: 100px;
}

div#divVideo{
display: flex;
    align-content: center;
    justify-content: center;
}

button.takePhotoM{
    background-color: white;
    width: 120px;
    height: 120px;
    margin: 0;
    padding: 0;
    border-radius: 60px;
    border-color: black;
    border-width: medium;
}
button.takePhoto{
    background-color: white;
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 0;
    border-radius: 30px;
    border-color: black;
    border-width: medium;
}

div#focusDiv{
    z-index: 10;
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    width:100%;
    height:80%;
    top:20%;
}

img.focusM{
    max-width:80%;
    max-height:80%;
}

video{
    max-width:100%;
}
div#reader__dashboard{
    display:none;
}
img#flipImg{
    max-width:100%;
    max-height:100%;
}
button#giraButton{
    width:10%;
    background-color: #FFF5F1;
    border-radius: 10%;
}
div#flipDivM{
    display: flex;
    justify-content: center;
    align-content: center;
    z-index: 10;
    bottom: 100px;
    position: absolute;
    width:100%;

}
div#flipDiv{
    display: flex;
    justify-content: center;
    align-content: center;
    width:100%;

}
div#my_camera{
width:100%;
height:100%;
position:absolute;

}

div#tornaDiv{
     width: 20%;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    position: absolute;
    z-index: 10;
    bottom: 0px;
}
div#tornaDivM{
    width: 20%;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    position: absolute;
    z-index: 10;
    bottom: 100px;
}
img#tornaImg{
width:50px;
margin:50px;
}

div#fonsSignUp{
    background-color: #FFF5F1;
    border: 2px solid rgb(108,72,50);
    border-radius: 20px;
    padding:50px 100px 100px 100px;
    margin:50px;
}

div.flexCenteredDiv{
    display: flex;
    justify-content: center;
    align-content: center;
}
button.submitButton {
    border: 2px solid rgb(108,72,50);
    border-radius: 3px;
    background-color:#FFF6F3;
    font-size: 13pt;
    color: black;
    padding: 5px 10px;
}

button.submitButton:hover {
    border: 2px solid rgb(108,72,50);
    border-radius: 3px;
    background-color: rgb(108,72,50);
    color: white;
    font-size: 13pt;
}
input.submitButton {
    border: 1px solid rgb(108,72,50);
    border-radius: 3px;
    background-color:#FFF6F3;
    color: black;
    padding: 5px 10px;
}

input.submitButton:hover {
    border: 1px solid rgb(108,72,50);
    border-radius: 3px;
    background-color: rgb(108,72,50);
    color: white;
}

.title-text {
    font-size: clamp(11px,2vh,2vh);
    margin: 0 0 10px 0;
}

a.cancelButton{
    border: 1px solid rgb(108,72,50);
    border-radius: 3px;
    background-color:#FFF6F3;
    color: black;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 14px;
}

a.cancelButton:hover {
    border: 1px solid rgb(108,72,50);
    border-radius: 3px;
    background-color: rgb(108,72,50);
    color: white;
}

div.leftMargin{
    margin:50px;
}
.dropbtn {
  border-radius:50vh;
  background-color: transparent;

  color: rgb(108,72,50);
  padding: 16px;
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 16px;
  border: solid 2px rgb(108,72,50);
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;

}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  border-radius:10px;
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.btn-back{
    font-size: clamp(14px, 2.5vh, 2.5vh);
    font-weight: 500;
    text-decoration: none;
    color: black;
}

.permissionsForm {
    display: flex;
    justify-content: center;

    form {
        width: 50%;
        min-width: 250px;
        min-height: 200px;
        border-radius: 20px;
        background-color: #FFFFFF;
        padding: 4vh;
        margin: clamp(30px,2vh,2vh);

        div{
            margin: 1.8vh;
            display: flex;
            align-items: center;
        }

        input {
            flex: 1;
            border: none;
            padding: 1vh;
            width: 100%;
            border-radius:10px;
            background-color:#FFF5F1;
            margin: 1vh;
        }

        label{
            font-size: clamp(12px,2.5vh,2.5vh);
            width: max-content;
            font-weight: 600;
            margin: 0 1vh 0 0;
        }

        .submitButton {
            width: 40%;
            border-radius: 20px;
            border: none;
            cursor: pointer;
            font-size: clamp(13px, 2vh,2vh);
            padding: 1vh;
            background-color: #F8D4CB;
        }

        .submitButton:hover {
            width: 40%;
            min-width: 20px;
            border-radius: 20px;
            border: none;
            cursor: pointer;
            background-color: #8f7b74;

        }
    }
}

a.miniButton{
    background-color: rgb(108,72,50);
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius:10px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-radius:10px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #f6eee9;
}
img#logoBarraSuperior {
    width: 15vh;
    height: 5vh;
    padding:0;
    margin-left: 2vh;
}

a.withoutDecoration:link{
    text-decoration:none
}
a.withoutDecoration:visited{
    text-decoration:none
}
a.withoutDecoration:hover{
    text-decoration:none
}
a.withoutDecoration:active{
    text-decoration:none
}

.table-border {
    border: 1px solid #FFFFFF;
    border-radius: 1.5vh;
}

table.adminTable {
    width: 100%;
    min-width: 600px;
    min-height: auto;
    height: 100%;
    border-radius: 1.5vh;
    overflow: hidden;
    border-collapse: collapse;
    border: 1px solid #FFFFFF;
}

.adminTable{
    th, td {
        padding: 1vh 1.5vh 1vh 1.5vh;
        border: none;
        min-height: 30px;
        text-align: center;
        vertical-align: middle;
    }

     tr:nth-child(odd) {
        background-color: #F4F4F4;
        border: none;

    }

    tr:nth-child(even) {
        background-color: #ffffff;
        border: none;
    }

    th, td:first-child {
        color: #3C3C3B;
        font-weight: bold;
        font-size: clamp(12px,1.5vh,15px);
    }
    td{
        height: 4vh;
    }
    th{
        background-color: #ffffff;
    }
}

.bigText{
    font-size: clamp(25px,4.5vh,4.5vh);
    margin: 0;
}

.light {
    color: #3C3C3B;
    font-weight: 300;
    font-size: clamp(11px,2vh,2vh);
    margin: 0.5vh 1vh 3vh 0;
}

img.optionsTable{
    width: 2.5vh;
    margin: 1vh;
}

div.tableNavigator{
    text-align:end;
    margin: 2vh 1vh 1vh 1vh;
}

div.tableOptions{
    display: flex;
    justify-content: space-between;

}
a.addButton{
    margin:10px;
}

#blanc
{
    position:fixed;
    padding:0;
    margin:0;

    top:0;
    left:0;

    width: 100%;
    height: 100%;
    background:rgba(255,255,255,0.5);
    display:none;
}

div#camera{
    display:None;
}

div#waiting{
    display:flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

div.container{
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

div.flexbox {

}

button.refresh {
    background-color: #FFF5F1;
    border: 0px solid black;
    border-radius: 55px;
    height:76px;
    width:78px;
    margin:0px;
    padding:0px;
}

button.refreshMobile{
    background-color: #FFF5F1;
    border: 0px solid black;
    border-radius: 55px;
    height:176px;
    width:178px;
    margin:0px;
    padding:0px;
}

button:hover {
    cursor: pointer;
}

button.refresh:hover, button.refreshMobile:hover {
    background-color:WhiteSmoke;
    border: 0px;
}

.display-search-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FFFFFF;
    border-radius: 1vh;
    padding: 0.7vh 1vh;
}

.display-search-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
}

.display-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    margin: 1.8vh 0 1.8vh 0;
}

/* Estil del pop-up */
.popup {
    display: none; /* Amagat per defecte */
    position: fixed; /* Fixat a la pantalla */
    z-index: 11; /* Sobreposat sobre altres elements */
    left: 0;
    top: 0;
    width: 100%; /* Ample total */
    height: 100%; /* Altura total */
    overflow: auto; /* Si el contingut és massa, permet scroll */
    background-color: rgb(0,0,0); /* Fons negre */
    background-color: rgba(0,0,0,0.4); /* Negre amb opacitat */
}

/* Estil del contingut del pop-up */
.popup-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% des de dalt i centrat horitzontalment */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Ample del contingut */
    border-radius:10px;
}

/* El botó de tancar (x) */
.closeButton2 {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.closeButton2:hover,
.closeButton2:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

img#photoImg {
    width:100%;
}

div.flexDivButtons{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

}

.flexDivButtons button{
    background: #FFF5F1;
    border: solid black 1px;
    border-radius: 150px;
    height: 60px;
    width: 60px;
    margin: 20px 20px;

}

button.buttonMobile {

     height: 160px;
    width: 160px;
}

select#language-select {
    text-transform: uppercase;
    background-color: transparent;
    border: none;
    margin-right: 20px;
}

select#language-select:focus {
    text-transform: none;
}
    a.simpleA {
        text-decoration: none;
    color: black;
    font-size: 15px;
    }
