:root {
  --blue: rgb(0, 242, 255);
  --black: rgb(0,0,0);
  --white: rgb(242, 242, 242);
  --red: rgb(255, 0, 0);
}

body {
  /* __________________________ Reponsive ______________ */
}
body .container {
  width: 650px;
  height: 650px;
  margin: auto;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.548);
  box-shadow: rgba(248, 47, 47, 0.35) 5px 5px 15px;
}
body .container .main {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body .container .main .main_left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
body .container .main .main_left .avt_content {
  width: 100%;
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .container .main .main_left .avt_content .circle {
  margin-top: 10px;
  padding: 5px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  box-shadow: rgba(224, 6, 236, 0.35) 0px 5px 15px;
  position: relative;
  cursor: none;
  transition: opacity 0.2s ease-in-out, padding 0.3s ease-in-out;
}
body .container .main .main_left .avt_content .circle:hover {
  padding: 10px;
}
body .container .main .main_left .avt_content .circle img {
  width: 157px;
  border-radius: 50%;
  margin: auto;
}
body .container .main .main_left .avt_content .circle img:hover {
  transform: none;
  transition: all 0.3s ease-in-out;
}
body .container .main .main_left .avt_content .tittle_status {
  background-color: rgb(0, 0, 0);
  color: rgb(254, 133, 3);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  opacity: 0;
  transform: translateY(-100%);
  font-family: "Poppins", sans-serif;
}
body .container .main .main_left .avt_content .tittle_status-effect {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.2s ease-in;
  transition-delay: 0.2s;
}
body .container .main .main_left h1 {
  font-size: 30px;
  font-weight: 900;
  color: rgb(0, 0, 0);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
body .container .main .main_left h1:hover {
  transition: 0.3s ease-in-out;
  text-shadow: 1px 1px 2px rgb(0, 238, 255), 0 0 1em rgb(255, 0, 132), 0 0 0.2em rgb(200, 0, 255);
}
body .container .main .main_left .descript {
  width: 220px;
  text-align: center;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 18px;
  line-height: 20px;
  color: rgb(41, 42, 57);
}
@media (max-width: 1023px) {
  body .container .main .main_left {
    margin-right: unset;
    border-right: unset !important;
    height: 550px;
  }
}
body .container .main div.main_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 65%;
  padding: 20px;
}
body .container .main div.main_right .card_information {
  width: 480px;
  height: 320px;
  background-color: rgb(41, 42, 57);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
@media (max-width: 600px) {
  body .container .main div.main_right .card_information {
    width: 150%;
    height: 380px;
  }
}
@media (max-width: 425px) {
  body .container .main div.main_right .card_information {
    width: 170%;
  }
}
body .container .main div.main_right .card_top {
  display: flex;
  align-items: center;
  height: 40px;
  background-color: rgb(77, 76, 76);
  height: 10%;
}
body .container .main div.main_right .card_top ul {
  display: flex;
  list-style: none;
  margin-left: 20px;
}
body .container .main div.main_right .card_top ul li {
  background-color: rgb(50, 200, 206);
  --circle: 18px;
  width: var(--circle);
  height: var(--circle);
  border-radius: 50%;
  margin-right: 10px;
}
body .container .main div.main_right .card_top ul li:nth-child(1) {
  background-color: rgb(234, 67, 55);
}
body .container .main div.main_right .card_top ul li:nth-child(2) {
  background-color: rgb(233, 214, 12);
}
body .container .main div.main_right .card_top ul li:nth-child(3) {
  background-color: rgb(27, 215, 27);
}
body .container .main div.main_right .card_bottom {
  height: 90%;
  padding: 20px;
  padding-bottom: 0;
  padding-top: 30px;
  color: aliceblue;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 14px;
  line-height: 20px;
  position: relative;
}
body .container .main div.main_right .card_bottom .code_key_value {
  padding-left: 20px;
}
body .container .main div.main_right .card_bottom .code_key_value .code_descript {
  display: flex;
}
body .container .main div.main_right .card_bottom .code_key_value .code_color-pink {
  color: rgb(235, 16, 209);
}
body .container .main div.main_right .card_bottom .code_key_value .code_color_yellow {
  color: rgb(255, 255, 0);
}
body .container .main div.main_right .card_bottom .more_information {
  position: absolute;
  right: 14px;
  bottom: 10px;
}
body .container .main div.main_right .card_bottom .more_information ion-icon {
  font-size: 16px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  padding: 5px;
  border-radius: 50%;
  background-color: #ed6ea0;
}
body .container .main div.main_right .card_bottom .more_information ion-icon:hover {
  color: rgb(255, 255, 255);
  background-color: #da6eed;
}
body .container .main div.main_right .card_bottom .more_information span {
  position: absolute;
  top: -24px;
  right: 0;
  display: none;
  padding-left: 10px;
  padding-right: 10px;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
}
body .container .main div.main_right .card_bottom .more_information:hover .child_infor {
  display: block;
  transition: all 0.9s ease-in-out;
}
@media (max-width: 425px) {
  body .container .main div.main_right .card_bottom {
    font-size: 14px;
    padding-bottom: 20px;
  }
}
@media (max-width: 375px) {
  body .container .main div.main_right .card_bottom {
    font-size: 13px;
  }
}
@media (max-width: 350px) {
  body .container .main div.main_right .card_bottom {
    font-size: 10px;
  }
}
body .container .main div.main_right .contact {
  margin-top: 30px;
  display: flex;
  align-items: center;
  list-style: none;
}
body .container .main div.main_right .contact svg {
  font-size: 35px;
}
body .container .main div.main_right .contact svg:hover {
  transform: scale(1.2) translateY(-3px);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 425px) {
  body .container .main div.main_right .contact svg {
    font-size: 30px;
  }
}
body .container .main div.main_right .contact li {
  padding: 5px 7px;
  height: 56px;
}
body .container .main div.main_right .contact li:hover {
  border-bottom: 4px solid rgba(196, 0, 250, 0.447);
}
body .container .main div.main_right .contact li:nth-child(3) a svg {
  font-size: 33px;
}
body .container .main div.main_right .contact li:nth-child(1), body .container .main div.main_right .contact li:nth-child(2), body .container .main div.main_right .contact li:nth-child(3), body .container .main div.main_right .contact li:nth-child(4) {
  margin-right: 20px;
}
body .container .main div.main_right .contact li:nth-child(1) svg:hover {
  fill: rgb(0, 87, 250);
}
body .container .main div.main_right .contact li:nth-child(2) svg:hover {
  fill: rgb(250, 37, 0);
}
body .container .main div.main_right .contact li:nth-child(3) svg:hover {
  fill: rgb(0, 67, 250);
}
body .container .main div.main_right .contact li:nth-child(4) svg:hover {
  fill: rgb(0, 92, 250);
}
@media (max-width: 425px) {
  body .container .main div.main_right .contact li {
    padding: 3px;
    height: 30px;
  }
}
@media (max-width: 1023px) {
  body .container .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: scroll;
  }
}
@media (max-width: 700px) {
  body .container {
    border-right: unset !important;
    height: 550px;
    width: 90vw;
  }
}
@media (max-width: 700px) {
  body {
    display: flex;
    justify-content: center;
  }
}/*# sourceMappingURL=main.css.map */