.my_sale_buttons {
  display: flex;
  flex-direction: row;
  gap: 25px;
  background: #eee;
  height: 45px;
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  padding-left: 10px;
  padding-right: 10px;
}

.my_sale_header_col_check {
  display: flex;
  gap: 10px;
}

.wrapper {
  padding: 0;
  min-height: auto;
  width: 100%;
  display: block;
  background: none;
}
.container {
  height: auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.header {
  height: 100%;
}
.header__container {
  width: auto;
  border-bottom: 1px solid #dedede;
  padding: 0 15px;
}

.logo {
  width: 50%;
  padding: 0;
}

.logo__img {
  height: auto;
  width: 100%;
}

.menu {
  display: none;
}

footer {
  display: none;
}

h1 {
  font-size: 24px;
  padding: 25px 0 25px 0;
}

.my_sale_h1 {
  margin: 0;
}
.seller_logout svg {
  height: 35px;
  width: 35px;
}

.seller_profile {
  width: auto;
  position: relative;
}

.seller_name {
  float: right;
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
}
.seller_company {
  border-bottom: 1px solid #ddd;
  width: 100%;
}

.my_sale_rusult {
  width: 100%;
  grid-template-columns: 1fr 1fr;
  height: 155px;
}

.my_sale__item.my_sale_header {
  display: none;
}

.my_sale__item {
  display: flex;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 15px 50px -35px #6d787f;
  background-image: linear-gradient(to bottom, #fff, #f5f7f9) !important;
  border: 1px solid #dedede;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  gap: 7px;
}

.my_sale__item > div {
  width: 100%;
}
.modal.modal_active .content_show {
  position: relative;
  /* transition: bottom 0.4s; */
  /* -webkit-transition: bottom 0.4s; */
  /* right: 0; */
  /* left: 0; */
  /* top: auto; */
  /* width: auto; */
  /* margin: 0px 10px; */
  padding: 6px 15px;
}

.modal .modal_overlay {
  background: rgba(23, 33, 51, 0.55);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  backdrop-filter: blur(2px);
}

.modal_overlay:hover .modal_close {
  opacity: 1;
  right: 50%;
}
.modal_close {
  opacity: 0.4;
  background: #fff;
  height: 45px;
  width: 45px;
  position: absolute;
  top: 10%;
  text-align: center;
  line-height: 45px;
  font-size: 22px;
  border-radius: 100%;
  color: #48556e;
  z-index: 1;
  right: 50%;
  transform: translateX(50%);
  display: none;
}

.modal .content_show {
  display: block;
  width: 90%;
  height: 85%;
  padding: 20px 15px;
  box-sizing: border-box;
  position: fixed;
  background: #fff;
  z-index: 1;
  bottom: -100%;
  top: 0;
  box-shadow: -8px 0 24px 0 rgb(0 0 0 / 10%);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

#add_sale .input_group {
  margin: 0 0 15px 0;
  display: inline-block;
  width: 100%;
}

#add_sale .input_group input {
  width: 100% !important;
}

.modal form h1 {
  margin: 0;
  padding: 0;
}

.add_sale {
  position: fixed;
  bottom: 0px;
  height: 70px;
  /* background: #fff; */
  /* box-shadow: 0 -20px 24px 0 rgba(0, 0, 0, 0.1); */
  width: auto;
  left: 0;
  right: 0;
  z-index: 997;
  float: none;
  padding: 0 15px;
}

.add_sale__btn {
  width: 85%;
  box-sizing: border-box;
  text-align: center;
  height: 50px;
  line-height: 50px;
  background: #059214;
  font-weight: 600;
}

.my_sale__list {
  padding: 0;
  display: inline-grid;
  grid-row-gap: 15px;
  margin: 0 0 100px 0;
}

.seller_profile_dropdown {
  visibility: hidden;
  width: 200px;
  height: auto;
  display: block;
  box-shadow: 0 20px 25px -20px #000;
  position: absolute;
  top: 88px;
  background: #fff;
  right: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 15px 10px;
}

.seller_profile_dropdown.dropdown_active {
  visibility: visible;
  z-index: 1;
}
.seller_profile_icon {
  float: right;
  height: 45px;
}

.dropdown_active:after {
  width: 15px;
  height: 15px;
  content: "";
  background: #fff;
  position: absolute;
  right: 10%;
  top: -9px;
  transform: rotate3d(0, 0, -1, -315deg);
  z-index: 1;
  border-right: 1px solid #ced4d9;
  border-top: 1px solid #ced4d9;
}

#signin_form {
  width: 80%;
  padding: 0 15px 30px 15px;
  height: auto;
  display: inline-grid;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
}

#signin_form input {
  font-size: 16px;
  color: #434343;
  font-weight: 500;
}

#signin_form input::placeholder {
  font-size: 16px;
  font-weight: 500;
}

#signin_form label {
  margin: 0;
}

#signin_form h1 {
  line-height: 22px;
  padding: 25px 0 0 0;
}

#signin_form hr {
  margin: 0;
  color: #fcfcfc;
}

.product_name {
  white-space: normal;
  line-height: 20px;
  font-weight: 400;
}
.product_serial {
  width: 100%;
  font-size: 12px;
  margin: unset;
  background: #ccdef3;
  font-weight: 500;
  box-sizing: border-box;
}

.my_sale_header_col.col_delete {
  position: absolute;
  right: 0;
  top: 55%;
  width: 10%;
}
.my_sale_header_col.col_check {
  position: absolute;
  right: 0;
  top: 35%;
  width: 10%;
}
.my_sale_header_col.col_product {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sorting_sale {
  width: 100%;
  float: none;
  display: inline-block;
  height: auto;
  margin: 20px 0 0 0;
}

#sale_filter_date {
  display: none;
  background: #eaeaea;
  padding: 25px 15px;
  box-sizing: border-box;
  margin: 15px 0 0 0;
  border-radius: 7px;
}

.mobile_btn_show_filter,
.sale_filter_reset {
  height: 35px;
  width: 100%;
  background: #888888;
  line-height: 35px;
  border-radius: 7px;
  text-align: center;
  /* box-sizing: border-box; */
  margin: 0;
  color: #ffffff;
  padding: 3px 0 0 0px;
}

.my_sale_header_col.sale_number {
  display: flex;
  justify-content: space-between;
  float: none;
  height: 35px;
  border-bottom: 1px solid #dedede;
  margin: unset;
  align-items: center;
  box-sizing: border-box;
  padding: unset;
}

.my_sale_header_col.sale_number a {
  font-weight: 600;
}

.my_sale_details > div {
  border: 1px solid #dedede;
  padding: 5px 15px;
  box-sizing: border-box;
  border-radius: 10px;
  background: #e8e8ed;
}

.my_sale_details {
  display: flex;
  gap: 10px;
  align-content: center;
  justify-content: space-between;
}

.ul_mobile_fixed_menu {
  align-items: stretch;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  max-width: 100vw;
  overflow: hidden;
  padding: 10px;
}

.custom.div_mobile_fixed_menu {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  overflow: hidden;
  border-top: 0.1rem solid #dedee2;
  padding-bottom: env(safe-area-inset-bottom);
  z-index: 100;
  height: 66px;
  box-sizing: border-box;
  display: none;
}
.mobile_fixed_menu a {
  color: #000;
  font-size: 8px;
  font-weight: 700;
  line-height: 16px;
  opacity: 0.85;
  text-transform: uppercase;
  display: grid;
  grid-template-rows: 24px 18px;
  justify-items: center;
  position: relative;
}

.sale_card_snipp_result {
  font-size: 12px;
  text-align: left;
  line-height: 16px;
}
.sale_card_value_result {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.input_group {
  display: ruby;
  width: 100%;
}

#select2-product_select-results li {
  height: auto;
  border: 1px solid #ddd;
  line-height: 24px;
  margin: -1px 0 0 0;
  padding: 10px 15px 10px 15px;
}

.btn {
  font-size: 16px;
  border: none;
  padding: 0 15px;
  width: 100%;
  height: 55px;
  line-height: 55px;
  cursor: pointer;
  box-sizing: border-box;
}

.btn_cancel {
  background: #d5d5d5;
  color: #000000;
  margin: 15px 0 0 0 !important;
}

#check_of_sale {
  border: 1px dashed #9d9d9d;
  padding: 10px;
  height: 70px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.my_sale_details svg {
  height: 100%;
  display: block;
}

input,
select {
  height: 45px !important;
  padding: 0 15px !important;
  font-size: 16px;
  font-weight: 500;
  color: #4d4d4d;
  line-height: 45px !important;
  border: 1px solid #dedede;
}
.seller_profile {
  position: relative;
}

.seller_profile svg {
  margin: 0;
}

.seller_profile_icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
