.popup-container {
  position: fixed;
  right: 0;
  bottom: 0;
  max-width: 370px;
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  border-radius: 5px;
  display: none;
  z-index: 1000; }
  @media (max-width: 767px) {
    .popup-container {
      max-width: max-content; } }

.sweetDealShortcut {
  position: fixed;
  right: 15px;
  bottom: 140px;
  width: 60px;
  height: 60px;
  background: #f8673b;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  z-index: 9;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center; }
  .sweetDealShortcut:hover {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
    transition: allease 0.5s; }
  .sweetDealShortcut img {
    width: 30px;
    animation: expandCollapse 2s ease-in-out infinite;
    /* Infinite loop of animation */ }

/* Keyframes for the animation */
@keyframes expandCollapse {
  0% {
    transform: scale(1);
    /* Initial size */ }
  50% {
    transform: scale(1.15);
    /* Expands the image to 1.5 times its original size */ }
  100% {
    transform: scale(1);
    /* Returns to the original size */ } }

.popup-content {
  padding: 10px;
  text-align: left; }

.popup-content h2 {
  margin-top: 0;
  font-size: 18px;
  color: #fff;
  font-family: 'BebasNeue-Regular';
  margin-bottom: 10px; }

.popup-content p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 20px; }

.popup-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between; }

/* Form Popup Content */
.form-popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative; }

/* Close Button */
.close-form-popup {
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 24px;
  cursor: pointer;
  color: white; }

/* Form Labels and Inputs */
.input-wrap {
  margin-bottom: 15px; }

.input-wrap label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  font-family: 'BebasNeue-Regular';
  letter-spacing: 0.4px; }

.formPopUp .act-btn .customFormBtn {
  font-family: 'BebasNeue-Regular';
  letter-spacing: 0.4px; }

.input-wrap input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 12px;
  font-weight: 500; }

.input-wrap input:focus {
  border-color: #007bff;
  outline: none; }

.toast-message {
  color: #eaeaea;
  font-size: 16px;
  letter-spacing: 0.8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  font-weight: 600;
  justify-content: center;
  text-shadow: 2px 2px #020201;
  text-transform: uppercase;
  font-family: "Barlow-Regular"; }
  @media (max-width: 767px) {
    .toast-message {
      font-size: 14px;
      text-align: center;
      line-height: 20px; } }

.invalid {
  border-color: red; }

.error-message {
  color: #f93333;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 500; }

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 7px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #000; }

.size-chart-adp-close-modal-btn {
  position: absolute;
  top: 0px;
  right: 3px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #000; }
