/*
    Author: Gustavo Marra <gustavo@deepflowtech.com.br>
    (c) 2020 - All rights reserved - DeepFlow Technology®
 */

/* RESET */
* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;

    outline: none;

    transition: none;
}

/* VARIABLES */
:root {
    --green: #008032;
    --green_h: #00c25c;

    --blue: #0085B3;
    --blue_h: #00c0ff;

    --yellow: #d99000;
    --yellow_h: #deb524;

    --red: #cc3300;
    --red_h: #ff3e00;

    --color-green-d: #0B282D;
    --color-green-m: #1B3238;
    --color-green: #4BB455;
    --color-green-l: #B0E2C2;
    --color-green-ll: #C4F1D4;
    --default-bg: #d6d6d6;
    --light-gray: #CACBCA;
    --white: #FFFFFF;
    --black: #000000;

    --font-min: 0.75em;
    --font-small: 0.875em;
    --font-normal: 1em;
    --font-medium: 1.125em;
    --font-large: 1.375em;
    --font-max: 2em;

    --weight-light: 200;
    --weight-normal: 400;
    --weight-strong: 600;
    --weight-bold: 700;
    --weight-black: 900;

    --radius-normal: 5px;
    --radius-medium: 10px;
    --radius-large: 20px;
    --radius-round: 50%;

    --index-back: -1;
    --index-fold: 2;
    --index-menu: 3;
    --index-modal: 4;

    --hover-duration: 0.3s;
}

/* ELEMENTS */
img {
    display: block;
    max-width: 100%;
}

img a {
    border: none;
}

embed,
video,
iframe,
iframe[style] {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed iframe, .embed object, .embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.strike {
    text-decoration: line-through;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
    -webkit-text-fill-color: #555555 !important;
}

/* ICONS NORMALIZE */
[class^="icon-"]:before,
[class*=" icon-"]:before {
    position: relative !important;
    top: .125em !Important;
    margin-right: .4em !Important;
}

.icon-notext:before {
    top: 0;
    margin-right: 0 !important;;
}

/* CONTAINERS */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (min-width: 120em) {
    .container {
        max-width: 1800px;
    }
}

@media screen and (max-width: 64em) {
    .container {
        max-width: 1000px;
    }
}

@media screen and (max-width: 57.1875em) {
    .container {
        max-width: 800px;
    }
}

@media screen and (max-width: 50em) {
    .container {
        max-width: 750px;
    }
}

@media screen and (max-width: 27em) {
    .container {
        max-width: 390px;
    }
}

@media screen and (max-width: 24.625em) {
    .container {
        max-width: 350px;
    }
}

@media screen and (max-width: 22.5em) {
    .container {
        max-width: 330px;
    }
}

.content {
    padding: 60px 0;
}

.embed-container {
    position: relative;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.embed-container embed,
.embed-container video,
.embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* EFFECTS */
.transition {
    transition: all var(--hover-duration);
}

.radius {
    border-radius: var(--radius-normal);
    -webkit-border-radius: var(--radius-normal);
    -moz-border-radius: var(--radius-normal);
}

.rounded {
    border-radius: var(--radius-round);
    -webkit-border-radius: var(--radius-round);
    -moz-border-radius: var(--radius-round);
}

.box-shadow {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.4);
}

/* GRADIENTS */
.gradient {
    background-size: 200%;
    transition: all 0.5s;
}

.gradient-hover:hover {
    background-position: right center;
}

/* TRIGGERS */
.trigger {
    color: #888888;
    font-size: var(--font-normal);
    font-weight: var(--weight-strong);
    background: none;
    padding: 15px;
    border: 3px solid #666666;
}

.trigger.success {
    color: var(--green);
    border-color: var(--green);
}

.trigger.info {
    color: var(--blue);
    border-color: var(--blue);
}

.trigger.warning {
    color: var(--yellow);
    border-color: var(--yellow);
}

.trigger.error {
    color: var(--red);
    border-color: var(--red);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: none;
    border: 3px solid #888888;
    cursor: pointer;

    font-size: var(--font-normal);
    font-weight: var(--weight-strong);
    color: #888888;
    text-decoration: none;
}

.btn-gradient {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;

    background-size: 200%;
    transition: all 0.5s;

    font-size: var(--font-normal);
    font-weight: var(--weight-strong);
    color: #ffffff;
    text-decoration: none;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    color: #ffffff;
    background: #888888;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
}

.btn.btn-small {
    font-size: var(--font-small);
}

.btn.btn-big {
    font-size: var(--font-medium);
}

.btn.btn-green {
    color: var(--green);
    border-color: var(--green);
}

.btn.btn-green:hover {
    color: #ffffff;
    background: var(--green);
}

.btn.btn-blue {
    color: var(--blue);
    border-color: var(--blue);
}

.btn.btn-blue:hover {
    color: #ffffff;
    background: var(--blue);
}

.btn.btn-yellow {
    color: var(--yellow);
    border-color: var(--yellow);
}

.btn.btn-yellow:hover {
    color: #ffffff;
    background: var(--yellow);
}

.btn.btn-red {
    color: var(--red);
    border-color: var(--red);
}

.btn.btn-red:hover {
    color: #ffffff;
    background: var(--red);
}

/*ALIGN*/
.al-center {
    text-align: center;
}

.al-left {
    text-align: left;
}

.al-right {
    text-align: right;
}

.al-justify {
    text-align: justify;
}

/* DISPLAY */
.block {
    display: block;
}

.inblock {
    display: inline-block;
}

.inline {
    display: inline;
}

.none {
    display: none !important;
}

/* FLEXBOX */
.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex.center {
    justify-content: center;
}

.flex .flex-1 {
    flex-basis: 100%;
}

.flex .flex-2 {
    flex-basis: calc(50% - 40px);
    margin: 20px;
}

.flex .flex-3 {
    flex-basis: calc(100% / 3 - 30px);
    margin: 15px;
}

.flex .flex-4 {
    flex-basis: calc(25% - 20px);
    margin: 10px;
}

.flex .flex-5 {
    flex-basis: calc(20% - 20px);
    margin: 10px;
}

/*
    Author: Gustavo Marra <gustavo@deepflowtech.com.br>
    (c) 2020 - All rights reserved - DeepFlow Technology®
 */