@import "./toast/toast.css";

@font-face {
    font-family: poppinsRegular;
    src: url("./fonts/Poppins-Regular.ttf");
}

@font-face {
    font-family: poppinsBold;
    src: url("./fonts/Poppins-Bold.ttf");
}

:root {
    --font-family: poppinsRegular, Verdana, sans-serif;
    --font-family-bold: poppinsBold, Verdana, Montserrat, Roboto, Lato, sans-serif;
    /* 50 shades of gray */
    --table_black: #323C47;
    --table_gray: #707683;
    --gray: #90A0B7;
    --text_help_gray: #818E9B;
    --text_line: #D3D8DD;
    --divider: #EBEFF2;
    --light_gray: #CCC;
    --super_light_gray: #F5F6F8;
    --white: #FFF;
    /* Other colors */
    --dark_blue: #334D6E;
    --light_blue: #109CF1;
    --green: #22A285;
}

/*EX-CHOTA*/

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

h1,
h2,
h3,
h5,
h6 {
	font-family: poppinsBold;
    color: var(--dark_blue);
	font-size: 18px;
    margin-top: 0;
	margin-bottom: 15px;
}
h4 { 
	margin-bottom: 0;
	color: var(--dark_blue); 
}

a {
	color: var(--light_blue);
    text-decoration: none;
}

a:hover:not(.button) {
    opacity: 0.75;
}

p {
	color: var(--text_help_gray);
    margin-top: 0;
}

table {
    width: 100%;
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left;
}

td,
th {
    vertical-align: middle;
    padding: 1.2rem 0.4rem;
}

img {
    max-width: 100%;
}

fieldset {
    padding: 0.5rem 2rem;
}

legend {
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 0.1rem;
}

input:not([type=checkbox]):not([type=radio]):not([type=color]):not([type=button]),
textarea {
    display: block;
    padding: 0.8rem 1rem;
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--text_line);
    font-size: 13px;
    font-family: inherit;
    line-height: 19px;
    letter-spacing: 0.01em;
    padding-left: 0;
}

textarea {
    border-radius: 4px;
    border: 1px solid var(--text_line);
    padding-left: 1rem;
    text-transform: uppercase;
}

input:not([type=checkbox]):not([type=radio]):not([type=color]):not([type=button]):focus {
    border-color: var(--text_line);
    -webkit-box-shadow: 0 0 1px var(--white);
    box-shadow: 0 0 1px var(--white);
    outline: none;
}

input:not([type=checkbox]):not([type=radio]):not([type=color]):not([type=button]):focus,
select:focus,
textarea:focus,
textarea[type=text]:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--black);
}

input:not([type="checkbox"]):not([type="radio"]):not([type="color"]):not([type="button"]):not(:disabled):hover,
select:hover,
textarea:hover,
textarea[type="text"]:hover {
    border-color: var(--table_gray);
}

select {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--light_gray);
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit;
    -webkit-appearance: none;
    background: #f3f3f6 no-repeat 100%;
    background-size: 1ex;
    background-origin: content-box;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' fill='%23555'><polygon points='0,0 60,0 30,40'/></svg>");
}

[type="checkbox"],
[type="radio"] {
    width: 1.6rem;
    height: 1.6rem;
}


/* BUTTONS */

[type="button"],
button {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    border: 1px solid transparent;
    font-family: inherit;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

[type="button"]:hover,
button:hover {
    opacity: 0.8;
}

[type="button"]:active,
button:active {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
}

input:disabled,
button:disabled,
input:disabled:hover,
button:disabled:hover {
    opacity: 0.4;
    cursor: not-allowed;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder,
::placeholder {
    color: #bdbfc4;
}


/* Position & alignment */

.flex {
    display: flex;
}

.flex-wrap {
    display: flex;
    flex-flow: wrap;
}

.column {
    flex-direction: column;
}

.fixed {
    position: fixed;
}

.centered-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hidden {
    display: none !important;
}

/*END EX-CHOTA*/

.row {
    min-height: 100vh;
    margin: 0;
}

.wrapper {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 3;
}

body,
ul,
li,
figure,
figcaption,
p {
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: normal;
}

main {
    background: var(--super_light_gray);
    margin: 0;
    margin-left: 256px;
    width: calc(100vw - 256px);
    max-width: none;
    flex: auto;
}

hr {
    width: 100%;
    background-color: var(--divider);
    height: 0.5px;
    margin: 0;
    border: none;
}

div {
    display: block;
    margin: 0 auto;
}

.navbar {
    background: white;
    box-shadow: 6px 0px 18px rgba(0, 0, 0, 0.06);
    min-height: 100vh;
    max-width: 256px;
    min-width: 256px;
    z-index: 1;
}

.dropdown {
    width: 100%;
    padding: 8px 0 8px 26px;
}

.dropdown .dropbtn {
    width: 100%;
    font-size: 13px;
    line-height: 19px;
    padding: 0;
    border: none;
    color: var(--dark_blue);
    text-align: left;
    border-radius: 0;
    background: none;
}

.dropdown img {
    margin-right: 13px;
    width: 20px;
    height: 20px;
}

.dropdown.active {
    border-left: 5px solid var(--green);
    padding-left: 21px;
}

.main-nav {
    margin: 0;
    width: 100%;
}

.main-nav h1 {
    font-family: var(--font-family-bold);
    font-style: normal;
    font-size: 28px;
    line-height: 42px;
    margin: 0 0 0 5px;
    color: var(--gray);
}

.main-nav span {
    color: var(--green);
}

.main-nav .logo-container {
    align-items: center;
    margin: 14px 21px 53px;
}

.main-nav .logo-container img {
    width: 37px;
    height: 37px;
}

.logout-nav-container {
    margin-top: 10px;
}

.label-with-embedded-info-sign-label {
    display: inline-block;
    width: auto;
    font-size: 11px;
    white-space: nowrap;
    align-items: center;
}

.label-with-embedded-info-sign-label label,
.info-sign {
    width: auto;
    padding-left: 0.2em;
    padding-top: 0;
    padding-bottom: 0;
    cursor: default;
}