@font-face {
  font-family: 'SegoeUI';
  src: url('/assets/fonts/segoeui.ttf') format("truetype");
}

@font-face {
  font-family: 'SegoeUIBold';
  src: url('/assets/fonts/segoeuib.ttf') format("truetype");
}

@font-face {
  font-family: 'SegoeUISemiBold';
  src: url('/assets/fonts/segoeuisb.ttf') format("truetype");
}
@font-face {
  font-family: 'SegoeUILight';
  src: url('/assets/fonts/segoeuil.ttf') format("truetype");
}

/* * {
  font-family: 'SegoeUI';
} */

#modal-container {
  display: flex;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal-shadow {
  position: relative;
  /* box-shadow: 0 1rem 3rem rgba(0,0,0,.175); */
  margin: auto;
}

#modal_content {
  max-width: 950px;
  /*overflow: hidden;*/
}

.modal-content-close {
  top: 18px;
  right: 10px;
  z-index: 1;
}

.modal-content-close.dark::after {
  color: #24272A;
}

.modal-content-close::after {
  position: absolute;
  top: -18px;
  left: -18px;
  content: "\d7";
  font-size: 30px;
  color: #555759;
  text-align: center;
}

.modal-content-close img {
  pointer-events: none;
}

.btn-disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* .error {
  border: 2px solid !important;
  border-color: #FE5000 !important;
}

.error::placeholder {
  color: #FE5000;
} */

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

.grow-interaction {
  transition: all .35s cubic-bezier(0, 1.1, 0.63, 1.1) !important;
}

.grow-interaction:hover {
  box-shadow: 0px 7px 10px #00000035;
  transform: scale(1.1);
}


/* Pontuãção */

.points {
  position: relative;
  z-index: 1;
  width: 245px;
  left: 125px;
  top: -25px;
}

.points > p {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 8px;
}

.points .points-box {
  background: #aab400;
  border-radius: 5px;
  display: flex;
}

.points-title {
  position: relative;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  font-style: italic;
  margin: 0;
}

.points-title span {
  font-size: 16px;
}

.points-box-icon {
  padding: 16px 8px;
  background-color: #5f7800;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 5px 0 0 5px;
}

.points-box-score {
  padding: 8px;
  width: 100%;
}
.points-title::after {
  content: url("/assets/images/points-title-icon.svg");
  margin-left: 8px;
}

.points-box-score div {
  display: flex;
  justify-content: space-between;
}

.points-box-score div span {
  border-radius: 20px;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  font-style: italic;
  background-color: red;
  padding: 2px 6px 2px 22px;
  opacity: 60%;
}

.points-box-score div span.active {
  opacity: 100%;
}

.points-box-score div span:nth-child(1) {
  background-color: #fec92e;
}

.points-box-score div span:nth-child(2) {
  background-color: #4e8d69;
}

.points-box-score div span:nth-child(3) {
  background-color: #3a6a27;
}

.points-box-score div span:nth-child(4) {
  background-color: #1b468a;
}

/* Conteúdo */

.no__content {
  color: #5C5C5C;
}

/* Usuário */

.user {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
}

.user img {
  margin-right: 10px;
}

.user p {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-style: italic;
}

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

.certificate-download {
  position: absolute;
  z-index: 1;
  right: 200px;
  top: 50px;
  background-image: url(/assets/images/certificate-download.png);
  width: 205px;
  height: 50px;
}

.menu-icons {
  display: flex;
  position: relative;
  top: 50px;
}

.exit {
  color: #fff;
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 12px;
}

.div-no-content{
  background: #F2F2F2;
  height: 425px; 
  max-height: 425px; 
  width: 100%; 
  padding: 30px 20px; 
  display: flex; 
  flex-direction: column;  
  align-items: center;  
  justify-content: center; 
  text-align: center;
}

.title-no-content{
  font-size: 22px; 
  text-align: center; 
  font-weight: bold;
}

.subtitle-no-content{
  font-size: 16px; 
  text-align: center;
}


@media screen and (max-width: 600px) {
  .menu-icons {
    justify-content: space-between;
    margin-right: 10px;
    top: 0;
  }
  .certificate-download {
    top: 170px;
    right: 0;
    width: 117px;
    height: 40px;
    background-image: url(/assets/images/certificate-download-mobile.png);
    background-size: cover;
  }

  .points {
    width: 185px;
    top: 10px;
    left: initial;
  }

  .points > p {
    font-size: 9px;
  }

  .points-title {
    font-size: 10px;
  }

  .points-title span {
    font-size: 14px;
  }

  .points-box-score div span {
    padding: 0 6px;
  }

  .points-box-icon {
    padding: 12px 8px;
  }

  .user {
    top: 30px;
  }

  .user div p {
    font-size: 10px;
  }
}
@media only screen and (max-width: 1000px) {
  #modal-container {
    overflow: scroll;
  }
}
