/* tiny mce */
.tox-statusbar {
  order: -1;
  /* Move status bar to the top */
  border-bottom: 1px solid #ccc;
  /* Add a border for separation */
  border-top: none;
  /* Remove top border */
  height: 18px !important;
  overflow: hidden !important;
  padding: 0 10px !important;
}
.tox-statusbar .tox-statusbar__path-item {
  display: none !important;
}

.tox:not(.tox-tinymce-inline) .tox-editor-header {
  padding: 0 !important;
}

.mce-content-body [data-mce-selected=inline-boundary] {
  text-decoration: none !important;
}

.tox-toolbar__group > *:first-child {
  display: inline-block;
}

.tox-toolbar__group > *:first-child.hidden {
  display: none;
}

/* end tiny */
.loader-bar-btn {
  display: flex !important;
  justify-content: center;
  align-items: center;
  color: transparent !important;
}

.close-effect-btn:hover,
.close-effect-btn:focus {
  box-shadow: inset 6em 0 0 0 #beefed;
  color: #222725;
  transition: all 0.3s ease;
}

.loader-bar-btn:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 21px;
  --c: no-repeat linear-gradient(#2b2e2f 0 0);
  background: var(--c) 0% 50%, var(--c) 50% 50%, var(--c) 100% 50%;
  animation: l7 1s infinite linear alternate;
}

@keyframes l7 {
  0% {
    background-size: 20% 50%, 20% 50%, 20% 50%;
  }
  20% {
    background-size: 20% 20%, 20% 50%, 20% 50%;
  }
  40% {
    background-size: 20% 100%, 20% 20%, 20% 50%;
  }
  60% {
    background-size: 20% 50%, 20% 100%, 20% 20%;
  }
  80% {
    background-size: 20% 50%, 20% 50%, 20% 100%;
  }
  100% {
    background-size: 20% 50%, 20% 50%, 20% 50%;
  }
}
.btn-fillin-effect:hover,
.btn-fillin-effect:focus {
  transition: 0.5s all ease-in-out;
  box-shadow: inset 0 0 0 2em #212e3e;
  color: rgb(226, 239, 239);
}

.btn-moema-effect {
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}
.btn-moema-effect.button--inverted {
  background: #eceff1;
  color: #37474f;
}
.btn-moema-effect::before {
  content: "";
  position: absolute;
  /* padding: 3px; 
      right: -70px;
      left: -70px;
      top: 0px;
      bottom: 0px;
      background: rgb(119, 192, 251);
      transform: scale3d(0.3, 1, 1);

      z-index: -1;
      opacity: 0.4;
      */
}
.btn-moema-effect:hover {
  transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
  color: #eceff1;
  background-color: #3f51b5;
  animation: anim-moema-1 0.3s forwards;
}
.btn-moema-effect:hover::before {
  animation: anim-moema-2 0.3s 0.3s forwards;
}
.btn-moema-effect.button--inverted:hover {
  color: #eceff1;
  background-color: #8bd8ff;
}
@keyframes anim-moema-1 {
  60% {
    transform: scale3d(0.8, 0.8, 1);
  }
  85% {
    transform: scale3d(1.1, 1.1, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes anim-moema-2 {
  to {
    opacity: 0;
    background-color: #1e3c72;
    transform: scale3d(1, 1, 1);
  }
}
div.loadingLayer {
  background: #333;
  position: fixed;
  width: 100%;
  height: 50%;
  transition: ease-in-out 0.5s all;
  z-index: 2;
  top: 0;
}
div.loadingLayer::after {
  content: "";
  background: #333;
  position: fixed;
  width: 100%;
  height: 50%;
  transition: ease-in-out 0.5s all;
  z-index: 2;
  bottom: 0;
}
div.loadingLayer div.active.loader {
  margin: auto;
}
div.loadingLayer div.active.loader div.loadingText {
  transition: ease-in-out 0.3s all;
  color: cyan;
}
div.loadingLayer div.active.loader div.loadingText::after {
  animation: dots 2s linear infinite;
  content: "";
}
@keyframes dots {
  0%, 20% {
    content: " .";
  }
  40% {
    content: " ..";
  }
  60% {
    content: " ...";
  }
  90%, 100% {
    content: "";
  }
}

.deactivateLoading.loadingLayer {
  height: 0;
}
.deactivateLoading.loadingLayer::after {
  height: 0;
}

.deactivateLoading div.active.loader {
  transition: ease 0.5s all;
  opacity: 0 !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

img {
  outline: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

footer {
  justify-content: center;
  display: flex;
  padding: 0 0 5rem;
}
footer .emoji-container {
  margin: 3.5rem auto 0;
}
footer .emoji-container p.title {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 550;
}
footer .emoji-container .emoji-wrapper {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
footer .emoji-container .emoji-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}
footer .emoji-container .emoji-box:hover {
  transform: scale(1.2);
}
footer .emoji-container .emoji-box.selected .emoji-count {
  font-weight: bold;
}
footer .emoji-container .emoji-box .emoji-img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}
footer .emoji-container .emoji-box .emoji-count {
  margin-top: 4px;
  font-size: 14px;
  color: white;
  font-weight: normal;
}
footer .emoji-container .emoji-box .floating-emoji {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 2;
  animation: floatUp 1s ease forwards;
}
@keyframes floatUp {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -100px);
  }
}
footer .container-socmed {
  margin-right: 0%;
  margin-left: 0%;
  padding: 3.5rem 1.5rem;
  position: absolute;
  right: 70%;
}
footer .container-socmed .title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ffffff;
  opacity: 0.9;
  padding-bottom: 0.5rem;
  position: relative;
  text-align: center;
}
footer .container-socmed .title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, #6b82fa, #718ef0);
  border-radius: 2px;
}
footer .wrapper-socmed {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
footer .wrapper-socmed .box-socmed {
  display: flex;
  gap: 1rem;
}
footer .wrapper-socmed .socmed-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
footer .wrapper-socmed .socmed-link svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  transition: fill 0.3s ease;
}
footer .wrapper-socmed .socmed-link:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
footer .wrapper-socmed .socmed-link:hover svg {
  fill: #e0e0e0;
}
footer .wrapper-socmed .socmed-link:hover.linkedin {
  background: #0a66c2;
}
footer .wrapper-socmed .socmed-link:hover.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
footer .wrapper-socmed .socmed-link:hover.threads {
  background: #000000;
}
footer .wrapper-socmed .socmed-link:hover.x {
  background: #1d9bf0;
}
footer .wrapper-socmed .socmed-link:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.3);
}
footer .personal-contacts-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
  padding: 4rem 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  width: 100%;
}
footer div.container-contacts {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 3.5rem auto;
  padding: 0 1.5rem;
  position: absolute;
  left: 72%;
}
footer div.container-contacts p.title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: #f1f5f9;
  position: relative;
  text-align: center;
  padding-bottom: 0.5rem;
}
footer div.container-contacts p.title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, #6b82fa, #718ef0);
  border-radius: 2px;
}
footer div.container-contacts div.wrapper-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
footer div.container-contacts div.wrapper-contacts div.box-contacts {
  display: flex;
  flex-direction: column;
}
footer div.container-contacts div.wrapper-contacts div.box-contacts a.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #f1f5f9;
  text-decoration: none;
  padding: 0.75rem;
  border-radius: 8px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
footer div.container-contacts div.wrapper-contacts div.box-contacts a.contact-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  transition: left 0.5s ease;
}
footer div.container-contacts div.wrapper-contacts div.box-contacts a.contact-link:hover {
  transform: translateX(8px);
}
footer div.container-contacts div.wrapper-contacts div.box-contacts a.contact-link:hover::before {
  left: 100%;
}
footer div.container-contacts div.wrapper-contacts div.box-contacts a.contact-link:hover svg {
  transform: scale(1.1);
  fill: #3b82f6;
}
footer div.container-contacts div.wrapper-contacts div.box-contacts a.contact-link:hover .contact-text {
  color: #f1f5f9;
}
footer div.container-contacts div.wrapper-contacts div.box-contacts a.contact-link:active {
  transform: translateX(4px);
}
footer div.container-contacts div.wrapper-contacts div.box-contacts a.contact-link svg {
  width: 24px;
  height: 24px;
  fill: #93c5fd;
  transition: transform 0.3s ease, fill 0.3s ease;
}
footer div.container-contacts div.wrapper-contacts div.box-contacts a.contact-link.phone svg {
  stroke: #93c5fd;
  fill: none;
  stroke-width: 2;
}
footer div.container-contacts div.wrapper-contacts div.box-contacts a.contact-link.phone:hover svg {
  stroke: #3b82f6;
}
footer div.container-contacts div.wrapper-contacts div.box-contacts a.contact-link.email svg {
  fill: #93c5fd;
}
footer div.container-contacts div.wrapper-contacts div.box-contacts a.contact-link.email:hover svg {
  fill: #3b82f6;
}
footer div.container-contacts div.wrapper-contacts div.box-contacts a.contact-link .contact-text {
  font-size: 1rem;
  font-weight: 400;
  color: #e2e8f0;
  transition: color 0.3s ease;
}
@media (max-width: 840px) {
  footer .container-socmed {
    position: initial;
    padding: 3.5rem 0 0.2rem;
  }
  footer .container-socmed .wrapper-socmed .socmed-link {
    width: 40px;
    height: 40px;
  }
  footer .container-socmed .wrapper-socmed svg {
    width: 20px;
    height: 20px;
  }
  footer div.container-contacts {
    position: initial;
  }
  footer div.container-contacts div.wrapper-contacts div.box-contacts a.contact-link svg {
    width: 20px;
    height: 20px;
  }
  footer div.container-contacts div.wrapper-contacts div.box-contacts a.contact-link .contact-text {
    font-size: 0.9rem;
  }
}
@media (max-width: 840px) {
  footer {
    flex-direction: column;
    padding: 0;
  }
}

body {
  background-color: #1a1c22;
}

.bg-purple {
  background-color: #6b7ee5;
}

p {
  margin: 3px;
}

.ds-flex {
  margin: 5px;
  display: flex;
}

.btn-rpv {
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 500;
  outline: none;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

div.template.layout section.feedback:before, div.template.layout section.projectXperience:before, div.template.layout section.clients:before, div.template.layout section.skillset:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-image: radial-gradient(circle, #fff 23%, #000);
}

div.template.layout section.projectXperience p.header, div.template.layout section.skillset p.header {
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-size: 27px;
}

div.template.layout .ui.grid {
  margin: 0 !important;
}
div.template.layout div.mainPersonalInfo {
  display: flex;
  padding: 12.5rem 10rem 24rem;
  background-image: linear-gradient(62deg, #394282 0%, #222648 100%);
  width: 100%;
}
div.template.layout div.mainPersonalInfo div.metadata {
  max-width: 94rem;
  display: flex;
  margin: 0 auto;
  position: relative;
}
div.template.layout div.mainPersonalInfo div.metadata div.content {
  margin-left: 20px;
  width: 75%;
}
div.template.layout div.mainPersonalInfo div.metadata div.content p.meta {
  font-size: 14px;
  font-weight: 550;
  color: rgb(161, 175, 228);
  padding: 1px;
  margin: 0;
}
div.template.layout div.mainPersonalInfo div.metadata div.content p.header {
  font-size: 27px;
  font-weight: bold;
  margin: 3px 0 6px 0 !important;
  display: block;
  color: #bfc3dc;
}
div.template.layout div.mainPersonalInfo div.metadata div.content p.subHeader {
  font-weight: 550;
  color: rgb(161, 175, 228);
  -webkit-text-decoration: underline rgb(115, 175, 227);
          text-decoration: underline rgb(115, 175, 227);
}
div.template.layout div.mainPersonalInfo div.metadata div.content p.contentInfo {
  text-align: justify;
  width: 90%;
  font-size: 18px;
  color: #cadbff;
}
div.template.layout div.mainPersonalInfo div.metadata .backgroundItem {
  margin-right: auto;
  margin-left: 2rem;
  height: 15rem;
}
div.template.layout div.mainPersonalInfo div.metadata .backgroundItem img {
  border-radius: 5px;
  height: inherit;
  width: 13rem;
}
div.template.layout section.skillset {
  padding-left: 14px;
  display: grid;
  justify-content: center;
  position: relative;
  background: rgba(9, 9, 9, 0.97);
  padding: 5em 5px 8em 5px;
  width: 100%;
}
div.template.layout section.skillset p.header {
  color: #7abcff;
}
div.template.layout section.skillset .content {
  width: 80vw;
}
div.template.layout section.skillset .content p.title {
  font-size: 20px;
  font-weight: 550;
}
div.template.layout section.skillset .content div.boxesSkills {
  padding: 2px;
  margin: 2px 5px;
}
div.template.layout section.skillset .content div.boxesSkills div.row {
  padding: 4px 0 !important;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(1) {
  color: #00ff22;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(1):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(2) {
  color: #eef8f8;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(2):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(3) {
  color: #7bff6c;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(3):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(4) {
  color: #7bff6c;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(4):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(5) {
  color: #b5e9ec;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(5):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(6) {
  color: #f7b7c4;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(6):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(7) {
  color: #7bff6c;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(7):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(8) {
  color: #00ffc3;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(8):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(9) {
  color: #eef8f8;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(9):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(10) {
  color: #b5e9ec;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(10):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(11) {
  color: #eef8f8;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(11):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(12) {
  color: #7bff6c;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(12):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(13) {
  color: #f7b7c4;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(13):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(14) {
  color: #00ff22;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(14):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(15) {
  color: #7bff6c;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(15):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(16) {
  color: #7bff6c;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(16):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(17) {
  color: #00ff22;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(17):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(18) {
  color: #00ffc3;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(18):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(19) {
  color: #eef8f8;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(19):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(20) {
  color: #f7b7c4;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(20):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(21) {
  color: #00ff22;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(21):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(22) {
  color: #7bff6c;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(22):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(23) {
  color: #7bff6c;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(23):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(24) {
  color: #00ffc3;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(24):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(25) {
  color: #00ff22;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(25):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(26) {
  color: #f7b7c4;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(26):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(27) {
  color: #00ffc3;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(27):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(28) {
  color: #eef8f8;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(28):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(29) {
  color: #7bff6c;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(29):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(30) {
  color: #f7b7c4;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(30):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(31) {
  color: #00ff22;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(31):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(32) {
  color: #b5e9ec;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(32):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(33) {
  color: #f7b7c4;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(33):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(34) {
  color: #00ff22;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(34):hover {
  background-color: rgb(87, 87, 160);
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(35) {
  color: #00ff22;
  background: rgb(45, 45, 46);
  margin: 5px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div.template.layout section.skillset .content div.boxesSkills div.row .boxSkillName:nth-of-type(35):hover {
  background-color: rgb(87, 87, 160);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
div.template.layout section.clients {
  background-color: rgba(5, 5, 5, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
div.template.layout section.clients div.meta {
  padding: 7rem 2rem 4rem;
  position: relative;
  margin: 0 auto;
}
div.template.layout section.clients div.meta .title {
  color: #f1ffff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
div.template.layout section.clients div.meta .description {
  color: #8cb0ff;
  font-size: 20px;
  font-weight: 550;
}
div.template.layout section.clients .containerBrands {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 2rem 12rem;
}
div.template.layout section.clients .containerBrands .space-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1s ease-in 0.4s backwards;
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 4px 8px rgba(39, 75, 160, 0.1);
}
div.template.layout section.clients .containerBrands .space-brand:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
div.template.layout section.clients .containerBrands .space-brand .brand-logo {
  width: 220px;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
div.template.layout section.projectXperience {
  display: grid;
  justify-content: center;
  position: relative;
  background: rgba(5, 5, 5, 0.97);
  padding: 5em 5px 8em 5px;
  width: 100%;
  padding: 5rem 0 7rem;
  position: relative;
}
div.template.layout section.projectXperience p.header {
  margin-bottom: 7rem;
  color: whitesmoke;
}
div.template.layout section.projectXperience div.contentInfo {
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1s ease-in 0.4s backwards;
}
div.template.layout section.projectXperience div.contentInfo div.grid {
  justify-content: center;
}
div.template.layout section.projectXperience div.contentInfo div.grid div.card {
  padding: 5px 11px 20px 11px;
  border-radius: 7px;
  background: linear-gradient(346deg, rgba(55, 55, 55, 0.04) 0%, rgba(55, 55, 55, 0.04) 22%, rgba(140, 140, 140, 0.04) 22%, rgba(140, 140, 140, 0.04) 69%, rgba(225, 225, 225, 0.04) 69%, rgba(225, 225, 225, 0.04) 100%), linear-gradient(31deg, rgba(55, 55, 55, 0.04) 0%, rgba(55, 55, 55, 0.04) 42%, rgba(140, 140, 140, 0.04) 42%, rgba(140, 140, 140, 0.04) 85%, rgba(225, 225, 225, 0.04) 85%, rgba(225, 225, 225, 0.04) 100%), linear-gradient(55deg, rgba(55, 55, 55, 0.04) 0%, rgba(55, 55, 55, 0.04) 13%, rgba(140, 140, 140, 0.04) 13%, rgba(140, 140, 140, 0.04) 72%, rgba(225, 225, 225, 0.04) 72%, rgba(225, 225, 225, 0.04) 100%), linear-gradient(90deg, rgb(0, 0, 0), rgb(0, 0, 0));
  text-align: center;
  box-shadow: 0 0 10px rgba(30, 30, 30, 0.1294117647);
  flex-direction: column;
}
div.template.layout section.projectXperience div.contentInfo div.grid div.card img {
  height: 155px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
  margin: -40px 0 10px 0;
  width: 80%;
  max-width: 250px;
  border-radius: inherit;
  box-shadow: 0 60px 40px rgba(0, 0, 0, 0.08);
}
div.template.layout section.projectXperience div.contentInfo div.grid div.card .title.link, div.template.layout section.projectXperience div.contentInfo div.grid div.card .title:not(.link) {
  margin: 0 auto;
  font-size: 20px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
div.template.layout section.projectXperience div.contentInfo div.grid div.card .title:not(.link) {
  color: #f4fff7;
}
div.template.layout section.projectXperience div.contentInfo div.grid div.card .title.link {
  color: #88c5ff;
}
div.template.layout section.projectXperience div.contentInfo div.grid div.card .title.link:hover {
  color: #f4fff7;
}
div.template.layout section.projectXperience div.contentInfo div.grid div.card p.meta {
  font-size: 16px;
  font-weight: 500;
  color: #bbc0ff;
}
div.template.layout section.projectXperience div.contentInfo div.grid div.card div.contentInfo {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  max-width: 85%;
}
div.template.layout section.projectXperience div.contentInfo div.grid div.card button.action {
  border: 0;
  background: linear-gradient(90deg, #5448de, #5448de);
  color: #7ce6cd;
  font-family: inherit;
  padding: 16px 26px;
  font-size: 16px;
  border-radius: 40px;
}
div.template.layout section.feedback {
  display: grid;
  justify-content: center;
  position: relative;
  background: rgba(9, 9, 9, 0.97);
  padding: 5em 5px 8em 5px;
  width: 100%;
}
div.template.layout section.feedback div.brandSection {
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 4rem;
}
div.template.layout section.feedback div.brandSection * {
  color: rgba(242, 250, 255, 0.9490196078) !important;
}
div.template.layout section.feedback div.brandSection .title {
  font-size: 27px;
  font-weight: bold;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
div.template.layout section.feedback div.brandSection .subtitle {
  font-size: 20px;
}
div.template.layout section.feedback label {
  color: rgba(242, 250, 255, 0.8862745098) !important;
}
div.template.layout section.feedback a {
  color: #b7eeff !important;
}
div.template.layout section.feedback label {
  cursor: pointer;
}
div.template.layout section.feedback input[type=radio] {
  margin-right: 5px !important;
}
div.template.layout section.feedback .inputCustomImage,
div.template.layout section.feedback .inputCustomImage + label {
  top: 2px !important;
  position: relative !important;
  margin-right: 11px !important;
}
div.template.layout section.feedback .threaded.commentsContainer {
  margin: 2rem auto;
  width: 90%;
}
div.template.layout section.feedback .threaded.commentsContainer .titleComment {
  font-weight: bold;
  font-size: 18px;
  max-width: 650px;
  padding: 7px 0px;
  border-bottom: 1px ridge #fff;
  color: #fff;
  margin: 1rem auto;
}
div.template.layout section.feedback .threaded.commentsContainer .comment {
  position: relative;
  margin: 10px auto;
  max-width: 650px;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment {
  background-color: rgb(50, 103, 200);
  padding: 10px;
  display: flex;
  box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-radius: 10px;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment * {
  text-decoration: none;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .avatar img {
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 42px;
  margin-top: 5px;
  border-radius: 2px;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment {
  padding: 0 10px;
  width: 100%;
  overflow: hidden;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .metaUser .author {
  font-size: 15px;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .metaUser .labelAuthor {
  background: #7a98d0;
  padding: 1px 4px;
  border-radius: 4px;
  font-size: 12px;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .metaUser .editedComment {
  font-size: 12px;
  color: #9eb9b9;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .date {
  font-size: 11px;
  margin-top: -3px;
  color: #6bafcc;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .message {
  padding: 3px 2px 2px 0;
  font-weight: 550;
  color: #fff;
  word-break: break-word;
  font-size: 15px;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .message* {
  word-break: break-word;
  text-align: justify;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .messageEdit {
  display: block;
  margin-top: 10px;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .messageEdit .messageComment {
  width: 500px;
  border: none;
  /* height: 118px; */
  resize: vertical;
  border-radius: 5px;
  padding: 10px;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .messageEdit .editButtons {
  display: inline-block;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .messageEdit .editButtons .updateComment {
  margin-top: 10px;
  margin-bottom: 5px;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .actions {
  display: flex;
  margin-top: 5px;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .actions * {
  cursor: pointer;
  font-size: 12px;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .actions .modifierComment {
  /* border: 1px solid #ccc; */
  margin-left: 5px;
  position: relative;
  top: 2px;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .actions .modifierComment::before {
  content: "";
  display: block;
  width: 19px;
  border-radius: 5px;
  height: 14px;
  top: 3px;
  padding: 8px 13px 0 13px;
  position: absolute;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="white" class="bi bi-three-dots" viewBox="0 0 16 16"><path d="M3 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z"/></svg>');
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .actions .modifierComment:hover::before {
  background-color: #daeeff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="black" class="bi bi-three-dots" viewBox="0 0 16 16"><path d="M3 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z"/></svg>');
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .actions .dropdown-mod-buttons {
  position: absolute;
  left: 126px;
  border-radius: 5px;
  background-color: rgb(50, 103, 200);
  /* border: 1px solid #160f0f; */
  border-top: 1px solid #6495ed;
  /* z-index: 999; */
  min-width: 120px;
  transition: 0.5s all ease-in-out;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .actions .dropdown-mod-buttons::before {
  content: "";
  position: absolute;
  top: 6.5px;
  left: -6.2px;
  border: 5px solid transparent;
  border-left-color: #daeeff;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .actions .dropdown-mod-buttons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .actions .dropdown-mod-buttons ul li {
  display: flex;
  align-items: center;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .actions .dropdown-mod-buttons ul li svg {
  margin-right: 8px;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .actions .dropdown-mod-buttons ul li:first-child {
  padding: 8px 10px 4px 10px;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .actions .dropdown-mod-buttons ul li:last-child {
  padding: 5px 10px 7px 10px;
}
div.template.layout section.feedback .threaded.commentsContainer .comment .contentComment .metaboxComment .actions .dropdown-mod-buttons ul * {
  color: #f6f8fa !important;
}
div.template.layout section.feedback .threaded.commentsContainer .childComContainer {
  margin: 1.1rem 0 1.5rem 4rem;
  position: relative;
}
div.template.layout section.feedback .threaded.commentsContainer .childComContainer::before {
  content: "";
  position: absolute;
  background-color: #abb9b9;
  /* border-left: 1px solid rgb(130, 248, 248); */
  /* margin-right: 100px; */
  width: 1px;
  height: 100%;
}
div.template.layout section.feedback .threaded.commentsContainer .childComContainer .comment {
  margin: 0.8rem 0 0.8rem 2rem;
}
div.template.layout section.feedback .threaded.commentsContainer .childComContainer .comment .contentComment {
  z-index: 0;
  position: relative;
}
div.template.layout section.feedback .threaded.commentsContainer .form.replyComment {
  height: 0;
  opacity: 0;
  padding: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 1rem;
  transition: 0.23s ease-out;
  margin-left: 2em;
}
div.template.layout section.feedback .threaded.commentsContainer .active.form.replyComment {
  height: 100%;
  opacity: 1;
  padding: 10px 5px 5px 0 !important;
  margin-top: 5px !important;
}
div.template.layout section.feedback .threaded.commentsContainer .avatarLabel {
  margin-bottom: 1rem;
}
div.template.layout section.feedback .threaded.commentsContainer .radio.checkbox input:checked ~ label::after {
  background-color: #1bb0bc !important;
}

.active.modifierComment::before {
  background-color: #daeeff !important;
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="black" class="bi bi-three-dots" viewBox="0 0 16 16"%3E%3Cpath d="M3 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z"/%3E%3C/svg%3E') !important;
}

.spinner-loading::after {
  content: "";
  position: absolute;
  border-radius: 100%;
  top: 35%;
  width: 14px;
  height: 14px;
  right: 13px;
  margin-top: -2px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-left-color: #fff;
  border-top-color: #fff;
  animation: spin 0.3s forwards ease-out infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/*
.active.dropdown-mod-buttons {
    display: block !important;
    opacity: 1 !important;
    transition: 0.5s all ease-in-out;
  }
*/
@media only screen and (max-width: 800px) {
  .btn-rpv {
    padding: 7px 12px;
    font-size: 13px;
  }
  div.template.layout div.mainPersonalInfo {
    padding: 10rem 2rem 14rem;
  }
  div.template.layout div.mainPersonalInfo div.metadata {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
  }
  div.template.layout div.mainPersonalInfo div.metadata div.content p.header {
    font-size: 17px !important;
  }
  div.template.layout div.mainPersonalInfo div.metadata div.content p.contentInfo {
    font-size: 15px !important;
  }
  div.template.layout div.mainPersonalInfo div.metadata .backgroundItem {
    margin: 4rem auto 0;
  }
  div.template.layout section.clients div.meta .title {
    font-size: 2rem;
  }
  div.template.layout section.clients div.meta .description {
    font-size: 17px;
    text-align: center;
  }
  div.template.layout section.clients .containerBrands {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    justify-items: center;
  }
  div.template.layout section.clients .containerBrands .space-brand .brand-logo {
    width: 190px;
  }
  div.template.layout section.feedback {
    padding: 5rem 1rem;
  }
  div.template.layout section.feedback .threaded.commentsContainer {
    margin: 2rem auto;
    width: 90%;
  }
  div.template.layout section.feedback .threaded.commentsContainer .comments .comment .contentComment .metaboxComment {
    padding: 0 10px;
    width: 100%;
  }
  div.template.layout section.feedback .threaded.commentsContainer .comments .comment .contentComment .metaboxComment .metaUser .author {
    font-size: 15px;
  }
  div.template.layout section.feedback .threaded.commentsContainer .comments .comment .contentComment .metaboxComment .metaUser .editedComment {
    font-size: 11px;
    color: #9eb9b9;
  }
  div.template.layout section.feedback .threaded.commentsContainer .comments .comment .contentComment .metaboxComment .date {
    font-size: 10px;
  }
  div.template.layout section.feedback .threaded.commentsContainer .comments .comment .contentComment .metaboxComment .message {
    padding: 3px 2px 2px 0;
    word-break: break-all;
    font-weight: 550;
    color: #fff;
    font-size: 14px;
  }
}
@media only screen and (max-width: 550px) {
  .btn-rpv {
    font-size: 11px;
  }
  div.template.layout #customUrlPictureComment {
    margin-top: 10px;
  }
  div.template.layout div.mainPersonalInfo div.metadata div.content {
    width: 85%;
    margin-left: 1rem;
    margin-top: -1rem;
  }
  div.template.layout div.mainPersonalInfo div.metadata div.content p.meta {
    font-size: 12px !important;
  }
  div.template.layout div.mainPersonalInfo div.metadata div.content p.subHeader {
    font-size: 12px !important;
  }
  div.template.layout section.clients .containerBrands {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    justify-items: center;
  }
}/*# sourceMappingURL=templateLayout.css.map */