html {
  scroll-behavior: smooth;
}

/* LOGIN-FLOW */
section.bidder-login-wrap {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  gap: 20px;
}

.bidder-left {
  width: 50%;
  height: 100%;
  display: flex;
  overflow: auto;
  scrollbar-width: none;
  align-items: baseline;
  padding: 1rem 0;

  a.back-icon {
    font-size: 2rem;
    position: absolute;
    top: 20px;
    left: 20px;
  }

  form {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 0px 50px;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
    margin: auto 0;

    h1 {
      font-size: 30px;
      color: var(--primary-clr);
      text-align: start;
      margin-bottom: 0px;
    }

    h2 {
      font-size: 20px;
      font-weight: 600;
      color: var(--primary-clr);
      text-align: start;
      margin-bottom: 0px;
      width: 100%;
    }

    h3 {
      font-size: 18px;
      width: 100%;
      margin-bottom: 0px;
      font-weight: 500;
      color: #333333;
      line-height: 30px;
    }

    .bidder-left-text {
      width: 100%;
      font-size: 16px;
      font-weight: 600;
      text-align: end;
      margin-bottom: 0px;
      color: #333333;
    }

    .bidder-left-btn {
      width: 100%;
      margin-bottom: 0px;
      background: var(--primary-clr);
      color: var(--white);
      font-weight: 600;
    }

  }

}

.bidder-left-field {
  width: 100%;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0px;

  &:last-child {
    margin-bottom: 0;
  }

}

.bidder-left-field input[type="text"],
.bidder-left-field input[type="password"] {
  width: 100%;
  height: 100%;
  border: 1px solid #8E8E8E;
  outline: none;
  background: var(--white);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-clr);
  padding: 0px 20px;

  &::placeholder {
    color: #8E8E8E;
  }

}

.bidder-left-field select {
  width: 100%;
  height: 100%;
  box-shadow: none;
  border: 1px solid #8E8E8E;
  outline: none;
  background-color: var(--white);
  background-size: 15px;
  background-position: calc(100% - 20px);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #8E8E8E;
  padding: 0px 20px;
  cursor: pointer;

  & option {
    font-weight: 600;
    color: #333333;
  }

}

.additional-gst input[type="text"].active {
  color: #8E8E8E;
  background-color: #D1E6FD;
  border: 1px solid #D1E6FD;
}

.additional-gst input[type="text"][disabled] {
  background-color: #D8D8D8;
  border-color: #8E8E8E;
  background-image: url(../images/field-disabled.svg);
  background-size: 20px;
  background-position: center right 15px;
  background-repeat: no-repeat;
}

.additional-gst p.bidder-left-text.bidder-left-checkbox {
  color: #8E8E8E;
  font-size: 14px;
  font-weight: 500;
}

.bidder-left-field.international-user-field img {
  position: absolute;
  right: 15px;
}

.bidder-image {
  width: 50%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}

.password-eye {
  position: absolute;
  width: 20px;
  height: 20px;
  display: flex;
  top: auto;
  right: 15px;
  border: none;
  align-items: center;
  background: none;
  justify-content: center;
  cursor: pointer;
  transition: .5s;
}

.password-eye .eye-close {
  background-image: url(../images/eye-close.svg);
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.password-eye .eye-open {
  background-image: url(../images/eye-open.svg);
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.bidder-left-field-code {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.bidder-left-field-code-in {
  display: block;
  height: 50px;
  width: 50px;
  padding: 0px;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  text-align: center;
  color: #8E8E8E;
  background: #F8F8F808;
  border: 1px solid #8E8E8E;
  outline: none;
  border-radius: 8px !important;
  caret-color: var(--primary-clr);
}

.bidder-left-field-code-in.active {
  background: #F8F8F8;
}

.bidder-left-field-code-in::-webkit-outer-spin-button,
.bidder-left-field-code-in::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.successfully-popup .modal-content {
  border-radius: 20px;

  & button[aria-label="Close"] {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 28px;
    height: 28px;
    background: none;
    padding: 0;
    border: none;
    outline: none;
    z-index: 9;

    img {
      width: 100%;
      height: 100%;
    }

  }

}

.successfully-popup .modal-dialog {
  max-width: 520px;
}

.successfully-popup .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;

  img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
  }

  h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-clr);
    margin-bottom: 15px;

    span {
      font-size: 24px;
      font-weight: 600;
      color: #FFA723;
      margin-bottom: 15px;
    }

  }

  h2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-clr);
    margin-bottom: 15px;
  }

  p {
    font-size: 16px;
    font-weight: 500;
    color: #58585A;
    margin-bottom: 35px;
    display: flex;
    gap: 5px;
    align-items: center;

    b {
      font-weight: 600;
      color: #000;
    }

    input[type="checkbox"] {
      width: 17px;
      height: 17px;
      cursor: pointer;
      accent-color: var(--primary-clr);
    }

    a {
      background: none;
      border: none;
      padding: 0;
      color: var(--primary-clr);
    }

  }

  .create-admin-bns {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;

    a:nth-child(1) {
      background: var(--primary-clr);
      color: var(--white);
      font-weight: 600;
      border: 1px solid var(--primary-clr);
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 100px;
      padding: 12px 55px;
      cursor: pointer;
      font-size: 16px;
      outline: none !important;
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
    }

    a:nth-child(2) {
      background: transparent;
      color: #00152B;
      font-weight: 600;
      border: 1px solid #00152B;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 100px;
      padding: 12px 55px;
      cursor: pointer;
      font-size: 16px;
      outline: none !important;
      -webkit-transition: all 0.3sease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3sease-in-out;
    }

  }

}

.bidder-left-text.bidder-left-checkbox {
  display: flex;
  align-items: center;
  gap: 5px;

  input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #8E8E8E;
    accent-color: var(--primary-clr);
    cursor: pointer;
  }

}

form.upload-doc h1 {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;

  & img {
    width: 18px;
    cursor: pointer;
  }

  &:hover .info-in {
    visibility: visible;
  }

}

.info-in {
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  width: 350px;
  background-color: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 10px;
  border-radius: 8px;
  top: auto;
  left: 30px;
  visibility: hidden;

  b {
    font-weight: 400;
    color: red;
    display: inline-block;
    margin-bottom: 5px;
  }

}

.bidder-left-upload-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bidder-left-upload {
  width: 100%;
  height: 50px;
  border: 1px dashed #00152B;
  border-radius: 10px;

  label {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 15px;
    font-weight: 500;
    color: #416072;
    cursor: pointer;
    padding: 0 10px;

    img {
      width: 30px;
      height: auto;
    }

  }

}

.bidder-left-upload-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.bidder-left-upload-in {
  width: 80px;
  height: 80px;
  border: 1px solid #00152B;
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;

  img {
    width: 100% !important;
    height: 100% !important;
  }

  button {
    color: red;
    background: #fff;
    padding: 0;
    border: none;
    outline: none;
    font-size: 1.2rem;
    position: absolute;
    right: -5px;
    top: -5px;
    padding: 1px;
  }

}

/* LOGIN-FLOW */

/* WELCOME-BIDDER-PAGE */



.dashboard-header {
  width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
}

.dashboard-header-sidebar {
  width: 290px;
  height: auto;
  display: flex;
  transition: .3s ease;
  background: var(--primary-clr);
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-right: 1px solid #E7E7E7;
}

.dashboard-header-sidebar .dashboard-notification {
  display: none;
}

.logo {
  width: 180px;
  height: auto;

  a {
    display: block;

    img {
      width: 100%;
      height: 100%;
    }

  }

}

button.menu-icon {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  display: flex;
  align-items: center;
  width: 22px;
  height: auto;
  justify-content: center;

  img {
    width: 100%;
    height: 100%;
    transform: rotateY(0deg);
    transition: .3s ease;
  }

}

button.menu-icon.flip img {
  transform: rotateY(180deg);
  transition: .3s ease;
}

.dashboard-header-profile {
  width: calc(100% - 290px);
  background: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid #E7E7E7;

  form {
    width: 30%;
    height: auto;

    input[type="text"] {
      height: auto;
      padding: 10px;
      border-radius: 10px;
      background-color: var(--white);
      border: 2px solid #949494;
      color: #949494;
      font-size: 14px;
      font-weight: 600;
      background-image: url(../images/search.svg);
      background-repeat: no-repeat;
      background-position: center right 10px;
      background-size: 20px;

      &::placeholder {
        color: #949494;
      }

    }

  }

}

.dashboard-notification {
  width: auto;
  position: relative;
  margin-left: auto;

  button {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #F6F6F6;
    position: relative;
    border: none;
    outline: none;

    span {
      width: 20px;
      height: 20px;
      display: flex;
      position: absolute;
      top: -3px;
      right: -3px;
      background-color: #EA3030;
      color: #fff;
      border-radius: 5px;
      font-size: 14px;
      align-items: center;
      justify-content: center;
    }

  }

}

.dashboard-notification-dropdown {
  position: absolute;
  max-height: 450px;
  overflow: auto;
  scrollbar-width: none;
  right: 0;
  background: #F2F8FF;
  min-width: 450px;
  height: auto;
  padding: 2rem 1rem 1rem 1rem;
  box-shadow: 0px 4px 28.9px 0px #0000001A;
  border-radius: 10px;
  top: 100%;
  margin-top: 10px;
  display: none;

  h3 {
    color: #000;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px;
  }

}

.dashboard-notification-dropdown-item {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;

  &:last-child {
    margin-bottom: 0;
  }

  h4 {
    color: #000;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0;
    width: 65%;

    b {
      font-weight: 600;
    }

  }

  p {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    margin-left: auto;
  }

}

.dashboard-notification-dropdown-icon {
  width: 50px;
  height: auto;

  img {
    width: 100%;
    height: 100%;
  }

}

.dashboard-bidder-profile {
  display: flex;
  align-items: center;
  color: #2A2A2A;
  font-size: 16px;
  font-weight: 600;
  gap: 10px;
  border-left: 1px solid #C9C9C9;
  margin-left: 15px;
  padding-left: 15px;
}

.dashboard-bidder-profile-image {
  width: 40px;
  height: 40px;
  position: relative;

  img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  span {
    width: 12px;
    height: 12px;
    background-color: #23A149;
    display: block;
    position: absolute;
    bottom: -2px;
    right: -2px;
    border-radius: 50%;
  }

}

main.dashboard-wrap {
  width: 100%;
  /* padding-top: 4.5rem; */
}

.dashboard-nav-sidebar {
  width: 290px;
  height: 100%;
  background: var(--primary-clr);
  border-right: 1px solid #E7E7E7;
  position: fixed;
  top: auto;
  left: 0;
  overflow-x: hidden;
  scrollbar-width: none;
  transform: translateX(0%);
  transition: .3s ease;
  z-index: 1;

  &.hide {
    transform: translateX(-100%);
    transition: .3s ease;
  }

}

.side-navbar {
  width: 100%;
  padding: 25px 15px;

  p {
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary-clr);
    margin-bottom: 15px;
  }

  ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;

    li {
      list-style: none;

      a {
        display: flex;
        font-weight: 500;
        font-size: 14px;
        color: var(--white);
        align-items: center;
        gap: 10px;
        padding: 10px;
        border-radius: 10px;

        &.active,
        &:hover {
          background-color: var(--secondary-clr);
          transition: .5s;
        }

      }

      &:last-child a {
        color: #FF0000;

        &:hover {
          color: var(--white);
        }

        &:hover img {
          filter: brightness(0) invert(1);
        }

      }

    }

  }

}

.dashboard-content {
  position: relative;
  width: calc(100% - 290px);
  left: 290px;
  transition: .3s ease;
}

.dashboard-nav-sidebar.hide~.dashboard-content {
  width: calc(100% - 0px);
  left: 0px;
  transition: .3s ease;
}

.welcome-page {
  padding: 2rem 1rem;

  h2 {
    font-size: 50px;
    margin-bottom: 0;
  }

  hr {
    width: 100%;
    height: 1px;
    background-color: var(--primary-clr);
    opacity: 1;
    margin: 2rem 0;
  }

}

.welcome-page-inner {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.welcome-page-item {
  width: 30%;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--primary-clr);
  display: flex;
  flex-direction: column;
  align-items: center;

  img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  p {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #333;
    text-align: center;
  }

  a {
    background-color: var(--primary-clr);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    padding: 12px 0;
    border-radius: 30px;
    text-align: center;
  }

}

.side-navbar-mob {
  display: none;
}

/* WELCOME-BIDDER-PAGE */

/* TRANSACTIONS-PAGE */



.page-wrap {
  padding: 25px;
}

.page-heading {
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;

  h1 {
    font-weight: 700;
    font-size: 26px;
    color: var(--primary-clr);
    text-align: start;
    margin-bottom: 0px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;

    a {
      width: 40px;
      height: 40px;
      display: flex;
      background-color: #E4F1FF;
      border-radius: 50%;
      padding: 0.6rem;

      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

    }

    span {
      font-weight: 400;
      font-size: 18px;
    }

  }

}

.page-tabs {
  width: 100%;

  ul {
    width: 100%;
    -webkit-box-shadow: inset 0px -2px 0px 0px #E5E9EB;
    -moz-box-shadow: inset 0px -2px 0px 0px #E5E9EB;
    box-shadow: inset 0px -2px 0px 0px #E5E9EB;
  }

  .nav-pills .nav-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-clr);
    padding: 15px 0px;
    margin-right: 30px;
    border-radius: 0;
  }

  .nav-pills .nav-link.active,
  .nav-pills .show>.nav-link {
    font-weight: 600;
    background-color: transparent;
    color: var(--primary-clr);
    border-bottom: 2px solid var(--primary-clr);
  }

}

.page-table {
  width: 100%;

  .table-responsive::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  .table-responsive::-webkit-scrollbar-track {
    background: #eee;
  }

  .table-responsive::-webkit-scrollbar-thumb {
    background: var(--primary-clr);
    border: none;
    border-radius: 10px;
  }

  table {
    width: 100%;
    min-width: max-content;
    border: 1px solid #888;

    th {
      font-weight: 500;
      font-size: 14px;
      background-color: var(--primary-clr);
      text-transform: uppercase;
      color: var(--white);
      text-align: center;
      padding: 12px 15px;
      border: 1px solid #888;
    }

    td {
      font-weight: 500;
      font-size: 14px;
      color: #333333;
      text-align: center;
      padding: 10px 15px;
      border: 1px solid #888;

      & .transactions-status-tag {
        font-weight: 600;
        font-size: 14px;
        display: flex;
        padding: 10px 20px;
        border-radius: 8px;
        align-items: center;
        gap: 10px;
        justify-content: center;
        width: fit-content;
        margin: auto;

        &.succeeded {
          background: #EBFFF1;
          color: #119C2B;

          i {
            color: #22C348;
            font-size: 16px;
          }

        }

        &.refunded {
          background: #FFF9F0;
          color: #FFA723;

          i {
            color: #FFA723;
            font-size: 16px;
          }

        }

        &.failed {
          background: #FFF0F0;
          color: #FF0000;

          i {
            color: #FF0000;
            font-size: 16px;
          }

        }

      }

      & .bid-status-tag {
        font-weight: 500;
        font-size: 14px;
        color: var(--white);
        display: flex;
        padding: 10px 20px;
        border-radius: 8px;
        align-items: center;
        gap: 10px;
        justify-content: center;
        width: fit-content;
        margin: auto;
        text-transform: capitalize;

        &.green {
          background: #1A9E00;
        }

        &.red {
          background: #F20000;
        }

      }

    }

    tr:nth-child(odd) {
      background-color: #fff;
    }

    tr:nth-child(even) {
      background-color: #CDE5FF;
    }

  }

}

/* TRANSACTIONS-PAGE */

/* BID-HISTORY-PAGE */



.page-table.bid-history table tr td {
  text-transform: uppercase;
}

.page-filters {
  width: auto;

  form {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
  }

}

/* BUTTON */
.filters-btn {
  color: var(--white);
  font-weight: 600;
  border: none;
  height: 40px;
  padding: 0px 15px;
  font-size: 14px;
  outline: none;
  border-radius: 30px;
  background: var(--primary-clr);
  display: flex;
  align-items: center;
  gap: 10px;

  img {
    width: 20px;
    height: auto;
  }

}

.filters-btn:focus {
  background-color: #28588B;
}

/* BUTTON */

/* DROPDOWN */



.filters-dropdown {
  position: relative;
}

.filters-drop-list {
  position: absolute;
  right: 0;
  padding: 10px;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-top: 5px;
  display: none;
  width: max-content;
  z-index: 9;
}

.filters-drop-list-search {
  width: 100%;
  border-radius: 5px;
  background: #CDE5FF;
  display: flex;
  align-items: center;
}

.filters-drop-list-search input[type="text"] {
  width: 100%;
  height: 35px;
  background: none;
  border: none;
  outline: none;
  padding: 6px 10px;
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

.filters-drop-list-search input[type="text"]::placeholder {
  color: #333;
}

.filters-drop-list-search button {
  background: none;
  border: none;
  outline: none;
  margin-right: 5px;
}

.filters-drop-list-search button img {
  width: 20px;
  height: auto;
}

.filters-drop-list-inner {
  width: 100%;
  height: 150px;
  overflow-y: scroll;
  margin: 10px 0 10px 0;
  padding-right: 8px;

  &::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  &::-webkit-scrollbar-track {
    background: #B9DBFF;
  }

  &::-webkit-scrollbar-thumb {
    background: var(--primary-clr);
    border: none;
    border-radius: 0px;
  }

}

.filters-drop-list-item {
  width: 100%;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 9px;
  cursor: pointer;
}

.filters-drop-list-item input[type="checkbox"] {
  width: 14px;
  height: 14px;
  cursor: pointer;
  appearance: none;
  outline: 2px solid var(--primary-clr);
  border-radius: 2px;
  outline-offset: -2px;
}

.filters-drop-list-item input[type="checkbox"]:checked {
  accent-color: var(--primary-clr);
  appearance: auto;
  border-radius: 2px;
  outline: 2px solid var(--primary-clr);
}

.filters-drop-list-inner.exrta {
  height: auto;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

/* DROPDOWN */

/* DATERANGE */



.daterange-btn {
  width: auto;
  height: auto;
  background: var(--primary-clr);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.daterange-btn img {
  width: 20px;
  height: auto;
  position: absolute;
  left: 15px;
}

.daterange-btn input[type="text"] {
  padding: 0px 10px 0px 50px;
  font-size: 14px;
  height: 40px;
  font-weight: 600;
  outline: none;
  color: #fff;
  border: none;
  border-radius: 30px;
  background-color: transparent;
  width: 160px;
  cursor: pointer;
}

.daterange-btn input[type="text"]::placeholder {
  color: #fff;
}

.daterange-btn2 {
  width: auto;
  height: auto;
  background: var(--primary-clr);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.daterange-btn2 img {
  width: 20px;
  height: auto;
  position: absolute;
  left: 15px;
}

.daterange-btn2 input[type="text"] {
  padding: 0px 10px 0px 50px;
  font-size: 14px;
  height: 40px;
  font-weight: 600;
  outline: none;
  color: #fff;
  border: none;
  border-radius: 30px;
  background-color: transparent;
  width: 105px;
  cursor: pointer;
}

.daterange-btn2 input[type="text"]::placeholder {
  color: #fff;
}

.daterangepicker {
  font-family: "Montserrat", serif !important;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: var(--primary-clr) !important;
}

.daterangepicker .drp-buttons .btn .btn-primary {
  background-color: var(--primary-clr) !important;
}

button.applyBtn.btn-primary {
  background-color: var(--primary-clr) !important;
}

/* DATERANGE */

/* BID-HISTORY-PAGE */

/* MY-ACCOUNT-PAGE */



.account-details {
  width: 100%;
  height: auto;

  h2 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 35px;
    text-align: start;
    display: flex;
    align-items: center;
    gap: 50px;

    span {
      font-weight: 400;
      font-size: 16px;
      color: #1A202C;
    }

  }

}

.bidder-profile {
  width: auto;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;

  img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
  }

  .bidder-profile-upload {
    font-weight: 400;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;

    input[type="file"] {
      padding: 10px;
      border: 1px solid #8E8E8E;
      border-radius: 8px;
      font-weight: 400;
      font-size: 14px;
      color: #808080CC;
      cursor: pointer;
      width: 100%;

      &::file-selector-button {
        background-color: var(--primary-clr);
        padding: 8px 15px;
        margin-right: 10px;
        color: var(--white);
        border: none;
        border-radius: 5px;
      }

    }

  }

}

.bidder-field-wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 4rem;
  gap: 20px;
  flex-wrap: wrap;
}

.bidder-field-in {
  width: 49%;
  height: auto;

  label {
    font-weight: 600;
    font-size: 15px;
    color: #333333;
    margin-bottom: 10px;
  }

  .bidder-field-btn {
    font-weight: 500;
    font-size: 14px;
    background: var(--primary-clr);
    color: var(--white);
    padding: 14px 25px;
    border-radius: 30px;
    border: none;
  }

  p {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333333;
  }

}

.bidder-field-in-item {
  width: 100%;
  height: 45px;
  position: relative;
  display: flex;
  align-items: center;

  input[type="date"] {
    width: 100%;
    height: 100%;
    border: 1px solid #8E8E8E;
    outline: none;
    background: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: transparent;
    padding: 0px 15px;
    cursor: pointer;
    line-height: 30px;

    &::placeholder {
      color: #8E8E8E;
    }

    &::before {
      color: #33333380;
      content: attr(placeholder) !important;
      position: absolute;
    }

    &:focus,
    &:valid {
      color: #333;
    }

    &:focus::before,
    &:valid::before {
      content: "" !important;
    }

    &::-webkit-calendar-picker-indicator {
      background-image: url(../images/filter-icons/date-clr.svg);
      cursor: pointer;
      width: 25px;
      height: 25px;
      background-size: 22px;
      background-position: right;
    }

  }

  input[type="time"] {
    width: 100%;
    height: 100%;
    border: 1px solid #8E8E8E;
    outline: none;
    background: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: transparent;
    padding: 0px 15px;
    cursor: pointer;
    line-height: 30px;

    &::placeholder {
      color: #8E8E8E;
    }

    &::before {
      color: #33333380;
      content: attr(placeholder) !important;
      position: absolute;
    }

    &:focus,
    &:valid {
      color: #333;
    }

    &:focus::before,
    &:valid::before {
      content: "" !important;
    }

    &::-webkit-calendar-picker-indicator {
      background-image: url(../images/filter-icons/time.svg);
      cursor: pointer;
      width: 25px;
      height: 25px;
      background-size: 22px;
      background-position: right;
    }

  }

  input[type="text"] {
    width: 100%;
    /* height: 100%; */
    height: 50px;
    border: 1px solid #8E8E8E;
    outline: none;
    background: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-clr);
    padding: 0px 15px;

    &::placeholder {
      color: #8E8E8E;
    }

  }

  input[type="text"][disabled] {
    background-color: #EBEBEB;
    color: #727272;
  }

  select {
    width: 100%;
    height: 100%;
    box-shadow: none;
    border: 1px solid #8E8E8E;
    /* outline: none; */

    /* background-color: var(--white); */

    /* background-size: 15px; */

    /* background-position: calc(100% - 20px); */

    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #8E8E8E;
    padding: 0px 20px;
    cursor: pointer;
    appearance: none;
    background: url(../images/super-admin-imgs/blue-dropdown.png);
    background-position: center right 20px;
    background-size: auto;
    background-repeat: no-repeat;

    & option {
      font-weight: 600;
      color: #333333;
    }

  }

  button,
  a {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    outline: none;
    padding: 0;

    img {
      width: 25px;
      height: 25px;
    }

  }

  .upgrade-btn {
    font-weight: 500;
    font-size: 13px;
    background: var(--primary-clr);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
  }

}

.general-settings {
  width: 100%;
  height: auto;
  margin-top: 3rem;

  h4 {
    font-weight: 500;
    font-size: 15px;
    color: #333333;
    margin-bottom: 10px;
  }

}

.general-settings button.accordion-button {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-clr);
  padding: 15px 25px 15px 15px;
  position: relative;
  justify-content: center;
  align-items: flex-start;
  box-shadow: none;
  background-color: transparent;

  span {
    font-weight: 500;
    font-size: 14px;
    color: #333333;
    line-height: 24px;

    &.text-collapse {
      display: block;
    }

    &.text-expand {
      display: none;
    }

  }

  &::after {
    position: absolute;
    right: 50px;
    top: auto;
  }

}

.general-settings .accordion-item {
  border-color: var(--primary-clr);
  margin-bottom: 20px;
  border-radius: 10px;
}

.general-settings .accordion-item:not(:first-of-type) {
  border-top: 1px solid;
}

.general-settings .accordion-item:first-of-type {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.general-settings .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.general-settings .accordion-button:not(.collapsed) span {
  &.text-collapse {
    display: none;
  }

  &.text-expand {
    display: block;
  }

}

.general-settings .bidder-field-wrap {
  gap: 20px 10px;
}

#collapseTwo .bidder-field-in {
  width: 42%;
}

#delete-popup.successfully-popup .modal-dialog {
  max-width: 550px;
}

#delete-popup.successfully-popup .modal-content .modal-body {
  h1 {
    font-size: 24px;
  }

  p {
    font-size: 15px;
    line-height: 28px;
  }

}

#delete-popup.successfully-popup .modal-content .modal-body .popup-btn-group,
#enter-auction-popup.successfully-popup .modal-content .modal-body .popup-btn-group,
#auto-bid-popup.successfully-popup .modal-content .modal-body .popup-btn-group {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;

  a.non-active {
    background: var(--white);
    color: var(--primary-clr);
  }

  button {
    background: var(--primary-clr);
    color: var(--white);
    font-weight: 600;
    border: 1px solid var(--primary-clr);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 100px;
    padding: 12px 55px;
    cursor: pointer;
    font-size: 16px;
    outline: none !important;
    -webkit-transition: all 0.3sease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3sease-in-out;
  }

}

/* MY-ACCOUNT-PAGE */

/* ------------ SUPER ADMIN CSS ------------ */



.second-common-popup .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.second-common-popup .modal-dialog {
  max-width: 600px;
}

.second-common-popup .modal-content {
  border-radius: 20px;

  h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    margin-top: 0px;
    text-align: left;
    padding: 15px 30px;
    border-radius: 10px 10px 0 0;
    background: #00152B;
  }

  & button[aria-label="Close"] {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 28px;
    height: 28px;
    background: none;
    padding: 0;
    border: none;
    outline: none;
    z-index: 9;

    img {
      width: 100%;
      height: 100%;
    }

  }

  .create-admin-bns {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;

    a:nth-child(1) {
      background: var(--primary-clr);
      color: var(--white);
      font-weight: 600;
      border: 1px solid var(--primary-clr);
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 100px;
      padding: 12px 60px;
      cursor: pointer;
      font-size: 16px;
      outline: none !important;
      -webkit-transition: all 0.3sease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3sease-in-out;
    }

    a:nth-child(2) {
      background: transparent;
      color: #00152B;
      font-weight: 600;
      border: 1px solid #00152B;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 100px;
      padding: 12px 55px;
      cursor: pointer;
      font-size: 16px;
      outline: none !important;
      -webkit-transition: all 0.3sease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3sease-in-out;
    }

  }

}

/* ------------ SUPER ADMIN CSS ------------ */
select.subscription-type {
  padding: 10px 20px 10px 10px;
  height: auto;
  background-position: center right 10px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;

  & option {
    background-color: #fff;
    color: #000;
  }

  &.inactive {
    background-color: #FFD0D0;
    color: #FF0000;
  }

  &.active {
    background-color: #E1FFD0;
    color: #00D227;
  }

  &.expired {
    background-color: #DAD9D9;
    color: #333333;
  }

  &.deurenewal {
    background-color: #D0FFFF;
    color: #008E55;
  }

  &.unsubscribed {
    background-color: #FFE9D2;
    color: #FF9A00;
  }

}

#active-popup.successfully-popup .modal-dialog,
#suspend-popup.successfully-popup .modal-dialog {
  max-width: 400px;

  input[type="submit"],
  input[type="button"] {
    height: 45px;
    padding-left: 55px;
    padding-right: 55px;
  }
}

#active-popup.successfully-popup .modal-content .modal-body,
#suspend-popup.successfully-popup .modal-content .modal-body {
  .create-admin-bns {
    gap: 20px;
  }

  p {
    margin-bottom: 25px;
    justify-content: center;
  }
}