.plan-selected-page .select-dropdown {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.plan-selected-page .select-dropdown__button {
    cursor: pointer;
    text-align: left;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 12px;
    gap: 10px;
    background: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
}
.plan-selected-page .select-dropdown__button::focus {
  outline: none;
}
.plan-selected-page .select-dropdown__list-item:hover {
    background: #a389c3;
    color: #fff;
}
.plan-selected-page .select-dropdown__list {
  position: absolute;
  display: flex;
  left: 0;
  right: 0;
  max-height: 300px;
  overflow: auto;
  margin: 0;
  padding: 15px;
  list-style-type: none;
  opacity: 0;
  pointer-events: none;
  transform-origin: top left;
  transform: scale(1, 0);
  transition: all ease-in-out 0.3s;
  z-index: 2;
  background: #FFFFFF;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  flex-flow: column;
  gap: 10px;
}
.plan-selected-page .select-dropdown__list.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1, 1);
}
.plan-selected-page .select-dropdown__list-item {
  list-style-type: none;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  height: 31px;
  background: #F1F1F1;
  border-radius: 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  width: 100%;
}
.plan-selected-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 630px;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
}

.plan-selected-page {
    display: flex;
    align-items: center;
    padding: 40px 0px;
    gap: 24px;
    background: #F5EEFD;
    justify-content: center;
    flex-wrap: wrap;
}

.plan-selected-row {
    box-sizing: border-box;
    padding: 60px;
    background: #FFFFFF;
    border-bottom: 2px solid #E2D7EF;
    position: relative;
    width: 100%;
}

.your-plan-text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 6px;
    gap: 10px;
    position: absolute;
    top: 0px;
    background: #A389C3;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
    left: 50%;
    transform: translateX(-50%);
}

.plan-name-and-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0 30px;
}

.plan-selected-row p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000000;
}

.plan-selectedPlan-price {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    color: #000000;
}
.plan-selected-row .signup-form label {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 10px;
}

.plan-selected-row .signup-form input {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    height: 48px;
    background: #F1F1F1;
    border-radius: 24px;
    border: 0px;
}

.plan-selected-row .signup-form input:focus {
    outline: none;
    border-color: #a389c3;
    box-shadow: 0 0 1px #a389c3;
}

.plan-selected-row .signup-form input::placeholder {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #838383;
}

div#id_accepted_page_terms_group {
    margin: 20px 0;
}
.plan-selected-row .signup-form .custom-checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.plan-selected-row .signup-form .custom-checkbox label {
    letter-spacing: 0px;
    text-transform: none;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000000;
    position: relative;
    cursor: pointer;
}
.plan-selected-row .signup-form .custom-checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #a389c3;
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 100px;
}
.plan-selected-row .signup-form .custom-checkbox input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 8px;
    width: 8px;
    height: 14px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.plan-selected-row .signup-form .custom-checkbox input:checked + label:before {
    background: #a389c3;
}
.pageflows-signin-buttons {
    display: flex;
    flex-flow: column;
    gap: 30px;
    justify-content: center;
    text-align: center;
}
.pageflows-signin-buttons #signUpButton, a#teamPurchaseButton {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    height: 48px;
    background: #4DC2F4;
    border-radius: 30px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
}
.pageflows-signin-buttons #signUpButton:hover, a#teamPurchaseButton:hover {
    background: #a389c3;
}
.pageflows-signin-buttons .signin-with-google {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid #303754;
    border-radius: 1000px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: #303754;
    cursor: pointer;
    height: 50px;
    position: relative;
    transition: .3s;
}
.pageflows-signin-buttons .signin-with-google svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.pageflows-signin-buttons .signin-with-google:hover {
    background: #000;
    color: #fff;
    transition: .3s;
}
.plan-selected-row:last-child {
    border: 0px;
}
.plan-selected-row p.text-red-800, .accept-terms-error {
    text-align: left;
    color: red;
    margin: 15px 0 ;
}
@media only screen and (max-width: 767px) {
.plan-name-and-price {
    flex-flow: column;
    gap: 20px;
}
.plan-selected-row {
    padding: 50px 30px 30px;
}
.plan-selected-container {
    width: 100%;
}
.plan-selected-page {
    padding: 40px 20px;
}
.pageflows-signin-buttons #signUpButton {
    padding: 12px;
    font-size: 14px;
    letter-spacing: 0px;
}
.pageflows-signin-buttons .signin-with-google svg {
    width: 16px;
}
.plan-selected-row .signup-form .custom-checkbox label:before {
    padding: 7px;
}
.plan-selected-row .signup-form .custom-checkbox input:checked + label:after {
    top: 3px;
    left: 6px;
    width: 7px;
    height: 12px;
    border-width: 0 2px 2px 0;
}
}
@media only screen and (max-width: 370px) {
  .plan-selected-page .select-dropdown__button {
      font-size: 9px;
      letter-spacing: 0px;
  }
  .pageflows-signin-buttons #signUpButton {
      padding: 9px;
      font-size: 11px;
      letter-spacing: 0px;
  }
  .pageflows-signin-buttons .signin-with-google svg {
      position: static;
      transform: none;
  }
  .pageflows-signin-buttons .signin-with-google {
      font-size: 11px;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-flow: row;
  }
}
