html {
  font-family: "Roboto", sans-serif;
}

* {
  margin: 0px;
  padding: 0;
  text-decoration: none;
  color: #48556e;
}

hr {
  color: #ddd;
  margin: 15px 0 15px 0;
}

form {
  width: 100%;
  display: inline-block;
}
input {
  width: 100%;
  float: left;
  height: 45px;
  padding: 0 0 0 15px;
  border-radius: 5px;
  border: 1px solid #9d9d9d;
  box-sizing: border-box;
  color: #343434;
}
button {
  float: left;
  background: #ddd;
  height: 45px;
  padding: 0 10px;
  line-height: 45px;
  font-size: 18px;
  border-radius: 5px;
  border: 1px solid #ddd;
  cursor: pointer;
}

.btn_blue {
  background: #375df4;
  color: #fff;
  font-size: 16px;
  border: none;
  padding: 0 15px;
}

button.btn_add_sale {
  background: #375df4;
  color: #fff;
  font-size: 16px;
  border: none;
  padding: 0 15px;
  width: 100%;
  height: 55px;
  line-height: 100%;
}
label {
  float: left;
  width: 100%;
  margin: 15px 0 15px 0;
  font-weight: 500;
  color: #434343;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 25px auto;
  background: #fff;
  padding: 25px 15px;
  height: 100%;
  min-height: 100vh;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
}

.add_sale__form {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.modal .modal_content {
  display: block;
  width: 40%;
  height: 100%;
  padding: 20px 15px;
  box-sizing: border-box;
  position: fixed;
  background: #fff;
  z-index: 1;
  right: -100%;
  top: 0;
  box-shadow: -8px 0 24px 0 rgb(0 0 0 / 10%);
  overflow: auto;
}

.header {
  background: #fff;
  height: 85px;
  display: flex;
  box-shadow: 0 15px 20px -15px #ddd;
}
.header__container {
  display: inline-flex;
  width: 1440px;
  margin: 0 auto;
  justify-content: space-between;
  position: relative;
}
.logo__img {
  height: 45px;
}
.logo__desc {
  float: left;
  width: 30%;
}
.logo {
  display: inline-flex;
  gap: 20px;
  padding: 20px 0 0 0;
}
.menu__ul {
  display: inline-flex;
  gap: 55px;
}

.menu__item {
  line-height: 85px;
  font-weight: 500;
  position: relative;
  list-style: none;
}

.menu__item_active:before {
  height: 2px;
  bottom: 0;
  content: "";
  position: absolute;
  width: 100%;
  background: blue;
}

.menu__item:hover {
  cursor: pointer;
}

.menu__item:hover:before {
  height: 2px;
  bottom: 0;
  content: "";
  position: absolute;
  width: 100%;
  background: blue;
}

.add_sale__btn {
  background: #375df4;
  padding: 0 10px;
  border-radius: 5px;
  line-height: 45px;
  height: 45px;
  display: block;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
  width: 150px;
}
.add_sale {
  position: relative;
  width: 200px;
  float: right;
  height: 40px;
}

.add_sale__form:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #444444a1;
  z-index: auto;
}

.modal {
  visibility: hidden;
}

.modal.modal_active {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  transform: none;
  margin: 0;
  visibility: inherit;
  width: 100%;
  z-index: 1;
}

[id*="add_"] .btn {
  margin: 25px 0 0 0;
}

.modal_active .modal_content.content_show {
  right: 0;
  transition: right 0.3s;
}

.modal .modal_overlay {
  background: rgba(23, 33, 51, 0.85);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.modal_overlay:hover .modal_close {
  opacity: 1;
  right: 42%;
}
.modal_close {
  opacity: 0.4;
  background: #fff;
  height: 45px;
  width: 45px;
  position: absolute;
  right: 41%;
  top: 25px;
  text-align: center;
  line-height: 45px;
  font-size: 22px;
  border-radius: 100%;
  transition: 0.2s;
  color: #48556e;
}

footer {
  width: 100%;
  height: 100px;
  background: #f9f9f9;
  padding: 10px 0;
}

.footer_container {
  display: block;
  margin: 0 auto;
  width: 1200px;
}

body {
  height: 100%;
  display: block;
}

.wrapper {
  min-height: 700px;
  padding: 50px 0 50px 0;
  background: #f3f4fb;
}

.created_by__link {
  font-size: 18px;
  font-weight: 900;
  color: #454545;
  letter-spacing: 5px;
}
.created_by {
  float: right;
  line-height: 45px;
}
.copyright {
  float: left;
  line-height: 45px;
}

.card_seller_list_sale_row {
  border: 1px solid #f3f4fb;
  width: 100%;
  justify-content: space-between;
  border-radius: 5px;
  box-sizing: border-box;
  align-items: center;
  text-align: center;
  height: 90px;
  display: flex;
  gap: 35px;
}

.card_seller_list_sale_row:hover {
  border: 1px solid #293fb3;
  box-shadow: 0 0 15px 10px #ddd;
  background: #fff !important;
}

.card_seller_list_sale_header {
  background: #f3f4fb !important;
  border-radius: 10px;
  height: 65px;
  width: 100%;
  display: inline-grid;
  grid-template-columns: 0% 5% 31% 7% 6% 6% 4% 1% 8%;
  align-content: center;
  margin: 0 0 15px 0;
  text-align: center;
  justify-content: space-between;
  font-weight: bold;
}

.card_seller_list_sale_bottom {
  background: #ebf1fa;
  border-radius: 7px;
  height: 65px;
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 25px;
  font-size: 16px;
  font-weight: 600;
  position: sticky;
  bottom: 0;
  box-shadow: 0 -25px 20px -20px #ddd;
}

.card_seller_list_sale_header_col {
  width: 97px;
}

.card_seller_list_sale_header_col.col_check a svg path {
  color: #fb5f5f !important;
}

.card_seller_list_sale_header_col.col_check {
  font-size: 17px;
  width: 25px;
  width: 32px;
  height: 50px;
}

.card_seller_list_sale_header_col.col_delete {
  width: 63px;
}

.card_seller_list_sale_header_col.col_delete svg path {
  color: gray;
  font-size: 18px;
}

.card_seller_list_sale_header_col.col_delete:hover svg path {
  color: #ec8383;
}

.close_popup {
  right: -60px;
  position: absolute;
  top: 0;
  font-size: 24px;
  width: 35px;
  background: red;
  text-align: center;
  height: 35px;
  line-height: 35px;
  cursor: pointer;
  border-radius: 100%;
  color: #fff;
}

.select2-container {
  width: 100% !important;
  height: 45px;
}

#select2-product_select-results {
  width: 100%;
}

.seller_profile {
  display: flex;
  /* flex-direction: column; */
  width: 30%;
  /* flex-wrap: wrap; */
  /* gap: 0px; */
  padding: 18px 20px;
}
.seller_profile svg {
  float: left;
  width: 45px !important;
  height: 45px;
  color: #c3c3c3;
  margin: 16px 20px 0 0;
  background: #e3e3e3;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 100%;
}

.seller_company {
  /* color: #898989; */
  line-height: 28px;
  font-size: 16px;
  font-weight: 600;
  /* float: left; */
}
.seller_name {
  color: #474747;
  font-weight: 600;
  line-height: 20px;
  /* float: left; */
  margin-top: 13px;
  /* width: 100%; */
}

.seller_logout {
  float: right;
  /* padding: 0px 286px; */
  width: 36px;
}

.seller_logout svg {
  height: 60px;
  width: 35px !important;
  /* font-size: 18px !important; */
  padding: 0px;
  background: none;
  margin: 0px;
  line-height: 21px;
}

#select2-product_select-container {
  height: 45px !important;
  line-height: 45px;
  padding: 0 0 0 15px;
  font-size: 14px;
}

.select2-selection.select2-selection--single {
  height: 45px !important;
}

.card_seller_list_sale_header_col.col_product {
  line-height: 22px;
  width: 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product_serial {
  width: auto;
  display: block;
  background: #d5daed;
  padding: 0 10px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5b5656;
  letter-spacing: 3px;
}
.product_name {
  font-weight: 500;
  font-size: 14px;
  color: #3c3b44;
  width: 95%;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 22px;
  text-align: left;
}

.removeSale {
  background: none;
  border: none;
  width: auto;
  height: auto;
}

.sorting_sale {
  float: left;
  height: auto;
  display: flex;
  gap: 25px;
  width: 100%;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding: 25px 0 25px 0;
}

.sorting_sale select {
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 35px !important;
  height: 35px;
  padding: 0 35px;
  background: #f9f9f9;
  border: 1px solid #dedede;
  border-radius: 5px;
  width: 100%;
}

.bg_signin_page {
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
}

.bg_signin_page img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

#signin_form {
  width: 420px;
  padding: 20px 35px;
  height: 450px;
  border-radius: 5px;
  display: block;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 5px 10px -10px #878787;
  border: 1px solid #ddd;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

#signin_form h1 {
  font-size: 26px;
  line-height: 42px;
}

input[name="not_attach_ip"] {
  height: 20px;
  width: 20px;
  float: left;
}

.card_seller_list_sale_row:nth-child(2n + 1) {
  background: #f6f6fc;
}

.no_scroll {
  overflow: hidden;
  scroll: none;
}

.control_group {
  display: inline-grid;
  height: 55px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 5%;
}

.btn {
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  border: none;
  margin: 0;
  cursor: pointer;
}

.btn_blue {
  background: #3d3df3;
  color: #fff !important;
}

.compaies_stores_managers .companies_item,
.compaies_stores_managers .stores_item,
.compaies_stores_managers .sellers_item {
  cursor: pointer;
  padding: 5px 10px;
  position: relative;
  margin: 10px 10px;
  min-height: 60px;
  border: 1px solid #ced6e3;
  border-radius: 5px;
  overflow: hidden;
}

.compaies_stores_managers {
  display: inline-grid;
  grid-template-columns: 30% 30% 40%;
  width: 100%;
  background: #fff;
  padding: 0 0 50px 0;
  margin: 0 0 50px 0;
  height: auto;
  box-sizing: border-box;
}

.compaies_stores_managers h2 {
  padding: 0 15px;
  line-height: 45px;
  font-size: 22px;
  border-bottom: 1px solid #ddd;
  height: 45px;
}
.store_list,
.seller_list {
  background: #efefef;
  border: 1px solid #ddd;
}

.heading_group {
  margin: 0 0 35px 0;
  display: inline-grid;
  grid-template-columns: 50% 40%;
  width: 100%;
  grid-column-gap: 10%;
}

[class*="_item"].active:after {
  width: 15px;
  height: 15px;
  content: "";
  background: #e1e7f0;
  position: absolute;
  right: -3px;
  top: 50%;
  transform: rotate3d(0, 0, -1, 320deg) translateY(-50%);
  border-right: 1px solid #ced6e3;
  border-top: 1px solid #ced6e3;
}

.stores_list.select_company {
  left: -140px;
  position: relative;
  box-shadow: -80px 0 80px -20px #0000004a;
  z-index: 1;
  height: 100%;
  background: #fff;
  border-left: 1px solid #ddd;
}

[id*="_list_container"] {
  overflow-x: hidden;
  height: 100%;
  scrollbar-width: thin;
  overflow-y: auto;
}

#stores_list_container {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

[id*="_list_container"]::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #dadada; /* or add it to the track */
}

/* Add a thumb */
[id*="_list_container"]::-webkit-scrollbar-thumb {
  background: #aaa;
}

.compaies_stores_managers [class*="_item"].active {
  background: #e1e7f0;
  border: 1px solid #ced6e3;
  border-radius: 5px;
}

.sellers_list.select_store {
  left: -140px;
  position: relative;
  box-shadow: -80px 0 80px -20px #0000004a;
  z-index: 1;
  height: 100%;
  background: #fff;
  border-left: 1px solid #ddd;
}

.sellers_item.active {
  background: #ddd;
  border: 1px solid blue;
}

#seller_edit_container {
  width: 70%;
  z-index: 1;
  background: #fff;
  position: absolute;
  right: 0;
  height: 100%;
  padding: 0 25px 0 25px;
  box-sizing: border-box;
  overflow: auto;
}

#seller_edit .modal_close {
  right: 72%;
}

form select {
  height: 45px;
  padding: 0 10px;
  font-size: 14px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.control_tabs {
  width: auto;
  height: 50px;
  margin: 20px 0 20px 0;
  float: left;
}

.control_tabs a {
  color: #545454;
  font-size: 18px;
  margin: 0 0 0 -25px;
  line-height: 40px;
  background: #fff;
  height: 40px;
  display: block;
  float: left;
  border: 1px solid #ddd;
  padding: 0 40px;
  border-top-left-radius: 20px;
  border-right: 0;
  box-shadow: inset 0 0 35px -25px #ddd;
  box-sizing: border-box;
}

.control_tabs a:first-child {
  margin: 0;
  box-shadow: inset 0 0 35px -25px #333;
}

.control_tabs a:last-child {
  border-right: 1px solid #ddd;
}

.card_seller_list_sale_header_col p {
  float: left;
}

[class*="sale_status_"] {
  font-size: 13px;
  border-radius: 5px;
  text-align: center;
  line-height: 24px;
  padding: 0 5px;
  height: 24px;
}

.sale_status_0 {
  background: #888;
  color: #fff;
}

.sale_status_1 {
  background: #216bca;
  color: #fff;
}

.sale_status_2 {
  background: #65b065;
  color: #fff;
}

.sale_status_3 {
  background: #ff7a7a;
  color: #fff;
}

.card_seller_edit_btn {
  position: absolute;
  right: 0;
  display: block;
  width: auto;
  height: 35px;
  background: #2a2af3;
  text-align: center;
  padding: 0 10px;
  line-height: 35px;
  border-radius: 5px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #fff;
}

.card_seller_edit_btn:hover {
  background: #5e5ef7;
  color: #fff;
}

.card_seller_result_item {
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #eefddb;
  font-size: 14px;
  padding: 0 10px;
  box-sizing: border-box;
}
.card_seller_result {
  display: inline-grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
  height: 60px;
}
.card_seller_company {
  font-size: 16px;
  line-height: 24px;
  color: #717c92;
  font-weight: 500;
}
.card_seller_name {
  font-size: 24px;
  line-height: 36px;
}

.card_seller_result_item p:nth-child(1) {
  font-weight: 600;
  line-height: 36px;
  color: #fff;
}

.card_seller_result_item p:nth-child(2) {
  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 24px;
  color: #fff;
}
.card_seller_profile {
  width: 100%;
  /*! margin: 0 0 15px 0; */
  position: relative;
  display: inline-grid;
  grid-template-columns: 35% 65%;
  height: auto;
  border-bottom: 1px solid #ddd;
  padding: 25px 0 15px 0;
  box-sizing: border-box;
}

.sellers_list .card_seller_result_item {
  border: 1px solid #5169e7;
  border-radius: 5px;
  box-shadow: 0 0 10px -5px #b1acec;
  background: linear-gradient(to right, #454ed8, #2069ca);
  color: #fff;
  padding: 10px 0 10px 10px;
  margin: 0;
  display: inline-grid;
  box-sizing: border-box;
  height: 60px;
}

.seller_item_in_list .card_seller_result {
  grid-template-columns: 1fr 1fr;
}

.sellers_list .current_percent {
  font-size: 16px;
  background: #50aa62;
  color: #fff;
  width: auto;
  display: inline-block;
  padding: 0 10px;
  border-radius: 10px;
  line-height: 24px;
  font-weight: 500;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.sellers_list .card_seller_result_item p {
  line-height: 16px;
  font-size: 14px;
  font-weight: 500;
  align-self: center;
}

[id*="_search"] {
  width: 100%;
  float: none;
  box-sizing: border-box;
  display: inline-block;
  background: #edf2f4;
  border: 1px solid #e1e4ff;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  box-shadow: inset 0 0 20px -10px #e3e3e3;
}

[class*="_search_block"] {
  padding: 0 10px;
  margin: 15px 0 0 0;
}

.my_sale_rusult {
  display: inline-grid;
  width: 60%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 5%;
}

.my_sale_rusult_item {
  border: 1px solid #5169e7;
  border-radius: 5px;
  box-shadow: 0 0 10px -5px #b1acec;
  background: linear-gradient(to right, #454ed8, #2069ca);
  color: #fff;
  padding: 10px 0 10px 10px;
}

.my_sale_rusult p {
  color: #fff;
  font-size: 14px;
}

.my_sale_rusult p:nth-child(2) {
  font-size: 20px;
  font-weight: 600;
}

.card_seller_list_sale_header_col.col_bonus {
  display: inline-grid;
  grid-template-columns: 40% 60%;
}

.intput_group {
  float: left;
  width: 100%;
  position: relative;
  margin: 25px 0 0 0;
}
.show-password {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 25px;
  background: none;
  border: none;
}

.pass_generated,
.file_download {
  font-size: 16px;
  line-height: 20px;
  width: auto;
  margin-top: 20px;
  color: #6060b3;
  border-bottom: 1px #ddd dashed;
  cursor: pointer;
  display: inline-block;
  margin-right: 25px;
}
#sucure_pass {
  background: green;
  color: #fff;
  padding: 0 15px;
  border-radius: 10px;
  cursor: pointer;
}

[class*="_item"]:hover .btn_edit_block {
  opacity: 1;
}

.btn_edit_block {
  position: absolute;
  height: 100%;
  width: 20%;
  top: 0;
  right: 0;
  display: block;
  opacity: 0.5;
  transition: 0.4s;
}

.btn_edit_list {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  display: inline-grid;
  gap: 10px;
  justify-content: center;
  left: 0;
  right: 0;
}

.text_holder {
  position: relative;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 60%;
  left: 50%;
  font-size: 22px;
  color: #999;
  height: auto;
  display: block;
}

.card_seller_list_sale_rows {
  display: inline-grid;
  gap: 15px;
  width: 100%;
}

.card_seller_list_sale_header_col.col_status {
  justify-content: center;
  display: grid;
  position: relative;
}

.change_status_select.show_select {
  display: block;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  height: 30px;
  width: 95%;
}

.change_status_select {
  display: none;
}

.not_sale {
  font-size: 16px;
  color: gray;
}

.seller_name_in_list {
  font-size: 18px;
  margin: 0 0 10px 0;
  font-weight: 500;
  border-bottom: 1px solid #dedede;
  line-height: 32px;
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.my_sale__item.my_sale_header {
  background: #e1e2eb !important;
  border-radius: 10px;
  height: 65px;
  width: 100%;
  display: inline-grid;
  grid-template-columns: 10% 30% 10% 10% 9% 12% 2% 7%;
  align-content: center;
  margin: 0 0 15px 0;
  text-align: center;
  justify-content: space-between;
  border: none;
}

.my_sale__item {
  display: inline-grid;
  border: 1px solid #ccceda;
  width: 100%;
  grid-template-columns: 10% 30% 10% 10% 10% 10% 5% 5%;
  justify-content: space-between;
  border-radius: 5px;
  padding: 15px 15px;
  box-sizing: border-box;
  align-items: center;
  text-align: center;
  height: auto;
}

.my_sale__item:nth-child(2n + 1) {
  background: #f6f6fc;
}

a.sale_filter_reset {
  display: none;
}

.select2-results {
  box-shadow: 0 20px 10px 5px #b1b1b1;
}
#select2-product_select-results li {
  height: 30px;
  border: 1px solid #ddd;
  line-height: 30px;
  margin: -1px 0 0 0;
  padding: 10px 15px 10px 15px;
}
.card_seller_add_sale {
  float: right;
  width: 150px;
  background: #39b028;
  height: 40px;
  line-height: 40px;
}
.seller_item_in_list {
  height: min-content;
  border: 1px solid #dddd;
  overflow: hidden;
  margin: 15px 10px 0 10px;
  border-radius: 5px;
  padding: 10px 10px;
  position: relative;
}

.seller_item_in_list:hover {
  background: #f1f4f0;
  cursor: pointer;
}

.seller_info_result {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  width: 80%;
}

.seller_info_result p {
  font-size: 14px;
}
.seller_info_result p:nth-child(2) {
  font-weight: 600;
}

#seller_login,
#password {
  cursor: not-allowed;
  background: #ededed;
  pointer-events: none;
}

.card_seller_edit_block {
  width: auto;
  display: flex;
  gap: 20px;
  height: 35px;
  line-height: 35px;
}

.card_seller_edit_block p {
  color: #2963cd;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.list_products {
  display: inline-grid;
  width: 100%;
  height: 600px;
  overflow: auto;
}

.item_product {
  display: inline-grid;
  grid-template-columns: 15% 35% 35% 15%;
  width: 100%;
  border: 1px solid #ddd;
  height: 65px;
  font-size: 16px;
  align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
  line-height: 18px;
}

.btn_group_produt {
  float: left;
  width: 20%;
  position: sticky;
  top: 30px;
  padding: 0 10px 0 0;
  box-sizing: border-box;
}

.btn_group_produt p {
  margin: 10px;
}
.products_page_list_products {
  float: left;
  width: 80%;
}

.list_products_search {
  display: inline-block;
  width: 100%;
  margin: 0 0 25px 0;
}

.list_products_search input {
  background: #edf2f4;
  font-size: 16px;
  border: 1px solid #e1e4ff;
  box-shadow: inset 0 0 20px -10px #e3e3e3;
}

.list_products_search input:focus-visible {
  background: #f9f9f9;
}

.item_product_name {
  font-weight: 500;
  font-size: 14px;
}

.my_sale__list {
  margin: 25px 0 0 0;
}

.my_sale_h1 {
  margin: 0 0 25px 0;
}

#sale_filter_date {
  display: flex;
  gap: 25px;
}

#sale_filter_date input,
#sale_filter_date select {
  cursor: pointer;
  height: 45px;
}

#list_sale h1 {
  font-size: 26px;
  display: inline-block;
  float: none;
  width: 100%;
  margin: 0 0 15px 0;
}

.row {
  display: inline-block;
  width: 100%;
}

.ul_mobile_fixed_menu {
  display: none;
}

.mass_edit_control {
  float: left;
  display: flex;
  gap: 30px;
  padding: 0;
  height: 55px;
}

.mass_edit_control p {
  border: 1px solid #dedede;
  border-radius: 7px;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  cursor: pointer;
  background: #ededed;
}

.mass_edit_control p:hover {
  background: #f9f9f9f9;
}
