.franchising_container {
  position: fixed;
  background: #212134;
  bottom: 80px;
  width: 100%;
  max-width: 300px;
  right: 0;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  opacity: 1;
  animation: 1s ease-out 0s 1 slideInFromLeft;
}

.franchising_container button {
  border: none;
  background: none;
  color: white;
}

.franchising_container_closed {
  color: white;
  opacity: 0;
  transition: 1s;
  animation: 1s ease-out 0s 1 slideInFromLeftExit;
}

@media screen and (max-width: 992px) {
  .franchise_starter {
    margin-top: 100px;
  }
}


@keyframes slideInFromLeft {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slideInFromLeftExit {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(100%);
  }
}

.franchising_form {
  padding: 40px 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.franchising_form button {
  width: 100%;
  border: 2px solid white;
  color: white;
  border-radius: 14px;
  background: none;
  padding: 5px 10px;
  font-weight: 500;
}

.franchising_form button:hover {
  background: white;
  color: #212134;
}

.franchising_form input,
textarea {
  width: 100%;
  background: white;
  border-radius: 14px;
  padding: 5px 10px;
  border: 2px solid white;
}


.franchising_title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  color: white;
}

.franchising_title h4 {
  padding-top: 40px;
  color: white;
}

.customModal {
  background: #212134;
  border-radius: 14px;
}

.success_text {
  font-weight: 400;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 20px;
}

.success_text div {
  margin-top: 20px;
  color: rgb(41, 128, 41);
  font-size: 24px;
}


.failed_text {
  font-weight: 400;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 20px;

}

.failed_text div {
  margin-top: 20px;
  color: rgb(128, 41, 41);
  font-size: 24px;
}


.franchise_container {
  background: #212134;
  width: 100%;
}

.franchise_container .franchise_main_wrapper {
  max-width: 1600px;
  margin: auto;
  padding: 40px 10px;

}

.franchise_main_wrapper h2,
h1 {
  color: white;
}

.franchise_main_wrapper a {
  background: none;
  border: 2px solid white;
  border-radius: 14px;
  padding: 10px 40px;
  text-align: center;
  font-weight: 600;
  transition: 1s;

}

.franchise_main_wrapper a:hover {
  background: white;
  color: #212134;
}

.refreshButton {
  color: white;
  border: 1px solid white;
  background: #212134;
  border-radius: 14px;
  padding: 5px 20px;
  margin-top: 40px;
}

.refreshButton:hover {
  color: #212134;
  border: 1px solid #212134;
  background: white;
}