.main-content {
  max-width: 768px;
  padding: 0;
}

.page-container {
  padding-top: 15px;
}

.page-container .info {
  color: gray;
  font-size: 12px;
}

#plan-info {
  color: #fff;
  background-color: #2152cf;
  border-radius: 10px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}

#plan-info #plan-name {
  background-color: #2b52b5;
  padding: 5px;
  font-weight: 400;
  font-size: 160%;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 100%;
}

#plan-info .container {
  display: flex;
  flex-direction: column;
  max-width: max-content;
  margin: 20px;
}

#plan-info .container .discount {
  /* color: #e64545; */

  font-weight: 600;
  font-size: 150%;
  text-align: center;
}
#plan-info .container .discount span {
  position: relative;
  /* text-decoration: line-through solid 2px #e64545; */
}

#plan-info .container .discount span:before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  right: 0;
  border-top: 2px solid #e64545;

  -webkit-transform: rotate(-5deg);
  -moz-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  -o-transform: rotate(-5deg);
  transform: rotate(-5deg);
}

#plan-info .container .value-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 70px;
  margin-bottom: 5px;
}

#plan-info .container .value-content .left {
  display: flex;
  flex-direction: column;
  margin-right: 5px;
  height: 100%;
  justify-content: center;
  font-weight: 900;
}
#plan-info .container .value-content .left .installment {
  font-size: 180%;
  /* line-height: 22px; */
}
#plan-info .container .value-content .left .sign {
  font-size: 180%;
  /* line-height: 22px; */
}

#plan-info .container .value-content .value {
  font-size: 500%;
  font-weight: 900;
}

#plan-info .container .period {
  color: #2152cf;
  font-size: 180%;
  font-weight: 900;
  background-color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  border-radius: 10px;
  padding: 0 15px;
  margin-bottom: 5px;
}

#plan-info .container .value-info {
  text-align: center;
  font-size: 16px;
}

#plan-info .box-infos {
  display: flex;
  flex-direction: column;
  margin: 0 20px 20px;
}
#plan-info .box-infos > div {
  display: none;
  align-items: center;
}

#plan-info .box-infos > div i {
  margin-right: 5px;
}

#plan-info .box-infos > div span {
  font-size: 130%;
  text-align: left;
}

#plan-list {
  font-size: 12px;
  margin-bottom: 15px;
}

#plan-list .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

#plan-list .container .plan {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  color: #fff;
  border-radius: 10px;
  background-color: #fff;
  color: #2152cf;
  border: 2px solid #2152cf;
  margin: 10px 5px;
  cursor: pointer;
  transition: 0.2s;
  padding: 20px 5px;
  font-weight: 700;
  font-size: 130%;
  user-select: none;
}
#plan-list .container .plan > span:not(:last-child) {
  margin-bottom: 5px;
}

#plan-list .container .plan.active,
#plan-list .container .plan:hover {
  color: #fff;
  background-color: #2152cf;
  position: relative;
}

#plan-list .container .plan.active::before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  background-color: #2152cf;
  width: 30px;
  height: 30px;
  top: -15px;
  border-radius: 50%;
  border: 2px solid #fff;
}

#coupon-info {
  flex-direction: column;
  margin-bottom: 15px;
  align-items: center;
}
#coupon-info img {
  width: 100%;
  max-height: 100px;
  margin-bottom: 10px;
}

#coupon-info span {
  color: #2152cf;
  text-align: center;
  font-weight: 600;
}

#user-box {
  margin-bottom: 15px;
}
#user-box.completed label {
  font-size: 12px;
  color: gray;
}
#user-box.completed input {
  border: none !important;
  padding: 5px;
  pointer-events: none;
  height: auto;
  line-height: 0;
}

#payment-box {
  margin-bottom: 15px;
}
#payment-box #buying-info {
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #c9ced4;
}
#payment-box #buying-info .plan-name {
  font-weight: bold;
}
#payment-box #buying-info .plan-value {
  color: gray;
}
#payment-box .big-button {
  margin-top: 15px;
}
#payment-box #next-billing {
  display: none;
  margin: 15px 0 0;
}

#payment-box #bin {
  margin: 15px 0 0;
  text-align: center;
}

#payment-box .recaptcha-container {
  margin-top: 15px;
}

#sub-bill #next-page {
  margin-top: 15px;
}

/* PAGE Senha */
#code-box {
  text-align: center;
  margin-bottom: 15px;
}
#code-box #key-code {
  font-size: 40px;
  text-align: center;
  height: 50px;
  margin: 5px 0 15px;
  width: 200px;
}

#code-box #key-code::placeholder {
  font-size: 40px;
}

#pass-box #check-password {
  margin-top: 15px;
}

/* >> Chat styles */
#chat {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 10;
}

#chat .flutuante {
  transition: transform 0.25s;
}
#chat .flutuante .button {
  background: #3fbbe1;
  width: 48px;
  height: 48px;

  cursor: pointer;
  backface-visibility: hidden;
  overflow: hidden;
  border-radius: 50%;

  -webkit-box-shadow: 0px 0px 7.5px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 7.5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 7.5px 0px rgba(0, 0, 0, 0.5);
}

#chat .flutuante .notification {
  display: none;
  position: absolute;
  bottom: 31.7px;
  right: -10.5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
#chat .flutuante .notification span {
  background: red;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgb(255, 255, 255);
  font-weight: 700;
  border-radius: 9px;
  min-width: 16px;
  height: 16px;
  text-align: center;
  line-height: 0px;
  padding: 0px 4px;
}

#chat .flutuante:hover {
  transform: scale(1.15);
}
#chat .flutuante:active {
  transform: scale(0.8);
}

#chat .flutuante svg {
  width: 24px;
  height: 24px;
  color: white;
}

#chat .open,
#chat .close {
  display: none;
  user-select: none;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 100%;
  transition: transform 0.16s linear 0s, opacity 0.08s linear 0s;
}

#chat .open {
  opacity: 0;
  transform: rotate(0deg) scale(0);
}
#chat .close {
  opacity: 0;
  transform: rotate(-60deg) scale(0);
}

#chat .container {
  position: absolute;
  bottom: 60px;
  right: 0px;

  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100%;

  min-width: 400px;
  min-height: 700px;

  overflow: hidden;
  border-radius: 15px;

  background: #fff;

  transition: transform 0.16s linear 0s, opacity 0.08s linear 0s;

  opacity: 0;
  transform: scale(0);
  transform-origin: 100% 100%;

  box-shadow: rgb(0 0 0 / 16%) 0px 5px 40px;
}

#chat .container .header {
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #2152cf;
  width: 100%;
  padding: 10px;
  font-size: 18px;
}
#chat .container .header .info {
  display: flex;
  align-items: center;
  flex-direction: column;
}

#chat .container .header span {
  color: white;
  font-weight: bold;
  text-align: center;
}

#chat .container .header .status {
  padding: 3px 5px;
  border-radius: 5px;
  background-color: red;
  font-size: 60%;
  margin-top: 5px;
}

#chat .container .header .button-close {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: background-color 0.2s;
}
#chat .container .header .button-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
#chat .container .header .button-close:active {
  background-color: rgba(0, 0, 0, 0.2);
}

#chat .container .chats {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 5px;
  margin: 2px 5px;
  overflow-y: auto;
}

#chat .container .chats .message {
  max-width: 75%;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  margin-bottom: 5px;
}

#chat .container .chats .message.user {
  background-color: rgb(54 193 255);
  align-self: flex-end;
  display: flex;
}
#chat .container .chats .message.support {
  background-color: rgb(245, 245, 245);
  color: #000;
}

#chat .container .footer {
  display: flex;
  min-height: 40px;
  max-height: 200px;
  padding: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

#chat .container .footer textarea {
  height: 25px;
  min-height: 25px;
  width: 100%;
  max-height: 200px;
  color: rgb(64, 64, 64);
  resize: none;
  border: none;
  transition: background-color 200ms ease 0s, box-shadow 200ms ease 0s;
  outline-offset: -5px;
  overflow-y: auto;
}

#chat .container .footer textarea:focus {
  outline: none;
}

#chat .container .footer button {
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#chat .container .footer button svg {
  width: 16px;
  height: 16px;
}

/* > Chat states */
#chat.notification .button {
  -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHZpZXdCb3g9IjAgMCA0OCA0OCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00Mi45OTkxIDBDNDAuNTcwNyAxLjgyNDQ2IDM5IDQuNzI4OCAzOSA4QzM5IDEzLjE4NTMgNDIuOTQ2NyAxNy40NDg5IDQ4IDE3Ljk1MDZWNDhIMFYwSDQyLjk5OTFaIiBmaWxsPSIjMDAwIi8+Cjwvc3ZnPgo=);
}
#chat.notification .notification {
  display: block;
}

#chat:not(.active) .open,
#chat.active .close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

#chat.active .container {
  opacity: 1;
  transform: scale(1);
}

#chat.online .container .header .status {
  background-color: green;
}

@media screen and (max-height: 768px) {
  #chat {
    bottom: 15px;
  }
}

@media screen and (max-width: 667px) {
  #payment-box .recaptcha-container {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 415px), (max-height: 415px) {
  #plan-info,
  #plan-list {
    font-size: 10px;
  }

  #chat .container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    min-width: unset;
    min-height: unset;
    border-radius: 0;
  }
  #chat .container .header {
    height: 70px;
    font-size: 16px;
  }
  #chat .container .header .info {
    margin-left: 10px;
  }
  #chat .container .header .button-close {
    display: flex;
  }
}
