﻿/*===================================
            Google Fonts 
=====================================*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');


/*===================================
       Colores light / dark
=====================================*/


:root {
  --lf-body-font-size: 1em;
  --lf-body-font-weight: 400;
  --lf-body-line-height: 1.5714em;
  --lf-fuente-principal:'Montserrat', sans-serif, Arial, Helvetica;
  
  --lf-colordest: #F71953;
  --lf-colordest-hover: #E4566F;
  --lf-colordest-active: #BE3049;
  --lf-colordest-txt:#fff;
  --lf-colordest-fill: #F71953;
  --lf-filter-colordest: brightness(0) saturate(100%) invert(39%) sepia(55%) saturate(5848%) hue-rotate(330deg) brightness(91%) contrast(90%);

  --lf-color-principal:#000;
  --lf-color-principal-hover:#000;
  --lf-color-principal-focus:#000;
  
  --lf-color-title:#333333;
  --lf-color-title-a:#333333;
  --lf-color-title-hover:#333333;
  --lf-color-title-focus:#333333;
  
  --lf-fondoweb:#fff;
  --lf-fondo-encabezado:#f2f2f2;
       
  --lf-linea: rgba(0,0,0,0.16);
}

.dark {

  --lf-color-principal:#fff;
  --lf-color-principal-hover:#fff;
  --lf-color-principal-focus:#fff;
  
  --lf-color-title:#ccc;
  --lf-color-title-a:#ccc;
  --lf-color-title-hover:#ccc;
  --lf-color-title-focus:#ccc;
  
  --lf-fondoweb:#2d3237;
  --lf-fondo-encabezado:#171a1d;
       
  --lf-linea: rgba(255,255,255,0.16);
}

/*=========================
        Generales
=========================*/

/*scrollbar
::-webkit-scrollbar {width:6px; height:4px;}
::-webkit-scrollbar-track {background: transparent; border-radius:3px; margin-top:4px; margin-bottom:4px;}
::-webkit-scrollbar-thumb {background-color:rgba(22, 24, 35, 0.06); border-radius:3px;}
::-webkit-scrollbar-thumb:hover {background-color:rgba(22, 24, 35, 0.2);}
* {scrollbar-width: thin; scrollbar-color: rgba(22, 24, 35, 1) transparent;}*/

/*scrollbar
.dark::-webkit-scrollbar {width:6px; height:4px;}
.dark::-webkit-scrollbar-track {background: #31373c; border-radius:3px; margin-top:4px; margin-bottom:4px;}
.dark::-webkit-scrollbar-thumb {background-color:rgba(22, 24, 35, 1); border-radius:3px;}
.dark::-webkit-scrollbar-thumb:hover {background-color:rgba(22, 24, 35, 1);}
.dark * {scrollbar-width: thin; scrollbar-color: rgba(22, 24, 35, 1) #31373c;}*/

svg {max-width: inherit;}

.enlinea, .d-inline-block, .contenidos-enlinea{display:inline-block !important;}
.enbloque, .d-block{display:block !important}

strong, b{font-weight:700;}
.semibold{font-weight:600;}
.medium{font-weight:500;}
.normal{font-weight:400;}
.thin{font-weight:300;}

.mr-s-size{margin-right:.45rem !important}
.ml-s-size{margin-left:.45rem !important}
.mt-s-size{margin-top:.45rem !important}
.mb-s-size{margin-bottom:.45rem !important}
.mtb-s-size{margin:.45rem 0px !important}


a{color:inherit; text-decoration:inherit;}
a:hover{color:inherit; text-decoration:inherit;}

a{color: var(--lf-color-principal);}
a:hover {color: var(--lf-color-principal-hover);}
a:focus {color: var(--lf-color-principal-focus);}

a.underline, .underline {
    border-bottom: 0px solid transparent;
    border-bottom-color: initial;
    display: inline;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

#dimensions {background:#000\9; background-color:rgba(0, 0, 0, 0.8); color: #fff;}

::selection { background:var(--lf-colordest);  color:var(--lf-colordest-txt);}
::-moz-selection { background:var(--lf-colordest); color:var(--lf-colordest-txt);}

.scrolltop{color:var(--lf-colordest-txt); background:var(--lf-colordest); border-radius:4px; padding:6px 12px;}

blockquote {
  color: var(--lf-color-principal);
    background-color: rgba(151,151,192,0.1);
    border-left: 3px solid var(--lf-colordest);
    border-radius:inherit;
}

.sombra {
    -webkit-box-shadow: 0px 2px 4px 2px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 2px 4px 2px rgba(0,0,0,0.1);
    box-shadow: 0px 2px 4px 2px rgba(0,0,0,0.1);
}

.dark .sombra{box-shadow: 0px 2px 4px 2px rgba(255,255,255,0.1);}

/*=========================
          CUSTOM
=========================*/

body {
  min-height:100%;
  height:100%;
}

.svg-colordest{filter:var(--lf-filter-colordest);}

ul li::before, ul li::marker {color:var(--lf-colordest);}

.zona-encabezado{background: var(--lf-fondo-encabezado); padding: 6px; border-radius: 6px;}

.titulo{font-size:1.5em;}
.subtitulo{font-size:1.25em; color:var(--lf-color-principal)}