body.noscroll{
    overflow: hidden;
    height: 100%;
}

.gnc_space {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: end;
    padding: 2rem 0;
    z-index: 9999;
}

.gncg_close{
    position: absolute;
    padding: 1rem;
    z-index: 10000;
    top: 0;
    right: 0;
}

.gnc_gallery{
    background-color: rgba(0,0,0,1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    z-index: 9999;
}

.gnc_gallery.visible {
  visibility: visible;
  opacity: 1;
  transition: opacity .3s linear;
}
.gnc_gallery.hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s .3s, opacity .3s linear;
}

.gncg{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    z-index: 9999;
    margin: 1rem;
}

.gncg_prev, .gncg_next{
    opacity: 0.2;
    z-index: 10000;
}

.ppg_block_bck {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 0.5rem
}

.ppg_block {
    display: flex;
    width: 100%;
    height: 100%;
}

.ppg_prev {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

.ppg_desc_space_bck {
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
}

.ppg_desc_bck {
    background-color: white;
    box-shadow: 0 0 20px grey;
    padding: 0.75rem;
    margin: 0.5rem;
    border-radius: 5px;
    color: grey
}

.ppg_desc_space {
    position: absolute;
    z-index: 10000;
    bottom: 0;
    right: 1rem;
    left: 1rem;
    display: flex;
    justify-content: center;
}

.ppg_desc {
    font-size: 1rem;
    line-height: 0.9;
    background-color: white;
    box-shadow: 0 0.25rem 0.75rem -0.175rem #000000;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    border-radius: 5px;
    color: black;
}

.gncg_active{
    opacity: 0.6;
}

.gncg_active:hover{
    opacity: 1;
    cursor: pointer;
}

.gncg_close .icon{
    font-size: 2rem;
    color: white;
    opacity: 0.6;
}

.gncg_close .icon:hover{
    opacity: 1;
    cursor: pointer;
}

.msnr_cnt{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.gwei{
    float: left;
    max-width: 100%;
    height: auto;
}

.gwei:hover{
    cursor: pointer;
}

.icicon {
    font-size: 2.6rem;
    color: white;
}

@media only screen and (max-width: 920px) {
    .gncg{
        gap: var(--M4) !important;
        margin: var(--M3) var(--M2) !important;
    }

    .gncg_close .icon{
        font-size: 4vw !important;
    }

    .icicon {
        font-size: 5vw !important;
    }

    .ppg_desc{
        font-size: 2.5vw !important;
    }
}