.container, .content {
    height: unset !important;
}

.login_box{width: 600px; background: #fff; margin: auto; max-width: 90%; border: 1px solid #ccc; border-radius: 10px; overflow: hidden;}
.login_box header{width: 100%; padding: 25px 20px; text-align: center;}
.login_box header h1{font-size: 2em; font-weight: bold; color: #888; margin-bottom: 5px;}
.login_box header p{font-size: 0.7em; font-weight: 500; text-transform: uppercase;}
.login_box .trigger{text-align: center;}
.login_box .trigger a{font-weight: bold; text-decoration: none; color: inherit;}
.login_box .trigger a:hover{text-decoration: underline;}
.login_box form{width: 100%; padding: 25px;}

/*CHECKBOX*/
input[type='checkbox'] {
    appearance: none;
    height: 1.5em;
    position: relative;
    width: 1.5em;
    padding: 0 !important;
    cursor: pointer;
}

input[type='checkbox']::after, input[type='checkbox']::before {
    box-sizing: border-box;
    position: absolute;
}

input[type='checkbox']::after {
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    height: 75%;
    left: 50%;
    top: 50%;
    transform: scale(0.1) translate(-50%, -50%);
    transition: transform 0.2s;
    width: 40%;
}

input[type='checkbox']::before {
    border: 1px solid #3a3a3a;
    background-color: #fff;
    border-radius: 0.25em;
    content: '';
    height: 100%;
    transition: background-color 0.2s;
    width: 100%;
}

input[type='checkbox']:checked::after {
    transform: rotate(40deg) scale(1) translate(-115%, -32%);
}

input[type='checkbox']:checked::before {
    border: 1px solid #000;
    background-color: #000;
}

/*HEADERS BUTTONS*/
.btn-search,
.btn-search.btn-search-false{
    background-color: #062fac;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-search:hover,
.btn-search.btn-search-false:hover {
    background-color: #042b97;
}

.btn-search.btn-search-true {
    background-color: #00b494;
}

.btn-search.btn-search-true:hover {
    background-color: #00b494;
}

.btn-search:disabled {
    background-color: #999;
    cursor: default;
}

.btn-delete {
    background-color: #dc3545;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-delete:hover {
    background-color: #c82333;
}

.btn-delete:disabled {
    background-color: #999;
    cursor: default;
}


/*FORMS*/
.account_form_fields{padding: 0;}
.account_form_fields .legend{display: block; width: 100%; font-size: 1.5em; margin: 30px 0 10px 0;}
.account_form_fields label, .account_form_fields .label{display: block; margin-bottom: 15px;}
.account_form_fields label span, .account_form_fields .label span{display: block; width: 100%; margin-bottom: 5px; font-size: 1em;}
.account_form_fields label input, .account_form_fields .label input{font-size: 1.1em;}
.account_form_fields label .input, .account_form_fields .label .input{padding: 10px; border: 2px solid #ccc; color: #555;}
.account_form_fields input{border: 2px solid #ccc; border-radius: 5px;}

.account_form_actions{padding: 30px 0 !important; text-align: center; background: #fff;}
.account_form_actions .btn{display: flex; margin: 0; font-weight: 600; font-size: 1.2em; text-transform: uppercase; padding: 10px 40px;}
.account_form_actions img{height: 26px; margin-top: -5px; margin-left: 10px; display: none;}
.account_form_actions a{display: inline-block; font-size: 0.7em; font-weight: 300; color: #555; text-transform: uppercase; text-decoration: none;}
.account_form_actions a:hover{text-decoration: underline;}
.account_form_actions .create{margin-left: 30px; font-weight: 400; color: #333;}

.account_box{display: inline-block; width: 90%; max-width: 1400px; background: #fff; vertical-align: top;}
.account_box .trigger{font-size: 1em;}
.account_box .trigger a{color: inherit; font-weight: bold;}
.account_box .paginator{text-align: center; margin: 0;}

.workcontrol_account_sidebar{width: 100%; display: flex; gap: 2%; vertical-align: top; background: #f4f4f4; position: sticky; top: 0; z-index: 999;}
.workcontrol_account_sidebar > div{width: 90%; max-width: 1400px; margin: 0 auto; display: flex; gap: 2%;}

.workcontrol_account_sidebar header{
    flex-basis: 30%;
    padding: 10px 0;
    color: #333;
    text-align: left;
    display: flex;
    flex-direction: row;
    gap: 2%;
}

.workcontrol_account_sidebar header:before{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    font-size: 2.5em;
    color: #fff;
    background: #999;
    padding: 10px 20px;
    border-radius: 5px;
}

.workcontrol_account_sidebar header > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2em;
}

.workcontrol_account_sidebar header h1{
    font-size: 1.2em;
    font-weight: 400;
}

.workcontrol_account_sidebar header p{
    font-size: 0.9em;
    font-weight: lighter;
    color: #999;
}

.workcontrol_account_sidebar_nav{
    flex-basis: 70%;
    padding: 10px 0;
    display: flex;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
}

.workcontrol_account_sidebar_nav ul{
    flex-basis: 100%;
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    gap: 2%;
}

.workcontrol_account_sidebar_nav ul li{
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.workcontrol_account_sidebar_nav ul li:hover{
    background: rgba(0,0,0,0.1) !important;
    transition: background 0.3s;
    -moz-transition: background 0.3s;
    -webkit-transition: background 0.3s;
}

.workcontrol_account_sidebar_nav li a{
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    text-transform: uppercase;
    color: #555;
    font-size: 0.875em;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.workcontrol_account_sidebar_nav li .logoff{
    color: #C63D3A;
}

.workcontrol_account_sidebar_nav li a:before{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    font-size: 1.2em;
    color: #666;
}

.workcontrol_account_sidebar_nav li:hover a:before{
    color: #444;
}

.workcontrol_account_sidebar_nav li.active,
.workcontrol_account_sidebar_nav li.active:hover{
    background: rgba(0,0,0,0.15) !important;
    border-color: rgba(0,0,0,0.15);
    color: #333;
    cursor: default;
}

/*.workcontrol_account_sidebar_nav li a:hover{*/
/*    background: #f4f4f4;*/
/*}*/

.workcontrol_account_view{
    padding: 30px 0 10px 0;
}

.account_user_avatar{
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.account_box .account_form_callback{
    position: fixed;
    right: 0;
    top: 0;
    padding: 15px;
    width: 500px;
    max-width: 100%;
}

.account_box .account_form_callback .trigger{
    text-align: left;
}

.wc_account_title{
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: #888;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 4px solid #f2f2f2;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}

.wc_account_title span{
    /*border-bottom: 3px solid #888;*/
    /*padding-bottom: 5px;*/
    position: relative;
}

.wc_account_title span::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 39px;
    left: 0;
    border-bottom: 4px solid #888;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 600;
}

.wc_spacer{
    padding: 2px;
    margin: 30px 0;
    background: #fbfbfb;
}

.workcontrol_account_home p{
    display: inline-block;
    width: 50%;
    padding: 10px;
    border: 1px solid #eee;
}

.workcontrol_account_home p b{
    font-weight: 300;
    color: #999;
}

.workcontrol_account_home .btn{
    font-size: 0.8em;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
}

.wc_account_order{
    font-size: 0.875em;
    padding: 15px 0;
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.wc_account_order:last-of-type{
    border-bottom: none;
}

.wc_account_order p{
    display: inline-block;
    width: 20%;
    color: #888;
    text-align: center;
}

.wc_account_order p:first-of-type{
    text-align: left;
}

.wc_account_order a{
    color: #000;
    font-weight: 400;
    text-decoration: none;
}

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

.wc_order_addr{
    margin: 0 0 20px 0;
    font-size: 0.875em;
    padding: 10px;
    border: 1px solid #f2f2f2;
}

.wc_order_addr b{
    font-weight: 400;
    font-size: 1.2em;
}

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

.workcontrol_order_completed_card p{
    display: inline-block;
    width: 20%;
    text-align: center;
    font-weight: bold;
    color: #888;
    font-size: 0.875em;
}

.workcontrol_order_completed_card a{
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

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

.workcontrol_order_completed_card.items img{
    display: inline-block;
    vertical-align: middle;
    width: 15%;
}

.workcontrol_order_completed_card.items .product span{
    display: inline-block;
    vertical-align: middle;
    width: 85%;
    padding-left: 5%;
}

.workcontrol_order_completed_card.items {
    border-bottom: 1px solid #eee;
}

.workcontrol_order_completed_card.items p{
    font-weight: 300;
    color: #000;
    display: inline-block;
    vertical-align: middle;
    padding: 20px 0;
}

.workcontrol_order_completed_card .product{
    width: 40%;
    text-align: left;
}

.workcontrol_order_completed_card.total{
    display: block;
    text-align: right;
    padding-top: 30px;
    color: #888;
    font-size: 1.3em;
    font-weight: 300;
}

.workcontrol_order_completed_card.total b{
    display: inline-block;
    width: 200px;
    font-weight: 300;
}

.workcontrol_order_completed_card.total .wc_cart_price b,
.workcontrol_order_completed_card.total .wc_cart_price{
    font-weight: 400;
    color: #000;
}

.account_box .account_form_actions {
    padding: 0 0 30px 0;
    text-align: center;
    background: #fff;
    display: flex;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.account_form_actions img {
    height: 26px;
    margin-top: 0;
    margin-left: 10px;
}

.footer_copyright {
    padding: 10px 0 0 0;
}

/***********************************
######### RESPONSIVE TABLE #########
***********************************/
.responsive-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    font-size: 0.85em !important;
}

.responsive-table thead tr{
    background: #ddd;
    height: 40px;
}

.responsive-table thead th{
    padding: 5px 10px;
    text-align: center;
}

.responsive-table tbody td{
    padding: 5px 10px;
    height: 40px;
}

.responsive-table tbody td a{
    color: #062fac;
    text-decoration: none;
    background: rgba(6, 47, 172, 0.2);
    padding: 5px 10px;
    border-radius: 3px;
    -webkit-transition: background-color linear 0.5s;
    -moz-transition: background-color linear 0.5s;
    transition: background-color linear 0.5s;
}

.responsive-table tbody td a:hover{
    color: #fff !important;
    /*text-decoration: underline;*/
    background: #062fac;
}

.responsive-table tbody tr:nth-child(odd) {
    background: #fff;
}

.responsive-table tbody tr:nth-child(even) {
    background: #eee;
}

.responsive-table tbody tr:hover {
    background: #dbe7f9 !important;
}

.responsive-table tbody td.txt_center,
.responsive-table tbody td.txt_center > div{
    text-align: center;
}

.responsive-table tbody td.txt_left,
.responsive-table tbody td.txt_left > div{
    text-align: left;
}

.responsive-table tbody td.txt_right,
.responsive-table tbody td.txt_right > div{
    text-align: right;
}

.responsive-table tbody td.txt_justify,
.responsive-table tbody td.txt_justify > div{
    text-align: justify;
}

.user_account > div {
    padding: 0;
    flex-direction: column !important;
    flex-wrap: nowrap;
}

.scrollTop {
    background: rgba(0, 0, 0, 0.5);
}

.scrollTop:hover {
    background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 900px) {
    .account_box .paginator {
        flex-direction: column !important;
    }

    .paginator .painelStatus,
    .paginator .painelNavegacao {
        width: 100% !important;
        justify-content: center !important;
    }

    .workcontrol_account_view p:first-of-type {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .responsive-table {
        display: grid !important;
    }

    .responsive-table tr * {
        border: none !important;
    }

    .dt-layout-row {
        display: flex;
        flex-direction: column;
    }

    div.dt-container .dt-search {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .workcontrol_account_sidebar_nav li a {
        padding: 10px;
    }

    .responsive-table tbody tr,
    .responsive-table tbody td {
        display: block;
        clear: both;
        height: auto;
    }

    .responsive-table tbody td {
        text-align: right;
        width: auto;
        box-sizing: border-box;
        overflow: auto;
    }

    .responsive-table tbody tr:nth-child(even),
    .responsive-table tbody tr:nth-child(even) td {
        background: #ffffff;
    }

    .responsive-table tbody tr:nth-child(odd),
    .responsive-table tbody tr:nth-child(odd) td {
        background: #dddddd;
    }

    .responsive-table tbody td {
        padding: 5px 10px;
    }

    .responsive-table tbody td[data-my-column]:before {
        display: inline-block;
        content: attr(data-my-column) ':';
        text-align: left;
        white-space: pre-line;
        font-weight: normal;
        min-width: 90px;
    }

    .responsive-table thead tr:first-of-type {
        display: none;
    }

    .responsive-table tbody .my-div {
        max-width: 100%;
        display: inline-block;
        font-weight: 600;
    }

    .responsive-table tbody .my-div.uppercase {
        text-transform: initial;
    }

    .responsive-table tbody td[data-my-column]:before {
        max-width: 100%;
    }

    .responsive-table tbody td.txt_center,
    .responsive-table tbody td.txt_center > div,
    .responsive-table tbody td,
    .responsive-table tbody td > div {
        text-align: left !important;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .responsive-table tbody td {
        padding: 5px 10px;
        height: unset;
    }

    .responsive-table tbody td:first-of-type {
        padding: 10px 10px 5px 10px;
    }

    .responsive-table tbody td:last-of-type,
    .responsive-table tbody td:last-of-type > div {
        text-align: center !important;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

}

@media (max-width: 71em) {
    .user_account > div {
        padding: 0;
        flex-direction: column !important;
        flex-wrap: nowrap;
    }
}

@media (max-width: 62em){
    body {
        height: 100% !important;
        margin-bottom: 0 !important;
    }

    .user_account > div {
        padding: 0;
        flex-direction: column !important;
        flex-wrap: nowrap;
    }

    .account_box,
    .workcontrol_account_sidebar{
        width: 100%;
        padding: 20px;
        flex-direction: column;
    }

    .workcontrol_account_sidebar > div {
        width: 100%;
        gap: 10px;
        flex-direction: column;
    }

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

    .workcontrol_account_sidebar header:before {
        font-size: 1.5em;
    }

    .workcontrol_account_sidebar header h1 {
        font-size: 1em;
    }

    .workcontrol_account_sidebar header p {
        font-size: 0.8em;
    }

    .workcontrol_account_sidebar_nav {
        flex-basis: 100%;
        padding: 0;
        justify-content: center;
    }

    .workcontrol_account_sidebar_nav ul {
        justify-content: center;
    }

    .workcontrol_account_sidebar_nav li{
        display: inline-block;
        width: 50%;
    }

    .workcontrol_account_sidebar_nav li a {
        align-items: center;
        font-size: 0.75em;
    }

    .flex_label_50 {
        flex-basis: 100%;
        margin-top: 2%;
    }

    .flex_label {
        flex-basis: 100%;
        display: flex    ;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .account_form_fields .legend {
        margin-top: 0 !important;
    }

    .account_form_actions {
        padding-bottom: 0 !important;
        display: flex;
        justify-content: center;
    }

    .flex_input2 {
        flex-direction: row;
        gap: 2%;
    }

    .flex_input3 {
        flex-direction: row;
        gap: 2%;
        flex-wrap: wrap;
        display: flex;
    }

    .flex_input3 .flex_label_32 {
        flex-basis: 49% !important;
    }

    .flex_input3 .flex_label_32:last-of-type {
        flex-basis: 100% !important;
    }

}

@media (max-width: 42em){
    .workcontrol_account_home p{
        width: 100%;
    }

    .wc_account_order p{
        width: 50%;
        padding: 10px 0 0 0;
    }
    .wc_account_order p:first-of-type{
        width: 100%;
        padding: 10px;
        background: #f2f2f2;
    }
}