:root {
  --primaryBlue: #0a2777;
  --secondaryGreen: #79b707;
  --LightBlue: #29abe2;
  --White: #ffffff;
  --orange: #c69c6d;
  --lightgreen: #61a598;
  --grey: #959595;
  /* --btn: #61A598; */
  --btn: #3cb371;
  --btnHover: #2e8b57;
  --del-btn: ff0000;
  --simple: #000000;
  --lightgrey: #dddddd;
  --darkgrey: #393939;
  --shadowgrey: #e4e4e4;
}

* {
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.body {
  height: 100%;
  background-color: white;
}

/* Reusable classes */
.container-xl {
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

/* General design for buttons */
.filled-btn {
  background-color: var(--btn);
  color: var(--White);
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 14px;
  font-weight: bold;
}

.filled-btn:hover {
  background-color: var(--btnHover); /* Darker shade for hover */
}

.border-btn {
  padding: 8px 15px;
  border: 2px solid var(--btn);
  color: var(--btn);
  background-color: transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.border-btn:hover {
  background-color: var(--btn);
  color: white;
}

.grey-btn {
  background-color: #d3d3d3;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 14px;
  font-weight: bold;
}

.grey-btn:hover {
  background-color: #c0c0c0;
}

.primary-btn {
  background-color: #0a2777;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 20px;
  min-width: 9.5rem;
  height: 56px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
}

.primary-btn:hover {
  background-color: #2445a8; /* Darker shade for hover */
}

.primary-btn:disabled {
  background-color: #a0a0a0;
  cursor: default;
}

.secondary-btn {
  background-color: #79b707;
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 20px;
  min-width: 152px;
  height: 56px;
}

.secondary-btn:hover {
  background-color: #639308;
}

.secondary-btn:disabled {
  background-color: #a0a0a0;
  cursor: default;
}

.third-btn {
  border: 1px solid;
  background-color: white;
  color: #0a2777;
  padding: 16px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 20px;
  min-width: 152px;
  height: 56px;
}

.third-btn:hover {
  background-color: rgb(212, 212, 212);
}

/* common code of overlay for popups section */
.common-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* For Chrome, Safari, Edge, Opera */
.no-spinners::-webkit-outer-spin-button,
.no-spinners::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
.no-spinners[type=number] {
  -moz-appearance: textfield;
}



@media (max-width: 720px) {
  .responsive-btn-size {
    font-size: 18px;
    width: 135px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .responsive-btn-size {
    font-size: 16px;
    width: 125px;
    height: 45px;
  }
}


/* Add permit pop-up */
.permit-pop-up {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px 32px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  width: 90%;
  max-width: 992px;
  height: auto;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  justify-content: center;
}

.input-field-container-2 {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.add-permit-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 1rem;
}


@media (max-width: 1200px) {
  
}

@media (max-width: 1024px) {
  
}

@media (max-width: 768px) {
  .add-permit-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .add-permit-container {
    grid-template-columns: 1fr;
  }
}



/*Complete profile start*/
.cpp-popup-1 {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px 32px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  width: 637px;
  height: 371px;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  justify-content: center;
}

.cpb-popup-radio-label {
  font-weight: 500;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: 0%;
  text-align: center;
  color: #0a2777;
}

.cpb-popup-inputfield {
  width: 100%;
  height: 72px;
  border-radius: 8px;
  border: 1px solid #c7c7c7;
  font-size: 20px;
  padding: 16px;
  margin-bottom: 32px;
  margin-top: 24px;
}

.cpb-permit-container {
  display: flex;
  margin-left: 32px;
  align-items: center;
}

.cpb-permit-container-1 {
  display: flex;
  align-items: center;
}

.cpb-permit-input-container {
  display: flex;
}

.cpb-dropdown {
  margin-left: 32px;
}

.cpb-vehicle-nbr-input {
  margin-left: 32px;
}

.cpb-input-field {
  width: 280px;
  height: 43px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #000;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0%;
}

.cpb-trash-btn {
  cursor: pointer;
  margin-left: 16px;
}

.cpp-btn-container {
  display: flex;
  justify-content: right;
  margin-top: 24px;
}

.cpp-heading {
  font-size: 30px;
  font-weight: 500;
  line-height: 45px;
  letter-spacing: 0.21688537299633026px;
  text-align: left;
}

.cpp-p-1 {
  font-size: 22px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0.21688537299633026px;
  text-align: left;
  margin: 16px 0px;
}

.cpp-ul-1 {
  font-weight: 400;
  font-size: 22px;
  line-height: 33px;
  letter-spacing: 0.22px;
}

.cpp-li-1 {
  list-style: disc;
  margin-bottom: 8px;
}

.cpp-li-2 {
  list-style: disc;
}

.cpp-p-2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 33px;
  letter-spacing: 0.22px;
  margin: 16px 0px;
}

.cpp-p-3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 33px;
  letter-spacing: 0.22px;
  margin: 40px 0px 8px 0px;
}

.cpp-ul-2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 33px;
  letter-spacing: 0.22px;
  margin-bottom: 32px;
}

.cpp-p-4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 38px;
  text-align: center;
  width: 507px;
  margin-bottom: 32px;
}

.cpp-popup-btn-1 {
  margin-right: 40px;
}

.cpp-card {
  background-color: #f1f1f1;
  border-radius: 10px;
  margin-bottom: 24px;
}

.cpp-card-header {
  height: 80px;
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: 500;
  margin: 0 24px;
  line-height: 39px;
  letter-spacing: 0.20289276540279388px;
  text-align: left;
}

.checkmark-icon {
  margin-right: 16px;
}

.checkmark-icon-complete {
  color: #79b707;
}

.checkmark-icon-active {
  color: #0a2777;
}

.checkmark-icon-inactive {
  color: #00000030;
}

.next-icon {
  margin-left: auto;
}

.subheading {
  font-size: 22px;
  font-weight: 500;
  line-height: 33px;
  letter-spacing: 0.20289276540279388px;
  text-align: left;
  color: var(--primaryBlue);
}

.input-field-container-1 {
  width: 32%;
  display: flex;
  flex-direction: column;
  /* justify-content: end; */
}

.input-field-label-1 {
  font-size: 18px;
  color: #00000070;
  margin-top: 16px;
  margin-bottom: 8px;
}

.input-field-1 {
  height: 56px;
  width: 100%;
  border-radius: 10px;
  /* border: 1px solid #79B707; */
  border: 1px solid #000000;
  background-color: #f7f7f7;
  padding: 0px 16px;
  font-size: 20px;
}

.input-field-1:read-only {
  height: auto;
  background-color: transparent;
  color: black;
  border: none;
  padding: 0px;
}

.input-field-1-dropdown {
  height: 56px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #000000;
  background-color: #f7f7f7;
  padding: 0px 16px;
  font-size: 20px;
}

.input-field-country-code {
  height: 56px;
  border: 1px solid #000000;
  border-right: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  outline: none;
  background-color: #f7f7f7;
  padding: 0px 5px;
  font-size: 20px;
}

.input-field-phone-no {
  height: 56px;
  width: 100%;
  border-left: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 1px solid #000000;
  border-left: none;
  outline: none;
  background-color: #f7f7f7;
  padding: 0px 16px;
  font-size: 20px;
}

.input-field-phone-no:read-only {
  height: auto;
  background-color: transparent;
  color: black;
  border: none;
  padding: 0px;
}

.cpp-card-body {
  padding: 8px 32px 48px 32px;
  /* width: 90%; */
}

.checkbox-tc {
  height: 20px;
  width: 20px;
  margin-right: 8px;
  margin-top: 8px;
}

.checkbox-txt-bold {
  font-weight: 500;
}

.checkbox-txt {
  font-size: 22px;
  line-height: 33px;
}

.checkbox-txt-container {
  width: 20%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.text-link {
  color: #0b2776;
  border-bottom: 1px solid #0b2776;
}

.text-1 {
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.2px;
}

.text-500-16 {
  font-weight: 500;
  font-size: 16px;
}

.text-500-18 {
  font-weight: 500;
  font-size: 18px;
}

.text-500-22 {
  font-weight: 500;
  font-size: 22px;
}

.text-500-24 {
  font-weight: 500;
  font-size: 24px;
  line-height: 25px;
  letter-spacing: 0%;
}

.text-500-26 {
  font-weight: 500;
  font-size: 26px;
}

.text-500-28 {
  font-weight: 500;
  font-size: 28px;
}

.text-500-30 {
  font-weight: 500;
  font-size: 30px;
}

.tc-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 32px;
  margin-top: 32px;
}

.hr-1 {
  margin: 40px 0px;
}

.text-600-22 {
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
}

.text-400-14 {
  font-weight: 400;
  font-size: 14px;
}

.text-400-18 {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
}

.text-400-20 {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.22px;
}

.text-400-22 {
  font-weight: 400;
  font-size: 22px;
  line-height: 33px;
}

.text-400-24 {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.2px;
}

.input-field-container-1-margin {
  margin-right: 35px;
}

.cpp-radiobtn-section {
  display: flex;
}

.cpp-field-container {
  display: flex;
}

.cpp-dropdown {
  width: 280px;
  height: 43px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #000;

  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0%;
}

.cpp-popup-btn-container-1 {
  display: flex;
}

.cpb-fields {
  width: 224px;
}

@media (max-width: 1200px) {
  .cpb-input-field {
    width: 254px;
  }
}

@media (max-width: 1024px) {
  .cpp-radiobtn-section {
    flex-direction: column;
  }

  .cpb-permit-container {
    flex-direction: column;
    margin-left: 0px;
    align-items: start;
  }

  .cpb-dropdown {
    margin-left: 0px;
  }

  .cpb-input-field {
    margin-top: 16px;
  }

  .cpb-trash-btn {
    margin-top: 16px;
  }

  .cpb-permit-container-1 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .cpp-radiobtn-container {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .cpp-field-container {
    flex-direction: column;
  }

  .input-field-container-1 {
    width: 100%;
  }

  .input-field-container-1-margin {
    margin-right: 0px;
  }

  .tc-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .cpp-popup-1 {
    height: auto;
    width: auto;
  }

  .cpp-p-4 {
    width: auto;
  }

  .cpp-popup-btn-container-1 {
    flex-direction: column;
    justify-content: space-around;
  }

  .cpp-popup-btn-1 {
    margin-right: 0px;
    margin-bottom: 1rem;
  }

  .cpb-permit-input-container {
    flex-direction: column;
  }

  .cpb-vehicle-nbr-input {
    margin-left: 0px;
  }

  .cpb-input-field {
    width: 342px;
  }

  .cpb-trash-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .checkbox-txt-container {
    width: auto;
  }
}

@media (max-width: 480px) {
  .cpp-card-header {
    font-size: 20px;
    line-height: normal;
  }

  .card-header {
    font-size: 22px;
  }

  .cpb-input-field {
    width: 100%;
  }

  .cpb-permit-container-1 {
    flex-direction: column;
  }

  .cpb-trash-btn {
    margin-left: 0px;
  }

  .cpb-permit-container-1 {
    align-items: start;
  }

  .cpb-text-sm {
    text-align: center;
    font-size: 18px;
  }

  .input-field-1 {
    height: 48px;
    font-size: 16px;
  }

  .input-field-country-code {
    height: 48px;
    font-size: 16px;
  }

  .input-field-phone-no {
    height: 48px;
    font-size: 16px;
  }
}
/*Complete profile end*/

/* Account Page start */
.account-card-body {
  padding: 32px;
}

.account-input-field-container {
  display: flex;
  flex-direction: column;
}

.account-field-container-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 32px;
}

.account-field-container-2 {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
}

.nav-container {
  display: flex;
  margin: 24px 0px;
  align-items: center;
}

.nav-item {
  margin-right: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 45px;
  letter-spacing: 0.22px;
}

.account-po-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  margin-top: 24px;
}

.account-po-card {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.account-table-row {
  display: grid;
  grid-template-columns: 13rem 10rem 7rem 12rem auto;
  margin-top: 1rem;
}

.account-table-item {
  border-right: 1px solid #000;
  padding-left: 1rem;
  align-items: center;
  display: flex;
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
}

.account-table-first-item li {
  list-style: disc;
}

.account-table-last-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.22px;
  margin-left: 2rem;
}

.account-teble-link {
  color: #0a2777;
  text-decoration: underline;
}

.account-subscription-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 33px;
}

.account-subscription-text-4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
  margin-left: 16px;
  margin-right: 8px;
}

.account-subscription-text-container {
  display: flex;
}

.account-subscription-container {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

.account-s-text-container {
  display: flex;
}

.account-info-container {
  margin: 2rem 0 0 0; 
}

.account-info-verified-container {
  display: flex;
  justify-content: space-between;
}

.account-info-textcontainer {
  display: flex;
}

.account-verification-container {
  display: flex;
  justify-content: space-between;
}

.account-verification {
  display: flex;
  align-items: center;
  position: relative;
  bottom: 1rem;
}

.account-not-verified {
  display: flex;
}

@media (max-width: 1024px) {
  .account-field-container-2 {
    grid-template-columns: 1fr 1fr;
  }

  .account-field-container-1 {
    grid-template-columns: 1fr 1fr;
  }

  .account-po-container {
    flex-direction: column;
    align-items: start;
  }

  .account-po-container button {
    margin-top: 2rem;
  }

  .account-subscription-text {
    font-size: 20px;
  }

  .account-subscription-text-2 {
    margin-left: 3rem;
  }

  .account-subscription-text-3 {
    display: none;
  }

  .account-subscription-text-container {
    flex-direction: column;
  }

  .account-subscription-container {
    align-items: end;
  }

  .account-table-row {
    grid-template-columns: auto auto auto auto;
    row-gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid;
  }

  .account-table-fourth-item {
    border-right: none;
  }

  .account-table-last-item-cancelled {
    display: none;
  }
}

@media (max-width: 768px) {
  .account-field-container-2 {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
  }

  .account-field-container-1 {
    grid-template-columns: 1fr;
  }

  .account-subscription-container {
    flex-direction: column;
    align-items: start;
  }

  .account-subscription-container button {
    margin-top: 2rem;
  }

  .account-table-row {
    grid-template-columns: auto auto auto;
  }

  .account-table-item {
    border-right: none;
  }

  .account-table-first-item {
    grid-column: span 3;
  }

  .account-table-first-item li {
    list-style: none;
    font-weight: 500;
  }

  .account-table-last-item {
    margin-left: 1rem;
    grid-column: span 3;
  }

  .account-info-verified-container {
    flex-direction: column;
  }

  .account-verification-container {
    margin: 0.5em 0rem 1rem;
  }

  .account-verification {
    bottom: 0rem;
  }
}

@media (max-width: 480px) {
  .account-po-card {
    align-items: start;
  }

  .account-subscription-text {
    font-size: 16px;
  }

  .account-subscription-text-4 {
    font-size: 16px;
  }

  .account-s-text-container {
    flex-direction: column;
  }

  .account-s-text-container img {
    width: 2rem;
  }

  .account-subscription-text-4 {
    margin-left: 0px;
  }

  .account-subscription-text-2 {
    margin-left: 0px;
  }

  .account-table-fourth-item {
    grid-column: span 3;
  }

  .account-table-item {
    font-size: 16px;
  }

  .account-info-textcontainer {
    flex-direction: column;
  }

  .account-verification-container {
    flex-direction: column;
  }
}

/* Account Page end */

/* Settings Page start */
.settings-card {
  height: 80px;
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: 500;
  padding: 0 24px;
  line-height: 39px;
  letter-spacing: 0.20289276540279388px;
  text-align: left;
  background-color: #f1f1f1;
  border-radius: 10px;
  margin-bottom: 24px;
}

.settings-delete-btn {
  background-color: #cb0000;
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 20px;
  min-width: 152px;
  height: 56px;
}

.settings-delete-btn:hover {
  background-color: #b00000; /* Darker shade for hover */
}

.settings-delete-btn:disabled {
  background-color: #a0a0a0;
  cursor: default;
}

.settings-black-btn {
  border: 1px solid;
  background-color: white;
  color: black;
  padding: 16px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 20px;
  min-width: 152px;
  height: 56px;
}

.settings-black-btn:hover {
  background-color: rgb(212, 212, 212);
}

.settings-input-field-container {
  display: flex;
  flex-direction: column;
  width: 31rem;
}

.setings-btn-text {
  font-weight: 400;
  font-size: 20px;
}

.setings-popup-heading-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 16px;
}

.setings-popup-p-text {
  font-weight: 400;
  font-size: 22px;
  line-height: 38px;
  letter-spacing: 0%;
  text-align: center;
}

.settings-popup-btn-container-1 {
  display: flex;
  justify-content: space-around;
}

@media (max-width: 768px) {
  .settings-input-field-container {
    width: 100%;
  }

  .setings-popup-heading-text {
    font-size: 20px;
    line-height: normal;
  }

  .setings-popup-p-text {
    font-size: 16px;
    line-height: normal;
  }

  .settings-delete-btn {
    min-width: 8.5rem;
  }

  .settings-black-btn {
    min-width: 8.5rem;
    margin-right: 1rem;
  }
}

@media (max-width: 480px) {
  .setings-btn-text {
    font-weight: 400;
    font-size: 18px;
  }

  .settings-delete-btn {
    min-width: 7rem;
  }

  .settings-black-btn {
    min-width: 7rem;
  }
}
/* Settings Page end */

/* Orders History Page start */
.oh-table {
  background: #f1f1f1;
  width: 100%;
  border-radius: 0.5rem;
  border-spacing: 0px 2px;
  /* border-collapse: collapse; */
  min-width: 600px; /* optional: helps force scroll on smaller screens */
}

.back-btn-txt {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.22px;
  vertical-align: middle;
  opacity: 0.6;
  margin-left: 16px;
}

.oh-heading {
  font-weight: 500;
  font-size: 30px;
  padding-top: 16px;
  padding-bottom: 24px;
}

.text-500-20 {
  font-weight: 500;
  font-size: 20px;
}

.table-header-style {
  text-align: start;
}

.table-row {
  background-color: #f9f9f9;
}

.table-row td {
  padding-top: 15px;
  padding-bottom: 15px;
}

.table-container {
  overflow-x: auto;
  max-width: 100%;
}

.oh-status-tag {
  padding: 0.5rem;
  border-radius: 5px;
  width: 7rem;
  text-align: center;
}

.oh-status-tag-completed {
  background: #00c12b33;
}

.oh-status-tag-processing {
  background: #0087c133;
}

.oh-status-tag-cancelled {
  background: #c1000033;
}

.oh-link {
  border-bottom: 1px solid #000;
}

.oh-label {
  height: 2.5rem;
  font-size: 1rem;
}

.oh-info-column-1 {
  margin-right: 3rem;
  margin-left: 3rem;
}

@media (max-width: 768px) {
  .oh-info-column-1 {
    margin-left: 0;
    margin-right: 1rem;
  }
}

@media (max-width: 480px) {
  .oh-label {
    height: 3.5rem;
  }
}

/* Orders History Page end */

/* Subscriptions Page start */
.s-subscription-plan-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.s-subscription-plan {
  width: 21.75rem;
  border-radius: 0.5rem;
  border-top: 1px solid #bbbbbb;
  border-left: 1px solid #bbbbbb;
  border-right: 3px solid #bbbbbb;
  border-bottom: 3px solid #bbbbbb;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.s-subscription-plan[data-plan="free"] {
  border-color: #d3a70b;
}

.s-subscription-plan[data-plan="basic"] {
  border-color: #0ea613;
}

.s-subscription-plan[data-plan="premium"] {
  border-color: #501bb2;
}

.s-subscription-plan.s-active {
  border-color: #bbbbbb;
}

.s-subscription-btn {
  color: white;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  height: 53.75px;
  border-radius: 10.97px;
  margin-bottom: 1.8rem;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.s-subscription-plan[data-plan="free"] .s-subscription-btn {
  background-color: #d3a70c;
}

.s-subscription-plan[data-plan="basic"] .s-subscription-btn {
  background-color: #0ea513;
}

.s-subscription-plan[data-plan="premium"] .s-subscription-btn {
  background-color: #501bb2;
}

.s-subscription-plan.s-active .s-subscription-btn {
  background-color: #bbbbbb;
  cursor: default;
}

.s-subscription-card-header {
  justify-content: space-between;
  margin-top: 2rem;
}

.s-subscription-card-body {
  display: flex;
  flex-direction: column;
  margin-right: 1.5rem;
  flex-grow: 1;
}

.s-subscription-price-container {
  font-weight: 600;
  font-size: 34px;
  line-height: 100%;
  align-items: center;
}

.s-subscription-label {
  width: 183px;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  border-top-left-radius: 41px;
  border-bottom-left-radius: 41px;
  padding: 20px;
}

.s-subscription-plan[data-plan="free"] .s-subscription-label {
  background-color: white;
  border: 1px solid #d3a70b;
  color: #d3a70b;
}

.s-subscription-plan[data-plan="basic"] .s-subscription-label {
  background-color: white;
  border: 1px solid #0ea613;
  color: #0ea613;
}

.s-subscription-plan[data-plan="premium"] .s-subscription-label {
  background-color: white;
  border: 1px solid #501bb2;
  color: #501bb2;
}

.s-subscription-plan.s-active .s-subscription-label {
  background-color: #bbbbbb;
  color: white;
  border: none;
}

/* Subscriptions Page end */

/* Coupons Page start */
.coupon-page-header {
  display: flex;
  margin: 24px 0px;
  align-items: center;
}

.buy-coupon-btn {
  margin-left: auto;
}

.coupon-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1.5rem;
  row-gap: 2rem;
}

/* .coupon-card {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 2rem;
} */

.coupon-card-body {
  background-color: #fbfbfb;
  /* background-color: #ff8585; */
  box-shadow: 0px 0px 6px #a9a9a9;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.c-circle {
  background-color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}

.c-circle-shadow {
  background-color: #a9a9a94a;
  width: 2.1rem;
  height: 2rem;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}

@media (max-width: 1024px) {
  .coupon-cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .coupon-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .coupon-page-header {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }

  .buy-coupon-btn {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
}

@media (max-width: 436px) {
  .coupon-cards-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .coupon-card-body {
    max-width: 13rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Coupons Page end */

/* Shopping Cart Page start */
.cart-content-container {
  display: grid;
  grid-template-columns: 1fr 412px;
}

.shopping-cart-container-1 {
  margin-right: 3rem;
}

.shopping-cart-item {
  display: flex;
  border-top: 0.93px solid #b1b8d0;
  border-bottom: 0.93px solid #b1b8d0;
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  align-items: center;
  justify-content: space-between;
}

.shopping-cart-txt-containers {
  font-weight: 600;
  font-size: 16px;
  /* line-height: 24px; */
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.shopping-cart-heading {
  font-weight: 500;
  font-size: 18px;
  /* line-height: 29.87px; */
}

.shopping-cart-txt-1 {
  font-weight: 600;
  font-size: 16px;
  /* line-height: 22.4px; */
  margin-bottom: 0.75rem;
}

.shopping-cart-subtxt-1 {
  font-weight: 500;
  font-size: 12px;
  /* line-height: 18.67px; */
}

.shopping-cart-quantity {
  width: 87px;
  height: 32px;
  border-width: 0.93px;
  border-radius: 5px;
  padding: 4.67px;
  border: 0.93px solid #c3c3c3;
  justify-content: space-around;
  align-items: center;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}

.shopping-cart-quantity-txt {
  font-weight: 600;
  font-size: 13.07px;
  /* line-height: 22.4px; */
}

.shopping-cart-item-price {
  font-weight: 600;
  font-size: 16px;
  /* line-height: 22.4px; */
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}

.shopping-cart-subtotal-container {
  border-width: 0.93px;
  padding: 18.67px;
  border: 0.93px solid #b1b8d0;
  margin-top: 30px;
}

.shopping-cart-txt-2 {
  font-weight: 600;
  font-size: 16px;
  /* line-height: 24px; */
  margin-bottom: 1rem;
}

.shopping-cart-input-field {
  width: 320px;
  border-radius: 10px;
  padding-right: 14px;
  padding-left: 14px;
  border: 0.5px solid #000000;
}

.shopping-cart-input-field-btn {
  width: 46.66666793823242px;
  height: 46.66666793823242px;
  border-radius: 10px;
  padding: 9.33px;
  background-color: #8b94b2;
}

.shopping-cart-custom-hr {
  border: none;
  height: 0.93px;
  background-color: #8b94b2;
}

.shopping-cart-txt-3 {
  font-weight: 600;
  font-size: 18px;
  /* line-height: 22.4px; */
}

.shopping-cart-txt-4 {
  font-weight: 700;
  font-size: 24.78px;
  /* line-height: 30.84px; */
}

.shopping-cart-btn-1 {
  border-radius: 8px;
  padding: 16px 23px;
  background-color: #0a2777;
  margin-top: 1rem;
}

.shopping-cart-btn-1-txt {
  font-weight: 500;
  font-size: 22px;
  color: #ffffff;
}

.shopping-cart-btn-2 {
  border-radius: 8px;
  border: 1px solid #0a2777;
  padding: 16px 23px;
  background-color: #ffffff;
  margin-top: 1rem;
}

.shopping-cart-btn-2-txt {
  font-weight: 500;
  font-size: 22px;
  color: #0a2777;
}

.products-container {
  display: flex;
}

.products-card {
  width: 11rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  margin-right: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  display: inline-block;
}

.products-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.products-card-body > * {
  padding: 0.3rem 0;
}

.products-card-btn {
  width: 100%; 
  color: white; 
  background-color: #0A2777;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 0.5rem 0;
}

@media (max-width: 1024px) {
  .cart-content-container {
    grid-template-columns: 1fr 336px;
  }

  .shopping-cart-btn-1-txt {
    font-size: 22px;
  }

  .shopping-cart-btn-2-txt {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .cart-content-container {
    grid-template-columns: 1fr;
  }

  .shopping-cart-container-1 {
    margin-right: 0;
    padding-bottom: 3rem;
  }

  .shopping-cart-input-field {
    flex-grow: 1;
    margin-right: 0.5rem;
  }

  .products-container {
    display: block;
  }
}

@media (max-width: 480px) {
  .shopping-cart-input-field {
    width: auto;
  }

  .shopping-cart-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 1.5rem;
  }

  .shopping-cart-item-heading {
    grid-column: span 3;
  }

  .products-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .products-card {
    margin-right: 0;
    width: 100%;
    min-width: 11rem;
    max-width: 16rem;
  }

}

/* Shopping Cart Page end */

/* Payment Method Page start */
.pm-card {
  border-radius: 0.5rem;
  border: 1px solid;
  border-top: 1px solid #7ab709;
  border-left: 1px solid #7ab709;
  border-bottom: 4px solid #7ab709;
  border-right: 4px solid #7ab709;
  width: 386px;
  height: 148px;
  padding: 20px 20px;
  margin: 2.8rem 0px;
}

.pm-radio-indicator {
  width: 20px;
  height: 20px;
  border: 1px solid black;
  border-radius: 50%;
  background: white;
  transition: all 0.3s ease;
  margin-right: 1.2rem;
}

.payment-option.active .pm-radio-indicator {
  background: #79b707;
  border: 2px solid #79b707;
  box-shadow: 0 0 0 4px #d4edda;
}

.pm-input-field-container-1 {
  width: 48%;
  display: flex;
  flex-direction: column;
}

.payment-option {
  background-color: #f7f7f7;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
}

.payment-header {
  height: 80px;
  display: flex;
  align-items: center;
  margin: 0 24px;
  text-align: left;
}

.payment-form {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0px;
}

.active .payment-form {
  padding: 8px 32px 48px 32px;
  max-height: 350px;
}

@media (max-width: 1024px) {
  .pm-input-field-container {
    align-items: end;
  }
}

@media (max-width: 768px) {
  .pm-input-field-container {
    align-items: start;
  }

  .pm-input-field-container-1 {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .pm-card {
    width: auto;
    height: auto;
  }

  .pm-radio-indicator {
    margin-right: 0.5rem;
  }

  .pm-card-img {
    width: 3rem;
  }
}
/* Payment Method Page end */

/* Seek work Page start*/
.dropdown-element-dropdown {
  height: 56px;
  border-radius: 10px;
  border: 1px solid #000000;
  outline: none;
  background-color: #f7f7f7;
  padding: 0px 5px;
  font-size: 20px;
}

.dropdown-element-input {
  height: 56px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #000000;
  outline: none;
  background-color: #f7f7f7;
  padding: 0px 16px;
  font-size: 20px;
}

.dropdown-element--right {
  border-left: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.dropdown-element--left {
  border-right: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.sw-input-container-1 {
  display: flex;
  justify-content: space-between;
}

.sw-input-container-2 {
  display: flex;
}

.sw-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px 32px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  width: 637px;
  align-items: start;
  flex-direction: column;
  border-radius: 10px;
  justify-content: center;
}

.sw-field-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .sw-input-container-1 {
    /* display: flex;
        justify-content: space-between; */
    flex-direction: column;
  }

  .sw-field-container {
    flex-direction: column;
  }

  .sw-popup {
    width: 470px;
  }
}

@media (max-width: 480px) {
  .dropdown-element-input {
    height: 48px;
    font-size: 16px;
  }

  .sw-input-container-2 {
    flex-direction: column;
  }

  .sw-popup {
    width: 320px;
  }
}

/* Seek work Page end */

/* Overlay to dim background */
.overlay-x {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
}

.overlay-x.active-overlay {
  display: block;
}

.submit-btn:hover {
  cursor: pointer;
}

.height-hundred {
  height: 100%;
}

html {
  height: 100%;
}

a {
  color: black;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

body p {
  font-family: "Montserrat", sans-serif;
}

body h3 {
  font-family: "Montserrat", sans-serif;
}

body h6 {
  font-family: "Montserrat", sans-serif;
}

.txt-align-center {
  text-align: center;
}

#home-section {
  background: url(../img/starting-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  min-height: 700px;
  color: #fff;
}

/* Start sidebar classes */
/* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 999; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #79b707; /* #0A2777; or #79B707 */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

.sidenav ul {
  list-style-type: none;
  padding-left: 0;
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left 0.5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

/* End sidebar classes */

.fas {
  color: white;
}

#section-signin .sign-up {
  color: #79b707;
  background-color: white;
}

#section-signin .login {
  color: white;
  background-color: #79b707;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 67px;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 34px;
}

#header-text {
  font-weight: 400;
  font-size: 18;
}

#intro-section {
  background-color: #f2f5f8;
}

.responsive {
  width: 100%;
  height: auto;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 23px;
}

#card-1 {
  background-color: #cad0e1;
}

.card-height {
  height: 246px;
}

.small-cards {
  background-color: #e6f2d0;
  font-size: 13px;
}

.img-width {
  width: 100%;
}

#content-section a {
  color: #79b707;
  font-weight: 700;
}

.content-center-ourowndesign {
  width: 100%;
  height: 100%;
}

#registration-section,
#registration-section-2 {
  background: linear-gradient(0deg, #0a2777 0 50%, white 50% 100%);
  /* background-color: #0A2777; */
  /* height: 373px; */
}

#register-company {
  background: url(../img/register-company.jpg);
  width: 435px;
  height: 507px;
  background-repeat: no-repeat;
}

#register-driver {
  background: url(../img/register-personal.jpg);
  width: 435px;
  height: 507px;
  background-repeat: no-repeat;
}

#registration-section .btn {
  background-color: #79b707;
  color: white;
  font-weight: 700;
}

#operationalInfo-section {
  min-height: 30rem;
  background-color: #eff6ee;
}

#operationalInfo-section a {
  color: #79b707;
  font-weight: 700;
}

#imageCountry1 {
  position: absolute;
  margin: -32px 0px 0px 106px;
}

#imageCountry2 {
  position: absolute;
  top: 183px;
  right: 1px;
  left: 1px;
}

#imageCountry3 {
  position: absolute;
  top: 183px;
  left: 223px;
}

#imageCountry4 {
  position: absolute;
  top: 343px;
  bottom: 0px;
  left: 57px;
}

#section-faq .card {
  /* border: 0px; */
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-style: groove;
  border-color: #ebe9e9;
  background-color: #fff;
}

#section-faq .card-header {
  background-color: #fff;
  border-bottom: none;
}

#section-faq button {
  background-color: #fff;
}

#section-faq button:focus {
  outline: 0;
  box-shadow: none;
}

#section-faq .fas {
  color: black;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: large;
}
/*
#ImageFooter-Section {
    color: #fff;
} */

#ImageFooter-Section {
  background-image: url(../img/footer-img.jpg);
  min-height: 350px;
  max-height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

.nav-link {
  font-weight: 700;
  color: white;
  font-size: 17px;
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* Vi behöver troligtvis ändra lite här !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
footer {
  background-color: #79b707;
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

.fab {
  color: white;
}

.footer-text {
  color: white;
}

.sec-card-wrapper {
  position: relative;
  border: 0.2rem;
  border-style: inset;
  border-color: rgba(212, 209, 209, 0.185);
  padding: 1rem;
  border-radius: 5px;
  margin: 1rem 2rem 2rem;
}

/* SuperAdmin overview page */
/* #SuperAdminOverview {
    display: grid;
    margin: 0;
} */

#navbar {
  /* grid-column: 1 / span 12; */
  /* grid-column: 1 / span 14; */
  display: flex;
  border-top: 12px solid #0a2777;
  box-shadow: 0px 10px 5px -5px #e4e4e4;
  background-color: white;
  position: relative;
  z-index: 10;
}

.main {
  display: grid;
  grid-gap: 30px;
  /*background-color: #f1f0f0;*/
}

.sidebar-lg {
  grid-template-columns: 285px repeat(12, minmax(auto, 100px)) 1fr;
}

/* .sidebar-sm {
    grid-template-columns: 75px repeat(12, minmax(auto, 100px)) 1fr;
} */

#sidebar-menu {
  /* grid-column: 1 / span 2; */
  grid-column: 1 / span 1;
  /* height: 600px; */
  /* position: relative; */
  /*background-color: #f1f0f0;*/
  height: 100%;
  padding-bottom: 25px;
}

.sidebar-ul {
  padding: 0;
  min-height: 750px;
  height: 100%;
  margin-top: 0;
  margin-bottom: 15px;
  padding-top: 15px;
  background-color: white;
  position: relative;
  /*z-index: 9;*/
  box-shadow: 10px 10px 5px -5px #e4e4e4;
}

#sidebar-ul-sm {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 15px;
  background-color: white;
  position: relative;
  z-index: 20;
  width: 286px;
  float: left;
  min-height: 800px;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100vh;
  min-height: 800px;
  width: 100%;
  z-index: 20;
}

#SuperAdminOverview {
  position: relative;
}

#sidebar-overlay {
  width: 0;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 20;
  overflow-x: hidden;
  height: 100%;
}

.sidebar-logo {
  width: 70%;
  margin-left: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.sidebar-menu-link-lg-logout {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
  transition: 0.3s;
}

.sidebar-menu-link-lg {
  padding-left: 30px;
  transition: 0.3s;
}

.sidebar-menu-link-lg:hover {
  background-color: #cecdcd;
}

.sidebar-menu-link-active {
  border-left: 10px solid #0a2777;
}

.sidebar-menu-link-inactive-lg {
  padding-left: 40px;
}

.sidebar-menu-link-text {
  font-family: "Montserrat", sans-serif;
  color: black;
  font-weight: 300;
  display: flex;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.sidebar-icon {
  margin-right: 15px;
  width: 20px;
}

.sidebar-icon-arrow {
  margin-left: auto;
}

.ml-auto {
  margin-left: auto;
}

.active {
  color: #0a2777;
}

.sidebarArrow-lg {
  border: none;
  background-color: transparent;
}

.sidebarArrow-sm {
  border: none;
  background-color: transparent;
}

#slideArrowLeft {
  margin-left: auto;
}

.sidebarExpandArrow {
  position: relative;
  left: 10px;
}

.submenu-list-lg {
  background-color: #f7f7f7;
  padding: 0;
  display: none;
}

.submenu-list-sm {
  background-color: #f7f7f7;
  padding: 0;
  display: none;
}

.sidebar-link-control-panel-lg {
  position: relative;
  background-color: transparent;
}

.submenu-list {
  background-color: #f7f7f7;
  padding: 0;
  position: absolute;
  top: 0;
  left: 285px;
  overflow: hidden;
  width: 0;
}

.sidebar-link-expand-lg {
  position: relative;
}

.submenu-list-lg p {
  color: black;
  font-weight: 290;
}

.submenu-list p {
  color: black;
  font-weight: 290;
}

.submenu-list-sm p {
  color: black;
  font-weight: 290;
}

.submenu-link {
  padding-left: 75px;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  transition: 0.2s;
}

.submenu-link:hover {
  background-color: #cecdcd;
}

.submenu-link-sm {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  transition: 0.2s;
}

.submenu-link-sm:hover {
  background-color: #cecdcd;
}

.logout-link {
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-bottom: 20px;
}

.logout-link-sm {
  display: flex;
  width: 100%;
  padding-bottom: 20px;
  margin-top: auto;
}

.logo {
  border-right: 1px solid #e4e4e4;
  margin-top: 12px;
  margin-bottom: 12px;
  margin-right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 285px;
}

#logo {
  width: 70%;
}

.navbar-standard-logo {
  width: 70%;
}

#nav-simple-logo {
  width: 110%;
}

.logo-container-sm {
  display: none;
}

.logo-container {
  display: flex;
  border-right: 1px solid #e4e4e4;
  margin-top: 12px;
  margin-bottom: 12px;
  margin-right: 12px;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 285px;
}

.menu-bar-button {
  border: none;
  background-color: transparent;
}

.navbar-menu-bar-button {
  display: none;
}

#superadmin-navtext {
  font-size: 17px;
  margin-right: auto;
  padding-left: 10px;
}

.page-navigation {
  margin-right: auto;
  display: flex;
  align-items: center;
}

.arrow-page-navigation-home {
  height: 9px;
  width: 13px;
  margin-left: 5px;
}

.arrow-page-subnavigation {
  height: 9px;
  width: 5px;
}

.home-link-page-navigation {
  display: flex;
  align-items: center;
}

.previous-page {
  font-size: 14px;
  font-weight: 500;
  margin-right: 18px;
  margin-left: 12px;
}

.previous-page-inactive {
  color: #9e9e9e;
}

.previous-page-active {
  color: #0a2777;
}

.previous-page-inactive:hover {
  color: #0a2777;
}

#superadmin-navtext p {
  margin: 10px;
  margin-top: 15px;
}

#overview-page-text {
  font-weight: 300;
}

#navbar-buttons {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbarbutton {
  background-color: white;
  border: none;
  margin-right: 20px;
}

.userbutton {
  background-color: #707070;
  color: var(--White);
  border-radius: 50%;
  padding: 10px;
  font-weight: 700;
}

.dropdown-navbar {
  position: relative;
}

.user-dropdown {
  display: none;
  position: absolute;
  width: 250px;
  background-color: white;
  right: 10px;
  top: 42px;
  border: 1px solid var(--lightgrey);
}

.user-dropdown a {
  color: black;
  padding: 12px 16px;
  display: block;
}

.border-top-lightgrey {
  border-top: 1px solid var(--lightgrey);
}

.hide {
  display: none;
}

.content {
  grid-column: 2 / span 12;
  display: grid;
  grid-template-columns: repeat(12, minmax(auto, 100px));
  grid-gap: 30px;
  padding-top: 25px;
  padding-bottom: 25px;
  /*background-color: #f1f0f0;*/
  position: relative;
}

#overview {
  grid-column: 1 / span 12;
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-gap: 30px;
  position: relative;
  z-index: 8;
}

.content-container-tablepage {
  grid-column: 1 / span 12;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, auto) 1fr auto;
  grid-gap: 30px;
  position: relative;
  z-index: 8;
  background-color: white;
  border-radius: 10px;
  padding-right: 25px;
  box-shadow: 0px 0px 24px 6px #e4e4e4;
}

.content-container-editpage {
  grid-column: 1 / span 12;
  position: relative;
  background-color: white;
  border-radius: 10px;
  z-index: 8;
  padding: 25px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 20px 1px #e4e4e4;
}

.content-container-cmp-overview {
  grid-column: 1 / span 12;
  display: grid;
  grid-template-rows: auto 1fr;
}

.content-container-product-offerings {
  grid-column: 1 / span 12;
  display: grid;
  grid-template-rows: auto 1fr;
}

.content-container-product-purchase-cart {
  grid-column: 1 / span 12;
}

.subcontainers-editpage {
  display: flex;
  flex-direction: column;
}

.p-content-container-tablepage {
  padding: 25px;
}

.contentExpandedSidebar {
  padding-left: 0;
}

#first-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(auto, 100px));
}

#second-row {
  display: grid;
  grid-template-columns:
    minmax(200px, 370px) minmax(287.5px, 510px) minmax(156.25px, 280px)
    minmax(156.25px, 280px);
  grid-template-rows: repeat(2, auto);
}

#third-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(auto, 100px));
}

.content-row {
  grid-row-end: span 1;
  grid-gap: 30px;
}

.first-row-card-container {
  grid-column-end: span 3;
  grid-row-end: span 1;
  width: 100%;
  padding-top: 68%;
  overflow: hidden;
  position: relative;
  z-index: 10;
  box-shadow: 0px 5px 4px 1px #e4e4e4;
}

.first-row-card-container:hover {
  box-shadow: 0px 0px 5px #0a2777;
  cursor: pointer;
}

.last-row-card-container {
  grid-column-end: span 3;
  grid-row-end: span 1;
  width: 100%;
  padding-top: 68%;
  overflow: hidden;
  position: relative;
  z-index: 10;
  box-shadow: 0px 5px 4px 1px #e4e4e4;
}

.last-row-card-container:hover {
  box-shadow: 0px 0px 5px #0a2777;
  cursor: pointer;
}

.fifth-card-container {
  grid-column-end: span 1;
  grid-row-end: span 2;
  width: 100%;
  padding-top: 114%;
  overflow: hidden;
  position: relative;
  z-index: 10;
  box-shadow: 0px 5px 4px 1px #e4e4e4;
}

.fifth-card-container:hover {
  box-shadow: 0px 0px 5px #0a2777;
  cursor: pointer;
}

.sixth-card-container {
  grid-column-end: span 1;
  grid-row-end: span 2;
  width: 100%;
  padding-top: 79%;
  overflow: hidden;
  position: relative;
  z-index: 10;
  box-shadow: 0px 5px 4px 1px #e4e4e4;
}

.sixth-card-container:hover {
  box-shadow: 0px 0px 4px #0a2777;
  cursor: pointer;
}

.mini-card-container {
  grid-column-end: span 1;
  grid-row-end: span 1;
  width: 100%;
  padding-top: 67%;
  overflow: hidden;
  position: relative;
  z-index: 10;
  box-shadow: 0px 5px 4px 1px #e4e4e4;
}

.mini-card-container:hover {
  box-shadow: 0px 0px 5px #0a2777;
  cursor: pointer;
}

.card-sm {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  padding: 20px;
  transition: 0.2s;
}

.card-lg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  padding: 20px;
}

/* Card design */
.card-design {
  border-radius: 3%;
}

.overview-layout {
  background-color: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.overview-chart-layout {
  background-color: white;
  border-radius: 10px;
  display: flex;
}

.d-flex {
  display: flex;
}

.d-flex-column {
  display: flex;
  flex-direction: column;
}

.card-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 36px;
  margin: 5px;
  color: #79b707;
}

.card-icon {
  margin-left: auto;
  height: 35px;
  width: 50px;
  padding-top: 10px;
}

.card-text-first-row {
  font-weight: 300;
  font-size: 15px;
  margin: 0px;
  width: 50%;
}

.card-bottom-row {
  margin-top: auto;
  padding-top: 10px;
}

.last-seven-days {
  font-weight: 400;
  font-size: 10px;
  margin: 0px;
  margin-left: auto;
  float: right;
}

.card-arrow-first-row {
  width: 12px;
  height: 12px;
  padding-left: 5px;
  padding-top: 2px;
  align-self: end;
}

.view-all-first-row {
  font-weight: 300;
  font-size: 9px;
  color: #a5a5a5;
  margin: 0px;
}

.card-number-second-row {
  font-weight: 500;
  font-size: 30px;
  margin: 5px;
  color: #79b707;
}

.card-text-second-row {
  font-weight: 300;
  font-size: 12px;
  margin: 0px;
  width: 65%;
}

.view-all-second-row {
  font-weight: 300;
  font-size: 8px;
  color: #a5a5a5;
  margin: 0px;
}

.per-day {
  font-weight: 400;
  font-size: 8px;
  margin: 0px;
  margin-left: auto;
}

.card-arrow-second-row {
  width: 12px;
  height: 12px;
  padding-left: 5px;
  padding-top: 2px;
  align-self: center;
}

.card-text-large-card {
  font-weight: 300;
  font-size: 13px;
  color: #7b7b7b;
}

.fifth-card-text {
  margin-top: 10px;
  margin-bottom: 40px;
}

.view-all-fifth-card {
  font-weight: 300;
  font-size: 10px;
  color: #a5a5a5;
}

.last-seven-days-large-card {
  font-weight: 500;
  font-size: 11px;
  color: black;
}

.card-arrow-large-card {
  width: 11px;
  height: 6px;
  align-self: center;
  padding-left: 5px;
}

.companies-onboard-img {
  margin-top: auto;
  padding-bottom: 10px;
  border-bottom: #eeecec 1px solid;
}

.earning-statistics-img {
  margin-top: auto;
  padding-bottom: 15px;
}

.transection-history-img {
  margin-top: auto;
  padding-bottom: 10px;
  border-bottom: #eeecec 1px solid;
  object-fit: contain;
  height: 100%;
}

.last-seven-days-link {
  margin-left: auto;
}

.bottom-row-large-card {
  padding-top: 20px;
}

.text-sm {
  font-weight: 300;
  font-size: 9px;
  padding-bottom: 5px;
  margin-left: auto;
}

.legends-container {
  margin-left: auto;
}

.subscription-details-img {
  margin-top: auto;
  padding-bottom: 10px;
}

.new-subscriber-color {
  width: 11px;
  height: 11px;
  background-color: #0a2777;
  margin-left: 5px;
}

.unsubscriber-color {
  width: 11px;
  height: 11px;
  background-color: #777777;
  margin-left: 5px;
}

.top-row-sixth-card {
  margin-top: 10px;
}

.chart-card-text {
  font-size: 11px;
  font-weight: 300;
  color: #7b7b7b;
  margin-bottom: 20px;
}

.chart-img {
  object-fit: contain;
  height: 100%;
}

.first-square {
  width: 8px;
  height: 8px;
  background-color: #0a2777;
  margin-left: 5px;
  align-self: center;
  margin-bottom: 5px;
}

.second-square {
  width: 8px;
  height: 8px;
  background-color: #777777;
  margin-left: 5px;
  align-self: center;
  margin-bottom: 5px;
}

.third-square {
  width: 8px;
  height: 8px;
  background-color: #e4e4e4;
  margin-left: 5px;
  align-self: center;
  margin-bottom: 5px;
}

.last-seven-days-chart-link {
  margin-top: auto;
  color: black;
}

.transfer-icon {
  padding-right: 10px;
}

/* @media (min-width: 1300px) {
    #sidebar-sm {
        display: none;
        width: 0;
    }
} */

button:hover {
  cursor: pointer;
}

.footer-lg {
  background-color: #384282;
  display: grid;
  grid-template-columns: 1fr repeat(12, minmax(auto, 80px)) 1fr;
  grid-gap: 40px;
}

.footer-sm {
  background-color: #384282;
  display: grid;
  grid-template-columns: 1fr repeat(12, minmax(auto, 80px)) 1fr;
  grid-gap: 40px;
  display: none;
}

.footer-container {
  grid-column: 2 / span 12;
}

.footer-first-row {
  width: 100%;
  padding-top: 40px;
}

.footer-list-one {
  display: flex;
  border-bottom: #6872a8 1px solid;
  padding-left: 0;
  padding-bottom: 20px;
}

.footer-list-one-sm {
  display: flex;
  padding-left: 0;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.footer-list-items {
  display: flex;
  align-items: flex-end;
  padding-bottom: 5px;
  margin-right: 50px;
}

.footer-list-items-sm {
  margin-right: 50px;
}

.footer-social-media-icons {
  display: flex;
  align-items: flex-end;
  padding-bottom: 5px;
  margin-left: auto;
}

.social-media-icon {
  margin-left: 10px;
}

.footer-logo {
  margin-right: 50px;
}

.footer-logo-sm {
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 60px;
}

.footer-link p {
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.footer-link-sm p {
  color: white;
  font-size: 15px;
  font-weight: 300;
}

.footer-second-row {
  display: flex;
  padding-top: 20px;
  padding-bottom: 30px;
}

.footer-second-row-sm {
  display: flex;
  padding-top: 40px;
  padding-bottom: 10px;
  border-top: #6872a8 1px solid;
}

.footer-second-row p {
  color: white;
  font-size: 12px;
  font-weight: 300;
}

.footer-second-row-sm p {
  color: white;
  font-size: 12px;
  font-weight: 300;
}

.footer-copyright {
  margin-right: auto;
}

.footer-copyright-sm {
  margin-right: auto;
  margin-left: 30px;
}

.footer-txt {
  margin-left: 40px;
}

.footer-txt-sm {
  margin-right: 40px;
}

/* Table pages */
.table-container {
  grid-column: 1 / span 12;
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table-row-expansion-container {
  padding: 0;
}

.collapsed {
  height: 0;
  overflow: hidden;
}

.expanded {
  height: auto;
}

.x-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
}

.x-links {
  display: flex;
  margin-right: auto;
}

.x-icon {
  width: 30px;
  height: 30px;
  margin-top: auto;
  margin-bottom: auto;
}

.x-text {
  font-size: 11px;
  font-weight: 500;
  color: #777777;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 15px;
}

.x-nbrof-tokens {
  background-color: #0a2777;
  color: white;
  padding: 4px 10px 4px 10px;
  border-radius: 3px;
}

.x-package {
  background-color: var(--btn);
  color: white;
  padding: 4px 10px 4px 10px;
  border-radius: 3px;
}

.x-heading {
  display: flex;
  background-color: #0a2777;
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 5px;
}

.x-arrow {
  transform: rotate(90deg);
  padding: 5px;
  cursor: pointer;
}

.expanded-arrow {
  transform: rotate(-90deg);
}

.first-table-row {
  border-bottom: 1px solid #c6ccdd;
}

.table-header p {
  float: left;
  font-weight: 400;
  font-size: 15px;
}

.table-row p {
  font-weight: 300;
  font-size: 14px;
}

th,
td {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

/* tr:nth-child(4n + 2) {background-color: #ecf1ff;} */
tr:nth-child(even) {
  background-color: #ecf1ff;
}

.checkbox-container {
  position: relative;
  padding: 20px;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 35%;
  left: 12px;
  height: 15px;
  width: 15px;
  background-color: white;
  border: 1px solid #cecdcd;
  border-radius: 4px;
}

.checkbox-container input:hover ~ .checkmark {
  background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #0a2777;
  border: 1px solid #0a2777;
}

.table-icon {
  margin-left: 25px;
  width: 15px;
  height: 15px;
}

.table-arrow {
  height: 6px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 5px;
}

.header-section {
  grid-column: 1 / span 12;
  display: flex;
  align-items: center;
}

.header-section-2 {
  grid-column: 1 / span 12;
  display: flex;
  align-items: center;
}

.add-button-container {
  margin-left: auto;
}

.pc-nbr-icon-container {
  background-color: #384282;
  height: 100%;
  display: flex;
  padding: 20px 20px 20px 20px;
  margin-right: 10px;
  border-top-left-radius: 10px;
}

.pc-nbr-icon {
  border-radius: 50%;
  background-color: white;
  padding: 5px;
}

.p-x-25 {
  margin: 0 0 25px 25px;
}

.header {
  font-size: 20px;
  font-weight: 400;
}

.header-pending-complaints {
  font-size: 20px;
  font-weight: 400;
  margin-top: auto;
  margin-bottom: auto;
}

.search-container {
  margin-left: auto;
}

.avg-earning-container {
  margin-left: auto;
  margin-right: 20px;
}

.avg-earning-container p {
  color: #79b707;
  margin-top: auto;
  margin-bottom: auto;
  font-weight: 500;
  margin-left: 5px;
  font-size: 18px;
}

.avg-earning-container img {
  margin-top: auto;
  margin-bottom: auto;
}

.search-input {
  background-color: #f5f5f5;
  background-image: url("/img/search-icon.png");
  background-position: 20px;
  background-repeat: no-repeat;
  padding: 13px 15px 13px 40px;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  border: none;
  width: 280px;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

.search-container-button {
  float: right;
  padding: 13px 15px 13px 15px;
  background: #a5a5a5;
  color: white;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  border: none;
  cursor: pointer;
  width: 90px;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}

.search-container-button:hover {
  background: #0a2777;
}

.bottom-section {
  grid-column: 1 / span 12;
  grid-row: 4 / span 1;
  display: flex;
  align-items: center;
  position: relative;
}

.pagination {
  margin-right: auto;
  margin-left: auto;
  display: flex;
  height: 28px;
}

.pagination-link-active {
  color: white;
  background-color: #0a2777;
}

.pagination-link-inactive {
  color: black;
  background-color: #f5f5f9;
}

.pagination-link {
  padding: 5px 10px 5px 10px;
  border-radius: 50%;
  margin-right: 4px;
  margin-left: 4px;
}

.pagination-arrow-link {
  height: 100%;
  margin-right: 5px;
  margin-left: 5px;
}

.pagination-arrow-img {
  margin-top: 5px;
}

.add-btn-img {
  padding-top: 5px;
}

.dropdown-nbr-rows {
  position: relative;
}

.dropbtn {
  background-color: #f5f5f9;
  padding: 10px 15px 10px 15px;
  min-width: 150px;
  font-size: 9px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
}

.dropdown-arrow {
  margin-left: 3px;
  margin-top: auto;
  margin-bottom: auto;
}

.dropdown-nbr-rows-content {
  display: none;
  position: absolute;
  background-color: #f5f5f9;
  min-width: 150px;
}

.dropdown-nbr-rows-content a {
  color: rgb(75, 74, 74);
  font-size: 9px;
  font-family: "Montserrat", sans-serif;
  padding: 12px 16px;
  display: block;
}

.dropdown-nbr-rows-content a:hover {
  background-color: rgb(227, 227, 233);
}

.show {
  display: block;
}

.expanded-dropdown {
  background-color: rgb(227, 227, 233);
}

/* Control Panel */

.content-container {
  grid-column: 1 / span 12;
}

.ctrl-panel-card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  margin-bottom: 30px;
}

.ctrl-panel-card {
  grid-column-end: span 1;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 24px 0px #e4e4e4;
}

.card-img {
  height: 50px;
  width: 50px;
  margin-right: auto;
  margin-left: auto;
  margin-top: auto;
}

.link-text {
  color: black;
  margin-bottom: auto;
  margin-top: 20px;
  font-weight: 200;
  text-align: center;
}

.heading-text {
  color: #707070;
  font-weight: 600;
  margin-bottom: 20px;
}

.input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0px 20px 0px;
}

.input-container-hidden {
  display: none;
}

.form-group {
  display: flex;
  align-items: center;
  margin: 20px 0px 30px 0px;
}

.input-container-mini {
  display: flex;
}

.ml-auto {
  margin-left: auto;
}

.multiple-forms {
  margin-right: auto;
  margin-left: auto;
  border-bottom: 1px solid #ececec;
  padding-bottom: 25px;
}

.form {
  margin-right: auto;
  margin-left: auto;
}

.file-upload-label {
  background-color: #f2f2f2;
  width: 490px;
  height: 150px;
  border: 1px dashed #d0d4e0;
  border-radius: 3px;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  display: flex;
  flex-direction: column;
}

input[type="file"] {
  display: none;
}

.file-upload-text {
  margin-left: auto;
  margin-right: auto;
}

.upload-text {
  margin-bottom: auto;
}

.upload-plus {
  margin-top: auto;
  font-size: 29px;
  color: #bfbfbf;
}

.form-label {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  /*text-align: end;
    margin-right: 40px;*/
  margin-right: auto;
  margin-bottom: 10px;
  text-align: start;
  /*width: 110px;*/
  overflow: hidden;
}

.control-label {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: end;
  margin-right: 40px;
  width: 200px;
  overflow: hidden;
}

.multiple-forms label {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: end;
  margin-right: 40px;
  width: 100px;
}

.form-input {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  width: 490px;
  height: 30px;
  border-radius: 3px;
  /*border: none;*/
  border: 1px solid var(--lightgrey);
  /*background-color: #EFEFEF;*/
  padding: 5px 5px 5px 15px;
}

.small-input-container {
  display: flex;
  justify-content: space-between;
}

.small-form-input {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  width: 225px;
  height: 30px;
  border-radius: 3px;
  /*border: none;*/
  border: 1px solid var(--lightgrey);
  /*background-color: #EFEFEF;*/
  padding: 5px 5px 5px 15px;
}

.form-control {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  width: 490px;
  height: 30px;
  border-radius: 3px;
  border: none;
  background-color: #efefef;
  padding: 5px 5px 5px 15px;
}

.form-input-mini {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  height: 30px;
  border-radius: 3px;
  /*border: none;*/
  border: 1px solid var(--lightgrey);
  /*background-color: #EFEFEF;*/
  padding: 5px 5px 5px 15px;
}

.form-input:read-only {
  /*background-color: transparent;*/
  /* width: 300px; */
  /* padding: 5px 5px 5px 0px; */
  /*border: none;*/
  color: var(--darkgrey);
}

.form-input-mini:read-only {
  background-color: transparent;
  width: 300px;
  /* padding: 5px 5px 5px 0px; */
}

.submit-btn {
  border: none;
  padding: 10px 20px;
  margin-left: 10px;
  color: white;
  background-color: var(--btn);
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-family: "Montserrat", sans-serif;
  float: right;
  text-align: center;
  font-size: 16px;
}

.submit-btn:hover {
  background-color: #2e8b57; /* Darker shade for hover */
}

/* Old design */

/* .submit-btn {
    width: 140px;
    height: 40px;
    border: none;
    padding: 10px;
    margin-left: 10px;
    color: white;
    background-color: var(--btn);
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    float: right;
    text-align: center;
    font-size: 16px;
} */

.edit-icon {
  border-right: 4px solid #6174a8;
  padding-right: 20px;
  margin-right: 20px;
}

.edit-heading-container {
  display: flex;
  margin: 50px;
}

.edit-heading-container-2 {
  margin: 50px 0px 30px 50px;
}

.edit-heading-text {
  font-size: 18px;
  color: #6174a8;
  font-weight: 600;
}

.edit-heading-description {
  font-size: 14px;
  font-weight: 200;
  margin-top: 10px;
}

.change-psw {
  background-color: var(--grey);
  color: white;
  padding: 7px;
  text-align: center;
  border-radius: 5px;
  font-size: 12px;
}

.sub-details {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  width: 490px;
  border-radius: 3px;
  border: 1px solid var(--lightgrey);
  padding: 5px 5px 5px 15px;
}

.change-sub-btn {
  height: 40px;
  border: none;
  padding: 10px;
  margin-left: 10px;
  color: white;
  background-color: var(--btn);
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
  float: right;
  text-align: center;
}

/* Company Overview */
.notification {
  position: absolute;
  background-color: #cfd3e6;
  top: 0px;
  left: -30px;
  z-index: 15;
  display: flex;
  width: 105%;
}

.notification p {
  color: #384282;
  font-weight: 500;
  padding-top: 5px;
  padding-bottom: 5px;
}

.notification-text {
  margin-left: auto;
  margin-right: auto;
}

.content-with-notifaction {
  padding-top: 40px;
}

.notifaction-close-btn {
  padding-right: 5px;
}

.cmp-overview-first-row {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  grid-gap: 30px;
}

.cmp-overview-table {
  margin-top: 20px;
  display: grid;
  grid-template-rows: auto 1fr;
}

.cmp-table-container {
  overflow-x: auto;
  background-color: white;
  padding: 15px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 14px 24px 2px #e4e4e4;
}

.tab-content {
  display: none;
}

.table-tabs {
  display: flex;
  border-bottom: 3px solid #384282;
}

.stats-design {
  border-radius: 100%;
  background-color: #79b707;
  width: 13px;
  height: 13px;
  color: white;
  margin-left: 3px;
}

.tablinks {
  background-color: #cfd3e6;
  border-radius: 10px 10px 0px 0px;
  padding: 15px;
  display: flex;
  width: 200px;
}

.tablinks p {
  padding-left: 5px;
}

.active-tablinks {
  background-color: #384282;
}

.active-tablinks p {
  color: white;
}

.active-tablinks-img img {
  fill: white;
}

.tab-text {
  color: #384282;
}

.tablinks-content {
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-self: center;
}

.seek-driver-btn {
  height: 200px;
  width: 200px;
  background-color: var(--btn);
  display: flex;
  border-radius: 10px;
  box-shadow: 0px 5px 4px 1px #e4e4e4;
}

.seek-driver-container {
  margin: auto;
  display: flex;
  flex-direction: column;
}

.seek-driver-img {
  height: 64px;
  width: 55px;
  margin-left: auto;
  margin-right: auto;
}

.seek-driver-heading {
  color: white;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 3px;
  text-align: center;
}

.seek-driver-p {
  color: white;
  font-weight: 100;
  font-size: 11px;
  text-align: center;
}

.cmp-card {
  height: 100%;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 10px;
  z-index: 10;
  box-shadow: 0px 5px 4px 1px #e4e4e4;
}

.cmp-card-number {
  font-size: 28px;
  font-weight: 500;
  margin: 5px;
  color: #79b707;
}

.cmp-card-text-first-row {
  font-weight: 300;
  font-size: 15px;
  margin: 0px;
  width: 50%;
  color: #0a2777;
}

.table-img {
  margin-right: auto;
}

.table-header-text {
  margin-left: auto;
}

.table-text {
  text-align: center;
}

/* Product Offerings */
.page-content-top {
  display: flex;
  margin-top: 15px;
  margin-bottom: 25px;
}

.product-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto 1fr;
  grid-gap: 40px;
}

.product-card {
  background-color: #384282;
  border-radius: 15px;
}

.product-card-body {
  background-color: white;
  padding: 25px;
  border-radius: 15px;
}

.product-card-first-row {
  display: flex;
  padding-bottom: 7px;
}

.product-card-fourth-row {
  display: flex;
  /* padding-top: 7px; */
  padding-top: 40px;
}

.product-card-first-row-txt {
  margin-right: auto;
  color: #837c7c;
  font-weight: 600;
}

.product-card-second-row-txt {
  color: #384282;
  font-size: 12px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.product-card-third-row-txt {
  font-size: 12px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.product-card-fourth-row-img-and-txt {
  display: flex;
  align-items: center;
}

.product-card-fourth-row-img-txt {
  color: #384282;
  font-size: 12px;
  margin-left: 10px;
}

.product-card-fourth-row-txt {
  color: var(--btn);
  font-size: 27px;
  font-weight: 600;
  margin-left: auto;
}

.sortby-form {
  margin-left: auto;
}

.page-heading-txt {
  font-weight: 500;
  margin-top: auto;
  margin-bottom: auto;
}

.card-bottom-section {
  background-color: #384282;
  display: flex;
  border-radius: 0 0 15px 15px;
}

.card-bottom-section button {
  margin: auto;
}

.card-bottom-section p {
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 20px;
}

/*Buy Coupons Page*/
.buy-coupon-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: white;
  padding: 25px;
  text-align: center;
}

.buy-coupon-card-heading {
  color: #837c7c;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 20px;
}

.buy-coupon-card-img {
  margin-bottom: 10px;
  /*filter: invert(11%) sepia(39%) saturate(5882%) hue-rotate(222deg) brightness(97%) contrast(101%);*/
  width: 60px;
}

.buy-coupon-card-valid-txt {
  margin-bottom: 10px;
  font-size: 12px;
  color: #837c7c;
}

.buy-coupon-card-price {
  font-size: 20px;
  font-weight: 400;
  color: #837c7c;
}

.buy-coupons-product-card {
  background-color: #384282;
  border-radius: 15px;
  box-shadow: 0px 0px 24px 6px var(--shadowgrey);
}

.buy-coupons-product-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto 1fr;
  grid-gap: 40px;
}

@media (max-width: 1024px) {
  .product-cards-container {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
  }

  .buy-coupons-product-cards-container {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
  }
}

@media (max-width: 768px) {
  .buy-coupons-product-cards-container {
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
  }
}

@media (max-width: 480px) {
  .buy-coupons-product-cards-container {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

  .buy-coupons-product-card {
    width: 290px;
    margin-bottom: 20px;
  }
}

/* Seek driver */
.header-sektion-tabs-sortby {
  display: flex;
}

.sortby-form {
  display: flex;
}

.tab-txt {
  font-size: 16px;
  color: #948d8d;
  font-weight: 600;
}

.tab-txt-active {
  font-weight: 500;
  color: #0a2777;
}

.tab-amount {
  color: white;
  height: 15px;
  width: 15px;
  background-color: #948d8d;
  border-radius: 50%;
  display: flex;
  margin-left: 5px;
}

.tab-amount p {
  margin: auto;
  font-size: 8px;
}

.tab-amount-active {
  background-color: #0a2777;
}

.tab-btn {
  display: flex;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-right: 40px;
  margin-left: 10px;
}

.tab-btn-active {
  border-bottom: 2px solid #0a2777;
}

.tab-btn-active span {
  background-color: #0a2777;
}

.tab-btn-active h6 {
  font-weight: 500;
  color: #0a2777;
}

.container-dropdown-and-button {
  display: flex;
}

.margin-top-zero {
  margin-top: 0px;
}

.sortby-sortby {
  border: none;
  border-radius: 5px;
  width: 200px;
  height: 40px;
  padding: 10px;
  color: #948d8d;
  box-shadow: 0px 0px 24px 6px #e4e4e4;
}

.sortby-label {
  font-size: 14px;
  width: 70px;
  margin: auto;
  font-weight: 500;
  padding-right: 10px;
}

.seek-work-btn {
  background-color: var(--btn);
  color: white;
  border-radius: 4px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}

.wide-cards-container {
  margin-top: 30px;
}

.wide-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 0px 20px 1px #e4e4e4;
  margin-bottom: 20px;
}

.wide-card-expandable-area {
  margin-top: 20px;
}

.wide-card-header {
  color: #3b3b3bad;
  font-size: 14px;
}

.wide-card-blue-text {
  color: #384282;
  font-size: 10px;
}

.wide-card-text {
  font-size: 10px;
  color: black;
}

.wide-card-icons {
  height: 18px;
  padding-left: 5px;
  padding-right: 5px;
}

.wide-card-takeaction-text {
  font-size: 12px;
  color: var(--btn);
  font-weight: 500;
}

.wide-card-icon-takeaction {
  height: 16px;
  padding-right: 5px;
}

.wide-card-icon-arrow {
  height: 4px;
  margin: 3px;
}

.wide-card-bottom-section p {
  color: #ababab;
  font-size: 10px;
}

.wide-card-published {
  color: #ababab;
  font-size: 10px;
  padding-top: 3px;
}

.wide-card-view-details {
  padding-top: 5px;
  padding-bottom: 5px;
  cursor: pointer;
}

.wide-card-body {
  display: flex;
  margin-top: 5px;
  margin-bottom: 5px;
  align-items: center;
}

.wide-card-main {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.wide-card-text-container {
  display: flex;
  align-items: center;
  padding: 5px;
  margin-left: 5px;
  margin-right: 5px;
}

.color-blue-filter {
  filter: invert(13%) sepia(91%) saturate(2112%) hue-rotate(218deg)
    brightness(86%) contrast(106%);
}

@media (max-width: 1024px) {
  .container-dropdown-and-button {
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .seek-work-btn {
    width: 150px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .dropdown-width-size {
    width: 100px;
  }

  .seek-work-btn {
    width: 112px;
  }
}

/* Purchase cart */
.cart-updated-notification {
  display: flex;
  background-color: #76ac77;
  padding: 17px;
}

.cart-updated-notification-txt {
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding-left: 10px;
}

.labels-container {
  display: flex;
  padding-top: 30px;
  padding-right: 15px;
  padding-left: 40px;
}

.labels-txt {
  font-weight: 800;
  font-size: 12px;
  width: 120px;
  text-align: center;
}

.cart-item-container {
  display: flex;
  background-color: white;
  border-radius: 10px;
  margin-top: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 40px;
  padding-left: 40px;
  align-items: center;
  box-shadow: 0px 5px 4px 1px #e4e4e4;
}

.cart-item-product {
  width: 120px;
}

.cart-item-price {
  color: #7a7a7a;
  font-size: 13px;
  width: 120px;
  text-align: center;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  width: 120px;
  padding-right: 15px;
  padding-left: 15px;
}

.cart-item-subtotal {
  color: #384282;
  font-size: 12px;
  font-weight: 600;
  width: 120px;
  text-align: center;
}

.cart-item-remove-btn {
  margin-left: auto;
}

/* .cart-content-container {
    display: grid;
    grid-template-columns: 1fr 412px;
} */

.cart-item-quantity-btn {
  background-color: var(--btn);
  color: white;
  height: 20px;
  width: 20px;
  border-radius: 5px;
  margin-right: auto;
  margin-left: auto;
}

.cart-item-quantity-txt {
  margin: 10px;
  font-size: 12px;
}

.cart-item-product-txt {
  font-size: 14px;
  font-weight: 500;
}

.cart-item-product-subtxt {
  font-size: 12px;
  font-weight: 400;
}

.cart-total-container {
  padding-top: 42px;
}

.cart-total {
  background-color: white;
  margin: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 4px 1px #e4e4e4;
}

.cart-total-heading {
  margin-top: 10px;
  margin-bottom: 10px;
}

.cart-total h3 {
  font-weight: 700;
  font-size: 19px;
}

.cart-text {
  font-size: 14px;
  font-weight: 600;
}

.cart-price {
  margin-left: auto;
  color: #918989;
}

.cart-total-price {
  margin-left: auto;
}

.cart-text-container-one {
  border-bottom: 1px solid #00000027;
  padding-top: 25px;
  padding-bottom: 20px;
}

.cart-text-container-two {
  display: flex;
  padding-top: 25px;
  padding-bottom: 20px;
}

.cart-obs {
  font-size: 12px;
  color: #7a7a7a;
  margin-top: 10px;
  width: 200px;
}

.cart-btn {
  display: block;
  width: 100%;
  height: 40px;
  padding: 10px;
  color: white;
  font-weight: 700;
  background-color: var(--btn);
  border-radius: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.cart-btn p {
  text-align: center;
}

/* form with date */
.show-advanced-settings {
  font-weight: 500;
  font-size: 12px;
  color: #0a2777;
  cursor: pointer;
  margin-left: 150px;
}

.form-input-date {
  width: 250px;
}

.checkbox-input-container {
  display: flex;
  align-items: center;
  margin: 10px 0px 10px 0px;
}

.checkbox-label {
  font-size: 12px;
  text-align: center;
  margin-right: 10px;
  margin-left: 240px;
}

.sub-edit-checkbox-label {
  font-size: 12px;
  text-align: center;
  margin-right: 10px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #6174a8;
}

input:focus + .slider {
  box-shadow: 0 0 1px #6174a8;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

.radio-btn {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #eee;
  border-radius: 50%;
}

.radio-btn:hover input ~ .radio-checkmark {
  background-color: #ccc;
}

.radio-btn input:checked ~ .radio-checkmark {
  background-color: #6174a8;
}

.radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-btn input:checked ~ .radio-checkmark:after {
  display: block;
}

.radio-btn .radio-checkmark:after {
  top: 5px;
  left: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
}

.radio-btn-container {
  display: flex;
}

.radio-btn.one {
  margin-left: auto;
  margin-right: 40px;
}

.radio-btn.two {
  margin-right: auto;
  margin-left: 40px;
}

/*Coupons page*/
.coupons-card-container {
  display: flex;
}

.coupons-heading {
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.coupons-card {
  background-color: var(--White);
  height: 175px;
  width: 300px;
  margin-right: 20px;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 24px 6px #e4e4e4;
}

.coupons-card-text {
  text-align: center;
  font-size: 20px;
  margin-top: 8px;
}

.coupons-card-text-number {
  text-align: center;
  font-size: 40px;
  /*color: var(--primaryBlue);*/
  margin-top: auto;
  margin-bottom: auto;
  font-weight: 500;
}

.coupons-button {
  background-color: var(--secondaryGreen);
  height: 175px;
  width: 175px;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 0px 24px 6px #e4e4e4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.coupons-button-icon {
  height: 50px;
  margin-bottom: 10px;
  filter: invert(79%) sepia(100%) saturate(0%) hue-rotate(310deg)
    brightness(103%) contrast(106%);
}

.coupons-button-text {
  text-align: center;
  color: var(--White);
  font-weight: 500;
}

.coupons-table-container {
  margin-top: 20px;
  margin-bottom: 20px;
}

.coupons-table-heading {
  text-align: start;
  font-weight: 600;
}

.coupons-table {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 24px 6px #e4e4e4;
}

.coupons-td {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .coupons-heading {
    text-align: center;
  }

  .coupons-card-container {
    justify-content: center;
  }

  .coupons-card {
    width: 250px;
    height: 150px;
  }

  .coupons-card-text {
    font-size: 15px;
  }

  .coupons-button {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .coupons-card-container {
    flex-direction: column;
    align-items: center;
  }

  .coupons-table-container {
    overflow-x: scroll;
  }

  .coupons-card {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .coupons-button {
    width: 250px;
  }
}

/*Subscriptions Page*/
.subscription-heading {
  text-align: center;
  margin-bottom: 10px;
}

.subscription-subheading {
  text-align: center;
}

.subscription-card-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.subscription-card {
  background-color: var(--White);
  height: 500px;
  width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 40px 15px;
  box-shadow: 0px 0px 24px 6px #e4e4e4;
  margin-left: 30px;
  margin-right: 30px;
}

.subscription-card-active {
  border-top: 5px solid var(--primaryBlue);
}

.subscription-card-inactive {
  border-top: 5px solid var(--secondaryGreen);
}

.sub-type-icon {
  height: 50px;
  margin-bottom: 20px;
}

.sub-type-icon-active {
  filter: invert(16%) sepia(50%) saturate(2415%) hue-rotate(210deg)
    brightness(97%) contrast(113%);
}

.sub-type-icon-inactive {
  filter: invert(81%) sepia(0%) saturate(0%) hue-rotate(31deg) brightness(98%)
    contrast(91%);
}

.sub-price {
  font-size: 25px;
  font-weight: 500;
}

.sub-price-active {
  color: var(--primaryBlue);
}

.sub-price-inactive {
  color: var(--secondaryGreen);
}

.sub-monthly {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
}

.sub-monthly-active {
  color: var(--primaryBlue);
}

.sub-monthly-inactive {
  color: var(--secondaryGreen);
}

.sub-type-title {
  font-weight: 700;
  font-size: 17px;
}

.sub-list-item {
  font-size: 15px;
  margin-top: 11px;
}

.sub-button {
  margin-top: auto;
}

.sub-button-inactive {
  color: white;
  background-color: var(--secondaryGreen);
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  padding: 10px 29px;
  border-radius: 19px;
}

@media (max-width: 1024px) {
  .subscription-card {
    margin-right: 10px;
    margin-left: 10px;
    width: 225px;
  }
}

@media (max-width: 768px) {
  .subscription-card-container {
    flex-direction: column;
  }

  .subscription-card {
    margin-bottom: 20px;
    width: 300px;
  }
}

@media (max-width: 480px) {
  .subscription-card {
    width: 250px;
  }
}

/*Overview page driver*/
.overview-card {
  display: flex;
  padding: 30px;
  box-shadow: 0 0 20px 0 #e4e4e4;
  border-radius: 10px;
}

.timer-card {
  background-color: white;
  box-shadow: 0 0 20px 1px #e4e4e4;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.timer-heading {
  font-size: 16px;
  font-weight: 400;
}

.timer {
  font-size: 24px;
  font-weight: 500;
  margin-top: 5px;
}

.overview-second-row {
  margin-top: 30px;
}

.overview-second-row-heading {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 400;
}

/*Profile page*/
.profile-page-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-card {
  width: 500px;
  height: 700px;
  box-shadow: 0 0 20px 1px #e4e4e4;
  border-radius: 30px;
  margin: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.profile-img-container {
  text-align: center;
  background-color: var(--shadowgrey);
  padding-top: 20px;
  border-radius: 10px;
}

.profile-img {
  height: 250px;
  width: 150px;
  filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(202deg)
    brightness(111%) contrast(101%);
}

.profile-card-txt {
  margin-bottom: 20px;
  margin-top: 20px;
  border-bottom: 1px solid var(--shadowgrey);
  padding-bottom: 20px;
  display: flex;
}

.profile-card-txt-label {
  padding-right: 10px;
  font-weight: 600;
}

.profile-card-btn-container {
  text-align: center;
  margin-top: auto;
}

.profile-card-btn {
  background-color: var(--lightgreen);
  padding: 10px 47px;
  border-radius: 20px;
  color: white;
  font-weight: 600;
}

.profile-container-cards-sm {
  display: flex;
  flex-direction: column;
}

.profile-card-sm {
  width: 402px;
  height: 330px;
  box-shadow: 0 0 20px 1px #e4e4e4;
  border-radius: 30px;
  margin: 20px;
  display: flex;
  flex-direction: column;
}

.profile-card-sm-header {
  display: flex;
  justify-content: space-between;
  padding-right: 30px;
  padding-left: 30px;
  padding-top: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lightgrey);
  align-items: center;
  margin-bottom: 10px;
}

.profile-card-sm-heading {
  font-weight: 600;
  font-size: 20px;
}

.profile-card-sm-header-link {
  padding: 10px 20px;
  background-color: var(--shadowgrey);
  border-radius: 20px;
}

.profile-card-sm-body {
  padding-right: 30px;
  padding-left: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.profile-card-sm-txt {
  margin-top: 10px;
  margin-bottom: 10px;
}

.profile-card-sm-footer {
  padding-bottom: 25px;
  padding-right: 30px;
  padding-left: 30px;
  display: flex;
  justify-content: center;
}

.profile-card-sm-btn {
  background-color: var(--lightgreen);
  padding: 10px 25px;
  border-radius: 20px;
  color: white;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .profile-card-sm {
    width: 340px;
    margin: 10px;
  }

  .profile-card {
    width: 337px;
    margin: 10px;
  }
}

@media (max-width: 768px) {
  .profile-page-container {
    flex-direction: column;
  }

  .profile-card-sm {
    width: 410px;
  }

  .profile-card {
    width: 410px;
  }
}

@media (max-width: 480px) {
  .profile-card-sm {
    width: 260px;
  }

  .profile-card {
    width: 260px;
  }

  .profile-card-sm-header {
    flex-direction: column;
  }

  .profile-card-sm-header-link {
    padding: 6px 16px;
    font-size: 15px;
    margin-top: 10px;
  }
}

/*Earnings page*/
.earnings-heading {
  text-align: center;
}

.earnings-card-container {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.earnings-card {
  display: flex;
  padding: 30px;
  box-shadow: 0 0 20px 0 #e4e4e4;
  border-radius: 10px;
  width: 300px;
  margin-left: 10px;
  margin-right: 10px;
}

.earnings-card-icon-container {
  padding: 11px;
  background-color: #384282;
  border-radius: 50%;
  margin-top: auto;
  margin-bottom: auto;
}

.earnings-card-icon {
  filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(202deg)
    brightness(111%) contrast(101%);
  height: 35px;
}

.earnings-card-txt-container {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.earnings-card-heading {
  font-size: 16px;
  font-weight: 200;
}

.earnings-card-text {
  font-size: 29px;
  font-weight: 500;
}

.earnings-bottom-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chart-container {
  width: 930px;
  height: 465px;
}

@media (max-width: 1024px) {
  .chart-container {
    width: 720px;
    display: flex;
    align-items: center;
  }

  .earnings-card {
    padding: 20px;
    width: 214px;
  }

  .earnings-card-icon-container {
    padding: 8px;
  }

  .earnings-card-icon {
    height: 17px;
  }

  .earnings-card-txt-container {
    margin-left: 20px;
  }

  .earnings-card-heading {
    font-size: 13px;
  }

  .earnings-card-text {
    font-size: 17px;
    font-weight: 600;
  }
}

@media (max-width: 768px) {
  .chart-container {
    width: 445px;
    height: 222px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .earnings-card {
    width: 430px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .earnings-card-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .chart-container {
    width: 290px;
    height: auto;
  }

  .earnings-card {
    width: 270px;
    margin-left: 0;
    margin-right: 0;
  }
}

/*LayoutAuthorized*/
.auth-body {
  height: 100%;
}

.authorized-layout {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/*LayoutUnauthorized*/
.unauth-body {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/*Forgot password page*/
/*.fp-card-background-img {
    background-image: url("../img/background-logo-img.svg");
    background-repeat: no-repeat;
    background-position: -10% -136%;
}*/

.fp-header {
  font-size: 20px;
  text-align: center;
}

.fp-card-body {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 35px;
}

.fp-txt {
  text-align: center;
  margin-bottom: 20px;
}

.fp-card-form {
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
  /*border-left: 1px solid var(--lightgrey);*/
}

.fp-label {
  font-weight: 500;
  font-size: 15px;
  color: var(--darkgrey);
  padding-bottom: 5px;
}

.fp-inputfield {
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid var(--lightgrey);
  width: 400px;
}

.fp-error-msg-style ul {
  padding-inline-start: 0;
  margin-bottom: 10px;
  text-align: center;
}

/*@media (max-width: 1024px) {
    .fp-card-background-img {
        background-position: -23% -136%;
    }
}*/

@media (max-width: 768px) {
  /*.fp-card-background-img {
        background-image: none;
    }*/

  .fp-card-form {
    border-left: none;
    padding-top: 20px;
  }

  .fp-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .fp-inputfield {
    width: 250px;
  }

  .fp-card-form {
    padding-right: 0;
    padding-left: 0;
  }

  .fp-txt {
    margin: 0;
  }
}

/*Reset password confirmation page*/
.rp-confirm-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rp-confirm-img {
  width: 125px;
  margin-bottom: 15px;
}

.rp-confirm-heading-txt {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

@media (max-width: 480px) {
  .rp-confirm-img {
    width: 70px;
  }

  .rp-confirm-heading-txt {
    font-size: 24px;
  }
}

/*Email confirmation page*/
.confirm-card {
  background-color: var(--White);
  margin-top: 70px;
  margin-bottom: 70px;
  box-shadow: 0 3px 6px 3px #00000030;
  padding: 20px 40px;
}

.confirm-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--lightgrey);
}

.confirm-img {
  width: 150px;
  margin-bottom: 15px;
}

.confirm-heading-txt {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.confirm-txt {
  font-size: 16px;
  margin-bottom: 15px;
  text-align: center;
}

.confirm-card-footer {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.confirm-footer-txt {
  font-size: 13px;
  text-align: center;
}

.confirm-resend-txt {
  font-weight: 500;
  margin-left: 4px;
  color: var(--LightBlue);
  text-align: center;
}

@media (max-width: 768px) {
  .confirm-card {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .confirm-card-footer {
    flex-direction: column;
  }
}

/*Login Page*/
.recaptcha-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.login-header {
  font-size: 20px;
  text-align: center;
}

.login-card-body {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 35px;
}

.login-card-form {
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
  /*border-left: 1px solid var(--lightgrey);*/
}

.login-inputfield {
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid var(--lightgrey);
  width: 400px;
}

.forgot-password-link {
  margin-top: 5px;
  margin-left: auto;
  font-size: 14px;
}

.login-btn {
  color: var(--White);
  background-color: var(--darkgrey);
  border: none;
  padding: 10px;
  border-radius: 3px;
  margin: auto;
  width: 100px;
}

.sign-up-link-section {
  display: flex;
  margin-top: 20px;
  justify-content: center;
}

.sign-up-link-container {
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid var(--lightgrey);
}

.sign-up-link-txt {
  font-size: 14px;
}

.sign-up-link {
  font-size: 14px;
  color: var(--LightBlue);
  padding-left: 5px;
  font-weight: 500;
}

div.error-msg-style ul {
  padding-inline-start: 0;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .login-inputfield {
    width: 250px;
  }

  .recaptcha-container {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .login-card-form {
    padding-right: 0;
    padding-left: 0;
  }

  .sign-up-link-container {
    flex-direction: column;
  }

  .sign-up-link-txt {
    text-align: center;
  }

  .sign-up-link {
    text-align: center;
  }
}

/*Registration Page*/
.reg-section {
  display: flex;
  height: 100%;
}

.reg-card-container {
  margin-top: auto;
  margin-bottom: auto;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.reg-card {
  background-color: var(--White);
  margin-top: 70px;
  margin-bottom: 70px;
  box-shadow: 0 3px 6px 3px #00000030;
  padding: 40px 40px;
}

.reg-card-header {
  border-bottom: 1px solid var(--lightgrey);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.reg-header {
  font-size: 20px;
}

.reg-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 35px;
}

.reg-card-btn-container {
  margin-bottom: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  padding-right: 30px;
  padding-left: 30px;
}

.reg-card-btn {
  padding: 10px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 8%), 0 6px 20px 0 rgb(0 0 0 / 8%);
  border: none;
  font-size: 20px;
  font-weight: 500;
  height: 170px;
}

.reg-card-btn p {
  margin-bottom: 0;
  margin-top: 5px;
}

.reg-card-btn-active {
  border: 2px solid var(--secondaryGreen);
  color: var(--secondaryGreen);
}

.reg-card-btn-inactive {
  color: var(--grey);
}

.icon-size {
  width: 50px;
}

.active-icon-color-green {
  filter: invert(61%) sepia(49%) saturate(1381%) hue-rotate(40deg)
    brightness(94%) contrast(94%);
}

.inactive-icon-color-grey {
  filter: invert(67%) sepia(3%) saturate(18%) hue-rotate(337deg) brightness(89%)
    contrast(82%);
}

.reg-card-form {
  padding-right: 30px;
  padding-left: 30px;
  /*border-left: 1px solid var(--lightgrey);*/
}

.reg-field-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.reg-label {
  font-weight: 500;
  font-size: 15px;
  color: var(--darkgrey);
  padding-bottom: 5px;
}

.reg-label-star {
  color: #f61111;
}

.reg-inputfield {
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid var(--lightgrey);
}

.reg-checkbox-container {
  margin-bottom: 20px;
}

.reg-label-checkbox {
  color: var(--darkgrey);
  font-size: 13px;
  font-weight: 400;
}

.reg-btn-container {
  display: flex;
}

.reg-btn {
  color: var(--White);
  background-color: var(--darkgrey);
  border: none;
  padding: 10px;
  border-radius: 3px;
  margin: auto;
  width: 100px;
}

.reg-text-danger {
  color: red;
  font-size: 13px;
}
.text-danger1 {
  color: red;
  font-size: 13px;
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!   Targeting Registration classes   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 950px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 720px;
  }

  .reg-card-btn {
    height: 130px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }

  .reg-header {
    text-align: center;
  }

  .reg-card {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .reg-card-body {
    grid-template-columns: 1fr;
  }

  .reg-card-form {
    border-left: none;
    /*border-top: 1px solid var(--lightgrey);*/
    padding-top: 20px;
    margin-top: 20px;
  }

  .reg-btn-container {
    display: flex;
  }

  .reg-btn {
    margin: auto;
  }
}

@media (max-width: 480px) {
  .reg-card {
    padding: 20px;
  }

  .reg-card-btn {
    font-size: 15px;
    height: 100px;
  }

  .icon-size {
    width: 35px;
  }
}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

@media (max-width: 1300px) {
  .main {
    grid-template-columns: 1fr repeat(12, minmax(auto, 80px)) 1fr;
  }

  .contentCollapsedSidebar {
    padding-left: 0px;
  }

  .last-row-card-container {
    grid-column-end: span 6;
  }

  #second-row {
    grid-template-columns: repeat(12, minmax(auto, 80px));
    grid-template-rows: auto auto;
  }

  .fifth-card-container {
    grid-column-end: span 6;
    grid-row-end: span 1;
    width: 100%;
    padding-top: 68%;
  }

  .sixth-card-container {
    grid-column-end: span 6;
    grid-row-end: span 1;
    width: 100%;
    padding-top: 68%;
  }

  .mini-card-container {
    grid-column-end: span 3;
    grid-row-end: span 1;
    width: 100%;
    padding-top: 68%;
  }

  .card-number {
    font-size: 28px;
  }

  /* Sidebar design //////////////////////////////// */
  #sidebar-menu {
    grid-column: span 0;
  }

  #sidebar-menu {
    display: none;
  }

  .logo {
    display: flex;
    width: 175px;
  }

  #logo {
    display: none;
  }

  .logo-container-sm {
    display: block;
    display: flex;
  }

  .logo-container {
    width: auto;
    justify-content: start;
    border-right: none;
  }

  .navbar-standard-logo {
    width: 50%;
  }

  .logo-sm {
    padding-right: 10px;
    padding-left: 5px;
    margin-left: 10px;
  }

  .menu-bar {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: 5px;
  }

  .navbar-menu-bar-button {
    display: block;
  }
  /* /////////////////////////////////////////////// */
}

@media only screen and (max-width: 950px) {
  .main {
    grid-template-columns: 20px repeat(6, 1fr) 20px;
    grid-gap: 20px;
  }

  .content {
    grid-column: 2 / span 6;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 40px;
  }

  #overview {
    grid-column: 1 / span 6;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 40px;
  }

  .content-container-tablepage {
    grid-column: 1 / span 6;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 30px;
  }

  .content-container-cmp-overview {
    grid-column: 1 / span 6;
  }

  .content-container-product-purchase-cart {
    grid-column: 1 / span 6;
  }

  .content-container-product-offerings {
    grid-column: 1 / span 6;
  }

  .header-section {
    grid-column: 1 / span 6;
  }

  .bottom-section {
    grid-column: 1 / span 6;
  }

  .table-container {
    grid-column: 1 / span 6;
  }

  .content-row {
    grid-column: 1 / span 6;
    grid-gap: 40px;
  }

  #first-row {
    grid-template-columns: repeat(6, 1fr);
  }

  #second-row {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
  }

  #third-row {
    grid-template-columns: repeat(6, 1fr);
  }

  .last-row-card-container {
    grid-column-end: span 3;
  }

  .fifth-card-container {
    grid-column-end: span 3;
  }

  .sixth-card-container {
    grid-column-end: span 3;
  }

  .mini-card-container {
    grid-column-end: span 3;
  }

  .card-number {
    font-size: 36px;
  }

  /* Sidebar design //////////////////////////////// */
  #sidebar-menu {
    grid-column: span 0;
  }

  #sidebar-menu {
    display: none;
  }
  /* /////////////////////////////////////////////// */

  .footer-lg {
    display: none;
  }

  .footer-sm {
    display: block;
    padding: 30px;
  }

  .avg-earning-container {
    display: none;
  }

  .search-container-avg-earnings {
    margin-left: auto;
  }
}

@media (max-width: 600px) {
  .main {
    grid-template-columns: 20px repeat(6, 1fr) 20px;
    grid-gap: 20px;
  }

  .sidebar {
    grid-column: span 0;
  }

  .content {
    grid-column: 2 / span 6;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
  }

  #overview {
    grid-column: 1 / span 6;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
  }

  .content-container-tablepage {
    grid-gap: 20px;
  }

  #first-row {
    grid-template-columns: repeat(6, 1fr);
  }

  #second-row {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
  }

  #third-row {
    grid-template-columns: repeat(6, 1fr);
  }

  .content-row {
    grid-column: 1 / span 6;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
  }

  .first-row-card-container {
    grid-column-end: span 6;
  }

  .last-row-card-container {
    grid-column-end: span 6;
  }

  .fifth-card-container {
    grid-column-end: span 6;
  }

  .sixth-card-container {
    grid-column-end: span 6;
  }

  .mini-card-container {
    grid-column-end: span 6;
  }

  /* Footer design */

  .footer-sm {
    padding: 20px;
  }

  .footer-list-one-sm {
    margin-bottom: 30px;
  }

  .footer-list-items-sm {
    margin-right: 30px;
  }

  .footer-link-sm p {
    font-size: 12px;
    font-weight: 200;
  }

  .footer-second-row-sm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    padding-top: 20px;
    padding-bottom: 5px;
  }

  .footer-copyright-sm {
    grid-column-end: span 1;
    margin-left: 0px;
  }

  .footer-second-row-sm a {
    grid-column-end: span 1;
  }

  .privacy-policy {
    float: right;
  }

  .footer-txt-sm {
    margin-right: 0;
  }

  .social-media-icons {
    grid-column-end: span 1;
    display: flex;
  }

  .social-media-icon {
    margin-left: 0;
    margin-right: 5px;
  }

  .first-social-media-icon {
    margin-left: auto;
  }

  /* bottom section (new visitors) */
  .dropdown-nbr-rows {
    position: absolute;
    top: 60px;
  }

  .add-to-table-btn {
    position: absolute;
    top: 55px;
    left: 92%;
  }

  .add-btn-img {
    padding: 0;
  }

  .bottom-section {
    padding-bottom: 70px;
  }
}

@media (max-width: 800px) {
  .content-row {
    grid-gap: 20px;
  }

  #overview {
    grid-gap: 20px;
  }

  .main {
    grid-template-columns: 10px repeat(6, 1fr) 10px;
    grid-gap: 20px;
  }

  /* .search-input {
        width: 270px;
    } */

  .header-section {
    display: grid;
    grid-template-columns: 1fr;
  }

  .search-container-avg-earnings {
    grid-column: 1 / span 1;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
}

@media (max-width: 500px) {
  .main {
    grid-template-columns: 10px repeat(6, 1fr) 10px;
    grid-gap: 10px;
  }

  .sidebar {
    grid-column: span 0;
  }

  .content-row {
    grid-column: 1 / span 6;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
  }

  .first-row-card-container {
    grid-column-end: span 6;
    padding-top: 20%;
  }

  .last-row-card-container {
    grid-column-end: span 6;
    padding-top: 20%;
  }

  .fifth-card-container {
    grid-column-end: span 6;
    padding-top: 20%;
  }

  .sixth-card-container {
    grid-column-end: span 6;
    padding-top: 20%;
  }

  .mini-card-container {
    grid-column-end: span 6;
    padding-top: 20%;
  }

  /* Card design */
  .card-number {
    display: none;
  }

  .card-icon {
    display: none;
  }

  .last-seven-days {
    display: none;
  }

  .card-arrow-first-row {
    display: none;
  }

  /* Search bar*/
  .search-container-button {
    width: auto;
  }

  .search-input {
    width: auto;
  }

  /* page navigation (navbar)*/
  .page-navigation {
    display: none;
  }

  #navbar-buttons {
    margin-left: auto;
  }
}

@media only screen and (min-width: 950px) and (max-width: 1300px) {
  /* Card design */
  .card-sm {
    padding: 10px;
  }

  .card-lg {
    padding: 30px;
  }

  .chart-area {
    width: 70%;
  }

  .card-text-large-card {
    font-size: 16px;
  }

  .chart-card-text {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

@media (max-width: 700px) {
  .header {
    grid-column: 1 / span 1;
    text-align: center;
  }

  .search-container {
    grid-column: 1 / span 1;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
}
/* Breakpoints
* 320 - 480 px (mobile screens)
* 481px — 768px (iPads & tablets)
* 769px — 1024px (small screens like laptop)
* 1025px — 1200px for large screens like Desktops
* 1201px and above for extra large screens like TV */

@media (max-width: 1200px) {
  .seek-driver-btn {
    height: 150px;
    width: 150px;
  }

  .cmp-overview-first-row {
    grid-gap: 15px;
  }
}

@media (max-width: 1024px) {
  .ctrl-panel-card-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .input-container {
    flex-direction: column;
  }

  .input-container-for-checkbox {
    align-items: start;
  }

  .form-label {
    margin-right: auto;
    margin-bottom: 10px;
    text-align: start;
  }

  .header-sektion-tabs-sortby {
    flex-direction: column;
  }

  .sortby-form {
    margin-top: 30px;
  }

  .margin-top-zero {
    margin-top: 0px;
  }

  .show-advanced-settings {
    margin-left: 0px;
  }

  .form-input-date {
    margin-right: auto;
  }

  .cart-total-container {
    /* display: flex; */
    padding-top: 20px;
  }

  .cart-total {
    /* width: 425px;
        margin-right: auto;
        margin-left: auto; */
    margin: 0;
  }
}

@media (max-width: 768px) {
  .ctrl-panel-card-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .cmp-overview-first-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .seek-driver-btn {
    height: 100%;
    width: 100%;
  }

  .form-input {
    width: 400px;
  }

  .small-form-input {
    width: 190px;
  }

  .file-upload-label {
    width: 400px;
  }

  .form-input:read-only {
    /* width: 300px; */
    padding: 5px 5px 5px 0px;
  }

  .multiple-forms label {
    margin-right: auto;
    margin-bottom: 10px;
    text-align: start;
  }

  .product-card-fourth-row-txt {
    font-size: 24px;
  }

  .product-cards-container {
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
  }

  .tab-btn {
    margin-right: 30px;
  }

  .tab-txt {
    font-size: 11px;
  }

  .sortby-sortby {
    height: 30px;
    padding: 5px;
    font-size: 11px;
  }

  .sortby-label {
    width: 55px;
    font-size: 11px;
  }

  .wide-card-body {
    flex-direction: column;
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .wide-card-text-container {
    margin-top: 15px;
  }

  .labels-container {
    padding-left: 20px;
  }

  .labels-txt {
    width: 100px;
  }

  .cart-item-product {
    width: 100px;
  }

  .cart-item-price {
    width: 100px;
  }

  .cart-item-quantity {
    width: 100px;
  }

  .cart-item-subtotal {
    width: 100px;
  }

  .cart-item-container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .menu-bar {
    width: 75%;
  }

  .ctrl-panel-card-container {
    grid-template-columns: 1fr;
  }

  .cmp-overview-first-row {
    grid-template-columns: 1fr;
  }

  .seek-driver-img {
    display: none;
  }

  .seek-driver-btn {
    padding: 10px;
  }

  .footer-list-items-sm {
    margin-right: 15px;
  }

  .edit-heading-container-2 {
    margin: 40px 0 10px 0;
  }

  .form-input {
    width: 230px;
  }

  .small-input-container {
    flex-direction: column;
  }

  .small-form-input {
    width: 230px;
  }

  .file-upload-label {
    width: 230px;
  }

  .form-input:read-only {
    width: 230px;
  }

  .submit-btn {
    width: 100px;
  }

  .input-container-mini {
    display: block;
  }

  .form-input-mini {
    width: 230px;
  }

  .tablinks {
    padding: 5px;
  }

  .tablinks p {
    font-size: 10px;
  }

  .notification p {
    font-weight: 500;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 10px;
  }

  .notification {
    left: 0;
  }

  .product-cards-container {
    grid-template-columns: 1fr auto 1fr;
    grid-gap: 0px;
  }

  .product-card {
    grid-column: 2 / span 1;
    margin-bottom: 30px;
  }

  .product-card-body {
    min-width: 280px;
  }

  .page-content-top {
    display: block;
  }

  .page-heading-txt {
    text-align: center;
    margin-bottom: 15px;
  }

  .sortby-form label {
    margin-left: auto;
  }

  .sortby-form select {
    margin-right: auto;
  }

  .product-card-fourth-row-txt {
    font-size: 27px;
  }

  /* Cabseek */
  .wide-card-main {
    display: grid;
    grid-template-columns: auto auto;
  }

  .tab-btn {
    /*margin-right: 20px;*/
    margin-right: 7px;
  }

  .tab-txt {
    font-size: 8px;
  }

  .tab-amount {
    width: 12px;
    height: 12px;
  }

  .show-advanced-settings {
    margin-bottom: 10px;
  }

  .radio-btn {
    font-size: 13px;
  }

  .radio-btn.one {
    margin-right: 25px;
  }

  .radio-btn.two {
    margin-left: 25px;
  }

  .labels-container {
    padding-left: 10px;
  }

  .labels-txt {
    width: 65px;
    font-size: 10px;
  }

  .cart-item-container {
    padding-right: 10px;
    padding-left: 10px;
  }

  .cart-item-quantity {
    padding-right: 5px;
    padding-left: 5px;
    width: 65px;
  }

  .cart-item-product {
    width: 65px;
  }

  .cart-item-product-txt {
    font-size: 10px;
  }

  .cart-item-product-subtxt {
    font-size: 8px;
  }

  .cart-item-price {
    width: 65px;
    font-size: 8px;
  }

  .cart-item-quantity-txt {
    font-size: 8px;
  }

  .cart-item-subtotal {
    width: 65px;
    font-size: 8px;
  }
}

/* Exchange Location Page (New Design) */
.location-header {
  font-size: 24px;
  font-weight: 400;
}

.location-subheader {
  color: grey;
  font-size: 16px;
}

/*.locations-add-btn {
    background-color: #384282;
    padding: 8px 23px;
    color: white;
    border-radius: 5px;
}*/

.location-cards-container {
  grid-column: 1 / span 12;
}

.location-card {
  padding: 20px 0;
  border-bottom: 1px solid lightgray;
  display: flex;
  align-items: center;
}

.locations-card-icon {
  width: 40px;
  height: 40px;
}

.location-card-txt-container {
  margin-left: 15px;
}

.locations-card-main-txt {
  font-size: 18px;
  font-weight: 600;
}

.locations-card-edit-btn {
  margin-left: auto;
  color: #0a2777;
}

.table-header-row {
  background-color: #f1f1f1;
}

tr.table-row:nth-child(even) {
  background-color: #f9f9f9;
}

/* Shift Page Business User Start  */
.tab-container {
  display: flex;
}

.tab-item {
  border-bottom: none;
  margin-right: 3rem;
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  cursor: pointer;
}

.tab-item.active-tab {
  border-bottom: 4px solid var(--primaryBlue);
}

.tab-item p {
  color: var(--grey);
  text-align: center;
}

.tab-item.active-tab p {
  color: var(--primaryBlue);
}

.tab-item span {
  background-color: var(--grey);
  color: var(--White);
  height: 2rem;
  min-width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0.5rem;
  margin-left: 1rem;
}

.tab-item.active-tab span {
  background-color: var(--primaryBlue);
}

.tab-content {
  display: none;
}

.tab-content.active-tab {
  display: block;
}

.shift-card {
  background-color: #f7f7f7;
  margin-bottom: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.shift-card-header {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--lightgrey);
}

.shift-label-container {
  display: flex;
  align-items: center;
}

.shift-label {
  color: #808080;
}

.shift-card-body {
  display: flex;
}

.shift-card-body-section-1 {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin-right: auto;
  max-width: 970px;
  width: 100%;
}

.shift-card-body-section-2 {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin-right: auto;
  max-width: 1300px;
  width: 100%;
}

.shift-card-body-section-3 {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin-right: auto;
  max-width: 522px;
  width: 100%;
}

.more-btn {
  display: flex;
  color: #808080;
  align-items: center;
  margin-left: 3rem;
}

.more-btn img{
  width: 1.3125rem;
  margin-left: 0.5rem;
}

.active-more-btn img{
  transform: rotate(180deg);
}

.shift-card-footer {
  background-color: var(--primaryBlue);
  color: #e6e6e6;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 0.75rem 1.25rem;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shift-card-footer img {
  width: 1rem;
  margin-right: 0.5rem;
}

.shift-card-countdown {
  color: var(--secondaryGreen);
  background-color: #79b70710;
  border-radius: 5px;
  padding: 0 0.5rem;
}
.shift-dropdown {
  position: relative;
  margin-top: 12px;
}

.shift-dropdown-btn {
  padding: 8px 12px;
  cursor: pointer;
}

.shift-dropdown-menu {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: max-content;
  min-width: 180px;
  max-width: 200px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.shift-dropdown-menu button {
  width: 100%;
  padding: 1rem 0.5rem;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
}

.shift-dropdown-menu button:hover {
  background: #f0f0f0;
}

.shift-dropdown-menu.show {
  display: block;
}

.shift-card-info-container-eh {
  display: flex;
  flex-direction: column;
  align-items: end;
}

/* .shift-card-info-container {
  width: 25%;
} */

.shift-card-info {
  background-color: #19347f15;
  padding: 0.3rem;
  margin-bottom: 0.4rem;
  border-radius: 5px;
  width: max-content;
  font-size: 20px;
}

@media (max-width: 1024px) {
  .shift-card-body-section-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .grid-col-span-2-1024 {
    grid-column: span 2;
  }

  .shift-card-info-container-eh {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .shift-card-info {
    margin-bottom: 0rem;
    margin-right: 0.4rem;
  }
}

@media (max-width: 768px) {
  .tab-item p {
    font-size: 20px;
  }

  .tab-item {
    margin-right: 2rem;
  }

  .shift-card-body {
    flex-direction: column-reverse;
  }

  .shift-card-body-section-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .shift-card-body-section-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .more-btn {
    align-self: end;
  }

  .shift-card-info-container-eh {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .shift-card-info {
    margin-bottom: 0.4rem;
  }

  /* .shift-card-info-container {
    display: flex;
    justify-content: space-between;
  } */
}

@media (max-width: 480px) {
  .tab-container {
    flex-direction: column;
  }

  .tab-item {
    width: 100%;
    padding: 1rem;
    background-color: #f5f5f5;
    margin: 0;
  }

  .tab-item.active-tab {
    border: 4px solid var(--primaryBlue);
    background-color: white;
  }

  .shift-label-container {
    flex-direction: column;
  }

  .shift-label-container p {
    margin-bottom: 1rem;
  }

  .shift-card-body-section-1 {
    grid-template-columns: 1fr;
  }  

  .shift-card-body-section-2 {
    grid-template-columns: 1fr;
  }

  .shift-card-body-section-3 {
    grid-template-columns: 1fr;
  }  

  .grid-col-span-2-1024 {
    grid-column: auto;
  }

  .shift-card-info-container-eh {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .shift-card-info {
    margin-bottom: 0rem;
    margin-right: 0.4rem;
    font-size: 16px;
  }
}

/* Shift Page Business User End  */


/* Shift page business user Popups css start   */
.popup-container {
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: absolute;
  top: 0;
  z-index: 100;
  width: 100%;
  position: fixed;
}

.popup-body {
  width: 400px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  box-sizing: border-box;
  position: relative;
}

.popup-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.popup-message {
  font-size: 22px;
  line-height: 1.5;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.warning {
  text-decoration: underline;
  font-weight: bold;
}

.reason-section {
  margin-bottom: 25px;
}

.reason-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.reason-options {
  display: flex;
  font-size: 20px;
  flex-direction: column;
  gap: 12px;
}

.reason-option {
  display: flex;
  font-size: 20px;
  align-items: center;
  gap: 10px;
}

.reason-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.reason-input:checked {
  border: 6px solid var(--secondaryGreen);
}

.reason-text {
  font-size: 14px;
}

.reason-input-field {
  width: 100%;
  padding: 10px;
  border: 1px solid #000000;
  border-radius: 5px;
  margin-top: 10px;
  box-sizing: border-box;
}
.reason-option input {
  margin-right: 10px;
  width: 16px;
  height: 16px;
}

.reason-input-option {
  width: 100%;
  padding: 10px;
  border: 1px solid #000000;
  border-radius: 5px;
  font-family: inherit;
  box-sizing: border-box;
  margin-top: 10px;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  position: relative;
  bottom: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
}

.button {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  background-color: white;
  color: #333;
  border: 1px solid #000000;
}

.button-cancel {
  background-color: #d50000;
  color: white;
  border: none;
  font-size: 16px;
}

.button-keep {
  background-color: white;
  color: #333;
  border: 1px solid #000000;
  font-size: 18px;
}

.confirmation-text {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}
/* @media (max-width: 768px) {
  .popup-container {
    width: 400px;
  }
}
@media (max-width: 480px) {
  .popup-container {
    width: 300px;
  }
} */

/* Shift page business user Popups css end   */

/*  earning page css start */
/* Earnings Stats */
.earnings-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  width: 240px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #7ab709;
  border-bottom: 2.5px solid #7ab709;
  border-right: 2.5px solid #7ab709;
  height: 109px;
  text-align: center;
  align-items: center;
}

#chart {
  max-width: 1200px;
  margin: 40px auto;
}
.stat-label {
  font-size: 16px;
  color: #666;
  margin: 1rem;
}

.stat-value {
  font-size: 28px;
  font-weight: 600;
  color: #000;
}

/* Divider */
.divider {
  height: 1px;
  background-color: #eee;
  margin: 2rem 0;
}

/* Chart Container */
.chart-container {
  display: flex;
  height: 400px;
  position: relative;
}

/* Y-axis */
.y-axis {
  width: 50px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}

.y-tick {
  font-size: 12px;
  color: #718096;
  position: relative;
  height: 0;
}

.y-tick::after {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  width: 10px;
  height: 1px;
  background-color: #e2e8f0;
}

/* Chart Area */
.chart {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bars-container {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  position: relative;
  border-bottom: 1px solid #e2e8f0;
}

.bar-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end; /* Align bars to bottom */
}

.bar {
  width: 30px;
  background: linear-gradient(to top, #0a2777);
  transition: height 0.5s ease;
  position: relative;
  box-shadow: 0 2px 4px rgba(79, 70, 229, 0.2);
}

.bar:hover {
  opacity: 0.9;
}

.bar-value {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4f46e5;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

/* X-axis */
.x-axis {
  display: flex;
  justify-content: space-between;
  padding-left: 50px;
  margin-top: 10px;
}

.month-label {
  font-size: 12px;
  color: #4a5568;
  font-weight: 500;
  width: 30px;
  text-align: center;
}

.dashboard {
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  margin-bottom: 30px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

/* earning page css end  */

/* seek work page css start */
.seek-box {
  display: flex;
  justify-content: center;
  width: 100%;
}

.time-shift {
  margin-bottom: 1rem;
}

.availability-box {
  position: relative;
  background: white;
  padding: 60px;
  border-radius: 10px;
  width: 529px;
  height: 580px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.availability-box h2 {
  font-size: 28px;
  color: #000000;
  margin-bottom: 1rem;
}

.availability-box p {
  font-size: 18px;
  color: #666666;
}

/* Specific paragraph margins */
.availability-box p:nth-of-type(1) {
  margin-bottom: 2rem;
}

.availability-box p:nth-of-type(2) {
  margin-bottom: 1rem;
}

/* Input styles */
.date-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #000000;
  border-radius: 6px;
  font-size: 20px;
  margin-bottom: 2rem;
}

/* Radio group styles */
.radio-group p {
  margin-bottom: 1rem;
}

.radio-option {
  display: flex;
  align-items: center;
  font-size: 20px;
  margin-bottom: 1rem;
}

.radio-option input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #79b707;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}

.radio-option input[type="radio"]:checked {
  background-color: #79b707;
}

.radio-option input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.seek-work-btn {
  background-color: #0a2777;
  color: white;
  padding: 12px 0;
  border: none;
  border-radius: 8px;
  margin-top: 3rem;
  cursor: pointer;
  font-size: 20px;
  width: 159px;
  height: 57px;
  transition: all 0.3s ease;
}

.seek-work-btn:hover {
  background-color: #072060;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 24px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #000;
}

/* Responsive styles */
@media (max-width: 320px) {
  .availability-box {
    width: 90%;
    height: auto;
    padding: 30px 20px;
  }

  .availability-box h2 {
    font-size: 22px;
  }

  .availability-box p,
  .radio-option {
    font-size: 16px;
  }

  .date-input,
  .seek-work-btn {
    font-size: 16px;
  }

  .seek-work-btn {
    width: 100%;
  }

  .close-btn {
    top: 15px;
    right: 15px;
  }
}

@media (min-width: 321px) and (max-width: 768px) {
  .availability-box {
    width: 90%;
    height: auto;
    padding: 40px 30px;
  }

  .availability-box h2 {
    font-size: 24px;
  }

  .availability-box p,
  .radio-option {
    font-size: 18px;
  }

  .date-input,
  .seek-work-btn {
    font-size: 18px;
  }

  .seek-work-btn {
    width: 100%;
  }

  .close-btn {
    top: 20px;
    right: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .availability-box {
    width: 80%;
    height: auto;
    padding: 50px;
  }

  .availability-box h2 {
    font-size: 26px;
  }

  .availability-box p,
  .radio-option {
    font-size: 18px;
  }

  .date-input,
  .seek-work-btn {
    font-size: 18px;
  }

  .close-btn {
    top: 22px;
    right: 22px;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .availability-box {
    width: 70%;
    height: auto;
    padding: 50px;
  }
}


/* Seek driver page Start */
.seek-driver-box {
  position: relative;
  background: white;
  margin: auto;
  padding: 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 529px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sd-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.suitable-driver {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 500;
  color: #000;
}

.location-info {
  color: #666;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 25px;
  font-size: 20px;
}
.location-info strong {
  color: #666;
  font-weight: 600;
}

.locattion-para {
  font-style: italic;
  margin-top: 16px;
  color: #0a2777;
}

.seek-driver-box label {
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 18px;
  color: #666;
}

/* input[type="text"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 16px;
} */

.input-field-2 {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 16px;
}

.sd-time-shift {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 15px;
  color: #666;
}

.sd-radio-group {
  margin-bottom: 30px;
}

.seek-driver-radio-option {
  margin-bottom: 12px;
  cursor: pointer;
}
.seek-driver-radio-option input {
  margin-right: 10px;
}
.seek-driver-radio-option input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid #79b707;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
  outline: none;
}
.seek-driver-radio-option input[type="radio"]:checked {
  border-color: #79b707;
  background-color: white;
}
.seek-driver-radio-option input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #79b707;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ---------- Seek driver responsive ---------- */
@media (max-width: 1200px) {
  .seek-driver-box {
    max-width: 480px;
    padding: 35px;
  }
  .suitable-driver {
    font-size: 26px;
  }
  .location-info {
    font-size: 19px;
  }
.seek-driver-box label  {
    font-size: 17px;
  }
  .sd-time-shift {
    font-size: 17px;
  }
}

@media (max-width: 1024px) {
  .seek-driver-box {
    max-width: 440px;
    padding: 30px;
  }
  .suitable-driver {
    font-size: 24px;
  }
  .location-info {
    font-size: 18px;
  }
.seek-driver-box label {
    font-size: 17px;
  }
  .sd-time-shift {
    font-size: 17px;
  }
}

@media (max-width: 720px) {
  .seek-driver-box {
    max-width: 380px;
    padding: 25px;
  }
  .suitable-driver {
    font-size: 22px;
  }
  .location-info {
    font-size: 17px;
  }
.seek-driver-box label {
    font-size: 16px;
  }
  .sd-time-shift {
    font-size: 16px;
  }
  .responsive-btn-size {
    font-size: 18px;
    width: 135px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .seek-driver-box {
    max-width: 320px;
    padding: 20px;
  }
  .sd-close-btn {
    top: 15px;
    right: 15px;
  }
  .suitable-driver {
    font-size: 20px;
  }
  .location-info {
    font-size: 16px;
    margin-bottom: 25px;
  }
.seek-driver-box label {
    font-size: 16px;
  }
  .input-field-2 {
    padding: 10px 12px;
    margin-bottom: 18px;
  }
  .sd-time-shift {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .sd-radio-group {
    margin-bottom: 25px;
  }
  .responsive-btn-size {
    font-size: 17px;
    width: 125px;
    height: 45px;
  }
}


/* Seek driver page End */

/* Landing page csss start */
/* Navbar style start*/
.landing-navbar {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 100;
  height: 138px;
  width: 100%;
  background-color: white;
}

.logo img {
  height: 44px;
  width: 151px;
}

.nav-icon {
  cursor: pointer;
  display: none; /* Hidden by default */
  font-size: 24px;
}

.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  text-decoration: none;
  color: #333333;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #072475;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-btn {
  background-color: #0a2777;
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  border: none;
}

.navbar-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Mobile menu styles */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 20px 40px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 15px 0;
  font-size: 16px;
  color: #333333;
  text-decoration: none;
}
.mobile-menu .contact-btn {
  padding: 8px 20px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .nav-links {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .nav-links {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .landing-navbar {
    padding: 20px;
    height: auto;
    min-height: 80px;
  }
  .logo img {
    height: 40px;
    width: auto;
  }

  .nav-links {
    display: none;
  }

  .nav-icon {
    display: block;
  }

  .contact-btn {
    display: none;
  }

  .mobile-menu .contact-btn {
    display: inline-block;
    margin-top: 10px;
    text-align: center;
  }
}

@media (max-width: 320px) {
  .landing-navbar {
    padding: 15px;
  }
}
/* Navbar style end*/

/* Hero section styles */
.hero {
  position: relative;
  max-width: 1440px;
  align-items: center;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0px;
  z-index: 1;
  overflow: hidden;
  background-image: url(/img/hero.jpg);
  background-size: cover;
  margin: 0 auto;
}

.overlay-box-container {
  overflow-x: clip;
}

.overlay-box {
  position: relative;
  width: 110%;
  height: 184px;
  background-color: white;
  border-radius: 50%;
  padding: 50px 20px;
  text-align: center;
  top: -4rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  left: -5%;
}
.overlay-box h1 {
  font-size: 36px;
  color: #333;
  font-weight: bold;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  z-index: 3;
}
.signin-btn {
  background-color: #0a2777;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  margin-top: 2rem;
  font-size: 1rem;
  display: inline-block;
}

.signup-btn {
  padding: 12px 30px;
  border-radius: 10px;
  border: 2px solid #0a2777;
  background-color: #ffffff;
  color: #0a2777;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 2rem;
  font-size: 1rem;
}

.signin-btn:hover {
  background-color: #f8f8f8;
  color: #191619;
  border: 2px solid #072475;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .overlay-box h1 {
    font-size: 32px;
  }
  .hero-buttons {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .overlay-box h1 {
    font-size: 28px;
  }
  .signin-btn,
  .signup-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  .overlay-box h1 {
    font-size: 24px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .signin-btn,
  .signup-btn {
    padding: 8px 20px;
    font-size: 0.8rem;
    margin-top: 1rem;
  }
}

/* find section css start */
.find-section {
  width: auto;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 4rem;
  padding: 60px 20px;
  text-align: center;
  background-color: #f4f7fa;
  margin-bottom: 6rem;
}

.hero-text {
  margin-bottom: 50px;
}

.hero-text h3 {
  font-size: 32px;
  font-weight: 700;
  color: #0a2777;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 20px;
  color: #1a1a1a;
  max-width: 600px;
  margin: 0 auto;
}

.three-box {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-box {
  border-radius: 10px;
  padding: 30px;
  width: 300px;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.feature-box p {
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 500;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .hero-text h3 {
    font-size: 28px;
  }
  .hero-text p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .three-box {
    flex-direction: column;
    align-items: center;
  }
  .feature-box {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 320px) {
  .hero-text h3 {
    font-size: 24px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .feature-box {
    padding: 20px;
  }
  .feature-box p {
    font-size: 16px;
  }
}
/* find-section end */

/* Work Process Section */
.work-process-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 4rem;
}

.work-hero-text {
  margin-bottom: 60px;
}

.work-hero-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0a2777;
  font-weight: 700;
}

.work-hero-text p {
  font-size: 1.25rem;
  color: #1a1a1a;
  max-width: 700px;
  margin: 0 auto;
}

.work-feature-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.work-feature-box {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: left;
  transition: transform 0.3s ease;
  padding: 0;
}
.work-feature-box-1 {
  width: 100%;
  max-width: 400px;
  text-align: left;
  padding: 40px 30px;
}

.work-feature-box:hover {
  transform: translateY(-10px);
}

.work-feature-box img {
  width: 100%;
  height: 300px;
  margin-top: 0px;
  margin-bottom: 2px;
  object-fit: cover;
}

.work-feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #161c2d;
  text-align: left;
  font-weight: 600;
}

.work-feature-box p {
  color: #555;
  text-align: left;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.work-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.work-feature-list li {
  padding: 10px 0;
  color: #555;
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
}

.work-feature-list li:before {
  content: "•";
  color: #555;
  font-size: 1.8rem;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.work-action-btn {
  background: #072475;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  align-items: start;
  cursor: pointer;
  transition: all 0.3s ease;
}

.work-action-btn:hover {
  background: #072475;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
  .work-process-section {
    padding: 50px 20px;
    margin-bottom: 10rem;
  }
  .work-feature-box img {
    height: 280px;
  }
}

@media (max-width: 1024px) {
  .work-process-section {
    padding: 40px 15px;
    margin-bottom: 8rem;
  }
  .work-hero-text {
    margin-bottom: 50px;
  }
  .work-feature-box img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .work-process-section {
    padding: 30px 15px;
    margin-bottom: 6rem;
  }
  .work-hero-text h3 {
    font-size: 1.8rem;
  }
  .work-hero-text p {
    font-size: 1.1rem;
  }
  .work-feature-container {
    gap: 20px;
  }
  .work-feature-box img {
    height: 220px;
  }
}

@media (max-width: 320px) {
  .work-process-section {
    padding: 20px 10px;
    margin-bottom: 4rem;
  }
  .work-hero-text {
    margin-bottom: 40px;
  }
  .work-hero-text h3 {
    font-size: 1.6rem;
  }
  .work-hero-text p {
    font-size: 1rem;
  }
  .work-feature-box {
    max-width: 100%;
  }
  .work-feature-box img {
    height: 200px;
  }
  .work-feature-box-1 {
    padding: 30px 20px;
  }
}

.work-feature-box {
  overflow: hidden;
}
.work-feature-box img {
  margin-top: 0;
  margin-bottom: 0;
  display: block;
}

/* video section start */

.media-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
  margin-bottom: 4rem;
}

.media-container video {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
/* video sec end */

/* ===============================
   READY TO JOIN COMPONENT STYLES
================================= */

.ready-to-join {
  background: url("/img/rd.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  height: 500px;
  overflow: hidden;
  margin-bottom: 4rem;
}

.ready-to-join .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.ready-to-join h2 {
  font-size: 2.5rem;
  margin-top: 40px;
  margin-bottom: 80px;
}

.cards {
  display: flex;
  flex-direction: row;
  gap: 3.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #ccc;
  padding: 30px;
  max-width: 280px;
  width: 100%;
  color: white;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 126px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
}

.card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  text-align: left;
}

.card p {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: left;
}

.card button {
  background-color: #fff;
  color: #000;
  border: none;
  height: 40px;
  padding: 4px;
  width: 40px;
  border-radius: 6px;
  cursor: pointer;
}

.card button .img-r {
  height: 30px;
  width: 30px;
}

.r-box {
  display: flex;
  flex-direction: row;
  gap: 4rem;
}

.card button:hover {
  background-color: #ddd;
}

/* ===============================
   RESPONSIVE MEDIA QUERIES
================================= */

/* Medium screens (laptops/tablets landscape) */
@media (max-width: 1024px) {
  .card {
    max-width: 280px;
  }
}

/* Tablets and smaller devices */
@media (max-width: 768px) {
  .ready-to-join {
    height: auto;
  }

  .ready-to-join .overlay {
    padding: 30px 20px;
  }

  .ready-to-join h2 {
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .cards {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 40%;
    padding: 25px;
  }

  .r-box {
    gap: 3rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .ready-to-join {
    height: auto;
  }

  .ready-to-join h2 {
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .card {
    max-width: 60%;
    padding: 20px;
  }

  .r-box {
    gap: 2rem;
    flex-wrap: wrap;
  }
}

/* ready to join css end */

/* foooter css start */
.landing-footer {
  position: relative;
  bottom: 0;
  width: 100%;
  color: #1a1a1a;
  background-color: #f9f9f9;
  padding: 40px 0 20px;
  border-bottom: 4px solid #79b707;
  align-items: center;
  justify-content: center;
}

.landing-footer-container {
  margin: 0 auto;
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 4rem;
}
.left-box {
  display: flex;
  flex-direction: column;
  width: 40%;
}
.img-box img {
  height: 30px;
}

.text-box {
  margin-top: 1rem;
  font-size: 16px;
  line-height: 1.5;
  color: #656565;
  margin-bottom: 1.5rem;
}

.icon-box {
  display: flex;
  gap: 15px;
}

.icon-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #191619;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s;
}

.icon-box a:hover {
  background-color: #79b707;
}

.right-box {
  display: flex;
  gap: 12rem;
}

.box-1,
.box-2 {
  display: flex;
  flex-direction: column;
}

.box-1 h3,
.box-2 h3 {
  font-size: 17.15px;
  font-weight: 600;
  margin-left: 2rem;
  margin-bottom: 1rem;
  color: #000000;
}

.box-1 ul,
.box-2 ul {
  list-style: none;
}

.box-1 li,
.box-2 li {
  margin-bottom: 0.8rem;
  font-size: 16px;
  color: #656565;
  cursor: pointer;
  transition: color 0.3s;
}

.box-2 li .fas {
  color: #0a2777;
  margin-right: 0.5rem;
}

hr {
  border: none;
  height: 1px;
  background-color: #1916196b;
  margin: 30px auto;
  max-width: 1200px;
}

.bottom-footer {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 16px;
  color: #000000;
}

.right-corner {
  display: flex;
  gap: 20px;
}

.right-corner a {
  color: #000000;
  text-decoration: underline;
  transition: color 0.3s;
}

.right-corner div {
  width: 1px;
  background-color: #333333;
}

@media (max-width: 1200px) {
  .landing-footer-container {
    margin: 20px 30px;
    gap: 3rem;
  }
  .right-box {
    gap: 8rem;
  }
}

@media (max-width: 1024px) {
  .landing-footer-container {
    margin: 20px 25px;
    gap: 2.5rem;
  }
  .right-box {
    gap: 6rem;
  }
}

@media (max-width: 768px) {
  .landing-footer-container {
    flex-direction: column;
    gap: 2rem;
    margin: 20px;
  }
  .left-box {
    width: 100%;
  }
  .right-box {
    flex-direction: row;
    gap: 4rem;
    width: 100%;
    justify-content: space-between;
  }
  .box-1,
  .box-2 {
    width: 45%;
  }
}


@media (max-width: 420px) {
  .landing-footer-container {
    margin: 20px 15px;
  }
  .right-box {
    flex-direction: column;
    gap: 1rem;
  }
  .box-1,
  .box-2 {
    width: 100%;
  }
  .bottom-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .right-corner {
    flex-direction: column;
    gap: 0.5rem;
  }
  .right-corner div {
    display: none;
  }
}
/* foooter css end */

/* dashboard css start */

nav {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

nav .logo img {
  height: 40px;
}

.right-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.profile-icon {
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.user-menu {
  position: relative;
}

.user-menu button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 50px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 240px;
  z-index: 1001;
  padding: 10px 0;
}

.dropdown.show {
  display: block;
}

.user-info {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 5px;
}

.user-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.dropdown-section {
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-section:last-child {
  border-bottom: none;
}

.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  cursor: pointer;
}

.header-left {
  display: flex;
  align-items: center;
}

.dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.dropdown-header.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  padding-left: 10px;
}

.dropdown-content.show {
  display: block;
}

.dropdown a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: background 0.2s;
}

.dropdown a:hover {
  background: #f8f8f8;
}

.icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.logout {
  color: #ff4d4f !important;
}
/* Base styles (mobile-first approach) */
.welcome {
  font-size: 18px;
  margin-bottom: 8px;
  color: #000000;
}

.heading {
  color: #79b707;
  font-size: 24px;
  font-weight: 500;
}

.para {
  font-size: 16px;
  margin-top: 0.8rem;
  color: #000000;
}

.dashboard-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

.d-card {
  background: white;
  box-shadow: 0 5px 5px -3px rgba(172, 170, 170, 0.893);
  padding: 15px;
  height: auto;
  min-height: 120px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.d-card .icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.d-card p {
  color: #6a6a6a;
  font-size: 18px;
  display: flex;
}

.d-card h2 {
  color: #79b707;
  font-size: 44px;
  margin: 0;
  margin-top: 6px;
}

.card-data {
  display: flex;
  align-items: center;
}

.seek-button {
  margin-top: 2rem;
  background: #002b80;
  color: white;
  height: 60px;
  width: 100%;
  max-width: 289.71px;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.seek-button .btn-icon {
  width: 32px;
  height: 32px;
  opacity: 1;
  margin-right: 0.8rem;
}

/* Media Queries */
@media (min-width: 480px) {
  .welcome {
    font-size: 22px;
  }

  .heading {
    font-size: 28px;
  }

  .para {
    font-size: 19px;
  }

  .dashboard-cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .d-card {
    width: calc(50% - 10px);
    height: 136px;
  }

  .seek-button {
    height: 70px;
    font-size: 28px;
  }

  .seek-button .btn-icon {
    width: 38px;
    height: 38px;
  }
}

@media (min-width: 1024px) {
  .welcome {
    font-size: 24px;
  }

  .heading {
    font-size: 30px;
  }

  .para {
    font-size: 20px;
  }

  .dashboard-cards {
    flex-wrap: nowrap;
  }

  .d-card {
    width: auto;
    flex: 1;
  }

  .seek-button {
    height: 78px;
    font-size: 30.24px;
  }

  .seek-button .btn-icon {
    width: 42px;
    height: 42px;
  }
}

.section-title {
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: bold;
}

/* .shift-card {
  background: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
} */

.shift-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.shift-info {
  margin-top: 10px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.shift-info div {
  font-size: 16px;
}

.matched {
  color: green;
  font-weight: bold;
}

.cancel {
  color: red;
  text-decoration: none;
}

.d-tabs-header {
  margin-top: 4rem;
  display: flex;
  gap: 6rem;
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 20px;
}

.d-tab {
  padding: 10px 0px;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  color: #6a6a6a;
  display: flex;
  margin: 0;
  align-items: center;
  gap: 4px;
}

.d-tab.active {
  color: #0a2777;
}

.tab-count {
  background-color: #f5f5f5;
  color: black;
  display: none;
  border-radius: 50%;
  width: 22px;
  border: 1px solid #29292929;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.tab.active .tab-count {
  background-color: #f5f5f5;
}

.tab:not(.active) .tab-count {
  background-color: #f5f5f5;
  border-color: #100f0f;
}

@media (min-width: 1200px) {
  .welcome {
    font-size: 26px;
  }

  .heading {
    font-size: 32px;
  }

  .para {
    font-size: 22px;
  }

  .dashboard-cards {
    margin: 50px 0;
  }
}

@media (max-width: 780px) {
  .d-tabs-header {
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .d-tabs-header {
    flex-direction: column;
    border-bottom: none;
    gap: 6px;
    margin-top: 30px;
  }

  .d-tab {
    width: 100%;
    text-align: left;
    padding: 12px 15px;
    font-size: 16px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .d-tab.active {
    border-bottom: none;
    border: 3px solid var(--primaryBlue);
    position: relative;
    padding-left: 15px;
  }
}
/* dashbaord css end */






/* popup css start */

/* coupoun css start */


 
.popup-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-box {
  background: white;
  width: 588px;
  height: 296px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.popup-box p {
  width: 391px;
  height: 38px;
  color: #000000;
  font-size: 22px;
  margin-bottom: 40px;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #888;
  cursor: pointer;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cancel-btn,
.buy-btn {
  width: 192px;
  height: 57px;
  font-size: 22px;
  border-radius: 6px;
  cursor: pointer;
}

.cancel-btn {
  background-color: white;
  border: 1.5px solid #002b8c;
  color: #002b8c;
}

.buy-btn {
  background-color: #002b8c;
  border: none;
  color: white;
}
/* coupon popup css end */




/* Errorpopup 1 Start */

.error-pop-upbox {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin: auto;
  max-width: 500px;
  width: 60%;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.e-close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}

.e-close-btn:hover {
  color: #666;
}

.error-img {
  margin: 20px 0;
}

.error-heading {
  color: #000000;
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.error-para {
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 21px;
  font-weight: 400;
}

.error-btn-grp {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  margin-top: 25px;
}

.error-btn-grp button {
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 21px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1.3px solid #d32f2f;
  min-width: 200px;
  height: 56px;
  font-weight: 500;
  box-sizing: border-box;
}

.error-btn-grp button {
  background-color: #e80000;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-btn-grp button:hover {
  background-color: white;
  color: #e80000;
}

.error-btn-grp button:first-child {
  background-color: white;
  color: #e80000;
  border: 1.3px solid #e80000;
}
.error-btn-grp button:first-child:hover {
  background-color: #e80000;
  color: white;
}

.error-btn-grp button:last-child {
  background-color: #e80000;
  color: white;
  border: 1.3px solid #e80000;
}
.error-btn-grp button:last-child:hover {
  background-color: white;
  border-color: #b71c1c;
  color: #e80000;
}

@media (max-width: 1200px) {
  .error-pop-upbox {
    margin: 10rem auto;
    max-width: 550px;
    padding: 25px;
  }

  .error-para,
  .error-btn-grp button {
    font-size: 19px;
  }
}

@media (max-width: 1024px) {
  .error-pop-upbox {
    margin: 8rem auto;
    max-width: 500px;
    padding: 22px;
  }

  .error-heading {
    font-size: 23px;
  }

  .error-para {
    font-size: 18px;
  }

  .error-btn-grp button {
    font-size: 17px;
    height: 50px;
    padding: 14px 20px;
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .error-pop-upbox {
    margin: 5rem auto;
    padding: 18px;
    max-width: 90%;
  }

  .error-img {
    margin: 15px 0;
  }

  .error-heading {
    font-size: 21px;
    margin-bottom: 12px;
  }

  .error-para {
    font-size: 17px;
  }

  .error-btn-grp button {
    font-size: 16px;
    height: 46px;
    padding: 4px 8px;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .error-pop-upbox {
    margin: 3rem auto;
    padding: 15px;
    width: 95%;
  }

  .e-close-btn {
    font-size: 26px;
    top: 8px;
    right: 10px;
  }

  .error-heading {
    font-size: 20px;
  }

  .error-para {
    font-size: 16px;
  }

  .error-btn-grp {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .error-btn-grp button {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    height: 44px;
    justify-content: center;
  }
}

/* Errorpopup 1 and 2 End */

/* SuccessPopup Start */
.success-pop-upbox {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin: auto;
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.s-close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #999;
}
.s-close-btn:hover {
  color: #666;
}

.success-img {
  margin-bottom: 20px;
  margin-top: 20px;
}

.i-heading {
  color: #000000;
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.succes-para {
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 21px;
  font-weight: 400;
}

.s-p-3 {
  font-size: 20px;
}

.succes-btn-grp {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  margin-top: 25px;
}

.succes-btn-grp button {
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 21px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1.2px solid var(--primaryBlue);
  min-width: 200px;
  height: 56px;
  font-weight: 500;
  box-sizing: border-box;
}

.succes-btn-grp button:first-child {
  background-color: white;
  color: var(--primaryBlue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.succes-btn-grp button:last-child {
  background-color: var(--primaryBlue);
  color: white;
  text-align: left;
  padding-left: 24px;
  display: inline-flex;
  align-items: center;
}

.succes-btn-grp button:first-child:hover {
  background-color: var(--primaryBlue);
  color: white;
}

.succes-btn-grp button:last-child:hover {
  background-color: white;
  border-color: var(--primaryBlue);
  color: var(--primaryBlue);
}

.succes-heading {
  color: #000000;
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 500;
}

.s-p-2 {
  color: var(--primaryBlue);
  font-size: 20px;
  font-style: italic;
}

@media (max-width: 1200px) {
  .success-pop-upbox {
    margin: 10rem auto;
    max-width: 550px;
    padding: 25px;
  }

  .succes-para,
  .s-p-2,
  .succes-btn-grp button {
    font-size: 19px;
  }

  .s-p-3 {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .success-pop-upbox {
    margin: 8rem auto;
    max-width: 500px;
    padding: 22px;
  }

  .i-heading {
    font-size: 23px;
  }

  .succes-heading {
    font-size: 23px;
  }

  .succes-para,
  .s-p-2 {
    font-size: 18px;
  }

  .s-p-3 {
    font-size: 18px;
  }

  .succes-btn-grp button {
    font-size: 17px;
    height: 50px;
    padding: 14px 20px;
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .success-pop-upbox {
    margin: 5rem auto;
    padding: 18px;
    max-width: 90%;
  }

  .success-img {
    margin: 15px 0;
  }

  .i-heading {
    font-size: 21px;
    margin-bottom: 12px;
  }

  .succes-heading {
    font-size: 21px;
    margin-bottom: 12px;
  }

  .succes-para,
  .s-p-2 {
    font-size: 17px;
  }

  .s-p-3 {
    font-size: 17px;
  }

  .succes-btn-grp button {
    font-size: 16px;
    height: 46px;
    padding: 12px 16px;
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  .success-pop-upbox {
    margin: 3rem auto;
    padding: 15px;
    width: 95%;
  }

  .succes-heading {
    font-size: 20px;
  }

  .s-close-btn {
    font-size: 26px;
    top: 8px;
    right: 10px;
  }

  .i-heading {
    font-size: 20px;
  }

  .succes-para,
  .s-p-2 {
    font-size: 16px;
  }

  .s-p-3 {
    font-size: 16px;
  }

  .succes-btn-grp {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .succes-btn-grp button {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    height: 44px;
    justify-content: center;
  }

  .succes-btn-grp button:last-child {
    text-align: center;
    padding-left: 12px;
  }
}

/* SuccessPopup End */