/******************************
*   Tipografias
******************************/
@import url('all.css');
@import url('typo.css');

:root {
    /* Colores */
    --clr-black: 0, 0, 0; /* #000000 */

    --clr-white: 255, 255, 255; /* #FFFFFF */

    --clr--gray-lightest: 250, 250, 250; /* #FAFAFA */
    --clr--gray-light: 237, 237, 237; /* #EDEDED */

    --clr-green-lightest: 221, 244, 224; /* #DDF4E0 */
    --clr-green-lighter: 192, 239, 199; /* #C0EFC7 */
    --clr-green-light: 160, 233, 172;   /* #A0E9AC */
    --clr-green-bright: 37, 211, 102;   /* #25D366 */
    --clr-green-medium: 28, 181, 63;    /* #1CB53F */
    --clr-green-dark: 13, 46, 21;       /* #0D2E15 */

    --clr-blue-light: 163, 216, 233;    /* #A3D8E9 */
    --clr-blue-medium: 83, 125, 219;    /* #537DDB */
    --clr-blue-dark: 27, 66, 152;       /* #1B4298 */

    --clr-red: 206, 30, 30;       /* #1B4298 */

    --gradient-l: linear-gradient(to bottom, rgb(var(--clr-white)) 60%, rgb(var(--clr-green-lighter)) 100%);
    --gradient-d: linear-gradient(to bottom, rgb(var(--clr-green-light)) 0%, rgb(var(--clr-green-lighter)) 60%, rgb(var(--clr-green-medium)) 100%);

    --gradient-green: linear-gradient(to left, rgb(var(--clr-green-medium)) 0%, rgb(var(--clr-green-bright)) 60%, rgb(var(--clr-green-medium)) 100%);
    --gradient-blue: linear-gradient(to left, rgb(var(--clr-blue-dark)) 0%, rgb(var(--clr-blue-medium)) 60%, rgb(var(--clr-blue-dark)) 100%);

    /* Tipografia */
    --font: 'Montserrat', sans-serif;
    --fw-m: 400;
    --fw-r: 500;
    --fw-b: 700;

    --fs-n: normal;
    --fs-i: italic;

    /* Interlineado */
    --lh-base: 1.4;
    --lh-text: 1.6;
    --lh-heading: 1.2;

    /* Tamaños */
    --size-2: 0.125rem;   /* 2px */
    --size-4: 0.25rem;    /* 4px */
    --size-6: 0.375rem;   /* 6px */
    --size-8: 0.5rem;     /* 8px */
    --size-10: 0.625rem;  /* 10px */
    --size-12: 0.75rem;   /* 12px */

    --size-14: 0.875rem;  /* 14px */
    --size-16: 1rem;      /* 16px */
    --size-18: 1.125rem;  /* 18px */
    --size-20: 1.25rem;   /* 20px */
    --size-24: 1.5rem;    /* 24px */
    --size-28: 1.75rem;   /* 28px */
    --size-32: 2rem;      /* 32px */

    --size-40: 2.5rem;    /* 40px */
    --size-48: 3rem;      /* 48px */
    --size-56: 3.5rem;    /* 56px */
    --size-60: 3.75rem;   /* 60px */
    --size-64: 4rem;      /* 64px */
    --size-72: 4.5rem;    /* 72px */
    --size-80: 5rem;      /* 80px */
    --size-100: 6.25rem;  /* 100px */
}


::selection {
    color: rgb(var(--clr-white));
    background: rgba(var(--clr-green-dark), .6);
}
::-moz-selection {
    color: rgb(var(--clr-white));
    background: rgba(var(--clr-green-dark), .6);
}
::-webkit-selection {
    color: rgb(var(--clr-white));
    background: rgba(var(--clr-green-dark), .6);
}

/******************************
*   Reset General
******************************/
*,
*::before,
*::after { box-sizing: border-box; }
* {
    margin: 0;
    padding: 0;
}
html:focus-within { scroll-behavior: smooth; }
html {
    scroll-behavior: smooth;
    scroll-padding: 70px;
}
body {
    min-height: 100dvh;
    min-height: 100vh;
    font-family: var(--font);
    font-weight: var(--fw-r);
    font-style: var(--fs-n);
    line-height: 1.4;
    font-size: var(--size-16);
    color: rgb(var(--clr-green-dark));
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
body > * { position: relative; }

body::before,
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: -1;
}
body::before { background: var(--gradient-l); }

/*------ Media ------*/
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: 100%;
}
figure {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
figure img { margin: 0 auto; }

/*------ Tipografia ------*/
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}
h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    margin: 0;
}

/*------ Listas ------*/
ul,
ol {
    margin: 0;
    padding: 0;
    padding-inline-start: var(--size-20);
}
li + li { margin-top: var(--size-20); }
ul > li::marker,
ul > li > ul > li::marker { color: rgb(var(--clr-green-medium)); }

/*------ Links ------*/
a, a:link, a:hover, a:visited {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

/******************************
*   Elementos de formulario
******************************/
input,
select,
textarea {
    display: block;
    width: 100%;
    padding: var(--size-12);
    color: rgb(var(--oscuro));
    background: rgb(var(--clr-white));
    border: 1px solid rgb(var(--clr--gray-light));
    border-radius: var(--size-10);
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
/* Botones */
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    background: none;
    border: none;
    cursor: pointer;
}
textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    resize: vertical;
}
/* Checkbox / radio */
input[type="checkbox"],
input[type="radio"] {
    accent-color: currentColor;
}

/* Placeholder */
::placeholder {
    color: inherit;
    opacity: 0.6;
}

/******************************
*   Accesibilidad
******************************/
input:focus,
input:focus-visible,
input:focus-within,
input:target {
    outline: none;
    border: 1px solid rgb(var(--clr-green-medium));
    box-shadow: 0 0 8px 3px rgba(var(--clr-green-lighter), .3);
}


/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: ;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
input::placeholder,
textarea::placeholder {}


p { margin: 0; }
* + p,
p + *,
* + ol,
* + ul,
h2 + div,
h3 + div,
h4 + div,
h5 + div,
h6 + div { margin-top: var(--size-20); }
ol + *,
ul + *,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 { margin-top: var(--size-40); }

/******************************
*   Container
******************************/
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

/* sm */
@media (min-width: 576px) { .container { max-width: 540px; } }

/* md */
@media (min-width: 768px) { .container { max-width: 720px; } }

/* lg */
@media (min-width: 992px) { .container { max-width: 960px; } }

/* xl */
@media (min-width: 1200px) { /* .container { max-width: 1140px; } */ }

/* xxl */
@media (min-width: 1400px) { /* .container { max-width: 1320px; } */ }

/******************************
*   Loader
******************************/
.loader {
    position: fixed;
    min-height: 100dvh;
    min-height: 100vh;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-l);
    z-index: 100;
}
.loader::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-image: url('../img/letter-x.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: .03;
}
.loader section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.loader .logo {
    max-width: 240px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.loader .logo + * { margin-top: var(--size-40); }
.cont__spiner { text-align: center; }
.spiner {
    width: 48px;
    height: 48px;
    border: 5px dotted rgb(var(--clr-green-medium));
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 8s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

/******************************
*   Login
******************************/
.auth__login::before { background: var(--gradient-d); }
.auth__login::after {
    background-image: url('../img/letter-x.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: .1;
}
.auth__login main { min-height: auto; }
.auth__login main section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--size-32);
    padding: var(--size-32) 0;
    min-height: 100dvh;
    min-height: 100vh;
}
.auth__login .head__sect::before { content: unset; }
.auth__login .head__sect {
    height: auto;
    margin-top: initial;
}
.auth__login footer {
    position: relative;
    z-index: 150;
}

/******************************
*   Formularios
******************************/
.auth__login .cont__form {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
}
.cont__campos {
    display: flex;
    flex-direction: column;
    gap: var(--size-28);
}
.cont__campos .c__cta {
    margin: 0;
    flex-direction: column;
}
.campo label {
    display: block;
    font-weight: var(--fw-b);
    margin-bottom: var(--size-4);
}
.campo > div { position: relative; }
.icon__form {
    position: absolute;
    top: 0;
    width: 40px;
    height: calc(100% - 2px);
    color: rgba(var(--clr-green-dark), .5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--size-18);
}
.i__left {
    left: 0;
    pointer-events: none;
}
.icon__clear {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    right: 1px;
    display: none;
    border-top-right-radius: var(--size-10);
    border-bottom-right-radius: var(--size-10);
}

.error__list {
    list-style: none;
    padding-inline-start: 0;
    color: rgb(var(--clr-red));
}

* + .text__form,
.text__form + * { margin-top: var(--size-20); }
.text__form { text-align: center; }

#id_email {
    padding-left: 40px;
    padding-right: 38px;
}
#id_temp_access_code { text-align: center; }

/******************************
*   General
******************************/
main {
    min-height: 100dvh;
    min-height: 100vh;
    position: relative;
}
main > section { padding-bottom: var(--size-32); }
.m__center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100dvh - 70px);
    min-height: calc(100vh - 70px);
    padding-top: var(--size-20);
}
.m__center .head__sect {
    position: fixed;
    margin-top: 0;
    top: 0;
    left: 0;
    right: 0;
}
.m__center .head__sect + * { margin-top: 0; }

/* Header section */
.head__sect + *,
* + .head__sect { margin-top: var(--size-40); }
.head__sect {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 0px;
    height: 70px;
    z-index: 100;
    margin-top: -70px;
    /* padding-bottom: var(--size-20); */
}
.head__sect::before {
    content: '';
    height: calc(100% + var(--size-12));
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    background: linear-gradient(to bottom, rgba(var(--clr-white), 1) 50%, rgba(var(--clr-white), 0) 100%);
    z-index: -1;
}
.head__sect h1 { font-size: var(--size-20); }

/* CTA */
* + .c__cta { margin-top: var(--size-40); }
.c__cta {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: var(--size-20);
}
.cta,
a.cta {
    display: flex;
    gap: var(--size-8);
    align-items: center;
    white-space: nowrap;
    justify-content: center;
    line-height: 1;
    font-weight: var(--fw-b);
    padding: var(--size-16) var(--size-24);
    color: rgb(var(--clr-white));
    border-radius: var(--size-10);
    box-shadow: 0 var(--size-6) var(--size-10) rgba(var(--clr-black), .2);
}
.cta i { font-size: var(--size-24); }
.cta__green {
    background: var(--gradient-green);
    border: 1px solid rgb(var(--clr-green-bright));
}
.cta__blue {
    background: var(--gradient-blue);
    border: 1px solid rgb(var(--clr-blue-light));
}
.cta__simple,
a.cta__simple {
    color: rgb(var(--clr-green-dark));
    text-decoration: underline;
    padding: inherit;
    box-shadow: none;
    font-weight: var(--fw-b);
}

/* Search */
.cont__search + * { margin-top: var(--size-20); }
.cont__search form { display: flex; }
.cont__search form > div {
    width: 100%;
    flex-direction: row;
    gap: initial;
}
.cont__search form > div input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    padding-right: 40px;
}
.cont__search form .campo:nth-child(1) { flex: 1; }
.cont__search form button {
    background: var(--gradient-green);
    border-top-right-radius: var(--size-10);
    border-bottom-right-radius: var(--size-10);
    padding: var(--size-12) var(--size-20);
    color: rgb(var(--clr-white));
    height: 100%;
}

/* Breadcrumb */
.con__bread + * { margin-top: var(--size-28); }
.con__bread nav ul {
    flex-flow: wrap;
    padding-inline-start: 0;
    list-style: none;
}
.con__bread nav ul,
.con__bread nav ul li,
.con__bread nav ul li > * {
    display: flex;
    align-items: baseline;
    gap: var(--size-8);
}
.con__bread nav ul li {
    font-weight: var(--fw-b);
    margin: 0;
}
.con__bread nav ul li .fa-pipe { color: rgb(var(--clr-green-medium)); }

/* Listado */
.cont__search + * { margin-top: var(--size-20); }
.cont__list ul {
    padding-inline-start: 0;
    list-style: none;
}
.cont__list ul li { margin: 0; }
.cont__list ul li + li { border-top: 1px solid rgb(var(--clr--gray-light)); }
.cont__list ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--size-16);
    padding: var(--size-14) 0;
}
.col__info {
    display: flex;
    align-items: center;
    gap: var(--size-16);
}
.col__primary { font-weight: var(--fw-b); }
.col__secundary > * { color: rgba(var(--clr-green-dark), .5); }
.col__end {
    display: flex;
    align-items: center;
    gap: var(--size-32);
    font-size: var(--size-20);
}
.info__icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(var(--clr-green-lightest));
    font-size: var(--size-18);
}
.icon__square { border-radius: var(--size-12); } 
.icon__circ { border-radius: 50%; }

.info__sent .double__green { color: rgb(var(--clr-green-medium)); }
.info__sent .double__gray { opacity: .6; }

/* Card */
.card__midd {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.card {
    background: rgb(var(--clr-white));
    border-radius: var(--size-12);
    padding: var(--size-28);
    box-shadow: 0 0 var(--size-8) rgba(var(--clr-green-dark), .1);
}
.card__detail header .info__icon {
    width: 70px;
    height: 70px;
    font-size: var(--size-32);
}
.card__detail > header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--size-20);
}
.hcp__name { font-weight: var(--fw-b); }
.hcp__info {
    display: flex;
    justify-content: center;
    font-size: var(--size-14);
}
.hcp__info > * {
    display: block;
    padding-top: var(--size-4);
    padding-bottom: var(--size-4);
}
.hcp__info > * + * {
    border-left: 1px solid;
    padding-left: var(--size-8);
    margin-left: var(--size-8);
}
.card__detail section + * { border-top: 1px solid rgb(var(--clr--gray-light)); }
.card__detail > * + * {
    padding-top: var(--size-20);
    margin-top: var(--size-20);
}
.card__detail section h4 {
    color: rgba(var(--clr-green-dark), .3);
    font-weight: var(--fw-b);
}
.card__detail section h4 + *{ margin-top: var(--size-8); }

/* Message */
.text__message + * { margin-top: var(--size-32); }
.text__message {
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.text__message i {
    font-size: var(--size-48);
    color: rgb(var(--clr-green-medium));
}
.mess__top {
    font-size: var(--size-18);
    font-weight: var(--fw-b);
}

/* Perfil */
.perfil .head__sect {
    margin-top: 0;
    position: initial;
    height: auto;
    display: initial;
    text-align: left;
}
.list__detail > * + * { margin-top: var(--size-20); }
.detail__item dd { color: rgba(var(--clr-green-dark), .5); }
.user__info .info__icon { background: rgb(var(--clr-white)); }


/******************************
*   Mobile
******************************/
/* sm */
@media (max-width: 575px) {  }
@media (min-width: 576px) {  }
@media (min-width : 576px) and (max-width : 767px) {  }

/* md */
@media (max-width: 767px) { }
@media (min-width: 768px) { }
@media (min-width : 768px) and (max-width : 991px) {  }

/* lg */
@media (max-width: 991px) { }
@media (min-width: 992px) { }
@media (min-width : 992px) and (max-width : 1199px) {  }

/* xl */
@media (max-width: 1199px) { }
@media (min-width: 1200px) { }
@media (min-width : 1200px) and (max-width : 1399px) {  }

/* xxl */
@media (min-width: 1400px) { }




header ul,
footer ul,
header ol,
footer ol {
    padding-inline-start: 0;
    list-style: none;
}
header li,
footer li,
header li + li,
footer li + li { margin-top: 0; }

/******************************
*   Header
******************************/
.header {
    background: linear-gradient(to bottom, rgba(var(--clr-white), 1) 50%, rgba(var(--clr-white), 0) 100%);
    background: white;
    background: transparent;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 0px;
    z-index: 1000;
}
.header::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--clr-black), .4);
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 3;
    pointer-events: none;
}
.header.menu__active::before {
    pointer-events: all;
    opacity: 1;
}
.header__cont {
    padding: var(--size-10);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: calc(100% - 100px);
}

/* Logo */
.logo + * { margin-top: var(--size-20) }
.logo {
    width: 180px;
    position: relative;
    margin-left: var(--size-12)
}
.logo a {
    display: flex;
    overflow: hidden;
}
.sr__only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* BTN Menu */
.btn__mob {
    width: 50px;
    height: 50px;
    padding: var(--size-10);
    position: relative;
    z-index: 1;
}
.btn__mob > span {
    width: 100%;
    height: 3px;
    border-radius: var(--size-2);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.btn__open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--size-6);
}
.btn__open > span { position: relative; }
.btn__open > span::before {
    content: '';
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: var(--size-2);
    background: rgb(var(--clr-green-medium));
}
.btn__open > span:nth-child(2)::before { width: 60%; }
.btn__open > span:nth-child(3)::before { width: 40%; }
.btn__open.is__open { pointer-events: none; }
.btn__open.is__open > span {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
}
.btn__open.is__open > span:nth-child(2) { transition-delay: .1s; }
.btn__open.is__open > span:nth-child(3) { transition-delay: .2s; }
.btn__close {
    position: absolute;
    top: var(--size-10);
    right: var(--size-10);
    opacity: .2;
}
.btn__close > span {
    position: absolute;
    background: rgb(var(--clr-black));
    width: calc(100% - var(--size-20));
    top: 50%;
    left: 50%;
}
.btn__close > span:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}
.btn__close > span:nth-child(2) {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    -o-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.btn__back {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(var(--clr-green-medium)) !important;
    font-size: var(--size-24);
}

/* Menu */
.cont__menu {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 500px;
    width: calc(100% - 80px);
    height: 100dvh;
    height: 100vh;
    background: var(--gradient-l);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    will-change: transform;
    z-index: 5;
}
.cont__menu.menu__open {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
}

.cont__logo {
    padding: var(--size-32) var(--size-20);
}
.cont__nav {
    height: calc(100% - 130px);
    overflow: auto;
    padding: var(--size-32) var(--size-20);
}
.cont__nav nav {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cont__menu nav ul li a,
.cont__menu nav ul li button {
    display: block;
    width: 100%;
    text-align: left;
    padding: var(--size-12);
}

.log__out { border-top: 1px solid rgba(var(--clr-black), .1); }


/* sm */
@media (max-width: 575px) {  }
@media (min-width: 576px) {  }
@media (min-width : 576px) and (max-width : 767px) {  }

/* md */
@media (max-width: 767px) {

}
@media (min-width: 768px) {

}
@media (min-width : 768px) and (max-width : 991px) {  }

/* lg */
@media (max-width: 991px) { }
@media (min-width: 992px) { }
@media (min-width : 992px) and (max-width : 1199px) {  }

/* xl */
@media (max-width: 1199px) { }
@media (min-width: 1200px) { }
@media (min-width : 1200px) and (max-width : 1399px) {  }

/* xxl */
@media (min-width: 1400px) { }


/******************************
*   Footer
******************************/
.footer {
    text-align: center;
    font-size: var(--size-12);
    padding: var(--size-20) 0;
}
/* sm */
@media (max-width: 575px) {  }
@media (min-width: 576px) {  }
@media (min-width : 576px) and (max-width : 767px) {  }

/* md */
@media (max-width: 767px) { }
@media (min-width: 768px) {
.footer { font-size: var(--size-14); }
}
@media (min-width : 768px) and (max-width : 991px) {  }

/* lg */
@media (max-width: 991px) { }
@media (min-width: 992px) { }
@media (min-width : 992px) and (max-width : 1199px) {  }

/* xl */
@media (max-width: 1199px) { }
@media (min-width: 1200px) { }
@media (min-width : 1200px) and (max-width : 1399px) {  }

/* xxl */
@media (min-width: 1400px) { }
