/**
Z-INDEX:
triggers: 90+
modals: 80+


DASH
BASIC RESET
*/
* {
    font-family: 'Open Sans', serif;
    margin: 0;
    padding: 0;

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

html, body {
    margin: 0;
    height: 100%;
}

body {
    height: 100%;
}

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

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

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

img {
    max-width: 100%;
    vertical-align: middle;
    margin: 0;
}

a img {
    border: none;
    margin: 0;
}

ul {
    list-style: none;
}

.clear {
    clear: both;
}

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

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

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

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

.overflow_hidden {
    overflow: hidden;
}

.htmlchars {
    display: block;
    width: 100%;
    padding: 30px;
}

.htmlchars h2 {
    display: block;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px
}

.htmlchars h3 {
    display: block;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px
}

.htmlchars h4 {
    display: block;
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 20px
}

.htmlchars h5 {
    display: block;
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 20px
}

.htmlchars p {
    margin-bottom: 20px;
    font-size: 1em;
    font-weight: 300;
}

.htmlchars a {
    font-weight: bold;
    color: #0090C3;
    text-decoration: none;
}

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

.htmlcontent {
    font-size: 1.1em;
    color: #444;
}

.htmlcontent h2,
.htmlcontent h3,
.htmlcontent h4,
.htmlcontent h5 {
    padding: 20px 30px
}

.htmlcontent h3 {
    font-size: 1.6em;
    font-weight: bold;
}

.htmlcontent h4 {
    font-size: 1.4em;
    font-weight: bold;
}

.htmlcontent h5 {
    font-size: 1.2em;
    font-weight: bold;
}

.htmlcontent p {
    padding: 15px 30px;
}

.htmlcontent ul {
    padding: 15px 60px;
    list-style: disc;
}

.htmlcontent ol {
    padding: 15px 60px;
}

.htmlcontent img {
    width: 100%;
    height: auto;
}

.htmlcontent a {
    font-weight: bold;
    color: #4A88DA
}

.htmlcontent a:hover {
    text-decoration: none;
}

.htmlcontent .btn {
    display: block;
    width: 100%;
}

.htmlcontent iframe {
    width: 100%;
    border: none;
}

.htmlchars pre,
.htmlcontent pre {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    padding: 20px;
    margin: 20px 0;
    max-width: 100%;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

/*ALIGN*/
.al_left {
    text-align: left;
}

.al_right {
    text-align: right;
}

.al_center {
    text-align: center;
    display: block;
}

/*TRIGGER*/
.trigger {
    position: relative;
    width: 100%;
    background: #333;
    padding: 15px;
    border-radius: 3px;
    margin: 10px auto;
    color: #FFF;
    font-size: 1em;
    font-weight: 600;
    -webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.5);
}

.trigger_none {
    margin-bottom: 0;
}

.trigger p {
    margin-top: 10px;
}

.trigger_ajax {
    display: none;
    cursor: pointer;
}

.trigger_success {
    background: rgb(10, 134, 55);
    background: linear-gradient(90deg, rgba(10, 134, 55, 1) 0%, rgba(24, 202, 23, 1) 100%);
}

.trigger_info {
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(52, 104, 215, 1) 0%, rgba(0, 212, 255, 1) 100%);
}

.trigger_alert {
    background: rgb(244, 192, 35);
    background: linear-gradient(90deg, rgba(244, 192, 35, 1) 0%, rgba(255, 219, 110, 1) 100%);
}

.trigger_error {
    background: rgb(197, 13, 13);
    background: linear-gradient(90deg, rgba(197, 13, 13, 1) 0%, rgba(241, 37, 37, 1) 100%);
}


/*
FORM
BASIC FORM CSS
*/
.basic_form {
    display: block;
}

.basic_form label {
    display: block;
    margin-bottom: 20px;
}

.basic_form .label {
    display: flex;
    flex-wrap: nowrap;
}

.basic_form .label label {
    flex-basis: 48%;
}

.basic_form .label label:first-child {
    margin-right: 4%;
}

.basic_form .field {
    display: block;
    font-size: 0.7em;
    font-weight: 100;
    color: #888;
    text-transform: uppercase;
    padding: 0 10px;
}

.basic_form input {
    padding: 10px;
    font-size: 1em;
    font-weight: 500;
    border: none;
    border-bottom: 1px solid #ccc;
    display: block;
    width: 100%;
    outline: none;
}

.basic_form input:focus {
    border-color: #0077B5;
}

.basic_form input:valid {
    border-color: #0077b3;
}

.basic_form input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.progress {
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.progress_bar {
    display: block;
    background: #38A072;
    padding: 5px 10px;
    font-size: 0.7em;
    font-weight: 600;
    text-transform: uppercase;
    max-width: 100%;
}

/*
BUTTONS
BASIC BUTTONS CSS
*/
.btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border: none;
    background: #555;
    color: #fff !Important;
    text-decoration: none !Important;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
}

.btn_medium {
    display: block;
    width: 100%;
    padding: 10px 15px;
    border: none;
    background: #555;
    color: #fff;
    text-decoration: none !Important;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
}

.btn_small {
    display: block;
    width: 100%;
    padding: 8px;
    border: none;
    background: #555;
    color: #fff;
    text-decoration: none !Important;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 0.8em;
    font-weight: bold;
    cursor: pointer;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
}

.btn:hover {
    background: #888;
}

.btn_form {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: bold;
    color: #fff;
    background: #555;
}

.btn_blue {
    background-color: #3AADD9;
}

.btn_blue:hover {
    background-color: #4FC0E8;
}

.btn_green {
    background-color: #35BA9B;
}

.btn_green:hover {
    background-color: #46CEAC;
}

.btn_red {
    background-color: #D94452;
}

.btn_red:hover {
    background-color: #EB5463;
}

.btn_yellow {
    background-color: #F5B945;
}

.btn_yellow:hover {
    background-color: #FDCD56;
}

.transition {
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    cursor: pointer;
}

@media (max-width: 34em) {
    .btn_form {
        display: block;
        width: 100%;
    }
}

.btn_opacity {
    opacity: 0.7;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
}

.btn_opacity:hover {
    opacity: 1;
}

/*
GRADIENTS
GENERAL GRADIENTS
*/
.gradient_blue {
    color: #fff;
    background: rgba(0, 35, 151, 1);
    background: -moz-linear-gradient(-45deg, rgba(0, 35, 151, 1) 0%, rgba(0, 178, 198, 1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(0, 35, 151, 1)), color-stop(100%, rgba(0, 178, 198, 1)));
    background: -webkit-linear-gradient(-45deg, rgba(0, 35, 151, 1) 0%, rgba(0, 178, 198, 1) 100%);
    background: -o-linear-gradient(-45deg, rgba(0, 35, 151, 1) 0%, rgba(0, 178, 198, 1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(0, 35, 151, 1) 0%, rgba(0, 178, 198, 1) 100%);
    background: linear-gradient(135deg, rgba(0, 35, 151, 1) 0%, rgba(0, 178, 198, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#002397', endColorstr='#00b2c6', GradientType=1);
}

.gradient_blue_font {
    background: linear-gradient(-45deg, rgba(0, 35, 151, 1) 0%, rgba(0, 178, 198, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient_red {
    color: #fff;
    background: rgba(255, 0, 98, 1);
    background: -moz-linear-gradient(-45deg, rgba(255, 0, 98, 1) 0%, rgba(253, 111, 46, 1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(255, 0, 98, 1)), color-stop(100%, rgba(253, 111, 46, 1)));
    background: -webkit-linear-gradient(-45deg, rgba(255, 0, 98, 1) 0%, rgba(253, 111, 46, 1) 100%);
    background: -o-linear-gradient(-45deg, rgba(255, 0, 98, 1) 0%, rgba(253, 111, 46, 1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(255, 0, 98, 1) 0%, rgba(253, 111, 46, 1) 100%);
    background: linear-gradient(135deg, rgba(255, 0, 98, 1) 0%, rgba(253, 111, 46, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0062', endColorstr='#fd6f2e', GradientType=1);
}

.gradient_red_font {
    background: linear-gradient(-45deg, rgba(255, 0, 98, 1) 0%, rgba(253, 111, 46, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient_green {
    color: #fff;
    background: rgba(66, 230, 151, 1);
    background: -moz-linear-gradient(-45deg, rgba(66, 230, 151, 1) 0%, rgba(59, 178, 184, 1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(66, 230, 151, 1)), color-stop(100%, rgba(59, 178, 184, 1)));
    background: -webkit-linear-gradient(-45deg, rgba(66, 230, 151, 1) 0%, rgba(59, 178, 184, 1) 100%);
    background: -o-linear-gradient(-45deg, rgba(66, 230, 151, 1) 0%, rgba(59, 178, 184, 1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(66, 230, 151, 1) 0%, rgba(59, 178, 184, 1) 100%);
    background: linear-gradient(135deg, rgba(66, 230, 151, 1) 0%, rgba(59, 178, 184, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#42e697', endColorstr='#3bb2b8', GradientType=1);
}

.gradient_green_font {
    background: linear-gradient(-45deg, rgba(66, 230, 151, 1) 0%, rgba(59, 178, 184, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient_mentor {
    color: #fff;
    background: rgba(0, 77, 144, 1);
    background: -moz-linear-gradient(-45deg, rgba(0, 77, 144, 1) 0%, rgba(36, 167, 136, 1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(0, 77, 144, 1)), color-stop(100%, rgba(36, 167, 136, 1)));
    background: -webkit-linear-gradient(-45deg, rgba(0, 77, 144, 1) 0%, rgba(36, 167, 136, 1) 100%);
    background: -o-linear-gradient(-45deg, rgba(0, 77, 144, 1) 0%, rgba(36, 167, 136, 1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(0, 77, 144, 1) 0%, rgba(36, 167, 136, 1) 100%);
    background: linear-gradient(135deg, rgba(0, 77, 144, 1) 0%, rgba(36, 167, 136, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004d90', endColorstr='#24a788', GradientType=1);
}

.gradient_mentor_font {
    background: linear-gradient(-45deg, rgba(0, 77, 144, 1) 0%, rgba(36, 167, 136, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.opacity_hover {
    opacity: 0.8;
}

.opacity_hover:hover {
    opacity: 1;
}

.paginator,
.paginator ul {
    display: flex;
    flex-basis: 100%;
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.paginator li span,
.paginator li a {
    display: inline-block;
    font-size: 0.8em;
    margin: 0 8px;
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.paginator li span {
    background: #333;
}

.paginator li a {
    background: #888;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
}

.paginator li a:hover {
    background: #5e9cea;
}

/*
BOX
*/
.box_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 10px;
}

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

.box4 {
    flex-basis: calc(25% - 20px);
}

@media (max-width: 62em) {
    .box4 {
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 30em) {
    .box4 {
        flex-basis: 100%;
    }
}

/*
FONT AND MARGINS
*/
.font_green {
    color: #38A072
}

.font_red {
    color: #D43E41
}

.margin_left {
    margin-left: 20px !Important;
}

.margin_left_small {
    margin-left: 10px !Important;
}

.margin_top {
    margin-top: 20px !Important;
}

.margin_top_big {
    margin-top: 30px !Important;
}

.margin_top_small {
    margin-top: 10px !Important;
}

.margin_bottom {
    margin-bottom: 20px !Important;
}

.margin_bottom_small {
    margin-bottom: 10px !Important;
}

.margin_bottom_min {
    margin-bottom: 5px !Important;
}

.align_center {
    text-align: center;
}

.align_left {
    text-align: left;
}

.align_right {
    text-align: right;
}

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

.ds_inblock{
    display: inline-block;
}

.ds_none, .none{
    display: none;
}

.form_load{
    width: 25px;
    margin-top: -2px;
}

/* MENSAGENS DE ALERTA */
.bs_alert{display: none; z-index: 250;}
.bs_alert a{font-weight: bold; color: #fff; text-decoration: none;}
.bs_alert a:hover{ text-decoration: underline;}
.bs_alert_box{position: fixed; right: -390px; top: 15px; display: block; width: 400px; max-width: 90%; margin: auto; background: #555; color: #fff; padding: 18px; font-size: 0.8em; border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px;  box-shadow: 0 0 4px 0 #000; z-index: 999;}

.bs_alert_box.green{background: rgb(10,134,55); background: linear-gradient(90deg, rgba(10,134,55,1) 0%, rgba(24,202,23,1) 100%);}
.bs_alert_box.blue{background: rgb(2,0,36); background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(52,104,215,1) 0%, rgba(0,212,255,1) 100%);}
.bs_alert_box.yellow{background: rgb(244,192,35); background: linear-gradient(90deg, rgba(244,192,35,1) 0%, rgba(255,219,110,1) 100%);}
.bs_alert_box.red{background: rgb(197,13,13); background: linear-gradient(90deg, rgba(197,13,13,1) 0%, rgba(241,37,37,1) 100%);}

.bs_alert_close,
.bs_alert_text,
#bs_alert_icon{display: inline-block; vertical-align: middle;}
#bs_alert_icon{width: 8%; font-size: 2em; line-height: 1; color: #fff; opacity: 0.5; text-align: center;}
.bs_alert_text{width: 84%; padding: 0 20px;}
.bs_alert_title{font-size: 1em; font-weight: bold; text-transform: uppercase; margin-bottom: 5px; line-height: 1;}
.bs_alert_content{font-size: 0.9em; font-weight: 300;}
.bs_alert_close{ width: 8%; text-align: center;}
.bs_alert_close span{ line-height: 1; background: rgba(0,0,0,0.3); padding: 9px 10px 7px 10px; font-size: 0.75em; font-weight: 500; border-radius: 50%; -moz-border-radius: 50%; -webkit-border-radius: 50%; cursor: pointer;}
.bs_alert_close span:hover{background: rgba(0,0,0,0.5);}
.bs_alert .base_load{width: 100%; position: absolute; bottom: 2px; left: 1px;}
.bs_alert .load_bar{display: block; padding: 2px; width: 0%; background: rgba(255,255,255,.3)}

/*
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 UPLOAD PROGRESS
*/
.upload_modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 20;
    display: none;
}

.upload_modal_box {
    margin: auto;
    font-size: 3em;
    color: #fff;
    text-shadow: 1px 1px 0px #555;
}

/* SCROLLBAR PERONALIZADO */
.scrollbar::-webkit-scrollbar {
    width: 7px;
    background-color: #ffffff;
}

.scrollbar::-webkit-scrollbar-thumb{
    background-color: transparent;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    -o-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

/*
DASH
LOGIN STYLE
*/
.dash_login{
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
}

/************************************
#### GRADIENTES BACKGROUND LOGIN ####
************************************/
.dash_login.blue{
    background: rgb(2,0,36); background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(52,104,215,1) 0%, rgba(0,212,255,1) 100%);    
}

.dash_login.darkblue{
    background: rgb(0,0,102); background: linear-gradient(90deg, rgba(0,0,102,1) 0%, rgba(0,0,180,1) 100%);    
}

.dash_login.green{
    background: rgb(10,134,55); background: linear-gradient(90deg, rgba(10,134,55,1) 0%, rgba(24,202,23,1) 100%);    
}

.dash_login.darkgreen{
    background: rgb(0,80,30); background: linear-gradient(90deg, rgba(0,80,30,1) 0%, rgba(0,137,51,1) 100%);    
}

.dash_login.yellow{
    background: rgb(244,192,35); background: linear-gradient(90deg, rgba(244,192,35,1) 0%, rgba(255,219,110,1) 100%);   
}

.dash_login.orange{
    background: rgb(255,128,0); background: linear-gradient(90deg, rgba(255,128,0,1) 0%, rgba(255,166,77,1) 100%);    
}

.dash_login.red{
    background: rgb(197,13,13); background: linear-gradient(90deg, rgba(197,13,13,1) 0%, rgba(241,37,37,1) 100%);  
}

.dash_login.darkred{
    background: rgb(72,4,4); background: linear-gradient(90deg, rgba(72,4,4,1) 0%, rgba(125,0,0,1) 100%);    
}

.dash_login.pink{
    background: rgb(255,0,127); background: linear-gradient(90deg, rgba(255,0,127,1) 0%, rgba(255,119,187,1) 100%); 
}

.dash_login.purple{
    background: rgb(80,0,80); background: linear-gradient(90deg, rgba(80,0,80,1) 0%, rgba(173,0,173,1) 100%);     
}

.dash_login.grey{
    background: rgb(102,102,102); background: linear-gradient(90deg, rgba(102,102,102,1) 0%, rgba(153,153,153,1) 100%); 
}

.dash_login.dark{
    background: rgb(0,0,0); background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 100%);     
}

.dash_login.light{
    background: rgb(247,247,247); background: linear-gradient(90deg, rgba(247,247,247,1) 0%, rgba(242,242,242,1) 100%);     
}

.dash_login.purple_brown{
    background: rgb(100,51,96); background: linear-gradient(90deg, rgba(100,51,96,1) 0%, rgba(113,52,94,1) 25%, rgba(148,51,68,1) 75%, rgba(170,68,46,1) 100%);
}

.dash_login.purple_yellow{
    background: rgb(131,58,180); background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);     
}

.dash_login.blue_radial{
    background: rgb(252,70,107); background: radial-gradient(circle, rgba(252,70,107,1) 0%, rgba(63,94,251,1) 100%);     
}

.dash_login.pink_radial{
    background: rgb(148,187,233); background: radial-gradient(circle, rgba(148,187,233,1) 0%, rgba(238,174,202,1) 100%);     
}

.dash_login_box {
    position: relative;
    width: 400px;
    max-width: 90%;
    margin: auto;
}

.dash_login_box_logo {
    display: block;
    width: 220px;
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.dash_login_box_content {
    padding: 30px;
    background: rgb(245,245,245);
    background: linear-gradient(90deg, rgba(245,245,245,1) 0%, rgba(255,255,255,1) 100%);
}

.basic_form {
    display: block;
}

.basic_form label {
    display: block;
    margin-bottom: 20px;
}

.basic_form .field {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7em;
    font-weight: 400;
    color: #A5A5A5;
    text-transform: uppercase;
    padding: 0 10px;
}

.basic_form input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.basic_form input:valid {
    border-color: #0077b3;
}

.basic_form input {
    padding: 8px;
    margin-top: 5px;
    background: rgb(245,245,245);
    background: linear-gradient(90deg, rgba(245,245,245,1) 0%, rgba(255,255,255,1) 100%);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75em;
    font-weight: 300;
    border: none;
    color: #A5A5A5;
    display: block;
    width: 100%;
    outline: none;
    border-radius: 0;
    -web-kit-border-radius: 0;
    -moz-border-radius: 0;
}

/************************************
######## BORDER INPUT LOGIN ########
************************************/
.basic_form input.blue {
    border-bottom: 1px solid #0E96E5;
}

.basic_form input.darkblue {
    border-bottom: 1px solid #000066;
}

.basic_form input.green {
    border-bottom: 1px solid #0A8637;
}

.basic_form input.darkgreen {
    border-bottom: 1px solid #00501E;
}

.basic_form input.yellow {
    border-bottom: 1px solid #F4C023;
}

.basic_form input.orange {
    border-bottom: 1px solid #FF8000;
}

.basic_form input.red {
    border-bottom: 1px solid #C50D0D;
}

.basic_form input.darkred {
    border-bottom: 1px solid #480404;
}

.basic_form input.pink {
    border-bottom: 1px solid #FF007F;
}

.basic_form input.purple {
    border-bottom: 1px solid #500050;
}

.basic_form input.grey {
    border-bottom: 1px solid #666666;
}

.basic_form input.dark {
    border-bottom: 1px solid #000000;
}

.basic_form input.purple_brown {
    border-bottom: 1px solid #643360;
}

.basic_form input.purple_yellow {
    border-bottom: 1px solid #833AB4;
}

.basic_form input.blue_radial {
    border-bottom: 1px solid #3F5EFB;
}

.basic_form input.pink_radial {
    border-bottom: 1px solid #94BBFF;
}

.dash_login_box_content_pass {
    display: block;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7em;
    text-transform: uppercase;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 20px;
}

.dash_login_box_content_pass:hover{
    color: #A5A5A5;    
}

.dash_login_box_footer {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8em;
    font-weight: 500;
    color: #f7f7f7;
    text-decoration: none;
}

.dash_login_box_footer a{
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    color: #f7f7f7;
}

.dash_login_box_footer .back{
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875em;
    font-weight: 600;
    text-decoration: none;
    color: #f7f7f7;
}

.dash_login_box_footer .back_span{
    font-size: 0.875em;
    color: #f7f7f7;
}

.dash_login_box_footer a:hover,
.dash_login_box_footer .back:hover{
    text-decoration: underline;
}

.dash_login_box_footer span{
    font-size: 0.875em;
    color: #D90000;
}

.dash_btn{
    display: block;
    width: 100%;
    padding: 15px 20px;
    border: none;
    background: #555;
    color: #fff !Important;
    text-decoration: none !important;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
}

.dash_login_box_footer a {
    color: #fff;
}

/************************************
###### BOTÕES BACKGROUND LOGIN ######
************************************/
.dash_btn.blue{background: rgb(2,0,36); background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(52,104,215,1) 0%, rgba(0,212,255,1) 100%);}
.dash_btn.blue:hover{background: rgb(2,0,36); background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(0,212,255,1) 0%, rgba(52,104,215,1) 100%);}

.dash_btn.darkblue{background: rgb(0,0,102); background: linear-gradient(90deg, rgba(0,0,102,1) 0%, rgba(0,0,180,1) 100%);}
.dash_btn.darkblue:hover{background: rgb(0,0,180); background: linear-gradient(90deg, rgba(0,0,180,1) 0%, rgba(0,0,102,1) 100%);}

.dash_btn.green{background: rgb(10,134,55); background: linear-gradient(90deg, rgba(10,134,55,1) 0%, rgba(24,202,23,1) 100%);}
.dash_btn.green:hover{background: rgb(24,202,23); background: linear-gradient(90deg, rgba(24,202,23,1) 0%, rgba(10,134,55,1) 100%);}

.dash_btn.darkgreen{background: rgb(0,80,30); background: linear-gradient(90deg, rgba(0,80,30,1) 0%, rgba(0,137,51,1) 100%);}
.dash_btn.darkgreen:hover{background: rgb(0,137,51); background: linear-gradient(90deg, rgba(0,137,51,1) 0%, rgba(0,80,30,1) 100%);}

.dash_btn.yellow{background: rgb(244,192,35); background: linear-gradient(90deg, rgba(244,192,35,1) 0%, rgba(255,219,110,1) 100%);}
.dash_btn.yellow:hover{background: rgb(255,219,110); background: linear-gradient(90deg, rgba(255,219,110,1) 0%, rgba(244,192,35,1) 100%);}

.dash_btn.orange{background: rgb(255,128,0); background: linear-gradient(90deg, rgba(255,128,0,1) 0%, rgba(255,166,77,1) 100%);}
.dash_btn.orange:hover{background: rgb(255,166,77); background: linear-gradient(90deg, rgba(255,166,77,1) 0%, rgba(255,128,0,1) 100%);}

.dash_btn.red{background: rgb(197,13,13); background: linear-gradient(90deg, rgba(197,13,13,1) 0%, rgba(241,37,37,1) 100%);}
.dash_btn.red:hover{background: rgb(241,37,37); background: linear-gradient(90deg, rgba(241,37,37,1) 0%, rgba(197,13,13,1) 100%);}

.dash_btn.darkred{background: rgb(72,4,4); background: linear-gradient(90deg, rgba(72,4,4,1) 0%, rgba(125,0,0,1) 100%);}
.dash_btn.darkred:hover{background: rgb(125,0,0); background: linear-gradient(90deg, rgba(125,0,0,1) 0%, rgba(72,4,4,1) 100%);}

.dash_btn.pink{background: rgb(255,0,127); background: linear-gradient(90deg, rgba(255,0,127,1) 0%, rgba(255,119,187,1) 100%);}
.dash_btn.pink:hover{background: rgb(255,119,187); background: linear-gradient(90deg, rgba(255,119,187,1) 0%, rgba(255,0,127,1) 100%);}

.dash_btn.purple{background: rgb(80,0,80); background: linear-gradient(90deg, rgba(80,0,80,1) 0%, rgba(173,0,173,1) 100%);}
.dash_btn.purple:hover{background: rgb(173,0,173); background: linear-gradient(90deg, rgba(173,0,173,1) 0%, rgba(80,0,80,1) 100%);}

.dash_btn.grey{background: rgb(102,102,102); background: linear-gradient(90deg, rgba(102,102,102,1) 0%, rgba(153,153,153,1) 100%);}
.dash_btn.grey:hover{background: rgb(153,153,153); background: linear-gradient(90deg, rgba(153,153,153,1) 0%, rgba(102,102,102,1) 100%);}

.dash_btn.dark{background: rgb(0,0,0); background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 100%);}
.dash_btn.dark:hover{background: rgb(0,0,0); background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,1) 100%);}

.dash_btn.light{background: rgb(247,247,247); background: linear-gradient(90deg, rgba(247,247,247,1) 0%, rgba(242,242,242,1) 100%);}
.dash_btn.light:hover{background: rgb(242,242,242); background: linear-gradient(90deg, rgba(242,242,242,1) 0%, rgba(247,247,247,1) 100%);}

.dash_btn.purple_brown{background: rgb(100,51,96); background: linear-gradient(90deg, rgba(100,51,96,1) 0%, rgba(113,52,94,1) 25%, rgba(148,51,68,1) 75%, rgba(170,68,46,1) 100%);}
.dash_btn.purple_brown:hover{background: rgb(170,68,46); background: linear-gradient(90deg, rgba(170,68,46,1) 0%, rgba(148,51,68,1) 25%, rgba(113,52,94,1) 75%, rgba(100,51,96,1) 100%);}

.dash_btn.purple_yellow{background: rgb(131,58,180); background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);}
.dash_btn.purple_yellow:hover{background: rgb(252,176,69); background: linear-gradient(90deg, rgba(252,176,69,1) 0%, rgba(253,29,29,1) 50%, rgba(131,58,180,1) 100%);}

.dash_btn.blue_radial{background: rgb(252,70,107); background: radial-gradient(circle, rgba(252,70,107,1) 0%, rgba(63,94,251,1) 100%);}
.dash_btn.blue_radial:hover{background: rgb(63,94,251); background: radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%);}

.dash_btn.pink_radial{background: rgb(148,187,233); background: radial-gradient(circle, rgba(148,187,233,1) 0%, rgba(238,174,202,1) 100%);}
.dash_btn.pink_radial:hover{background: rgb(238,174,202); background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);}

/*
DASH :: NAV
*/
.dash_notificator {
    position: fixed;
    right: -360px;
    top: 0;
    width: 360px;
    height: 100%;
    max-width: 80%;
    background: #fff;
    z-index: 10;
    padding: 20px;
    overflow: auto;
}

.dash_notificator_box_notify {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    border: 1px solid #E8EAEC;
    color: #999;
    border-bottom-width: 3px;
    padding: 10px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    cursor: pointer;
    font-weight: 600;
}

.dash_notificator_box_notify.click {
    opacity: 0.1;
}

.dash_notificator_box_notify:hover {
    color: #777;
    border-color: #999;
    opacity: 1;
}

.dash_notificator_box_notify_thumb {
    flex-basis: 18%;
}

.dash_notificator_box_notify_title {
    flex-basis: 82%;
    padding-left: 15px;
    font-size: 0.875em;
}

.dash_notificator_box_notify_title p {
    text-transform: uppercase;
    margin-top: 10px;
}

.dash {
    display: flex;
    flex-wrap: nowrap;
    min-height: 100%;
}

.dash_nav {
    position: relative;
    align-items: stretch;
    flex-basis: 240px;
    min-width: 240px;
    background: #273B4A;
    padding-bottom: 50px;
}

.dash_nav_header {
    padding: 25px;
    text-align: center;
}

.dash_nav_header_thumb {
    max-width: 50%;
    margin-bottom: 10px;
    border: 2px solid #DEE3EC;
}

.dash_nav_header_name{
    font-size: 0.875em;
    font-weight: bold;
    color: #DEE3EC;
}

.dash_nav_header_short {
    color: #DEE3EC;
    font-weight: 100;
    font-size: 0.875em;
}

/*
DASH_NAV
*/

.dash_nav_ul {
    display: block;
    width: 100%;
    list-style: none;
}

.dash_nav_ul_li {
    display: block;
    position: relative;
    width: 100%;
}

.dash_nav_ul_li_a {
    display: flex;
    width: 100%;
    padding: 14px 20px 14px 25px;
    border-left: 2px solid #2F4050;
    background: #2F4050;
    color: #a7b1c2;
    font-weight: 600;
    font-size: 0.875em;
    text-decoration: none;
}

.dash_nav_ul_li_a:hover {
    border-color: #273B4A;
    background: #273B4A;
    color: #F9FAFA;
}

.dash_nav_ul_li_a span {
    width: 100%;
    text-align: right;
}

.dash_nav_ul_li_ul {
    border-left: 2px solid #0090C3;
    padding: 10px 0;
    display: none;
}

.dash_nav_ul_li_ul_a {
    display: block;
    width: 100%;
    padding: 10px 10px 10px 30px;
    font-size: 0.8em;
    font-weight: 500;
    color: #a7b1c2;
    text-decoration: none;
}

.dash_nav_ul_li_ul_a:hover {
    color: #fff;
}

.dash_nav_ul_li:not(.active):hover .dash_nav_ul_li_ul {
    display: block;
    background: #273B4A;
    position: absolute;
    width: 240px;
    top: 0;
    left: 100%;
    z-index: 10;
}

.dash_nav_ul_li.active .dash_nav_ul_li_a,
.dash_nav_ul_li.active .dash_nav_ul_li_a:hover {
    border-color: #0090C3;
    color: #F9FAFA;
}

.dash_nav_ul_li.active .dash_nav_ul_li_a span:before {
    content: "\ea0b";
}

.dash_nav_ul_li.active .dash_nav_ul_li_a + .dash_nav_ul_li_ul {
    display: block;
}

.dash_nav_ul_li_ul_li.active .dash_nav_ul_li_ul_a {
    color: #fff;
}

@media (max-width: 80em) {
    .dash_nav {
        margin-left: -240px;
    }

    .dash_nav_ul_li_ul {
        display: block;
    }

    .dash_nav_ul_li:not(.active):hover .dash_nav_ul_li_ul {
        position: relative;
        left: 0;
    }
}

/*
DASH MAIN
*/
.dash_main {
    background: #F3F3F4;
    flex-basis: 100%;
    min-width: 320px;
}

.dash_main_past_due {
    padding: 10px;
    text-align: center;
    background: #EB5463;
    color: #fff;
    font-size: 0.6em;
    font-weight: 600;
    text-transform: uppercase;
}

.dash_main_past_due a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

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

.dash_main_header {
    background: #fff;
    display: flex;
    flex-wrap: nowrap;
    padding: 20px;
    border-bottom: 1px solid #E7EAEC;
    justify-content: space-between;
}

.dash_main_header_invite_club_fsphp {
    flex-basis: 100%;
    background-color: #1E2026 !important;
    color: #FFFFFF;
    padding: 20px;
    font-weight: bold;
    text-align: center;
}

.dash_main_header_invite_club_fsphp a {
    color: #ffffff;
    text-decoration: none;
}

.dash_main_header_invite_club_fsphp_btn {
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 30px;
}

.dash_main_header_invite_club_fsphp_btn:hover {
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
}

.dash_main_header_menu {
    padding: 5px 10px;
    background: #008EC0;
    color: #fff;
    cursor: pointer;
    font-size: 0.8em;
    margin: 0 !important;
    align-self: center;
}

.dash_main_header_menu:hover {
    background: #15a9db;
}

.dash_main_header_view {
    font-size: 0.8em;
    padding: 5px 0;
    margin-left: 15px;
    font-weight: 300;
    width: 100%;
    color: #999C9E;
}

.dash_main_header_view span {
    display: inline;
}

.dash_main_header_view a {
    font-weight: 600;
    text-decoration: none;
    color: #999C9E;
}

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

.dash_main_header_tools {
    flex-basis: 50%;
    text-align: right;
    font-size: 0.8em;
    padding: 5px;
    align-self: center;
}

.dash_main_header_tools_item {
    text-decoration: none;
    color: #999C9E;
    cursor: pointer;
    margin-right: 20px !Important;
}

.dash_main_header_tools_item_logoff {
    font-weight: 500;
    margin-left: 3px;
}

.dash_main_header_tools_item_notify {
    position: relative;
}

.dash_main_header_tools_item_notify b {
    position: absolute;
    padding: 2px 6px;
    font-size: 0.6em;
    font-weight: 100;
    background: #EB5463;
    color: #fff;
    bottom: 50%;
    left: 50%;
    border-radius: 2px;
}

.dash_main_header_tools_item:last-child {
    margin-right: 0 !Important;
}

.dash_main_header_tools_item:hover {
    color: #555;
}

/*
DASH VIWES
*/
.dash_view {
    display: none;
}

.dash_view_desc {
    display: flex;
    position: relative;
    padding: 20px 30px;
    background: #E7EAEC;
    font-size: 0.9em;
    font-weight: 500;
    align-items: center;
    color: #999;
}

.dash_view_desc_info {
    flex-basis: 80%;
}

.dash_view_desc_info p {
    max-width: 720px;
}

.dash_view_desc_icon {
    padding-right: 20px;
    font-size: 3em;
    margin: 0 !important;
    line-height: 1;
    color: #999;
}

.dash_view_desc_action {
    flex-basis: 20%;
    text-align: right;
    padding-left: 20px;
}

.dash_view_desc_action_link {
    padding: 5px 20px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    white-space: nowrap;
}

.dash_view_desc_action_link:hover {
    color: #fff;
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.dash_view_desc_activities {
    justify-content: flex-end;
    align-items: center;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.7em;
}

@media (max-width: 32em) {
    .dash_view_desc {
        flex-wrap: wrap;
    }

    .dash_view_desc_icon {
        display: none;
    }

    .dash_view_desc_info,
    .dash_view_desc_action {
        flex-basis: 100%;
        justify-content: center;
        margin-top: 20px;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .dash_view_desc_action {
        margin-top: 20px;
    }

    .dash_view_desc_action_link {
        display: block;
        width: 100%;
    }
}

@media (max-width: 40em) {
    .dash_view_desc_activities {
        justify-content: center;
    }

    .dash_main_header_tools_item_logoff {
        display: none;
    }
}

.dash_view_desc_activities a {
    display: inline-block;
    margin-left: 5px !Important;
    text-decoration: none;
    color: #888;
    padding: 5px 10px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
}

.dash_view_desc_activities a:hover {
    background: #0090C3;
    color: #fff;
}

.dash_view_ops {
    padding: 10% 0;
    text-align: center;
    color: #888;
    max-width: 100%;
}

.dash_view_ops .icon-notext {
    margin: 0 !Important;
    font-size: 8em;
}

.dash_view_ops h2 {
    font-size: 2em;
    margin: 0 0 20px 0;
}

.dash_view_ops p {
    font-size: 0.875em;
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
}

/*
DASH HOME
*/
.dash_view_home {
    padding: 10px;
}

/*DASH ACTIVITIES*/
.dash_view_activities {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
}

.dash_view_activities_title {
    color: #888;
    font-weight: 100;
    font-size: 1em;
    margin: 1.5%;
}

.dash_view_activities_favorites {
    flex-basis: 70%;
}

.dash_view_activities_favorites_notfound {
    margin: 1.5%;
    color: #999;
    font-size: 0.875em;
}

.dash_view_activities_favorites_notfound p {
    margin: 20px 0;
}

.dash_view_activities_favorites_notfound a {
    color: #999;
    font-weight: bold;
    text-decoration: none;
}

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

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

.dash_view_info_content_box {
    flex-basis: calc(33.33% - 20px);
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    /*background: #1E2026;*/
}

.dash_view_info_content_box h3{
    font-size: 0.8em;
    text-align: left;
    color: #fff;
    font-weight: bold;
    opacity: 0.8;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}

.dash_view_info_content_box_info{
    padding: 40px;
    text-align: center;
}

.dash_view_info_content_box_info h4{
    font-size: 1.5em;
    color: #f7f7f7;
    font-weight: 600;
}

.dash_view_info_content_box_info p{
    font-size: 0.6em;
    text-transform: uppercase;
    color: #fff;    
}

.dash_view_info_content_box_contador{
    padding: 40px 0;
    text-align: center; 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.dash_view_info_content_box_contador_item{
    flex-basis: calc(25% - 10px);
    margin: 6px 5px 0 5px;
    flex-direction: column;
}

.dash_view_info_content_box_contador_item h4{
    font-size: 1.4em;
    color: #f7f7f7;
    font-weight: 600;
}

.dash_view_info_content_box_contador_item p{
    font-size: 0.5em;
    text-transform: uppercase;
    color: #fff; 
}

.dash_view_info_content_box_info h4{
    font-size: 1.5em;
    color: #f7f7f7;
    font-weight: 600;
}

.dash_view_info_content_box_info p{
    font-size: 0.6em;
    text-transform: uppercase;
    color: #fff;    
}

.dash_view_info_content_footer{
    padding-bottom: 10px;
    text-align: center;
}

.dash_view_info_content_footer p{
    font-size: 0.7em;
    text-transform: uppercase;
    color: #fff;     
}

@media (max-width: 66em) {
    .dash_view_info_content_box {
        flex-basis: 46%;
        margin: 2%;
    }    
}

@media (max-width: 40em) {
    .dash_view_info_content_box {
        flex-basis: 100%;
    } 
    
    .dash_view_info_content_footer p{
        font-size: 0.8em;
    }
    
    .dash_view_info_content_box_info h4{
        font-size: 1.6em;
    }

    .dash_view_info_content_box_info p{
        font-size: 0.7em;
    }
    
    .dash_view_info_content_box h3{
        font-size: 0.9em;
    }
}


/*MY ACTIVITIES*/
.dash_view_activities_newclasses_content {
    display: flex;
    flex-wrap: wrap;
}

.dash_view_activities_newclasses {
    margin-top: 30px;
    flex-basis: 47%;
    
}

.dash_view_activities_newclasses_title {
    flex-basis: 100%;
    color: #888;
    font-weight: 100;
    font-size: 1em;
    margin: 1.5%;
    border-bottom: 1px dashed #a2a2a2;
    padding-bottom: 5px;
}

.dash_view_activities_newclasses article {
    flex-basis: 100%;
    margin: 1.5%;
    display: flex;
    align-items: flex-start;
    margin-top: 15px;
    font-size: 0.8em;
    color: #555;
}

.dash_view_activities_newclasses article p {
    flex-basis: 100%;
}

.dash_view_activities_newclasses article p a {
    text-decoration: none;
    color: #999;
}

.dash_view_activities_newclasses article p a:hover {
    text-decoration: underline;
}

.dash_view_activities_newclasses article b{
    font-weight: 600;
}

/*ACTIVITIES SIDEBAR*/
.dash_view_activities_sidebar {
    flex-basis: calc(30% - 20px);
    margin-left: 20px;
}

.dash_view_activities_sidebar_widget {
    border: 1px solid #E8EAEC;
    border-bottom: 5px solid #E8EAEC;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    margin-bottom: 20px;
    padding: 20px;
}

.dash_view_activities_sidebar_widget_skillset {
    background: #eee;
    margin-bottom: 5px;
    font-size: 0.7em;
    /*text-transform: uppercase;*/
    color: #fbfbfb;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    overflow: hidden;
    font-weight: bold;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.dash_view_activities_sidebar_widget_skillset:last-of-type {
    margin-bottom: 0;
}

.dash_view_activities_sidebar_widget_skillset span {
    display: inline-block;
    padding: 6px 10px;
    white-space: nowrap;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.2);
    /*text-shadow: 1px 1px 0 rgba(0,0,0,0.4);*/
}

.dash_view_activities_sidebar_widget_doctor {
    display: flex;
    padding: 10px;
    width: 100%;
}

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

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

.dash_view_activities_sidebar_widget_doctor img:hover {
    opacity: 1;
}

.dash_view_activities_sidebar_widget:last-child {
    margin-bottom: 0;
}

.dash_view_activities_sidebar_widget_title {
    font-size: 0.9em;
    font-weight: bold;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E8EAEC;
}

.dash_view_activities_sidebar_widget_content {
    font-size: 0.8em;
    color: #888;
}

.dash_view_activities_sidebar_widget_content_notfound {
    padding: 30px;
    text-align: center;
    color: #ccc;
}

/*ACTIVITIES SIDEBAR :: CONQUEST*/
.dash_view_activities_sidebar_conquests {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.dash_view_activities_sidebar_conquests_conquest {
    flex-basis: calc(20% - 10px);
    margin: 5px;
    cursor: pointer;
    opacity: 0.7;
}

.dash_view_activities_sidebar_conquests_conquest:hover {
    opacity: 1;
}

.dash_view_activities_sidebar_conquests_modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 10;
}

.dash_view_activities_sidebar_conquests_modal_box {
    width: 400px;
    max-width: 90%;
    margin: auto;
    background: #fff;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    overflow: hidden
}

.dash_view_activities_sidebar_conquests_modal_box_content {
    padding: 30px;
}

.dash_view_activities_sidebar_conquests_modal_box_content h3 {
    font-size: 1.4em;
    text-transform: uppercase;
}

.dash_view_activities_sidebar_conquests_modal_box_content p {
    margin-top: 20px;
    font-size: 1em;
    font-weight: 100;
}

/*ACTIVITIES SIDEBAR :: BLOGS*/
.dash_view_activities_sidebar_blogs_article {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.dash_view_activities_sidebar_blogs_article:last-of-type {
    margin: 0;
}

.dash_view_activities_sidebar_blogs_article_img {
    flex-basis: 20%;
}

.dash_view_activities_sidebar_blogs_article_content{
    flex-basis: 80% !important;
    padding-left: 20px;    
}

.dash_view_activities_sidebar_blogs_article h4{
    font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 12px !important;
    color: #999999;
}

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

.dash_view_activities_sidebar_blogs_article p {
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 7px;
    color: #A5A5A5;
}

.dash_view_activities_sidebar_blogs_article div {
    flex-basis: 25%;
}

.dash_view_activities_sidebar_blogs_article h5 {
    flex-basis: 75%;
    padding-left: 15px;
    font-weight: 600;
    font-size: 0.9em;
}

.dash_view_activities_sidebar_blogs_article a {
    color: #999;
    text-decoration: none;
}

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

@media (max-width: 66em) {
    .dash_view_activities_favorites {
        flex-basis: 100%;
    }

    .dash_view_activities_sidebar {
        flex-basis: 100%;
        margin: 30px 0 0 0;
    }

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

    .dash_view_activities_sidebar_widget {
        flex-basis: 46%;
        margin: 2%;
    }
}

@media (max-width: 46em) {
    .dash_view_activities_favorites_content_course {
        flex-basis: 47%;
    }
    
    .dash_view_activities_newclasses {
        margin-top: 30px;
        flex-basis: 100%;
    }

    .dash_view_activities_newclasses article {
        flex-basis: 47%;
    }
}

@media (max-width: 40em) {
    .dash_view_activities_sidebar_widget {
        flex-basis: 100%;
        margin: 0 0 30px 0;
    }
}

@media (max-width: 30em) {
    .dash_view_activities_favorites_content_course {
        flex-basis: 100%;
        margin: 30px 0 0 0;
    }

    .dash_view_activities_newclasses article {
        flex-basis: 100%;
        margin: 20px 0 0 0;
    }
}

/*PROFILE*/
.dash_profile {
    max-width: 100%;
    background: #fff;
    flex-basis: 100%;
    flex-wrap: wrap;
    padding: 30px;
    margin: 30px 20px;
    border: 1px solid #E8EAEC;
    border-bottom: 5px solid #E8EAEC;
    border-radius: 6px;
    -web-kit-border-radius: 6px;
    -moz-border-radius: 6px;
}

.dash_profile_env {
    margin-bottom: 20px;
}

.dash_profile_section {
    max-width: 100%;
    margin-bottom: 30px;
}

.dash_profile_section:last-of-type {
    margin-bottom: 0;
}

.dash_profile_section_header {
    margin-bottom: 30px;
}

.dash_profile_section_header h3 {
    font-size: 1.5em;
    font-weight: 100;
    margin-bottom: 20px;
    color: #777;
}

.dash_profile_section_header p {
    font-size: 0.875em;
    font-weight: 100;
    color: #999;
    max-width: 100%;
}

.dash_profile_section_content {
    padding: 20px;
    color: #999;
}

/*photo*/
.dash_profile_section_content_photo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.dash_profile_section_content_photo_img {
    flex-basis: 10%;
}

.dash_profile_section_content_photo_env {
    flex-basis: 90%;
    padding-left: 30px;
}

.dash_profile_section_content_photo_env form {
    margin-bottom: 10px;
}

.dash_profile_section_content_photo_env form input {
    display: none;
}

.dash_profile_section_content_photo_env_link {
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    color: #5E9CEA;
}

.dash_profile_section_content_photo_env_link:hover {
    color: #008EC0;
    text-decoration: underline
}

/* Esconde o input */
input[type='file'] {
  display: none
}

.dash_profile_section_content_photo_env p {
    font-size: 0.8em;
    color: #ccc;
}

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

.dash_profile_section_form label {
    flex-basis: calc(50% - 20px);
    margin: 0 20px 20px 0;
}

.dash_profile_section_form label span {
    display: block;
    margin-bottom: 15px;
    margin-left: 5px;
    font-size: 0.8em;
    font-weight: 100;
    color: #999;
}

.dash_profile_section_form label input {
    font-size: 0.8em;
    padding: 16px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.dash_profile_section_form label select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff url(../_img/select.png) right 15px center no-repeat;
    font-size: 0.8em;
    padding: 16px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    cursor: pointer;
}

.dash_profile_section_form input:read-only {
    color: #CCC;
}

.dash_profile_section_form input:read-only:hover {
    cursor: not-allowed;
}

.dash_profile_section_form_save .btn {
    width: 300px;
    max-width: 100%;
    font-size: 1em;
    margin: 20px 0 0 0;
}

.dash_profile_certificates_notfound {
    padding: 30px;
    background: #fbfbfb;
    color: #999;
    display: flex;
    align-items: flex-start;
    font-size: 0.9em;
    font-weight: 100;
}

.dash_profile_certificates_notfound span {
    font-size: 2em;
    padding-right: 3%;
}

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

.dash_profile_certificates_content_cet {
    flex-basis: calc(25% - 20px);
    margin: 10px;
    background: #fbfbfb;
}

.dash_profile_certificates_content_cet img {
    width: 100%;
}

.dash_profile_certificates_content_cet_content {
    padding: 30px;
    text-align: center;
}

.dash_profile_certificates_content_cet_content h3 {
    font-size: 0.8em;
    font-weight: 500;
    color: #777;
}

.dash_profile_certificates_content_cet_content .key {
    font-size: 0.7em;
    color: #999;
    font-weight: 300;
    margin: 10px 0 20px 0;
}

.dash_profile_certificates_content_cet_content .key a {
    color: #999;
    text-decoration: none;
}

.dash_profile_certificates_content_cet_content .key a:hover {
    text-decoration: underline;
}

.dash_profile_certificates_content_cet_content .print {
    font-size: 0.7em;
    font-weight: bold;
    text-decoration: none;
    color: #999;
    padding: 10px 15px;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
}

.dash_profile_certificates_content_cet_content .print:hover {
    background: #0090C3;
    color: #fff;
}

.dash_profile_env_addr {
    margin: 30px 0 20px 0;
    width: 100%;
}

/*SIGNATURE PROFILE*/
.dash_profile_plan {

}

.dash_profile_plan_header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    max-width: 100%;
}

.dash_profile_plan_header_sign {
    flex-basis: 50%;
}

.dash_profile_plan_level {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex: 1;
    max-width: 100%;
}

.dash_profile_plan_level .level {
    flex-basis: 10%;
    margin: 3%;
    text-align: center;
    font-size: 0.7em;
    color: #ccc;
}

.dash_profile_plan_level .level img {
    max-width: 100%;
    margin-bottom: 10px;
}

.dash_profile_plan_level .level_profile {
    flex-basis: 18%;
}

.dash_profile_plan_section.fature {
    margin-top: 10px;
}

.dash_profile_plan_section header {
    margin-bottom: 30px;
    color: #888888;
}

.dash_profile_plan_section header h4 {
    font-size: 1.2em;
    font-weight: 100;
    margin-bottom: 5px;
}

.dash_profile_plan_section header p {
    font-size: 0.875em;
    font-weight: 100;
}

.dash_profile_plan_section_plan {
    padding: 30px;
    border: 1px solid #F3F3F4;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    background: #fff;
}

.dash_profile_plan_section_plan header {
    border-bottom: 1px solid #F3F3F4;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.dash_profile_plan_section_plan header h3 {
    font-size: 2em;
    font-weight: bold;
    color: #999;
    flex-basis: 100%;
}

.dash_profile_plan_section_plan_past_due {
    padding: 20px;
    font-size: 1em;
    background: #EB5463;
    color: #fff;
    margin-bottom: 30px;
}

.dash_profile_plan_section_plan_content_section {
    margin-bottom: 40px;
    color: #999;
}

.dash_profile_plan_section_plan_content_section ul {
    margin-top: 20px;
}

.dash_profile_plan_section_plan_content_section ul li {
    font-size: 0.8em;
    margin-bottom: 5px;
}

.dash_profile_plan_section_plan_content_section ul li .club_level {
    padding: 3px 6px;
    border: 1px solid #61DDBC;
    color: #61DDBC;
    font-size: 0.7em;
    margin-left: 10px;
    opacity: 0.5;
    border-bottom-width: 3px;
    border-left-width: 2px;
}

.dash_profile_plan_section_plan_content_section:last-of-type {
    margin-bottom: 0;
}

.dash_profile_plan_section_plan_content_section h4 {
    font-weight: bold;
    color: #999;
    margin-bottom: 20px;
}

.dash_profile_plan_section_plan_content_section p {
    font-size: 0.9em;
    margin-top: 15px;
}

.dash_profile_plan_section_plan_content_section_pay {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #F3F3F4;
    font-size: 0.8em;
    color: #999;
    margin-bottom: 10px;
}

.dash_profile_plan_section_plan_content_section_pay .method {
    width: 35px;
    margin-top: -4px;
    padding-right: 10px;
}

.dash_profile_plan_section_plan_content_section_pay .digits {
    padding-left: 10px;
}

.dash_profile_plan_section_plan_content_section_pay .print {
    padding-left: 10px;
    font-size: 0.6em;
    font-weight: bold;
}

.dash_profile_plan_section_plan_content_section_pay_payment,
.dash_profile_plan_section_plan_content_section_pay_change {
    display: inline-block;
    padding: 8px 15px 7px 15px;
    text-transform: uppercase;
    border: 1px solid #F3F3F4;
    font-size: 0.7em;
    font-weight: 600;
    cursor: pointer;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
}

.dash_profile_plan_section_plan_content_section_pay_change:hover {
    background: #46CEAC;
    color: #fff;
    border-color: #46CEAC;
}

.dash_profile_plan_section_plan_content_section_pay_payment {
    color: #fff;
    background: #61DDBC;
    border-color: #61DDBC;
    text-decoration: none;
}

.dash_profile_plan_section_plan_content_section_pay_payment:hover {
    background: #35BA9B;
    border-color: #35BA9B;
}

.dash_profile_plan_section_plan_content_section_cancel {
    color: #EB5463;
    font-weight: bold;
    text-decoration: none;
    opacity: 0.5;
    cursor: pointer;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
}

.dash_profile_plan_section_plan_content_section_cancel:hover {
    opacity: 1;
}

/*plans list*/
.dash_profile_plan_section_plan_content_section_plans_box {
    display: none;
}

.dash_profile_plan_section_plan_content_section_plans_box_info {
    margin: 30px 0 0 0;
    font-weight: 100;
    font-size: 0.875em;
    color: #888888;
}

.dash_profile_plan_section_plan_content_section_plans {
    margin-top: 30px;
    border: 1px solid #e5e3e3;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    display: flex;
    flex: 1;
    flex-wrap: wrap;
}

.dash_profile_plan_section_plan_content_section_plans .section {
    flex-basis: 30%;
    padding: 25px;
    margin: 0;
    overflow: hidden;
}

.dash_profile_plan_section_plan_content_section_plans .plan {
    background: #e5e3e3;
    flex-basis: 40%;
    text-align: center;
}

.dash_profile_plan_section_plan_content_section_plans .plan p {
    font-size: 2em;
    margin-bottom: 20px;
}

.dash_profile_plan_section_plan_content_section_plans .checkform {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.dash_profile_plan_section_plan_content_section_plans .checkform input {
    padding: 9px 15px;
    font-size: 0.8em;
    border: none;
    outline: none;
    border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    -webkit-border-radius: 4px 0 0 4px;
}

.dash_profile_plan_section_plan_content_section_plans .checkform button {
    border: none;
    background: #46CEAC;
    color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
}

.dash_profile_plan_section_plan_content_section_plans .checkform button:hover {
    background: #35BA9B;
}

.dash_profile_plan_section_plan_content_section_plans .info {
    font-size: 0.7em;
    font-weight: 100;
}

/*payment list*/
.dash_profile_plan_section_plan_content_section_pay_change_box {
    display: none;
}

.dash_profile_plan_section_plan_content_section_pay_change_box_fix {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.dash_profile_plan_section_plan_content_section_pay_change_box_pay {
    padding: 30px;
    border: 1px solid #F3F3F4;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    flex-basis: calc(50% - 15px);
}

.dash_profile_plan_section_plan_content_section_pay_change_box_pay:last-of-type {
    margin-left: 30px;
}

.dash_profile_plan_section_plan_content_section_pay_change_box_pay > p {
    font-size: 1em;
    font-weight: 100;
    margin: 0 0 30px 0;
    text-align: center;
}

.dash_profile_plan_section_plan_content_section_pay_change_box_pay > p span {
    display: block;
    margin-top: 5px;
    font-weight: 600;
}

.dash_profile_plan_section_plan_content_section_pay_change_box_pay form {

}

.dash_profile_plan_section_plan_content_section_pay_change_box_pay form p {
    margin-top: 28px;
}

.dash_profile_plan_section_plan_content_section_pay_change_box_pay form input {
    width: 100%;
    padding: 15px;
    margin: 0 0 10px 0;
    background: #fbfbfb;
    border: none;
    font-size: 0.8em;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.dash_profile_plan_section_plan_content_section_pay_change_box_pay form .input {
    width: calc(50% - 5px);
}

.dash_profile_plan_section_plan_content_section_pay_change_box_pay form .input:last-of-type {
    margin-left: 5px;
}

.dash_profile_plan_section_plan_content_section_pay_change_box_pay form button {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 15px 20px;
    text-transform: uppercase;
    border: 1px solid #61DDBC;
    font-size: 0.7em;
    font-weight: 600;
    cursor: pointer;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    color: #fff;
    background: #61DDBC;
    text-decoration: none;
}

.dash_profile_plan_section_plan_content_section_pay_change_box_pay form button:hover {
    background: #35BA9B;
    border-color: #35BA9B;
}

.dash_profile_plan_section_plan_content_section_empty {
    color: #999;
    font-size: 0.8em;
    padding: 30px;
    border: 1px solid #F3F3F4;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.dash_profile_plan_section_plan_content_section_empty a {
    font-size: 0.9em;
}

.dash_profile_plan_section_plan_content_section_courses {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.dash_profile_plan_section_plan_content_section_courses article {
    flex-basis: calc(16.66%);
    text-align: center;
    padding: 10px;
}

.dash_profile_plan_section_plan_content_section_courses article h4 {
    font-size: 0.75em;
    margin: 10px 0 0 0;
}

.dash_profile_plan_section_plan_content_section_courses article p {
    font-size: 0.75em;
    margin: 5px 0 0 0;
}

@media (max-width: 62em) {

    .dash_profile_plan_section_plan_content_section_plans .checkform {
        display: block;
    }

    .dash_profile_plan_section_plan_content_section_plans .checkform input,
    .dash_profile_plan_section_plan_content_section_plans .checkform button {
        border-radius: 4px;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
    }

    .dash_profile_plan_section_plan_content_section_plans .checkform button {
        margin: 10px 10px 0 10px;
    }

    .dash_profile_plan_section_plan_content_section_plans_box_info {
        font-size: 0.7em;
    }
}

@media (max-width: 52em) {
    .dash_profile_plan_section_plan_content_section_plans .plan,
    .dash_profile_plan_section_plan_content_section_plans .section {
        flex-basis: 100%;
        text-align: center;
    }

    .dash_profile_plan_section_plan_content_section_plans .section {
        padding: 0 30px;
    }

    .dash_profile_plan_section_plan_content_section_plans .plan {
        margin-bottom: 10px;
        padding: 30px;
    }

    .dash_profile_plan_section_plan_content_section_plans .plan p {
        font-size: 1.4em;
    }

    .dash_profile_plan_section_plan_content_section_plans .price {
        padding-bottom: 30px;
    }

    .dash_profile_plan_section_plan_content_section_pay_change_box_pay {
        flex-basis: 100%;
        margin: 0 0 30px 0 !important;
    }

    .dash_profile_plan_section_plan_content_section_courses article {
        flex-basis: 25%;
    }
}

@media (max-width: 38em) {
    .dash_profile_plan_section_plan_content_section_pay_change_box_pay form .input {
        width: 100%;
        margin: 0 0 10px 0 !Important;
    }

    .dash_profile_plan_section_plan_content_section_courses article {
        flex-basis: 50%;
    }
}

/*payment list*/

.dash_profile_plan_section_payments {
    border: 1px solid #F2F2F2;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    overflow: auto;
}

.dash_profile_plan_section_payments_order {
    min-width: 900px;
    padding: 20px;
    background: #fbfbfb;
    font-size: 0.8em;
    border-top: 1px solid #F2F2F2;
}

.dash_profile_plan_section_payments_header {
    padding: 10px 20px;
    font-size: 0.7em;
    background: #f5f5f5;
}

.dash_profile_plan_section_payments_order_detail,
.dash_profile_plan_section_payments_order_detail_invoice {
    display: flex;
}

.dash_profile_plan_section_payments_order_detail p,
.dash_profile_plan_section_payments_order_detail_invoice p {
    flex-basis: 17.5%;
}

.dash_profile_plan_section_payments_order_detail .product,
.dash_profile_plan_section_payments_order_detail_invoice .product {
    flex-basis: 30%;
}

.dash_profile_plan_section_payments_order_detail .payment,
.dash_profile_plan_section_payments_order_detail_invoice .payment {
    display: flex;
    align-items: center;
}

.dash_profile_plan_section_payments_order_detail .payment .img,
.dash_profile_plan_section_payments_order_detail_invoice .payment .img {
    flex-basis: 15%;
}

.dash_profile_plan_section_payments_order_detail .payment .txt,
.dash_profile_plan_section_payments_order_detail_invoice .payment .txt {
    flex-basis: 85%;
    padding-left: 10px;
}

.dash_profile_plan_section_payments_order_detail_invoice {
    margin-top: 10px;
    font-weight: 100;
}

.dash_profile_plan_section_payments_order_detail_invoice a {
    font-weight: 500;
    color: #35BA9B;
    text-decoration: none;
}

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

.dash_profile_plan_section_payments_more {
    display: block;
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 0.7em;
    color: #999;
    cursor: pointer;
}

.dash_profile_plan_section_payments_more:hover {
    text-decoration: underline;
}

@media (max-width: 75em) {
    .dash_profile_certificates_content_cet {
        flex-basis: 30.33%;
    }
}

@media (max-width: 52em) {
    .dash_profile_certificates_content_cet {
        flex-basis: 47%;
    }

}

@media (max-width: 42em) {
    .dash_profile_section_content_photo {
        align-items: flex-start;
    }

    .dash_profile_section_content_photo_img {
        flex-basis: 100%;
    }

    .dash_profile_section_content_photo_img img {
        width: 120px;
        margin-bottom: 30px;
    }

    .dash_profile_section_content_photo_env {
        flex-basis: 100%;
        padding: 0;
    }

    .dash_profile_section_form label {
        flex-basis: 100%;
        margin: 0 0 20px 0;
    }

    .dash_profile_certificates_content_cet {
        flex-basis: 100%;
        margin: 0 0 30px 0;
    }

    .dash_profile_plan_header_sign {
        flex-basis: 100%;
    }

    .dash_profile_plan_level {
        margin-top: 30px;
        flex-basis: 100%;
        justify-content: center;
    }
}

/*PLAY COMMENTS*/
.app_upinside_play_comments {
    background: #fbfbfb;
    padding: 40px 0;
}

.app_upinside_play_comments_content {
    max-width: 90%;
    margin: 0 auto;
}

.app_upinside_play_comments_content_header {
    text-align: center;
    margin-bottom: 40px;
}

.app_upinside_play_comments_content_header h3 {
    font-size: 1.8em;
    color: #999;
}

.app_upinside_play_comments_content_form {
    background: #F5F5F5;
    padding: 10px 20px 20px 20px;
    margin-bottom: 20px;
}

.app_upinside_play_comments_list_comment .htmlcontent h2,
.app_upinside_play_comments_list_comment .htmlcontent h3,
.app_upinside_play_comments_list_comment .htmlcontent h4,
.app_upinside_play_comments_list_comment .htmlcontent p {
    padding: 20px 0;
}

.app_upinside_play_comments_list_comment .likecontent {
    margin-top: 20px;
    font-size: 0.9em;
    color: #999;
}

.app_upinside_play_comments_list_comment {
    border-bottom: 1px solid #eee;
    padding: 30px 0 0 0;
}

.app_upinside_play_comments_list_comment_c {
    display: flex;
    flex: 1;
}

.app_upinside_play_comments_list_comment:last-child {
    border-bottom: 0;
}

.app_upinside_play_comments_list_comment p {
    padding: 10px 0 !important;
}

.app_upinside_play_comments_list_comment p:first-child {
    padding-top: 0 !important;
}

.app_upinside_play_comments_list_comment p:last-child {
    padding-bottom: 0 !important;
}

.app_upinside_play_comments_list_comment_c .thumb {
    flex-basis: 6%;
}

.app_upinside_play_comments_list_comment_c .thumb img {
    width: 100%;
    padding: 3px;
}

.app_upinside_play_comments_list_comment_c .comment {
    flex-basis: 94%;
    max-width: 100%;
    padding-left: 20px;
    font-size: 0.9em;
}

.app_upinside_play_comments_list_comment_c .comment .userconrtent {
    margin-bottom: 20px;
    font-weight: 500;
    color: #999;
}

.app_upinside_play_comments_list_comment_c .comment .userconrtent_like {
    display: inline-block;
    margin-left: 8px;
    text-transform: uppercase;
    font-weight: bold;
}

.app_upinside_play_comments_list_comment_c .comment .userconrtent_like.active {
    color: #EB5463;
}

.app_upinside_play_comments_list_comment_responses_c {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    margin-left: 8%;
}

.app_upinside_play_comments_content_form_response {
    margin-top: 40px;
    margin-left: 8%;
}

.app_upinside_play_comments_content_form_response .app_upinside_play_comments_content_form {
    display: none;
    margin-bottom: 30px;
}

.app_upinside_play_comments_content_form_response_add .add_response {
    display: inline-block;
    margin-bottom: 30px;
    padding: 5px 10px;
    border: 1px solid #999;
    border-bottom-width: 3px;
    border-left-width: 2px;
    color: #999;
    font-size: 0.7em;
    text-transform: uppercase;
    font-weight: 600;
}

/*PLAY REQUESTS*/

@media (max-width: 50em) {
    .app_upinside_play_content_article {
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 32em) {
    .app_upinside_play_content_article {
        flex-basis: 100%;
        margin: 0 0 10px 0;
    }
}

@media (max-width: 44em) {
    .app_upinside_play_comments_list_comment_c .thumb {
        flex-basis: 12%;
    }

    .app_upinside_play_comments_list_comment_c .comment {
        flex-basis: 88%;
    }
}

/*PLAY REQUESTS*/
.app_upinside_play_requests {
    padding: 10px;
}

.app_upinside_play_requests_info {
    padding: 20px;
    margin: 20px 20px 0 20px;
    border: 1px solid #EEEEEE;
    font-size: 0.875em;
    color: #555555;
}

.app_upinside_play_requests_info span {
    display: inline-block;
    cursor: pointer;
    padding: 4px 10px;
    background: #333333;
    color: #ffffff;
    font-size: 0.95em;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.app_upinside_play_requests_info .send {
    background-color: #35ba9b;
}

.app_upinside_play_requests_info .send:hover {
    background-color: #46ceac;
}

.app_upinside_play_requests_info .info {
    background-color: #3aadd9;
}

.app_upinside_play_requests_info .info:hover {
    background-color: #4fc0e8;
}

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

.app_upinside_play_requests_voting_article {
    flex-basis: calc(25% - 20px);
    margin: 10px;
    background: #ffffff;
}

.app_upinside_play_requests_voting_article.me .app_upinside_play_requests_voting_article_asked {
    background: #3aadd9;
    color: #ffffff;
}

.app_upinside_play_requests_voting_article_asked {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #EEEEEE;
    text-align: left;
    color: #444444;
}

.app_upinside_play_requests_voting_article_asked img {
    width: 20%;
    padding: 2px;
    background: rgba(0, 0, 0, 0.5);
}

.app_upinside_play_requests_voting_article_asked p {
    margin-left: 15px;
    font-size: 0.875em;
    text-transform: capitalize;
}

.app_upinside_play_requests_voting_article_content {
    padding: 20px;
    text-align: center;
}

.app_upinside_play_requests_voting_article_content h1 {
    font-size: 1em;
    font-weight: 300;
}

.app_upinside_play_requests_voting_article_content p {
    font-size: 0.875em;
    margin: 20px 0 0 0;
}

.app_upinside_play_requests_voting_article_content a {
    text-decoration: none;
    color: #555555;
}

.app_upinside_play_requests_voting_article_content a:hover {
    color: #000000;
}

.app_upinside_play_requests_voting_article_vote {
    display: block;
    padding: 10px;
    border: 1px solid #f76c82;
    color: #f76c82;
    font-weight: bold;
}

.app_upinside_play_requests_voting_article_vote:hover,
.app_upinside_play_requests_voting_article_vote.active {
    color: #ffffff;
    background: #f76c82;
}

.app_upinside_play_requests_voting_article_vote_production,
.app_upinside_play_requests_voting_article_vote_voting {
    color: #CCCCCC;
    font-size: 0.75em !important;
    text-transform: uppercase;
}

/*REQUEST FORM*/
.app_upinside_play_orders {
    margin: 20px 20px 0 20px;
}

@media (max-width: 30em) {
    .app_upinside_play_orders {
        margin: 10px;
        text-align: center;
    }
}

.app_upinside_play_orders_order {
    --color: #3aadd9;
    padding: 20px;
    border: 1px solid var(--color);
    color: var(--color);
    font-size: 0.85em;
    margin-top: 20px;
}

.app_upinside_play_request_modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
    overflow-y: auto;
    padding: 30px 0;
}

.app_upinside_play_request_modal_open {
    margin: 30px 0 10px 0;
    text-align: center;
}

.app_upinside_play_request_modal_open span {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #3aadd9;
    color: #3aadd9;
    font-size: 0.9em;
    font-weight: bold;
}

.app_upinside_play_request_modal_open span:hover {
    background: #3aadd9;
    color: #ffffff;
}

.app_upinside_play_request_modal_box {
    width: 500px;
    padding: 40px;
    max-width: 94%;
    margin: auto;
    background: #ffffff;
}

.app_upinside_play_request_modal_box h3 {
    font-size: 1.3em;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
}

.app_upinside_play_request_modal_box label {
    display: block;
    margin-bottom: 30px;
}

.app_upinside_play_request_modal_box label .field {
    font-size: 0.875em;
    display: block;
    margin-bottom: 20px;
    color: #555555;
}

.app_upinside_play_request_modal_box label input,
.app_upinside_play_request_modal_box label textarea {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 0.875em;
    border: 2px solid #F5F5F5;
    outline: none;
}

.app_upinside_play_request_modal_box label input:focus {
    border-color: #0A537D;
}

@media (max-width: 52em) {
    .app_upinside_play_requests_voting_article {
        flex-basis: calc(50% - 20px);
        margin: 10px;
    }
}

@media (max-width: 30em) {
    .app_upinside_play_requests_voting_article {
        flex-basis: 100%;
        margin: 0 0 10px 0;
    }
}

/*FORUM*/
.app_forum {
    padding: 10px;
}

.app_forum .box_wrap {
    flex-wrap: wrap-reverse;
}

.app_forum_content {
    flex-basis: calc(72% - 20px);
    overflow: hidden;
    margin: 10px;
}

.app_forum_content_header {
    margin-bottom: 20px;
}

.app_forum_content_header h2 {
    font-size: 1.2em;
    font-weight: 300;
}

.app_forum_content_topic {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.app_forum_content_topic_user {
    flex-basis: 7%;
    text-align: center;
}

.app_forum_content_topic_user img {
    padding: 3px;
}

.app_forum_content_topic_box {
    flex-basis: calc(93% - 20px);
    margin-left: 20px;
    background: #fbfbfb;
    padding: 20px;
}

.app_forum_content_topic_box {
    border-bottom: 3px solid #eee;
    color: #666;
}

.app_forum_content_topic_box .title {
    margin-bottom: 15px;
    font-size: 1em;
    font-weight: 300;
}

.app_forum_content_topic_box .title span {
    display: block;
    font-size: 0.8em;
    color: #999;
}

.app_forum_content_topic_box .title a {
    font-weight: bold;
}

.app_forum_content_topic_box .desc {
    font-size: 0.875em;
}

.app_forum_content_topic_box a {
    text-decoration: none;
    color: #666;
    transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
}

.app_forum_content_topic_box a:hover {
    color: #0090C3;
}

.app_forum_content_topic_box .title_status_open {
    color: #EB5463;
}

.app_forum_content_topic_box .title_status_close {
    color: #46CEAC
}

.app_forum_content_topic_box_meta {
    margin-top: 15px;
    font-size: 0.8em;
    font-weight: 300;
    color: #777;
}

.app_forum_content_topic_box_meta_favorite {
    cursor: pointer;
}

.app_forum_content_topic_box_meta_favorite:hover {
    color: #15a9db;
}

.app_forum_content_topic_box_meta_favorite_ac {
    color: #2A8C72;
}

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

.app_forum_sidebar_search {
    display: block;
    margin-bottom: 20px;
    background: #fff;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.app_forum_sidebar_search input,
.app_forum_sidebar_search button {
    padding: 0 15px;
    font-size: 0.875em;
    border: none;
    outline: none;
}

.app_forum_sidebar_search button {
    background: #3AADD9;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.app_forum_sidebar_search button:hover {
    background: #4FC0E8;
}

.app_forum_sidebar_search input {
    flex-basis: 100%;
    padding: 10px 5px 10px 15px;
}

.app_forum_sidebar_new {
    display: block;
    text-align: center;
}

.app_forum_sidebar_new_btn {
    display: block;
    text-decoration: none;
    padding: 10px 10px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    background: #4FC0E8;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
    font-size: 0.875em;
    border-bottom: 2px solid #3AADD9;
}

.app_forum_sidebar_new_btn:hover {
    background: #3AADD9;
    border-color: #3AADD9;
}

.app_forum_sidebar_widget {
    padding: 20px;
    background: #fbfbfb;
    margin-top: 20px;
    border-bottom: 2px #ccc solid;
}

.app_forum_sidebar_widget_title {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
}

.app_forum_sidebar_widget_link {
    display: block;
    margin-top: 10px;
    font-size: 0.875em;
    color: #888;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.app_forum_sidebar_widget_link span {
    margin-left: 10px;
    padding: 2px 6px;
    background: #eee;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    font-size: 0.7em;
    font-weight: bold;
}

.app_forum_sidebar_widget_link:hover {
    color: #0077B5;
}

.app_forum_sidebar_widget_link_ac {
    font-weight: bold;
}

.app_forum_sidebar_widget_link_sub {
    padding-left: 25px;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.app_forum_sidebar_widget_rocks {
    display: flex;
    margin-top: 10px;
    align-items: center;
    font-size: 0.875em;
    color: #777;
}

.app_forum_sidebar_widget_rocks .thumb {
    flex-basis: 18%;
    padding-right: 10px;
}

.app_forum_sidebar_widget_rocks .thumb img {
    padding: 2px;
}

.app_forum_sidebar_widget_rocks .user span {
    margin-left: 5px;
    padding: 2px 6px;
    background: #eee;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    font-size: 0.7em;
    font-weight: bold;
}

.app_forum_create {
    padding: 10px;
    width: 100%;
}

.app_forum_create label {
    display: block;
    margin-bottom: 30px;
}

.app_forum_create .title {
    font-size: 0.8em;
    text-transform: uppercase;
    color: #666;
    padding: 0 15px;
    margin-bottom: 15px;
    display: block;
}

.app_forum_create input,
.app_forum_create select {
    display: block;
    color: #555;
    width: 100%;
    padding: 15px;
    font-size: 1em;
    border: 1px solid #eee;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.app_forum_create select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff url(_img/select.png) right 15px center no-repeat;
}

.app_forum_create_form_act {
    text-align: right;
}

.app_forum_create_form_act_btn {
    display: inline-block;
    border: none;
    padding: 15px 20px;
    font-size: 1.2em;
    font-weight: bold;
    width: 250px;
    max-width: 100%;
    background: #35BA9B;
    color: #fff;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}

.app_forum_create_form_act_btn:hover {
    background: #46CEAC;
}

.app_forum_create_form_act_btn_small {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 1em;
}

.app_forum_create_form_image {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.app_forum_create_form_image_box {
    width: 400px;
    max-width: 90%;
    margin: auto;
    padding: 30px;
    background: #fbfbfb;
}

.app_forum_create_form_image_box input {
    margin: 20px 0;
    display: block;
    padding: 15px;
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
}

.app_forum_create_form_image_box h3 {
    font-size: 1em;
    font-weight: 500;
    color: #777;
}

.app_forum_topic {
    width: 100%;
    padding: 20px;
}

.app_forum_topic_header {
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px;
}

.app_forum_topic_header h2 {
    font-weight: 300;
    font-size: 3em;
    line-height: 1;
    margin-bottom: 40px;
    color: #333;
}

.app_forum_topic_header_meta {
    display: block;
    margin: 0 0 20px 0;
    padding: 20px 20px 10px 20px;
    background: #eee;
    text-align: center;
}

.app_forum_topic_header_meta > span {
    display: inline-block;
    margin: 0 5px 10px 5px !Important;
    padding: 4px 8px;
    border: 1px solid #999;
    color: #777;
    opacity: 0.5;
    font-size: 0.7rem;
}

.app_forum_topic_header_meta .noaction,
.app_forum_topic_header_meta .noaction:hover {
    cursor: default;
    opacity: 0.5;
}

.app_forum_topic_header_meta > span:hover {
    opacity: 1;
}

.app_forum_topic_header_meta_delete:hover {
    background: #D94452;
    border-color: #D94452;
    color: #fff;
}

.app_forum_topic_header_meta_edit:hover {
    background: #3AADD9;
    border-color: #3AADD9;
    color: #fff;
}

.app_forum_topic_header_meta_flag {
    display: inline-block;
    margin: 0 5px 10px 5px !Important;
    padding: 4px 8px;
    border: 1px solid #999;
    color: #777;
    opacity: 0.5;
    text-decoration: none;
}

.app_forum_topic_header_meta_flag:hover {
    background: #F5B945;
    border-color: #F5B945;
    color: #fff;
    opacity: 1;
}

.app_forum_topic_header_meta_like:hover {
    background: #EB5463;
    border-color: #EB5463;
    color: #fff;
}

.app_forum_topic_header_meta_favorite:hover {
    background: #4A88DA;
    border-color: #4A88DA;
    color: #fff;
}

.app_forum_topic_header_content {
    display: flex;
    align-items: center;
    color: #555;
}

.app_forum_topic_header_content_img {
    flex-basis: 10%;
}

.app_forum_topic_header_content_img img {
    padding: 3px;
}

.app_forum_topic_header_content_inf {
    padding-left: 20px;
    font-size: 1.2em;
}

.app_forum_topic_header_content_inf p {
    font-size: 0.875rem;
    font-weight: 300;
}

.app_forum_topic_header_content_inf span {
    font-weight: bold;
    color: #215FA4;
}

.app_forum_topic_content {
    display: block;
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
}

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

.app_forum_topic_content_act {
    padding: 10px 25px;
}

.app_forum_topic_content_act span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #666;
    color: #666;
    margin: 5px;
    font-size: 0.875em;
}

.app_forum_topic_content_act span:hover {
    color: #0090C3;
    border-color: #0090C3;
}

.app_forum_topic_modal {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    color: #888;
}

.app_forum_topic_modal_box {
    width: 500px;
    max-width: 90%;
    margin: auto;
    padding: 30px;
    background: #fff;
    text-align: center;
    max-height: 90%;
    overflow: auto;
}

.app_forum_topic_modal_box p {
    margin: 10px 0 20px 0;
    font-size: 0.875em;
}

.app_forum_topic_modal_box select {
    display: block;
    color: #555;
    width: 100%;
    padding: 15px;
    font-size: 1em;
    border: 1px solid #eee;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff url(_img/select.png) right 15px center no-repeat;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    margin-bottom: 20px;
}

.app_forum_topic_modal_box .app_forum_create_form_act_btn_small {
    padding: 15px;
}

.app_forum_topic_modal_box_btns {
    display: flex;
    justify-content: space-between;
}

.app_forum_topic_modal_box_btns span {
    flex-basis: 45%;
}

.app_forum_topic_edit_btns {
    width: 400px;
    max-width: 100%;
    margin-top: 20px;
    margin-left: auto;
}

.app_forum_topic_responses {
    padding: 20px;
    background: #fff;
}

.app_forum_topic_reponse_thanks b {
    font-weight: normal;
}

.app_forum_topic_reponse_status_open {
    background: #46CEAC;
    border-color: #46CEAC !Important;
    color: #fff !Important;
}

@media (max-width: 62em) {
    .app_forum_content {
        flex-basis: 100%;
    }

    .app_forum_content_topic_user {
        flex-basis: 10%;
    }

    .app_forum_content_topic_box {
        flex-basis: 90%;
    }

    .app_forum_sidebar {
        flex-basis: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .app_forum_sidebar_ac {
        flex-basis: 100%;
        margin: 0 0 20px 0;
        display: flex;
    }

    .app_forum_sidebar_ac form,
    .app_forum_sidebar_ac div {
        flex-basis: 48%;
        margin: auto;
        justify-content: space-between;
    }

    .app_forum_sidebar_ac form {
        margin-left: 0;
    }

    .app_forum_sidebar_ac div {
        margin-right: 0;
    }

    .app_forum_sidebar_widget {
        margin: 0;
        flex-basis: 48%;
    }

    .app_forum_sidebar_widget_rock {
        display: none;
    }
}

@media (max-width: 36em) {
    .app_forum_sidebar_widget {
        margin: 0;
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .app_forum_content_topic_user {
        flex-basis: 12%;
    }

    .app_forum_content_topic_box {
        flex-basis: calc(88% - 20px);
        margin: 0 0 0 20px;
        word-break: break-all;
    }

    .app_forum_sidebar_ac {
        flex-wrap: wrap;
    }

    .app_forum_sidebar_ac form,
    .app_forum_sidebar_ac div {
        flex-basis: 100%;
    }

    .app_forum_sidebar_ac form {
        margin-bottom: 20px;
    }

    .app_forum_topic_header h2 {
        font-size: 2em;
    }

    .app_forum_topic_header_content_inf {
        font-size: 0.8em;
    }

    .app_forum_topic_header_content_img {
        flex-basis: 30%;
    }
}