/* ************************************************************************************************/
/* BODY                                                                                           */
/* ************************************************************************************************/
body {
    color: #f5f5f5;
    background-color: #373a36;
}

/* ************************************************************************************************/
/* LINKS                                                                                          */
/* ************************************************************************************************/
a, a:visited {
    color: #f5f5f5;
}

a:hover {
    color: #6a9258;
}

/* ************************************************************************************************/
/* CONTENT CONTAINER                                                                              */
/* ************************************************************************************************/
.content {
    margin: auto;
    padding: 25px;
}

.content-container {
    position: relative;
    min-height: 100vh;
}

.content-wrap {
    padding-bottom: 4rem;
}

/*************************************************************************************************/
/* NEWS BOX                                                                                      */
/*************************************************************************************************/
.news-box {
    color: #f5f5f5;
    background-color: #121212;
}

/*************************************************************************************************/
/* FORM CONTAINER                                                                                */
/*************************************************************************************************/
.form-container {
    color: #f5f5f5;
    background-color: #121212;
}

/*************************************************************************************************/
/* STORE                                                                                         */
/*************************************************************************************************/
.product-container {
    display:flex;
    flex-wrap:wrap;
    width:100%;
    justify-content:center
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    border: 1px solid lightgray;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    margin: 20px;
    background-color: white; 
    padding-bottom:1%
}

.product-image {
    width: 128px;
    height: 128px;
    object-fit: cover;
}

.product-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 10px 0;
    text-align: center;
    color: rgb(0, 0, 0);
}

.product-description {
    font-size: 0.875rem;
    margin: 10px 0;
    text-align: center;
    color: rgb(0, 0, 0);
}

.product-price {
    font-size: 1.125rem;
    font-weight: bold;
    margin: 10px 0;
    color: rgb(0, 0, 0);
    float: left;
    clear: both;
}

.add-to-cart-button {
    padding: 10px 20px;
    background-color: #6a9258;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 0.875rem;
    cursor: pointer;
}

.add-to-cart-button:hover {
    background-color: #6a9232;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.original-price {
    text-decoration: line-through;
    color: rgb(0, 0, 0);
    font-size: 0.875rem;
}

.discount-price {
    color: #2AAA8A;
    font-size: 1.125rem;
    font-weight: bold;
    float: right;
    clear: both;
}

/*************************************************************************************************/
/* ACCOUNT SETTINGS                                                                              */
/*************************************************************************************************/
.avatar {
    display: block;
    position: relative;
    width: auto;
    height: auto;
    min-width: 150px;
    min-height: 150px;
    max-width: 150px;
    max-height: 150px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
  
.img-overlay {
    position: relative;
    width:25%;
}
  
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(0,0,0,.5);
}
  
.img-overlay:hover .overlay {
    opacity: 1;
}

.website-profile-update input[type='file'] {
    display: none;
}

.website-profile-update input[type='textarea'] {
    resize: none;
}

.unverified {
    color: #BF616A;
}

.verified {
    color: #2AAA8A;
}

/*************************************************************************************************/
/* FORMS                                                                                         */
/*************************************************************************************************/
.custom-table {
    color: #f5f5f5;
    background-color: #121212;
    border: none;
}

.custom-table th {
    color: #f5f5f5;
    background-color: #121212;
    border: none;
}

.custom-table td {
    color: #f5f5f5;
    background-color: #121212;
    border: none;
}

.custom-table img {
    position: relative;
    width:48px;
    height:64px;
    float: left;
    margin-right: 15px;
    margin-left: 15px;
}

.captcha {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    --altcha-border-width: 5px;
    --altcha-border-radius: 5px;
    --altcha-color-base: #282828;
    --altcha-color-border: #282828;
    --altcha-color-text: #f5f5f5;
    --altcha-color-border-focus: #282828;
    --altcha-color-error-text: #BF616A;
    --altcha-color-footer-bg: #282828;
    --altcha-max-width: 260px;
}

/*************************************************************************************************/
/* USER DIRECTORY                                                                                */
/*************************************************************************************************/
.banned-subhead {
    color: #BF616A;
}

.system-subhead {
    color: #4f4f4f;
}

.developer-subhead {
    color: #a890f7;
}

.communitymanager-subhead {
    color: #f479ff;
}

.eventhost-subhead {
    color: #81A1C1;
}

.member-subhead {
    color: #f5f5f5;
}

.user-link {
    display: block;
    font-size:16px;
    padding-top: 3px;
    margin-left: 60px;
}

/*************************************************************************************************/
/* MISC                                                                                          */
/*************************************************************************************************/
.center-image {
    margin-left: auto;
    margin-right: auto;
}
