/* Font source */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap');

/* Imports source */
@import "partial/menu.css";
@import "partial/layout.css";
@import "partial/inputs.css";
@import "partial/tables.css";
@import "partial/modal.css";
@import "partial/login.css";
@import "partial/counter-icon-container.css";
@import "partial/video-player.css";
@import "partial/step-wizard.css";
@import "partial/file-uploader.css";

:root {
    /* Colors: */
    --white: #FFFFFF;
    --gray7: #F8F8F8;
    --gray6: #F4F6F8;
    --gray5: #E4E8EB;
    --gray4: #CAD0D7;
    --gray3: #A9B0BB;
    --gray2: #636C77;
    --gray1: #424852;
    --darker-gray: #444444;
    --purpel3: #B3A4EE;
    --purpel2: #AC92EA;
    --purpel1: #9579DA;
    --yellow3: #FBD277;
    --yellow2: #FDCD56;
    --yellow1: #F5B945;
    --green3: #61DDBC;
    --green2: #46CEAC;
    --green1: #35BA9B;
    --red3: #F76C82;
    --red2: #EB5463;
    --red1: #D94452;
    --blue3: #73B0F4;
    --blue2: #5E9CEA;
    --blue1: #4A88DA;

    /* Font/text values */
    --font-family-app: 'Montserrat', sans-serif;
    --font-weight-bold: 700;
    --font-weight-medium: 500;
    --font-weight-light: 300;
    --font-size-12: 12px;
    --font-size-14: 14px;
    --font-size-16: 16px;
    --font-size-18: 18px;
    --font-size-20: 20px;
    --font-size-22: 22px;
    --font-size-24: 24px;
    --font-size-40: 40px;

    /* Border values */
    --border-1: 1px solid var(--gray4);

    /* Shadows values */
    --shadow-1: 2px 0 10px 0 rgba(0, 0, 0, 0.1);
    --shadow-2: 2px 2px 5px rgba(0, 0, 0, 0.1);

    /* Border radius values */
    --border-radius-small: 5px;
    --border-radius-medium: 10px;
    --border-radius-large: 15px;

    /* Padding and Margin values */
    --space-small: 5px;
    --space-medium: 10px;
    --space-large: 15px;
    --space-big: 20px;
    --space-bigger: 30px;
    --space-huge: 40px;
    --space-huger: 50px;

    /* Layout values */
    --padding-body-content: 10px;

    /* Tables values */
    --line-heigth-tables: 19px;

    /* Slider values */
    --arrow-witdh: 25px;
    --arrow-position: -33px;
    --arrow-size: 40px;

    --title-link-size: 16px;
    --title-link-top: 5px;

    --z-index-top: 999;
}

/* Universal Styles */
* {
    font-family: var(--font-family-app);
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-light);
    color: var(--gray2);
}

body, html {
    width: 100%;
    height: 100%;
    background: var(--gray7);
}

a {
    text-decoration: none;
}

a:hover {
    color: inherit;
}

span,
b {
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
    font-size: inherit;
}

/* Character Styles */

h6,
h5,
h4,
h3,
h2,
h1 {
    font-weight: var(--font-weight-bold);
    color: var(--darker-gray);
    margin-bottom: var(--space-big);
    margin-top: 0;
}
/*
h6 {
    font-size: var(--font-size-16);
}

h5 {
    font-size: var(--font-size-18);
}

h4 {
    font-size: var(--font-size-20);
}

h3 {
    font-size: var(--font-size-22);
}

h2 {
    font-size: var(--font-size-24);
}

h1 {
    font-size: var(--font-size-40);
}
*/

b, strong, label {
    font-weight: var(--font-weight-medium);
}

.font-light {
    font-weight: var(--font-weight-light);
}

.font-medium {
    font-weight: var(--font-weight-medium);
}

.font-bold {
    font-weight: var(--font-weight-bold);
}

.font-block {
    display: block;
}

.font-inline {
    display: inline;
}

.font-color-green-3 {
    color: var(--green3);
}

.font-color-yellow-3 {
    color: var(--yellow3);
}

.font-color-blue-1 {
    color: var(--blue1);
}
.font-color-red-3 {
    color: var(--red3);
}

/* Layout and grid values classes */
.body-content-space {
    padding: var(--padding-body-content) 0;
}

.bubble-content {
    padding: var(--space-big);
    clear: both;
    background: var(--white);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-1);
}

.bubble-content.bubble-content-gray-color {
    background: var(--gray6);
}

.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

.full-height {
    height: 100%;
}
.full-width {
    width: 100%;
}

.link-style-inherit {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
}

.slider-content {
    padding: 0 var(--space-big);
    position: relative;
}

.slider-arrow {
    position: absolute;
    top: 0;
    height: 100%;
    width: var(--arrow-witdh);
}

.slider-arrow:hover {
    cursor: pointer;
}

.slider-arrow.slider-prev {
    left: var(--arrow-position);
    background: url("../img/img_v2/chevron-compact-left-gray.svg") no-repeat center;
    background-size: auto var(--arrow-size);
}

.slider-arrow.slider-next {
    right: var(--arrow-position);
    background: url("../img/img_v2/chevron-compact-right-gray.svg") no-repeat center;
    background-size: auto var(--arrow-size);
}

.title-link {
    display: block;
    position: relative;
}

.title-link > a {
    display: block;
    position: absolute;
    right: 0;
    top: var(--title-link-top);
    font-size: var(--title-link-size);
    line-height: 1;
    color: var(--blue1);
}
.logo img {
    width: 170px;
}