@import url('https://fonts.cdnfonts.com/css/viga');
* {
  margin: 0;
  padding: 0;
}
html {
  font-family: viga;
}
.index-header {
  background-image: linear-gradient(to left, #4200ff, #ec6cdf, #fe7478);
  height: fit-content;
  min-height: 550px;
  position: relative;
}
.socials-pop {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  margin-top: 15px;
}
.socials-index {
  opacity: 0;
  max-width: 100px;
  animation-duration: 2s;
  animation-timing-function: linear;
}
@keyframes popUp {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  20% {
    opacity: 1;
    transform: scale(1.5);
  }
  24% {
    opacity: 1;
    transform: scale(1.4) rotate(5deg);
  }
  28% {
    opacity: 1;
    transform: scale(1.5) rotate(-5deg);
  }
  32% {
    opacity: 1;
    transform: scale(1.4) rotate(5deg);
  }
  36% {
    opacity: 1;
    transform: scale(1.5) rotate(-5deg);
    filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 0.425));
  }
  40% {
    opacity: 1;
    transform: scale(1.5) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}
.index-header h4 {
  color: white;
  margin-top: 100px;
  margin-left: 100px;
  width: 300px;
  box-sizing: border-box;
  position: absolute;
  top: 50px;
  left: 50px;
  margin: 0;
  font-size: 30px;
}
.index-header h1 {
  font-size: 100px;
  background: linear-gradient(to right, #4200ff, #ec6cdf, #fe7478);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.big-text-container {
  background-color: white;
  border-radius: 500px;
  height: fit-content;
  width: fit-content;
  position: absolute;
  top: 400px;
  left: 5vw;
  transform: rotate(0deg);
  padding: 70px;
  animation-name: breakDown;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  z-index: 99;
  display: flex;
}
.rand-socials {
  width: 40%;
  position: absolute;
  right: 0px;
  min-width: 500px;
  max-width: 800px;
  top: 0;
}
.terms-wrapper {
  border: solid #4200ff 4px;
  border-radius: 5px;
  padding-inline: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  box-sizing: border-box;
  cursor: pointer;
}
.terms-wrapper:hover {
  border: solid #4200ff 6px;
}
.terms-wrapper strong {
  color: #ff0000;
  text-decoration: underline;
}
.terms-wrapper label {
  cursor: pointer;
}
.terms-wrapper input {
  cursor: pointer;
}
.index-main {
  margin-top: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
}
@keyframes breakDown {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(45deg);
  }
  60% {
    transform: rotate(30deg);
  }
  70% {
    transform: rotate(45deg);
  }
  80% {
    transform: rotate(40deg);
  }
  90% {
    transform: rotate(45deg);
  }
  95% {
    transform: rotate(42deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

.img-footer {
  width: 100%;
  margin-bottom: -7px;
  margin-top: 50px;
}
.start {
  width: 170px;
  height: 60px;
  border-radius: 250px;
  border: none;
  font-family: viga;
  background-image: linear-gradient(to left, #4200ff, #ec6cdf, #fe7478);
  color: white;
  font-size: 18px;
  cursor: pointer;
}
.start:hover {
  transform: scale(1.1);
}
.start:disabled {
  filter: grayscale(1);
}
footer {
  background-image: url("../assets/footer.svg");
  background-size: cover;
  background-position: top;
  min-height: 250px;
  display: flex;
  color: white;
  padding: 25px;
  flex-wrap: wrap;
  margin-top: 150px;
  justify-content: space-between;
}
footer h1 {
  width: 100%;
  font-size: 72px;
  margin-top: 25px;
}
footer p {
  width: fit-content;
  font-size: 24px;
}
@media screen and (max-device-width: 900px) {
  .big-text-container {
    left: 0px;
  }
}

/* Choose.html styles start here. */

.choose-header {
  background-color: #4200ff;
  font-size: 20px;
  height: 70px;
  display: flex;
  align-items: flex-end;
  color: white;
  justify-content: space-between;
  padding-inline: 15px;
}
.menu-round {
  width: 35px;
  height: 35px;
  margin-bottom: 15px;
  cursor: pointer;
  border-radius: 50%;
}
.menu-round:hover {
  transition: 0.5s;
  border-radius: 0;
}
.main-choose {
  color: #4200ff;
  margin-top: 60px;
  margin-left: 50px;
  font-size: 72px;
}
.platforms {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 60px;
}
.platform-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #4200ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.platform-circle:hover {
  transition: 0.2s;
  transform: scale(1.1);
}
.social-img {
  width: 80px;
}
.module-choose {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 35px;
  width: 90%;
  margin-left: 50%;
  transform: translate(-50%);
  margin-top: 90px;
  position: relative;
  border: solid #4200ff 10px;
  flex-wrap: wrap;
  display: none;
  padding-top: 10px;
  opacity: 0;
  animation-duration: 0.2s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  overflow: hidden;
  padding-bottom: 30px;
}
.option-choice {
  width: 30%;
  height: 100%;
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 35px;
}
.option-choice:hover {
  box-shadow: #4400ff44 0px 0px 2px 0px, #4400ff53 0px 0px 6px 2px;
  border-radius: 35px;
  transition: 0.2s;
  cursor: pointer;
}
.option-choice-h1 {
  color: #4200ff;
  text-align: center;
}
.ullistrations {
  width: 100%;
  height: 200px;
  margin-top: 50px;
}
.option-case {
  margin-top: 50px;
}
.vertical-border {
  height: 200px;
  width: 10px;
  background-color: #4200ff;
  border-radius: 15px;
}
.poly {
  position: absolute;
  top: 110%;
  display: none;
}
.empty-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row-reverse;
  padding-right: 5%;
  box-sizing: border-box;
  padding: 5%;
}
.img-link {
  max-width: 200px;
  cursor: pointer;
}
.img-link:hover {
  transform: scale(1.1);
  transition: 0.2s;
}
.default-choice {
  border: dashed #4200ff 5px;
  border-radius: 35px;
  margin-top: 90px;
  height: 320px;
  width: 90%;
  margin-left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.drag-drop {
  color: #4200ff;
}
/*Animation for the apperance of the selector*/

@keyframes higher {
  0% {
    height: 0px;
  }
  100% {
    height: 350px;
  }
}

/*style for the 3rd page , platform page*/

.optional-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 25px;
  width: 48%;
  padding-left: 35px;
  box-sizing: border-box;
  height: fit-content;
  flex-grow: 1;
  max-width: 650px;
}
.module-choose-i {
  margin-top: 90px;
  border: solid #4200ff 10px;
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 5px;
  gap: 5px;
  width: 100%;
}
.module-choose-i .bubbles {
  background-color: #4200ff;
  border: none;
  color: white;
  font-family: viga;
  padding: 17px;
  border-radius: 15px;
}
.module-choose-i .bubbles:hover {
  transition: 0.2s;
  box-shadow: white 0 0 0 1px, #fe7478 0 0 0px 5px;
  cursor: pointer;
}
.i {
  margin-left: 50px;
}
.a-c {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 5px;
}
#verify {
  outline: none;
  border: none;
  box-shadow: none;
}
#status {
  outline: none;
  border: none;
  box-shadow: none;
}
#status:checked {
  transition: 0.2s;
  border-radius: 5px;
  box-shadow: white 0 0 0 2px;
}
#verify:checked {
  transition: 0.2s;
  border-radius: 5px;
  box-shadow: white 0 0 0 2px;
}
#blocked {
  outline: none;
  border: none;
  box-shadow: none;
}
#blocked:checked {
  transition: 0.2s;
  border-radius: 5px;
  box-shadow: white 0 0 0 2px;
}
.platform-main {
  display: flex;
  justify-content: space-evenly;
}
.instagram {
  margin: 150px;
}
.phone {
  margin-top: 50px;
  margin-left: 50px;
  transform: translate(0px);
}
.hisName {
  margin-top: -7px;
  color: white;
}
#microPic {
  width: 30px;
}
.hisNameI {
  color: white;
  margin-top: -18px;
}
#hisUsername {
  margin-top: 12px;
}
#account {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: viga;
}
#hisNameI2 {
  color: white;
  margin-bottom: 5px;
  margin-top: 10px;
}
.text-bubble {
  background-color: #4200ff;
  padding: 12px;
  border-radius: 10px;
}
.text-bubble input {
  height: 30px;
  font-family: viga;
  color: #4200ff;
  border: none;
  padding-left: 7px;
  width: 270px;
}
.messanger-new-in {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-radius: 135px;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.messanger-new-in input {
  height: 40px;
  border-radius: 100px;
  padding-left: 10px;
  width: 50%;
  font-size: 18px;
  font-family: viga;
  flex-grow: 1;
  border: none;
  flex-grow: 1;
}
.wrap-1 {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 5px;
  gap: 24px;
  width: 75%;
}
.wrap-2 {
  background-color: #fff;
  padding: 5px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

}
.new-imgs {
  width: 45px;

}
.messanger-new-in input::placeholder {
  color: #000;
}
.camera-new,
.audio-new {
  background-color: #fff !important;
  border-radius: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}
.camera-new:hover {
  box-shadow: #4200ff 0 0 0 5px;
  transition: 0.2s;
  cursor: pointer;
}
.camera-new img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.in-or-out {
  background-color: #4200ff;
  color: white;
  border-radius: 55px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 5px;
  padding-inline: 15px;
  margin-top: 5px;
}
#receive-msg-btn {
  background-color: blueviolet;
  cursor: pointer;
  overflow: hidden;
}
#send-msg-btn {
  background-color: blueviolet;
  cursor: pointer;
  overflow: hidden;
}
#receive-msg-btn img {
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: backwards;
}
#send-msg-btn img {
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: backwards;
  animation-direction: reverse;
}
@keyframes send {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(50px);
  }
  51% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0px);
  }
}
.info-bubble {
  width: 20px;
  margin: 0;
}
.tips-hooks {
  display: flex;
  gap: 5px;
}
.bubbles-n {
  border: 10px solid #4200ff;
  border-radius: 15px;
  color: #4200ff;
  font-family: viga;
  padding-top: 15px;
}
.top-circles {
  display: flex;
  gap: 5px;
  align-items: center;
}
.tips-mf {
  width: 100px;
}
.tips-mf:hover {
  transition: 0.2s;
  transform: scale(1.1);
  cursor: pointer;
}
.tips-mf-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  margin-bottom: 10px;
}
.tips-btn {
  cursor: pointer;
}
.tips:hover {
  transition: 0.2s;
  transform: scale(0.9);
}
.-wrapper {
  margin-top: 15px;
  padding: 15px;
  height: fit-content;
  width: 100%;
}
.export {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  gap: 20px;
  flex-direction: row-reverse;
}
.export-btn {
  background-color: #3D7FFF;
  width: 50%;
  height: 100%;
  border: none;
  color: white;
  font-family: viga;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.export-btn img {
  width: 25px;
}
.export-btn:hover {
  transition: 0.2s;
  transform: scale(1.05);
}
.export-btn:last-of-type {
  background-color: #fc3c72;
}
dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff6f;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.white-box {
  background-color: white;
  padding: 25px;
  border-radius: 12pt;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  box-shadow: #222222c2 0 0 14px -1px;
}
.choices {
  width: 100px;
  height: 40px;
  border-radius: 5px;
  background-color: #919191;
  border: none;
  color: white;
  font-family: viga;
  cursor: pointer;
}
.choices:hover {
  transform: scale(1.1);
  margin-inline: 5px;
}
.choices:first-of-type {
  background-color: rgb(198, 0, 0);
}
.ex {
  position: absolute;
  width: 20px;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.bigger-platform {
  font-size: 20vw;
  background: linear-gradient(#4200ff, #00000000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.circles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transform: translateY(-120px);
  padding-bottom: 50px;
  border-bottom: #4200ff solid 5px;
}
.circles div {
  background-color: #4200ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 0 1px #ddd;
}
.circle3 {
  width: 150px;
  height: 150px;
}
.circle2,
.circle4 {
  width: 100px;
  height: 100px;
}
.circle1,
.circle5 {
  width: 50px;
  height: 50px;
}
.circles div img {
  height: 85%;
}
.in {
  background-color: #BBD2FF;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 10px;
}
.out-d {
  background-color: #BBD2FF;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 10px;
  margin-top: 10px;
}
.in-h1 {
  color: #fff;
  width: 100%;
  text-indent: 40px;
  font-size: 50px;
}
.wrap-2 label {
  padding: 0;
  margin: 0;
  height: fit-content;
  height: 45px !important;
}
.tools-in-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-inline: 15px;
}
.tools-in {
  background-color: #fff;
  border-radius: 5px;
  height: 50px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px;
  box-sizing: border-box;
}
.tools-g {
  background-color: #fff;
  border-radius: 5px;
  min-height: 50px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 4px;
  box-sizing: border-box;
  gap: 5px;
}
.tools-in:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.tools-g:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.new-imgs:hover {
  transform: scale(1.02);
  cursor: pointer;
}
.new-imgs:focus {
  transition: 0.3s;
  transform: translateY(3px);
}
.plus-plus {
  width: 14px;
}
p {
  min-width: 10px;
}
.mt-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}
input[type=checkbox] {
 cursor: pointer;
}
.ready-chat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
  border-top: solid #4200ff 5px;
}
.ready-h1 {
  font-size: 120px;
  background: linear-gradient(#4200ff, #00000000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: -2;
}
.personals {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 15px;
  max-width: 96%;
  overflow-x: scroll;
  overflow-y: visible;
  padding-inline: 20px;
  padding-bottom: 10px;
  transform: translateY(-120px);
  z-index: 9999;
  height: 220px;
}
.personals::-webkit-scrollbar {
  height: 7px;
  width: 7px;
}
.personals::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 5px;
}
.personal-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #ccc;
}
.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.person:hover {
  transition: 0.5s;
  transform: scale(1.3)translateY(-20px);
  margin-inline: 10px;
  cursor: pointer;
}
.personal-name {
  white-space: nowrap;
}
.scale {
  width: 20px;
  height: 20px;
  position: absolute;
  left: -30px;
  top: -30px;
  cursor: pointer;
}
.scale:hover {
  transform: scale(1.1);
}
.fullScreener {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  display: none;
}
.fullScreener > div{
  min-height: 844px;
  max-height: 100%;
  min-width: 390px;
  max-width: 390px;
}

