: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;
    --ultra-light-gray-color: #fbfbfb;


    --web-work-area: 1200px;
    --web-form-area: 800px;
    --mobile-work-area: 100%;

}

html, body {
    /* overscroll-behavior-y: contain; */
    --webkit-user-select: none;
    --webkit-tap-highlight-color: transparent;
    --webkit-touch-callout: none;
}

body {
    width: 100%;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Montserrat', sans-serif;
    margin: 0px;
    /* background-color: var(--black-color);
    color: var(--ultra-light-gray-color); */
    background-color: var(--white-color);
    color: var(--darker-gray-color);

    min-height: 100vh;

    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../assets/images/5647410.jpg?v112); */
}

::-webkit-scrollbar {
    width: 5px;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-VariableFont_wght.ttf')
    format('opentype')
    ;
}


/* @font-face {
	font-family: 'Poppins';
	src: 
		url('fonts/Poppins-ExtraLight.ttf') 
        format('opentype')
        ;
}

@font-face {
	font-family: 'Poppins';
	src: 
		url('fonts/Poppins-Light.ttf') 
        format('opentype')
        ;
    font-weight: 200;
}

@font-face {
	font-family: 'Poppins';
	src: 
		url('fonts/Poppins-Regular.ttf') 
        format('opentype')
        ;
    font-weight: 400;
}

@font-face {
	font-family: 'Poppins';
	src: 
		url('fonts/Poppins-Medium.ttf') 
        format('opentype')
        ;
    font-weight: 600;
}

@font-face {
	font-family: 'Poppins';
	src: 
		url('fonts/Poppins-SemiBold.ttf') 
        format('opentype')
        ;
    font-weight: 800;
} */

/* 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);
    font-weight: 200;
}

.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 */


/* FORM ELEMENTS */
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: 'Oxygen', 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:-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: -60px;
    left: -90px;
    color: var(--gray-color);
    font-size: 12px;
    font-weight: 200;
    letter-spacing: 1px;
}

textarea:focus ~ .placeholder
,textarea:valid ~ .placeholder {
    top: -115px;
    /* left: 0px; */
}

/* <---PLACEHOLDER DINAMICO */

/* END FORM ELEMENTS */

/* 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 */




@media only screen and (max-width:812px) {

    .sf-fix-message {
        width: var(--mobile-work-area);
        margin-top: -200px;
    }

    .sf-active-notif {
        margin: 10px auto 0px auto;
    }

    .sf-f-msg {
        font-size: 14px;
    }

}
