/*
* === COMMON STYLES ===
*/

:root {
    --bars-size: 5rem;
    --module-list-width: 356px;
}

@font-face {
    font-family: Calibri;
    font-style: normal;
    font-weight: normal;
    /*src: local('Neo Sans'), url('../fonts/neo-sans-regular.TTF');*/
}

@font-face {
    font-family: Calibri;
    font-style: normal;
    font-weight: bold;
    /*src: local('Neo Sans'), url('../fonts/neo-sans-bold.TTF');*/
}

@font-face {
    font-family: Calibri;
    font-style: normal;
    font-weight: 800;
    /*src: local('Neo Sans'), url('../fonts/neo-sans-medium.TTF');*/
}

@font-face {
    font-family: Calibri;
    font-style: normal;
    font-weight: 100;
    /*src: local('Neo Sans'), url('../fonts/neo-sans-light.TTF');*/
}

* {
    margin: 0;
    font-family: Calibri, sans-serif;
    box-sizing: border-box;
}

body {
    color: #4a4a4a;
}

.background-container {
    width: 100%;
    position: fixed;
    height: 100%;
}

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

.hidden{
    display: none;
}


/*
* === COMMON ELEMENTS ===
*/

.bt-primary-colored {
    border-radius: 100px;
    background-color: #FFC611;
    border-style: none;
    color: white;
    font-size: 5vw;
    height: 12vw
}


button {
    cursor: pointer;
    display: initial;
    width: fit-content;
    padding: 8px 16px;
    font-size: 12px;
    line-height: initial;
}


select:disabled, input:disabled{
    background-color: unset !important;
    background-size: 0 !important;;
}

/*
* === HEADER, NAVIGATION & FOOTER ===
*/

/* Header */

.header {
    height: var(--bars-size);
    width: 100%;
    box-shadow: 0 2px 7px 0 rgba(92, 98, 98, 0.24), 0 2px 7px 0 rgba(0, 0, 0, 0.24);
    background-color: #ffffff;
    display: flex;
    color: #4a4a4a;
    position: fixed;
    z-index: 10;
}

#header-logo {
    height: 100%;
    width: auto;
    cursor: pointer;
    padding: 1.75rem;
    box-sizing: content-box;
}

#header-left-container {
    height: 30%;
    width: fit-content;
}

#header-right-container {
    margin-left: auto;
    right: 0;
    display: inline-flex;
    align-items: center;
}

#header-right-container > * {
    padding: 1rem;
}

#header-hour-info {
    font-size: 2.5rem;
}

.header-icon-div {
    display: inline-flex;
    align-items: center;
}

.header-profile-img {
    align-self: flex-end;
}

/* Navigation */

#navigation-column {
    width: var(--bars-size);
    height: calc(100vh - var(--bars-size));
    position: fixed;
    z-index: 7;
    background-color: #FFFFFF;
    margin-top: 5rem;
    border-right: solid #cccccc 1px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.nav-right-items {
    position: absolute;
    right: 1rem;
}

/* Module list */

#module-list-container {
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.module-list-button {
    position: fixed;
    margin-top: 2.5rem;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 8;
    width: fit-content;
    width: -moz-fit-content;
    border-radius: 3px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    background-color: #FFFFFF;
    cursor: pointer;
}

#module-list-button-open {
    left: calc(var(--bars-size) - 0.5rem);
}

#module-list-button-close {
    left: calc(var(--module-list-width) + var(--bars-size) - 0.5rem);
    display: none;
}

#module-list-div {
    display: none;
    position: fixed;
    margin-top: var(--bars-size);
    left: 5rem;
    height: calc(100% - var(--bars-size));
    right: 0;
    z-index: 6;
    width: var(--module-list-width);
    box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.3);
    background-color: #FFFFFF;
}

#module-list-back-arrow{
    margin-right:1rem;
    cursor: pointer;
}

#module-list-title-container{
    background-color: #C7C8CA;
    display: inline-flex;
    padding: 1rem;
    width: 100%;
}

#module-list-title {
    background-color: #C7C8CA;
    font-size: 1.3rem;
    line-height: calc(64px - 2rem);
    color: #4a4a4a;
}

#module-list-footer {
    background-color: #a14b46;
    width: 100%;
    line-height: calc(64px - 2rem);
    color: #C7C8CA;
    position: absolute;
    bottom: 0;
    box-shadow: 0 -2px 7px 0 rgba(0, 0, 0, 0.2);
    display: block;
    padding: 0 1rem;
    text-align: right;
}

#module-list-footer > * {
    margin: 1rem 0.5rem;
}

.module-list-content-section-alert {
    padding: 0 1rem;
    text-align: left;
    height: 40px;
    font-size: medium;
    line-height: 40px;
    background-color: #FBBB21;
    cursor: pointer;
}

.module-list-alert-container {
    display: none;
    margin-bottom: 1rem;
}

.module-list-alert-content {
    padding: 0.5rem;
}

.module-list-content-section-title {
    padding: 0 1rem;
    text-align: left;
    height: 40px;
    font-size: medium;
    line-height: 40px;
    background-color: #f0f0f0;
    cursor: pointer;
    display: inline-flex;
    width: 100%;
    margin-bottom: .5rem;
}

.module-list-content-section-title-text {
    width: 100%;
}

.module-list-content-section-icon {
    right: 2rem;
}


#module-list-content {
    padding: 1rem;
    max-height: calc(100% - 7rem);
    overflow-x: auto;
}

/*--- Cards inputs ---*/
.card-container {
    border-radius: 5px;
}

.card-image-title {
    padding: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.card-button {
    min-width: 96px;
    height: 50px;
    border-radius: 25px;
    font-size: 14px;
}

/*.wrapper {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-gap: 10px;
  grid-auto-flow: column;
  grid-auto-columns: auto;
}*/

/* Footer */

footer {
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 0;
}

footer img {
    height: 4rem;
}

/*
* === MAPS ELEMENTS ===
*/

.switch input {
    display: none;
}


.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    padding: 7px 0px 0px 10px;
    color: #111;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 89px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #8CE196;
    padding-left: 37px;
}

input:focus + .slider {
    box-shadow: 0 0 1px #e95b53;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    left: -20px;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/*NEW STYLE MENÚ*/

.box-widget{
    background-color: #fffdfd; 
    margin-right: 1vw;
    margin-left: 1vw; 
    max-height: 25vh; 
    color: black; /*#c43331; */
    font-family: 'Calibri', sans-serif;
    font-size: 2.5vh;
    box-shadow: 0px 2px 2px grey; 
    border-radius: 1vh;
    background: rgba(255, 255, 255, 0.5);
}


.box-widget-progress{
    background-color: #fffdfd; 
    /*margin-right: 1vw;*/
    /*margin-left: 1vw;*/
    margin-bottom: 1.5vh;
    margin-top: 0.5vh;
    min-height: 25vh;
    max-height: 25vh; 
    color: black; /*#c43331; */
    font-family: 'Calibri', sans-serif;
    text-align: center;
    box-shadow: 0px 2px 2px grey; 
    border-radius: 1vh;
}

.box-secundary-widget-progress{
    background-color: #fffdfd; 
    /*margin-right: 1vw;
    margin-left: 1vw;*/
    padding-left: 1.5vh;
    padding-right: 1vh;
    margin-bottom: 1.5vh;
    margin-top: 1.5vh;
    min-height: 14vh;
    max-height: 15vh; 
    color: black; /*#c43331; */
    font-family: 'Calibri', sans-serif;
    text-align: center;
    box-shadow: 0px 2px 2px grey; 
    border-radius: 1vh;
}

.v-line{
 border-left:  solid #000;
 height:60%;
 left: 50%;
 position: absolute;
}


/*--- Main Content ---*/
#main-content {
    margin-left: auto;
    padding: 1rem;
    max-width: calc(100% - var(--module-list-width) - var(--bars-size));
}

.sign-container {
    padding: 1rem;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
}

.sign-button-container {
    text-align: center;
}

.sign-card {
    min-width: 18rem;
}

.registration-list {
    margin-top: 1rem;
}

.registration-card {
    margin: 0.5rem;
    width: 100%;
    max-width: 18rem;
}

.registration-list-card {
    width: 100%;
    border-bottom: 1px solid #ccc !important;
    cursor: pointer;
    padding: 1rem;
}

.registration-list-card-icons {
    float: right;
    cursor: pointer;
}

.registration-list-card-icons > .btn {
    margin: 0;
    padding: 0.2rem;
}

.practical-training-btn {
    display: flex !important;
    align-items: flex-end;
    cursor: pointer;
}

.upload-file-block {
    align-items: baseline;
}

#main-patients, #main-doctors {
    margin-top: var(--bars-size);
    margin-bottom: 2rem;
}

.registration-list-row {
    display: inline-flex;
    font-size: 0.8rem;
    width: 100%;
    align-items: center;
}

.registration-list-right-elem {
    margin-left: auto;
}

.registration-list-title-elem{
    font-size: 1.2rem;
}

.registration-list-light-color{
    color: #999999;
}

.registration-buttons-div {
    text-align: center;
    width: 100%;
}

.myDialogClass{
    width: 90%;
    font-size: 8px;
}