section {
    /*
    background-color: rgb(75, 75, 75);
    */
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 10px auto 10px auto;
    width: 100%;}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    padding: 10px;
    background-color: rgba(255,255,250);}
    .gallery-container-card {
        width: 95%;
        height: 420px;                /* uniform preview height */
        overflow: hidden;             /* hide overflow from cropping */
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        cursor: pointer;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        display: inline-block;
        margin: 1px auto 1px auto;}
        .gallery-container-card:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 12px rgba(0,0,0,0.25);}
    .gallery-container-img {
        width: 100%;
        height: 100%;
        object-fit: cover;            /* crop nicely */
        border-radius: 10px;
        display: block;}

.table-form {
    background-color: rgba(255,255,250);
    border-collapse: collapse;
    box-shadow: 0px 1px 2px silver;
    width: 100%;}
    .table-form-title {
        font-size: 18px;
        font-weight: bold;
        text-decoration: underline;}
    .table-form-subtitle {
        font-size: 16px;
        font-weight: bold;}
    .table-form-info {
        font-size: 16px;}
    .table-form-label {
        font-size: 14px;
        font-weight: lighter;
        margin: 0px auto 0px auto;
        text-align: left;
        width: 75%;}
    .table-form-checkbox[type='checkbox']  {
        box-shadow: 0px 1px 2px silver;
        border: none;
        transition: box-shadow 0.2s ease-in;
        -moz-transition: box-shadow 0.2s ease-in;
        -webkit-transition: box-shadow 0.2s ease-in;}
        .table-form-checkbox[type='checkbox']:hover {
            box-shadow: none;}
        .table-form-checkbox[type='checkbox']:disabled {
            box-shadow: none;
            border: none;
            transition: box-shadow 0.2s ease-in;
            -moz-transition: box-shadow 0.2s ease-in;
            -webkit-transition: box-shadow 0.2s ease-in;}
    .table-form-input {
        background-color: rgba(150, 150, 150, 0.1);
        box-shadow: 0px 1px 2px silver;
        border: none;
        cursor: auto;
        font-size: 18px;
        height: 30px;
        margin-bottom: 20px;
        outline: none;
        padding-left: 5px;
        width: 75%;
        transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
            .table-form-input:read-only {
                background-color: transparent;
                box-shadow: none;
                border: none;
                color: black;
                transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
                -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
                -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
            .table-form-input:hover {
                box-shadow: none;}
            .table-form-input:focus {
                border: none;
                box-shadow: none;
                outline: none;}
    .table-form-select {
        background-color: rgba(150, 150, 150, 0.1);
        box-shadow: 0px 1px 2px silver;
        border: none;
        font-size: 18px;
        height: 30px;
        margin-bottom: 20px;
        padding: 3px;
        text-align: left;
        width: 75%;
        transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
        .table-form-select:disabled {
            background-color: transparent;
            box-shadow: none;
            border: none;
            color: black;
            padding-left: 7px;/* padding eliminates visual differences between disabled/enabled */
            transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
        .table-form-select:hover {
            box-shadow: none;
            transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
    .table-form-textarea {
        background-color: rgba(150, 150, 150, 0.1);
        box-shadow: 0px 1px 2px silver;
        border: none;
        height: 90px;
        font-size: 18px;
        margin-bottom: 20px;
        max-height: 500px;
        min-height: 50px;
        padding-left: 5px;
        width: 75%;
        transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
        .table-form-textarea:read-only {
            background-color: rgba(255,255,250);
            box-shadow: none;
            border: none;
            cursor: auto;
            color: black;}
        .table-form-textarea:hover {
            box-shadow: none;
            transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
            .table-form-textarea:focus {
                border: none;
                box-shadow: none;}
    .table-form-submit {
        font-size: 16px;
        font-weight: bold;
        margin-top: 5px;
        padding-top: 10px;
        padding-bottom: 10px;
        width: 100%;}
    .table-form-photo {
        max-height: 200px;
        max-width: 200px;}
    .table-form-photosmall {
        max-height: 100px;
        max-width: 100px;}
    .table-form-photosmallest {
        max-height: 50px;
        max-width: 50px;}
@media only screen and (max-width: 700px) {
    .table-form-photo { max-height: 100px; max-width: 100px; }
    .table-form-photosmall { max-height: 50px; max-width: 50px; }
    .table-form-photosmallest { max-height: 25px; max-width: 25px; }
}

.section-div { /* testing-color: rgba(255, 217, 0, 0.1) */
    /*
    */
    background-color: rgba(245, 245, 245);
    box-shadow: 0px 1px 2px rgb(75,75,75,0.1);
    margin: 5px auto 5px auto;
    max-width: 750px;
    padding: 10px 0px 10px 0px;
    text-align: center;
    width: 100%;}
@media only screen and (max-width: 700px) {
    .section-div { max-width: 500px; }
}

.listed-card { /* testing color: salmon */
    background-color: rgba(255,255,250);
    border-radius: 10px;
    box-shadow: 0px 1px 2px rgb(75,75,75);
    color: black;
    margin: 20px auto 20px auto;
    max-width: 750px;
    text-decoration: none;
    width: 100%;}
    .listed-card a {
        color: black;
        text-decoration: none;
        transition: text-shadow 0.2s ease-in;
        -moz-transition: text-shadow 0.2s ease-in;
        -webkit-transition: text-shadow 0.2s ease-in;}
        .listed-card a:hover {
            text-decoration: underline;}
    .listed-card-photo {
        border-radius: 50%;
        margin: 5px 0px 0px 5px;
        max-height: 50px;
        max-width: 50px;}
    .listed-card-icon {
        background-position: center;
        background-repeat: no-repeat;
        background-size: 70%;
        border-radius: 50%;
        margin: 0px auto 0px auto;
        height: 50px;
        width: 50px;}
    .listed-card-iconmini {
        background-position: center;
        background-repeat: no-repeat;
        background-size: 70%;
        border-radius: 50%;
        margin: 0px auto 0px auto;
        height: 25px;
        width: 25px;}
    .listed-card-title {
        display: block;
        font-size: 20px;
        font-weight: bold;
        text-align: left;
        margin: 0px auto 0px auto;
        padding-left: 5px;
        width: 95%;}
    .listed-card-name {
        display: block;
        font-weight: bold;
        margin: 0px;
        text-align: left;
        width: 100%;}
    .listed-card-category {
        margin: 0px 0px ;
        text-align: left;
        width: 100%;}
    .listed-card-datetime {
        font-size: 14px;
        font-weight: lighter;
        margin: 0px 0px;
        padding-left: 5px;
        text-align: left;
        width: 100%;}
    .listed-card-textarea {
        background-color: rgba(150, 150, 150, 0.1);
        box-shadow: 0px 1px 2px silver;
        border: none;
        cursor: auto;
        font-size: 16px;
        margin: 0px auto 0px auto;
        min-height: 50px;
        max-height: 150px;
        overflow-y: auto;
        font-weight: lighter;
        font-size: 14px;
        width: 95%;
        transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
        .listed-card-textarea:read-only {
            background-color: rgba(255,255,250);
            box-shadow: none;
            border: none;
            color: black;
            transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
        .listed-card-textarea:focus {
            border: none}
    .listed-card-cover {
        max-height: 750px;
        max-width: 100%;}
    .listed-card-minicover {
        max-height: 50%;
        max-width: 50%;}
    .listed-card-centerinfo {
        display: block;
        font-size: 16px;
        text-align: center;
        margin: 0px;
        width: 100%;}
    .listed-card-leftinfo {
        display: block;
        font-size: 16px;
        text-align: left;
        margin: 0px;
        width: 100%;}
    .listed-card-button {
        background-color: transparent;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30%;
        cursor: pointer;
        height: 40px;
        width: 30px;}
        .listed-card-button:hover {
            background-color: transparent;
            background-size: 35%;}
@media only screen and (max-width: 700px) {
    .listed-card { border-radius: 0px;}
    .listed-card-cover { max-height: 300px; max-width: 100%; }
}

.listed-minicard {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    display: inline-block;
    height: 150px;
    margin: 2px 3px 2px 3px;
    width: 150px;}
    .listed-minicard-photo {
        border-radius: 50%;
        margin: 5px 0px 0px 5px;
        max-height: 50px;
        max-width: 50px;}
    .listed-minicard-icon {
        margin: 0px;
        margin-left: 3px;
        max-height: 17px;
        max-width: 17px;}
    .listed-minicard-name {
        display: block;
        text-align: left;
        width: 100%;}
    .listed-minicard-title {
        display: block;
        width: 100%;}
    .listed-minicard-category {
        margin: 0px 0px ;
        text-align: left;
        width: 100%;}
    .listed-minicard-textarea {
        background-color: transparent;
        border: none;
        margin: 0px auto 0px auto;
        max-height: 50px;
        min-height: 25px;
        overflow-y: auto;
        width: 95%;}
    .listed-minicard-cover {
        max-height: 100%;
        max-width: 100%;}
    .listed-minicard-input {
        background-color: rgba(150, 150, 150, 0.1);
        box-shadow: 0px 1px 2px silver;
        border: none;
        cursor: auto;
        font-size: 12px;
        height: 20px;
        padding-left: 1px;
        width: 98%;
        transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
            .listed-minicard-input:read-only {
                background-color: transparent;
                box-shadow: none;
                border: none;
                color: black;
                transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
                -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
                -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
            .listed-minicard-input:hover {
                box-shadow: none;}
            .listed-minicard-input:focus {
                border: none;
                box-shadow: none;
                outline: none;}
    .listed-minicard-filebox {
        height: 100px;
        margin-left: auto;
        margin-right: auto; 
        text-align: center;
        display: flex;
        align-items: center; /* horizontal */
        justify-content: center; /* vertical */
        width: 100px;}

.listed-item { /* table; used for reviews, services; testing color: palevioletred */
    background-color: rgba(255,255,250);
    box-shadow: 0px 1px 2px silver;
    border-radius: 5px;
    color: black;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
    width: 100%;}
    .listed-item td {
        text-align: center;
    }
    .listed-item-photo {
        border-radius: 50%;
        margin: auto 0px auto 5px;
        max-height: 50px;
        max-width: 50px;}
    .listed-item-icon {
        border-radius: 50%;
        margin: auto 0px auto 5px;
        max-height: 15px;
        max-width: 15px;}
    .listed-item-photo-large {
        border-radius: 50%;
        margin: auto 0px auto 5px;
        max-height: 100px;
        max-width: 100px;}
    .listed-item-photo-largest {
        border-radius: 50%;
        margin: auto 0px auto 5px;
        max-height: 150px;
        max-width: 150px;}
    .listed-item-datetime {
        font-size: 16px;
        font-weight: lighter;
        text-align: left;
        margin: 0px auto 0px auto;
        width: 95%;}
    .listed-item-info {
        font-size: 16px;
        text-align: left;
        margin: 0px auto 0px auto;
        width: 95%;}
    .listed-item-status { /* see also status class */
        font-size: 18px;
        font-weight: bold;
        text-shadow: 0px 0px 4px white;
        text-align: left;
        margin: 0px auto 0px auto;
        width: 95%;}
    .listed-item-title {
        font-size: 18px;
        font-weight: bold;
        margin: 0px auto 0px auto;
        text-align: left;
        width: 95%;}
    .listed-item-subtitle {
        font-size: 15px;
        font-weight: bold;
        margin: 0px auto 0px auto;
        text-align: left;
        width: 95%;}
    .listed-item-text {
        background-color: transparent;
        margin: 0px auto 0px auto;
        max-height: 300px;
        width: 95%;}
    .listed-item-rating {
        border-radius: 50%;
        height: 25px;
        font-size: 18px;
        font-weight: bolder;
        margin-left: 20px;
        width: 25px;}
    .listed-item-label {
        font-size: 14px;
        font-weight: lighter;
        margin: 0px auto 0px auto;
        text-align: left;
        width: 75%;}
    .listed-item-input {
        background-color: rgba(150, 150, 150, 0.1);
        box-shadow: 0px 1px 2px silver;
        border: none;
        cursor: auto;
        font-size: 18px;
        height: 30px;
        padding-left: 5px;
        width: 95%;
        transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
            .listed-item-input:read-only {
                background-color: transparent;
                box-shadow: none;
                border: none;
                color: black;
                transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
                -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
                -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
            .listed-item-input:hover {
                box-shadow: none;}
            .listed-item-input:focus {
                border: none;
                box-shadow: none;
                outline: none;}
    .listed-item-select {
        background-color: rgba(150, 150, 150, 0.1);
        box-shadow: 0px 1px 2px silver;
        border: none;
        font-size: 18px;
        height: 30px;
        padding: 3px;
        text-align: left;
        width: 75%;
        transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
        .listed-item-select:disabled {
            background-color: transparent;
            box-shadow: none;
            border: none;
            color: black;
            padding-left: 7px;/* padding eliminates visual differences between disabled/enabled */
            transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
        .listed-item-select:hover {
            box-shadow: none;
            transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
    .listed-item-textarea {
        background-color: rgba(150, 150, 150, 0.1);
        box-shadow: 0px 1px 2px silver;
        border: none;
        cursor: auto;
        font-size: 18px;
        max-height: 200px;
        min-height: 30px;
        padding-left: 5px;
        width: 95%;
        transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
        .listed-item-textarea:read-only {
            background-color: transparent;
            box-shadow: none;
            border: none;
            color: black;
            transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
        .listed-item-textarea:hover {
            box-shadow: none;
            transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
        .listed-item-textarea:focus {
            border: none}
    .listed-item-attachedphoto {
        margin: 0px auto 0px auto;
        max-height: 80px;
        max-width: 80px;}
    .listed-item-attachedphoto-big {
        margin: 0px auto 0px auto;
        max-height: 160px;
        max-width: 160px;}
    .listed-item-attachedphoto-huge {
        margin: 0px auto 0px auto;
        max-height: 320px;
        max-width: 320px;}
    .listed-item-cover {
        margin: 0px auto 0px auto;
        max-height: 300px;
        max-width: 100%;}
    .listed-item-button {
        background-color: transparent;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 75%;
        cursor: pointer;
        height: 40px;
        width: 30px;}
        .listed-item-button:hover {
            background-color: transparent;
            background-size: 80%;}
    .listed-item-checkbox {
        background-color: rgba(150, 150, 150, 0.1);
        box-shadow: 0px 1px 2px silver;
        border: none;
        cursor: auto;
        height: 20px;
        padding-left: 5px;
        width: 20px;
    }
@media only screen and (max-width: 700px) {
    .listed-item-attachedphoto { max-height: 40px; max-width: 40px; }
    .listed-item-attachedphoto-big { max-height: 80px; max-width: 80px; }
    .listed-item-attachedphoto-huge { max-height: 160px; max-width: 160px; }
}

/* not fully implemented */

.listed-message {
    background-color: rgba(64, 224, 208, 0.1);
    box-shadow: 0px 1px 2px turquoise;
    border: none;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 5px;}
    .listed-message-own {
        background-color: rgb(120, 120, 120);
        border-top-left-radius: 15px;
        color: white;
        padding-left: 5px;
        max-width: 80%;
        margin-right: 5px;
        margin-left: auto;}
    .listed-message-other {
        background-color: rgb(75, 75, 75);
        border-top-right-radius: 15px;
        color: white;
        padding-right: 5px;
        max-width: 80%;
        margin-right: auto;
        margin-left: 5px;}
    .listed-message-newcontainer {
        text-align: center;
        width: 100%;}
    .listed-message-textarea {
        background-color: rgba(220, 20, 60, 0.1);
        border: none;
        box-shadow: 0px 1px 2px crimson;
        color: crimson;
        height: 70px;
        width: 90%;}
        .listed-message-textarea:focus { border: none;}
    .listed-message-button {
        background-position: center;
        background-repeat: no-repeat;
        background-size: 35%;
        border-radius: 15px;
        margin-top: 0px;
        margin-bottom: 0px;
        height: 20px;
        padding:5px;
        width: 45%;}

.profile-card { /* table; contains images, headers and paragraphs; testing-color: greenyellow */
    background-color: rgba(255,255,250);
    border-collapse: collapse;
    box-shadow: 0px 1px 2px rgb(75,75,75,0.5);
    width: 97%;}
    .profile-card td {
        padding: 0px;
    }
    .profile-card-cover-container {
        width: 100%;
        height: 200px;             /* fixed uniform height for preview */
        overflow: hidden;
        position: relative;
        cursor: pointer;
        margin: 0px auto 0px auto;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        background-color: rgb(175, 175, 175);
        box-shadow: 0px 1px 2px rgb(75, 75, 75);}
        .profile-card-cover-container:hover {
            box-shadow: 0 2px 5px;}
    .profile-card-cover { /* img */
        width: 100%;
        height: 100%;
        object-fit: cover;          /* crop instead of stretch */
        display: block;}
    .profile-card-photo { /* img */
        border-radius: 5px;
        box-shadow: 0px 1px 2px rgb(75,75,75);
        margin: 10px;
        max-height: 150px;
        max-width: 150px;}
    .profile-card-photo-medium { /* img */
        border-radius: 5px;
        box-shadow: 0px 1px 2px rgb(75,75,75);
        margin: 10px;
        max-height: 300px;
        max-width: 300px;}
    .profile-card-photo-big { /* img */
        border-radius: 5px;
        box-shadow: 0px 1px 2px rgb(75,75,75);
        margin: 10px;
        max-height: 600px;
        max-width: 600px;}
    .profile-card-title { /* h1 (1/page)*/
        border-radius: 5px;
        font-size: 24px;
        margin: 5px auto 5px auto;
        width: 95%;
        transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
        -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
        .profile-card-title:read-write { /* h1 (1/page)*/
            background-color: rgba(150, 150, 150, 0.1);
            transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -moz-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;
            -webkit-transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in;}
        .profile-card-title:focus { /* h1 (1/page)*/
            outline: none;}
    .profile-card-subtitle { /* h2 (2/page) */
        font-size: 20px;}
    .profile-card-heading { /* h3 (3/page) */
        font-size: 18px;
        margin-top: 0px;
        margin-bottom: 0px;
        text-align: left;}
        .profile-card-href { /* in addition of any class */
            cursor: pointer;
            padding-top: 10px;
            padding-bottom: 10px;}
            .profile-card-href:hover {
                color: goldenrod;}
    .profile-card-icon { /* img */
        max-height: 33px;
        max-width: 33px;}
        /*
    .profile-card-middleicon {
        box-shadow: 0px 1px 2px rgb(75, 75, 75);
        padding: 10px;}
    .profile-card-middleline {
        border-bottom: 1px solid rgb(75,75,75,0.3);}
        */
    .profile-card-centerinfo {
        margin: 0px;
        text-align: center;}
    .profile-card-description {
        background-color: transparent;}
    .profile-card-label {
        font-size: 16px;
        font-weight: lighter;}
@media only screen and (max-width: 700px) {
    .profile-card-title { font-size: 16px; }
    .profile-card-subtitle { font-size: 14px; }
    .profile-card-heading { font-size: 12px; }
    .profile-card-label { font-size: 10px; }
    .profile-card-photo { max-height: 75px; max-width: 75px; }
    .profile-card-photo-medium { max-height: 150px; max-width: 150px; }
    .profile-card-photo-big { max-height: 300px; max-width: 300px; }
}

.floating-button { /* every floating button should have the main class, no class, visibility class and status class */
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    border: none;
    border-radius: 50%;
    box-shadow: 0px 1px 2px silver;
    height: 40px;
    position: fixed;
    width: 40px;
    z-index: 3;
    transition: background-color 0.2s ease-in, background-size 0.2s ease-in, box-shadow 0.2s ease-in;
    -moz-transition: background-color 0.2s ease-in, background-size 0.2s ease-in, box-shadow 0.2s ease-in;
    -webkit-transition: background-color 0.2s ease-in, background-size 0.2s ease-in, box-shadow 0.2s ease-in;}
    .floating-button:hover {
        background-color: rgb(75, 75, 75);
        background-size: 55%;
        box-shadow: 0px 1px 2px black;
        transition: background-color 0.2s ease-in, background-size 0.2s ease-in, box-shadow 0.2s ease-in;
        -moz-transition: background-color 0.2s ease-in, background-size 0.2s ease-in, box-shadow 0.2s ease-in;
        -webkit-transition: background-color 0.2s ease-in, background-size 0.2s ease-in, box-shadow 0.2s ease-in;}
    .floating-button-channeled { /* same with floating-button but not fixed */
        background-color: rgb(75, 75, 75);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 50%;
        border: none;
        border-radius: 50%;
        box-shadow: 0px 1px 2px silver;
        display: none;
        height: 40px;
        margin: 2px 0px 2px 5px;
        width: 40px;
        transition: background-color 0.2s ease-in, background-size 0.2s ease-in, box-shadow 0.2s ease-in;
        -moz-transition: background-color 0.2s ease-in, background-size 0.2s ease-in, box-shadow 0.2s ease-in;
        -webkit-transition: background-color 0.2s ease-in, background-size 0.2s ease-in, box-shadow 0.2s ease-in;}
        .floating-button-channeled:hover {
            background-color: rgb(75, 75, 75);
            background-size: 55%;
            box-shadow: 0px 1px 2px black;
            transition: background-color 0.2s ease-in, background-size 0.2s ease-in, box-shadow 0.2s ease-in;
            -moz-transition: background-color 0.2s ease-in, background-size 0.2s ease-in, box-shadow 0.2s ease-in;
            -webkit-transition: background-color 0.2s ease-in, background-size 0.2s ease-in, box-shadow 0.2s ease-in;}
    .floating-button-visible {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
        -moz-transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
        -webkit-transition: opacity 0.3s ease-in, visibility 0.3s ease-in;}
    .floating-button-invisible {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
        -moz-transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
        -webkit-transition: opacity 0.3s ease-in, visibility 0.3s ease-in;}
    .floating-button-active {
        background-color: rgb(75, 75, 75);}
    .floating-button-inactive {
        background-color: rgba(255,255,250);}
    .floating-button-0 {background-image: url(icons/actions/notifications.png);} /* notifications */
    .floating-button-1 {background-image: url(icons/actions/chat.png);} /* chat */
    .floating-button-2 {background-image: url(icons/actions/tasks.png);} /* tasks */
    .floating-button-3 {background-image: url(icons/actions/schedule.png);} /* schedule */
    .floating-button-4 {background-image: url(icons/actions/favorite.png);} /* favorites */
    .floating-button-5 {background-image: url(icons/actions/contacts.png);} /* contacts */
    .floating-button-6 {background-image: url(icons/actions/questions.png);} /* assistance */
    .floating-button-A {bottom: 125px; right: 140px; background-image: url(icons/profile.png);} /* account switcher */
    .floating-button-7 {bottom: 125px; right: 95px; background-image: url(icons/console3.png);} /* console */
    .floating-button-8 {bottom: 125px; right: 50px; background-image: url(icons/visibility2.png);} /* admin */
    .floating-button-9 {bottom: 125px; right: 5px; background-image: url(icons/up.png);} /* backontop */
    .floating-button-channel {
        bottom: 80px;
        position: fixed;
        width: max-content;
        z-index: 3;}

.screen-popup {
    background-color: rgba(150, 150, 150, 0.1);
    box-shadow: 0px 1px 2px black;
    width: 90%;}

.floating-popup { /* table */
    background-color: rgb(75,75,75);
    box-shadow: 0px 1px 2px black;
    border-top: 1px solid orange;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    bottom: 0;
    display: none;
    height: 80%;
    max-width: 500px;
    position: fixed;
    width: 100%;
    z-index: 3;}
    .floating-popup-menubar {
        border-bottom: 1px solid orange;
        height: 30px;
        text-align: center;
        width: 100%;}
    .floating-popup-filterbar { /* table */
        border-bottom: 1px solid orange;
        height: 30px;
        text-align: center;
        width: 100%;}
        .floating-popup-filterbar-active { /* td */
            background-color: rgba(255, 166, 0, 0.1);
            color: orange;
            cursor: pointer;}
        .floating-popup-filterbar-inactive { /* td */
            color: orange;
            cursor: pointer;}
            .floating-popup-filterbar-inactive:hover {
                background-color: rgba(255, 166, 0, 0.1);}
    .floating-popup-button {
        background-color: transparent;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 75%;
        border-radius: 50%;
        height: 30px;
        width: 30px;}
        .floating-popup-button:hover {
            background-color: rgba(255, 255, 255, 0.1);}
    .floating-popup-title {
        background-color: rgba(255, 166, 0, 0.1);
        color: orange;
        font-weight: bolder;
        margin: 0px;
        text-align: center;
        padding: 10px 0px 10px 0px;
        width: 100%;}
    .floating-popup-container {
        background-color: rgba(255, 166, 0, 0.1);
        border: 1px solid orange;
        height: 75%;
        margin: 0px auto 0px auto;
        overflow-y: scroll;
        width: 97%;}

.floating-menu { /* testing color: blue */
    background-color: rgb(75,75,75);
    border-bottom-left-radius: 5px;
    box-shadow: 0px 1px 2px black;
    display: none;
    height: max-content;
    position: fixed;
    width: 200px;
    z-index: 3;}
    .floating-menu-header {
        right: 0;
        top: 76px;}
        .floating-menu-icon {
            background-position: center;
            background-repeat: no-repeat;
            background-size: 70%;
            height: 34px;
            width: 34px;}
        .floating-menu-option {
            color: white;
            cursor: pointer;
            box-shadow: 0px 1px 2px rgb(65,65,65);
            margin: 0px;
            padding: 10px 15px 10px 15px;
            width: 100%;
            transition: background-color 0.1s ease-in, font-weight 0.1s ease-in;
            -moz-transition: background-color 0.1s ease-in, font-weight 0.1s ease-in;
            -webkit-transition: background-color 0.1s ease-in, font-weight 0.1s ease-in;}
            .floating-menu-option:hover {
                background-color: rgba(125, 125, 125);
                font-weight: bold;
                transition: background-color 0.1s ease-in, font-weight 0.1s ease-in;
                -moz-transition: background-color 0.1s ease-in, font-weight 0.1s ease-in;
                -webkit-transition: background-color 0.1s ease-in, font-weight 0.1s ease-in;}
            .floating-menu-option td {
                font-weight: bold;
                padding: 10px 15px 10px 15px;
            }

.filter-bar { /* div; contains table; display is triggered only by designated button; testing-color: green */
    background-color: rgb(75, 75, 75);
    display: none;
    padding-bottom: 5px;
    width: 100%;}
    .filter-bar-table {
        width: 100%;
    }
    .filter-bar-title {
        font-size: 18px;}
    .filter-bar-label {
        color: white;
        font-size: 16px;
        font-weight: lighter;
        margin: 0px;}
    .filter-bar-input {
        max-width: 90%}
    .filter-bar-select {
        max-width: 90%}
    .filter-bar-submit {
        margin-top: 5px;
        width: 90%;}

.filter-card { /* div; contains divs; */
    background-color: rgba(255, 0, 0, 0.1);
    box-shadow: 0px 1px 2px red;}
    .filter-card-option {
        background-position: center;
        background-repeat: no-repeat;
        background-size: 75%;
        border: 1px solid rgb(75, 75, 75);
        border-radius: 5px;
        box-shadow: 0px 1px 2px rgb(75, 75, 75);
        display: inline-block;
        height: 50px;
        width: 50px;}

.menu-bar { /* table; contains buttons; */
    width: 100%;}
    .menu-bar-title {
        font-size: 16px;
        font-weight: bolder;
    }
    .menu-bar-subtitle {
        font-size: 12px;
        font-weight: bold;
    }
    .menu-bar-button {
        cursor: pointer; /* for adoc main menu buttons */
        width: 100%;}
    .menu-bar-iconbutton {
        background-color: transparent;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 75%;
        cursor: pointer; /* for adoc main menu buttons */
        height: 30px;
        width: 30px;}
        .menu-bar-iconbutton:hover {
            background-color: transparent;
            background-size: 85%;}
    .menu-bar-divbutton {
        background-color: rgba(75, 75, 75);
        border-radius: 5px;
        box-shadow: 0px 1px 2px silver;
        color: white;
        cursor: pointer; /* for adoc main menu buttons */
        font-size: 16px;
        display: inline-block;
        height: 50px;
        margin: 5px;
        vertical-align: middle;
        width: 150px;
        transition: font-weight 0.1s ease-in, box-shadow 0.2s ease-in;
        -moz-transition: font-weight 0.1s ease-in, box-shadow 0.2s ease-in;
        -webkit-transition: font-weight 0.1s ease-in, box-shadow 0.2s ease-in}
        .menu-bar-divbutton:hover {
            box-shadow: 0px 1px 2px black;
            font-weight: bolder;
            transition: font-weight 0.1s ease-in, box-shadow 0.2s ease-in;
            -moz-transition: font-weight 0.1s ease-in, box-shadow 0.2s ease-in;
            -webkit-transition: font-weight 0.1s ease-in, box-shadow 0.2s ease-in}
        .menu-bar-divbutton p {
            height: 100%;
            font-size: 12px;
            line-height: 400%;
            margin: auto 0px auto 0px;
            overflow: hidden;
            vertical-align: middle;
            width: 100%;}
@media only screen and (max-width: 700px) {
    .menu-bar-iconbutton { height: 30px; width: 30px; }
    .menu-bar-divbutton { height: 30px; width: 100px; }
    .menu-bar-divbutton p { line-height: 250%; }
}

.info-bar {}
    .info-bar-button {
        height: 30px;
        width: 30px;}

.status-light-active, .status-light-pending, .status-light-inactive {
    border-radius: 50%;
    border: 1px solid rgba(75, 75, 75, 0.5);
    box-shadow: 0px 1px 2px silver;
    display: inline-block;
    height: 5px;
    width: 5px;
}
.status-light-active {
    background-color: rgba(0, 128, 0, 0.5);}
.status-light-pending { /* used also for a status-light that's not assigned */
    background-color: rgba(255, 255, 0, 0.5);}
.status-light-inactive {
    background-color: rgba(255, 0, 0, 0.5);}

/* Background images */
.background-close {background-image: url(icons/actions/close.png);}
.background-back {background-image: url(icons/actions/back.png);}
.background-minimize {background-image: url(icons/actions/minimize.png);}
.background-minimize2 {background-image: url(icons/actions/minimize2.png);}
.background-add {background-image: url(icons/actions/add.png);}
.background-questions {background-image: url(icons/actions/questions.png);}
.background-files {background-image: url(icons/actions/files.png);}
.background-delete {background-image: url(icons/actions/delete.png);}
.background-remove {background-image: url(icons/actions/remove.png);}
.background-done {background-image: url(icons/actions/done.png);}
.background-arrowdown {background-image: url(icons/actions/arrow-down.png);}
.background-arrowup {background-image: url(icons/actions/arrow-up.png);}
.background-favorite {background-image: url(icons/actions/favorite.png);}
.background-favorited {background-image: url(icons/actions/favorited.png);}
.background-edit {background-image: url(icons/actions/edit.png);}
.background-chat {background-image: url(icons/actions/chat.png);}
.background-send {background-image: url(icons/actions/send.png);}
.background-attach {background-image: url(icons/actions/attach.png);}
.background-gallery {background-image: url(icons/actions/gallery.png);}
.background-report {background-image: url(icons/actions/report.png);}
.background-add2 {background-image: url(icons/actions/add2.png);}
.background-assignment {background-image: url(icons/actions/assignment.png);}
.background-project {background-image: url(icons/actions/project.png);}
.background-target {background-image: url(icons/actions/target.png);}
.background-plan {background-image: url(icons/actions/plan.png);}
.background-info {background-image: url(icons/actions/info2.png);}
.background-options {background-image: url(icons/actions/options.png);}
.background-options_h {background-image: url(icons/actions/options_h.png);}
.background-filter {background-image: url(icons/actions/filter.png);}
.background-search {background-image: url(icons/actions/search.png);}
.background-theme {background-image: url(icons/actions/theme.png);}
.background-activities {background-image: url(icons/actions/target.png);}
.background-settings {background-image: url(icons/actions/settings.png);}

.background-appointment {background-image: url(icons/listing/appointment.png);}
.background-author {background-image: url(icons/listing/author.png);}
.background-chapters {background-image: url(icons/listing/chapters.png);}
.background-contact {background-image: url(icons/listing/contact.png);}
.background-facebook {background-image: url(icons/listing/facebook.png);}
.background-instagram {background-image: url(icons/listing/instagram.png);}
.background-linkedin {background-image: url(icons/listing/linkedin.png);}
.background-location {background-image: url(icons/listing/location.png);}
.background-mail {background-image: url(icons/listing/mail.png);}
.background-news {background-image: url(icons/listing/news.png);}
.background-phone {background-image: url(icons/listing/phone.png);}
.background-reviews {background-image: url(icons/listing/reviews.png);}
.background-services {background-image: url(icons/listing/services.png);}
.background-sources {background-image: url(icons/listing/sources.png);}
.background-suggestions {background-image: url(icons/listing/suggestions.png);}
.background-team {background-image: url(icons/listing/team.png);}
.background-tiktok {background-image: url(icons/listing/tiktok.png);}
.background-website {background-image: url(icons/listing/website.png);}
.background-whatsapp {background-image: url(icons/listing/whatsapp.png);}
.background-youtube {background-image: url(icons/listing/youtube.png);}
.background-x {background-image: url(icons/listing/x.png);}
.background-googleplay {background-image: url(icons/listing/googleplay.png);}
.background-appstore {background-image: url(icons/listing/appstore.png);}
.background-huaweigallery {background-image: url(icons/listing/huaweigallery.png);}
.background-pinterest {background-image: url(icons/listing/pinterest.png);}

.background-library_inactive {background-image: url(icons/global/library_inactive.png);}


.hidden-element1 {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s ease-in, visibility 0.1s ease-in;
    -moz-transition: opacity 0.1s ease-in, visibility 0.1s ease-in;
    -webkit-transition: opacity 0.1s ease-in, visibility 0.1s ease-in;}
.visible-element1 {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.1s ease-in, visibility 0.1s ease-in;
    -moz-transition: opacity 0.1s ease-in, visibility 0.1s ease-in;
    -webkit-transition: opacity 0.1s ease-in, visibility 0.1s ease-in;}
.hidden-element3 {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
    -moz-transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
    -webkit-transition: opacity 0.3s ease-in, visibility 0.3s ease-in;}
.visible-element3 {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
    -moz-transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
    -webkit-transition: opacity 0.3s ease-in, visibility 0.3s ease-in;}



/* Elements */
.new-loader { /* span */
    position: relative;
    display: none; /* or flex */
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 50px;
    max-width: 6rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .new-loader:before,
  .new-loader:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    animation: pulsOut 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.75));
  }
  .new-loader:before {
    width: 100%;
    padding-bottom: 100%;
    box-shadow: inset 0 0 0 1rem #fff;
    animation-name: pulsIn;
  }
  .new-loader:after {
    width: calc(100% - 2rem);
    padding-bottom: calc(100% - 2rem);
    box-shadow: 0 0 0 0 #fff;
  }

  @keyframes pulsIn {
    0% {
      box-shadow: inset 0 0 0 1rem #fff;
      opacity: 1;
    }
    50%, 100% {
      box-shadow: inset 0 0 0 0 #fff;
      opacity: 0;
    }
  }

  @keyframes pulsOut {
    0%, 50% {
      box-shadow: 0 0 0 0 #fff;
      opacity: 0;
    }
    100% {
      box-shadow: 0 0 0 1rem #fff;
      opacity: 1;
    }
  }







/* Themes (update in content.js, adoc.js) */

#theme-options-container {}

.theme-option {
    border-radius: 50%;
    display: inline-block;
    margin: 5px 10px 5px 10px;
    height: 20px;
    width: 20px;
}

.theme-profile-default {
    background-color: rgba(255,255,250);
    border: 3px outset transparent;
    color: black;}
    .theme-option-default {
        border: 3px solid black;
        background-color: rgb(245, 245, 245);
        box-shadow: 0px 1px 2px rgb(245, 245, 245);}
    .theme-covercontainer-default {
        background-color: rgb(245, 245, 245);
        box-shadow: 0px 1px 2px rgb(245, 245, 245);}
    .theme-middleline-default {
        border-bottom: 1px solid silver;}
    .theme-middleicon-default {
        background-color: rgb(245, 245, 245);
        box-shadow: 0px 1px 2px silver;}
    .theme-profilephoto-default {
        border: none;
        border-radius: 5px;
        box-shadow: 0px 1px 2px silver;}
    .theme-coverphoto-default {
        border: none;
        box-shadow: 0px 1px 2px silver;}
    .theme-sectiondiv-default {
        background-color: rgb(245, 245, 245, 0.03);}
    .theme-adocicon-default {
        background-color: rgb(245, 245, 245);
        border-radius: 50%;}
    .theme-tableform-default {
        background-color: rgb(245, 245, 245, 0.03);}
    .theme-gallerycontainer-default {
        background-color: rgb(245, 245, 245, 0.03);}

/* === Ivory Sage Light === */
.theme-profile-ivory_sage_light {
    background-color: rgba(242,243,239,0.2);
    border: 3px outset rgb(155,170,130);
    color: black;}
.theme-option-ivory_sage_light {
    background-color: rgba(155,170,130,0.2);
    border: 3px outset rgb(155,170,130);
    box-shadow: 0px 1px 2px rgba(155,170,130,0.2);}
.theme-covercontainer-ivory_sage_light {
    background-color: rgba(155,170,130,0.2);
    box-shadow: 0px 1px 2px rgba(155,170,130,0.2);}
.theme-middleline-ivory_sage_light {
    border-bottom: 1px solid rgba(155,170,130,0.2);}
.theme-middleicon-ivory_sage_light {
    background-color: rgba(155,170,130,0.2);
    border: 3px outset rgb(155,170,130);
    box-shadow: 0px 1px 2px rgba(155,170,130,0.2);}
.theme-profilephoto-ivory_sage_light {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(155,170,130,0.2);}
.theme-coverphoto-ivory_sage_light {
    border: none;
    box-shadow: 0px 1px 2px rgba(155,170,130,0.2);}
.theme-sectiondiv-ivory_sage_light {
    background-color: rgba(242,243,239,0.2);}
.theme-adocicon-ivory_sage_light {
    background-color: rgba(155,170,130,0.2);
    border-radius: 50%;}
.theme-tableform-ivory_sage_light {
    background-color: rgba(242,243,239,0.2);}
.theme-gallerycontainer-ivory_sage_light {
    background-color: rgba(242,243,239,0.2);}

/* === Ivory Sage Dark === */
.theme-profile-ivory_sage_dark {
    background-color: rgba(30,31,28,0.03);
    border: 3px outset rgb(93,104,81);
    color: black;}
.theme-option-ivory_sage_dark {
    background-color: rgb(93,104,81);
    border: 3px outset rgb(93,104,81);
    box-shadow: 0px 1px 2px rgb(93,104,81);}
.theme-covercontainer-ivory_sage_dark {
    background-color: rgb(93,104,81);
    box-shadow: 0px 1px 2px rgb(93,104,81);}
.theme-middleline-ivory_sage_dark {
    border-bottom: 1px solid rgb(93,104,81);}
.theme-middleicon-ivory_sage_dark {
    background-color: rgb(93,104,81);
    border: 3px outset rgb(93,104,81);
    box-shadow: 0px 1px 2px rgb(93,104,81);}
.theme-profilephoto-ivory_sage_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(93,104,81);}
.theme-coverphoto-ivory_sage_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(93,104,81);}
.theme-sectiondiv-ivory_sage_dark {
    background-color: rgba(30,31,28,0.03);}
.theme-adocicon-ivory_sage_dark {
    background-color: rgb(93,104,81);
    border-radius: 50%;}
.theme-tableform-ivory_sage_dark {
    background-color: rgba(30,31,28,0.03);}
.theme-gallerycontainer-ivory_sage_dark {
    background-color: rgba(30,31,28,0.03);}

/* === Golden Ash Light === */
.theme-profile-golden_ash_light {
    background-color: rgba(251,250,247,0.2);
    border: 3px outset rgb(192,162,39);
    color: black;}
.theme-option-golden_ash_light {
    background-color: rgba(192,162,39,0.2);
    border: 3px outset rgb(192,162,39);
    box-shadow: 0px 1px 2px rgba(192,162,39,0.2);}
.theme-covercontainer-golden_ash_light {
    background-color: rgba(192,162,39,0.2);
    box-shadow: 0px 1px 2px rgba(192,162,39,0.2);}
.theme-middleline-golden_ash_light {
    border-bottom: 1px solid rgba(192,162,39,0.2);}
.theme-middleicon-golden_ash_light {
    background-color: rgba(192,162,39,0.2);
    border: 3px outset rgb(192,162,39);
    box-shadow: 0px 1px 2px rgba(192,162,39,0.2);}
.theme-profilephoto-golden_ash_light {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(192,162,39,0.2);}
.theme-coverphoto-golden_ash_light {
    border: none;
    box-shadow: 0px 1px 2px rgba(192,162,39,0.2);}
.theme-sectiondiv-golden_ash_light {
    background-color: rgba(251,250,247,0.2);}
.theme-adocicon-golden_ash_light {
    background-color: rgba(192,162,39,0.2);
    border-radius: 50%;}
.theme-tableform-golden_ash_light {
    background-color: rgba(251,250,247,0.2);}
.theme-gallerycontainer-golden_ash_light {
    background-color: rgba(251,250,247,0.2);}

/* === Golden Ash Dark === */
.theme-profile-golden_ash_dark {
    background-color: rgba(23,22,20,0.03);
    border: 3px outset rgb(125,108,69);
    color: black;}
.theme-option-golden_ash_dark {
    background-color: rgb(125,108,69);
    border: 3px outset rgb(125,108,69);
    box-shadow: 0px 1px 2px rgb(125,108,69);}
.theme-covercontainer-golden_ash_dark {
    background-color: rgb(125,108,69);
    box-shadow: 0px 1px 2px rgb(125,108,69);}
.theme-middleline-golden_ash_dark {
    border-bottom: 1px solid rgb(125,108,69);}
.theme-middleicon-golden_ash_dark {
    background-color: rgb(125,108,69);
    border: 3px outset rgb(125,108,69);
    box-shadow: 0px 1px 2px rgb(125,108,69);}
.theme-profilephoto-golden_ash_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(125,108,69);}
.theme-coverphoto-golden_ash_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(125,108,69);}
.theme-sectiondiv-golden_ash_dark {
    background-color: rgba(23,22,20,0.03);}
.theme-adocicon-golden_ash_dark {
    background-color: rgb(125,108,69);
    border-radius: 50%;}
.theme-tableform-golden_ash_dark {
    background-color: rgba(23,22,20,0.03);}
.theme-gallerycontainer-golden_ash_dark {
    background-color: rgba(23,22,20,0.03);}

/* === Frosted Steel Light === */
.theme-profile-frosted_steel_light {
    background-color: rgba(245,247,249,0.2);
    border: 3px outset rgb(125,141,161);
    color: black;}
.theme-option-frosted_steel_light {
    background-color: rgba(125,141,161,0.2);
    border: 3px outset rgb(125,141,161);
    box-shadow: 0px 1px 2px rgba(125,141,161,0.2);}
.theme-covercontainer-frosted_steel_light {
    background-color: rgba(125,141,161,0.2);
    box-shadow: 0px 1px 2px rgba(125,141,161,0.2);}
.theme-middleline-frosted_steel_light {
    border-bottom: 1px solid rgba(125,141,161,0.2);}
.theme-middleicon-frosted_steel_light {
    background-color: rgba(125,141,161,0.2);
    border: 3px outset rgb(125,141,161);
    box-shadow: 0px 1px 2px rgba(125,141,161,0.2);}
.theme-profilephoto-frosted_steel_light {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(125,141,161,0.2);}
.theme-coverphoto-frosted_steel_light {
    border: none;
    box-shadow: 0px 1px 2px rgba(125,141,161,0.2);}
.theme-sectiondiv-frosted_steel_light {
    background-color: rgba(245,247,249,0.2);}
.theme-adocicon-frosted_steel_light {
    background-color: rgba(125,141,161,0.2);
    border-radius: 50%;}
.theme-tableform-frosted_steel_light {
    background-color: rgba(245,247,249,0.2);}
.theme-gallerycontainer-frosted_steel_light {
    background-color: rgba(245,247,249,0.2);}

/* === Frosted Steel Dark === */
.theme-profile-frosted_steel_dark {
    background-color: rgba(23,26,29,0.03);
    border: 3px outset rgb(58,70,83);
    color: black;}
.theme-option-frosted_steel_dark {
    background-color: rgb(58,70,83);
    border: 3px outset rgb(58,70,83);
    box-shadow: 0px 1px 2px rgb(58,70,83);}
.theme-covercontainer-frosted_steel_dark {
    background-color: rgb(58,70,83);
    box-shadow: 0px 1px 2px rgb(58,70,83);}
.theme-middleline-frosted_steel_dark {
    border-bottom: 1px solid rgb(58,70,83);}
.theme-middleicon-frosted_steel_dark {
    background-color: rgb(58,70,83);
    border: 3px outset rgb(58,70,83);
    box-shadow: 0px 1px 2px rgb(58,70,83);}
.theme-profilephoto-frosted_steel_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(58,70,83);}
.theme-coverphoto-frosted_steel_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(58,70,83);}
.theme-sectiondiv-frosted_steel_dark {
    background-color: rgba(23,26,29,0.03);}
.theme-adocicon-frosted_steel_dark {
    background-color: rgb(58,70,83);
    border-radius: 50%;}
.theme-tableform-frosted_steel_dark {
    background-color: rgba(23,26,29,0.03);}
.theme-gallerycontainer-frosted_steel_dark {
    background-color: rgba(23,26,29,0.03);}

/* === Blush Graphite Light === */
.theme-profile-blush_graphite_light {
    background-color: rgba(250,248,248,0.2);
    border: 3px outset rgb(178,123,124);
    color: black;}
.theme-option-blush_graphite_light {
    background-color: rgba(178,123,124,0.2);
    border: 3px outset rgb(178,123,124);
    box-shadow: 0px 1px 2px rgba(178,123,124,0.2);}
.theme-covercontainer-blush_graphite_light {
    background-color: rgba(178,123,124,0.2);
    box-shadow: 0px 1px 2px rgba(178,123,124,0.2);}
.theme-middleline-blush_graphite_light {
    border-bottom: 1px solid rgba(178,123,124,0.2);}
.theme-middleicon-blush_graphite_light {
    background-color: rgba(178,123,124,0.2);
    border: 3px outset rgb(178,123,124);
    box-shadow: 0px 1px 2px rgba(178,123,124,0.2);}
.theme-profilephoto-blush_graphite_light {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(178,123,124,0.2);}
.theme-coverphoto-blush_graphite_light {
    border: none;
    box-shadow: 0px 1px 2px rgba(178,123,124,0.2);}
.theme-sectiondiv-blush_graphite_light {
    background-color: rgba(250,248,248,0.2);}
.theme-adocicon-blush_graphite_light {
    background-color: rgba(178,123,124,0.2);
    border-radius: 50%;}
.theme-tableform-blush_graphite_light {
    background-color: rgba(250,248,248,0.2);}
.theme-gallerycontainer-blush_graphite_light {
    background-color: rgba(250,248,248,0.2);}

/* === Blush Graphite Dark === */
.theme-profile-blush_graphite_dark {
    background-color: rgba(28,26,26,0.03);
    border: 3px outset rgb(91,64,64);
    color: black;}
.theme-option-blush_graphite_dark {
    background-color: rgb(91,64,64);
    border: 3px outset rgb(91,64,64);
    box-shadow: 0px 1px 2px rgb(91,64,64);}
.theme-covercontainer-blush_graphite_dark {
    background-color: rgb(91,64,64);
    box-shadow: 0px 1px 2px rgb(91,64,64);}
.theme-middleline-blush_graphite_dark {
    border-bottom: 1px solid rgb(91,64,64);}
.theme-middleicon-blush_graphite_dark {
    background-color: rgb(91,64,64);
    border: 3px outset rgb(91,64,64);
    box-shadow: 0px 1px 2px rgb(91,64,64);}
.theme-profilephoto-blush_graphite_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(91,64,64);}
.theme-coverphoto-blush_graphite_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(91,64,64);}
.theme-sectiondiv-blush_graphite_dark {
    background-color: rgba(28,26,26,0.03);}
.theme-adocicon-blush_graphite_dark {
    background-color: rgb(91,64,64);
    border-radius: 50%;}
.theme-tableform-blush_graphite_dark {
    background-color: rgba(28,26,26,0.03);}
.theme-gallerycontainer-blush_graphite_dark {
    background-color: rgba(28,26,26,0.03);}

/* === Midnight Azure Light === */
.theme-profile-midnight_azure_light {
    background-color: rgba(245,248,251,0.2);
    border: 3px outset rgb(74,111,165);
    color: black;}
.theme-option-midnight_azure_light {
    background-color: rgba(74,111,165,0.2);
    border: 3px outset rgb(74,111,165);
    box-shadow: 0px 1px 2px rgba(74,111,165,0.2);}
.theme-covercontainer-midnight_azure_light {
    background-color: rgba(74,111,165,0.2);
    box-shadow: 0px 1px 2px rgba(74,111,165,0.2);}
.theme-middleline-midnight_azure_light {
    border-bottom: 1px solid rgba(74,111,165,0.2);}
.theme-middleicon-midnight_azure_light {
    background-color: rgba(74,111,165,0.2);
    border: 3px outset rgb(74,111,165);
    box-shadow: 0px 1px 2px rgba(74,111,165,0.2);}
.theme-profilephoto-midnight_azure_light {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(74,111,165,0.2);}
.theme-coverphoto-midnight_azure_light {
    border: none;
    box-shadow: 0px 1px 2px rgba(74,111,165,0.2);}
.theme-sectiondiv-midnight_azure_light {
    background-color: rgba(245,248,251,0.2);}
.theme-adocicon-midnight_azure_light {
    background-color: rgba(74,111,165,0.2);
    border-radius: 50%;}
.theme-tableform-midnight_azure_light {
    background-color: rgba(245,248,251,0.2);}
.theme-gallerycontainer-midnight_azure_light {
    background-color: rgba(245,248,251,0.2);}

/* === Midnight Azure Dark === */
.theme-profile-midnight_azure_dark {
    background-color: rgba(16,20,26,0.03);
    border: 3px outset rgb(44,62,80);
    color: black;}
.theme-option-midnight_azure_dark {
    background-color: rgb(44,62,80);
    border: 3px outset rgb(44,62,80);
    box-shadow: 0px 1px 2px rgb(44,62,80);}
.theme-covercontainer-midnight_azure_dark {
    background-color: rgb(44,62,80);
    box-shadow: 0px 1px 2px rgb(44,62,80);}
.theme-middleline-midnight_azure_dark {
    border-bottom: 1px solid rgb(44,62,80);}
.theme-middleicon-midnight_azure_dark {
    background-color: rgb(44,62,80);
    border: 3px outset rgb(44,62,80);
    box-shadow: 0px 1px 2px rgb(44,62,80);}
.theme-profilephoto-midnight_azure_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(44,62,80);}
.theme-coverphoto-midnight_azure_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(44,62,80);}
.theme-sectiondiv-midnight_azure_dark {
    background-color: rgba(16,20,26,0.03);}
.theme-adocicon-midnight_azure_dark {
    background-color: rgb(44,62,80);
    border-radius: 50%;}
.theme-tableform-midnight_azure_dark {
    background-color: rgba(16,20,26,0.03);}
.theme-gallerycontainer-midnight_azure_dark {
    background-color: rgba(16,20,26,0.03);}

/* === Rose Quartz Light === */
.theme-profile-rose_quartz_light {
    background-color: rgba(252,248,249,0.2);
    border: 3px outset rgb(210,155,160);
    color: black;}
.theme-option-rose_quartz_light {
    background-color: rgba(210,155,160,0.2);
    border: 3px outset rgb(210,155,160);
    box-shadow: 0px 1px 2px rgba(210,155,160,0.2);}
.theme-covercontainer-rose_quartz_light {
    background-color: rgba(210,155,160,0.2);
    box-shadow: 0px 1px 2px rgba(210,155,160,0.2);}
.theme-middleline-rose_quartz_light {
    border-bottom: 1px solid rgba(210,155,160,0.2);}
.theme-middleicon-rose_quartz_light {
    background-color: rgba(210,155,160,0.2);
    border: 3px outset rgb(210,155,160);
    box-shadow: 0px 1px 2px rgba(210,155,160,0.2);}
.theme-profilephoto-rose_quartz_light {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(210,155,160,0.2);}
.theme-coverphoto-rose_quartz_light {
    border: none;
    box-shadow: 0px 1px 2px rgba(210,155,160,0.2);}
.theme-sectiondiv-rose_quartz_light {
    background-color: rgba(252,248,249,0.2);}
.theme-adocicon-rose_quartz_light {
    background-color: rgba(210,155,160,0.2);
    border-radius: 50%;}
.theme-tableform-rose_quartz_light {
    background-color: rgba(252,248,249,0.2);}
.theme-gallerycontainer-rose_quartz_light {
    background-color: rgba(252,248,249,0.2);}

/* === Rose Quartz Dark === */
.theme-profile-rose_quartz_dark {
    background-color: rgba(30,24,26,0.03);
    border: 3px outset rgb(130,85,90);
    color: black;}
.theme-option-rose_quartz_dark {
    background-color: rgb(130,85,90);
    border: 3px outset rgb(130,85,90);
    box-shadow: 0px 1px 2px rgb(130,85,90);}
.theme-covercontainer-rose_quartz_dark {
    background-color: rgb(130,85,90);
    box-shadow: 0px 1px 2px rgb(130,85,90);}
.theme-middleline-rose_quartz_dark {
    border-bottom: 1px solid rgb(130,85,90);}
.theme-middleicon-rose_quartz_dark {
    background-color: rgb(130,85,90);
    border: 3px outset rgb(130,85,90);
    box-shadow: 0px 1px 2px rgb(130,85,90);}
.theme-profilephoto-rose_quartz_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(130,85,90);}
.theme-coverphoto-rose_quartz_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(130,85,90);}
.theme-sectiondiv-rose_quartz_dark {
    background-color: rgba(30,24,26,0.03);}
.theme-adocicon-rose_quartz_dark {
    background-color: rgb(130,85,90);
    border-radius: 50%;}
.theme-tableform-rose_quartz_dark {
    background-color: rgba(30,24,26,0.03);}
.theme-gallerycontainer-rose_quartz_dark {
    background-color: rgba(30,24,26,0.03);}

/* === Crimson Obsidian Light === */
.theme-profile-crimson_obsidian_light {
    background-color: rgba(255,250,250,0.2);
    border: 3px outset rgb(110,20,20);
    color: black;}
.theme-option-crimson_obsidian_light {
    background-color: rgba(110,20,20,0.2);
    border: 3px outset rgb(110,20,20);
    box-shadow: 0px 1px 2px rgba(110,20,20,0.2);}
.theme-covercontainer-crimson_obsidian_light {
    background-color: rgba(110,20,20,0.2);
    box-shadow: 0px 1px 2px rgba(110,20,20,0.2);}
.theme-middleline-crimson_obsidian_light {
    border-bottom: 1px solid rgba(110,20,20,0.2);}
.theme-middleicon-crimson_obsidian_light {
    background-color: rgba(110,20,20,0.2);
    border: 3px outset rgb(110,20,20);
    box-shadow: 0px 1px 2px rgba(110,20,20,0.2);}
.theme-profilephoto-crimson_obsidian_light {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(110,20,20,0.2);}
.theme-coverphoto-crimson_obsidian_light {
    border: none;
    box-shadow: 0px 1px 2px rgba(110,20,20,0.2);}
.theme-sectiondiv-crimson_obsidian_light {
    background-color: rgba(255,250,250,0.2);}
.theme-adocicon-crimson_obsidian_light {
    background-color: rgba(110,20,20,0.2);
    border-radius: 50%;}
.theme-tableform-crimson_obsidian_light {
    background-color: rgba(255,250,250,0.2);}
.theme-gallerycontainer-crimson_obsidian_light {
    background-color: rgba(255,250,250,0.2);}

/* === Crimson Obsidian Dark === */
.theme-profile-crimson_obsidian_dark {
    background-color: rgba(20,0,0,0.03);
    border: 3px outset rgb(75,0,0);
    color: black;}
.theme-option-crimson_obsidian_dark {
    background-color: rgb(75,0,0);
    border: 3px outset rgb(75,0,0);
    box-shadow: 0px 1px 2px rgb(75,0,0);}
.theme-covercontainer-crimson_obsidian_dark {
    background-color: rgb(75,0,0);
    box-shadow: 0px 1px 2px rgb(75,0,0);}
.theme-middleline-crimson_obsidian_dark {
    border-bottom: 1px solid rgb(75,0,0);}
.theme-middleicon-crimson_obsidian_dark {
    background-color: rgb(75,0,0);
    border: 3px outset rgb(75,0,0);
    box-shadow: 0px 1px 2px rgb(75,0,0);}
.theme-profilephoto-crimson_obsidian_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(75,0,0);}
.theme-coverphoto-crimson_obsidian_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(75,0,0);}
.theme-sectiondiv-crimson_obsidian_dark {
    background-color: rgba(20,0,0,0.03);}
.theme-adocicon-crimson_obsidian_dark {
    background-color: rgb(75,0,0);
    border-radius: 50%;}
.theme-tableform-crimson_obsidian_dark {
    background-color: rgba(20,0,0,0.03);}
.theme-gallerycontainer-crimson_obsidian_dark {
    background-color: rgba(20,0,0,0.03);}

/* === Titanium Noir Light === */
.theme-profile-titanium_noir_light {
    background-color: rgba(245,246,247,0.2);
    border: 3px outset rgb(80,95,120);
    color: black;}
.theme-option-titanium_noir_light {
    background-color: rgba(80,95,120,0.2);
    border: 3px outset rgb(80,95,120);
    box-shadow: 0px 1px 2px rgba(80,95,120,0.2);}
.theme-covercontainer-titanium_noir_light {
    background-color: rgba(80,95,120,0.2);
    box-shadow: 0px 1px 2px rgba(80,95,120,0.2);}
.theme-middleline-titanium_noir_light {
    border-bottom: 1px solid rgba(80,95,120,0.2);}
.theme-middleicon-titanium_noir_light {
    background-color: rgba(80,95,120,0.2);
    border: 3px outset rgb(80,95,120);
    box-shadow: 0px 1px 2px rgba(80,95,120,0.2);}
.theme-profilephoto-titanium_noir_light {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(80,95,120,0.2);}
.theme-coverphoto-titanium_noir_light {
    border: none;
    box-shadow: 0px 1px 2px rgba(80,95,120,0.2);}
.theme-sectiondiv-titanium_noir_light {
    background-color: rgba(245,246,247,0.2);}
.theme-adocicon-titanium_noir_light {
    background-color: rgba(80,95,120,0.2);
    border-radius: 50%;}
.theme-tableform-titanium_noir_light {
    background-color: rgba(245,246,247,0.2);}
.theme-gallerycontainer-titanium_noir_light {
    background-color: rgba(245,246,247,0.2);}

/* === Titanium Noir Dark === */
.theme-profile-titanium_noir_dark {
    background-color: rgba(25,28,33,0.03);
    border: 3px outset rgb(80,95,120);
    color: black;}
.theme-option-titanium_noir_dark {
    background-color: rgb(80,95,120);
    border: 3px outset rgb(80,95,120);
    box-shadow: 0px 1px 2px rgb(80,95,120);}
.theme-covercontainer-titanium_noir_dark {
    background-color: rgb(80,95,120);
    box-shadow: 0px 1px 2px rgb(80,95,120);}
.theme-middleline-titanium_noir_dark {
    border-bottom: 1px solid rgb(80,95,120);}
.theme-middleicon-titanium_noir_dark {
    background-color: rgb(80,95,120);
    border: 3px outset rgb(80,95,120);
    box-shadow: 0px 1px 2px rgb(80,95,120);}
.theme-profilephoto-titanium_noir_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(80,95,120);}
.theme-coverphoto-titanium_noir_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(80,95,120);}
.theme-sectiondiv-titanium_noir_dark {
    background-color: rgba(25,28,33,0.03);}
.theme-adocicon-titanium_noir_dark {
    background-color: rgb(80,95,120);
    border-radius: 50%;}
.theme-tableform-titanium_noir_dark {
    background-color: rgba(25,28,33,0.03);}
.theme-gallerycontainer-titanium_noir_dark {
    background-color: rgba(25,28,33,0.03);}

/* === Bronze Eclipse Light === */
.theme-profile-bronze_eclipse_light {
    background-color: rgba(250,248,245,0.2);
    border: 3px outset rgb(120,85,45);
    color: black;}
.theme-option-bronze_eclipse_light {
    background-color: rgba(120,85,45,0.2);
    border: 3px outset rgb(120,85,45);
    box-shadow: 0px 1px 2px rgba(120,85,45,0.2);}
.theme-covercontainer-bronze_eclipse_light {
    background-color: rgba(120,85,45,0.2);
    box-shadow: 0px 1px 2px rgba(120,85,45,0.2);}
.theme-middleline-bronze_eclipse_light {
    border-bottom: 1px solid rgba(120,85,45,0.2);}
.theme-middleicon-bronze_eclipse_light {
    background-color: rgba(120,85,45,0.2);
    border: 3px outset rgb(120,85,45);
    box-shadow: 0px 1px 2px rgba(120,85,45,0.2);}
.theme-profilephoto-bronze_eclipse_light {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(120,85,45,0.2);}
.theme-coverphoto-bronze_eclipse_light {
    border: none;
    box-shadow: 0px 1px 2px rgba(120,85,45,0.2);}
.theme-sectiondiv-bronze_eclipse_light {
    background-color: rgba(250,248,245,0.2);}
.theme-adocicon-bronze_eclipse_light {
    background-color: rgba(120,85,45,0.2);
    border-radius: 50%;}
.theme-tableform-bronze_eclipse_light {
    background-color: rgba(250,248,245,0.2);}
.theme-gallerycontainer-bronze_eclipse_light {
    background-color: rgba(250,248,245,0.2);}

/* === Bronze Eclipse Dark === */
.theme-profile-bronze_eclipse_dark {
    background-color: rgba(35,25,15,0.03);
    border: 3px outset rgb(120,85,45);
    color: black;}
.theme-option-bronze_eclipse_dark {
    background-color: rgb(120,85,45);
    border: 3px outset rgb(120,85,45);
    box-shadow: 0px 1px 2px rgb(120,85,45);}
.theme-covercontainer-bronze_eclipse_dark {
    background-color: rgb(120,85,45);
    box-shadow: 0px 1px 2px rgb(120,85,45);}
.theme-middleline-bronze_eclipse_dark {
    border-bottom: 1px solid rgb(120,85,45);}
.theme-middleicon-bronze_eclipse_dark {
    background-color: rgb(120,85,45);
    border: 3px outset rgb(120,85,45);
    box-shadow: 0px 1px 2px rgb(120,85,45);}
.theme-profilephoto-bronze_eclipse_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(120,85,45);}
.theme-coverphoto-bronze_eclipse_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(120,85,45);}
.theme-sectiondiv-bronze_eclipse_dark {
    background-color: rgba(35,25,15,0.03);}
.theme-adocicon-bronze_eclipse_dark {
    background-color: rgb(120,85,45);
    border-radius: 50%;}
.theme-tableform-bronze_eclipse_dark {
    background-color: rgba(35,25,15,0.03);}
.theme-gallerycontainer-bronze_eclipse_dark {
    background-color: rgba(35,25,15,0.03);}

/* === Arctic Night Light === */
.theme-profile-arctic_night_light {
    background-color: rgba(240,245,250,0.2);
    border: 3px outset rgb(90,110,130);
    color: black;}
.theme-option-arctic_night_light {
    background-color: rgba(90,110,130,0.2);
    border: 3px outset rgb(90,110,130);
    box-shadow: 0px 1px 2px rgba(90,110,130,0.2);}
.theme-covercontainer-arctic_night_light {
    background-color: rgba(90,110,130,0.2);
    box-shadow: 0px 1px 2px rgba(90,110,130,0.2);}
.theme-middleline-arctic_night_light {
    border-bottom: 1px solid rgba(90,110,130,0.2);}
.theme-middleicon-arctic_night_light {
    background-color: rgba(90,110,130,0.2);
    border: 3px outset rgb(90,110,130);
    box-shadow: 0px 1px 2px rgba(90,110,130,0.2);}
.theme-profilephoto-arctic_night_light {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(90,110,130,0.2);}
.theme-coverphoto-arctic_night_light {
    border: none;
    box-shadow: 0px 1px 2px rgba(90,110,130,0.2);}
.theme-sectiondiv-arctic_night_light {
    background-color: rgba(240,245,250,0.2);}
.theme-adocicon-arctic_night_light {
    background-color: rgba(90,110,130,0.2);
    border-radius: 50%;}
.theme-tableform-arctic_night_light {
    background-color: rgba(240,245,250,0.2);}
.theme-gallerycontainer-arctic_night_light {
    background-color: rgba(240,245,250,0.2);}

/* === Arctic Night Dark === */
.theme-profile-arctic_night_dark {
    background-color: rgba(15,20,25,0.03);
    border: 3px outset rgb(90,110,130);
    color: black;}
.theme-option-arctic_night_dark {
    background-color: rgb(90,110,130);
    border: 3px outset rgb(90,110,130);
    box-shadow: 0px 1px 2px rgb(90,110,130);}
.theme-covercontainer-arctic_night_dark {
    background-color: rgb(90,110,130);
    box-shadow: 0px 1px 2px rgb(90,110,130);}
.theme-middleline-arctic_night_dark {
    border-bottom: 1px solid rgb(90,110,130);}
.theme-middleicon-arctic_night_dark {
    background-color: rgb(90,110,130);
    border: 3px outset rgb(90,110,130);
    box-shadow: 0px 1px 2px rgb(90,110,130);}
.theme-profilephoto-arctic_night_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(90,110,130);}
.theme-coverphoto-arctic_night_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(90,110,130);}
.theme-sectiondiv-arctic_night_dark {
    background-color: rgba(15,20,25,0.03);}
.theme-adocicon-arctic_night_dark {
    background-color: rgb(90,110,130);
    border-radius: 50%;}
.theme-tableform-arctic_night_dark {
    background-color: rgba(15,20,25,0.03);}
.theme-gallerycontainer-arctic_night_dark {
    background-color: rgba(15,20,25,0.03);}

/* === Forest Stone Light === */
.theme-profile-forest_stone_light {
    background-color: rgba(245,247,245,0.2);
    border: 3px outset rgb(65,85,70);
    color: black;}
.theme-option-forest_stone_light {
    background-color: rgba(65,85,70,0.2);
    border: 3px outset rgb(65,85,70);
    box-shadow: 0px 1px 2px rgba(65,85,70,0.2);}
.theme-covercontainer-forest_stone_light {
    background-color: rgba(65,85,70,0.2);
    box-shadow: 0px 1px 2px rgba(65,85,70,0.2);}
.theme-middleline-forest_stone_light {
    border-bottom: 1px solid rgba(65,85,70,0.2);}
.theme-middleicon-forest_stone_light {
    background-color: rgba(65,85,70,0.2);
    border: 3px outset rgb(65,85,70);
    box-shadow: 0px 1px 2px rgba(65,85,70,0.2);}
.theme-profilephoto-forest_stone_light {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(65,85,70,0.2);}
.theme-coverphoto-forest_stone_light {
    border: none;
    box-shadow: 0px 1px 2px rgba(65,85,70,0.2);}
.theme-sectiondiv-forest_stone_light {
    background-color: rgba(245,247,245,0.2);}
.theme-adocicon-forest_stone_light {
    background-color: rgba(65,85,70,0.2);
    border-radius: 50%;}
.theme-tableform-forest_stone_light {
    background-color: rgba(245,247,245,0.2);}
.theme-gallerycontainer-forest_stone_light {
    background-color: rgba(245,247,245,0.2);}

/* === Forest Stone Dark === */
.theme-profile-forest_stone_dark {
    background-color: rgba(20,30,25,0.03);
    border: 3px outset rgb(65,85,70);
    color: black;}
.theme-option-forest_stone_dark {
    background-color: rgb(65,85,70);
    border: 3px outset rgb(65,85,70);
    box-shadow: 0px 1px 2px rgb(65,85,70);}
.theme-covercontainer-forest_stone_dark {
    background-color: rgb(65,85,70);
    box-shadow: 0px 1px 2px rgb(65,85,70);}
.theme-middleline-forest_stone_dark {
    border-bottom: 1px solid rgb(65,85,70);}
.theme-middleicon-forest_stone_dark {
    background-color: rgb(65,85,70);
    border: 3px outset rgb(65,85,70);
    box-shadow: 0px 1px 2px rgb(65,85,70);}
.theme-profilephoto-forest_stone_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(65,85,70);}
.theme-coverphoto-forest_stone_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(65,85,70);}
.theme-sectiondiv-forest_stone_dark {
    background-color: rgba(20,30,25,0.03);}
.theme-adocicon-forest_stone_dark {
    background-color: rgb(65,85,70);
    border-radius: 50%;}
.theme-tableform-forest_stone_dark {
    background-color: rgba(20,30,25,0.03);}
.theme-gallerycontainer-forest_stone_dark {
    background-color: rgba(20,30,25,0.03);}

    /* === Carmine Shadow Light === */
.theme-profile-carmine_shadow_light {
    background-color: rgba(252,245,245,0.2);
    border: 3px outset rgb(100,20,20);
    color: black;}
.theme-option-carmine_shadow_light {
    background-color: rgba(100,20,20,0.2);
    border: 3px outset rgb(100,20,20);
    box-shadow: 0px 1px 2px rgba(100,20,20,0.2);}
.theme-covercontainer-carmine_shadow_light {
    background-color: rgba(100,20,20,0.2);
    box-shadow: 0px 1px 2px rgba(100,20,20,0.2);}
.theme-middleline-carmine_shadow_light {
    border-bottom: 1px solid rgba(100,20,20,0.2);}
.theme-middleicon-carmine_shadow_light {
    background-color: rgba(100,20,20,0.2);
    border: 3px outset rgb(100,20,20);
    box-shadow: 0px 1px 2px rgba(100,20,20,0.2);}
.theme-profilephoto-carmine_shadow_light {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(100,20,20,0.2);}
.theme-coverphoto-carmine_shadow_light {
    border: none;
    box-shadow: 0px 1px 2px rgba(100,20,20,0.2);}
.theme-sectiondiv-carmine_shadow_light {
    background-color: rgba(252,245,245,0.2);}
.theme-adocicon-carmine_shadow_light {
    background-color: rgba(100,20,20,0.2);
    border-radius: 50%;}
.theme-tableform-carmine_shadow_light {
    background-color: rgba(252,245,245,0.2);}
.theme-gallerycontainer-carmine_shadow_light {
    background-color: rgba(252,245,245,0.2);}

/* === Carmine Shadow Dark === */
.theme-profile-carmine_shadow_dark {
    background-color: rgba(45,0,0,0.03);
    border: 3px outset rgb(100,20,20);
    color: black;}
.theme-option-carmine_shadow_dark {
    background-color: rgb(100,20,20);
    border: 3px outset rgb(100,20,20);
    box-shadow: 0px 1px 2px rgb(100,20,20);}
.theme-covercontainer-carmine_shadow_dark {
    background-color: rgb(100,20,20);
    box-shadow: 0px 1px 2px rgb(100,20,20);}
.theme-middleline-carmine_shadow_dark {
    border-bottom: 1px solid rgb(100,20,20);}
.theme-middleicon-carmine_shadow_dark {
    background-color: rgb(100,20,20);
    border: 3px outset rgb(100,20,20);
    box-shadow: 0px 1px 2px rgb(100,20,20);}
.theme-profilephoto-carmine_shadow_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(100,20,20);}
.theme-coverphoto-carmine_shadow_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(100,20,20);}
.theme-sectiondiv-carmine_shadow_dark {
    background-color: rgba(45,0,0,0.03);}
.theme-adocicon-carmine_shadow_dark {
    background-color: rgb(100,20,20);
    border-radius: 50%;}
.theme-tableform-carmine_shadow_dark {
    background-color: rgba(45,0,0,0.03);}
.theme-gallerycontainer-carmine_shadow_dark {
    background-color: rgba(45,0,0,0.03);}

/* === Verdant Vintage Dark === */
.theme-profile-verdant_vintage_dark {
    background-color: rgba(25,45,35,0.03);
    border: 3px outset rgb(70,100,75);
    color: black;}
.theme-option-verdant_vintage_dark {
    background-color: rgb(70,100,75);
    border: 3px outset rgb(70,100,75);
    box-shadow: 0px 1px 2px rgb(70,100,75);}
.theme-covercontainer-verdant_vintage_dark {
    background-color: rgb(70,100,75);
    box-shadow: 0px 1px 2px rgb(70,100,75);}
.theme-middleline-verdant_vintage_dark {
    border-bottom: 1px solid rgb(70,100,75);}
.theme-middleicon-verdant_vintage_dark {
    background-color: rgb(70,100,75);
    border: 3px outset rgb(70,100,75);
    box-shadow: 0px 1px 2px rgb(70,100,75);}
.theme-profilephoto-verdant_vintage_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(70,100,75);}
.theme-coverphoto-verdant_vintage_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(70,100,75);}
.theme-sectiondiv-verdant_vintage_dark {
    background-color: rgba(25,45,35,0.03);}
.theme-adocicon-verdant_vintage_dark {
    background-color: rgb(70,100,75);
    border-radius: 50%;}
.theme-tableform-verdant_vintage_dark {
    background-color: rgba(25,45,35,0.03);}
.theme-gallerycontainer-verdant_vintage_dark {
    background-color: rgba(25,45,35,0.03);}

/* === Vintage Brown Dark === */
.theme-profile-vintage_brown_dark {
    background-color: rgba(40,25,15,0.03);
    border: 3px outset rgb(110,75,50);
    color: black;}
.theme-option-vintage_brown_dark {
    background-color: rgb(110,75,50);
    border: 3px outset rgb(110,75,50);
    box-shadow: 0px 1px 2px rgb(110,75,50);}
.theme-covercontainer-vintage_brown_dark {
    background-color: rgb(110,75,50);
    box-shadow: 0px 1px 2px rgb(110,75,50);}
.theme-middleline-vintage_brown_dark {
    border-bottom: 1px solid rgb(110,75,50);}
.theme-middleicon-vintage_brown_dark {
    background-color: rgb(110,75,50);
    border: 3px outset rgb(110,75,50);
    box-shadow: 0px 1px 2px rgb(110,75,50);}
.theme-profilephoto-vintage_brown_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(110,75,50);}
.theme-coverphoto-vintage_brown_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(110,75,50);}
.theme-sectiondiv-vintage_brown_dark {
    background-color: rgba(40,25,15,0.03);}
.theme-adocicon-vintage_brown_dark {
    background-color: rgb(110,75,50);
    border-radius: 50%;}
.theme-tableform-vintage_brown_dark {
    background-color: rgba(40,25,15,0.03);}
.theme-gallerycontainer-vintage_brown_dark {
    background-color: rgba(40,25,15,0.03);}

/* === Obsidian Black Dark === */
.theme-profile-obsidian_black_dark {
    background-color: rgba(10,10,10,0.03);
    border: 3px outset rgb(50,50,50);
    color: black;}
.theme-option-obsidian_black_dark {
    background-color: rgb(50,50,50);
    border: 3px outset rgb(50,50,50);
    box-shadow: 0px 1px 2px rgb(50,50,50);}
.theme-covercontainer-obsidian_black_dark {
    background-color: rgb(50,50,50);
    box-shadow: 0px 1px 2px rgb(50,50,50);}
.theme-middleline-obsidian_black_dark {
    border-bottom: 1px solid rgb(50,50,50);}
.theme-middleicon-obsidian_black_dark {
    background-color: rgb(50,50,50);
    border: 3px outset rgb(50,50,50);
    box-shadow: 0px 1px 2px rgb(50,50,50);}
.theme-profilephoto-obsidian_black_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(50,50,50);}
.theme-coverphoto-obsidian_black_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(50,50,50);}
.theme-sectiondiv-obsidian_black_dark {
    background-color: rgba(10,10,10,0.03);}
.theme-adocicon-obsidian_black_dark {
    background-color: rgb(50,50,50);
    border-radius: 50%;}
.theme-tableform-obsidian_black_dark {
    background-color: rgba(10,10,10,0.03);}
.theme-gallerycontainer-obsidian_black_dark {
    background-color: rgba(10,10,10,0.03);}

/* === Porcelain White Dark === */
.theme-profile-porcelain_white_dark {
    background-color: rgba(245,245,240,0.05);
    border: 3px outset rgb(200,200,190);
    color: black;}
.theme-option-porcelain_white_dark {
    background-color: rgb(200,200,190);
    border: 3px outset rgb(200,200,190);
    box-shadow: 0px 1px 2px rgb(200,200,190);}
.theme-covercontainer-porcelain_white_dark {
    background-color: rgb(200,200,190);
    box-shadow: 0px 1px 2px rgb(200,200,190);}
.theme-middleline-porcelain_white_dark {
    border-bottom: 1px solid rgb(200,200,190);}
.theme-middleicon-porcelain_white_dark {
    background-color: rgb(200,200,190);
    border: 3px outset rgb(200,200,190);
    box-shadow: 0px 1px 2px rgb(200,200,190);}
.theme-profilephoto-porcelain_white_dark {
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgb(200,200,190);}
.theme-coverphoto-porcelain_white_dark {
    border: none;
    box-shadow: 0px 1px 2px rgb(200,200,190);}
.theme-sectiondiv-porcelain_white_dark {
    background-color: rgba(245,245,240,0.05);}
.theme-adocicon-porcelain_white_dark {
    background-color: rgb(200,200,190);
    border-radius: 50%;}
.theme-tableform-porcelain_white_dark {
    background-color: rgba(245,245,240,0.05);}
.theme-gallerycontainer-porcelain_white_dark {
    background-color: rgba(245,245,240,0.05);}





/* ========================================================================================================================
======================================================================================================================== */
/* ========================================================================================================================
                                                HEADER MENU
======================================================================================================================== */
/* ========================================================================================================================
======================================================================================================================== */





/* ============================================================
   HEADER MENU BUTTON
   ============================================================ */
.header-menu-button {
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 50;
    margin-right: 12px;
}
.header-menu-button-line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    background: #daa520;
    border-radius: 3px;
    transform-origin: center;
    transition: 0.25s ease;
}

/* ============================================================
   FLOATING HEADER MENU PANEL
   ============================================================ */
#floating-menu-header {
    position: fixed;
    top: 76px;
    right: 0;
    width: 260px;
    max-height: 70vh;
    overflow-y: auto;
    background: rgb(75,75,75);
    border: 1px solid #333;
    border-radius: 0 0 0 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    padding: 10px 0;
    z-index: 49;
    display: none;
}

/* Title */
.menu-section-title {
    display: flex;
    align-items: center;
    padding: 10px 18px 6px;
    margin-top: 4px;
}
.menu-section-title-bar {
    width: 4px;
    height: 16px;
    background: #daa520;
    border-radius: 2px;
    margin-right: 10px;
}
.menu-section-title-label {
    font-size: 14px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.04em;
}

/* ============================================================
   MENU ITEM
   ============================================================ */
.menu-item-wrap {
    position: relative;
}
.menu-item {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 15px;
    color: white;
    transition: 0.2s;
}
.menu-item:hover {
    background: rgba(255,255,255,0.1);
}
.menu-item-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    object-fit: contain;
}
.menu-item-separator {
    height: 1px;
    width: 100%;
    background: rgba(255,255,255,0.08);
    margin-top: 10px;
    position: absolute;
    bottom: 0;
}

/* ============================================================
   POPUP WINDOW
   ============================================================ */
.floating-popup2 {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 750px;
    height: 80vh;
    background: rgb(75,75,75);
    border-top: 2px solid #daa520;
    border-radius: 12px 12px 0 0;
    z-index: 30;
    display: none;
    overflow: hidden;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

/* Menubar */
.popup-menubar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px 10px;
    background: #222;
    border-bottom: 1px solid #444;
}
.popup-menubar-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.popup-menubar-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid #daa520;
    padding: 2px;
    background: rgba(0,0,0,0.3);
}
.popup-menubar-label {
    color: #daa520;
    font-size: 16px;
    font-weight: 700;
}
.popup-menubar-btn {
    color: #daa520;
    cursor: pointer;
    font-size: 18px;
    transition: transform 0.15s ease;
}
.popup-menubar-btn:hover {
    transform: scale(1.15);
}

/* ============================================================
   FILTER BAR
   ============================================================ */
.popup-filterbar {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 15px;
    border-bottom: 1px solid #444;
}

.popup-searchwrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    padding: 6px 10px;
    border-radius: 6px;
}

/* Action buttons */
.popup-filter-btn {
    width: 35px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #daa520;
    border: 1px solid rgba(218,165,32,0.4);
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
}

/* Filter rows */
.popup-filters-container {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}
.popup-filter-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.popup-filter-label {
    color: white;
    flex: 0 0 80px;
    font-size: 14px;
}
.popup-filter-select {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid #444;
    color: white;
    padding: 6px;
    font-size: 14px;
    border-radius: 6px;
}

/* ============================================================
   POPUP CONTENT
   ============================================================ */
.popup-container {
    color: white;
    padding: 15px;
    height: calc(100% - 120px);
    overflow-y: auto;
}
