/*login*/

*::selection {
    background-color: #f00;
}

.container-login {
    width: 100%;
    min-height: 70vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #fff;
}
.wrap-checkbox{
    width: 100%;
    flex-wrap: wrap;
}
.checkbox-add{
    flex-wrap: wrap;
}
.checkbox-add input{
    margin: 0 5px 0 0;
}
.checkbox-add .label-input100{
    top: 50%;
    transform: translateY(-50%);
}

.wrap-login {
    width: 390px;
    background: #fff;
}

.btn-form-login {
    width: 100%;
}

.login-title {
    display: block;
    font-family: Poppins-Bold;
    font-size: 25px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
}

.wrap-input {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #d9d9d9;
}

.input {
    font-family: Poppins-SemiBold;
    font-size: 18px;
    color: #555555;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 52px;
    background: transparent;
    padding: 0 5px;
}

.focus-input {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.focus-input::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    background: #57b846;
}

.focus-input::after {
    font-family: Poppins-Medium;
    font-size: 18px;
    color: #999999;
    line-height: 1.2;
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 15px;
    left: 0px;
    padding-left: 5px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input-login:focus+.focus-input::after {
    top: -20px;
    font-size: 15px;
}

.input-login:focus+.focus-input::before {
    width: 100%;
}

.has-val.input-login+.focus-input::after {
    top: -20px;
    font-size: 15px;
}

.has-val.input-login+.focus-input::before {
    width: 100%;
}

.container-login-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


/* .login-form-btn {
    font-family: Poppins-Medium;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    background-color: #ff5252;
    border-radius: 25px;
    box-shadow: 0 10px 30px 0px rgba(87, 184, 70, 0.5);
    -moz-box-shadow: 0 10px 30px 0px rgba(87, 184, 70, 0.5);
    -webkit-box-shadow: 0 10px 30px 0px rgba(87, 184, 70, 0.5);
    -o-box-shadow: 0 10px 30px 0px rgba(87, 184, 70, 0.5);
    -ms-box-shadow: 0 10px 30px 0px rgba(87, 184, 70, 0.5);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
} */

.login-form-btn:hover {
    background-color: #218838;
    box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
    -webkit-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
    -o-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
    -ms-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
}

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0px;
    pointer-events: none;
    font-family: Poppins-Regular;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f06a";
    font-family: FontAwesome;
    font-size: 16px;
    color: #c80000;
    display: block;
    position: absolute;
    background-color: #fff;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}


/* #username,
#password {
    box-shadow: none;
    border-style: none;
    border-width: 0px!important;
    font-size: 0rem!important;
} */

.top-bar.expanded .title-area {
    background: #ff1744;
}


/* .top-bar.expanded,
.top-bar,
.top-bar-section ul li,
.top-bar-section li:not(.has-form) a:not(.button) {
    background: #ff1744;
    border-color: #ff1744;
} */

div.message.error {
    background-color: #ff5252;
    color: #FFF;
    margin-top: 5px;
}

div.message.error div {
    padding: 5px;
}

div.message.success {
    background-color: #4caf50;
    color: #FFF;
    margin-top: 5px;
}

div.message.success div {
    padding: 5px;
}

div.message.error:before {
    content: none;
}

div.message.success:before {
    content: none;
}

.btn-login {
    border-style: solid;
    border-width: 0;
    cursor: pointer;
    font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-weight: normal;
    line-height: normal;
    margin: 0 0 1.25rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 1rem 2rem 1.0625rem 2rem;
    font-size: 1rem;
    background-color: #ff5252;
    border-color: #ff5252;
    color: #fff;
    transition: background-color 300ms ease-out;
}

li {
    padding-left: 0em !important;
}

.navbar-brand {
    font-weight: bold;
    font-size: 25px;
    width: 100px;
    text-align: center;
    border: 2px solid;
    color: rgba(0, 0, 0, .9);
    border-radius: 54px;
    height: 100px;
    line-height: 80px;
}

.navbar-nav li .nav-link {
    border: 1px solid;
    width: 100px;
    border-radius: 5px;
    text-align: center;
}

#header-top {
    padding-left: 0.6em!important;
}

#header-top > a {
    width: 140px;
    text-align: center;
    border-left: 1px solid black;
    display: block;
}

#header-top a:hover {
    background-color: #ff1744;
    color: #fff;
    border-color: #ff1744;
}

#breadcrumb-wp {
    margin-bottom: 0px;
}

#breadcrumb-wp ul.list-item {
    padding: 18px 12px 0px 0px;
}

#breadcrumb-wp .list-item li {
    float: left;
}

#breadcrumb-wp .list-item li a {
    position: relative;
    display: block;
    color: #333;
    padding: 0px 20px 0px 0px;
    line-height: normal;
}

.spacer {
    flex-grow: 1!important;
}


/* ul.nav-pills li a {
    color: white;
    font-size: 20px;
} */


/* ul.nav-pills li a:hover {
    background-color: indianred;
} */

.col-md-2 {
    padding-left: 0px !important;
    padding-right: 20px !important;
}

.col-md-12 {
    padding-left: 0px !important;
    padding-right: 20px !important;
}

#breadcrumb-wp .list-item li:nth-child(n+2) a:before {
    position: absolute;
    content: '\f105';
    font-family: 'FontAwesome';
    top: 5px;
    left: -12px;
    line-height: normal;
}

#btn_report .submit {
    padding: 15px 0px;
}

#loader {
    background: url('../img/loader.gif') center 50% no-repeat #000000;
    top: 0;
    left: 0;
    position: fixed;
    height: 100%;
    width: 100%;
    opacity: 0.7;
    filter: alpha(opacity=70);
    z-index: 12030
}

input[type=text].error,input[type=email].error,input[type=password].error,select.error {
    border: 2px solid red!important;
}

input.valid {
    border: 2px solid green;
}

.task-form-title {
    padding: 0px!important;
}

.input_task {
    width: 100%;
}

#input_report {
    width: 100%;
}

#groupTask .input_report{
    display: flex;
    flex-wrap: wrap-reverse;
}

#groupTask .input_report-right{
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.btn_add_adId,
#btn_add_group {
    background-color: #ec1b24;
}
.btn_add_adId:hover,
#btn_add_group:hover{
    opacity: .8;
}
#checkbox_age {
    margin-top: 10px;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    margin-left: 0rem;
}

#addInput {
    margin: 10px 0px;
}

.ui-datepicker .ui-datepicker-title {
    line-height: 1.5em!important;
}

.modal-dialog {
    max-width: 900px;
}

#modal_confirm_search {
    padding-right: 0px !important;
}

#modal_confirm_search .btn_remove_group,
#detail_status_modal .btn_remove_group,
#draw_chart_modal .btn_remove_group{
    right: 3px;
    top: 3px;
}

.drawChart:hover {
    background-color: #4caf50;
    border: 1px solid #4caf50;
}

table .thead-dark th {
    color: #fff !important;
    background-color: #837A77 !important;
    border-color: #837A77 !important;
}

.row-detail td#campaign-ids {
    overflow: hidden;
    text-overflow: ellipsis !important;
    white-space: nowrap;
}

table .thead-dark {
    table-layout: fixed;
    width: 100%;
}

.tooltip-inner {
    background-color: #00cc00;
}

.tooltip {
    background: none;
}

.bs-tooltip-auto[x-placement^=right] .arrow::before,
.bs-tooltip-right .arrow::before {
    border-right-color: #00cc00!important;
}
.popover .arrow::after {
    border-right-color: #000;
}

.popover .popover-body {
    background-color: #00cc00;
    color: #fff;
    max-height: 500px;
    overflow-y: auto;
    white-space: pre-wrap;
}

#table-task {
    margin-top: 50px;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
    background-color: #4caf50;
}

ul.pagination li a,
ul.pagination li button {
    line-height: normal!important;
}

.page-item.active .page-link {
    background-color: #4caf50 !important;
    border-color: #4caf50 !important;
}

.pag_disabled {
    opacity: 0.35;
    cursor: default !important;
    color: #424242 !important;
    border: 1px solid #D5D5D5 !important;
}

.swal2-popup .swal2-title {
    font-size: 20px!important;
}

.table-hover tbody tr:hover {
    background-color: #fffccc !important;
}

#checkAll {
    margin: 0px !important;
}

.removeRow {
    background-color: #fffccc!important;
    color: #FFFFFF;
}

.text-xs-center {
    text-align: center;
}

.container {
    min-height: 76.23333%;
}

#tilde {
    padding-right: 0 !important;
    align-items: center;
    display: flex;
    justify-content: center;
}

#tilde p {
    text-align: center;
}

.group-adId {
    border: 1px solid #ccc;
    width: 100%;
    margin-top: 20px;
    /*padding: 50px 230px 36px 180px;*/
    padding: 50px 240px 36px 200px;
}

.btn_remove_group {
    position: absolute;
    right: -43px;
    top: 0;
}

.btn_remove {
    position: absolute;
    top: 17px;
    right: -232px;
}

.btn-remove-col,
.btn-add-col {
    font-size: 12px;
}

.search-adID-group {
    position: absolute;
    top: 0;
    left: 270px;
    height: 38px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 160px;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: .25rem;
}

#search-adID:hover {
    color: white;
    text-decoration: none;
}

#table_list_lpo {
    display: none;
}

#reset {
    color: #fff;
    margin-left: 20px;
}

form.task-form label.error {
    display: none;
}

#option-checkox {
    padding: 10px 0 !important;
}

.checkbox-inline {
    margin-left: 3px;
}

.crown_rule_1 {
    margin-right: 10px;
}

.crown_rule_2 {
    margin-right: 23px;
}

#option-task {
    margin: 0;
    max-width: unset;
}

#option-task-clients {
    margin: 0;
    margin-bottom: 15px;
}

.table thead th.col_clicks {
    width: 85px!important;
}

.show-body-report tr th {
    color: #333!important;
    border-bottom: 0px solid #1798A5!important;
}

.show-body-report tr td {
    text-align: right;
}

.cvr,
.usr,
.cpa,
.cpo {
    color: #ff1744;
}

.title_report {
    font-weight: bold;
    color: #ff00ff;
}

.fs-label-wrap {
    margin: 5px 0;
}

.unCheckRatio {
    display: none;
}

#fontRatio {
    font-weight: 900;
}

#crown_landing_page {
    text-align: center;
    background-color: #fff;
}

.container-task-form-btn {
    display: block;
}

#delete_all_task,
#delete_all_order,
#add_task_old,
#add_data_past,
#add_statistical_access{
    margin-left: 10px;
}

#btn_add_task {
    padding-left: 120px;
    padding-right: 0px;
}

#form-search-abtest {
    padding: 1rem 2rem;
}

#form-search-abtest>.d-flex {
    width: 100%;
    align-items: center;
    margin: 0 0 1rem;
}

#form-search-abtest input {
    margin: 0;
    width: 100%!important;
    font-size: 100%;
}
.select2-container--default .select2-selection--multiple{
    padding: 4px 20px 5px 8px;
}
.select2-container--default .select2-search--inline .select2-search__field{
    width: 100%!important;
}

#form-search-abtest .col-md-2.p-0 {
    padding-right: 0!important;
}

/*#form-search-abtest .input-group-addon {*/
/*    right: 15px;*/
/*}*/

#form-search-abtest .focus-input100 {
    left: 15px;
    right: 15px;
    width: auto;
}

.wrap-taskIndex {
    width: 960px;
    background: none;
}

.mini-crown {
    height: 14px;
    width: 25px;
}

.datepicker.dropdown-menu {
    top: 266px;
    left: 100px;
    z-index: 10;
    display: block;
    width: 300px;
}

.datepicker-days table thead tr {
    border: none !important;
}

.datepicker-days table tbody tr {
    border: none !important;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.19;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 2px;
    white-space: nowrap;
    vertical-align: middle;
    display: table-cell;
    position: absolute;
    z-index: 99;
    top: 1px;
    height: 41px;
    right: 0px;
}

.wrap-editTask,.wrap-pastTask{
    margin: 0 0 0 -115px;
}
#table-edit-task,#table-past-task{
    min-width: 1150px;
}

.input-group-addon:last-child {
    border-left: 0;
}

table.dataTable thead th,
table.dataTable thead td {
    padding: 10px 10px!important;
}

#table-past-task tbody tr td,
#table-edit-task tbody tr td {
    line-height: 0!important;
    vertical-align: unset;
    font-size: 12px;
}
#table-past-task input, #table-edit-task input{
    margin: 0;
}

#table-past-task tbody tr td input:read-only,
#table-edit-task tbody tr td input:read-only,
#table-edit-task thead tr th input:read-only {
    background-color: floralwhite;
}

#btn_add_task .select2 {
    width: 100% !important;
}

#btn_add_past_data .select2,#btn_edit_past_data .select2{
    width: 100% !important;
}

#btn_add_past_data .col-md-12,#btn_edit_past_data .col-md-12{
    padding: 0!important;
}

#btn_add_past_data span.summary,#btn_edit_past_data span.summary{
    line-height: 1;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    display: block;
    text-align: center;
}
#table-past-task thead tr th:first-child,#btn_edit_past_data thead tr th:first-child{
    width: 115px;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 183px!important;
}
.select2-results__option {
    margin-left: 4px;
}

#table-past-task thead tr th,
#table-past-task tbody tr td.input-text,
#table-edit-task thead tr th,
#table-edit-task tbody tr td.input-text {
    padding: 10px 2px;
}

#uncheckComment {
    display: none;
}

#table-rate {
    /*width: 100%;*/
    /*display: block;*/
    margin-top: 10px;
    margin-bottom: 0rem;
}

#rate {
    /*position: absolute;*/
    /*right: 413px;*/
    border-bottom: none;
}

.container-setting {
    width: 100%;
}

.wrapper-setting {
    min-height: 100%;
    height: 185px;
    background: #fff;
    margin: 15px 0;
    border: 1px solid;
    border-color: #ccc;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.setting {
    padding: 15px 0;
    height: 45px;
    margin: 10px 0;
    cursor: pointer;
}

.setting-only {
    padding: 15px 0;
    height: 45px;
    margin: 10px 0;
    color: rgba(0, 0, 0, .54);
}

.setting:hover {
    background: #c3c3c3;
}

.show_tag {
    background-color: #ff00ff;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
}

.no-link {
    cursor: default!important;
}

#show_report_modal {
    padding: 0!important;
}

.icon-required {
    color: red;
}
#hide_winner:before{
    background: none!important;
}

/*check box*/

.radio_check {
    margin: 1em;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.check {
    margin: 0;
}

.ui-autocomplete {
    max-height: 350px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding to account for vertical scrollbar */
    z-index: 1000 !important;
}

#btn-past-data,#btn-edit-task {
    float: right;
    margin: 0;
}
#btn_search_abtest{
    margin: 0 0 0 185px;
}
#search,#lp_orders_data,#statistical_access_data{
    margin: 0;
}

#btnAdd,#btn_add_group,.btn_remove{
    border-radius: .25rem;
}
.errorMsq {
    color: red;
}
table#table-testAb tbody tr td,
table#table-lp-orders tbody tr td,
table#table-clients tbody tr td,
table#table-users tbody tr td,
table#table-tags tbody tr td,
table#table-category tbody tr td,
table#table-ab-test-idea tbody tr td{
    padding: 8px;
    text-align: center;
}
label.error{
    width: 100%;
}
.date input.error{
    width: 100%;
}
.dataTables_wrapper .dataTables_info {
     padding-top: 0em!important;
}

form#search-filter-user > .textbox {
    outline: 0;
    height: 36px;
    line-height: 42px;
    padding: 0 16px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #212121;
    float: left;
}

form#search-filter-user > .textbox:focus {
    outline: 0;
    background-color: #FFF;
}

form#search-filter-user > .button {
    outline: 0;
    background: none;
    background-color: rgba(38, 50, 56, 0.8);
    float: left;
    text-align: center;
    line-height: 42px;
    border: 0;
    color: #FFF;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 16px;
    text-rendering: auto;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition: background-color .4s ease;
    transition: background-color .4s ease;
}
form#search-filter-user > .button:hover {
    background-color: rgba(0, 150, 136, 0.8);
}
.focus-input100.hidden:before {
    display: none;
}
.focus-input100.hidden-change:before {
    display: none;
}
.title-tags-center{
    top: 17px;
}


/*footer*/

#footer {
    height: auto;
    background-color: #ff1744;
    color: white;
}


/* start Login */

.pageLogin#container {
    min-height: calc(100vh - 48px);
}

.blockLogin,
.blockRegister {
    overflow: hidden;
    border-radius: 5px;
    width: 500px;
    margin: 0 auto;
}

.boxLogin {
    padding: 45px 45px 45px;
    background: #f0f0f0;
}

.boxLogin .d-flex {
    align-items: center;
}

.boxLogin .d-flex:not(:last-child) {
    margin-bottom: 20px;
}

.boxLogin .d-flex label {
    font-size: 12px;
    min-width: 65px;
    margin-right: 15px;
}

.boxLogin .d-flex input {
    margin: 0;
}

.login-form-btn,
.register-form-btn {
    -webkit-appearance: none;
    display: block;
    background: #18BC66;
    border: none;
    outline: none;
    padding: 20px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    font-size: 15px;
    color: #fff;
    font-weight: bold;
}

.login-form-btn:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/icon_login.png) no-repeat;
    vertical-align: middle;
}

.boxLogin input {
    background: #fffdde;
}

.boxLogin input:focus {
    outline: -webkit-focus-ring-color auto 1px;
    outline-offset: -2px;
}

.pageLogin {
    height: calc(100vh - 48px);
}

.pageLogin .wrap {
    position: relative;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.pageLogin .logo img {
    width: 500px;
    height: auto;
}

.pageLogin .logo {
    height: auto;
}


/* end Login */


/* start container */

#container {
    padding: 34px 0 100px;
    min-height: calc(100vh - 358px);
}


/* end container */


/* start input */

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea {
    padding: 0.6rem 0.9rem;
    height: auto;
    box-shadow: none;
    border-radius: 2px;
}


/* end input */


/* start header */

.static-top,
.logoLogin {
    padding: 0;
    border-top: 3px solid #e50000;
    -moz-box-shadow: 0px 0px 5px 2px #cccccc;
    -webkit-box-shadow: 0px 0px 5px 2px #cccccc;
    box-shadow: 0px 0px 5px 2px #cccccc;
}

.static-top {
    margin-bottom: 30px;
}

.nav-item .btn {
    transition: .3s;
    color: #fff;
}

.nav-item .btn:hover {
    opacity: .8;
}

.btnDatabase {
    background-color: #ec1b24;
    /* background-image: linear-gradient(to right, rgb(111, 129, 222) 0%, rgb(81, 99, 149) 51%, rgb(111, 129, 222) 100%); */
    /* background-size: 200% auto; */
}


/* .btnDatabase:hover {
    background-position: right center;
    background-color: rgb(111, 129, 222);
} */

.btnSaledata {
    background-color: rgb(199, 120, 51);
    /* background-image: linear-gradient(to right, rgb(207, 210, 125) 0%, rgb(247, 212, 117) 51%, rgb(207, 210, 125) 100%); */
    /* background-size: 200% auto; */
}


/* .btnSaledata:hover {
    background-position: right center;
    background-color: rgb(199, 120, 51);
} */


/* end header */


/* start index */

table input[type="checkbox"] {
    margin: 0;
}

#table-testAb_wrapper table,
#table-clients_wrapper table,
#table-lp-orders_wrapper table,
#table-users_wrapper table,
#table-tags_wrapper table,
#table-category_wrapper table,
#table-ab-test-idea_wrapper table{
    min-width: 1200px;
}
/*#table-users_wrapper .view-pager:nth-child(2){*/
/*    margin: 0;*/
/*}*/
.invalid{
    border: 2px solid red!important;
}
.table-bordered.table .thead-light th {
    color: #fff;
    background-color: #ec1b24;
}

.top-bar.expanded {
    background: none;
    padding: .5rem 1rem;
}

.dataTables_paginate {
    width: 100%;
    text-align: center!important;
    margin: 1rem 0!important;
}

button:focus {
    outline: none;
}

#table-testAb_wrapper table.dataTable.no-footer,
#table-clients_wrapper table.dataTable.no-footer,
#table-lp-orders_wrapper table.dataTable.no-footer,
#table-tags_wrapper table.dataTable.no-footer,
#table-users_wrapper table.dataTable.no-footer,
#table-category_wrapper table.dataTable.no-footer,
#table-ab-test-idea_wrapper table.dataTable.no-footer{
    border: none;
}


/*.dataTables_paginate{*/


/*    border-bottom: 1px solid #111;*/


/*}*/

#table-testAb_wrapper .dataTables_paginate,
#table-lp-orders_wrapper .dataTables_paginate,
#table-clients_wrapper .dataTables_paginate,
#table-users_wrapper .dataTables_paginate,
#table-tags_wrapper .dataTables_paginate,
#table-category_wrapper .dataTables_paginate,
#table-ab-test-idea_wrapper .dataTables_paginate{
    padding: 0;
    margin: 0!important;
    max-width: fit-content;
}

.wrap-taskIndex .select2 {
    width: 100%!important;
}

.logo img {
    height: 60px;
}

.logo {
    height: 60px;
}

#form-search-abtest .select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow
, #btn_add_statistical .select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow
, #btn_add_task .select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow
, #btn_add_past_data .select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow
, #btn_edit_past_data .select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow
, #btn_search .select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow{
    min-height: 37px;
    height: auto;
    border-radius: 2px;
}

#form-search-abtest .select2-container .select2-selection--single .select2-selection__rendered
,#btn_add_statistical .select2-container .select2-selection--single .select2-selection__rendered
,#btn_add_task .select2-container .select2-selection--single .select2-selection__rendered
,#btn_add_past_data .select2-container .select2-selection--single .select2-selection__rendered
,#btn_edit_past_data .select2-container .select2-selection--single .select2-selection__rendered
,#btn_search .select2-container .select2-selection--single .select2-selection__rendered
,#form-add-ab-test-idea .select2-container .select2-selection--single .select2-selection__rendered{
    padding: 4px 20px 5px 8px;
}

#table-testAb_info {
    padding: 0;
    margin: 0 15px 0 0;
}

#table-testAb_wrapper .view-pager,
#table-clients_wrapper .view-pager,
#table-lp-orders_wrapper .view-pager,
#table-users_wrapper .view-pager,
#table-tags_wrapper .view-pager,
#table-category_wrapper .view-pager,
#table-ab-test-idea_wrapper .view-pager{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #dee2e6;
    border-bottom-color: #000;
    padding: 20px 0;
    margin: 0 0 35px;
    min-width: 1200px;
}


/* end index */


/* start gen */

.overflowxAuto {
    overflow-x: auto;
}

#showReport{
    overflow: auto;
}

.navbar-expand-lg .navbar-collapse {
    padding: 0 1rem;
}
#option-task-clients .select2-container{
    width: 100% !important;
}


/* end gen */


/* start task add */

#groupTask{
    width: 100%;
}
#groupTask .group-adId {
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
    width: calc(100% - 43px);
}

#groupTask .group-adId .search-adID-group {
    position: static;
    margin: 0 0 0 15px;
}

#groupTask .group-adId .input-group {
    align-items: baseline;
    margin: 0 0 15px;
    flex-wrap: nowrap;
}

#groupTask .group-adId .input-group label {
    font-size: 15px;
    /*color: #808080;*/
    line-height: 1.2;
    text-align: right;
    width: 185px;
    margin: 0 5px 0 0;
}

#groupTask .group-adId .input-group .w50 {
    width: 430px;
    display: flex;
    align-items: baseline;
}

#groupTask .group-adId .input-group input {
    width: 240px;
    margin: 0;
}

#groupTask #addInput {
    margin: 0;
}

#groupTask .btnAdd {
    margin: 0 0 0 185px;
}

#btnAdd{
    background: #966600;
}
#btnAdd:hover,#btn-cancel-back:hover{
    background: #C55A11;
}

#btn-cancel-back{
    background-color:#966600;
    text-decoration: none;
}

#groupTask .input-group-wrap {
    position: relative;
}

#groupTask .btn_remove {
    top: 5px;
    right: -25px;
}
#btn_add_task .wrap-input100-task {
    width: 100%;
}
#btn_add_task .validate-input{
    position: static;
}
#btn_add_task .col-md-12 {
    padding: 0!important
}
.container-task-add .task-form-btn{
    margin: 0;
}
#groupTask .input_report:not(:first-child){
    padding: 45px 0 0;
    margin: 30px 0 0;
    border-top: 1px dotted #000;
}
#groupTask .input_report-left{
    width: 655px;
}
#groupTask .input_report-right .img{
    width: 200px;
}
#groupTask .input_report-right .img img{
    width: 200px;
    max-width: 100%;
}
#groupTask .input_report-right input{
    display: none;
}
#groupTask .input_report-right .btn span{
    background: url(../img/icon_images.png) no-repeat 10px 7px;
    background-color: #fff;
    color: #000000;
    display: block;
    text-decoration: none;
    font-size: 0.75rem;
    width: 130px;
    margin: 0 auto;
    /* box-shadow: 5px 5px 5px 1px rgba(0, 0, 0, 0.1); */
    border: 1px solid #ccc;
    padding: 6px 5px 5px 34px;
    transition: 0.8s;
}
/* end task add */

/* start Users */

.wrapUser{
    width: 100%;
}
.wrapUser h2{
    font-size: 2rem;
    margin: 0 0 30px;
}
.wrapUserCover{
    border: 1px solid #E9E9E9;
    padding: 10px 15px 25px;
    margin: 0 0 35px;
}
.wrapUserCover h3 span{
    background: #fff;
    position: relative;
    top: -20px;
    padding: 0 5px;
    left: -5px;
}
.wrapUserCover #search-filter-user{
    display: flex;
}
.wrapUserCover form#search-filter-user #search-users{
    height: 36px;
    padding: 6px 20px;
    min-width: 95px;
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
    border-radius: 5px;
    border-radius: .25rem;

}
.wrapUserCover form#search-filter-user #search-users:hover{
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}
.wrapUserCover input{
    margin: 0;
}
.wrapUserCover .fa-refresh{
    display: flex;
    align-items: center;
    color: #81C17A;
}
.wrapUserCover .input-groupsSearchClear{
    align-items: center;
    display: flex;
    white-space: nowrap;
}
.wrapUserCover .input-groupsSearchClear.fa-trash-o:before{
    margin-right: 5px;
}
.wrapUserCover .input-groups select{
    min-width: 150px;
}

/* end Users */

.input-groups{
    display: flex;
    align-items: baseline;
}
.mr10{
    margin-right: 10px!important;
}
.mr15{
    margin-right: 15px!important;
}
.mr25{
    margin-right: 25px!important;
}
.flex-wrap-wrap{
    flex-wrap: wrap;
}
#navbarResponsive .dropdown:hover>.dropdown-menu {
    display: block;
}
#navbarResponsive .dropdown-menu{
    /*min-width: 140px;
    max-width: 140px;*/
    left: 9px;
    position: absolute;
}
.date input{
    height: 42px;
}

#header-top > a{
    position: relative;
}
#navbarResponsive .dropdown-toggle::after{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
#header-top.dropdown::before{
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -25px;
}
.task-form-btn:not(:first-child){
    margin: 0 15px 0 0;
}
.table-responsive{
    display: table;
}
.table td, .table th{
    vertical-align: middle;

}
#detail_status_modal,#detail_orders_modal{
    padding-right:0px !important;
    overflow: auto;
}
/*#total_access{
    margin-bottom: 5px;
}*/
.disabled-checkbox, .disabled-label {
    opacity:0.5;
    pointer-events: none;
}
#lp_orders_survey,#total_access{
    margin: 10px 0;
    display: block;
    color: #0078a0!important;
    text-decoration: underline;
}
#lp_orders_analysis_accounts,#accesses_pc_sp{
    display: block;
    color: #0078a0!important;
    text-decoration: underline;
}
#lp_orders_survey:hover,#total_access:hover{
    color: #1d098a!important;
}
#lp_orders_analysis_accounts:hover,#accesses_pc_sp:hover{
    color: #1d098a!important;
}
.color-w{
    color: white!important;
}
p.img .mouse-pointer{
    cursor: url('data:image/svg+xml;utf8,<svg width="30" height="30" aria-hidden="true" focusable="false" data-prefix="far" data-icon="search-plus" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="svg-inline--fa fa-search-plus fa-w-16 fa-2x"><path fill="currentColor" d="M312 196v24c0 6.6-5.4 12-12 12h-68v68c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-68h-68c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h68v-68c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v68h68c6.6 0 12 5.4 12 12zm196.5 289.9l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L347.5 387.1c-2.3-2.3-3.5-5.3-3.5-8.5v-13.2c-36.5 31.5-84 50.6-136 50.6C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 52-19.1 99.5-50.6 136h13.2c3.2 0 6.2 1.3 8.5 3.5l121.4 121.4c4.7 4.7 4.7 12.3 0 17zM368 208c0-88.4-71.6-160-160-160S48 119.6 48 208s71.6 160 160 160 160-71.6 160-160z" class=""></path></svg>'), auto;
}

/*btn edit, copy, delete, detail*/
button.editStatus{
    width: 40px;
    height: 40px;
}
button.detailStatus,button.delete_task,button.copyStatus{
    margin-left: 5px;
    width: 40px;
    height: 40px;
    color: #fff;
}
.select2-container--default .select2-selection--multiple {
    border-radius: unset!important;
}

.nav-ureru .nav-pills .show>.nav-link {
    background-color: #ec1b24;
}

.nav-ureru .dropdown-menu.show {
    left: -6px!important;
}

#modalAbTestDetail.modal{
    overflow: auto;
    padding-right:0 !important;
}

#modalAbTestDetail .modal-header {
    height: 39px;
}

#modalAbTestDetail .btn_remove_group{
    right: 0px;
    top: 0;
}

#add_under_way{
    color: #fff;
}
#add_under_way:hover, #add_under_way:focus{
    background-color: #ec1b24;  
}

.search-win-rate .col-lg-3, .search-win-rate .col-md-3 {
    padding-left: 0;
    padding-right: 0;
}
.search-win-rate {
    align-items: center;
    padding-left: 15px;
}

.search-win-rate .focus-input100 {
    position: initial;
}

.search-win-rate .focus-input100::before {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
     transition: all 0.2s;
}

#table-ab-test-idea-know-how a {
    text-decoration: underline;
}

.show-win {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#add_know_how{
    color: #fff;
}

#add_know_how:hover, #add_know_how:focus{
    background-color: #ec1b24;  
}

.search-win-rate .col-lg-3, .search-win-rate .col-md-3 {
    padding-left: 0;
    padding-right: 0;
}

.search-win-rate {
    align-items: center;
    padding-left: 15px;
}

.search-win-rate .focus-input100 {
    position: initial;
}

.search-win-rate .focus-input100::before {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
     transition: all 0.2s;
}

#table-ab-test-idea-under-way a {
    text-decoration: underline;
}

#table-ab-test-idea-under-way tr {
    height: 50px;
}

.show-win {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.show-win.active span{
    display: block;
    background: url(../img/icon_winner_min.png) no-repeat;
    width: 39px;
    height: 39px;
    position: absolute;
    left: 2px;
}

#table-ab-test-idea .fa-question-circle-o {
    font-size: 20px;
    float: right;
    color: #9e9e9e;
}

#form-add-ab-test-idea .input_task {
    height: auto;
}

#form-add-ab-test-idea textarea#note.input100{
    font-size: 16px;
}

#form-add-ab-test-idea .select2-container--default .select2-selection--single {
    height: 37.19px;
    border-radius: 2px;
}

#form-add-ab-test-idea .select_input_task .error+span .select2-selection--single {
    border: 2px solid red;
}

#btn_add_task .error+span .select2-selection--single{
    border: 2px solid red;
}

.select_input_task span.select2 {
    margin-bottom: 16px;
}

.select_input_task .error+span.select2{
    margin-bottom: 0;
}

textarea.error {
    border: 2px solid red;
}

#table-ab-test-idea-detail_wrapper .view-pager, #table-ab-test-idea-under-way_wrapper .view-pager{
    z-index: 1;
    position: relative;
}

#table-ab-test-idea-under-way tbody tr td:nth-child(6) {
    font-size: 12px;
}

/*Fix blank option select2*/
.select2-results ul li:first-child {
    visibility: hidden;
    height: 0px;
    margin: 0;
    padding: 0;
}

.custom-dropdown .select2-results ul li:first-child {
    visibility: unset;
    height: 37px;
    margin-left: 4px;
    padding: unset;
}

.input-text .floral-white-bg {
    background-color: floralwhite;
} 

.input-text .floral-white-bg:focus {
    background-color: floralwhite;
} 
