// Importando os estilos globais
@import '../../sass/styles';

// Letras


.btn-list-el {
  position: relative;
  left:220px;
  border-radius: 4px;
  padding: 15px  30px;
  cursor:pointer;
  outline: 0;
  background: $bg-secondary;
  text-align: center;

  border-right: 3px solid $bg-default;

  a {
    font-size: 16px;
    color: $text-light;
    font-weight: bolder;
    text-decoration: none;
  }

  &:hover {
    text-decoration: none;
    background: $dark-purple;
    transition: 0.15s linear;
  }


  @media screen and (min-width: $break-small + 1) and (max-width: $break-large) {
    padding: 10px 5px;
    a {
      font-size: 11px;
    }
    }

}

.photos-page {
    hyphens: auto;
    font-family: $font-default;
    color: $text-dark;

    h2 {
      font-family: $font-header;
      font-weight: bolder;
      font-size: 36px;
    }

    h3 {
      padding: 10px;
    }

    h4 {
      font-size: 22px;
      margin-top: 30px;
      font-weight: bolder;
    }

    label {
      font-size: 17px;
      width: 100%;
      font-weight: bolder;
    }
  }

// Botao "Mais Informacoes"
.btn {
    border-width: 4px;
    border-radius: 8px;
    cursor: pointer;
    color: $text-dark;
    display: inline-block;
    font-size: 18px;
    font-family: $font-default;
  }

//Tag para o botao "Mais informacoes"
.more_text {
  display: none;
}

// Imagem
.img {
    max-width: 100%;
    max-height: 100%;
    width: 270px;
    height: 270px;
    align-items: center;
    border-radius: 50%;
    padding: 10px;
  }


//Card que encapsula a imagem
.photos-btn {
    align-items: center;
    background-color: #b0cfed;
    border-radius: 3%;
    padding: 5px;
}

//Formulario
.form-style {
    background: #c5dcf2;
    border-radius: 3%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom-color: $text-dark;
    margin-top: 20px;
    width: 100%;
}

input {
  color:$text-dark;
  }