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

// Letras
.btn-list-el {
  //position: relative;
  //left:220px;
  margin-left: 16%;
  border-radius: 4px;
  padding: 3px 5px;
  cursor:pointer;
  outline: 0;
  background: $bg-secondary;
  text-align: center;
  float:right;
  margin-left: 75%;

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

  a {
    font-size: 14px;
    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;
    }
  }
  @media screen and (max-width: $break-small) {
    margin-right:auto;
    margin-left:auto;
    width:90%;
    display: block;
  }
}

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

    h2 {
      font-family: $font-header;
      font-weight: bolder;
      font-size: 36px;
      margin-left:1%;
      @media screen and (max-width: $break-small) {
        text-align: center;
      }
    }

    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;
    margin-top: 10px;

    @media screen and (max-width: $break-small) {
      width: 100%;
      margin-right: auto;
      margin-left: auto;
      //color: #ff0000;
    }
    &:first-of-type {
      margin-right: 15%;
    }
  }

// Botao que adiciona imagem
.add-image {


    border-width: 4px;
    border-radius: 8px;
    cursor: pointer;
    color: $text-dark;
		//color: #ff0000;
    display: inline-block;
    font-size: 18px;
    font-family: $font-default;

		text-align:center;
		text-decoration: none;
		background: #e9e9e9;
		padding: 10px;
		margin-top: 10px;
		width:100%;
		font-weight: normal !important;

		&:hover {
			background:#b0cfed;
		}
}

//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;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

//Tag para procurar equipamento
.search_machine {
  display: none;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  line-height: 1.1em;
  border-radius: 4px;
  max-width: 950px;
  //background-color: #b0cfed;
  padding-top: 1.5rem !important;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

//Card que encapsula a imagem para o resultado de procurar
.photosS-btn {
    //align-items: center;
  background-color: #b0cfed;
  float: left;
  margin-left: 10px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;

}
//texto resultado do search
.text{
  float:right;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;

  background-color: #b0cfed;
 }

 .search{
  background-color: #b0cfed;
  //border:solid 1px;
  border-radius:8px;
  width:300px;
  height: 32px !important;
  align-self: center;
  margin-left: 15%;
 }

.search-text{
  float:left;
  background-color:transparent;
  padding-left:5px;
  font-style:italic;
  font-size:18px;
  border:none;
  height:32px;
  width:67%;
}
.search-btn {
	margin-right: 5px;
	height: 32px;
  //float: right;
  border-radius:5px;
  float:right;
  border: 4px solid transparent;
  cursor: pointer;

	img {
		width: 100%;
		max-width: 30px;
		height: 30px;

	}
}

//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%;
}

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

input {
  color:$text-dark;
  }