.profile-navtabs > a:nth-child(2){
    background-color: var(--color-10);
    border: 2px var(--color-6) outset;
    border-radius: 5px 5px 0px 0px;
    border-bottom: transparent;
}
.profile-navtabs > a:not(:nth-child(2)):hover{
    background-color: var(--color-10);
    border-bottom: 2px var(--color-6) solid;
    border-radius: 5px 5px 0px 0px;
}
/*.container > .gallery-flex{
    display: flex;
}
.container > .gallery-flex > #folders-container{
    min-width: 200px
}
.container > .gallery-flex > #gallery-container{
    display: flex;
    flex-wrap: wrap;
}
#gallery-container > table{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
}
#gallery-container tbody{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 20px;
}
#gallery-container tr{
    display: flex;
    text-align: center;
    margin-left: 24px;
    margin-right: 24px;
    flex: 1 auto;
}
#gallery-container td{
    flex: 1 auto;
}
#gallery-container img{
    height: 200px;
    object-fit: cover;
    width: 100%;
}
#gallery-container p{
    margin-top: 0;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
    /*overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}*/
.container > .gallery-flex{
    display: flex;
    min-height: inherit;
}
#folders-container hr:last-child{
    position: relative;
}
.container > .gallery-flex > #folders-container > div{
    width: 128px;
    min-width: 128px;
    height: min-content;
    max-height: 934px;
    padding-right: 18px;
    padding-left: 40px;
    margin-left: 12px;
    margin-bottom: -20px;
    overflow-x: hidden;
    overflow-y: hidden;
    direction: rtl;
    scrollbar-color: var(--color-3) transparent;
}
.container > .gallery-flex > #folders-container > div:hover{
    overflow-y: auto;
}
/*==[CHROME SCROLLBAR]============================*/
#folders-container > div::-webkit-scrollbar{
    width: 10px;
}
#folders-container > div::-webkit-scrollbar-track{
    border: 2px inset var(--color-6);
    background-color: var(--color-7);
    width: 20px;
    border-radius: 5px;
}
#folders-container > div::-webkit-scrollbar-thumb{
    background-color: var(--color-3);
    border-radius: 5px;
    border: 2px outset var(--color-6);
    box-shadow: 1px 1px 0 white inset;
}
#folders-container > div::-webkit-scrollbar-thumb:hover{
    background-color: var(--color-5);
}
#folders-container > div::-webkit-scrollbar-button{
    background-color: transparent;
}
/*================================================*/
#folders-container hr{
    position: absolute;
    background-image: 
        linear-gradient(
            to right,
            transparent,
            var(--color-3),
            transparent);
    margin: 0;
    height: 2px;
    width: 180px;
    border-radius: 5px;
    border: 0px;
    left: 14px;
}
/*#folders-container hr:first-child{
    bottom: 602px;
}*/
#folders-container hr:last-child{
    margin-top: 20px;
}
#folders-container hr:first-child::before,
#folders-container hr:last-child::before{
    content: "";
    position: absolute;
    z-index: -1;
    width: 200px;
    height: 64px;
    left: -8px;
}
#folders-container hr:first-child::before{
    background-image: 
        radial-gradient(
            ellipse at 50% -40px, 
            rgba(0, 0, 0, 0.6) 0%, 
            rgba(0,0,0,0) 76%);
}
#folders-container hr:last-child::before{
    background-image:
        radial-gradient(
            ellipse at 50% 120px,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0,0,0,0) 76%);
    bottom: 0;
}
#folders-container hr:last-child::after{
    content: "";
    position: absolute;
    margin-top: 2px;
    width: 200px;
    height: 2px;
    background-image:
        linear-gradient(
            to right, 
            transparent, 
            white, 
            transparent);
    left: -8px;
}
#folders-container hr:first-child::after,
#folders-container hr:nth-last-child(2){
    content: "";
    position: absolute;
    z-index: 1;
    width: 200px;
    height: 22px;
}
#folders-container hr:first-child::after{
    background-image:
        radial-gradient(
            ellipse at 50% -20px,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0,0,0,0) 70%);
    left: -10px;
}
#folders-container hr:nth-last-child(2){
    background-image:
        radial-gradient(
            ellipse at 50% 40px,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0,0,0,0) 70%);
    left: 4px;
}
/*#folders-container::before{
    content: "";
    background-image: radial-gradient(var(--color-3), #B9C8B4);
    height: 2px;
    border-radius: 5px;
    border: 0px;
    position: absolute;
    width: 180px;
    left: 14px;
}
#folders-container::after{
    content: "";
    background-image: radial-gradient(var(--color-3), #B9C8B4);
    height: 2px;
    border-radius: 5px;
    border: 0px;
    position: absolute;
    width: 180px;
    left: 14px;
}*/
#folders-container > div > div{
    padding-block: 8px;
}
#folders-container > div > div div{
    display: flex;
    margin-inline: auto;
    width: 152px;
    height: 152px;
    background: rgb(155, 172, 150);
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    box-shadow: 
        rgba(0, 0, 0, 0.8) 0px 1px 4px, 
        rgb(255, 255, 255) 0px 1px 1px inset;
    cursor: pointer;
}
#folders-container div div span{
    color: white;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    padding: 4px;
    padding-inline: 8px;
    width: 100%;
    margin: 4px;
    height: fit-content;
    align-self: end;
    text-align: left;
    font-family: var(--font-family-2);
    font-size: 14px;
    user-select: none;
}
.container > .gallery-flex > #gallery-container{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    min-width: 50vh;
}
/*#gallery-container > table{
    margin-top: 20px;
    margin-bottom: 20px;
}
#gallery-container tbody{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 10px;
    justify-content: center;
}
#gallery-container tr{
    text-align: left;
}
#gallery-container td{
    text-align: justify;
    padding: 6px;
    transform: translateY(0px);
    background-color: rgba(239, 249, 234, 0.0);
    border-radius: 5px;
    transition: transform 0.6s, background-color 0.6s;
    animation-timing-function: ease-in-out;
}
#gallery-container td:hover{
    border-radius: 5px;
    transform: translateY(-8px);
    background-color: rgba(239, 249, 234, 1.0);
    cursor: pointer;
}
#gallery-container img{
    height: 200px;
    max-width: 320px;
    border-radius: 5px;
    object-fit: cover;
    background-color: rgba(127, 145, 123, 0.5);
    border: outset 1px rgba(92, 130, 121, 0.0);
}
#gallery-container td:hover > img{
    border: outset 1px rgba(92, 130, 121, 1.0);
}
#gallery-container h1 h2{
    margin-top: 0;
    margin-bottom: 0;
    max-width: 96px;
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}
#gallery-container h1{
    font-size: 14px;
}
#gallery-container h2{
    font-size: 10px;
    color: #808080;
    font-weight: bold;
}*/

#gallery-container > #glry-pag{
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 6px;
    column-gap: 20px;
    justify-content: space-between;
}
#glry-pag::after {
    content: "";
    flex: auto;
  }
#glry-pag > span{
    display: inline-grid;
    text-align: left;
    padding: 6px;
    transform: translateY(0px);
    background-color: rgba(239, 249, 234, 0.0);
    border-radius: 5px;
    transition: transform 0.6s, background-color 0.6s;
    animation-timing-function: ease-in-out;
}
#glry-pag > span:hover{
    border-radius: 5px;
    transform: translateY(-8px);
    background-color: rgba(239, 249, 234, 1.0);
    cursor: pointer;
}
#glry-pag > span img{
    width: 100%;
    height: 172px;
    max-width: 232px;
    border-radius: 5px;
    object-fit: cover;
    align-self: end;
    background-color: rgba(127, 145, 123, 0.5);
    border: outset 1px rgba(92, 130, 121, 0.0);
    box-shadow: 
        rgba(0, 0, 0, 0.5) 0px 1px 4px,
        rgb(255, 255, 255) 0px 1px 1px inset;
}
#glry-pag > span div{
    align-self: end;
}
#glry-pag h1,
#glry-pag h2{
    margin-top: 0;
    margin-bottom: 0;
    max-width: 200px;
    width: 100%;
    font-weight: bold;
    font-family: var(--font-family-2);
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
}
#glry-pag h2{
    font-size: 10px;
    color: #808080;
    font-weight: bold;
}

/*==============================================================================
                             Customizing Pagination
==============================================================================*/
#page-navigator{
    margin-left: auto;
    margin-right: auto;
}
.my-navigation{
    display: flex;
    flex-direction: row;
}
.my-navigation:visited:link:hover:active{
    text-decoration: none;
}
.simple-pagination-page-numbers{
    margin-top: 4px;
}
.simple-pagination-navigation-page{
    margin: 2px;

}
.simple-pagination-first, .simple-pagination-previous, .simple-pagination-navigation-page, .simple-pagination-select-specific-page, .simple-pagination-next, .simple-pagination-last{
    margin-left: 4px;
    margin-right: 4px;
    padding: 2px;
    padding-left: 4px;
    padding-right:4px;
    border: outset 2px rgba(92, 130, 121, 1.0);
    border-radius: 2px;
    background-color: #D7E2D3;
    box-shadow: -2px -2px #A6B69F inset, 2px 2px #A6B69F;
}
.simple-pagination-first:hover, .simple-pagination-previous:hover, .simple-pagination-navigation-page:hover, .simple-pagination-select-specific-page:hover, .simple-pagination-next:hover, .simple-pagination-last:hover{
    transform: translateY(-2px);
}
.simple-pagination-first{
    border-radius: 8px 2px 2px 8px;
}
.simple-pagination-last{
    margin-bottom: 2px;
    border-radius: 2px 8px 8px 2px;
}
.simple-pagination-items-per-page{
    display: none;
}
