/* Dimming overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 99;
}

/* Popup container */
#popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 30px;
  border-radius: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 100;
  width: 300px;
  text-align: center;
}

/* Trigger button */
#openPopup {
  margin: 50px;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 0;
}

/* Close button */
.closeBtn {
  margin-top: 20px;
  padding: 6px 14px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

@media screen and (max-width: 993px) {
  /* Shared Styles for both Message and Error */
.message, .error {
  display: flex;
  position: absolute;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-content: center;
  font-size: 10px; /* Note: 10px is quite small; consider 12px-14px for readability */
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  
  /* Animation: name | duration | timing-function | delay | fill-mode */
  animation: fadeOut 3s ease-in-out 10s forwards;
}

/* Specific Styles */
.message {
  color: green;
  background-color: #e8f5e8; /* Adding a light background improves UI visibility */
}

.error {
  color: red;
  background-color: #ffebee;
}

/* The Fade-Out Logic */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden; /* Ensures the element doesn't block clicks after fading */
  }
}

  .hl3 {
    display: block;
    width: 100%;
    height: 4px;
    margin: 0;
    border-radius: 0;
    box-sizing: border-box;
    background: #f2f2f2;
  }

  .new_wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .why-luminaskies-about .new_wrapper .top .right #ads {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .why-luminaskies-about .new_wrapper .top .right #ads img {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-radius: 20px;
  }
  .new_wrapper .user-dashboard-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 10px;
  }

  .new_wrapper .user-dashboard-wrapper h3 {
    font-size: 24px;
    font-family: "TripGeom-Bold", sans-serif;
    /*margin: 0px 0 30px 0;*/
    margin: 0;
    padding: 0;
    width: 100%;
    color: #fff;
  }

  /*.new_wrapper .user-dashboard-wrapper h3::after {
    display: inline-flex;
    position: relative;
    background-color: #999;
    width: 100%;
    height: 3px;
    content: "";
  }*/

  .new_wrapper .user-dashboard-wrapper p {
    font-size: 14px;
    font-family: "TripGeom-Regular", sans-serif;
    margin: 0;
    padding: 10px 0;
  }

  .new_wrapper .user-dashboard-wrapper .top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .new_wrapper .user-dashboard-wrapper .top .left {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: space-between;
    align-items: center;
    width: 100%;
  }

  .new_wrapper .user-dashboard-wrapper .top .left h2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    color: #ccc;
    font-size: 12px;
    margin: 0;
    justify-content: flex-end;
  }

  .new_wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    background-position-x: center;
    background-position-y: top;
    
    /* Combined Gradient and Image */
    background-image: 
        linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 10%), 
        url("../images/jpg/dashbord-bg.jpg");
        
    background-repeat: no-repeat;
    background-size: contain;
    padding: 10px;
  }

  .new_wrapper .top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding: 20px 0 0 0;
  }

  .new_wrapper .top .left {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
  }

  .new_wrapper .top .left img {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 50px;
    height: 50px;
    background-color: #ccc;
    border: #ff6600 solid 2px;
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
  }

  .new_wrapper .top .right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
  }

  .new_wrapper .top .right .wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    align-content: space-between;
    margin: 10px 0 0 0;
    padding: 12px;
    background-color: #051039;
    border-radius: 10px 10px 0 0;
  }

  .new_wrapper .top .right .wrap a {
    display: flex;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    padding: 0;
    margin: 0;
  }

  .new_wrapper .top .right .wrap a.active {
    display: flex;
    text-decoration: none;
    color: #ff6600;
    font-size: 13px;
    padding: 0;
    margin: 0;
    font-family: "TripGeom-Regular", sans-serif;
  }

  .new_wrapper .top h2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    font-size: 12px;
  }

  .new_wrapper .top .left h2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    font-size: 12px;
    align-content: flex-end;
    justify-content: right;
    color: #ff6600;
    font-style: italic;
  }

  .new_wrapper .top .left h2 span {
    display: flex;
    color: #fff;
    font-size: 12px;
    margin: 0 0 0 5px;
    width: 100%;
    align-content: flex-end;
    justify-content: right;
    font-style: normal;
  }

  .new_wrapper .user-dashboard-wrapper .top p {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
  }

  .new_wrapper .user-dashboard-wrapper .top p a {
  }

  .new_wrapper .user-dashboard-wrapper .left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .new_wrapper .user-dashboard-wrapper .left .wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .new_wrapper .user-dashboard-wrapper .left .wrapper h2 {
    font-size: 18px;
    font-weight: 700;
    font-family: "TripGeom-Regular", sans-serif;
    margin: 0 0 10px 0;
    padding: 0;
    width: 100%;
  }

  .new_wrapper .user-dashboard-wrapper .left .wrapper .wrapper {
    display: flex;
    border-radius: 0;
    background-color: #f2f2f2;
    margin: 0 auto 10px auto;
  }

  .profile-pic {
    display: flex;
    border-radius: 0;
    justify-content: center;
    align-items: center;
    background-image: url("../images/svg/default-user.svg");
    background-repeat: no-repeat;
    background-position-x: 50%;
    background-position-y: 50%;
    background-size: cover;
    width: 160px;
    height: 160px;
    background-clip: border-box;
    border-radius: 0;
    margin: 20px auto;
  }

  .new_wrapper .user-dashboard-wrapper .left .wrapper img {
    width: 100%;
    height: auto;
    margin: 40px auto;
    padding: 0;
    font-family: "TripGeom-Regular", sans-serif;
    font-size: 10px;
    text-align: center;
  }

  .new_wrapper .user-dashboard-wrapper .left .wrapper p {
    font-size: 14px;
    font-family: "TripGeom-Regular", sans-serif;
    margin: 0;
    padding: 10px 0;
    width: 100%;
  }

  .new_wrapper .user-dashboard-wrapper .left .wrapper form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 10px;
  }

  .new_wrapper .user-dashboard-wrapper .left .wrapper form button {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .new_wrapper .user-dashboard-wrapper .left .wrapper form .wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
    row-gap: 10px;
    background-color: #f2f2f2;
    border-radius: 0;
  }

  .add-margin {
    margin: 10px 0 !important;
  }

  .wrap-it-well {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    align-content: space-between;
    border-bottom: solid 1px #dbd !important;
    padding: 0 0 10px 0;
  }

  .wrap-it-well label {
    color: #ff6600;
    font-size: 12px;
    width: 40%;
  }

  .wrap-it-well input[type="text"],
  .wrap-it-well input[type="date"] {
    font-size: 14px;
    padding: 0;
    margin: 0;
    width: 60%;
    border: none !important;
    background-color: transparent !important;
    font-family: "TripGeom-Regular", sans-serif !important;
    text-transform: capitalize;
  }

  .wrap input[type="file"] {
    font-size: 14px;
    padding: 0;
    margin: 0 auto;
    width: 95%;
    border-radius: 0;
    line-height: 32px;
    /*border: solid 3px #666 !important;*/
    background-color: #666 !important;
    color: #fff;
    font-family: "TripGeom-Regular", sans-serif !important;
  }

  .add-b-margin-10 {
    margin: 0 0 10px 0;
  }

  .wrap-it-well input[type="email"] {
    font-size: 14px;
    padding: 0 0 0 5px;
    margin: 0;
    width: 60%;
    border: none !important;
    border-radius: 0;
    font-family: "TripGeom-Regular", sans-serif !important;
    color: #fff5ee;
    background-color: #999;
    text-overflow: ellipsis;
  }

  .locked {
    background-image: url("../images/svg/padlock.svg");
    background-repeat: no-repeat;
    background-position-x: 96%;
    background-position-y: 50%;
    background-size: 10px 10px;
  }

  .wrap-it-well select {
    font-size: 14px;
    padding: 0;
    margin: 0;
    width: 70%;
    border: none !important;
    background-color: transparent !important;
    font-family: "TripGeom-Regular", sans-serif !important;
  }

  .user-dashboard-wrapper .left h3 {
    font-size: 18px;
    font-weight: 700;
    font-family: "TripGeom-Regular", sans-serif;
    /*margin: 0 0 10px 0;*/
    padding: 10px;
    color: #fff;
    background-image: linear-gradient(to right, #ff0000, #ff6600);
  }

  .user-dashboard-wrapper .left .deal-box-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .user-dashboard-wrapper .left .deal-box-wrapper h3 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    font-size: 18px;
    font-family: "TripGeom-Regular", sans-serif;
    margin: 0 0 5px 0;
    padding: 10px;
    justify-content: space-between;
    align-content: space-between;
    background-image: linear-gradient(to right, #051039, #4e566f);
    border-radius: 10px 10px 0 0;
  }

  /*.user-dashboard-wrapper .left .deal-box-wrapper h3::after,
  .user-dashboard-wrapper .left h3::after {
    display: inline-flex;
    position: relative;
    background-color: #999;
    width: 100%;
    height: 3px;
    content: "";
    margin: 5px 0 0;
  }*/

  .user-dashboard-wrapper .left .deal-box-wrapper p {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    font-family: "TripGeom-Regular", sans-serif;
    font-size: 14px;
    margin: 0 0 10px 0;
  }

  .user-dashboard-wrapper form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
    row-gap: 10px;
    background-color: #f2f2f2;
    border-radius: 0;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .user-dashboard-wrapper form select,
  .user-dashboard-wrapper form input[type="date"] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 0;
    width: 60%;
    background-color: transparent;
    border: none !important;
    /*border: solid 1px #dbd !important;*/
    padding: 8px 0;
  }

  #lite-style {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }

  #lite-style form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 0 !important;
    border-radius: 0;
    width: 100%;
    background-color: #fff5ee;
    /*border: solid 1px #ff6600 !important;*/
  }

  #lite-style form p {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    font-family: "TripGeom-Regular", sans-serif;
    font-size: 14px;
    margin: 0 0 5px 0;
  }

  #lite-style form select {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    font-family: "TripGeom-Regular", sans-serif;
    font-size: 14px;
    margin: 0 0 5px 0;
    padding: 5px 2px;
  }

  #lite-style form input[type="text"],
  #lite-style form input[type="number"],
  #lite-style form input[type="email"],
  #lite-style form input[type="password"],
  #lite-style form input[type="date"],
  #lite-style form input[type="username"] {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 8px;
    border-radius: 0;
    background-color: #fff;
    border: solid 1px #dbd !important;
    width: 100%;
    font-family: "TripGeom-Regular", sans-serif !important;
    font-size: 13px;
  }

  #lite-style form input[type="file"] {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 5px 8px;
    border-radius: 0;
    background-color: #fff;
    border: solid 1px #dbd !important;
    border-radius: 2px;
    width: 100%;
    font-family: "TripGeom-Regular", sans-serif !important;
    font-size: 13px;
    margin: 0 0 5px 0;
  }

  #lite-style form select {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 0;
    width: 100%;
    background-color: transparent;
    border: none !important;
    border: solid 1px #dbd !important;
    background-color: #fff;
    padding: 10px;
    font-family: "TripGeom-Regular", sans-serif !important;
    font-size: 13px;
    text-overflow: ellipsis;
  }

  #lite-style form button[type="submit"] {
    display: flex;
    flex-direction: row;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    padding: 5px 10px;
    transition: background-color 0.2s ease;
    box-sizing: border-box;
    font-size: 13px;
    font-family: "TripGeom-Regular", sans-serif;
    outline: none;
    width: auto;
    text-align: center;
    align-content: center;
    justify-content: center;
    text-decoration: none;
    line-height: normal;
    font-weight: normal;
  }

  #lite-style form button[type="submit"]:hover {
    background-color: #008000;
    text-decoration: none;
    color: #fff !important;
    transition: all 0.3s ease 0s;
    box-shadow: var(--shadow-medium);
  }

  /*LITE 2 Starts*/
  #lite-style2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 10px;
    background-color: #f2f2f2;
    border-radius: 0 0 10px 10px;
  }

  #lite-style2 h2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    font-size: 14px;
    font-family: "TripGeom-Regular", sans-serif;
    margin: 0 0 5px 0;
    padding: 5px;
    border-radius: 2px;
    background-color: #999;
    color: #fff;
  }

  #lite-style2 .wrap-it-well {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  #lite-style2 p {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 0;
    width: 100%;
    font-family: "TripGeom-Regular", sans-serif !important;
    font-size: 13px;
    margin: 0;
  }

  #lite-style2 a {
    display: flex;
    flex-direction: row;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-sizing: border-box;
    font-size: 13px;
    font-family: "TripGeom-Regular", sans-serif;
    outline: none;
    padding: 5px 10px;
    text-align: center;
    align-content: center;
    justify-content: center;
    text-decoration: none;
  }

  #lite-style2 a:hover {
    background-color: #008000;
    text-decoration: none;
    color: #fff !important;
    transition: all 0.3s ease 0s;
    box-shadow: var(--shadow-medium);
  }
  /*lite 2 ends*/

  .user-dashboard-wrapper .left .deal-box-wrapper .deal-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
    align-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 0;
    padding: 10px;
    margin: 0 0 10px 0;
  }

  .deal-box img {
    display: flex;
    border-radius: 0;
    width: 20%;
  }

  .deal-box .details {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0 0 0 10px;
    width: 80%;
    justify-content: space-between;
    align-content: space-between;
  }

  .deal-box .details .left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    width: 80%;
  }

  .deal-box .details .left h2 {
    font-family: "TripGeom-Bold", sans-serif;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 12px;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .deal-box .details .left h2 span {
    font-family: "TripGeom-Regular", sans-serif;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    font-size: 10px;
    font-weight: 200;
    padding: 0;
    width: 100%;
  }

  .deal-box .details .left h3 {
    font-family: "TripGeom-Regular", sans-serif;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    font-size: 10px;
    font-weight: 400;
    color: #ff6600;
  }

  .deal-box a {
  }

  .why-luminaskies-about .user-dashboard-wrapper .adsbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 0;
    border: solid 1px #ddd;
  }

  .why-luminaskies-about .user-dashboard-wrapper .adsbox #ads {
    width: 100%;
    height: auto;
  }

  .why-luminaskies-about .user-dashboard-wrapper .adsbox #ads img {
    width: 100%;
    height: auto;
  }

  .hidden-xs {
    display: none !important;
  }

  /*.hidden-lg {
    display: none !important;
  }*/

  .user-dashboard-wrapper .right .wrapper form .wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
    margin: 0 0 10px 0;
    row-gap: 10px;
    background-color: #f2f2f2;
    border-radius: 0;
  }

  /*USERDASH TAB STARTS*/
  .tab-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 0;
  }

  .tab-heads {
    display: flex;
    background: #f2f2f2;
  }

  .tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: background 0.3s, border-bottom 0.3s;
  }

  .tab.active {
    background: #007bff;
    color: white;
    border-bottom: 2px solid #051039;
  }

  .tab h2 {
    margin: 0;
    font-size: 16px;
  }

  .tab-selection {
    display: none;
    padding: 20px;
    background: #fff;
  }

  .tab-selection.active {
    display: block;
  }

  .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .wrap img {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
  }
  /*USERDASH TAB ENDSS*/
}

@media screen and (min-width: 992px) and (max-width: 5000px) {
  .hl3 {
    display: block;
    width: 100%;
    height: 4px;
    margin: 0 0 20px 0;
    border-radius: 0;
    box-sizing: border-box;
    background-image: linear-gradient(
      to right,
      #051039,
      #051039,
      #000066,
      #051039,
      #051039,
      #000066,
      #051039
    );
  }

  #lite-style {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }

  #lite-style form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 0;
    width: 100%;
    background-color: #fff5ee;
    border: solid 3px #f2f2f2 !important;
    padding: 20px;
    row-gap: 10px;
  }

  #lite-style form p {
    display: flex;
    flex-direction: row;
    font-family: "TripGeom-Regular", sans-serif;
    text-rendering: optimizeLegibility;
    font-size: 16px;
    margin: 0px;
  }

  #lite-style form input[type="text"],
  #lite-style form input[type="number"],
  #lite-style form input[type="email"],
  #lite-style form input[type="password"],
  #lite-style form input[type="date"],
  #lite-style form input[type="username"] {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 8px;
    border-radius: 0;
    background-color: #fff;
    border: solid 1px #dbd !important;
    width: 100%;
    font-family: "TripGeom-Regular", sans-serif !important;
    font-size: 13px;
  }

  #lite-style form select {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 0;
    width: 100%;
    background-color: transparent;
    border: none !important;
    border: solid 1px #dbd !important;
    background-color: #fff;
    padding: 8px 10px;
    font-family: "TripGeom-Regular", sans-serif !important;
    font-size: 13px;
  }

  #lite-style form button[type="submit"] {
    display: flex;
    flex-direction: row;
    background-color: #ff0000;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 0 10px;
    transition: background-color 0.2s ease;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 13px;
    font-family: "TripGeom-Regular", sans-serif;
    outline: none;
    width: auto;
    text-align: center;
    align-content: center;
    justify-content: center;
    text-decoration: none;
    line-height: 30px;
  }

  #lite-style form button[type="submit"]:hover {
    background-color: #008000;
    text-decoration: none;
    color: #fff !important;
    transition: all 0.3s ease 0s;
    box-shadow: var(--shadow-medium);
  }

  /*LITE 2 Starts*/
  #lite-style2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 20px;
    background-color: #f2f2f2;
    border-left: solid 1px #dbd !important;
    border-right: solid 1px #dbd !important;
  }

  #lite-style2 h2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    font-size: 14px;
    font-family: "TripGeom-Regular", sans-serif;
    margin: 0 0 5px 0;
    padding: 5px;
    border-radius: 2px;
    background-color: #999;
    color: #fff;
  }

  #lite-style2 .wrap-it-well {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  #lite-style2 p {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 0;
    width: 100%;
    font-family: "TripGeom-Regular", sans-serif !important;
    font-size: 13px;
    margin: 0;
  }

  #lite-style2 a {
    display: flex;
    flex-direction: row;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-sizing: border-box;
    font-size: 10px;
    font-family: "TripGeom-Regular", sans-serif;
    outline: none;
    width: 50px;
    padding: 5px;
    text-align: center;
    align-content: center;
    justify-content: center;
    text-decoration: none;
  }

  #lite-style2 a:hover {
    background-color: #008000;
    text-decoration: none;
    color: #fff !important;
    transition: all 0.3s ease 0s;
    box-shadow: var(--shadow-medium);
  }
  /*lite 2 ends*/

  .user-dashboard-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 70%;
    height: 630px;
    padding: 40px;
    margin: 0;
    border-radius: 0 50px 50px 0;
    background-color: #f2f2f2;
    overflow-y: scroll !important;
    justify-content: flex-start;
    align-content: flex-start;
    row-gap: 20px;
  }

  .user-dashboard-wrapper h3 {
    font-size: 22px;
    font-family: "TripGeom-Bold", sans-serif;
    margin: 0 0;
    padding: 0;
    width: 100%;
    color: #ff6600;
  }

  .user-dashboard-wrapper h3::after {
    display: inline-flex;
    position: relative;
    background-color: #999;
    width: 100%;
    height: 3px;
    content: "";
    margin: 10px 0 0 0;
    padding: 0;
  }

  .user-dashboard-wrapper p {
    font-size: 16px;
    font-family: "TripGeom-Regular", sans-serif;
    margin: 0 0 20px 0;
    padding: 0;
    width: 100%;
  }

  .why-luminaskies-about .top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 30%;
    margin: 0;
    padding: 40px;
    border-radius: 50px 0 0 50px;
    background-color: #ccc;
    height: 630px;
    justify-content: flex-start;
    align-content: flex-start;
    row-gap: 20px;
  }

  .why-luminaskies-about .top .left {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    height: 40px;
    row-gap: 0;
    align-items: center;
  }

  .why-luminaskies-about .top .left img {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 40px;
    height: 40px;
    border: solid #fff 2px;
    border-radius: 50%;
    margin: 0;
    padding: 0;
  }

  .why-luminaskies-about .top .left h2 {
    display: flex;
    flex-direction: row;
    width: 100%;
    color: #ccc;
    font-size: 16px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: right;
  }

  .why-luminaskies-about .top .left h2 {
    color: #ff6600;
  }

  .why-luminaskies-about .top .left h2 span {
    color: #000066;
    font-size: 16px;
    margin: 0 0 0 10px;
  }

  .why-luminaskies-about .top .right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    align-content: space-between;
  }

  .why-luminaskies-about .top .right #ads {
    display: flex;
    flex-direction: row;
  }

  .why-luminaskies-about .top .right #ads img {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-radius: 20px;
  }

  .why-luminaskies-about .top .right .wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 0 20px 0;
    justify-content: space-between;
    align-items: center;
    align-content: space-between;
    row-gap: 10px;
    padding: 20px;
    background-color: #051039;
    border-radius: 20px;
  }

  .why-luminaskies-about .top .right a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .why-luminaskies-about .top .right a:hover {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    text-decoration: none;
    color: #ff6600;
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0;
  }

  .why-luminaskies-about .top .right .wrap a.active {
    color: #ff6600;
  }

  .why-luminaskies-about .top h2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    font-size: 12px;
  }

  .why-luminaskies-about .top p {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
  }

  .why-luminaskies-about .top p a {
  }

  .user-dashboard-wrapper .left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .user-dashboard-wrapper .right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 50%;
  }

  .user-dashboard-right-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 40%;
  }

  .user-dashboard-right #ads img {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
  }

  /*USERDASH TAB STARTS*/
  .tab-container {
    max-width: 500px;
    margin: auto;
    border: 1px solid #ccc;
    border-radius: 0;
  }

  .tab-buttons {
    display: flex;
    border-bottom: 1px solid #ccc;
  }

  .tab-buttons button {
    flex: 1;
    padding: 10px;
    background: #f9f9f9;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
  }

  .tab-buttons button.active {
    background: #007bff;
    color: white;
  }

  .tab-content {
    display: none;
    padding: 15px;
  }

  .tab-content.active {
    display: block;
  }

  /*USERDASH TAB ENDSS*/

  .user-dashboard-wrapper .left .wrapper h2 {
    font-size: 18px;
    font-weight: 700;
    font-family: "TripGeom-Regular", sans-serif;
    margin: 0 0 10px 0;
    padding: 0;
    width: 100%;
  }

  .user-dashboard-wrapper .left .wrapper .wrapper {
    display: flex;
    border-radius: 0;
    background-color: #f2f2f2;
    margin: 0 auto;
  }

  .profile-pic {
    display: flex;
    border-radius: 0;
    justify-content: center;
    align-items: center;
    background-image: url("../images/svg/default-user.svg");
    background-repeat: no-repeat;
    background-position-x: 50%;
    background-position-y: 50%;
    background-size: cover;
    width: 160px;
    height: 160px;
    background-clip: border-box;
    border-radius: 0;
    margin: 20px auto;
  }

  .user-dashboard-wrapper .left .wrapper img {
    width: 100%;
    height: auto;
    margin: 40px auto;
    padding: 0;
    font-family: "TripGeom-Regular", sans-serif;
    font-size: 10px;
    text-align: center;
  }

  .user-dashboard-wrapper .left .wrapper p {
    font-size: 12px;
    font-family: "TripGeom-Regular", sans-serif;
    margin: 0 0 10px 0;
    padding: 0;
    width: 100%;
  }

  .user-dashboard-wrapper .left .wrapper form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 10px;
  }

  .user-dashboard-wrapper .left .wrapper form button {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .user-dashboard-wrapper .left .wrapper form .wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
    row-gap: 10px;
    background-color: #f2f2f2;
    border-radius: 0;
  }

  .add-margin {
    margin: 10px 0 !important;
  }

  .wrap-it-well {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    align-content: space-between;
    border-bottom: solid 1px #dbd !important;
    padding: 0 0 10px 0;
  }

  .wrap-it-well label {
    color: #ff6600;
    font-size: 12px;
    width: 30%;
  }

  .wrap-it-well input[type="text"],
  .wrap-it-well input[type="date"] {
    font-size: 14px;
    padding: 0;
    margin: 0;
    width: 70%;
    border: none !important;
    background-color: transparent !important;
    font-family: "TripGeom-Regular", sans-serif !important;
  }

  .wrap input[type="file"] {
    font-size: 14px;
    padding: 0;
    margin: 0 auto;
    width: 95%;
    border-radius: 0;
    line-height: 32px;
    /*border: solid 3px #666 !important;*/
    background-color: #666 !important;
    color: #fff;
    font-family: "TripGeom-Regular", sans-serif !important;
  }

  .wrap-it-well input[type="email"] {
    font-size: 14px;
    padding: 0;
    margin: 0;
    width: 70%;
    border: none !important;
    border-radius: 0;
    font-family: "TripGeom-Regular", sans-serif !important;
  }

  .locked {
    background-image: url("../images/svg/padlock.svg");
    background-repeat: no-repeat;
    background-position-x: 96%;
    background-position-y: 50%;
    background-size: 10px 10px;
  }

  .wrap-it-well select {
    font-size: 14px;
    padding: 0;
    margin: 0;
    width: 70%;
    border: none !important;
    background-color: transparent !important;
    font-family: "TripGeom-Regular", sans-serif !important;
  }

  .user-dashboard-wrapper .left .deal-box-wrapper h3,
  .user-dashboard-wrapper .left h3 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    font-size: 22px;
    font-family: "TripGeom-Bold", sans-serif;
    margin: 0 0 20px 0;
    padding: 0;
    justify-content: space-between;
    align-content: space-between;
    color: #05164d;
  }

  .user-dashboard-wrapper .left .deal-box-wrapper h3::after,
  .user-dashboard-wrapper .left h3::after {
    display: inline-flex;
    position: relative;
    background-color: #999;
    width: 100%;
    height: 3px;
    content: "";
    margin: 20px 0 0 0;
  }

  .user-dashboard-wrapper .left .deal-box-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }

  .user-dashboard-wrapper .left .deal-box-wrapper .deal-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
    align-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 0;
    padding: 10px;
    margin: 0 0 20px 0;
  }

  .deal-box img {
    display: flex;
    border-radius: 0;
    width: 20%;
  }

  .deal-box .details {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0 0 0 10px;
    width: 80%;
    justify-content: space-between;
    align-content: space-between;
  }

  .deal-box .details .left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    width: 80%;
  }

  .deal-box .details .left h2 {
    font-family: "TripGeom-Bold", sans-serif;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 12px;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .deal-box .details .left h2 span {
    font-family: "TripGeom-Regular", sans-serif;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    font-size: 10px;
    font-weight: 200;
    padding: 0;
    width: 100%;
  }

  .deal-box .details .left h3 {
    font-family: "TripGeom-Regular", sans-serif;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    font-size: 10px;
    font-weight: 400;
    color: #ff6600;
  }

  .deal-box a {
  }

  .user-dashboard-wrapper .right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: right;
    align-items: first baseline;
  }

  .hidden-xs {
    display: none;
  }

  .user-dashboard-wrapper .right .wrapper form .wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
    row-gap: 10px;
    background-color: #f2f2f2;
    border-radius: 0;
  }

  .why-luminaskies-about .user-dashboard-wrapper .adsbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 20px;
    border-radius: 0;
    background-color: #f2f2f2;
  }

  .why-luminaskies-about .user-dashboard-wrapper .adsbox #ads {
    width: 100%;
    height: auto;
  }
}
