:root {
    --black-color: #000;
    --white-color: #fff;
    --dark-gray-color: #252525;
    --darker-gray-color: #111111;
    --gray-color: #747474;
    --light-gray-color: #c0c0c0;
    --lighter-gray-color: #e9e9e9;

    --green-color: #ffd482;
    --light-green-color: #ffde9d;
    --dark-green-color: #fec674;
    --lighter-green-color: #fff3e2;
    --superlight-green-color: #ffe9bf;

    --white-50-percent: rgba(255,255,255, 0.5);




    --web-work-area: 1050px;
    --mobile-work-area: 100%;

    --pink-color: #EC3AAA;
    --blue-color: #1167b1;

    /* COLORES PRINCIPALES */
    --main-color: #1500ff;
    --main-color-50-percent: rgba(121,84,246, 0.5);

    --second-color: #0fd59e;
    --second-color-50-percent: rgba(15,213,158, 0.5); 

    --third-color: #f67f52;
    --third-color-50-percent: rgba(246,127,82, 0.5);

    --fourth-color: #f0783c;
    --fourth-color-50-percent: rgba(240,120,60, 0.5);

    --fifth-color: #ee589f;
    --fifth-color-50-percent: rgba(238,88,159, 0.5);



    /* COLORES DE FONDO ALEATORIOS */

}

@font-face {
	font-family: 'Urbanist';
	src: 
		url('fonts/Urbanist-Light.ttf') 
        format('opentype')
        ;
}

@font-face {
	font-family: 'Urbanist';
	src: 
		url('fonts/Urbanist-Regular.ttf') 
        format('opentype')
        ;
    font-weight: 400;
}

@font-face {
	font-family: 'Urbanist';
	src: 
		url('fonts/Urbanist-Bold.ttf') 
        format('opentype')
        ;
    font-weight: 800;
}


html, body {
    /* overscroll-behavior-y: contain; */
    --webkit-user-select: none;
    --webkit-tap-highlight-color: transparent;
    --webkit-touch-callout: none;
}

body {
    width: 100%;
    font-family: 'Urbanist', sans-serif;
    margin: 0px;
    background-color: var(--superlight-green-color);
    color: var(--darker-gray-color);
    /* SNOW */
    /* background: rgb(237,237,237); */
    /* background: linear-gradient(90deg, rgba(237,237,237,1) 0%, rgba(255,255,255,1) 100%); */
    /* background: radial-gradient(circle, rgba(237,237,237,0) 0%, rgba(255,9,9,0.3) 100%); */
    min-height: 100vh;

    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../assets/images/cameras.jpg?v112); */
    /* opacity: 0.5; */
}

::-webkit-scrollbar {
    width: 5px;
}

canvas {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* NOTIFICACIONES FIJAS */

.sf-fix-message {
	width: var(--web-work-area);
	min-height: 65px;
	color: var(--black-color);
	background: var(--white-color);
	/* right: -500px; */
	border-radius: 10px 10px 10px 10px;
    text-align: justify;
    position: fixed;
    z-index: 10;
    margin-top: -350px;
    transition: all 300ms linear;
    display: grid;
    grid-template-columns: 15% 85%;
    box-shadow: 0.5px 0.5px 2px var(--darker-gray-color);
}

.sf-active-notif {
	/* right: 0px; */
    /* margin-top: 10px; */
    margin: 10px 25% 0px 25%;
}

.sf-f-icon {
	display: inline-block;
	font-size: 25px;
	color: var(--white);
	/* padding: 50% 30%; */
	border-radius: 10px 0px 0px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-f-msg { 
	display: inline-block;
	border-left: solid 1px var(--white);
    padding: 10px;
    margin: auto 10px;
}

.sf-f-msg div {
	display: inline-block;
}

.sf-alert {
    background: rgba(226, 252, 83, 0.99);
    color: var(--white-color);
}

.sf-info {
    background: rgba(83, 183, 250, 0.99);
    color: var(--white-color);
}

.sf-success {
    background: rgba(58, 238, 42, 0.99);
    color: var(--white-color);
}

.sf-error {
    background: rgba(209, 24, 0, 0.99);
    color: var(--white-color);
}

/* <--NOTIFICACIONES FIJAS */

/* LOADING */
.sf-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

.sf-modal-content {
    width: 100%;
    text-align: center;
    height: 100%;
    margin-top: 49vh;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ripple div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}
@keyframes lds-ripple {
    0% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 72px;
      height: 72px;
      opacity: 0;
    }
}
  
/* <-- LOADING */

input[type=text], input[type="password"], 
input[type="date"], input[type="email"],
input[type="number"], input[type="tel"],
input[type="datetime-local"], input[type="time"],
select, textarea {
    font-size: 14px;
    font-weight: lighter;
    border: solid 1px var(--lighter-gray-color);
    /* background: transparent; */
    padding: 10px 10px;
    width: 90%; 
    color: var(--dark-gray-color);
    font-family: 'Urbanist', sans-serif;  
    text-align: center;
    outline: none;
    border-radius: 5px;
    box-shadow: 1px 1px 1px rgb(0 0 0 / 3%);
}

select {
    width: 95%;
}

input[type=text]:focus, input[type="password"]:focus, 
input[type="date"]:focus, input[type="email"]:focus,
input[type="number"]:focus, input[type="tel"]:focus,
input[type="datetime-local"]:focus,  input[type="time"]:focus,
textarea:focus {
    outline: none;
}

input[type=text]:disabled, input[type="password"]:disabled, 
input[type="date"]:disabled, input[type="email"]:disabled,
input[type="number"]:disabled, input[type="tel"]:disabled,
input[type="datetime-local"]:disabled,  input[type="time"]:disabled,
textarea:disabled {
    font-style: italic;
    /* color: var(--light-gray-color); */
}

input[type="radio"]{
    display:none;  
}

input[type="radio"] + label.fa {
    color: var(--ligther-gray-color);
    font-size: 16px;
    cursor: pointer;
    content:"\f111";
    padding: 0px 15px 0px 0px;
}

input[type="radio"]:checked +label.fa {
    color: var(--dark-gray-color);
}
 
 input[type="radio"] + label.fa:before {
    display:inline-block;
    content: "\f111";
    cursor:pointer;
}
  
input[type="radio"]:checked +label.fa:before {
    content:"\f111";
    position: relative;
    left: 5px;
}

input:-webkit-autofill, input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px var(--white-color) inset !important;
    background-color: var(--white-color) !important;
    background-clip: content-box !important;
}

/* PLACEHOLDER DINAMICO */
.placeholder {
    position: relative;
    top: -30px;
    left: 20px;
    padding: 10px 0;
    font-size: 14px;
    pointer-events: none;
    transition: .5s;
    color: var(--light-gray-color);
}

input:focus ~ .placeholder
,input:valid ~ .placeholder 
,textarea:focus ~ .placeholder
,textarea:valid ~ .placeholder 
{
    top: -53px;
    left: 20px;
    color: var(--gray-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

textarea:focus ~ .placeholder
,textarea:valid ~ .placeholder {
    top: -115px;
    /* left: 0px; */
}

/* <---PLACEHOLDER DINAMICO */

.sf-button{
    background: var(--green-color);
    /* border: solid 1px var(--light-gray-color); */
    padding: 15px 25px;
    border-radius: 5px;
    margin: 0px 10px;
    width: 110px;
    color: var(--dark-color);
    cursor: pointer;
    font-size: 14px; 
    display: inline-block;
    text-align: center;
}

.sf-button:hover {
    background-color: transparent;
    color: var(--green-color);
    border: solid 1px var(--dark-green-color);
}

.sf-button.inactive {
    display: none;
}

.sf-container {
    width: 100%;    
}


.sf-header-container {
    width: 100%;
    background-color: var(--white-color);
    position: fixed;
    top: 0;
    border-bottom: solid 1px var(--light-green-color);
}

.sf-main-container {
    margin: 90px auto 30px auto;
    width: var(--web-work-area);    
}

.sf-user-menu-container {
    position: fixed;
    width: 60%;
    height: 100%;
    background-color: var(--white-color);
    padding: 0px 0px 0px 0px;
    z-index: 1;
    transition: all 300ms linear;
    top: 90px;
    box-shadow: 2px 0px 4px rgb(0 0 0 / 80%);
    right: -1500px;
}

.sf-user-menu-container.active {
    right: 0;
}

.sf-user-menu-container div ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sf-user-menu-container ul li {
    display: block;
    padding: 0px 0px 5px 0px;
}

.sf-user-menu {
    padding: 0px 30px 0px 30px;
}

.sf-data-submenu {
    font-size: 20px;
    font-weight: 800;
}

.sf-data-submenu-plan {
    font-size: 16px;
    font-weight: 800;
}

.sf-user-submenu {
    cursor: pointer;
    display: grid;
    grid-template-columns: 30px auto;
    padding: 3px 10px 3px 10px;
    border-bottom: solid 1px var(--lighter-gray-color);
    font-weight: 100;
}

.sf-user-submenu:hover {
    font-weight: 800;
    color: var(--black-color)
}

.sf-menu-version {
    font-size: 12px;
    /* text-align: center; */
    color: var(--light-gray-color);
    padding: 15px 0px 0px 10px;
}


.sf-menu {
    width: 100%;
    height: 90px;

}

.sf-icons-menu {
    display: grid;
    /* grid-template-columns: 85% auto; */
    grid-template-columns: 80px auto 80px;
    margin: auto auto;
    width: 100%;
    width: 95%;
    padding: 10px 0px 10px 0px;
}


.logo-soy-foto {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center left;
    height: 75px;
    cursor: pointer;
}

.logo-soy-foto{
    background-image: url("../assets/images/logo_h_med.png");
}

.menu-icon {
    color: var(--green-color);
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    padding: 20px 0px 0px 0px;
}

.menu-c-title {
    display: flex;
    align-items: center;
    justify-content: center;
}


.sf-form-container {
    width: var(--web-work-area);
    padding: 20px 0px 20px 0px;
}

.sf-row {
    width: 100%;
    padding: 5px 0px 5px 0px;
}
.sf-cell {
    /* width: 100%; */
    margin: 0px 10px 0px 10px;
}

.sf-title {
    font-size: 25px;
}

.sf-row-title {
    font-size: 12px;
    text-align: justify;
    padding: 10px 0px 0px 12px;
}

.sf-link-small {
    cursor: pointer;
    font-size: 12px;
}

.sf-link-small:hover {
    font-weight: 800;
    color: var(--black-color);
}

.showPassword {
    display: inline;
    position: absolute;
    margin: 10px 0px 0px -30px;
}


.main-data-container {
    margin: 0px;
}

.main-cards-container {
    /* display: flex;
    flex-wrap: wrap; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.card-data {
    background: var(--white-color);
    border-radius: 5px;
    display: grid;
    grid-template-columns: 35% 65%;
    column-gap: 10px;
    margin: 10px 5px;
    flex: 0 0 auto;
    /* width: 30%; */
}

.card-icon {
    background: var(--blue-color);
    color: var(--white-color);
    font-size: 30px;
    border-radius: 5px 0px 0px 5px;
    padding: 25px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-text {
    color: var(--blue-color);    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.card-text-title {
    font-size: 30px;
    font-weight: 800;
}
.card-text-subtitle {
    font-size: 12px;
}

.btn-show-detail {
    cursor: pointer;
}

.users-list-table {
    display: grid;
    /* grid-template-columns: 5% 20% 20% 15% 20% 10% 10%; */
    grid-template-columns: 20% 25% 25% 15% 15% ;
    margin: 20px auto 0px auto;
    border: solid 1px var(--dark-green-color);
    border-radius: 5px;
    padding: 10px 10px;
}

.users-list-title {
    font-weight: 800;
    /* text-align: center; */
    font-size: 14px;
}

.users-list-data {
    text-align: justify;
    font-size: 14px;
}



/* GRIDS */
.grid-2-50-50 {
    display: grid;
    grid-template-columns: 50% 50%;
}

.grid-2-70-30 {
    display: grid;
    grid-template-columns: 70% 30%;
    padding: 10px 10px 30px 10px;
}

.grid-3-50-25-25 {
    display: grid;
    grid-template-columns: 50% 25% 25%;
    padding: 10px 10px 30px 10px;
}

.grid-3-30-40-30 {
    display: grid;
    grid-template-columns: 30% 40% 30%;
    /* padding: 10px 10px 30px 10px; */
}

.grid-2-40-60 {
    display: grid;
    grid-template-columns: 40% 60%;
}

.f-center {
    display: flex;
    justify-content: center;
    align-items: center;
}


.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.justify {
    text-align: justify;
}

.normal {
    font-weight: 100;
}

.bold {
    font-weight: 400;
}

.bolder {
    font-weight: 800;
}




@media only screen and (max-width:812px) {

    input[type=text], input[type="password"], input[type="date"], input[type="email"], 
    input[type="number"], input[type="tel"], input[type="datetime-local"], 
    input[type="time"], select, textarea {
        max-width: 85%;
        font-size: 13px;
    }

    textarea {
        max-width: 100%;
    }

    .sf-cell {
        margin: 0px 5px 0px 5px;
        font-size: 14px;
    }

    .sf-main-container {
        width: var(--mobile-work-area);
    }

    .sf-menu {
        height: 65px;
    }

    .sf-icons-menu {
        grid-template-columns: 80px auto 80px;
    }

    .logo-soy-foto {
        height: 45px;
    }

    .menu-icon {
        padding: 10px 10px 0px 0px;
        text-align: right;
    }

    

    .sf-main-container {
        margin: 65px auto 30px auto;
    }

    
    .sf-form-container {
        width: var(--mobile-work-area);
        padding: 60px 0px 20px 0px;
    }

    .sf-fix-message {
        width: 95%;
        margin-top: -300px;
    }

    .sf-active-notif {
        margin: 10px 2% 0px 2%;
    }

    .sf-button:hover {
        background-color: transparent;
        border: solid 1px var(--dark-green-color);
        color: var(--darker-gray-color);
    }

    .sf-title {
        font-size: 20px;
    }


}
