@import 'defaults.css';
@import 'feed-item.css';
@import 'modal.css';

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: Montserrat;
    font-size:13px;
    background-color:#f2f2f2;
    margin:0;
}
.container {
    max-width:1040px;
    width: 100%;
    margin:auto;
}

/* HEADER STYLE */

header {
    background-color:#121212;
    height:55px;
    position:relative;
    z-index:1;
    border-bottom: 1px solid white;
}

header .container {
    display:flex;
    height:inherit;
    padding: 0 20px;
}
header .logo {
    width: 200px;
    display: flex;
    align-items: center;
}
header .logo a {
    display: flex;
}
header .logo img {
    height:16px;
}
header .head-side {
    flex:1;
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.head-side .head-side-left {
    display: flex;
}

.head-side-middle  {
    display: flex;
    justify-content: space-between;
    max-width: 235px;
    width: 100%;
}

.head-side-middle a {
    color: white;
    text-decoration: none;
}

.head-side-middle a:hover {
    text-decoration: underline;
}


.head-side .head-side-right {
    display: flex;
    align-items: center;
}
.search-area input {
    background-color:white;
    background-image: url('../images/search.png');
    background-size: 13px;
    background-position-x: 10px;
    background-position-y: center;
    background-repeat: no-repeat;
    width:200px;
    height:25px;
    border-radius:15px;
    border:0;
    outline:0;
    padding-left:30px;
    transition: all .3s;
}
::placeholder {
    color:#A2B4C9;
}
.search-area input:focus {
    width:300px;
    background-color: #FFF;
}

.user-area {
    display:flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}
.user-area-text {
    color:#FFF;
    font-size:12px;
    font-weight: bold;
}

.user-area-icon img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #00ff09;
}

.user-area-box {
    width:100px;
    height:100px;
    position:absolute;
    background-color:#fff;
    top:45px;
}

.user-logout {
    display:block;
    margin-left:15px;
}
.user-logout img {
    width: 15px;
    height: 15px;
}

.entrarBtn {
    width: 90px;
    height: 25px;
    background-color: #35ff03;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 50px black;
    font-weight: 700;
    text-shadow: 0 0 20px #333333;
    color: white;
    font-size: 10px;
}

.div-menu-mobile {
    display: none;
    position: relative;
}

.button-menu-mobile {
    background-color: transparent;
    color: white;
    border: none;
    font-size: 20px;
}

.menu-mobile {
    display: none;
    flex-direction: column;
    height: 180px;
    justify-content: space-between;
    width: 0px;
    /*padding: 0 10px;*/
    position: absolute;
    top: 40px;
    right: -19px;
    text-decoration: none;
    background-color: #f2f2f2;
    list-style-type: none;
    transition: 0.5s;
}

.menu-mobile-link {
    color: black;
    text-decoration: none;
    margin-left: 15px;
}

.menu-mobile-userArea {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-area-icon {
    margin-left: 15px;
}

.avatar-menu-mobile {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #f8fff8;
    box-shadow: 0 0 16px 0 #858585;
}

.sairBtn {
    background-color: red;
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 30px;
    width: 80px;
    border: none;
    border-radius: 5px;
    padding: 0 7px;
    box-shadow: 0 0 16px 0 #a5a5a5;
}

.sairBtn-link {
    text-decoration: none;
}

/* END HEADER STYLE */

/* HOME STYLE */

/* WELCOME BANNER */

.home-welcome-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 440px;
    background-color: #121212;
    padding: 0 20px;
}

.home-welcome-banner-container {
    justify-content: space-between;
}

.home-welcome-banner-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 665px;
    width: 100%;
    height: 345px;
}

.home-welcome-banner-logo {
    width: 150px;
}

.home-welcome-banner-mensage {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 30px;
    text-decoration: underline;
    text-decoration-color: red;
      text-decoration-thickness: 20%;
}

.home-welcome-banner-mensage button {
    width: 170px;
    height: 40px;
    background-color: #35ff03;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 50px black;
    font-weight: 700;
    text-shadow: 0 0 20px #333333;
    color: white;
}

.home-welcome-banner-left-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
}

.home-welcome-banner-left-top p {
    color: white;
    font-size: 15px;
}

.home-welcome-banner-right img {
    width: 240px;
    height: 306px;
    margin-bottom: -390px;
}

.home-welcome-banner-left-bottom {
    display: flex;
    justify-content: space-between;
}

.home-resource-div {
    position: relative;
    width: 155px;
    height: 95px;
    transition: 0.3s;
}

.home-resource-div:hover {
    transform: scale(1.1);
}

.home-resource-div-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0px;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background-color: red;
    z-index: 1;
}

.home-resource-div-desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 90px;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 4px 10px 20px 10px;
    box-shadow: 0 0 16px black;
}

.home-resource-div-desc h3 {
    margin-left: 18px;
    font-weight: 400;
}

/* END WELCOME BANNER */

/* ASTROBLOG HOME */

.home-astroblog {
    padding: 50px 0;
}

.home-astroblog-container {
    display: flex;
    flex-direction: column;
}

.home-astroblog-container h2 {
    font-size: 23px;
    font-weight: 300;
    margin-bottom: 30px;
}

.home-astroblog-section {
    display: grid;
    grid-template-rows: repeat(4, 100px);
    grid-template-columns: repeat(7, 100px);
    gap: 5px;
    justify-content: center;
    grid-template-areas: 
    "atblog-div-1 atblog-div-1 atblog-div-2 atblog-div-2 atblog-div-2 atblog-div-2 atblog-ads"
    "atblog-div-1 atblog-div-1 atblog-div-2 atblog-div-2 atblog-div-2 atblog-div-2 atblog-ads"
    "atblog-div-1 atblog-div-1 atblog-div-2 atblog-div-2 atblog-div-2 atblog-div-2 atblog-ads"
    "atblog-div-3 atblog-div-3 atblog-div-3 atblog-div-4 atblog-div-4 atblog-div-4 atblog-ads";
}

.home-astroblog-div-1 {
    position: relative;
    grid-area: atblog-div-1;
    background-color: red;
}

.home-astroblog-div-2 {
    position: relative;
    grid-area: atblog-div-2;
    background-color: red;
}

.home-astroblog-div-3 {
    position: relative;
    grid-area: atblog-div-3;
    background-color: red;
}

.home-astroblog-div-4 {
    position: relative;
    grid-area: atblog-div-4;
    background-color: red;
}

.home-astroblog-ads {
    grid-area: atblog-ads;
    background-color: red;
}

.div-categoria-astroblog {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 20px;
    background-color: #9e9e9e;
    font-size: 11px;
    color: white;
}

.home-astroblog-div-title {
    position: absolute;
    bottom: 5px;
    left: 10px;
    color: white;
}

/* END ASTROBLOG HOME */

/* NUMEROS SITE */

.home-numeros {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    height: 200px;
    color: black;
}

.numero-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.numero-div span {
    font-size: 50px;
    font-weight: 900;
}

.numero-div p {
    font-size: 20px;
    font-weight: 900;
}

/* END NUMEROS SITE */

/* MENSAGEM HOME */

.home-mensagem {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    border-bottom: 1px solid white;
    padding: 12px 20px;
    text-align: center;
}

/* END MENSAGEM HOME */

/* ASTROLOJA HOME */

.home-astroloja {
    background-color: #121212;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-astroloja-container h2 {
    font-size: 23px;
    font-weight: 300;
    margin-bottom: 30px;
    color: white;
}

.home-astroloja-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: center;
}

.home-astroloja-carrossel-section {
    overflow: hidden;
    display: flex;
    width: 805px;
    position: relative;
    height: 300px;
    align-items: center;
    margin: 0 15px;
}

.home-astroloja-carrossel {
    display: flex;
    height: 280px;
    gap: 15px;
    transition: 0.5s;
    /*transform: translateX(0);*/
    position: absolute;
    left: 0;
}

.btnPrevNext-Product {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: transparent;
    color: white;
    border: solid 3px white;
    font-weight: 900;
    width: 40px;
    height: 40px;
    transition: 0.3s;
}

.btnPrevNext-Product:hover {
    transform: scale(1.1);
}

.btnPrevNext-Product-mobile {
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: transparent;
    color: white;
    border: solid 4px white;
    font-weight: 900;
    width: 40px;
    height: 40px;
}

.btnTransicao {
    border-color: gray;
    color: gray;
    pointer-events: none;
}

.link-card-produtoHome {
    text-decoration: none;
    color: inherit;
}

.home-astroloja-div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 190px;
    height: 280px;
    background-color: white;
    border-radius: 5px;
    padding: 15px;
    transition: transform 0.2s ease;
}

.home-astroloja-div:hover {
    transform: scale(1.04);
}

.home-astroloja-div-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
    overflow: hidden;
    box-shadow: 0 0 15px #e4e4e4;
}

.home-astroloja-div-img-categoria {
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 20px;
    background-color: #9e9e9e;
    font-size: 11px;
    color: white;
}

.home-astroloja-div-imagem-item {
    width: 100%;
}

.home-astroloja-div-infos {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 75px;
}

.home-produto-titulo {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.home-produto-titulo h3 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.home-produto-localizacao {
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid black;
    padding-bottom: 3px;
    font-size: 11px;
}

.home-produto-localizacao p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.home-produto-preco {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.btnMobile-area {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    width: 100%;
}

.btnAstrolojaHome {
    width: 170px;
    height: 40px;
    background-color: #35ff03;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 30px black;
    font-weight: 700;
    text-shadow: 0 0 20px #333333;
    color: white;
    transition: 0.3s;
}

.btnAstrolojaHome:hover {
    transform: scale(0.9);
}

/* END ASTROLOJA HOME */

/* ASTROGALERIA HOME */

.home-astrogaleria {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-astrogaleria-container h2 {
    font-size: 23px;
    font-weight: 300;
    margin-bottom: 30px;
}

.home-astrogaleria-section-center {
    display: flex;
    justify-content: center;
}

.home-astrogaleria-section {
    display: grid;
    grid-template-columns: 140px 140px 140px 140px 140px 140px 140px;
    grid-template-rows: 55px 140px 140px 55px;
    gap: 5px;
    grid-template-areas: 
    ". . img2 img2 . . ."
    "img1 img1 img2 img2 img3 img4 img4"
    "img1 img1 img5 img6 img6 img4 img4"
    ". . . img6 img6 . .";
    margin-bottom: 30px;
}

.home-astrogaleria-div-1 {
    position: relative;
    grid-area: img1;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.home-astrogaleria-div-1:hover {
    transform: scale(1.06);
    z-index: 1;
}

.astrogaleria-div-hover-1 {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-color: transparent;
    padding: 20px;
}

.astrogaleria-div-hover-1 p {
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.astrogaleria-div-hover-1:hover {
    color: white;
    background-color: #0000008f;
}

.home-astrogaleria-div-2 {
    position: relative;
    grid-area: img2;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.home-astrogaleria-div-2:hover {
    transform: scale(1.06);
    z-index: 1;
}

.astrogaleria-div-hover-2 {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-color: transparent;
}

.astrogaleria-div-hover-2:hover {
    color: white;
    background-color: #0000008f;
}

.home-astrogaleria-div-3 {
    position: relative;
    grid-area: img3;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.home-astrogaleria-div-3:hover {
    transform: scale(1.06);
    z-index: 1;
}

.astrogaleria-div-hover-3 {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-color: transparent;
}

.astrogaleria-div-hover-3:hover {
    color: white;
    background-color: #0000008f;
}

.home-astrogaleria-div-4 {
    position: relative;
    grid-area: img4;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.home-astrogaleria-div-4:hover {
    transform: scale(1.06);
    z-index: 1;
}

.astrogaleria-div-hover-4 {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-color: transparent;
}

.astrogaleria-div-hover-4:hover {
    color: white;
    background-color: #0000008f;
}

.home-astrogaleria-div-5 {
    position: relative;
    grid-area: img5;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.home-astrogaleria-div-5:hover {
    transform: scale(1.06);
    z-index: 1;
}

.astrogaleria-div-hover-5 {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-color: transparent;
}

.astrogaleria-div-hover-5:hover {
    color: white;
    background-color: #0000008f;
}

.home-astrogaleria-div-6 {
    position: relative;
    grid-area: img6;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.home-astrogaleria-div-6:hover {
    transform: scale(1.06);
    z-index: 1;
}

.astrogaleria-div-hover-6 {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background-color: transparent;
}

.astrogaleria-div-hover-6:hover {
    color: white;
    background-color: #0000008f;
}

.home-astrogaleria-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.astrogaleria-div-hover {
    display: none;
}

.home-astrogaleria button {
    width: 170px;
    height: 40px;
    background-color: #35ff03;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 15px #c2c2c2;
    font-weight: 700;
    text-shadow: 0 0 20px #333333;
    color: white;
    transition: 0.3s;
}

.home-astrogaleria button:hover {
    transform: scale(0.9);
}

/* END ASTROGALERIA HOME */

/* ASTROBIBLIOTECA HOME */

.home-astrobiblioteca {
    background-color: #121212;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid white;
}

.home-astrobiblioteca-container h2 {
    font-size: 23px;
    font-weight: 300;
    margin-bottom: 30px;
    color: white;
}

.home-astrobiblioteca-section-center {
    display: flex;
    justify-content: center;
}

.home-astrobiblioteca-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    width: 100%;
}

.home-astrobiblioteca-div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    height: 300px;
    background-color: #f2f2f2;
    border-radius: 5px;
    box-shadow: 0 0 16px black;
    transition: transform 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.home-astrobiblioteca-div:hover {
    transform: scale(1.1);
}


.home-astrobiblioteca-div img {
    width: 180px;
    height: 267px;
    box-shadow: 0 0 10px black;
}

.home-astrobiblioteca-div-tittle {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    width: 100%;
    height: 40px;
    background-color: white;
    border-radius: 0 0 5px 5px;
    text-align: center;
    padding: 0 15px;
}

.home-astrobiblioteca-div-tittle h3 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
    font-size: 13px;
}

.home-astrobiblioteca button {
    width: 170px;
    height: 40px;
    background-color: #35ff03;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 30px black;
    font-weight: 700;
    text-shadow: 0 0 20px #333333;
    color: white;
    transition: 0.3s;
}

.home-astrobiblioteca button:hover {
    transform: scale(0.9);
}

/* END ASTROBIBLIOTECA HOME */

/* END HOME STYLE */

/* FOOTER STYLE */

footer {
    display: flex;
    flex-direction: column;
    height: 230px;
    background-color: #121212;
    border-top: 1px solid white;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    height: 200px;
}

.footer-logo img {
    width: 155px;
    height: 28px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-sub {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid white;
    width: 100%;
    height: 30px;
}

.footer-sub-copy {
    display: flex;
    color: white;
}

.footer-sub-copy img {
    width: 16px;
    height: 15px;
}

.footer-brasil-flag {
    position: absolute;
    right: 10px;
    width: 20px;
    height: 20px;
}

/* END FOOTER STYLE */

/* astro GALERIA - BIBLIOTECA - LOJA */

.galeria-biblioteca-loja-background {
    background-color: #121212;
    padding: 70px 20px 70px 20px;
}

.galeria-biblioteca-loja-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-tittle {
    color: white;
    font-size: 30px;
    align-self: flex-start;
    font-weight: 300;
}

.galeria-biblioteca-loja-section {
    display: flex;
    justify-content: space-between;
    max-width: 960px;
    width: 100%;
    margin-top: 60px;
}

.g-b-l-section-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    max-width: 260px;
    width: 100%;
    height: 675px;
    background-color: #f2f2f2;
    border-radius: 5px;
    margin-top: 75px;
}

.g-b-l-div-upload {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-radius: 5px;
    width: 100%;
    height: 155px;
    box-shadow: 0 0 20px #b6b6b6;
    background-color: white;
}

.g-b-l-div-upload h3 {
    color: #3b3b3b;
    size: 16px;
}

.g-b-l-div-upload p {
    color: #3b3b3b;
    margin-bottom: 10px;
}

.g-b-l-div-upload button {
    width: 100%;
    height: 40px;
    background-color: #35ff03;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 16px #e5e5e5;
    font-weight: 700;
    text-shadow: 0 0 16px #737373;
    color: white;
}

.g-b-l-propaganda-div img {
    width: 230px;
    height: 230px;
    box-shadow: 0 0 16px #aaaaaa;
}

.g-b-l-section-right {
    display: flex;
    flex-direction: column;
    padding: 20px;
    max-width: 670px;
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 5px;
}

.g-b-l-section-right-search {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.input-search-name {
    max-width: 420px;
    width: 100%;
    height: 35px;
    border-radius: 5px;
    border: none;
    color: #b5b5b5;
    font-size: 14px;
    font-weight: 500px;
    padding-left: 20px;
    box-shadow: 0 0 16px #c5c5c5;
}

.input-search-name:focus {
    outline: none;
}

.button-search-name {
    height: 35px;
    width: 35px;
    border: none;
    border-radius: 100%;
    background-color: white;
    box-shadow: 0 0 4px #aaaaaa;
}

.input-search-categoria {
    width: 190px;
    height: 35px;
    border-radius: 5px;
    border: none;
    color: #b5b5b5;
    font-size: 14px;
    font-weight: 500px;
    padding: 0 20px 0 20px;
    box-shadow: 0 0 16px #c5c5c5;
}

.input-search-categoria:focus {
    outline: none;
}

.g-b-l-vitrine {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

/* ASTROGALERIA STYLE */

.model_astrofotografia {
    display: none;
}

.astrofotografia-div {
    width: 100%;
    height: 230px;
    box-shadow: 0 0 16px 0 #999999;
}

.astrofotografia-div-img {
    width: 100%;
    height: 200px;
}

.astrofotografia-div-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.astrofotografia-div-tittle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30px;
    background-color: white;
    padding: 0 10px 0 10px;
}

.astrofotografia-div-tittle p {
    font-weight: 300;
    font-size: 16px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* POPUP ADD ASTROFOTOGRAFIA */

/*.modal_addAstrofotografia {
    display: none;
    position: fixed;
    gap: 20px;
    width: 100%;
    height: 100vh;
    background-color: #383838a8;
    backdrop-filter: blur(5px);
    z-index: 2;
    top: 0;
    padding: 50px 20px;
    overflow-y: auto;
}

.form_addAstrofotografia {
    max-width: 950px;
    width: 100%;
}

.modal_addAstrofotografia_content {
    display: flex;
    height: 450px;
    background-color: white;
    border-radius: 10px;
}

.show_modal_addAstrofotografia {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_close_astrofotografia_form {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    min-width: 40px;
    min-height: 40px;
    border-radius: 100%;
    background-color: red;
    color: white;
}

.btn_back_astrofotografia_form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: gray;
    color: white;
    border-radius: 100%;
    border: none;
}

.btn_next_send_astrofotografia_form {
    width: 200px;
    height: 40px;
    background-color: #35ff03;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 16px #c1c1c1;
    font-weight: 700;
    text-shadow: 0 0 10px #7f7f7f;
    color: white;
    align-self: flex-end;
}

.addAstrofotografia_left {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 350px;
    width: 100%;
    height: 450px;
    background-color: red;
    border-radius: 10px 0 0 10px;
    padding: 20px;
}

.addAstrofotografia_left h3 {
    color: white;
    font-size: 20px;
}

.addAstrofotografia_left_area_input {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 350px;
}

.addAstrofotografia_input_tittle {
    height: 45px;
    border-radius: 5px;
    color: #6b6b6b;
    background-color: white;
    padding-left: 20px;
    border: none;
    font-family: montserrat;
    font-size: 14px;
    font-weight: 500;
}

.addAstrofotografia_input_img_div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    width: 100%;
    height: 135px;
    background-color: white;
    border-radius: 5px;
}

.addAstrofotografia_input_img {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 5px;
    background-image: url("http://localhost/devsbook/public/assets/images/g1092.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px dashed black;
}

.addAstrofotografia_input_img input {
    display: none;
}

.addAstrofotografia_input_descricao {
    height: 120px;
    border-radius: 5px;
    color: #6b6b6b;
    background-color: white;
    padding: 20px;
    border: none;
    font-family: montserrat;
    font-size: 14px;
    font-weight: 500;
}

.addAstrofotografia_right {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    width: 100%;
    height: 450px;
    padding: 20px;
    background-color: #f2f2f2;
    border-radius: 0 10px 10px 0;
}

.addAstrofotografia_right_1 {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    max-width: 560px;
    width: 100%;
    height: 410px;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 16px 0 #bdbdbd;
    background-color: white;
}

.addAstrofotografia_right_1 h3 {
    font-weight: 400;
    font-size: 15px;
}

.addAstrofotografia_input_area1 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 400px));
    grid-template-rows: repeat(5, 38px);
    gap: 20px;
}

.addAstrofotografia_input1_style {
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    padding: 0 10px;
    font-family: montserrat;
    font-size: 13px;
    color: #555555;
    font-weight: 500;
    background-color: white;
    box-shadow: 0 0 14px 0 #e7e7e7;
}

.hide-Field {
    display: none;
}

.addAstrofotografia_input_area1 select {

}

.addAstrofotografia_right_2 {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    max-width: 560px;
    width: 100%;
    height: 410px;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 16px 0 #bdbdbd;
    background-color: white;
}

.addAstrofotografia_right_2 h3 {
    font-weight: 400;
    font-size: 15px;
}

.addAstrofotografia_input_area2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 400px));
    grid-template-rows: repeat(5, 45px);
    gap: 15px;
}

.addAstrofotografia_input2_style {
    height: 40px;
    border: 1px solid #ababab;
    border-radius: 3px;
    background-color: #fafafa;
    padding: 0 20px;
    font-family: montserrat;
    font-size: 13px;
    font-weight: 400;
}

.addAstrofotografia_right_2_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show_Step{
    display: flex;
}*/

.modal_addAstrofotografia {
    display: none;
    position: fixed;
    gap: 20px;
    width: 100%;
    height: 100vh;
    background-color: #383838a8;
    backdrop-filter: blur(5px);
    z-index: 2;
    top: 0;
    padding: 50px 20px;
    overflow-y: auto;
}

.form_addAstrofotografia {
    max-width: 950px;
    width: 100%;
}

.modal_addAstrofotografia_content {
    display: flex;
    height: 550px;
    background-color: white;
    border-radius: 10px;
}

.show_modal_addAstrofotografia {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_close_astrofotografia_form {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    min-width: 40px;
    min-height: 40px;
    border-radius: 100%;
    background-color: red;
    color: white;
}

.btn_back_astrofotografia_form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    color: black;
    border-radius: 100%;
    border: 2px solid black;
}

.btn_next_send_astrofotografia_form {
    width: 200px;
    height: 40px;
    min-height: 40px;
    background-color: #35ff03;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    text-shadow: 0 0 10px #7f7f7f;
    color: white;
    align-self: flex-end;
    font-size: 15px;
}

.addAstrofotografia_left {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    max-height: 650px;
    height: 100%;
    background-color: #121212;
    border-radius: 10px 10px 10px 10px;
    padding: 30px;
    gap: 30px;
}

.addAstrofotografia_left h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 0 0 0 10px;
    border-left: 5px solid red;
}

.addAstrofotografia_left_area_input {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.addAstrofotografia_leftSection_TitleCatObj {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.addAstrofotografia_left_CatObj {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: space-between;
}

.addAstrofotografia_input1_style[name=categoria], .addAstrofotografia_input1_style[name=objeto] {
    height: 35px;
    min-width: 120px;
    background-color: transparent;
    border: 1px solid black;
}

.addAstrofotografia_tittle_img {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    gap: 80px;
    background-color: #f2f2f2;
    border-radius: 10px;
    padding: 30px;
}

.addAstrofotografia_input_tittle {
    height: 35px;
    width: 100%;
    border-radius: 5px;
    color: #6b6b6b;
    background-color: transparent;
    padding-left: 20px;
    border: 1px solid black;
    font-family: montserrat;
    font-size: 14px;
    font-weight: 500;
    /* box-shadow: 0 0 14px 0 #e7e7e7; */
}

.addAstrofotografia_input_img_div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 14px 0 #d4d4d4;
}

.addAstrofotografia_input_img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-height: 266px;
    background-color: white;
    border-radius: 5px;
    /*background-image: url("http://localhost/devsbook/public/assets/images/g1092.png");*/
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px dashed black;
}

#div_Icon_P {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    font-size: 70px;
}

#div_Icon_P p {
    font-size: 12px;
}

.addAstrofotografia_input_img input {
    display: none;
}

#imgPreview {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.addAstrofotografia_input_descricao {
    height: 150px;
    width: 100%;
    border-radius: 5px;
    color: #6b6b6b;
    background-color: white;
    padding: 15px;
    border: none;
    font-family: montserrat;
    font-size: 14px;
    font-weight: 400;
    box-shadow: 0 0 15px 0 #e0e0e0;
    margin-top: 5px;
}

.addAstrofotografia_input_descricaoLabel {
    grid-column: 1 / -1;
    font-size: 10px;
    font-weight: 600;
    width: 100%;
}

.prevOptions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.prevOptions_div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.label_Options_p {
    color: white;
    font-weight: 400;
    font-size: 15px;
    color: #121212;
}

.label_Options {
    position: relative;
    width: 100%;
}

.label_Options input {
    position: absolute;
}

.tipoImg_div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.tipoEqp_div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.btnPrev_Options {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*border: 1px solid black;*/
    border-radius: 5px;
    width: 80px;
    height: 70px;
    color: black;
    position: relative;
    z-index: 2;
    background-color: white;
    text-align: center;
    font-weight: 400;
    box-shadow: 0 0 14px 0 #e7e7e7;
}

.btnPrev_Options:hover {
    scale: 1.1;
    box-shadow: 0 0 14px 0 #bcbcbc;
}

.selected_btnPrev_Options {
    scale: 1.1;
    border: 1px solid black;
}


.btnFormPrev {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background: white;
    border: none;
    border-radius: 20px;
}

.btnFormPrev_clicked {
    background: transparent;
    border: 4px solid white;
    color: white;
}

.section_imgUploaded {
    display: none;
    width: 100%;
    position: relative;
    max-width: 350px;
}

.section_imgUploaded img {
    max-width: 100%;
    object-fit: cover;
    position: relative;
    border-radius: 10px 0 0 10px;
}

.btn_editImg {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: white;
    color: black;
    text-shadow: none;
    width: 120px;
    border-radius: 10px;
    height: 40px;
    min-height: 40px;
    font-weight: 700;
    border: none;
    transition: 0.3s;
}

.btn_editImg:hover {
    scale: 1.1;
}

.addAstrofotografia_right {
    display: none;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    width: 100%;
    max-height: 650px;
    height: 100%;
    padding: 30px;
    background-color: #f2f2f2;
    border-radius: 0 10px 10px 0;
}

.addAstrofotografia_right_1 {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    max-width: 560px;
    width: 100%;
    height: 100%;
}

.addAstrofotografia_right_1 h3 {
    font-weight: 400;
    font-size: 15px;
}

.addAstrofotografia_input_area1 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 400px));
    grid-template-rows: 52px 52px 52px 117px;
    gap: 15px;
}

.addAstrofotografia_input_area1 label {
    font-size: 10px;
    font-weight: 600;
    width: 100%;
}

.addAstrofotografia_input1_style {
    border: none;
    border-radius: 5px;
    padding: 0 10px;
    font-family: montserrat;
    font-size: 13px;
    color: #555555;
    font-weight: 400;
    background-color: white;
    box-shadow: 0 0 15px 0 #e0e0e0;
    width: 100%;
    height: 35px;
    margin-top: 5px;
}

.hide-Field {
    display: none;
    max-width: 100%;
    width: 100%;
    height: 450px;
    background-color: blue;
}

.addAstrofotografia_input_area1 select {

}

.addAstrofotografia_right_2 {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    max-width: 560px;
    width: 100%;
    height: 100%;
}

.addAstrofotografia_right_3 {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    max-width: 560px;
    width: 100%;
    height: 100%;
}

.addAstrofotografia_right_2 h3 {
    font-weight: 400;
    font-size: 15px;
}

.addAstrofotografia_input_area2 {
    display: flex;
    grid-template-columns: repeat(2, minmax(0, 400px));
    grid-template-rows: repeat(5, 45px);
    gap: 15px;
}

.addAstrofotografia_input_areaImgType {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 400px));
    grid-template-rows: repeat(2, 52px);
    gap: 15px;
}

.addAstrofotografia_input_areaImgType_PlnLun {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 400px));
    grid-template-rows: repeat(3, 52px);
    gap: 15px;
}

.addAstrofotografia_input_areaImgType label {
    font-size: 10px;
    font-weight: 600;
    width: 100%;
}

.addAstrofotografia_input_areaImgType_PlnLun label {
    font-size: 10px;
    font-weight: 600;
    width: 100%;
}

.addAstrofotografia_input_areaImgType_label:nth-child(1) {
  grid-column: 1 / 3;
}

.addAstrofotografia_input_areaImgType_label:nth-child(2) {
  grid-column: 3 / 5;
}

.addAstrofotografia_input_areaImgType_label:nth-child(3) {
  grid-column: 5 / -1;
}

.addAstrofotografia_input_areaImgType_label:nth-child(4) {
  grid-column: 1 / -1;
}

.addAstrofotografia_input_areaImgType_label:nth-child(5) {
  grid-column: 1 / -1;
}

/*.addAstrofotografia_input_areaImgType_sftCap {
    font-size: 10px;
    font-weight: 600;
    width: 100%;
    grid-column: 1 / 2;
}

.addAstrofotografia_input_areaImgType_sftPro {
    font-size: 10px;
    font-weight: 600;
    width: 100%;
    grid-column: 2 / -1;
}*/

.addAstrofotografia_input_areaEqpType {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 400px));
    grid-template-rows: repeat(5, 52px);
    gap: 15px;
}

.addAstrofotografia_input_areaEqpType label {
    font-size: 10px;
    font-weight: 600;
    width: 100%;
}

.showCardForm {
    display: grid;
}

.addAstrofotografia_input2_style {
    height: 40px;
    border: 1px solid #ababab;
    border-radius: 3px;
    background-color: #fafafa;
    padding: 0 20px;
    font-family: montserrat;
    font-size: 13px;
    font-weight: 400;
}

.addAstrofotografia_right_2_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show_Step{
    display: flex;
}

/* END POPUP ADD ASTROFOTOGRAFIA */

/* SINGLE FOTOGRAFIA */

.sec-principal-fotografia {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #121212;
    padding: 70px 20px 70px 20px;
}

.principal-fotografia {
    position: relative;
    background-color: #efefef;
    border-radius: 5px;
    max-width: 900px;
    width: 100%;
}

.div-obj-categoria {
    position: absolute;
    top: -10px;
    left: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 40px;
    background-color: red;
    color: white;
    font-size: 13px;
    box-shadow: 0 0 16px 0 #393939bf;
}

.div-info-img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 400px;
    padding: 20px 20px;
    gap: 40px;
}

.sec-infos-fotografia {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 25px 0 0 0;
    max-width: 350px;
    width: 100%;
}

.div-titulo-descricao-fotografia {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.titulo-fotografia {
    font-size: 20px;
    margin-bottom: 10px;
}

.descricao-fotografia {
    max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.sec-visu-like-btnLike-fotografia {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.div-visu-like-fotografia {
    display: flex;
    gap: 15px;
}

.visu-fotografia {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    gap: 5px;
}

.like-fotografia {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    gap: 5px;
}

.btnCurtirComentar-fotografia {
    height: 40px;
    width: 110px;
    background-color: #26ff00;
    border-radius: 5px;
    font-family: montserrat;
    font-weight: 700;
    border: none;
    color: white;
    align-self: flex-end;
}

.cidade-fotografia {
    padding-bottom: 4px;
    margin-bottom: 4px;
    border-bottom: 1px solid black;
    width: 100%;
}

.autor-fotografia {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.autor-fotografia a span {
    width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.linkExcluir-Astrofotografia {
    position: absolute;
    right: 0;
}

.autor-fotografia-avatar {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.imagem-principal {
    max-width: 540px;
    width: 100%;
    max-height: 360px;
    box-shadow: 0 0 16px 0 #969696;
}

.btnExcluir-fotografia {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    width: 100px;
    background-color: red;
    border-radius: 5px;
    font-family: montserrat;
    font-weight: 700;
    font-size: 13px;
    border: none;
    color: white;
    padding: 0 12px;
}

.btnExcluir-fotografia:hover {
    cursor: pointer;
}

.section-ficha-background {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    width: 100%;
    background-color: #efefef;
    padding: 15px;
    margin-bottom: 50px;
    margin-top: 50px;
    border-radius: 3px;
}

.section-ficha {
    position: relative;
    background-color: white;
    width: 100%;
    padding: 55px 25px 25px 25px;
    box-shadow: 0 0 16px 0 #8f8f8fa1;
    border-radius: 3px;
}

.ficha-tecnica-title {
    position: absolute;
    height: 40px;
    left: -7px;
    top: -7px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 40px;
    background-color: red;
    color: white;
    font-size: 13px;
    box-shadow: 0 0 16px 0 #8f8f8fba;
}

.sec-infos-tecnicas-fotografia {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.descricao-fichaTec {
    margin: 20px 0;
    font-size: 15px;
}

.section-comentarios-background {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    width: 100%;
    background-color: #efefef;
    padding: 15px;
    border-radius: 5px;
}

.section-comentarios {
    position: relative;
    background-color: white;
    width: 100%;
    padding: 55px 20px 20px 20px;
    box-shadow: 0 0 16px 0 #8f8f8fa1;
    border-radius: 3px;
}

.comentarios-title {
    position: absolute;
    height: 40px;
    left: -7px;
    top: -7px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 40px;
    background-color: red;
    color: white;
    font-size: 13px;
    box-shadow: 0 0 16px 0 #8f8f8fba;
    border-radius: 5px 0 0 0;
}

.section-comentarios-fotografia {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-comentar-fotografia {
    background-color: white;
    width: 100%;
    padding: 15px 20px;
    box-shadow: 0 0 16px 0 #eaeaea;
    border-radius: 10px;
}

.section-comentar-fotografia p {
    font-size: 15px;
    margin-bottom: 10px;
}

.commentArea {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 15px;
}

.comentarioSingle {
    display: flex;
}

.comentarioSingle img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-right: 10px;
}

.comentarioContent {
    display: flex;
    flex-direction: column;
}

.comentarioContent a {
    text-decoration: none;
    color: black;
    font-weight: 700;
}

.comentarioBody {
    word-break: break-word;
    max-width: 350px;
}

.comentario-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.comentario-form textarea {
    font-family: montserrat;
    padding: 15px;
    width: 100%;
    height: 70px;
    border: none;
    background-color: #f1f1f1;
    border-radius: 10px;
}

/* END SINGLE FOTOGRAFIA */

/* END ASTROGALERIA STYLE */

/* ASTROLOJA STYLE */

.model_produtosItem {
    display: none;
}

.astroloja-div-link {
    text-decoration: none;
    color: inherit;
}

.astroloja-div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 310px;
    background-color: white;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 0 16px 0 #c5c5c5;
}

.astroloja-div-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 170px;
    overflow: hidden;
    box-shadow: 0 0 16px #e3e3e3;
}

.astroloja-div-img-categoria {
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 20px;
    background-color: #9e9e9e;
    font-size: 11px;
    color: white;
}

.astroloja-div-imagem-item {
    width: 100%;
}

.astroloja-div-infos {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100px;
}

.produto-titulo {
    width: 100%;
    overflow: hidden;
}

.tituloProduto {
    max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.produto-localizacao {
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid black;
    padding-bottom: 3px;
    font-size: 11px;
}

.produto-preco {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

/* POPUP ADD ASTROLOJA */

.form_addProduto {
    max-width: 850px;
    width: 100%;
}

.modal_addProduto {
    display: none;
    position: fixed;
    gap: 20px;
    width: 100%;
    height: 100vh;
    background-color: #383838a8;
    backdrop-filter: blur(5px);
    z-index: 2;
    top: 0px;
    padding: 50px 20px;
    overflow-y: auto;
}

.modal_addProduto_content {
    display: flex;
    width: 100%;
    height: 450px;
    background-color: white;
    border-radius: 10px;
}

.show_modal_addProduto {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_close_produto_form {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: red;
    color: white;
}

.btn_back_produto_form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: gray;
    color: white;
    border-radius: 100%;
    border: none;
}

.btn_next_send_produto_form {
    width: 200px;
    height: 40px;
    background-color: #35ff03;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 4px #aaaaaa;
    font-weight: 700;
    text-shadow: 0 0 1px #333333;
    color: white;
    align-self: flex-end;
}

.addProduto_left {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 350px;
    min-width: 300px;
    width: 100%;
    height: 450px;
    background-color: #008CFF;
    border-radius: 10px 0 0 10px;
    padding: 20px;
}

.addProduto_left h3 {
    color: white;
    font-size: 20px;
}

.addProduto_left_area_input {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 350px;
}

.addProduto_input_tittle {
    height: 45px;
    border-radius: 5px;
    color: #6b6b6b;
    background-color: white;
    padding-left: 20px;
    border: none;
    font-family: montserrat;
    font-size: 14px;
    font-weight: 500;
}

.addProduto_input_valor {
    height: 45px;
    border-radius: 5px;
    color: #6b6b6b;
    background-color: white;
    padding-left: 20px;
    border: none;
    font-family: montserrat;
    font-size: 14px;
    font-weight: 500;
}

.addProduto_inputs_img {
    display: grid;
    width: 100%;
    height: 210px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

.addProduto_input_img_div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 16px 0 #7a7a7a;
}

.addProduto_input_img {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 5px;
    background-image: url("http://localhost/devsbook/public/assets/images/g1092.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px dashed black;
}

.addProduto_input_img input {
    display: none;
}

.addProduto_right {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    width: 100%;
    height: 450px;
    padding: 20px;
    background-color: #f2f2f2;
    border-radius: 0 10px 10px 0;
}

.addProduto_right_1 {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    max-width: 460px;
    width: 100%;
    height: 410px;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 16px 0 #bdbdbd;
    background-color: white;
}

.addProduto_right_1 h3 {
    font-weight: 400;
    font-size: 15px;
}

.addProduto_input_area1 {
    display: grid;
    gap: 20px;
}

.addProduto_input_area1_top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.addProduto_input1_style {
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    padding: 0 10px;
    font-family: montserrat;
    font-size: 13px;
    color: #555555;
    font-weight: 500;
    background-color: white;
    box-shadow: 0 0 14px 0 #e7e7e7;
    height: 45px;
    width: 100%;
}

.addProduto_input_area1 select {
    border-right: 20px solid transparent;
}

.addProduto_input_descricao {
    height: 170px;
    width: 100%;
    border-radius: 5px;
    color: #6b6b6b;
    background-color: white;
    padding: 20px;
    border: none;
    box-shadow: 0 0 14px 0 #e7e7e7;
    font-family: montserrat;
    font-size: 14px;
}

.addProduto_right_2 {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    max-width: 460px;
    width: 100%;
    height: 410px;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 16px 0 #bdbdbd;
    background-color: white;
}

.addProduto_right_2 h3 {
    font-weight: 400;
    font-size: 15px;
}

.addProduto_input_area2 {
    display: grid;
    grid-template-columns: minmax(100px, 1fr);
    grid-template-rows: 35px 35px 35px 150px;
    gap: 10px;
}

.addAstrofotografia_input2_style {
    border: none;
    border-radius: 5px;
    padding: 0 10px;
    font-family: montserrat;
    font-size: 13px;
    color: #555555;
    font-weight: 400;
    background-color: white;
    box-shadow: 0 0 15px 0 #e0e0e0;
    width: 100%;
    height: 35px;
    margin-top: 5px;
}

.addAstrofotografia_right_2_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show_Step{
    display: flex;
}

/* END POPUP ADD ASTROLOJA */

/* SINGLE PRODUTO */

.sec-principal-produto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #121212;
    padding: 70px 20px 70px 20px;
}

.principal-produto {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 820px;
    width: 100%;
    height: 420px;
    padding: 20px 20px;
    gap: 20px;
    background-color: #efefef;
    border-radius: 3px;
}

.div-imagem-produto {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 320px;
    width: 100%;
    height: auto;
}

.imagem-principal-produto {
    max-width: 320px;
    width: 100%;
    max-height: 320px;
    box-shadow: 0 0 16px 0 #969696;
}

.img-carrossel {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.imagem-carrossel-produto {
    width: 50px;
    max-height: 50px;
    box-shadow: 0 0 10px 0 #969696;
}

.div-info-produto {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    height: 380px;
    max-width: 440px;
    width: 100%;
    border-left: 1px solid;
    justify-content: space-between;
}

.div-categoria-produto {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 20px;
    background-color: #9e9e9e;
    color: white;
}

.produto-titulo-single {
    font-size: 22px;
    width: 100%;
    max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.cidade-produto {
    display: flex;
    gap: 5px;
}

.produto-contato {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-self: center;
    background-color: white;
    border-radius: 5px;
    height: 110px;
    width: 250px;
    box-shadow: 0 0 16px 0 #cccccc;
    padding: 15px;
}

.div-produto-contato-valor {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.valor-produto {
    font-size: 22px;
    font-weight: 700;
}

.btn-contato-produto {
    width: 200px;
    height: 40px;
    background-color: #27ff00;
    border: navajowhite;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Montserrat';
    box-shadow: 0 0 16px 0 #dadada;
}

.autor-produto {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.linkExcluir-Produto {
    position: absolute;
    right: 0;
}

.autor-produto-avatar {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.section-ficha-background {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    width: 100%;
    background-color: #efefef;
    padding: 15px;
    margin-bottom: 50px;
    margin-top: 50px;
    border-radius: 5px;
}

.section-ficha {
    position: relative;
    background-color: white;
    width: 100%;
    padding: 55px 25px 25px 25px;
    box-shadow: 0 0 16px 0 #8f8f8fa1;
    border-radius: 3px;
}

.ficha-tecnica-title {
    position: absolute;
    height: 40px;
    left: -7px;
    top: -7px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 40px;
    background-color: red;
    color: white;
    font-size: 13px;
    box-shadow: 0 0 16px 0 #8f8f8fba;
    border-radius: 5px 0 0 0;
}

.sec-infos-tecnicas-produto {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.descricao-fichaTec {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
}

/* MODAL CONTATO */

.show_modal_contatoProduto {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.modal_backgroud_contatoProduto {
    display: none;
    position: fixed;
    gap: 20px;
    width: 100%;
    height: 100%;
    background-color: #383838a8;
    backdrop-filter: blur(5px);
    z-index: 1;
}

.section-contato-background {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    width: 100%;
    background-color: #efefef;
    padding: 15px;
    margin-bottom: 50px;
    margin-top: 50px;
    border-radius: 3px;
}

.section-ficha-produto {
    position: relative;
    background-color: white;
    width: 100%;
    padding: 55px 25px 25px 25px;
    box-shadow: 0 0 16px 0 #8f8f8fa1;
    border-radius: 3px;
}

.modal-contatoProduto-title {
    position: absolute;
    height: 40px;
    left: -7px;
    top: -7px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 40px;
    background-color: red;
    color: white;
    font-size: 13px;
    box-shadow: 0 0 16px 0 #8f8f8fba;
}

.sec-contatos-produto {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contato-produto {
    margin: 0px;
    font-size: 15px;
}

.btn_close_produto_form {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    min-width: 40px;
    min-height: 40px;
    border-radius: 100%;
    background-color: red;
    color: white;
}

/* END MODAL CONTATO */

/* END SINGLE PRODUTO */

/* END ASTROLOJA STYLE */

/* ASTROBIBLIOTECA STYLE */

.model_bibliotecaItem {
    display: none;
}

.astrobiblioteca-div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: 269px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 16px #aaaaaa;
    overflow: hidden;
}

.astrobiblioteca-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 0 4px #aaaaaa;
}

.astrobiblioteca-div-tittle {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: white;
    border-radius: 0 0 5px 5px;
    text-align: center;
    box-shadow: 0 0 4px #aaaaaa;
    padding: 0 10px;
}

.astrobiblioteca-div-tittle h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* POPUP ADD ASTROBIBLIOTECA */

.modal_addArquivo {
    display: none;
    position: fixed;
    gap: 20px;
    width: 100%;
    height: 100vh;
    background-color: #383838a8;
    backdrop-filter: blur(5px);
    z-index: 2;
    padding: 50px 20px;
    overflow-y: scroll;
    top: 0;
}

.form_addArquivo {
    max-width: 850px;
    width: 100%;
}

.modal_addArquivo_content {
    display: flex;
    height: 450px;
    background-color: white;
    border-radius: 10px;
}

.show_modal_addArquivo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_close_arquivo_form {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    min-width: 40px;
    min-height: 40px;
    border-radius: 100%;
    background-color: red;
    color: white;
}

.btn_send_arquivo_form {
    width: 200px;
    height: 40px;
    background-color: #35ff03;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 4px #aaaaaa;
    font-weight: 700;
    text-shadow: 0 0 1px #333333;
    color: white;
    align-self: flex-end;
}

.addArquivo_left {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 350px;
    width: 100%;
    height: 450px;
    background-color: #008CFF;
    border-radius: 10px 0 0 10px;
    padding: 20px;
}

.addArquivo_left h3 {
    color: white;
    font-size: 20px;
}

.addArquivo_left_area_input {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 335px;
}

.addArquivo_input_tittle {
    height: 45px;
    border-radius: 5px;
    color: #6b6b6b;
    background-color: white;
    padding-left: 20px;
    border: none;
    font-family: montserrat;
    font-size: 14px;
    font-weight: 500;
}

.addArquivo_select_categoria {
    height: 45px;
    border-radius: 5px;
    color: #6b6b6b;
    background-color: white;
    padding-left: 20px;
    border: none;
    font-family: montserrat;
    font-size: 14px;
    font-weight: 500;
}

.addArquivo_input_img_div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    width: 100%;
    height: 200px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 16px 0 #7a7a7a;
}

.addArquivo_input_img {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 5px;
    background-image: url("http://localhost/devsbook/public/assets/images/g1092.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px dashed black;
}

.addArquivo_input_img input {
    display: none;
}

.addArquivo_right {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    width: 100%;
    height: 450px;
    padding: 20px;
    background-color: #f2f2f2;
    border-radius: 0 10px 10px 0;
}

.addArquivo_right_1 {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    max-width: 460px;
    width: 100%;
    height: 410px;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 16px 0 #bdbdbd;
    background-color: white;
}

.addArquivo_right_1 h3 {
    font-weight: 400;
    font-size: 15px;
}

.addArquivo_input_area1 {

}

.addArquivo_input_descricao {
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    padding: 0 10px;
    font-family: montserrat;
    font-size: 13px;
    color: #555555;
    font-weight: 500;
    background-color: white;
    box-shadow: 0 0 14px 0 #eeeeee;
    width: 100%;
    height: 200px;
    padding: 10px;
}

.addArquivo_right_2_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show_Step{
    display: flex;
}

/* END POPUP ADD ASTROBIBLIOTECA */

/* SINGLE ARQUIVO */

.sec-principal-arquivo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #121212;
    padding: 70px 20px 70px 20px;
}

.principal-arquivo {
    position: relative;
    background-color: #efefef;
    border-radius: 3px;
    max-width: 840px;
    width: 100%;
}

.div-obj-categoria {
    position: absolute;
    top: -10px;
    left: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 40px;
    background-color: red;
    color: white;
    font-size: 13px;
    box-shadow: 0 0 16px 0 #3d3d3dbf;
    padding: 0 10px;
}

.div-obj-categoria h1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.div-info-arquivo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px 20px 20px;
    gap: 40px;
}

.sec-infos-arquivo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    gap: 25px;
}

.div-titulo-descricao-arquivo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.titulo-arquivo {
    font-size: 20px;
    margin-bottom: 20px;
}

.cidade-fotografia {
    display: flex;
    gap: 10px;
    padding-bottom: 4px;
    margin-bottom: 4px;
    border-bottom: 1px solid black;
    width: 100%;
}

.visu_download_arquivo {
    display: flex;
    gap: 10px;
}

.autor-arquivo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.linkExcluir-Astrofotografia {
    position: absolute;
    right: 0;
}

.autor-fotografia-avatar {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.arquivoDiv {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 300px;
    width: 100%;
    gap: 15px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 26px 0 #d1d1d1;
    border-radius: 5px;
    align-self: start;
}

.tumb-arquivo {
    max-width: 100%;
    max-height: 340px;
    box-shadow: 0 0 16px 0 #969696;
}

.linkDownload_arquivo {
    width: 100%;
}

.btnDownload-arquivo {
    height: 40px;
    width: 100%;
    background-color: #26ff00;
    border-radius: 5px;
    font-family: montserrat;
    font-weight: 700;
    border: none;
    color: white;
}

.btnExcluir-fotografia {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    width: 100px;
    background-color: red;
    border-radius: 5px;
    font-family: montserrat;
    font-weight: 700;
    font-size: 13px;
    border: none;
    color: white;
    padding: 0 12px;
}

.btnExcluir-fotografia:hover {
    cursor: pointer;
}

/* END SINGLE FOTOGRAFIA */

/* END ASTROBIBLIOTECA STYLE */

/* END astro GALERIA - BIBLIOTECA - LOJA */

.main {
    display:flex;
}

.main aside {
    width:190px;
    margin-right:10px;
}
.main aside nav a {
    text-decoration: none;
    display:block;
    color:#121212;
    margin-bottom:5px;
}
.menu-splitter {
    border-top:1px solid #ccc;
    margin-bottom:5px;
}
.menu-item {
    display:flex;
    align-items: center;
    height:32px;
    padding-left: 7px;
    border:1px solid #edeef0;
}
.menu-item:hover, .menu-item.active {
    background-color:#dcdcdc;
    border:1px solid #CCC;
}
.menu-item-icon {
    display: flex;
    width: 40px;
    height: 16px;
    justify-content: center;
    align-items: center;
}
.menu-item-text {
    flex:1;
    font-size:13px;
}
.menu-item-badge {
    background-color:#d1d9e0;
    padding:5px;
    border-radius:3px;
    margin-right:5px;
}

.main .feed {
    flex:1;
}

.feed .box {
    background-color: #FFF;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 0 10px 0 #bdbdbd;
}
.box .box-header {
    padding:10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.box .box-header-text {
    flex:1;
}
.box .box-header-text span {
    color:#999;
}
.box .box-header-buttons a {
    font-size:13px;
    color:#999;
    text-decoration: none;
}
.box .box-body img {
    max-width:100%;
}

.box .box-body-astro img {
    max-width:100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed .border-top-flat {
    border-top:0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.feed .row {
    display:flex;
}
.feed .column {
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    flex:1;
}
.feed .side {
    flex:none;
    width:250px;
}


.feed-new-editor {
    align-items: center;
}
.feed-new-avatar {
    margin-right:10px;
}
.feed-new-avatar img {
    width:50px;
    height:50px;
    border-radius:50%;
}
.feed-new-input-placeholder {
    flex:1;
    font-size:14px;
    color:#333;
}
.feed-new-input {
    flex:1;
    outline:0;
    border:0;
    font-size:14px;
    display: none;
    color:#333;
}
.feed-new-send,
.feed-new-photo {
    cursor: pointer;
    margin-right:5px;
}
.feed-new-send img,
.feed-new-photo img {
    width:25px;
    height:25px;
}
.feed-new-file {
    position: absolute;
    left: -500px;
    top: -500px;
}

.banners .box-body {
    margin:0 10px 10px 10px;
}
.banners .box-body a {
    display: block;
    margin-bottom:5px;
}

.profile-cover {
    height:250px;
    background-size: cover;
    background-position: center;
}

.profile-info {
    align-items: center;
}
.profile-info-avatar {
    margin-right:15px;
}
.profile-info-avatar img {
    width:50px;
    height:50px;
    border-radius:50%;
}
.profile-info-name {
    flex:1;
}
.profile-info-name-text {
    font-size:20px;
    margin-bottom:5px;
}
.profile-info-name-text a {
    color:#000;
    text-decoration: none;
}
.profile-info-location {
    color:#819db9;
    font-size:13px;
    text-transform: uppercase;
    background-image:url('../images/pin.png');
    background-size: auto 15px;
    background-position: left center;
    background-repeat: no-repeat;
    padding-left:20px;
}

.profile-info-data {
    gap: 15px;
}

.profile-info-item {
    text-align: center;
}
.profile-info-item a {
    text-decoration:none;
}
.profile-info-item-n {
    font-weight: bold;
    font-size:20px;
    color:#121212;
}
.profile-info-item-s {
    font-size:14px;
    color:#999;
}

.user-info-mini {
    display:flex;
    align-items: center;
    margin:20px;
    color:#819db9;
    font-size:13px;
}
.user-info-mini img {
    width:20px;
    height:20px;
    margin-right:15px;
}

.friend-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.full-friend-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.friend-icon {
    text-align: center;
    margin:10px 0;
}
.friend-icon a {
    text-decoration: none;
}
.friend-icon-avatar {
    margin-bottom:5px;
}
.friend-icon-avatar img {
    width:55px;
    height:55px;
    border-radius:50%;
}
.friend-icon-name {
    width:60px;
    font-size:14px;
    margin: auto;
    color:#224b7a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-photo-item {
    margin-right:10px;
    max-width:25%;
}
.user-photo-item:last-child {
    margin-right:0;
}
.user-photo-item img {
    max-width: 100%;
}

.tabs {
    border-bottom: 1px solid #c9cacc;
    display: flex;
}
.tab-item {
    padding:20px;
    font-size:15px;
    color:#999;
    border-bottom:2px solid #FFF;
    cursor: pointer;
}
.tab-item:hover {
    color:#000;
}
.tab-item.active {
    color:#000;
    border-bottom:2px solid #224b7a;
}
.tab-body {
    display: none;
    padding:10px 0;
}

.full-user-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:10px;
    margin:20px;
}
.full-user-photos .user-photo-item {
    margin:0;
    max-width:100%;
}

.feed-pagination a {
    display:inline-block;
    padding:7px 10px;
    border:1px solid #CCC;
    margin:5px;
    text-decoration: none;
    color:#000;
}
.feed-pagination a:hover {
    background-color:#DDD;
}
.feed-pagination a.active {
    background-color:#FFF;
}

.button {
    border:0;
    padding:10px 20px;
    background-color:#4a76a8;
    border-radius:10px;
    color:#FFF;
    font-size:15px;
    cursor:pointer;
    box-shadow:0px 0px 3px #999;
    text-decoration:none;
    display:inline-block;
}
.button:hover {
    background-color:#477dbb;
}

.config-form {
    margin-top:10px;
}
.config-form label {
    display:block;
    padding:10px 0;
}
.config-form input {
    padding:10px 15px;
    font-size:14px;
    width:100%;
    max-width:500px;
}
.config-form .image-edit {
    max-width: 150px;
}

.flash {
    border:2px solid red;
    background-color:red;
    color:white;
    padding:10px;
    margin-bottom:20px;
}

@media (max-width: 992px) {
    header .head-side-right {
        display:flex;
    }

    header .logo {
        /*margin-left:10px;*/
    }

    .search-area input {
        width:35px;
    }
    .search-area input:focus {
        width:150px;
    }

    header .head-side {
        justify-content: flex-end;
    }

    .head-side-left {
        margin-right:20px;
    }

    header .user-area-text {
        display: none;
    }

    .main {
        flex-direction: column;
    }

    .main aside {
        width:100%;
    }

    aside nav {
        display:flex;
        width: 100%;
        overflow-x: auto;
        padding: 0 10px;
    }

    .main aside nav a {
        margin-right:15px;
    }

    .menu-splitter {
        display:none;
    }

    .menu-item-badge {
        display:none;
    }

    .menu-item-text {
        margin-right:5px;
    }

    .feed .side {
        display:none;
    }

    .feed > .row > .column {
       padding:0 10px; 
    }

    .profile-cover {
        height:150px;
    }

    .profile-info {
        flex-direction: column;
    }

    .profile-info-name {
        margin-top:10px;
    }

    .profile-info-data {
        margin-top:30px;
    }

    .full-friend-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .full-user-photos {
        grid-template-columns: repeat(1, 1fr);
    }

    .home-welcome-banner-container {
        align-items: center;
    }

    .home-welcome-banner-right {
        display: none;
    }

    .home-astrogaleria-section {
        display: grid;
        grid-template-columns: 50px 100px 130px 140px 130px 100px 50px;
        grid-template-rows: 55px 140px 140px 55px;
        gap: 3px;
        grid-template-areas: 
        ". . img2 img2 . . ."
        "img1 img1 img2 img2 img3 img4 img4"
        "img1 img1 img5 img6 img6 img4 img4"
        ". . . img6 img6 . .";
        margin-bottom: 30px;
    }

    .home-astrobiblioteca-section {
        max-width: 480px;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 50px;
    }

    .galeria-biblioteca-loja-section {
        flex-direction: column;
        align-items: center;
    }

    .g-b-l-section-left {
        margin-top: 0px;
        flex-direction: row;
        max-width: 670px;
        height: 145px;
        gap: 10px;
        padding: 10px;
    }

    .g-b-l-div-upload {
        height: 125px;
    }

    .g-b-l-propaganda-div img {
        height: 100%;
    }

    .g-b-l-propaganda-div:last-child {
        display: none;
    }

    .g-b-l-section-right {
        margin-top: 30px;
    }

    .div-info-img {
        flex-direction: column;
        height: auto;
    }

    .sec-infos-fotografia {
        max-width: 100%;
        gap: 20px;
    }

    .form_addAstrofotografia {
        max-width: 500px;
    }

    .show_modal_addAstrofotografia {
        flex-direction: column;
        justify-content: start;
    }

    .modal_addAstrofotografia_content {
        height: 650px;
        flex-direction: column;
    }

    .addAstrofotografia_left {
        max-width: 100%;
    }

    .addAstrofotografia_right {
        max-width: 100%;
        border-radius: 0 0 10px 10px;
    }

    .addAstrofotografia_right_1 {
        max-width: 100%;
    }

    .addAstrofotografia_right_2 {
        max-width: 100%;
    }

    .page-tittle {
        font-size: 26px;
    }

    .prevOptions {
        gap: 20px;
    }

    .addAstrofotografia_tittle_img {
        flex-direction: column;
        gap: 30px;
    }

    .addAstrofotografia_input_img {
        max-height: 132px;
    }

    .section_imgUploaded {
        max-height: 150px;
        height: 100%;
        max-width: 100%;
    }

    .section_imgUploaded img {
        border-radius: 10px 10px 0 0;
    }

    .addAstrofotografia_input_areaImgType {
        grid-template-rows: repeat(3, 52px);
    }

    .addAstrofotografia_right {
        padding: 25px;
    }

    .addAstrofotografia_input_areaImgType_PlnLun {
        grid-template-columns: repeat(2, minmax(0, 400px));
    }
}

@media (max-width: 768px) {
    .div-menu-mobile {
        display: flex;
    }

    .head-side-middle {
        display: none;
    }

    .head-side .head-side-right {
        display: none;
    }

    .home-welcome-banner-left-top p {
        font-size: 14px;
    }

    .home-welcome-banner-left-bottom {
        flex-wrap: wrap;
        gap: 20px;
        max-width: 330px;
        align-self: center;
    }

    .home-welcome-banner {
        height: 520px;
    }

    .home-welcome-banner-left {
        height: 450px;
    }

    .home-numeros {
        gap: 35px;
    }

    .home-astroloja-carrossel-section {
        width: 600px;
    }

    .home-astrogaleria-section {
        display: grid;
        grid-template-columns: 100px 100px 100px 100px 100px 100px 100px;
        grid-template-rows: 55px 100px 100px 55px;
        gap: 3px;
        grid-template-areas: 
        ". . img2 img2 . . ."
        ". img1 img2 img2 img3 img3 ."
        ". img5 img5 img6 img6 img4 ."
        ". . . img6 img6 . .";
        margin-bottom: 30px;
    }

    .div-info-arquivo {
        flex-direction: column;
        padding: 50px 35px 35px 35px;
    }

    .arquivoDiv {
        align-self: center;
    }

    .principal-produto {
        flex-direction: column;
        height: auto;
    }

    .div-info-produto {
        border: none;
        max-width: 100%;
        padding: 0;
        margin-top: 30px;
    }

    .show_modal_addArquivo {
        flex-direction: column;
        justify-content: start;
    }

    .modal_addArquivo_content {
        flex-direction: column;
        height: 900px;
    }

    .form_addArquivo {
        max-width: 450px;
    }

    .addArquivo_left {
        max-width: 450px;
        border-radius: 10px 10px 0 0;
    }

    .addArquivo_right {
        border-radius: 0 0 10px 10px;
    }

    .form_addProduto {
        max-width: 500px;
    }

    .show_modal_addProduto {
        flex-direction: column;
        justify-content: start;
    }

    .modal_addProduto_content {
        flex-direction: column;
        height: 900px;
    }

    .addProduto_left {
        max-width: 100%;
        border-radius: 10px 10px 0 0;
    }

    .addProduto_right {
        max-width: 100%;
        border-radius: 0 0 10px 10px;
    }

    .addProduto_right_1 {
        max-width: 100%;
    }

    .addProduto_right_2 {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    
    .home-welcome-banner-left-top p {
        font-size: 13px;
    }

    .home-numeros {
        gap: 13px;
        height: 120px;
    }

    .numero-div span {
        font-size: 30px;
    }

    .numero-div p {
        font-size: 16px;
        font-weight: 400;
    }

    .home-astroloja-section {
        justify-content: center;
    }

    .home-astroloja-carrossel-section {
        width: 510px;
        height: 260px;
        margin: 0;
    }

    .home-astroloja-carrossel {
        height: 250px;
    }

    .btnPrevNext-Product {
        display: none;
    }

    .btnPrevNext-Product-mobile {
        display: flex;
    }

    .btnMobile-area {
        justify-content: space-between;
    }

    .home-astroloja-div {
        width: 160px;
        height: 250px;
    }

    .home-astroloja-div-img {
        width: 130px;
        height: 130px;
    }

    .home-astrogaleria-section {
        display: grid;
        grid-template-columns: 10px 20px 100px 100px 100px 20px 10px;
        grid-template-rows: 10px 55px 100px 100px 55px 10px;
        gap: 3px;
        grid-template-areas: 
        ". . img2 img2 . . ."
        ". . img2 img2 img4 . ."
        ". . img2 img2 img3 img3 ."
        ". img5 img5 img6 img6 . ."
        ". . img1 img6 img6 . ."
        ". . . img6 img6 . .";
        margin-bottom: 30px;
    }

    .home-astrobiblioteca-section {
        width: 350px;
    }

    .home-astrobiblioteca-div {
        width: 140px;
        height: 180px;
    }

    .home-astrobiblioteca-div img {
        width: 100px;
        height: 148px;
    }

    .g-b-l-propaganda-div {
        display: none;
    }

    .fidi-name {
        width: 130px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .prevOptions {
        flex-direction: column;
    }

    .btnPrev_Options {
        flex-direction: row;
        width: 100%;
        height: 50px;
    }

    .addAstrofotografia_left {
        padding: 20px;
    }

    .addAstrofotografia_tittle_img {
        padding: 20px;
    }

    .addAstrofotografia_input_tittle {
        font-size: 12px;
    }

    .addAstrofotografia_input1_style[name=categoria], .addAstrofotografia_input1_style[name=objeto] {
        font-size: 12px;
    }

    .label_Options_p {
        font-size: 12px;
    }

    .prevOptions_div {
        width: 100%;
    }

    #div_Icon_P {
        font-size: 40px;
    }
}