@import "layout.css?v=20231011";
@import "nav.css?v=20231011";
@import "forms.css?v=20231011";
@import "login.css?v=20231011";
@import "dialogs.css";

@import "../Dashboard/dashboard_styles.css";
@import "../ModulePages/pages_styles.css";
@import "../ModuleVisits/visits_styles.css";
@import "../ModuleGalleries/galleries_styles.css";
@import "../ModuleProducts/product_styles.css?v=6";
@import "../ModuleOrders/orders_styles.css?v=3";
@import "../ModuleCategories/categories_styles.css";

@import "themes/theme-blue.css";
@import "themes/theme-grey.css";
@import "themes/theme-orange.css";
@import "themes/theme-silver.css?v=20231011";
@import "themes/theme-spring-green.css";
@import "themes/theme-tudio.css";

@import "respons.css?v=20231011";

/*----------------------------------------------------------------------------------------*/
/* tags */

h1 {
    font-size: 24px;
    font-weight: normal;
}

h2 {
    font-size: 18px;
    font-weight: normal;
    margin-top: 5px;
    margin-bottom: 20px;
}

h3 {
    font-size: 14px;
    font-weight: bold;
}

hr {
    clear: both;
    border-width: 0px;
    width: 100%;
    height: 1px;
    background-color: rgb(176, 176, 176);
    margin-top: 20px;
    margin-bottom: 20px;
}

#right ul {
    padding-left: 25px;
}

ul {
    clear: both;
}

.color-green {
    color: #008e00;
}

.color-red {
    color: #c84443;
}

#grey_background hr:not(.restore_page) {
    margin-top: 30px;
    margin-bottom: 30px;
}

hr.restore_page {
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: rgb(224, 224, 224);
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: underline;
    color: black;
}

a:visited {
    text-decoration: none;
    color: black;
}

.status a {
    color: white;
}

#show_extended {
    color: white;
}

.spinner::before {
    animation: spinner_rotate;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    animation-timing-function: linear;
    color: #3a3a3a;
    transform: rotate(0deg)
}

@keyframes spinner_rotate {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

/*----------------------------------------------------------------------------------------*/
/* tables */

table {
    max-width: 100%;
    clear: both;
}

.responsive_table {
    overflow: auto;
    clear: both;
}

.responsive_table::-webkit-scrollbar {
    height: 8px;
    width: 4px;
    border: none;
}

.responsive_table::-webkit-scrollbar-thumb {
    background-color: #B8B8B8;
}

.responsive_table::-webkit-scrollbar-corner {
    background: 0;
}

.news table td, .mailing_list table td {
    white-space: nowrap;
}

.width100 {
    width: 100%;
}

td {
    padding-right: 10px;
}

th {
    text-align: left;
}


.styled_table {
    border-collapse: collapse;
}

.styled_table tr:nth-child(even):not(.th):not(.red) {
    background-color: #f1f1f4;
}

.styled_table tr.red {
    background-color: rgb(255, 128, 128);
}

.styled_table th {
    background-color: rgb(55, 187, 143);
    color: #fff;
    font-weight: bold;
    text-align: left;
}

.styled_table td {
    border-bottom: 1px solid rgb(200, 200, 200);
}

.styled_table td, .styled_table th {
    padding: 12px 17px 12px 17px;
}

.bordered_table {
    border-collapse: collapse;
    border: 1px solid rgb(176, 176, 176);
}

.bordered_table tr th{
    background-color: rgb(250,250,250);
    border-left: 1px solid rgb(230, 230, 230);
}

.bordered_table tr:hover td{
    background-color: rgb(240,240,240);
    border-left: 1px solid rgb(220, 220, 220);
}

.bordered_table tr:hover td:first-of-type {
    border-left: none;
}

.bordered_table td, .bordered_table th{
    border-bottom: 1px solid rgb(176, 176, 176);
    border-left: 1px solid rgb(240, 240, 240);
    padding-left: 10px;
    padding-right: 10px;
}

.bordered_table td:first-of-type, .bordered_table th:first-of-type {
    border-left: none;
}

.files th {
    padding: 10px 10px 10px 10px;
}

.files td {
    padding: 2px 10px 2px 10px;
    border: none;
}

.files tr td:nth-child(2), .files tr td:nth-child(3), .files tr th:nth-child(2), .files tr th:nth-child(3) {
    text-align: right;
}

.folder_end td {
    background-color: white;
}

.folder_end {
    border-top: 1px solid rgb(200, 200, 200);
}

.empty_folder {
    background-color: white !important;
}

.empty_folder td {
    padding-top: 7px;
    padding-bottom: 7px;
}
