.login_box {
    width: 600px;
    border-radius: 6px;
    background: #fff;
    margin: 0 auto;
    max-width: 90%;
    box-shadow: 0px 1px 3px 1px #ccc;
    -moz-box-shadow: 0px 1px 3px 1px #ccc;
    -webkit-box-shadow: 0px 1px 3px 1px #ccc;
}
.ds_none {
    display: none;
}

.center {
    text-align: center !important;
}

.uppercase {
    text-transform: uppercase !important;
}

.login_box header {
    padding: 30px 20px;
    text-align: center;
    background: #f4f4f4;
    position: relative !important;
    height: auto;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}

.login_box header h1 {
    font-size: 2.4em;
    font-weight: bold;
    color: var(--primary-color-1);
    line-height: 1.1;
    margin-bottom: 5px;
}

.login_box header p {
    font-size: 0.875em;
    font-weight: 500;
    text-transform: uppercase;
    margin: 5px 0;
}

.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;
}

/*FORMS*/
.account_form_fields {
    padding: 30px 30px 15px 30px;
}

.account_form_fields .title {
    width: 100%;
    text-align: center;
    background: #eeeeee;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    text-shadow: rgba(0, 0, 0, 0.2);
    color: var(--primary-color-1);
    font-weight: 600;
    font-size: 1.2em;
    padding: 8px;
    text-transform: uppercase;
    margin-top: 24px;
}

.account_form_fields > fieldset {
    border: 2px solid var(--primary-color-1);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    display: block;
    padding: 12px;
}

.account_form_fields > fieldset legend {
    font-size: 1.2em;
    padding: 0 5px;
    color: var(--primary-color-1);
    width: auto !important;
}

.account_form_fields .flex_box, .flex_box {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
}

.account_form_fields .flex_box label, .account_form_fields label {
    flex-grow: 1;
    margin: 0.5rem;
    position: relative;
}

.account_form_fields .flex_box label.flex_grow2, .flex_box .flex_grow2 {
    flex-grow: 2 !important;
}

.account_form_fields .flex_box label.flex_grow3, .flex_box .flex_grow3 {
    flex-grow: 3 !important;
}

.account_form_fields .flex_box label:first-child, .flex_box *:first-child {
    margin-left: 0;
}

.account_form_fields .flex_box label:last-child, .flex_box *:last-child {
    margin-right: 0;
}

.account_form_fields label i:before {
    font-family: 'icomoon';
    content: '\e9d1';
    font-size: 1.2em;
    position: absolute;
    top: 45px;
    right: 20px;
    color: #999999;
    cursor: alias;
}

.account_form_fields label i:hover:before {
    font-family: 'icomoon';
    content: '\e9ce';
    color: #306497;
}

input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/*********************************** ####### CHECKBOX STYLE CSS + JS ####### **********************************/
.flex_box > .label > .label_check_multiple, .flex_box > .label > .label_check_multiple:first-child {
    display: block;
    line-height: 25px;
    margin-left: 10px;
}

.label_check_multiple input[type='checkbox'] {
    display: none;
}

.label_check_multiple input[type='checkbox']:focus, .label_check input[type='radio']:focus {
    border: none !important;
    box-shadow: none !important;
}

.label_check, .label_check_multiple {
    font-size: 0.9em;
    font-weight: 400 !important; /*  padding: 12px 5px;*/
    line-height: 20px;
    position: relative;
    cursor: pointer;
}

.label_check:before, .label_check_multiple:before {
    margin-right: 0px;
    font-size: 1.3em;
    vertical-align: middle;
}

.label_check.fa-circle-o:before, .label_check_multiple.fa-square-o:before {
    color: var(--primary-color-1) !important;
}

.label_check.fa-check-circle:before, .label_check_multiple.fa-check-square:before {
    color: green
}

.login_form label.label_check {
    padding: 5px 25px !important;
}

.label_check input[type='radio'] {
    display: block;
    position: absolute;
    top: 5px;
    left: 9px;
    width: 0px;
}

.account_form_fields label span {
    display: block;
    width: 100%; /* margin-bottom: 5px; */
    font-size: 1em;
}

.account_form_fields label input[type='text'], .account_form_fields label textarea {
    font-size: 1.1em;
}

.account_form_fields label .input {
    padding: 10px;
    color: #555;
}

.account_form_fields input, .account_form_fields select, .account_form_fields .input {
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    outline: none;
}

.account_form_fields input:focus, .account_form_fields select:focus, .account_form_fields .input:focus {
    border: 1px solid var(--primary-color-1);
    outline: none;
    -webkit-box-shadow: inset 0px 0px 5px var(--primary-color-1);
    -moz-box-shadow: inset 0px 0px 5px var(--primary-color-1);
    box-shadow: inset 0px 0px 5px var(--primary-color-1);
}

.account_form_actions {
    padding: 30px 0;
    text-align: center;
    background: #f4f4f4;
    border-radius: 0 0 6px 6px;
}

.account_form_actions .btn {
    display: inline-block;
    margin: 0 auto;
    font-weight: 600;
    font-size: 1.2em;
    text-transform: uppercase;
    padding: 10px 40px;
}

.btn.btn_purple {
    background: var(--primary-color-1);
    color: #ffffff;
    transition: background-color 1s linear;
}

.btn.btn_purple:hover {
    background: rgb(77, 175, 32);
    background: linear-gradient(45deg, rgba(77, 175, 32, 1) 0%, rgba(137, 186, 23, 1) 56%, rgba(236, 203, 9, 1) 100%);
    color: #ffffff !important;
}

.account_form_actions img {
    height: 26px;
    margin-top: -5px;
    margin-left: 10px;
    display: none;
}

.account_form_actions a {
    display: inline-block;
    font-size: 0.875em;
    font-weight: 300;
    color: var(--primary-color-1);
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid;
    padding: 3px 9px
}

.account_form_actions a:hover {
    background-color: var(--second-color-1);
    color: var(--primary-color-1) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--second-color-1);
}

.account_form_actions .create {
    margin-left: 30px;
    font-weight: 400;
    color: var(--primary-color-1);
}

.account_box {
    display: inline-block;
    margin-left: 240px;
    width: calc(100% - 240px);
    background: #fff;
    vertical-align: top;
    min-height: 100vh;
    height: auto;
    overflow-y: hidden;
}

.account_box > .jwc-btn-menu {
    margin-left: 10px;
    outline: none;
    border: none;
}

.account_box .trigger {
    font-size: 1em;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.account_box .trigger a {
    color: inherit;
    font-weight: bold;
}

.account_box .paginator {
    text-align: center;
    margin: 15px 0 0 0;
}

.workcontrol_account_sidebar {
    position: absolute;
    width: 240px;
    padding-right: 20px;
    display: inline-block;
    vertical-align: top;
}

.workcontrol_account_sidebar > header {
    padding: 30px 0;
    background: var(--primary-color-1);
    text-align: center;
    position: relative !important;
    height: auto;
    overflow: hidden;
    color: #ffffff;
    font-weight: 300;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    z-index: 0 !important;
}

.workcontrol_account_sidebar > header h1 {
    font-size: 1.2em;
    font-weight: 400;
    color: #ffffff;
}

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

.workcontrol_account_sidebar_nav {
    display: block;
    width: 100%;
    padding: 10px 10px 0px 10px;
    background: #eee;
    border-radius: 0px 0px 4px 4px;
}

.workcontrol_account_sidebar_nav li {
    display: block;
    width: 100%;
    border-bottom: 1px inset #dee2e6;
}

.workcontrol_account_sidebar_nav li:last-child {
    border-bottom: none;
}

.workcontrol_account_sidebar_nav li a {
    display: block;
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
    color: var(--primary-color-1);
    font-size: 0.875em;
    font-weight: bold;
    text-decoration: none;
}

.workcontrol_account_sidebar_nav li a i {
    font-size: 1.3em;
    margin-right: 5px;
}

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

.workcontrol_account_sidebar_nav li a:before {
    margin-right: 10px;
}

.workcontrol_account_sidebar_nav li .active, .workcontrol_account_sidebar_nav li .active:hover {
    background-color: var(--primary-color-1);
    border-color: #fff;
    color: #fff;
    cursor: pointer;
    transition: all ease .5s;
}

.workcontrol_account_sidebar_nav li .active:before {
    margin-right: 10px;
}

.workcontrol_account_sidebar_nav li a:hover {
    background: #ffffff;
    transition: all ease .5s;
}

/*VIEW*/
.workcontrol_account_view {
    padding: 20px;
}

.workcontrol_account_view > header {
    width: 100%;
    height: auto;
    overflow-y: hidden;
    position: relative;
    background-color: #ffffff;
    border: none;
    z-index: 0 !important;
}

.workcontrol_account_view > .sample_list {
    padding: 10px;
}

.workcontrol_account_view .table {
    width: 100%;
    border-color: #dee2e6 !important;
}

.workcontrol_account_view .table .headTableAmostras {
    background-color: var(--primary-color-1);
    color: #ffffff;
    text-align: center;
    font-weight: 400;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.workcontrol_account_view .bodyTableAmostras td, .workcontrol_account_view .table .headTableAmostras th {
    vertical-align: middle !important
}

/*TABELAS*/

.table input.table-search {
    border: none;
    padding: 0;
    background: transparent;
}

.table input.table-search:focus {
    border: none;
    box-shadow: none
}

.table th.icon, .table td.icon {
    width: 10px
}

.tasters_table {
    width: 100%;
}

.tasters_table td, .tasters_table th {
    padding: .3rem !important;
    vertical-align: top;
    border-top: 1px solid #dee2e6
}

.tasters_table .table-flag {
    width: 40px;
    height: auto;
}

.j_taster {
    cursor: pointer;
}

.j_taster:hover {
    font-weight: bold;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6
}

.table thead th.fixa {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0;
    background: var(--primary-color-1);
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .3);
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6
}

.table-sm td, .table-sm th {
    padding: .3rem
}

.table-bordered {
    border: 1px solid #dee2e6
}

.table-bordered td, .table-bordered th {
    border: 1px solid #dee2e6
}

.table-bordered td.taster_name {
    border: none !important;
}

.table-bordered thead td, .table-bordered thead th {
    border-bottom-width: 2px
}

.table-borderless tbody + tbody, .table-borderless td, .table-borderless th, .table-borderless thead th {
    border: 0
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, .05)
}

.table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(0, 0, 0, .075)
}

.table .label_check {
    cursor: pointer;
    display: inline-block;
    padding: 0 !important;
    font-size: 1.2em;
    position: relative;
    width: auto;
}

.table .label_check:before {
    margin-right: 0 !important;
}

/*degustador: Ficha de Degustação*/
.tasting-sheet {
    width: 100%;
    margin-bottom: 5px;
    color: #212529 !important;
    border-collapse: collapse !important;
    font-size: 14px;
}

.tasting-sheet fieldset {
    border: 2px solid var(--primary-color-1);
    padding: 2px 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.tasting-sheet fieldset legend {
    width: auto;
    font-size: 16px;
    padding: 0 5px;
}

.tasting-sheet fieldset legend::before {
    color: var(--primary-color-1);
}

.tasting-sheet fieldset p {
    width: auto;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.tasting-sheet .tasting {
    width: 60%;
}

th.total_points {
    width: 60%;
}

#total_pontos {
    color: gold;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.tasting-sheet .sample_data {
    position: relative;
    width: 38%;
    padding: 3px 15px;
    height: 100vh;
    margin-right: 2%;

}

.tasting-sheet .sample_data .event_languages {
    padding: 10px;
}

.tasting-sheet .sample_data fieldset {
    margin-top: 12px;
}

.tasting-sheet .sample_data .realization {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.tasting-sheet td, .tasting-sheet th {
    padding: 2px 10px;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
}

.tasting-sheet td {
    border: none !important;
}

.tasting-sheet td > label {
    margin: 0 !important;
}

.tasting-sheet td.descritor {
    color: var(--primary-color-1);
    font-weight: bold;
    width: 40%;
    border-right: 1px solid #dee2e6 !important;;
}

/***********************************
######### CUSTON BUTTONS ###########
***********************************/
.btn {
    display: inline-block;
    cursor: pointer;
    padding: 9px 12px;
    background: #888;
    font-size: 0.95em;
    color: #fff !important;
    text-decoration: none !important;
    text-align: center;
    border: none;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);;
}

.btn_notext {
    padding: 6px 6px !important;
}

.no-margin-before:before {
    margin-right: 0 !important;
}

.btn:hover {
    background: #555;
    text-decoration: none;
    cursor: pointer;
}

.btn:hover.btn_noaction:hover {
    background: #888 !important;
    cursor: default !important;
}

.btn_link {
    color: #eee;
    text-shadow: 1px 1px 0 #333;
    text-decoration: none;
}

.btn_link:hover {
    color: #fff;
}

.btn_green, .btn_update, .btn_repply {
    background-color: #00B494;
    text-shadow: 1px 1px #008068;
}

.btn_green:hover, .btn_update:hover, .btn_repply:hover {
    background-color: #008068;
}

.btn_green_noaction:hover {
    background: #00B494 !important;
    cursor: default !important;
}

.btn_blue, .btn_edit {
    background-color: #0E96E5;
    text-shadow: 1px 1px #096397;
}

.btn_blue:hover, .btn_edit:hover {
    background-color: #096397;
}

.btn_blue_noaction:hover {
    background: #0E96E5 !important;
    cursor: default !important;
}

.btn_yellow, .btn_confirm {
    background-color: #FAAD50;
    text-shadow: 1px 1px #CC8D41;
}

.btn_yellow:hover, .btn_confirm:hover {
    background-color: #CC8D41;
}

.btn_yellow_noaction:hover {
    background: #FAAD50 !important;
    cursor: default !important;
}

.btn_red, .btn_delete {
    background-color: #F45563;
    text-shadow: 1px 1px #C54550;
}

.btn_red:hover, .btn_delete:hover {
    background-color: #C54550;
}

.btn_red_noaction:hover {
    background: #F45563 !important;
    cursor: default !important;
}

.btn_update:before {
    font-family: icomoon;
    content: "\ea2e";
    margin-right: 5px
}

.btn_edit:before {
    font-family: icomoon;
    content: "\e905";
    margin-right: 5px
}

.btn_repply:before {
    font-family: icomoon;
    content: "\e92c";
    margin-right: 5px
}

.btn_confirm {
    display: none;
    color: #ffffff !important;
}

.btn_confirm:before {
    font-family: icomoon;
    content: "\e916";
    margin-right: 5px
}

.btn_delete:before {
    font-family: icomoon;
    content: "\e9ad";
    margin-right: 5px
}

.btn_return:before {
    font-family: icomoon;
    content: "\e967";
    margin-right: 5px
}

.btn_printer:before {
    font-family: icomoon;
    content: "\e954" !important;
    margin-right: 5px;
    font-weight: 600;
}

.btn_notext:before {
    margin-right: 0 !important;
}

.btn_search {
    color: #ffffff;
    background-color: #306497;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    width: 50px;
    border: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;

}

.btn_search:before {
    font-family: icomoon;
    content: "\e986";
    margin-right: 0 !important;
}

.btn_small {
    padding: 3px 6px !important;
    font-size: 0.785rem;
}

.btn_medium {
    padding: 6px 12px;
}

.btn_large {
    padding: 8px 16px;
}

.btn_xlarge {
    padding: 12px 24px;
}

.btn_xxlarge {
    padding: 16px 32px;
}

.workcontrol_account_view .fichas {
    width: 100%;
    border: 2px solid var(--primary-color-1);
    margin: 40px auto;
}

.workcontrol_account_view .fichas th, .workcontrol_account_view .fichas td {
    border: 1px solid var(--primary-color-1);
    border-collapse: collapse;
    padding: 5px 8px;
}

.workcontrol_account_view .fichas .legend {
    color: var(--primary-color-1);
    font-weight: bold;
}

.workcontrol_account_view .fichas .title, .workcontrol_account_view .fichas thead tr td {
    padding: 12px;
    border: 1px solid var(--primary-color-1) !important;
    text-align: center;
}

.workcontrol_account_view .fichas .title {
    font-size: 1rem;
    background-color: var(--primary-color-1);
    font-weight: bold;
    color: #ffffff !important;
    text-transform: uppercase;
}

.workcontrol_account_view .fichas .title h2 {
    color: #ffffff;
    vertical-align: middle;
    padding: 0;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2)
}

.workcontrol_account_view .fichas .title .btn > span, .workcontrol_account_view .fichas .title .btn > span:hover {
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.workcontrol_account_view .notas th, .workcontrol_account_view .notas td {
    border: 1px solid #eeeeee;
    border-collapse: collapse;
    padding: 5px 8px;
}

.workcontrol_account_view .notas .title h1 {
    font-size: 2.3rem;
    display: inline-block;
    vertical-align: middle;
    color: var(--third-color);
}

.workcontrol_account_view .notas .title small {
    display: inline-block;
    font-size: 12px !important;
    line-height: 15px;
    text-align: left;
    vertical-align: middle;
    border-left: 2px solid var(--second-color);
    padding-left: 8px !important;
}

.workcontrol_account_view .notas td p {
    font-size: 12px !important;
    line-height: 15px;
    text-align: left;
    padding-left: 8px !important;
}

.lang::before {
    content: '     ';
    background-repeat: no-repeat;
    background-position: top left;
    width: 40px;
    padding-left: 30px;
}

.lang.pt-br::before {
    background-image: url("../../../uploads/country-flags-main/svg/br.svg");
}

.lang.es::before {
    background-image: url("../../../uploads/country-flags-main/svg/es.svg");
}

.lang.en::before {
    background-image: url("../../../uploads/country-flags-main/svg/gb.svg");
}

.lang.fr::before {
    background-image: url("../../../uploads/country-flags-main/svg/fr.svg");
}

.workcontrol_account_view .notas td ul {
    width: 100%;
    padding: 10px;
    margin: 0;
    list-style-type: decimal !important;
}

.workcontrol_account_view .notas td ul li {
    display: inline-block !important;
    width: 48%;
    margin-left: 2%;
}

.workcontrol_account_view .notas td ul li b {
    font-size: 1.1rem;
    line-height: 15px;
    vertical-align: middle;
}

.workcontrol_account_view .notas td ul li span {
    border-bottom: 1px dotted #777777;
    font-size: 1rem;
    font-weight: 400 !important;
    padding-bottom: 0 !important;
    vertical-align: text-bottom;
}

.workcontrol_account_view .notas tbody td span, .workcontrol_account_view .notas .payment_info p span {
    display: inline-block;
    font-size: 0.9rem;
    border-left: 2px solid var(--second-color);
    padding-left: 5px;
    line-height: 1rem;
    margin-right: 4px;
}

.workcontrol_account_view .notas tbody td span:first-child, .workcontrol_account_view .notas .payment_info p span:first-child {
    font-weight: bold;
    border: none;
    padding-left: 0px;
}

.workcontrol_account_view .notas tbody td span:last-child {
    font-weight: bold;
    border-left: none;
    border-bottom: 1px dotted #777777;
    padding-bottom: 3px;
}

.workcontrol_account_view .notas .payment_info p span:last-child {
    font-weight: normal;
    border-left: 2px solid var(--second-color);
    border-bottom: none;
    padding-bottom: 3px;
}

.text-bold {
    font-weight: 600;
}

.workcontrol_account_view .notas tbody td .send div {
    margin: 0 !important;
    padding: 12px 6px;
    color: #ffffff;
}

.workcontrol_account_view .notas tbody td .send div h4 {
    color: #ffffff;
    margin: 0;
    padding: 5px 10px
}

.workcontrol_account_view .notas tbody td .send p {
    margin-bottom: 0 !important;
}

.workcontrol_account_view .notas tbody td .send .send_to {
    background-color: var(--primary-color-1);
    border-radius: 10px 0 0 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .2);
}

.workcontrol_account_view .notas tbody td .send .send_abe {
    background-color: var(--second-color);
    border-radius: 0px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .2);
}

.workcontrol_account_view .notas tbody td .send .send_address {
    background-color: var(--third-color);
    border-radius: 0px 10px 10px 0px;
    box-shadow: none;
    color: #111111 !important;
}

.workcontrol_account_view .notas td .payment_info {
    width: 40%;
    text-align: left !important;
}

.workcontrol_account_view .notas td .payment_info p {
    text-align: left !important;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 12px !important;
    line-height: 20px
}

.workcontrol_account_view .notas td .payment_info h3 {
    text-align: left !important;
    margin-top: 15px;
    font-size: 0.9rem
}

.workcontrol_account_view .notas td .payment_info h4 {
    text-align: left !important;
    margin-top: 15px;
    font-size: 1.1rem
}

.workcontrol_account_view .notas td .payment_form {
    width: 60%
}

.workcontrol_account_view .notas td .payment_form .header_form {
    display: flex;
}

.workcontrol_account_view .notas td .payment_form .header_form p {
    font-size: 1.2rem;
    width: 60%;
}

.workcontrol_account_view .notas td .payment_form .header_form img {
    height: 40px;
}

.transfer {
    width: 100%;
    margin: 0;
}

.transfer label > span {
    color: #333;
    font-weight: 300;
    padding: 0;
    margin: 0;

}

.transfer label {

    margin: 0 5px;

}

.transfer label > input {
    border: none;
    padding: 0 !important;
    outline: 0;
}

.transfer label > input::placeholder {
    color: #ddd;
    padding: 0;
    margin: 0
}

.transfer #transfer_bank {

    border-bottom: 2px dotted #cccccc;
}

.transfer #transfer_date {
    border-bottom: 2px dotted #cccccc;
}

.transfer #transfer_bank:focus {
    border-bottom: 1px solid #111
}

.transfer #transfer_date:focus {
    border-bottom: 1px solid #111
}

.credit_card {
    margin: 0;
}

.credit_card input {
    padding: 3px 10px;
}

.credit_card input::placeholder {
    font-size: 14px;
    color: #ccc
}

.credit_card .flex_box label span {
    font-size: 12px;
    text-align: left;
    font-weight: 300 !important;
    line-height: 16px;
    margin-bottom: 3px
}

.credit_card .flex_box label.total_value {
    position: relative;
}

.credit_card .flex_box label.total_value b {
    position: absolute;
    background-color: #777777;
    width: 45px;
    padding: 4px 10px;
    font-weight: 400 !important;
    border-radius: 4px 0 0 4px;
    color: #ffffff;
}

.credit_card .flex_box label.total_value input {
    padding: 4px 4px 3px 52px;
    font-size: 14px;
}

.credit_card .flex_box label.signature > input {
    border: none;
    border-radius: 0;
    width: 90%;
    border-bottom: 1px solid #999999;
    margin: 3px auto;
}

.credit_card .flex_box label.signature > input + span {
    text-align: center;
}

.workcontrol_account_view .invoice {
    padding: 20px;
}

.workcontrol_account_view .invoice table {
    margin: 20px auto;
}

.account_user_avatar {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 2px solid var(--third-color)
}

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

.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: 30px;
    border-bottom: 3px solid #f2f2f2;
}

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

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

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

.workcontrol_account_home p b {
    font-weight: 400;
    color: var(--primary-color-1);
}

.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;
}

.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_form_fields label.phone_prefix span {
    margin-bottom: 0 !important;
}

.account_form_fields label.phone_prefix .ms-dd {
    width: 100px;
}

@media (max-width: 62em) {
    #content {
        padding: 10px;
    }

    .account_box, .workcontrol_account_sidebar {
        width: 100%;
        display: block;
        padding: 0;
        position: relative;
        margin: 0 auto;
        height: auto;
        overflow-y: hidden;
    }

    .account_box .btn {
        margin: 20px auto;
    }

    .account_box .jwc-btn-menu {
        display: none;
    }

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

@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;
    }

    .flex_box {
        flex-direction: column;
    }
}
