/*
O CONTROLE DE CORES SE ENCONTRA NOS ELEMENTOS ABAIXO:
 BOTÕES
 OUTLINES
*/

/*
******************************
******** RESET GERAL *********
******************************
*/

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-size: 1em;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 7px;
    background-color: #fff;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
}

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

img a {
    border: none;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/*
******************************
********** CLASSES ***********
******************************
*/

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.embed-container {
    position: relative;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    box-shadow: .125rem .1875rem .9375rem rgba(0, 0, 0, .15);
}

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

.ds_none {
    display: none;
}

/*
BOX STYLES
*/

.radius {
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.rounded {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.trans_200 {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.trans_300 {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.trans_500 {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.trans_1000 {
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

/*
TRIGGERS
notify
*/
.trigger_notify_box {
    position: fixed;
    right: 0;
    top: 0;
    padding-top: 5px;
    padding-right: 15px;
    width: 320px;
    max-width: 90%;
    z-index: 99;
}

.trigger_notify {
    margin-top: 15px;
    padding: 20px;
    background: #333;
    font-size: 0.8em;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    overflow: hidden;
    color: #fff;
    position: relative;
    cursor: pointer;
}

.trigger_notify_time {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: rgba(0, 0, 0, 0.5);
}

.trigger_notify p {
    margin-top: 5px;
}

/*
modal
*/
.trigger_modal_box {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.3);
}

.trigger_modal {
    margin: auto;
    width: 480px;
    max-width: 96%;
    background: #333;
    display: flex;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    position: relative;
    color: #fff;
    font-size: 0.875em;
    top: -100px;
    opacity: 0;
}

.trigger_modal_close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 1.2em;
    cursor: pointer;
    opacity: 0.5;
}

.trigger_modal_close:hover {
    opacity: 1;
}

.trigger_modal_icon {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 4em;
}

.trigger_modal_content {
    width: 100%;
    padding: 30px;
}

.trigger_modal_content a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
}

.trigger_modal_content a:hover {
    text-decoration: underline;
}

.trigger_modal_content_title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.trigger_modal_content p {
    margin-top: 15px;
}

/*
TRIGGER VARIABLES
*/
.trigger_blue {
    background-color: #3872D5
}

.trigger_green {
    background-color: #38A072
}

.trigger_yellow {
    background-color: #EEAF06
}

.trigger_red {
    background-color: #D43E41
}

/*
MODAL BOX
 */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
}

.modal.ds_none {
    display: none;
}

.modal_box {
    width: 480px;
    max-width: 80%;
    padding: 20px;
    background-color: #fbfbfb;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/*
BUTTONS
*/

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #888;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: normal;
    color: #fff;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    color: #fff;
    text-decoration: none;
    background-color: #555;
    box-shadow: 0 0 5px #999;
}

.btn-small {
    font-size: 0.875em !important;
}

.btn-big {
    font-size: 1.5em !important;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-circle {
    -webkit-border-radius: 6.25rem;
    -moz-border-radius: 6.25rem;
    border-radius: 6.25rem;
}

.btn-orange {
    background-image: linear-gradient(to bottom right, #ff344f, #ff8659);
}

.btn-orange:hover {
    background-image: linear-gradient(to bottom right, #ff6556, #ff6556);
}

.btn-green {
    background-color: #46CEAC;
}

.btn-green:hover {
    background-color: #35BA9B;
}

.btn-red {
    background-color: #EB5463;
}

.btn-red:hover {
    background-color: #D94452;
}

.btn-blue {
    background-color: #0E96E5;
}

.btn-blue:hover {
    background-color: #096397;
}

.btn-yellow {
    background-color: #FAAD50;
}

.btn-yellow:hover {
    background-color: #CC8D41;
}

/*
OUTLINES
*/
.outline-orange {
    outline-color: #D45B00;
}

/*
BACKGROUNDS
*/
.bg-orange {
    background: #D45B00;
}

/*
FLEXBOX
*/

.flex {
    display: flex;
    flex-wrap: wrap;
}

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

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

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

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

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

/*
SLIDE
*/
.j_slide {
    position: relative;
}

.j_slide_item {
    display: none;
}

.j_slide_item:first-child {
    display: block;
}

.j_slide_nav {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

.j_slide_nav span {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.4);
    width: 20px;
    height: 20px;
    margin: 0 5px;
    cursor: pointer;
}

.j_slide_nav span:hover,
.j_slide_nav span.active {
    background-color: #DD336B;
}

/*
TABS
*/
.j_tab_item {
    display: none;
}

.j_tab_item.active {
    display: block;
}

