/**
 * @theme Yeda
 * @version 1.0.0
 * @author Luiz Henrique R. Domingues
 */

/*********************************
* *********** VARIÁVEIS ***********
******************************** */
:root{
    /* CORES PADRÃO */
    --colorPrimary: #353330;
    --colorSecondary: #c99a4f;

    /* CORES DAS MENSAGENS */
    --colorAlert: #FFBC01;
    --colorAlertClear: #FDC835;
    --colorAlertDark: #DFA911;

    --colorError: #F03D3D;
    --colorErrorClear: #FD5454;
    --colorErrorDark: #DB2C2C;

    --colorSuccess: #1FAF73;
    --colorSuccessClear: #24BE7E;
    --colorSuccessDark: #1D9D68;

    --colorInfo: #006DE6;
    --colorInfoClear: #0C7DFA;
    --colorInfoDarK: #0057B8;

    /* CORES DOS TEXTOS */
    --colorText_100: #141414;
    --colorText_90: #2C2C2C;
    --colorText_80: #434343;
    --colorText_70: #5B5B5B;
    --colorText_60: #727272;
    --colorText_50: #8A8A8A;
    --colorText_40: #A1A1A1;
    --colorText_30: #B9B9B9;
    --colorText_20: #D0D0D0;
    --colorText_10: #E8E8E8;

    /* CORES DIVERSAS */
    --colorBorder: #E8E8E8;
    --colorWhite: #FFFFFF;
    --colorGray: #EBEBEB;

    /* BORDER RADIUS */
    --borderRadius: 8px;

    /* TAMANHO FONTES */
    --textSize12: 0.75em;
    --textSize13: 0.8125em;
    --textSize14: 0.875em;
    --textSize15: 0.9375em;
    --textSize16: 1em;
    --textSize17: 1.0625em;
    --textSize18: 1.125em;
    --textSize19: 1.1875em;
    --textSize20: 1.25em;
    --textSize22: 1.375em;
    --textSize24: 1.5em;
    --textSize28: 1.75em;
    --textSize30: 1.875em;
    --textSize32: 2em;
    --textSize34: 2.125em;
    --textSize36: 2.25em;
    --textSize38: 2.375em;
    --textSize40: 2.5em;
    --textSize44: 2.75em;
    --textSize50: 3.125em;
    --textSize54: 3.375em;
    --textSize60: 3.75em;
    --textSize68: 4.25em;
    --textSize78: 4.875em;
    --textSize90: 5.625em;
}

/*********************************
* ************ CONFIG ************
******************************** */
*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

::-webkit-input-placeholder{ 
    color: var(--colorText_30);
}

input:-moz-placeholder{ 
    color: var(--colorText_30);
}

textarea:-moz-placeholder{
    color: var(--colorText_30);
}

img{
    display: block;
    max-width: 100%;
}

img a{
    border: none;
}

embed,
video,
iframe,
iframe[style]{
    max-width: 100%;
    height: auto;
}

ul{
    list-style: none;
}

.container{
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

.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%;
}

/*********************************
* ************ STYLES ************
******************************** */
.rounded{
    --radius: 50%;
    border-radius: var(--radius);
    -moz-border-radius: var(--radius);
    -webkit-border-radius: var(--radius);
}

.radius{
    --radius: 10px;
    border-radius: var(--radius);
    -moz-border-radius: var(--radius);
    -webkit-border-radius: var(--radius);
}

.transition{
    --seconds: 0.2s;
    transition-duration: var(--seconds);
    -moz-transition-duration: var(--seconds);
    -webkit-transition-duration: var(--seconds);
    cursor: pointer;
}

.margin{
    margin: 0 !important;
}

.ds-none{
    display: none;
}

.flex{
    display: flex;
}

.flex-wrap{
    flex-wrap: wrap;
}

.flex-nowrap{
    flex-wrap: nowrap;
}

.just-center{
    justify-content: center;
}

.just-between{
    justify-content: space-between;
}

.align-center{
    align-items: center;
}

.pos-relative{
    position: relative;
}

.pos-absolute{
    position: absolute;
}

/*********************************
* *********** TRIGGERS ***********
******************************** */
.trigger-box{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999999999999999999999999;
    width: 370px;
}

.trigger{
    position: relative;
    background-color: #999;
    padding: 28px;
    border-radius: var(--borderRadius);
    -moz-border-radius: var(--borderRadius);
    -webkit-border-radius: var(--borderRadius);
    margin-top: 20px;
    margin-right: 20px;
    cursor: pointer;
    overflow: hidden;
}

.trigger-green{
    background-color: var(--colorSuccess);
}

.trigger-red{
    background-color: var(--colorError);
}

.trigger-yellow{
    background-color: var(--colorAlert);
}

.trigger-blue{
    background-color: var(--colorInfo);
}

.trigger-header{
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.trigger-header-icon{
    margin-right: 8px;
}

.trigger-header-title{
    font-size: var(--textSize16);
    text-transform: uppercase;
    font-weight: bold;
}

.trigger-green .trigger-header-title{
    color: #062317;
}

.trigger-blue .trigger-header-title{
    color: #00162E;
}

.trigger-yellow .trigger-header-title{
    color: #332600;
}

.trigger-red .trigger-header-title{
    color: #300C0C;
}

.trigger p{
    font-size: var(--textSize15);
    color: #fff;
    line-height: var(--textSize20);
}

.trigger a{
    text-decoration: none;
    color: #FFF;
    font-weight: bold;
}

.trigger a:hover{
    text-decoration: underline;
}

.trigger-timer{
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
}

.trigger-green .trigger-timer{
    background-color: #093523;
}

.trigger-blue .trigger-timer{
    background-color: #002145;
}

.trigger-yellow .trigger-timer{
    background-color: #4D3900;
}

.trigger-red .trigger-timer{
    background-color: #481212;
}