.sell-sec-pt {
  padding: 30px;

  .sell-with-us-page {

    border: 1px solid gray;

    .title {
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;

      .left-tittle {
        h3 {
          font-weight: 600;
        }
      }

      .right-title {
        button {
          color: #00274d;
        }
      }
    }
  }
}





.commission-head {
  display: flex;
  justify-content: space-evenly;
  border-bottom: 0;

  .nav-link {
    width: 320px;
    height: 150px;
    padding: 5px 25px;

    &.active {
      border: 2px solid #a4c639 !important;
      border-radius: 10px !important;
      box-shadow: 0px 0px 2px 0px #a4c639;

      .title-radio {
        .circle-dot {
          border: 5px solid #a4c639 !important;
        }
      }
    }

    .title-radio {
      img {
        width: 64px;
      }

      .circle-dot {
        border: 2px solid #a4c639;
      }
    }
  }
}

.commission-btn {
  border: 1px solid #e2e2e2 !important;
  margin-bottom: 15px !important;
  color: black !important;
  border-radius: 10px !important;
  position: relative !important;

  .title-radio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;

    .circle-dot {
      width: 16px;
      height: 16px;
      background: #ffffff;
      border-radius: 50%;
    }
  }

  h3 {
    text-align: left;
    font-size: 18px;
  }

  p {
    text-align: left;
  }
}



.plan-tab-content {
  .tab-pane {
    padding: 20px !important;

    .row{
      .col-lg-4:nth-child(1){
        border-right: 1px solid #e2e2e2;
      }
      .col-lg-4:nth-child(2){
        border-right: 1px solid #e2e2e2;
      }
      .col-lg-4:nth-child(3){
        border: 0;
      }
    }
  }
}



.sell-tab-first {
  h3 {
    padding-bottom: 20px;
    padding-top: 10px;
    font-weight: 600;

  }

  fieldset {
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;

    label {
      padding-bottom: 10px;
    }

  }
}
















/* General Styles */



:root {
  --clr-white: rgb(255, 255, 255);
  --clr-black: rgb(0, 0, 0);
  --clr-light: rgb(245, 248, 255);
  --clr-light-gray: rgb(196, 195, 196);
  --clr-blue: rgb(63, 134, 255);
  --clr-light-blue: rgb(171, 202, 255);
}



.upload-area {
  width: 100%;
  background-color: var(--clr-white);
  border: 2px dashed var(--clr-light-blue);
  border-radius: 5px;
  padding: 20px;
  text-align: center;
}

.upload-area--open {
  animation: slidDown 500ms ease-in-out;
}

@keyframes slidDown {
  from {
    height: 28.125rem;
    /* 450px */
  }

  to {
    height: 35rem;
    /* 560px */
  }
}


.upload-area__title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.3125rem;
}

.upload-area__paragraph {
  font-size: 0.9375rem;
  color: var(--clr-light-gray);
  margin-top: 0;
}

.upload-area__tooltip {
  position: relative;
  color: var(--clr-light-blue);
  cursor: pointer;
  transition: color 300ms ease-in-out;
}

.upload-area__tooltip:hover {
  color: var(--clr-blue);
}

.upload-area__tooltip-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -125%);
  min-width: max-content;
  background-color: var(--clr-white);
  color: var(--clr-blue);
  border: 1px solid var(--clr-light-blue);
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: none 300ms ease-in-out;
  transition-property: opacity, visibility;
}

.upload-area__tooltip:hover .upload-area__tooltip-data {
  opacity: 1;
  visibility: visible;
}

/* Drop Zoon */
.upload-area__drop-zoon {
  position: relative;
  height: 11.25rem;
  /* 180px */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 2px dashed var(--clr-light-blue);
  border-radius: 15px;
  margin-top: 2.1875rem;
  cursor: pointer;
  transition: border-color 300ms ease-in-out;
}

.upload-area__drop-zoon:hover {
  border-color: var(--clr-blue);
}

.drop-zoon__icon {
  display: flex;
  font-size: 3.75rem;
  color: var(--clr-blue);
  transition: opacity 300ms ease-in-out;
}

.drop-zoon__paragraph {
  font-size: 0.9375rem;
  color: var(--clr-light-gray);
  margin: 0;
  margin-top: 0.625rem;
  transition: opacity 300ms ease-in-out;
}

.drop-zoon:hover .drop-zoon__icon,
.drop-zoon:hover .drop-zoon__paragraph {
  opacity: 0.7;
}

.drop-zoon__loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  color: var(--clr-light-blue);
  z-index: 10;
}

.drop-zoon__preview-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.3125rem;
  border-radius: 10px;
  display: none;
  transition: opacity 300ms ease-in-out;
}

.drop-zoon:hover .drop-zoon__preview-image {
  opacity: 0.8;
}

.drop-zoon__file-input {
  display: none;
}

/* (drop-zoon--over) Modifier Class */
.drop-zoon--over {
  border-color: var(--clr-blue);
}

.drop-zoon--over .drop-zoon__icon,
.drop-zoon--over .drop-zoon__paragraph {
  opacity: 0.7;
}


.drop-zoon--Uploaded .drop-zoon__icon,
.drop-zoon--Uploaded .drop-zoon__paragraph {
  display: none;
}

/* File Details Area */
.upload-area__file-details {
  height: 0;
  visibility: hidden;
  opacity: 0;
  text-align: left;
  transition: none 500ms ease-in-out;
  transition-property: opacity, visibility;
  transition-delay: 500ms;
}

/* (duploaded-file--open) Modifier Class */
.file-details--open {
  height: auto;
  visibility: visible;
  opacity: 1;
}

.file-details__title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--clr-light-gray);
}

/* Uploaded File */
.uploaded-file {
  display: flex;
  align-items: center;
  padding: 0.625rem 0;
  visibility: hidden;
  opacity: 0;
  transition: none 500ms ease-in-out;
  transition-property: visibility, opacity;
}

/* (duploaded-file--open) Modifier Class */
.uploaded-file--open {
  visibility: visible;
  opacity: 1;
}

.uploaded-file__icon-container {
  position: relative;
  margin-right: 0.3125rem;
}

.uploaded-file__icon {
  font-size: 3.4375rem;
  color: var(--clr-blue);
}

.uploaded-file__icon-text {
  position: absolute;
  top: 1.5625rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clr-white);
}

.uploaded-file__info {
  position: relative;
  top: -0.3125rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.uploaded-file__info::before,
.uploaded-file__info::after {
  content: '';
  position: absolute;
  bottom: -0.9375rem;
  width: 0;
  height: 0.5rem;
  background-color: #ebf2ff;
  border-radius: 0.625rem;
}

.uploaded-file__info::before {
  width: 100%;
}

.uploaded-file__info::after {
  width: 100%;
  background-color: var(--clr-blue);
}

/* Progress Animation */
.uploaded-file__info--active::after {
  animation: progressMove 800ms ease-in-out;
  animation-delay: 300ms;
}

@keyframes progressMove {
  from {
    width: 0%;
    background-color: transparent;
  }

  to {
    width: 100%;
    background-color: var(--clr-blue);
  }
}

.uploaded-file__name {
  width: 100%;
  max-width: 6.25rem;
  /* 100px */
  display: inline-block;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.uploaded-file__counter {
  font-size: 1rem;
  color: var(--clr-light-gray);
}






.under-upload-file {
  display: flex !important;
  gap: 5px !important;

  button {
    width: 148px !important;
    height: 129px !important;
    padding: 5px 10px !important;

    .title-radio {
      img {
        width: 56px !important;
      }

      .circle-dot {
        position: relative;
        width: 24px;
        height: 24px;
        background: #ffffff;
        border: 2px solid #000000 !important;
        border-radius: 0;

        i {
          position: absolute;
          left: -1px;
          font-size: 22px;
          right: 0;
          top: -1px;
          bottom: 0;
          color: #ffffff;
        }
      }
    }

    h3 {
      font-size: 15px;
    }
  }

  .nav-link {
    &.active {
      border-radius: 10px !important;
      box-shadow: 0px 0px 2px 0px #a4c639;

      .title-radio {
        i {
          border: 1px solid #a4c639 !important;
        }

        .circle-dot {
          border: 2px solid #a4c639 !important;

          i {
            position: absolute;
            left: -0.5px;
            font-size: 26px;
            right: 0;
            top: -2px;
            bottom: 0;
            color: #a4c628;
            border: 0 !important;
          }
        }
      }
    }
  }

  .title-radio {
    .circle-dot {
      width: 16px;
      height: 16px;
      background: #ffffff;
      border-radius: 50%;
    }
  }
}




.sell-tab-first {
  .profile-photo {
    display: flex;
    align-items: center;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 0px 4px 0px #d6d6d6;
    margin-top: 15px;

    .img-profile {
      display: flex;
      align-items: flex-end;

      img {
        width: 65px;
      }

      i {
        font-size: 20px;
        position: relative;
        left: -10px;
      }
    }

    .photo-titile {
      h4 {
        font-weight: 600;
        padding-bottom: 2px;
      }
    }
  }

  h4 {
    font-size: 15px;
    padding-bottom: 20px;

    i {
      color: #e85050;
    }
  }

  ul {
    padding-left: 35px;
    padding-bottom: 30px;

    li {
      list-style: disc;
      font-size: 16px;
      color: black;
      font-weight: 600;
    }
  }
}

.end-btn-terms {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

  .end-btn {
    padding: 10px 83px;
  }

  p {
    font-size: 18px;
    color: black;

    input {
      width: 20px;
      height: 16px;
    }

    a {
      text-decoration: underline;
      color: #a4c628;
    }
  }
}