@font-face {
    font-family: myFont;
    src: url('/css/font-awesome.min.css');
    font-weight: bold;
}

body {
    font-family: myFont;
}

.desc {
    color: #0da9ef;
    text-decoration: none !important;
}

.logo-image {
    text-align: center;
}

.logo-image input[type="file"] {
    display: none;
}

.logo-figure {
    position: relative;
    height: 120px;
}

.logo-avatar {
    cursor: pointer;
    width: 120px;
    height: 120px;
    box-sizing: border-box;
    border-radius: 100%;
    border: 2px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all ease-in-out .3s;
}

.logo-avatar:hover {
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
}

.logo-icone {
    width: 10%;
    height: 10%;
}

.logo-figcaption {
    cursor: pointer;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: all ease-in-out .3s;
}

.logo-figcaption:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, .5);
}

.logo-figcaption>img {
    margin-top: 32.5px;
    width: 50px;
    height: 50px;
}

.btn-back1 {
    color: white;
    background-image: linear-gradient(90deg, #48c858, #86eb94);
    /* background-color: #0a9dff6b; */
}

.btn-back1:hover {
    color: white;
    background-image: linear-gradient(90deg, #86eb94, #48c858);
    transition: all .4s cubic-bezier(.25, .8, .25, 1);
    overflow: hidden;
}

.details {
    border: 1.5px solid grey;
    color: #212121;
    width: 100%;
    height: auto;
    box-shadow: 0px 0px 10px #212121;
}

.cart {
    background-color: #26991b;
    color: white;
    font-size: 17px;
    font-weight: 900;
    width: 100%;
    height: 39px;
    padding-top: 9px;
    box-shadow: 0px 5px 10px #212121;
}
.card-body-prod {
    width: fit-content;
}

.img-thumbnail {
    border: none;
}

.card-prod {
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
    border-radius: 5px;
    padding-bottom: 10px;
}


.nav-hover:hover{
    background-color: #0da9ef;
    border-radius: .2rem;
}

.card-titulo-descricao {
    max-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .thumb {
    position: relative;
    max-width: 200px;
    height: 200px;
    overflow: hidden;
}

.thumb img {
    position: relative;
    left: 50%;
    top: 50%;
    height: 100%;
    width: auto;
    transform: translate(-50%, -50%);
}

.thumb img.portrait {
    width: 100%;
    height: auto;
}