html {
  font-family: Poppins;
}

body {
  padding: 0;
  margin: 0;
}

.meetinga-header {
  background: linear-gradient(264deg, #00a1ed, #2968bc, #4c3892, #5a2683);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.meetinga-header--appsumo {
  background: linear-gradient(264deg, #00a1ed, #2968bc, #4c3892, #5a2683);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.meetinga-header__info {
  display: flex;
  align-items: center;
  /* gap: 10px; */
}

.meetinga-header__info img {
  width: 50px;
  height: 50px;
  margin-right: 25px;
}

.meetinga-header__cancel {
  display: flex;
  align-items: center;
  cursor: pointer;
  /* gap: 10px; */
}

.meetinga-header__cancel a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.meetinga-header__cancel a:visited {
  color: #fff;
  text-decoration: none;
}

.meetinga-header__cancel img {
  width: 25px;
  height: 25px;
  margin-left: 15px;
}

.meetinga-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.meetinga-main__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1360px;
  margin: 5em 0;
}

.meetinga-main__wrapper h1 {
  margin: 0;
  padding: 1em;
  font-size: 48px;
}

.meetinga-main__form {
  width: 95%;
  padding: 0 10px;
}

.meetinga-main__form ul {
  width: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.appsumo-list {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.meetinga-main__form ul li {
  margin: 2em 0;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0px 25px 60px #00000014;
}

.meetinga-main__form button {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  padding: 0 1em;
  align-items: center;
  height: 60px;
  width: 200px;
  float: right;
  color: #fff;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  background: linear-gradient(264deg, #00a1ed, #2968bc, #4c3892, #5a2683);
}

.meetinga-main__form button img {
  width: 15px;
  height: 15px;
}

.meetinga-form-item {
  display: flex;
  justify-content: space-between;
}

.meetinga-form-item__appsumo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 800px;
}

.meetinga-form-item__text {
  font-size: 16px;
  text-align: justify;
  text-justify: inter-word;
  color: #6e6c71;
}

.meetinga-form-item__left {
  display: flex;
  flex-direction: column;
}

.meetinga-form-item__left h2 {
  padding: 0;
  margin: 0 0 1em 0;
}

.meetinga-form-item__right {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 30px; */
}

.meetinga-form-item-right__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 150px;
}

.vertical-line {
  border: 2px solid #f4f4f4;
  height: 100%;
  margin: 0 15px;
}

.meetinga-form-price {
  font-size: 28px;
  font-weight: bold;
  color: #f56837;
}

/* checkbox starts here */

.meetinga-form-item-right__right {
  color: #aaaaaa;
  display: block;
  position: relative;
  float: left;
  width: 100%;
  max-width: 160px;
  height: 100px;
  font-size: 20px;
}

.meetinga-form-item-right__right input[type="radio"] {
  position: absolute;
  visibility: hidden;
}

.meetinga-form-item-right__right label {
  display: block;
  position: relative;
  font-weight: 300;
  font-size: 20px;
  padding: 25px 25px 25px 80px;
  margin: 10px auto;
  height: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
}

.meetinga-form-item-right__right:hover label {
  color: #f56837;
}

.meetinga-form-item-right__right .check {
  display: block;
  position: absolute;
  border: 5px solid #aaaaaa;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  top: 30px;
  left: 20px;
  z-index: 5;
  transition: border 0.25s linear;
  -webkit-transition: border 0.25s linear;
}

.meetinga-form-item-right__right:hover .check {
  border: 5px solid #f56837;
}

.meetinga-form-item-right__right .check::before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 100%;
  height: 15px;
  width: 15px;
  top: 5px;
  left: 5px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}

.meetinga-form-item-right__right input[type="radio"]:checked ~ .check {
  border: 5px solid #f56837;
}

.meetinga-form-item-right__right input[type="radio"]:checked ~ .check::before {
  background: #f56837;
}

.meetinga-form-item-right__right input[type="radio"]:checked ~ label {
  color: #f56837;
}

.checkbox__container {
  display: block;
  position: relative;
  padding: 0 0 0 35px;
  margin: 0 0 12px 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #6e6c71;
  font-weight: 400;
}

.checkbox__required {
  display: flex;
}

.checkbox__container input {
  position: absolute;
  cursor: pointer;
  opacity: 0;
  height: 0;
  width: 0;
}

.checkbox__container span {
  display: block;
}

.checkbox__checkmark {
  position: absolute;
  top: -3px;
  left: 0;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  height: 25px;
  width: 25px;
  background-color: #fff;
}

.checkbox__checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox__container:hover input ~ .checkbox__checkmark {
  background-color: #0070c541;
  border: none;
}

.checkbox__container input:checked ~ .checkbox__checkmark {
  background-color: #0071c5;
  border: none;
}

.checkbox__container input:checked ~ .checkbox__checkmark:after {
  display: block;
}

.checkbox__container .checkbox__checkmark:after {
  left: 8px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* checkbox ends here */

/* input starts here */

label {
  font-weight: 600;
}

.input {
  height: 60px;
  min-height: 60px;
  background-color: #fff;
  margin: 0.5em 0 2em 0;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  box-shadow: #0000001a 0px 3px 8px;
  padding-left: 20px;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  font-size:18px;
}

.input-wrapper input {
  font-size: 18px;
}

.input-group {
  margin-top: 20px;
  width: 80%;
}

/* input ends here */

.meetinga-main-finished {
  display: flex;
  margin: 1em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  border: 4px solid #2ed76a;
  border-radius: 25px;
  box-shadow: 0px 25px 60px #00000014;
}

.meetinga-main-finished--error {
  border: 4px solid #ff726f;
}

.meetinga-main-finished p {
  color: #6e6c71;
}

.meetinga-main-finished-image-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #61e18e;
  display: flex;
  justify-content: center;
  align-items: center;
}

.meetinga-main-finished-image-wrapper--error {
  background-color: #ff726f;
}

.meetinga-main-finished-image-wrapper img {
  width: 50px;
  height: 50px;
}

.meetinga-main-address {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 60px;
}

.meetinga-main-address div {
  background-color: #f6f6f6;
  width: 100%;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #6e6c71;
}

.meetinga-main-address button {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: linear-gradient(264deg, #00a1ed, #2968bc, #4c3892, #5a2683);
  min-width: 200px;
  height: 100%;
  color: #fff;
  font-size: 16px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  border-radius: 5px;
}

.meetinga-main-address button img {
  width: 15px;
  height: 15px;
}

.meetinga-main-info {
  text-align: center;
  margin: 50px 1em;
  color: #1dd45e;
  font-weight: 700;
  display: flex;
  justify-content: center;
}

.meetinga-main-info img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.meetinga-main-quit {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #252533;
  margin: 0 auto 0 1em;
  height: 60px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  min-width: 150px;
  cursor: pointer;
  border-radius: 5px;
}

.meetinga-main-quit img {
  width: 15px;
  height: 15px;
}

@media (max-width: 850px) {
  .meetinga-main-address {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
    height: auto;
  }

  .meetinga-main-address div {
    height: 60px;
    width: 100%;
  }

  .meetinga-main-address button {
    margin-top: 10px;
    height: 60px;
  }

  .meetinga-form-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .meetinga-main-info {
    flex-direction: column;
    align-items: center;
  }

  .meetinga-form-item__appsumo {
    min-width: auto;
  }
}

@media (max-width: 650px) {
  .meetinga-form-item__right {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* gap: 30px; */
  }

  .vertical-line {
    border: 2px solid #f4f4f4;
    height: 0;
    width: 100%;
  }
}
