@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400&display=swap');

:root {
  --colorII: #f16c50;
  --colorIII: #00a7e1;
  --white: #ffffff;
}

body, html {
  padding: 0;
  font-family: 'Rajdhani', sans-serif;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  top: 0 !important;
}

.background-standard-color {
  background: #2e4150;
}

.standard-logo-color {
  color: #f16c50;
}

.standard-logo-bg-color {
  background: #f16c50 !important;
}

.card-background-black {
  background: rgba(26, 36, 57, 0.619) !important;
}

.connection-error-icon:nth-child(1) {
  position: absolute;
  left: 10px;
  color: #0071bc;
}

.connection-error-icon:nth-child(2) {
  position: absolute;
  left: 5px;
  color: red;
}

/**/

a:hover {
  color: unset;
}

.web-menu {
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
}

.header_icon {
  padding: 9px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  position: relative;
  float: right;
  text-decoration: none;
}

.header_icon .colorII span {
  position: relative;

  z-index: 1;
}

.header_icon .colorII span:before {
  content: "";
  position: absolute;
  left: 25%;
  bottom: -2px;
  height: 2px;
  width: 50%;
  /* or 100px */
  border-bottom: 2px solid var(--colorII);
  border-radius: 3rem;
}

.header_icon .colorIII span {
  position: relative;

  z-index: 1;
}

.header_icon .colorIII span:before {
  content: "";
  position: absolute;
  left: 25%;
  bottom: -2px;
  height: 2px;
  width: 50%;
  /* or 100px */
  border-bottom: 2px solid var(--colorIII);
  border-radius: 3rem;
}

.header_icon a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
  height: 40px;
  text-decoration: none;
}


.header_icon a:hover {
  color: var(--colorII);
}

.header_icon:hover>a span {
  color: var(--colorII);
}

.header_icon:hover>a i {
  color: var(--colorII);
}

.header_icon .open-menu-dropdown {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
  height: 40px;
  text-decoration: none;
}


.header_icon .open-menu-dropdown:hover {
  color: var(--colorII);
}

.header_icon:hover>.open-menu-dropdown span {
  color: var(--colorII);
}

.header_icon:hover>.open-menu-dropdown i {
  color: var(--colorII);
}

.header_icon i {
  font-size: 15px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.header_icon span {
  transition: all 0.2s ease-in-out;
  font-size: 14px;
  margin-left: 10px;
}

.header_icon i:hover {
  transition: all .2s;
  color: var(--colorII);
}

/*:::: BOOTSTRAP PROBLEM :::::*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: .3s all ease-in-out;
}

.profile-main-icon {
  position: absolute;
  right: 15px;
  top: 15px;
}

.page-content {
  position: absolute;
  margin: 0;
  padding: 0;
  top: 90px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  overflow: hidden;
  overflow-y: scroll;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.head-logo {
  position: absolute;
  left: 70px;
  top: 10px;
  height: 70px;
  margin: 0;
}

.head-translate-icon {
  position: absolute;
  left: 200px;
  top: 33px;
  margin: 0;
  font-size: 18px;
}

@media screen and (max-width: 575px) {
  #menu_close_div {
    top: 8px;
    left: 10px;
  }
}

.page-link {
  background-color: rgb(38, 38, 38);
  border: 1px solid #808080;
  color: #808080;
}

.page-link:hover {
  background-color: #808080;
  border: 1px solid #808080;
  color: rgb(38, 38, 38);
}

.page-item.active .page-link {
  background-color: #808080;
  border: 1px solid #808080;
  color: rgb(38, 38, 38);
}

.page-item.disabled .page-link {
  background-color: #494949;
  border: 1px solid #494949;
  color: rgb(38, 38, 38);
}


/*:: carousel*/
.carousel-control-prev {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.426), #00000000);
}

.carousel-control-next {
  background: linear-gradient(90deg, #00000000, rgba(0, 0, 0, 0.426));
}

/*:::::::: MENU MOBILE*/
#menu_name {
  top: 25px;
  left: 100px;
  position: absolute;
  z-index: 3;
  font-size: 13px;
}

#menu_close {
  display: none;
}

.menu-close-center-line {
  position: absolute;
  top: 28px;
  left: 25px;
  width: 25px;
  height: 2.5px;
  background: #7a7a7a;
  border-radius: 5px;
}

#menu_close_div {
  position: absolute;
  top: 12.5px;
  left: 25px;
  width: 33px;
  height: 35px;
  border-radius: 5px;
  z-index: 5;
  transition: 0.3s all ease-in-out;
  font-size: 12px;
}


#menu_close_div:after {
  content: '';
  position: absolute;
  top: 25%;
  width: 25px;
  height: 2.5px;
  left: 0;
  background: #7a7a7a;
  border-radius: 5px;
  transition: .3s ease;
}

#menu_close_div:before {
  content: '';
  position: absolute;
  top: 65%;
  width: 25px;
  height: 2.5px;
  left: 0;
  background: #7a7a7a;
  border-radius: 5px;
  transition: .3s ease;
}

#menu_close:checked~label #menu_close_div:after {
  transform: rotate(45deg);

  width: 50%;
  height: 7%;

  top: 45%;
  left: 4px;

  background: var(--colorII);

}

#menu_close:checked~label #menu_close_div:before {
  transform: rotate(-45deg);

  width: 50%;
  height: 7%;

  top: 45%;
  left: 4px;

  background: var(--colorII);
}

input[type="checkbox"]:checked~#nav_mobile {
  transform: translateX(300px);
  box-shadow: 0 0px 30px 30px rgba(0, 0, 0, 0.25);
}

#nav_mobile_div {
  position: fixed;
  width: 0;
  height: 0;
  top: 0;
  background: none;
  z-index: 5;
}

#nav_mobile {
  width: 300px;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: -300px;
  transition: all .3s;
  z-index: 4;
  color: white;
  box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.25);
}

.head_logo_menu {
  top: 4px;
  height: 60px;
  margin: 0;
  object-fit: cover;
}

.menu_header {
  position: relative;
  top: 0;
  left: 0;
  background: url("../img/menu.jpg");
  background-size: cover;
  background-position-y: 0px;
  height: 28%;
  width: 100%;
}

.dark_menu {
  position: absolute;
  height: 101%;
  width: 100%;
  top: 0;
  background: linear-gradient(#00000000, #11131893);
}

.menu {
  align-content: center;
  display: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
  height: 72%;
  overflow-y: auto;
}

#nav_mobile ul {
  position: relative;
  margin: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 14px;
  padding: 0;
  text-align: start;
}

#nav_mobile li {
  margin: 0;
  display: block;
  padding: 6px;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  width: 100%;
  left: 0;
}

#nav_mobile li i {
  padding: 16px;
  transition: 0.3s all ease-in-out;
  text-decoration: none;
  color: #838383;
}

#nav_mobile li path {
  margin: 16px !important;
  text-decoration: none;
  color: var(--colorII);
  transition: 0.3s all ease-in-out;
}


#nav_mobile a:hover li {
  color: var(--colorII);
  background: rgba(0, 0, 0, 0.051);
}

#nav_mobile a:hover li i {
  color: var(--colorII);
}

#nav_mobile .active {
  color: var(--colorII);
}

#nav_mobile .active i {
  color: var(--colorII);
}

.sub-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease-out;
}

.sub-menu li {
  padding-left: 34px !important;
}

.sub-menu i {
  padding: 8px !important;
  padding-right: 10px !important;
}

@keyframes rotateLeft-90deg {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-90deg);
  }
}

@keyframes rotateLeftBack-90deg {
  0% {
    transform: rotate(-90deg);
  }

  100% {
    transform: rotate(0deg)
  }
}

/*::::::::  BOOTSTRAP :::::::::*/
.carousel-item {
  background-size: cover;
  background-position: center;
}

/*::::::::: HOME CARD:::::::::::*/

.card-home {
  width: 100%;
  min-height: 270px;
  margin-left: 0;
  border: 0;
  box-shadow: 0 30px 50px -14px rgba(0, 0, 0, 0.25);
  text-align: center;
  margin-bottom: 30px;
  background: #393939;
  transform-style: preserve-3d;
}

.home-card-img {
  position: relative;
  height: 200px;
  width: 100%;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.home-card-text {
  position: relative;
  border-radius: 0;
  transform: translateZ(40px);
  transition: all 0.4s;
}

@media screen and (max-width: 765px) {
  .card-home {
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .row {
    --bs-gutter-x: 0;
  }

}

@media screen and (max-width: 1250px) {
  .card-home p {
    font-size: 14px;
  }
}

/*:::::::: WRITE ANIMATION ::::::::::::*/
/*
.write_container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  background: #11131800;
  border-radius: 5px;
  border: 1px solid #f7800000;
  margin-top: 300px;
}

.write_container p {
  font-size: 20px;
  padding: 0.5rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  margin: 0;
}*/

.write_container p span.typed-text {
  color: white;
}

.write_container p span.cursor {
  display: inline-block;
  background-color: rgb(255, 255, 255);
  margin-left: 0.1rem;
  width: 2px;
  animation: blink 1s infinite;
}

.write_container p span.cursor.typing {
  animation: none;
}

@keyframes blink {
  0% {
    background-color: rgb(255, 255, 255);
  }

  49% {
    background-color: rgb(255, 255, 255);
  }

  50% {
    background-color: transparent;
  }

  99% {
    background-color: transparent;
  }

  100% {
    background-color: rgb(255, 255, 255);
  }
}

/*:::::::::::::::::::::*/

.conteudo {
  position: relative;
  width: 100%;
  left: 0%;
  margin-top: 0px;
  margin-left: 0;
  margin-right: 0;
}

.conteudo2 {
  position: relative;
  width: 100%;
  height: 650px;
  left: 0%;
  margin-top: 0px;
  background: #575858;
  margin-left: 0;
  margin-right: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
}

.div_3d {
  position: relative;
  margin: 0;
  top: 0;
  height: 450px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
  background: radial-gradient(45deg, gray);
  box-shadow: 0 30px 50px -14px rgba(0, 0, 0, 0.25);
}

model-viewer {
  width: 100%;
  height: 100%;
  margin: 0;
}

.flow_icon {
  position: abolute;
  left: 50px;
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.flow_icon2 {
  position: abolute;
  float: right;
  width: 100px;
  height: 100px;
  margin-bottom: 50px;
}

.dark {
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #00000052;
  z-index: 3;
}

.dark_text {
  position: absolute;
  width: 500px;
  height: 90%;
  top: 5%;
  left: 100px;
  background: rgba(231, 120, 16, 0.74);
  display: none;
}

.dark_text2 {
  position: absolute;
  width: 500px;
  height: 90%;
  top: 5%;
  right: 100px;
  background: rgba(16, 127, 231, 0.555);
  display: none;
}

.dark2 {
  position: relative;
  height: 50%;
  width: 100%;
  top: 0;
  background: #0000009f;
  filter: grayscale(80%);
}

/* Animação */

[data-anime] {
  opacity: 0;
  transition: .4s;
}

[data-anime]:nth-child(2) {
  transition-delay: 0.3s;
}

[data-anime]:nth-child(3) {
  transition-delay: 0.6s;
}

[data-anime="left"] {
  transform: translate3d(-50px, 0, 0);
}

[data-anime="right"] {
  transform: translate3d(50px, 0, 0);
}

[data-anime="top"] {
  transform: translate3d(0, -50px, 0);
}

[data-anime="bottom"] {
  transform: translate3d(0, 50px, 0);
}

[data-anime].animate {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

/*:::::::::: RELAX LATERAL ::::::::::*/
.linha1 {
  position: fixed;
  top: 0;
  left: 50px;
  width: 1px;
  height: 100%;
  background: rgb(172, 172, 172);
}

.linha1 img {
  position: relative;
  margin-top: 250px;
  width: 45px;
  height: 45px;
  margin-bottom: 200px;
  ;
  left: -20px;
}

.linha2 {
  position: fixed;
  top: 0;
  right: 50px;
  width: 1px;
  height: 100%;
  background: rgb(172, 172, 172);
}

.linha2 img {
  position: relative;
  right: 25px;
  margin-top: 150px;
  width: 45px;
  height: 45px;
  margin-bottom: 200px;
}

.img_equipa {
  position: relative;
  width: calc(210px + 420/1200 * 100 * 1vw);
  height: calc(80px + 280/1200 * 100 * 1vw);
  display: inline-block;
}

.texto_equipa {
  position: relative;
  width: calc(180px + 400/1200 * 100 * 1vw);
  height: calc(30px + 280/1200 * 100 * 1vw);
  margin-left: calc(-380px + 100/1200 * 100 * 1vw);
  display: inline-block;
  background: #023047c4;
  color: white;
}

/*::::::::::: ABOUT US :::::::::*/
.about-img {
  position: relative;
  width: 50%;
  left: 25%;
}

.faixa {
  position: relative;
  margin: 0;
  margin-top: 80px;
  margin-bottom: 80px;
  width: 500px;
  min-height: 250px;
}

.go_center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
}

.img_about_us_circle {
  position: relative;
  border-radius: 50%;
  border: 0px solid #111318;
  width: 226px;
  height: 224px;
  padding: 5px;
}

.img_about_us {
  position: absolute;
  border-radius: 50%;
  width: 100%;
  z-index: 2;
  left: 0;
  top: 0;
  margin: 0;
  display: inline-block;
}

.text_developer {
  position: absolute;
  top: 40px;
  right: 2.5%;
  width: 45%;
  margin: 0px;
  text-align: center;
}

.faixa p {
  position: relative;
  left: 0;
  font-size: 20px;
}

@media screen and (max-width: 530px) {
  .faixa {
    width: 100%;
    min-height: 450px;
    margin-bottom: 0;
  }

  .div_img_about_us {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .img_about_us_circle {
    position: relative;
    border-radius: 50%;
    border: 0px solid #111318;
    width: 179px;
    height: 179px;
    padding: 5px;
  }

  .text_developer {
    position: absolute;
    top: 220px;
    left: 0;
    width: 100%;
  }

  h1 {
    font-size: 20px;
  }

  .username_header {
    display: none;
  }

  .blmd-wrapp {
    box-shadow: none;
  }
}

.login_box {
  margin-top: 100px;
  margin-bottom: 30px;
  width: 80%;
}

.body_background {
  background: url(../img/bg2.jpg) no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
}

.clarear {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 0;
  background: rgba(255, 255, 255, 0.692);
  transform: translateZ(-50px);
}

.escurecer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(0, 0, 0, 0.555);
  border-radius: 3px;
}

.categorias-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transform-style: preserve-3d;
}

.categoria {
  position: relative;
  width: 300px;
  height: 250px;
  display: inline-block;
  margin: 10px;

  border-radius: 3px;
  color: white;

  perspective: 1500px;
  transform-style: preserve-3d;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  background-position: center center;
  background-size: cover;
  cursor: pointer;
}

.a_macrocategory {
  position: relative;
  width: 40%;
  display: inline-block;
  margin: 10px;
}

.macrocategory {
  position: relative;
  width: 100%;
  display: inline-block;
}

.macrocategory .categoria {
  width: 100%;
  margin: 0;
}

.categoria img {
  position: absolute;
  height: 100%;
  margin: 0;
  border-radius: 3px;
}

.categoria p {
  width: 90%;
  left: 5%;
  color: white;
  transition: .2s;
  transform: translateZ(40px);
  text-align: center;
  font-size: 18px;
  margin-top: 15px;
}

.categoria p:hover {
  color: #c0c0c0;
}

.content-margin-top {
  margin-top: 120px;
}


@media screen and (max-width: 500px) {
  .a_macrocategory {
    width: 90%;
    display: inline-block;
    margin: 10px;
  }
}


@media screen and (max-width: 1200px) {
  .categoria {
    width: 200px;
    height: 166.7px;
  }

  .categoria p {
    font-size: 16px;
  }
}

@media screen and (max-width: 700px) {
  .categoria {
    width: 133.3px;
    height: 111.13px;
  }

  .categoria p {
    font-size: 14px;
  }
}

/*::::::::::: PESQUISA :::::::::*/
.discussao {
  position: relative;
  width: 100%;
  background: none;
  border-radius: 3px;
  text-align: justify;
  margin-bottom: 20px;
  box-shadow: 0 15px 20px -20px rgba(0, 0, 0, 0.25);
  margin-top: 10px;
  padding: 15px;
  padding-left: 5px;
  padding-right: 5px;
}

.discussao p {
  color: #494949;
}


.discussao h2 {
  position: relative;
  width: 100%;
  color: #111318;
  font-size: 18px;
  padding: 0;
  margin: 0;
  text-align: center;
  overflow: hidden;
  left: 0;
  margin-top: -10px;
}

.descricao_discussao {
  position: relative;
  width: 100%;
  font-size: 15px;
}

.descricao_completa {
  position: relative;
  margin-left: 5%;
  width: 70%;
  color: #3d1e0f;
  font-size: 16px;
  margin-top: 10px;
}

h3 {
  position: relative;
  width: 100%;
  color: #111318;
  font-size: 20px;
  padding: 0;
  margin: 0;
  left: 0;
}

.n_likes {
  font-weight: bold;
  cursor: pointer;
}

.comment_n_likes {
  cursor: pointer;
}

.answer_n_likes {
  cursor: pointer;
}

.n_comments {
  font-weight: bold;
}

.info {
  top: 0;
  left: 0;
  position: relative;
  width: 100%;
  color: rgb(46, 46, 46);
}

.info .info_interations {
  display: inline-block;
  padding-left: 0;
  padding-right: 15px;
  padding-top: 5px;
}

.info .info_interations a p {
  transition: .3s ease-in-out;
  font-weight: bold;
}

.info .info_interations button {
  background: none;
}

.info .info_interations button p {
  transition: .3s ease-in-out;
  margin-left: 4px;
  font-weight: bold;
}

.info .info_interations a p:hover {
  transition: .4s all;
  color: #0077b8;
}

.info .info_interations button p:hover {
  color: #0077b8;
}

.icon-background {
  display: inline;
  background: none;
  padding: 5px;
  border-radius: 50%;
  transition: .3s ease-in-out;
  margin-left: 0px;
  margin-right: 0px;
}

.icon-background-green:hover {
  box-shadow: 0px 0px 0px 2.5px #fff, 0px 0px 0px 4.5px #28b840d2, 0px 0px 0px 10px white, 0px 0px 0px 10.5px #28b840d2;
  background: #e5e5e5;
  color: #28b840d2;
}

.icon-background-purple:hover {
  box-shadow: 0px 0px 0px 2.5px #fff, 0px 0px 0px 4.5px #7a19d48f, 0px 0px 0px 10px white, 0px 0px 0px 10.5px #7a19d48f;
  background: #e5e5e5;
  color: #7a19d48f;
}

.icon-background-orange:hover {
  box-shadow: 0px 0px 0px 2.5px #fff, 0px 0px 0px 4.5px #f34d0075, 0px 0px 0px 10px white, 0px 0px 0px 10.5px #f34d0075;
  background: #e5e5e5;
  color: #f34d0075;
}

.icon-background-dark:hover {
  box-shadow: 0px 0px 0px 2.5px #fff, 0px 0px 0px 4.5px #00000069, 0px 0px 0px 10px white, 0px 0px 0px 10.5px #00000069;
  background: #e5e5e5;
  color: #00000069;
}

.icon-background-red:hover {
  box-shadow: 0px 0px 0px 2.5px #fff, 0px 0px 0px 4.5px #f3000075, 0px 0px 0px 10px white, 0px 0px 0px 10.5px #f3000075;
  background: #e5e5e5;
  color: #f3000075;
}

.icon-background-blue:hover {
  box-shadow: 0px 0px 0px 2.5px #fff, 0px 0px 0px 4.5px #0078b87b, 0px 0px 0px 10px white, 0px 0px 0px 10.5px #0078b87b;
  background: #e5e5e5;
  color: #0078b87b;
}

.icon-background i {
  padding: 0 !important;
}

@media screen and (max-width: 700px) {
  .info .info_interations a p {
    display: none;
  }

  .info .info_interations button p {
    display: none;
  }

  .info .info_interations .icon-background {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .info_interations_open_post {
    margin-left: 10px;
  }
}

@keyframes post_button_interations {
  0% {
    font-size: 18px;
    top: 0;
  }

  50% {
    font-size: 20px;
    top: 3px;
  }

  100% {
    font-size: 18px;
    top: 0;
  }
}

/*:::::: LIKE BUTTON ::::::*/
svg.like-icon .heart {
  fill: transparent;
  stroke: #f83737;
  stroke-width: 9;
  transition: all 0.4s ease-out;
  transform-box: border-box;
  transform-origin: 50% 50%;
}

svg.like-icon .heartEX {
  fill: #f83737;
  stroke: transparent;
  transform-box: border-box;
  transform-origin: 50% 50%;
  stroke-width: 12px;
  transform: scale(0);
  transition: none;
}

svg.like-icon .points {
  stroke: transparent;
  fill: none;
  transform-box: border-box;
  transform-origin: 50% 50%;
  stroke-width: 6;
  stroke-dasharray: 20 20;
  xstroke: #c00;
  transform: scale(1.8);
  opacity: 1;
  stroke-linecap: round;
}

svg.like-icon.on .points {
  stroke: #c00a;
  stroke-dasharray: 0 40;
  opacity: 0;
  stroke-width: 1;
  transition: stroke-dasharray, opacity, stroke, stroke-width;
  transition-duration: 0.5s, 0.05s, 0.3s, 0.2s;
  transition-delay: 0.4s, 0.7s, 0.4s, 0.7s;
}

svg.like-icon.on .heartEX {
  transform: scale(1.8);
  opacity: 0;
  fill: transparent;
  stroke: #c00;
  stroke-width: 0;
  transition: transform, fill, stroke-width, opacity;
  transition-duration: 0.6s, 0.2s, 0.3s, 0.4s;
  transition-delay: 0s, 0.4s, 0.5s, 0.4s;
}

svg.like-icon.on .heart {
  transform: scale(0.98);
  fill: #f83737;
}

form svg {
  overflow: visible;
  width: 20px;
  padding: 0;
  display: inline;
  margin-top: -4px;
  margin-right: 0;
}

/*::::::::::::::*/
button {
  outline: none;
  border: none;
}

button:focus {
  outline: none;
  border: none;
}

.submitLikePostForm:focus {
  border: none;
  outline: none;
}

.submitLikeCommentForm:focus {
  border: none;
  outline: none;
}

.submitSharePost {
  border: none;
  outline: none;
}

.sharePost {
  width: 100%;
}

.submitSharePost:focus {
  border: none;
  outline: none;
}

.p_ver_respostas {
  color: #111318;
  font-weight: 600;
  transition: ease-in-out 0.2s;
}

.info .info_interations form p:hover {
  color: #0077b6;
}

.info .info_interations i {
  display: inline;
  padding-left: 10px;
  padding-right: 8px;
  padding-top: 5px;
}

.info_interations_open_post i {
  font-size: 18px;
}

.info .info_interations img {
  display: inline;
  padding: 0;
  width: 22px;
  height: 22px;
  margin: 10px;
}

.profile-head-icon {
  font-size: 20px;
}

.orange {
  color: #f77f00 !important;
}

.orange2 {
  color: #f34d00 !important;
}

.red {
  color: #d62828 !important;
}

.purple {
  color: rgb(109, 8, 202) !important;
}

.green {
  color: #28b840;
}

.black-modified {
  color: #111318 !important;
}

.white-modified {
  color: #e7ecef !important;
}

.colorII {
  color: #f16c50 !important;
}

.colorIII {
  color: #00a7e1 !important;
}

.bg-colorIII {
  background-color: #00a7e1 !important;
}

.blue {
  color: #00a7e1 !important;
}

.gray {
  color: #444444 !important;
}

.info .info_interations p {
  display: inline;
  font-size: 14px;
}

.data_post {
  position: relative;
  top: 17px;
  float: right;
  font-size: 12px;
  height: 30px;
}

.comentario .data_post {
  top: 7px;
}

@media screen and (max-width: 992px) {
  .info .info_interations {
    min-width: 20px;
    padding: 2px;
    align-items: flex-end;
  }

  .info .info_interations p {
    font-size: 12px;
  }

  .data_post {
    font-size: 12px;
  }

  .info_interations_open_post i {
    font-size: 16px;
  }

  .info .info_interations i {
    padding-right: 5px;
  }
}

.interation-form {
  display: inline;
}

.interation-form button {
  border: none;
  background: none;
}

/*::::::::::: COMENTÁRIO ::::::::::*/
.comment_form h2 {
  position: relative;
  width: 100%;
  color: #111318;
  font-size: 18px;
  padding: 0;
  margin: 0;
  left: 0;
}

.comment-textarea {
  height: 20px;
  resize: none;
  border-bottom: 1px solid #cfcfcf !important;
}

.comment-textarea:focus {
  box-shadow: none !important;
}

.p_comentario {
  color: #003049;
  font-size: 23px;
  font-weight: bold;
  position: relative;
  margin-left: 5%;
}

.a_img {
  width: 30px;
  height: 30px;
}

.a_img2 {
  width: 35px;
  height: 35px;
  transition: ease 0.4s;
}

.p1_comentario {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}

.p2_comentario {
  color: #003049;
  font-size: 16px;
  position: relative;
  margin-top: 20px;
}

.p3_comentario {
  color: #003049;
  font-size: 16px;
  position: absolute;
  bottom: 0px;
  right: 0%;
}

.p4_comentario {
  color: black;
  font-size: 17px;
  position: relative;
}

.p5_comentario {
  color: black;
  font-size: 14px;
  font-weight: normal;
  position: relative;
  text-align: justify;
  max-height: 85px;
  overflow: hidden;
}

.read-more-support {
  position: relative;
  width: 100%;
  margin: 0;
}

.read-more {
  position: absolute;
  outline: none;
  border: none;
  font-size: 12px;
  font-weight: bold;
  padding: 0;
  margin-bottom: 10px;
  color: rgb(41, 41, 41);
  z-index: 2;
  right: 0;
  background: none;
}

.read-more:hover {
  color: #0077b8;
}

.showContent {
  padding-right: 5px;
  max-height: 300px;
  overflow-y: scroll;
}

.showContent2 {
  padding-right: 5px;
  max-height: 120px;
  overflow-y: scroll !important;
}

.p5_comentario::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.p5_comentario::-webkit-scrollbar-track {
  background: #ffffff;
}

.p5_comentario::-webkit-scrollbar-thumb {
  background: #666b7a;
  border-radius: 5px;
}


.star {
  margin-left: 20px;
}

.comment_textarea {
  height: 150px;
  width: 100%;
  border: 1px solid #4b4b4b;
  border-radius: 3px;
  background: #e5e5e5;
  color: black;
  font-size: 15px;
  padding: 5px;
}

.comment_textarea:focus {
  box-shadow: 0 15px 30px -14px rgba(0, 0, 0, 0.25);
  outline: none;
}

.best_coment_icon {
  position: relative;
  top: 10px;
  float: right;
}

.hr_comentario {
  width: 100%;
  border: none;
  background-color: #cfcfcf;
  height: 0.5px;
  opacity: 1;
  margin: 0;
}

.comentario {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  padding: 0px;
}

.best {
  position: relative;
  width: 45px;
  height: 40px;
  margin-bottom: 25px;
}

.discussao_i {
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.discussao_i:hover {
  font-size: 17px;
}

#share-buttons {
  width: 100%;
  display: block;
  min-height: 60px;
  margin-bottom: 40px;
}

#share-buttons img {
  width: 45px;
  padding: 5px;
  border: 0;
  box-shadow: 0;
  display: inline;
}

#share-buttons i {
  width: 45px;
  padding: 5px;
  display: inline;
  color: #003049;
}

#share-buttons i:hover {
  color: #a31832;
}

/*::::::::::: ANSWERS ::::::::::*/
.answers-support {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000000af;
  z-index: 100;
  top: 0;
  left: 0;
  margin: 0;
}

.answers-support .answers {
  position: fixed;
  height: 90%;
  width: 70%;
  background: #ffffff;
  top: 5%;
  left: 15%;
  margin: 0;
  border-radius: 2px;
}

/*::::::::: CLOSE BUTTON ::::::::::::*/
.answers-support .answers-close-icon {
  color: #ffffff;
  font-size: 20px;
  position: absolute;
  top: 30px;
  right: 60px;
  cursor: pointer;
  transition: ease-in-out .3s;
  display: none;
}

.answers-support .btn {
  height: 15px;
  text-align: center;
  padding: 0;
  width: 60px;
  cursor: pointer;
  top: 35px;
  right: 50px;
  cursor: pointer;
  position: absolute;
  z-index: 100;
}

.btn-two {
  transition: all 0.3s;
  position: relative;
}

.btn-two span {
  display: block;
  width: 100%;
  height: 40px;
  margin-top: -5px;
  font-size: 14px;
  font-weight: normal;
  transition: all 0.3s;
  padding: 0;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.btn-two span:hover {
  z-index: 2;
  color: rgba(255, 255, 255, 0);
}

.btn-two::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
}

.btn-two::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
}

.btn-two:hover::before {
  transform: rotate(-45deg);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-two:hover::after {
  transform: rotate(45deg);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/*::::::::::*/
.answers-support .answers .asnwers-comment {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  height: 210px;
  overflow: hidden;
  box-shadow: 0 1px 35px -12px rgba(0, 0, 0, 0.6)
}

.answers-support .answers .asnwers-comment .p5_comentario {
  height: 85px;
  overflow: hidden;
  overflow-y: scroll;
  margin-bottom: 5px;
  padding: 4px;
}

.answers-support .answers .answers-posted-support {
  position: absolute;
  width: 100%;
  height: 200px;
  top: 215px;
  left: 0;
  padding-left: 30px;
  padding-right: 30px;
}

.answers-support .answers .answers-posted {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: scroll;
  padding-left: 15px;
  padding-right: 15px;
}

.answers-support .answers .answers-posted .p5_comentario {
  margin: 0;
}

.answers-support .answers .answers-posted .error-message {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}

.answers-support .answers .answers-posted::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.answers-support .answers .answers-posted::-webkit-scrollbar-track {
  background: #ffffff;
}

.answers-support .answers .answers-posted::-webkit-scrollbar-thumb {
  background: #bebebe;
  border-radius: 5px;
}

.answers-support .answers-close-icon:hover {
  color: #adadad;
}

.answers-support .answers .answer-form {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  padding-left: 5px;
  padding-right: 10px;
  padding-top: 10px;
  height: 65px;
  background: #fff;
  border-top: 1px solid rgb(231, 231, 231);
}

.answers-support .answers .answer-form .blmd-form .blmd-line {
  position: absolute;
  margin-top: -30px;
}

.answers-support .answers .answer-form .blmd-form {
  width: 90%;
  left: 5%;
  font-size: 14px;
}

.answers-support .answers .answer-form .blmd-form input {
  font-size: 13px;
  height: 25px;
}

.answers-support .answers .answer-form .post-profile-user {
  bottom: 10px;
}

#asnwer-send-button {
  position: absolute;
  right: 15px;
  color: #313131;
  bottom: 15px;
  font-size: 18px;
  border: 0;
  outline: 0;
  background: none;
  transition: ease-in-out .3s;
  cursor: pointer !important;
}

#asnwer-send-button:hover {
  color: #0077b8;
}

/*delete comment confirm*/
.dark-background {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000000e0;
  z-index: 100;
  top: 0;
  left: 0;
  margin: 0;
}

.dark-background .white-support {
  position: fixed;
  height: 200px;
  width: 400px;
  background: #e5e5e5;
  margin: 0;
  border-radius: 2px;
  padding: 30px;
}

.dark-background .white-support .blmd-form {
  margin: 0;
  margin-top: 10px;
  margin-bottom: 30px;
}

.dark-background .white-support-2 {
  width: 600px;
  height: 200px;
  background: #e5e5e5;
}

.dark-background .white-support-3 {
  width: 600px;
  height: unset;
  min-height: 270px;
}

.dark-background .white-support-4 {
  width: 500px;
  height: 250px;
  overflow-y: hidden;
}

.dark-background .answers-close-icon {
  color: #ffffff;
  font-size: 20px;
  position: absolute;
  top: 30px;
  right: 60px;
  cursor: pointer;
  transition: ease-in-out .3s;
  display: none;
}

.dark-background .btn {
  height: 15px;
  text-align: center;
  padding: 0;
  width: 60px;
  cursor: pointer;
  top: 35px;
  right: 50px;
  cursor: pointer;
  position: absolute;
}

@media screen and (max-width: 500px) {
  .dark-background .btn {
    top: 30px;
    right: 25px;
  }

  .delete-image {
    bottom: 30px;
    right: 25px;
  }
}

.dark-background .white-support p {
  font-size: 14px;
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.share-p {
  font-size: 15px !important;
  font-weight: bold;
  margin-bottom: 15px !important;
}


.dark-background .btn-standard {
  border: 1px solid #f16c50;
}

.editCommentForm {
  width: 100%;
}

.editAnswerForm {
  width: 100%;
}

.editAnswerForm button {
  font-size: 14px;
  width: 120px;
  margin: 10px;
}

.deleteAnswerForm button {
  font-size: 14px;
  width: 120px;
  margin: 10px;
}

@media screen and (max-width: 650px) {
  .dark-background .white-support-2 {
    width: 95%;
    left: 2.5%;
  }

  .dark-background .white-support-3 {
    width: 95%;
    left: 2.5%;
  }
}

@media screen and (max-width: 450px) {
  .dark-background .white-support {
    width: 95%;
    left: 2.5%;
  }
}

/*::::::::::::::::::::*/
.img_car {
  width: 70%;
  margin-left: 5%;
  border-radius: 3px;
  height: calc(100px + 350/1200 * 100 * 1vw);
  transition: none;
  margin-bottom: 20px;
}


@media screen and (max-width: 1300px) {
  .answers-support .answers .answer-form .blmd-form {
    width: 85%;
    left: 7.5%;
  }
}

@media screen and (max-width: 950px) {
  .answers-support .answers {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 0px;
  }

  .answers-support .answers-close-icon {
    color: #444444;
    font-size: 18px;
    z-index: 2;
    top: 20px;
    right: 30px;
    display: block;
  }

  .answers-support .btn {
    display: none;
  }

  .answers-support .answers-close-icon:hover {
    color: #000000;
  }
}

@media screen and (max-width: 650px) {
  .answers-support .answers .answer-form .blmd-form {
    width: 75%;
    left: 12.5%;
  }

  .answers-support .answers .asnwers-comment {
    padding-left: 15px;
    padding-right: 15px;
  }

  .answers-support .answers .answers-posted-support {
    padding-left: 10px;
    padding-right: 10px;
  }

  .answers-support .answers .answers-posted {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 380px) {
  .answers-support .answers .answer-form .blmd-form {
    width: 65%;
    left: 17.5%;
  }
}

/*:::::::::::::::::::::::*/
.container-soft-padding {
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 900px) {

  .img_car {
    margin-left: 5%;
    width: 60%;
  }

  .search_shape {
    width: 100%;
    margin: 0;
  }

  .container {
    width: 100%;
    margin: 0;
    padding-right: 30px;
    padding-left: 30px;
  }

}

@media screen and (max-width: 575px) {
  .img_equipa {
    position: absolute;
    width: 80%;
    left: 10%;
    height: calc(80px + 280/1200 * 100 * 1vw);
    display: inline-block;
  }

  .texto_equipa {
    position: absolute;
    width: 60%;
    height: calc(50px + 280/1200 * 100 * 1vw);
    left: 20%;
    margin-left: 0px;
    margin-top: 20px;
    display: inline-block;
  }

  .conteudo {
    height: calc(200px + 300/1200 * 100 * 1vw);
  }

  .img_car {
    margin-left: 5%;
    width: 50%;
  }

  .container {
    padding-right: 0;
    padding-left: 0;
  }

}

@media screen and (max-width: 300px) {
  #nav_mobile {
    width: 100% !important;
  }
}

/*::::::::::::::: LOADER ::::::::::::::::::::*/
.center {
  position: fixed;
  margin: 0;
  padding: 0;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  z-index: 1000;
  background: #111318;
  overflow: hidden;
}

.ring {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  animation: ring 2s linear infinite;
  margin: 0;
  padding: 0;
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
    box-shadow: 1px 3px 2px #f77f00;
  }

  50% {
    transform: rotate(180deg);
    box-shadow: 1px 3px 2px #0077b8;
  }

  100% {
    transform: rotate(360deg);
    box-shadow: 1px 3px 2px #f77f00;
  }
}

.ring:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255, 255, 255, .3);
  margin: 0;
  padding: 0;
}

.center span {
  color: #737373;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 130px;
  animation: text 3s ease-in-out infinite;
  margin: 0;
  padding: 0;
}

@keyframes text {
  50% {
    color: black;
  }
}

/*::::::::::::::: PERFIL ::::::::::::::::::::*/
.emp-profile {
  margin-top: 60px;
  padding: 30px;
  border-radius: 3px;
  background: none;
  box-shadow: 0 15px 30px -12px rgb(0 0 0 / 25%);
}

.profile-img {
  text-align: center;
  width: 185px;
  max-height: 200px;
}

.profile-img img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.profile-img .file {
  position: relative;
  overflow: hidden;
  font-size: 14px;
  background: none;
  margin-top: 10px;
  border: 1px solid #0077b8;
  border-radius: 1.5rem;
  width: 120px;
  padding: 5px;
  font-weight: normal;
  color: #0077b8;
  cursor: pointer;
  transition: 0.3s;
}

.profile-img .file:hover {
  background: #0077b8;
  color: white;
}

.profile-img .file input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
}

.profile-head h4 {
  font-size: 18px;
  color: #202020;
  font-weight: bold;
  width: 85%;

  margin-top: 0px;
  margin-bottom: 0px;
}

.profile-head h5 {
  font-size: 15px;
  color: #0077b8;
}

.profile-head p {
  font-size: 15px;
  color: #202020;
  width: 100%;
  max-height: 65px;
  overflow: hidden;
}

.profile-head h6 {
  color: #111318;
}

.profile-attributes {
  position: relative;
  margin-top: 40px;
  width: 100%;
  border-bottom: 1px solid #cdcdcd;
  border-top: 1px solid #cdcdcd;
}

.profile-attributes .attribute {
  width: 150px;
  height: 50px;
  display: inline-block;
}

.profile-crowns i {
  font-size: 25px;
  margin-left: 10px;
}

.profile-crowns p {
  width: 100%;
  text-align: center;
  font-size: 18px !important;
  margin: 0;
  color: #d62828;
}

.profile-attributes .attribute p {
  width: 100%;
  font-size: 15px;
  text-align: center;
  margin: 0;
  margin-top: 14px;
}

.settings-first-support {
  padding: 80px;
  padding-top: 50px;
  overflow-y: scroll;
}

.settings-first-support h2 {
  font-weight: bold;
  font-size: 20px;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

.settings-first-support h3 {
  font-weight: bold;
  font-size: 18px;
  color: #1a1a1a;
  margin-top: 30px;
}

.settings-first-support p {
  font-size: 14px;
  color: #484848;
  margin-top: 10px;
  max-width: 70%;
}

.settings-first-support a {
  margin: 0;
  float: right;
  top: -26px;
  position: relative;
}

.settings-first-support .switch-support {
  position: absolute;
  margin-top: 0;
  right: 50px;
  width: 150px;
}


@media screen and (max-width: 650px) {
  .profile-attributes .attribute p {
    font-size: 13px;
  }

  .profile-crowns p {
    font-size: 15px;
  }

  .settings-first-support {
    padding: 20px;
    padding-top: 30px;
  }

  .settings-first-support .switch-support {
    right: 0;
  }

  .settings-first-support h3 {
    font-weight: bold;
    font-size: 14px;
  }

  .settings-first-support p {
    max-width: 60%;
  }

  .settings-first-support a {
    top: -24px;
    right: 15px;
  }
}

.btn-standard {
  border: 1px solid #f16c50;
  border-radius: 0.5rem;
  width: 130px;
  padding: 6px;
  font-weight: normal;
  color: #f16c50;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
  background: none;
}

.btn-standard:hover {
  background: #f16c50;
  color: white;
}

.btn-standard-2 {
  border: 1px solid rgb(255, 255, 255);
  border-radius: 1.5rem;
  min-width: 80px;
  padding: 4px;
  font-weight: normal;
  color: rgb(255, 255, 255);
  cursor: pointer;
  transition: 0.3s;
  background: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.btn-standard-2:hover {
  background: rgb(241, 241, 241);
  color: rgb(41 37 36);
}

.btn-standard-3 {
  border: 1px solid var(--colorIII);
  border-radius: 1.5rem;
  min-width: 80px;
  padding: 6px;
  font-weight: normal;
  color: var(--colorIII);
  cursor: pointer;
  transition: 0.3s;
  background: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.btn-standard-3:hover {
  background: var(--colorIII);
  color: rgb(41 37 36);
}


.find-user-btn-follow {
  position: absolute;
  right: 5px;
  bottom: 30px;
  font-size: 13px;
}

.find-user-btn-follow:focus {
  border: 1px solid #f16c50;
}

.find-user-btn-follow-view-profile {
  position: relative;
  bottom: 0;
}

.find-user-btn-follow-see-likes {
  bottom: 20px;
}

.icon-button {
  border-radius: 1.5rem;
  width: 100%;
  padding: 5px;
  font-weight: normal;
  color: #111318;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
  background: none;
  border: none;
  align-items: flex-end;
}

.icon-button i {
  float: right;
}

.icon-button:hover {
  color: #7c0000;
}

.btn-standard-ii {
  border: 1px solid #f16c50;
  border-radius: 1.5rem;
  width: 150px;
  padding: 5px;
  font-weight: normal;
  color: #f16c50;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
  background: none;
}

.btn-standard-ii:hover {
  background: #f16c50;
  color: white;
}

.micro-padding-left {
  padding-left: 2px !important;
}

.no_padding {
  padding: 0 !important;
}

.no_padding_left {
  padding-left: 0 !important;
}

.no_padding_right {
  padding-right: 0 !important;
}

.float-right {
  float: right;
}

.soft-box-shadow {
  box-shadow: 0 1px 25px -8px rgba(0, 0, 0, 0.25) !important;
}

.background-none {
  background: none !important;
}

.soft-neg-margin-top {
  margin-top: -20px !important;
}

.no_margin_top {
  margin-top: 0 !important;
}

.soft-margin {
  margin: 20px !important;
}

.display-block {
  display: block !important;
}

.ligth-margin-left {
  margin-left: 10px !important;
}

.ligth-margin-right {
  margin-right: 10px !important;
}

.soft-margin-top {
  margin-top: 60px !important;
}

.soft-left {
  left: 50px;
}

.light-margin-top {
  margin-top: 15px !important;
}

.light-padding {
  padding: 5px !important;
}

.soft-padding-left {
  padding-left: 15px;
}

.no_shadow {
  box-shadow: none;
}

.font-weight-bold {
  font-weight: bold;
}

.small-font-size {
  font-size: small !important;
}

.super-small-font-size {
  font-size: 10px !important;
}

.profile-head {
  width: 300px;
  background: rgba(168, 168, 168, 0);
  margin-top: 0px;
  padding: 0;
  position: relative;
}

.profile-settings {
  position: absolute;
  right: 10px;
  color: #111318;
  cursor: pointer;
  font-size: 20px;
}

/*
.edit-profile-img{
  width: 150px!important;
  height: 10px!important;
}*/

.info .info_interations_profile {
  width: 90px;
}

@media screen and (max-width: 650px) {
  .emp-profile {
    padding: 15px;
  }

  .profile-img {
    width: 40%;
    height: 150px;
  }

  .profile-img img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
  }

  .profile-img .file {
    font-size: 12px;
    width: 80px;
    padding: 5px;
  }

  .profile-head {
    width: 60%;
    margin-top: 0px;
    padding: 10px;
  }

  .profile-head h4 {
    font-size: 16px;
  }


  .profile-head h5 {
    font-size: 13px;
  }

  .info .info_interations_profile {
    width: 60px;

  }

  .profile-head-icon {
    font-size: 15px;
    padding: 8px;
  }

}

.proile-rating {
  font-size: 12px;
  color: #818182;
  margin-top: 5%;
}

.proile-rating span {
  color: #495057;
  font-size: 15px;
  font-weight: 600;
}

.profile-head .nav-tabs {
  margin-bottom: 5%;
}

.profile-head .nav-tabs .nav-link {
  font-weight: 600;
  border: none;
}

.profile-head .nav-tabs .nav-link.active {
  border: none;
  border-bottom: 2px solid #004186;
}

.profile-work {
  position: relative;
}

.profile-work p {
  font-size: 12px;
  color: #818182;
  font-weight: 600;
  margin-top: 10%;
}

.profile-work a {
  text-decoration: none;
  color: #495057;
  font-weight: 600;
  font-size: 14px;
  width: 100%;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.links {
  position: relative;
}

.competencias {
  position: relative;
}

.cursor-pointer {
  cursor: pointer;
}

.profile-work ul {
  list-style: none;
}

.profile-tab label {
  font-weight: 600;
}

.profile-tab p {
  font-weight: normal;
  color: #000000;
}

@media screen and (max-width: 900px) {
  .discussao {
    padding: 5px;
  }

  .container-md {
    padding: 0;
  }

  .info {
    margin-bottom: 5px;
  }

  .profile-work {
    width: 100%;
    text-align: start;
  }

  .profile-work .links a {
    width: unset;
    padding: 10px;
    display: inline;
  }

  .profile-work p {
    margin-top: 20px;
  }

  .profile-work .competencias {
    margin-bottom: 0;
  }

  .profile-work .competencias a {
    width: unset;
    padding: 10px;
    display: inline;
  }

  .emp-profile {
    box-shadow: none;
  }
}

@media screen and (max-width: 900px) {
  .discussao {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 765px) {
  .info-panel {
    text-align: start;
  }
}

/*:::: PROFILE NAV ::::::::::*/
.profile-nav {
  position: relative;
  width: 100%;
  height: 40px;
  border-bottom: 0px solid rgb(197, 197, 197);
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
  margin-top: 15px;
}

.profile-nav .option {
  position: relative;
  margin: 0;
  width: 19.5%;
  max-width: 120px;
  height: 90%;
  top: 5%;
  float: left;
  align-items: center;
  padding: 0px;
  overflow: hidden;
  align-items: center;
  margin-left: 0.5%;
}

.profile-nav a {
  margin: 0;
  width: 20%;
  height: 100%;
  top: 0;
  padding: 0;
  max-width: 120px;
  float: left;
  margin-left: 20px;
}

.profile-nav .option {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
}

.profile-nav .option i {
  margin: 0;
  font-size: 15px;
  cursor: pointer;
  font-size: 15px;
  padding: 5px;
}

.profile-nav .option .btn {
  height: 100%;
  text-align: center;
  width: 100%;
  cursor: pointer;
  padding: 0;
}

.btn-three {
  transition: all 0.3s;
  float: left;
  height: 90%;
  top: 5%;
  padding: 0;
  align-items: center;
}

.btn-three span {
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 14px;
  z-index: 2;
  width: 100%;
}

.btn-three:hover {
  color: var(--colorIII);
}

.btn-three-selected {
  color: var(--colorIII);
  transition: all 0.3s;
  float: left;
  width: 100%;
  height: 100%;
  padding: 0;
  max-width: 120px;
  border-radius: 0;
  border-bottom: 1px solid var(--colorIII);
}

.btn-three-selected:hover {
  color: var(--colorIII);
}

.btn-three-selected span {
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: small;
  z-index: 2;
  color: var(--colorIII);
}


.btn-three-selected i {
  color: var(--colorIII);
}

@media screen and (max-width: 1000px) {
  .btn-three-selected span {
    width: 100%;
  }

  .btn-three span {
    position: absolute;
    top: 25px;
    width: 100%;
    font-size: 13px;
  }

  .btn-three-selected span {
    position: absolute;
    top: 25px;
    width: 100%;
    font-size: 13px;
  }

  .profile-nav {
    height: 60px;
  }

  .profile-nav a {
    width: 20%;
    max-width: unset;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
  }
}

@media screen and (max-width: 900px) {
  .profile-nav {
    margin-top: 5px;
  }
}

@media screen and (max-width: 500px) {
  .btn-three span {
    font-size: 11px;
  }

  .btn-three-selected span {
    font-size: 11px;
  }

  .profile-nav {
    height: 50px;
  }
}

.show-user {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  min-height: 80px;
  border-bottom: 1px solid rgb(206, 206, 206);
  padding-top: 5px;
  padding-bottom: 5px;
}

.follow-since {
  position: absolute;
  right: 20px;
  bottom: 0;
  font-size: 12px;
  color: #8f8f8f;
  font-weight: bold;
  margin-bottom: 8px;
}

.delete-user {
  position: absolute;
  right: 20px;
  top: 22px;
  font-size: 14px;
  width: 100px;
  padding: 5px;
}

.user-bio {
  position: relative;
  left: 0;
  width: 80%;
  font-size: 14px;
  margin-bottom: 0;
  color: rgb(57, 57, 57);
}

.notification-p {
  position: relative;
  left: 0;
  top: -7px;
  width: 80%;
  font-size: 14px;
  margin-bottom: 0;
  color: rgb(57, 57, 57);
  display: inline;
}

#profile-photos {
  /*
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transform-style: preserve-3d;*/
}

.profile-photo-support {
  position: relative;
  display: block;
  width: 150px;
  height: 150px;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  transition: .3s ease-in-out;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
}

.menu-profile-photo-support {
  width: 115px;
  height: 115px;
  margin-top: 0;
  border: 0px solid transparent;
}

.menu-user-name {
  position: relative;
  margin: 0;
  font-size: 15px;
  width: 100%;
  text-align: center;
  transition: .4s all;
  cursor: pointer;
  color: #fff;
  padding: 8px;
}

.menu-profile-img {
  width: 115px;
  padding: 0;
}

.edit-profile-photo {
  position: relative;
  width: 60%;
  height: 0;
  margin: 0;
  padding-bottom: 60%;
  display: flex;
  align-content: center;
  align-self: center;
  align-items: center;
  margin-left: 20%;
  margin-top: 20%;
}

.edit-profile-photo i {
  margin-top: 100%;
}

.profile-photo-support:hover {
  border: 1.5px solid black;
}

.menu-profile-photo-support:hover {
  border: 1.5px solid var(--colorII);
}

.profile-photo-support:hover i {
  color: rgb(255, 255, 255);
}

.profile-photo-support i {
  transition: .3s ease-in-out;
  font-size: 20px;
  color: #fff;
}

.profile-photo-support-small {
  width: 100%;
  height: 100%;
  margin-left: -4px;
}

.update-profile-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000b6;
}

.user-photo-support {
  position: relative;
  display: inline-block;
  width: 24%;
  height: 0;
  margin: 0.5%;
  padding: 0;
  padding-bottom: 24%;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  transition: .3s ease-in-out;
  border: 1px solid #fff;
}

.user-photo-support:hover {
  /*border: 1px solid black;
  border-radius: 0.5rem;*/
}

.img-see-photo-support {
  width: 80%;
  height: 100%;
}

.img-see-photo {
  position: relative;
  max-width: 100%;
  max-height: 100%;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }

  to {
    -webkit-transform: scale(1);
  }
}

@keyframes zoom {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@media screen and (max-width: 1000px) {
  .img-see-photo-support {
    width: 97%;
    height: 80%;
  }
}

@media screen and (max-width: 420px) {
  .user-photo-support {
    width: 32%;
    margin: 0.5%;
    padding-bottom: 32%;
  }
}

@media screen and (max-width: 570px) {

  .show-user {
    padding-left: 5px;
    padding-right: 5px;
  }

  .delete-user {
    position: absolute;
    right: 20px;
    top: 22px;
    font-size: 14px;
    width: 100px;
    padding: 5px;
  }

  .user-bio {
    width: 65%;
    font-size: 13px;
  }
}

/*Toggle button*/
.switch-support {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 40px;
}

.switch-support p {
  margin: 5px;
  font-size: 12px;
  font-weight: bold;
  width: 70px;
  display: inline;
  overflow: hidden;
}

.switch {
  position: relative;
  width: 40px;
  height: 24px;
  display: inline-block;
  margin-left: 17px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2195f3cb;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: #e5e5e5;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch input:checked+.slider {
  background-color: #f77f00;
}

.switch input:focus+.slider {
  /*box-shadow: 0 0 1px #2196F3;*/
}

.switch input:checked+.slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

/* Rounded sliders */
.switch .slider.round {
  border-radius: 34px;
}

.switch .slider.round:before {
  border-radius: 50%;
}

/*::::::::::::::: LOGIN ::::::::::::::::::::*/
.blmd-wrapp {
  height: auto;
  margin-top: 70px;
  background: none;
  padding: 1em 0;
  position: relative;
  transition: height 0.5s;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.25);
}

.blmd-wrapp .blmd-header-wrapp {
  clear: both;
  position: relative;
}

.p_new {
  position: relative;
  right: 70px;
  top: -52px;
  font-size: 13px;
  color: #575757;
  float: right;
}

.blmd-wrapp .blmd-header-wrapp .blmd-switches {
  position: relative;
  z-index: 2;
}

.blmd-wrapp .blmd-header-wrapp .blmd-switches>button {
  position: absolute;
  right: 10px;
  top: 15px;
  transition: all 1s;
}

.blmd-wrapp .blmd-header-wrapp .blmd-switches>button.active {
  right: 50%;
  top: -45px;
  margin-right: -32px;
  background: #cc193d;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.5s;
}

.blmd-wrapp .blmd-continer {
  padding: 15px;
  height: auto;
  overflow: hidden;
}

.blmd-wrapp .blmd-continer form {
  max-height: auto;
  transition: all 0.5s;
}

.blmd-wrapp .blmd-continer form>h1 {
  padding: 15px 0 15px 30px;
  margin-right: -15px;
  margin-left: -15px;
  position: relative;
}

.blmd-wrapp .blmd-continer form.form-hidden {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transition: all 0.5s;
}

.blmd-wrapp .blmd-continer form#login-form>h1 {
  border-left: 5px solid #0077b8;
}

.blmd-wrapp .blmd-continer form.login-form>h1 {
  border-left: 5px solid #0077b8;
}

.blmd-wrapp .blmd-continer form#Register-form>h1 {
  border-left: 5px solid #0077b8;
  color: black;
}

.blmd-wrapp .blmd-continer form#Register-form .blmd-form .blmd-line:after {
  background: #0077b8;
}

.blmd-wrapp .blmd-continer form#Register-form .blmd-form .form-control {
  color: black;
}

.blmd-wrapp .blmd-continer form#Register-form .blmd-form .blmd-label {
  /*color: black;*/
}

.blmd-wrapp .blmd-continer form#Register-form.animate {
  -webkit-animation: fadein 0.75s;
  -moz-animation: fadein 0.75s;
  -ms-animation: fadein 0.75s;
  -o-animation: fadein 0.75s;
  animation: fadein 0.75s;
}

.blmd-wrapp .blmd-continer form#Register-form.animate-out {
  -webkit-animation: fadeout 0.75s;
  -moz-animation: fadeout 0.75s;
  -ms-animation: fadeout 0.75s;
  -o-animation: fadeout 0.75s;
  animation: fadeout 0.75s;
}

.blmd-wrapp .blmd-color-conatiner {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 3px;
}

.btn-blmd {
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
  border-radius: 2px;
}

.btn-blmd:active,
.btn-blmd.active,
.btn-blmd:focus,
.btn-blmd:active:focus,
.btn-blmd.active:focus {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.btn-blmd.btn {
  border: 0;
}

.btn-blmd.btn:focus,
.btn-blmd.btn:active,
.btn-blmd.btn.active,
.btn-blmd.btn:active:focus,
.btn-blmd.btn.active:focus {
  outline: 0;
  outline-offset: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-blmd.btn.btn-circle {
  padding: 15px;
  border-radius: 50%;
  line-height: 0px;
}

.btn-blmd.btn.btn-circle.btn-lg {
  padding: 18px;
}

.btn-blmd.btn.btn-circle.btn-sm {
  padding: 10px;
}

.btn-blmd.btn.btn-circle.btn-xs {
  padding: 5px;
}

.btn-blmd.btn.btn-default:hover,
.btn-blmd.btn.btn-default:focus {
  background: #f2f2f2;
}

.btn-blmd.btn.btn-primary {
  background: #465866;
  color: #fff;
}

.btn-blmd.btn.btn-primary:hover,
.btn-blmd.btn.btn-primary:focus {
  background: #3c4b57;
}

.btn-blmd.btn.btn-info {
  background: rgb(0, 80, 122);
  color: #fff;
}

.btn-blmd.btn.btn-info:hover,
.btn-blmd.btn.btn-info:focus {
  background: rgb(0, 80, 122);
}

.btn-blmd.btn.btn-success {
  background: #0077b8;
}

.btn-blmd.btn.btn-success:hover,
.btn-blmd.btn.btn-success:focus {
  background: rgb(0, 80, 122);
}

.btn-blmd.btn.btn-warning {
  background: #0077b8;
  color: #fff;
}

.btn-blmd.btn.btn-warning:hover,
.btn-blmd.btn.btn-warning:focus {
  background: rgb(0, 80, 122);
}

.btn-blmd.btn.btn-danger {
  background: #0077b8;
  color: #fff;
}

.btn-blmd.btn.btn-danger:hover,
.btn-blmd.btn.btn-danger:focus {
  background: rgb(0, 80, 122);
}

.btn-blmd.btn.btn-link {
  background: #dddddd;
  color: rgba(0, 0, 0, 0.87);
}

.btn-blmd.btn.btn-link:hover,
.btn-blmd.btn.btn-link:focus {
  background: #d0d0d0;
}

.ripple-effect {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  background: none;
}

.ink {
  display: block;
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  background: rgba(0, 0, 0, 0.2);
  background: -webkit-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
  background: -o-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
  background: -moz-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
  background: radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.5;
}

.ink.animate {
  -webkit-animation: ripple 0.75s linear;
  -moz-animation: ripple 0.75s linear;
  -o-animation: ripple 0.75s linear;
  animation: ripple 0.75s linear;
}

@media screen and (max-width: 530px) {
  .blmd-wrapp {
    box-shadow: none;
  }
}

@keyframes ripple {
  100% {
    opacity: 0;
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
}

@-webkit-keyframes ripple {
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
    transform: scale(2.5);
  }
}

@-moz-keyframes ripple {
  100% {
    opacity: 0;
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
}

@-ms-keyframes ripple {
  100% {
    opacity: 0;
    -ms-transform: scale(2.5);
    transform: scale(2.5);
  }
}

@-o-keyframes ripple {
  100% {
    opacity: 0;
    -o-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
}

.ripple-effect-All {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.ink-All {
  display: block;
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  background: #0077b8;
  opacity: 1;
}

.ink-All.animate {
  -webkit-animation: ripple-All 1.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-animation: ripple-All 1.5s cubic-bezier(0.4, 0, 1, 1);
  -o-animation: ripple-All 1.5s cubic-bezier(0.4, 0, 1, 1);
  animation: ripple-All 1.5s cubic-bezier(0.4, 0, 1, 1);
}

@keyframes ripple-All {
  100% {
    opacity: 1;
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
}

@-webkit-keyframes ripple-All {
  100% {
    opacity: 1;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
    transform: scale(2.5);
  }
}

@-moz-keyframes ripple-All {
  100% {
    opacity: 1;
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
}

@-ms-keyframes ripple-All {
  100% {
    opacity: 1;
    -ms-transform: scale(2.5);
    transform: scale(2.5);
  }
}

@-o-keyframes ripple-All {
  100% {
    opacity: 1;
    -o-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-ms-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-o-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-moz-keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-ms-keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-o-keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.link_register:hover {
  text-decoration: underline;
}

/* ::: DELETE AND EDIT ANIMATION ::: */
@keyframes delete {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  75% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

@keyframes edit {
  0% {
    background: none;
  }

  25% {
    background: #006aa333;
  }

  50% {
    background: none;
  }

  75% {
    background: #006aa333;
  }

  100% {
    background: none;
  }
}

@-moz-keyframes delete {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  75% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes delete {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  75% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

@-ms-keyframes delete {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  75% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes delete {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  75% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

/*::::::::::::::::::::::::::*/

.blmd-form {
  margin: 3rem 0;
  position: relative;
  width: 100%;
}

.blmd-form .input-group-addon {
  border-width: 0 0 1px;
  min-width: 42px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: #2e353b;
  text-align: center;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0;
}

.blmd-form .blmd-line {
  display: inline-block;
  width: 100%;
  position: relative;
  vertical-align: top;
  margin-top: -10px;
}

.blmd-form .blmd-line.blmd-toggled:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.blmd-form .blmd-line.blmd-toggled.hf:after {
  display: none;
}

.blmd-form .blmd-line.blmd-toggled .blmd-label {
  top: -10px;
  font-size: 11px;
}

.blmd-form .blmd-line:after {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  background: #0077b6;
  ;
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  content: "";
  -webkit-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.blmd-form .form-control {
  box-shadow: none;
  border-radius: 0;
  position: relative;
  background: 0 0;
  z-index: 1;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
}

.blmd-form .blmd-label {
  -webkit-transition: all;
  -o-transition: all;
  transition: all;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  position: absolute;
  top: 10px;
  font-weight: 400;
  color: #959595;
  pointer-events: none;
  z-index: 0;
  left: 0;
  white-space: nowrap;
  margin-top: -8px;
  font-size: 14px;
}

.contactos {
  min-height: 480px;
  box-shadow: 0 15px 30px 0px rgba(0, 0, 0, 0.25);
}

.contactos h1 {
  padding: 15px 0 15px 30px;
  margin-left: 0px;
  position: relative;
  border-left: 5px solid #0077b6;
  ;
  color: black;
}

.contact-textarea {
  height: 50px;
}

.remember-me {
  position: relative;
  float: left;
  font-size: 13px;
  color: #575757;
  margin-top: -20px;
  z-index: 1;
}

.forgot-password {
  position: relative;
  float: right;
  font-size: 13px;
  color: #575757;
  margin-top: -20px;
  z-index: 1;
}

.forgot-password a {
  color: #575757;
}

.forgot-password a:hover {
  color: #000000;
  text-decoration: underline;
}

/*:::::::::::: NOTIFICATIONS :::::::::*/

.toast-msg-wrapper {
  width: 380px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.toast-msg {
  position: relative;
  width: 100%;
  height: 75px;
  padding: 20px;
  padding-top: 10px;
  background-color: #202020c5;
  border-radius: 3px;
  display: grid;
  grid-template-columns: 1.3fr 6fr 0.5fr;
  box-shadow: 0 15px 60px 0px rgba(0, 0, 0, 0.25);
  animation: slide_right 2s;
}

.success-msg {
  border-left: 6px solid #2ecc48;
}

.error-msg {
  border-left: 6px solid #ff0030;
}

.info-msg {
  border-left: 6px solid #2F86EB;
}

.warning-msg {
  border-left: 6px solid #FFC021;
}

.error-msg i {
  color: #ff0030;
}

.info-msg i {
  color: #2F86EB;
}

.warning-msg i {
  color: #FFC021;
}

.toast-msg:not(:last-child) {
  margin-bottom: 10px;
}

.container-1, .container-2 {
  align-self: center;
}

.container-1 i {
  font-size: 25px;
}

.success-msg i {
  color: #2ecc48;
}

.container-2 p:first-child {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 0;
}

.container-2 p:last-child {
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.toast-msg button {
  align-self: flex-start;
  background-color: transparent;
  font-size: 30px;
  color: #ffffff;
  line-height: 0;
  cursor: pointer;
  border: none;
  margin-top: 10px;
}

.error-message {
  color: rgb(158, 0, 0) !important;
  width: 100%;
  text-align: left;
  margin-top: -40px;
  font-size: 12px;
  z-index: 2;
  transform: translateZ(10px);
}

.warning-message {
  color: #FFC021 !important;
  width: 100%;
  text-align: left;
  margin-top: -40px;
  font-size: 12px;
  z-index: 2;
  transform: translateZ(10px);
}

@keyframes slide_right {
  from {
    opacity: 0;
    right: -380px;
  }

  to {
    opacity: 1;
    right: 0px;
  }
}

@-moz-keyframes slide_right {
  from {
    opacity: 0;
    right: -380px;
  }

  to {
    opacity: 1;
    right: 0px;
  }
}

@-webkit-keyframes slide_right {
  from {
    opacity: 0;
    right: -380px;
  }

  to {
    opacity: 1;
    right: 0px;
  }
}

@-ms-keyframes slide_right {
  from {
    opacity: 0;
    right: -380px;
  }

  to {
    opacity: 1;
    right: 0px;
  }
}

@-o-keyframes slide_right {
  from {
    opacity: 0;
    right: -380px;
  }

  to {
    opacity: 1;
    right: 0px;
  }
}

@media screen and (max-width: 440px) {
  .toast-msg-wrapper {
    width: 95%;
    right: 2.5%;
  }
}

/*::::::::: POST LIST :::::::::::*/
.post-profile-user {
  position: relative;
  margin: 0;
  display: inline-block;
  left: 4px;
}

/*
.post-profile-user img {
  position: relative;
  margin: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}*/
/*
.post-profile-user img:hover {
  border: 2px solid #111318;
}

.post-profile-user .profile-photo-support-small {
  position: relative;
  margin: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}

.post-profile-user .profile-photo-support-small:hover {
  border: 2px solid #111318;
}*/

.post-profile-p {
  top: -7px;
  left: 10px;
  position: relative;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
  color: #111318;
  font-weight: bold;
  display: inline-block;
  padding-right: 15px;
  cursor: pointer;
}

.post-profile-p:hover {
  color: #0077b8;
}

.profile-option-section {
  margin-top: 0px;
  min-height: 300px;
  margin-bottom: 80px;
  position: relative;
}

/*::::: PROFILE LOADER ::::::::::*/
.lds-ellipsis-support {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 65px;
  height: 65px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--colorII);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 5px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 5px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 24px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 44px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(20px, 0);
  }
}


/*::::::::: POST OPEN :::::::::::*/
.post-open-profile {
  width: 50px;
  height: 50px;
}

.post-profile-p-open {
  font-size: 17px;
}

/*:::::::: MENU DROPDOWN ::::::::*/
.dropdown-menu-nav {
  position: absolute;
  width: 200px;
  background: #3e3e3e;
  top: 60px;
  left: -35px;
  display: none;
  box-shadow: 0 7px 40px -5px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  z-index: 50;
}

.dropdown-menu-nav ul li:hover {
  background: #545454;
}

.open-menu-dropdown i {
  font-size: 10px;
}

/*::::::: COMMENT :::::::::::::*/
.object-menu {
  position: absolute;
  top: 13px;
  right: 3px;
  color: #727272;
  padding: 5px;
  font-size: 15px;
  cursor: pointer;
}

.object-menu-close {
  position: absolute;
  top: 3px;
  right: 6px;
  color: #727272;
  padding: 5px;
  font-size: 15px;
  cursor: pointer;
}

.object-menu-close:hover {
  color: #000000;
}

.object-menu-nav {
  position: absolute;
  width: 250px;
  background: #e5e5e5;
  top: 0;
  right: 0;
  display: none;
  box-shadow: 0 7px 40px -5px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  padding-top: 4px;
  z-index: 1;
}

.object-menu-nav>ul {
  width: 100%;
  padding-left: 0;
  margin: 0;
}

.object-menu-nav ul li {
  width: 100%;
  list-style: none;
  color: #242424;
  padding: 0;
  height: 35px;
  border-radius: 3px;
  transition: all .3s;
}

.object-menu-nav ul p {
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 4px;
}

.object-menu-nav ul .menu-p-info {
  font-size: 13px;
  font-weight: normal;
  padding: 5px;
}

.object-menu-nav ul li div {
  width: 100%;
  height: 100%;
  color: #242424;
  font-size: 13px;
}

.object-menu-nav ul li form {
  width: 100%;
  height: 100%;
}

.object-menu-nav ul i {
  color: #585858;
  display: inline;
}

.object-menu-nav ul li button {
  width: 100%;
  height: 100%;
  color: #242424;
  font-size: 13px;
  border: none;
  outline: none;
  background: none;
}

.object-menu-nav ul li button i {
  color: #585858;
}

.object-menu-nav ul li:hover {
  background: #dbdbdb;
  font-weight: bold;
}

.object-menu-nav ul li:hover i {
  color: rgb(24, 24, 24);
}

.object-menu-nav ul li:hover button {
  font-weight: bold;
}

@media screen and (max-width: 300px) {

  .object-menu-nav {
    width: 100%;
  }

}

.flow-menu {
  position: relative;
  top: 7px;
  right: 7px;
  padding: 5px;
  font-size: 15px;
  cursor: pointer;
  float: right;
  margin-left: 10px;
}

.flow-menu-nav {
  top: 12px;
  right: 7px;
}

/*::::::: MESSAGES :::::::*/
.no-scroll-bar {
  height: 100%;
  overflow: hidden;
}

/*:::: FLOWS ::::*/
.flowy-container-left {
  width: 65%;
  max-width: 700px;
  margin-top: -550px;
  margin-bottom: 550px;
}

.flowy-container-right {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  left: 70%;
  width: 30%;
  background: rgb(233, 233, 233);
  height: 550px;
  box-shadow: 0 30px 50px -14px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  perspective: 1500px;
  transform-style: preserve-3d;
  padding: 10px;

}

.flowy-container-right h4 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.flowy-container-right .container-soft-padding {
  position: relative;
  transform: translateZ(0px);

}

@media screen and (max-width: 1200px) {
  .flowy-container-left {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    left: 10%;
    width: 80%;
  }

  .flowy-container-right {
    display: none;
  }
}

@media screen and (max-width: 700px) {

  .answers-support .answers .answers-posted::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .answers-support .answers .answers-posted::-webkit-scrollbar-track {
    background: #e5e5e5;
  }

  .answers-support .answers .answers-posted::-webkit-scrollbar-thumb {
    background: #bebebe;
    border-radius: 2.5px;
  }

  .container-soft-padding {
    padding-left: 10px;
    padding-right: 10px;
  }

  .flowy-container-left {
    position: relative;
    left: 0;
    width: 100%;
  }
}

/*:::::::::::::::::::::*/

.articles-images-uploaded {
  position: relative;
  width: 100%;
  border-radius: 3px;
  height: 220px;
  border: 2px dashed #cdcdcd;
  overflow-y: auto;
}

.articles-images-uploaded.highlight {
  border-color: rgb(0, 128, 219);
}

.articles-images-uploaded::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.articles-images-uploaded::-webkit-scrollbar-track {
  background: #dbdcdd;
}

.articles-images-uploaded::-webkit-scrollbar-thumb {
  background: #b8b8b8ef;
  border-radius: 0px;
}

.user-photo-support-article {
  width: 100px;
  margin: 0.25%;
  height: 100px;
  padding-bottom: 0;
  border-radius: 3px;
}

.choose-categories {
  position: relative;
  margin-top: 15px;
  width: 95%;
  left: 2.5%;
  height: 150px;
  overflow-y: scroll;
  padding: 5px;
}

.choose-categories::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.choose-categories::-webkit-scrollbar-track {
  background: #dbdcdd;
}

.choose-categories::-webkit-scrollbar-thumb {
  background: #b8b8b8ef;
  border-radius: 0px;
}

.white-support-4 p {
  font-size: 14px;
  font-weight: bold;
  margin-top: 30px;
  width: 100%;
  text-align: center;
  padding: 5px;
}

.p-likes {
  font-weight: bold;
  width: 100%;
  text-align: center;
  color: rgb(83, 83, 83);
  padding: 10px;
  padding-top: 0;
  margin: 0;
}

.carousel-container {
  width: 400px;
  height: 500px;
  overflow: hidden;
  background: none;
}

.carousel-img {
  width: 400px;
  height: 500px;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  transition: .3s ease-in-out;
}

/*
.carousel-indicators{
  position: relative;
  margin-top: 10px;
}*/
/*
.carousel-indicators li {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #cbcbcb;
  cursor: pointer;
  margin: 2px;
}

.carousel-indicators .active {
  background: #0781c2;
}
*/
@media screen and (max-width: 450px) {

  .carousel-container {
    width: 100%;
  }

  .carousel-img {
    width: 100%;
  }

  .flow-p {
    font-size: 12px;
  }
}


.delete-image-create-article {
  position: absolute;
  width: 35px;
  height: 35px;
  background: rgba(63, 58, 58, 0.466);
  border-radius: 0px;
  display: inline-block;
  cursor: pointer;
  right: 0;
  bottom: 0;
}

.delete-image-create-article:nth-child(2) {
  bottom: unset;
  top: 0;
}

.delete-image-create-article i {
  font-size: 15px;
  color: #d0d0d0;
  transition: 0.4s ease-in-out;
}

.delete-image-create-article:hover i {
  color: rgb(170, 2, 2);
}

.delete-image-create-article:nth-child(2):hover i {
  color: #00669d;
}

/*::::: TRANSLATE :::::*/
.goog-te-banner-frame {
  display: none;
}

.skiptranslate {
  display: none !important;
}

.language-flag {
  width: 20px;
  border-radius: 0px;
  margin: 0;
}

.buttons p {
  margin: 0;
  padding: 0;
  width: 120px;
  display: inline-block;
}

.choose-languages {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 5px;
  margin: 0;
}

.language-btn-floating {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  background: #0077b6;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  z-index: 100;
}

.language-btn-floating:hover {
  /*background: #f34d00;*/
  border: 1px solid #000;
}


.language-btn-floating img {
  position: relative;
  left: 6px;

}

/*::::::: NOTIFICATIONS :::::::::*/
.unreadStatus {
  width: 7px;
  height: 7px;
  background: #f77f00;
  border-radius: 20px;
  position: absolute;
  top: -4px;
  left: -4px;
  transition: border 0.1s;
}

.unreadStatusNotifications {
  display: none;
  top: 20px;
  left: 5px;
}

.unreadStatusNotificationsb {
  top: 4px;
  left: 46%;
}

.notification {
  padding: 10px;
  transition: .3s ease-in-out;
}

.notification:hover {
  background: rgb(219, 219, 219);
}

.notification .notification-p {
  cursor: pointer;
}

.notification .follow-since {
  cursor: pointer;
}

.animate-slide-down {
  display: none;
  opacity: 0;
}

.animate-slide-up {
  animation: slide_right 1s;
  display: block;
  opacity: 1;
}

/*::::: ADMIN ::::*/
.deleted-info {
  font-size: 12px;
  width: 95px;
  padding: 5px;
  background: rgb(220, 176, 2);
}

.go_center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
}

.soft-margin-padding {
  margin-left: 5px;
}

/* :::::: BG ZOOM ANIMATION :::::::::::*/
.infinite-background-zoom {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: zoom 50s infinite;
  -webkit-animation: zoom 50s infinite;
  transform-origin: center;
  transition: transform 1s ease-in-out;
}


@keyframes zoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

/* :::: SKILL :::*/
.skill-container {
  position: relative;
  width: calc(40px + 20/1200 * 100 * 1vw);
  height: calc(40px + 20/1200 * 100 * 1vw);
  box-shadow: 0 30px 50px -14px rgba(0, 0, 0, 0.25);
  transform-style: preserve-3d;
  margin: 7px;
}

.skill {
  position: absolute;
  width: calc(40px + 20/1200 * 100 * 1vw);
  height: calc(40px + 20/1200 * 100 * 1vw);
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  transition: all .4s;
  cursor: pointer;
}

.skill-container:hover {
  z-index: 10;
}


.skill-container:hover .skill {
  margin-left: -20px;
  margin-top: -20px;
  width: calc(80px + 40/1200 * 100 * 1vw);
  height: calc(80px + 40/1200 * 100 * 1vw);
  z-index: 10;
}


/*::::: simple-3d-card :::::*/
.simple-3d-card {
  width: 100%;
  border: 0;
  box-shadow: 0 30px 50px -14px rgba(0, 0, 0, 0.25);
  text-align: center;
  background: #393939;
  transform-style: preserve-3d;
}

.simple-3d-card-text {
  position: relative;
  border-radius: 0;
  transform: translateZ(40px);
  transition: all 0.4s;
  height: 70px;
}