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

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

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: #848C8B;
    border-style: none;
    color: white;
    font-family: Calibri;
    font-size: 1rem
}

.bt-primary-white {
    border-radius: 100px;
    background-color: white;
    border: solid 1px #b8b8b8;
    color: #9b9b9b;
}

.bt-secondary-colored {
    border-radius: 10px;
    border: solid 1px #b8b8b8;
    color: #b8b8b8;
    background-color: transparent;
    font-family: Calibri;
    font-size: 1rem
}

.bt-primary-line {
    color: #b8b8b8;
    border: none;
    background: none;
    text-decoration: underline;
}

.bt-secondary-line {
    color: #9B9B9B;
    border: none;
    background: none;
    text-decoration: underline;
}

.bt-alert-line {
    color: #FB6A21;
    border: none;
    background: none;
    text-decoration: underline;
}

.bt-full-width{
    width: 100%;
}

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

.btn-container{
    display: initial;
}

.search-box-container{
    border-radius: 100px;
    background-color: white;
    border: solid 1px #b8b8b8;
    color: #9b9b9b;
    margin: 0 0.5rem;
}

.search-box-text{
    background: no-repeat;
    padding: 0.3rem 1rem;
    border: none;
}

.search-box-icon{
    cursor: pointer;
    padding: 0 1rem;
}

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: #BDBFBF;
    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: #F2F2F2;
    margin-top: 5rem;
    border-right: solid #cccccc 1px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
/*--- Navbar ---*/
.nav-right-items {
    position: absolute;
    right: 1rem;

}

/*--- 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;
}

/* 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;
}

/*lista de pacientes*/
#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;
    /*width: 20vw*/
}

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

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

#module-list-title {
    background-color: #BDBFBF;
    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: #b8b8b8;
    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;
}

/* 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 #e24f47;
}

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%;
}


.custom-select {
    height: auto !important;
    line-height: 1.3 !important;
}

.no-navbar{
    margin-left: 10% !important;
    margin-right: 10% !important;
    max-width: calc(100% - var(--bars-size)) !important;
}

@media (max-width: 1000px) {
    .no-navbar{
        margin-left: calc(var(--bars-size)) !important;
        max-width: calc(100% - var(--bars-size)) !important;
    }

    .no-title{
        display: none;
    }
}


.bold{
    border-top: 2px solid rgba(0,0,0,0.1);
}

/*--- 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%;
}


/*Estilos ultimos comentarios carrousel*/
.card-carrousel{
    /*width: 300px;*/
    display:flex;
    flex-direction:row;
    margin-right: -10px;
    margin-left:-10px;
    padding-right: 10px;
}

.card-carrousel .card-bodyV2{
    flex:1 1 auto;
    padding:1rem;
    background-color: blue;
    margin-right: 5px;
    margin-left: 5px;
}

.cardV2{
    /*position:relative;*/
    /*display:flex;*/
    direction:column;
    min-width:0;
    width: 111.5px;
    word-wrap:break-word;
    background-color:#fff;
    /*background-clip:border-box;*/
    /*border:0px solid rgba(0,0,0,.12);*/
    border-radius:.125rem;
    /*box-shadow: 1px 2px #888888;*/
    margin-left: 10px;
    margin-right: 20px;
    margin-bottom: 0px;
    margin-top: 0px;
 }

.rotate-90{
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
 .rotate90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}