*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
    font-size: 16px;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
    box-sizing: border-box;

}

.main-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    position: relative;
    height: auto;
}

.section-container {
    width: 100%;
    height: auto;
    position: relative;
    transition: all 0.5s linear;
    position: relative;
}

.section-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.article-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.article-list-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.article-list-header .article-list-header-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.article-list-header .article-list-header-left .article-list-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
}

.article-list-header .article-list-header-left .article-list-description {
    font-size: 18px;
    color: #555555;
    text-align: center;
}

.article-list-header .article-list-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 1;
    width: 100%;
    max-width: 600px;
}

.article-list-header .article-list-header-right .input-wrapper {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .article-list-header {
        flex-direction: column;
    }
    .article-list-header .article-list-header-right {
        width: 100%;
    }
    .article-list-header .article-list-header-right .input-wrapper {
        width: 100%;
    }
    .article-list-header .article-list-header-right .input-text {
        flex-direction: column;
    }
    .article-list-header .article-list-header-right .input-text input {
        width: 100%;
    }
    .article-list-header .article-list-header-right .input-text button {
        width: 100%;
    }
}

.input-wrapper {
    display: flex;
    flex-direction: column;
}

.input-wrapper > label {
    color: #111111;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}

.input-wrapper > label a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.input-wrapper > label a p {
    text-decoration: underline;
}

.input-wrapper > label a .icon {
    font-size: 20px;
}

.input-wrapper > label .required {
    font-weight: bold;
    color: #F50000;
}

.input-wrapper > label:has(:nth-child(2)) {
    justify-content: space-between;
}

.input-wrapper > label:has(:nth-child(2)) p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1;
}

.input-wrapper > label:has(:nth-child(2)) p img {
    width: 20px;
    height: 20px;
}

.input-wrapper > label:has(+ p) {
    margin-bottom: 0px;
}

.input-wrapper > label:has(+ p) + p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 140%;
}

@media screen and (max-width: 768px) {
    .input-wrapper > label {
        font-size: 16px;
    }
}

.input-wrapper .label-tag {
    color: #111111;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 7.5px;
    margin-bottom: 5px;
    font-size: 18px;
}

.input-wrapper .label-tag span {
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    line-height: 1;
}

.input-wrapper > p {
    font-size: 14px;
    color: #555555;
    line-height: 140%;
}

.input-wrapper > p a {
    color: #0057FF;
    text-decoration: underline;
    font-size: inherit;
}

.input-wrapper > small {
    margin-top: 10px;
    color: #555555;
    line-height: 140%;
}

.input-wrapper > small a {
    color: #0057FF;
    text-decoration: underline;
    font-size: inherit;
}

.input-wrapper > a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.input-wrapper > a span {
    text-decoration: underline;
}

.input-wrapper:not(:has(.input-text)) > p {
    margin: 0px;
    margin-top: 10px;
}

.input-wrapper:not(:has(.input-text)) > small {
    margin: 0px;
    margin-top: 10px;
}

.input-wrapper:has(.input-checkbox) > p {
    font-size: 16px;
    line-height: 1.2;
    padding-left: 25px;
}

.input-wrapper:has(.input-checkbox) > p a {
    margin-left: 25px;
}

.input-text {
    position: relative;
}

.input-text input {
    height: 40px;
    border-radius: 10px;
    border: none;
    padding: 0px 10px;
    outline: 0;
    transition: 0.2s;
    width: 100%;
    font-size: 14px;
    color: #111111;
    border: 1px solid #CCCCCC;
    background-color: #FFFFFF;
}

.input-text input:active, .input-text input:focus {
    border-color: #000000;
}

.input-text input[readonly], .input-text input[disabled] {
    background-color: #F2F2F2 !important;
}

.input-text input[readonly]::-moz-placeholder, .input-text input[disabled]::-moz-placeholder {
    color: #999999;
}

.input-text input[readonly]::placeholder, .input-text input[disabled]::placeholder {
    color: #999999;
}

.input-text input::-moz-placeholder {
    color: #999999;
    font-size: 14px;
}

.input-text input::placeholder {
    color: #999999;
    font-size: 14px;
}

.input-text input[valid=true] {
    border-color: #14A350;
}

.input-text input[valid=false] {
    border-color: #F50000;
}

.input-text:not(.inline):has(.input-button) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.input-text:not(.inline):has(.input-button) .input-button {
    width: 100%;
}

.input-text:not(.inline):has(.input-button) .btn {
    width: 100%;
}

.input-text.secondary-style input {
    background-color: var(--secondaryColor2) !important;
    color: var(--primaryColor);
}

.input-text.valid input {
    border-color: var(--successColor);
}

.input-text.invalid input {
    border-color: var(--dangerColor);
}

.input-text.inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-text.inline .btn {
    margin: 0px !important;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .input-text.inline {
        flex-direction: column;
        align-items: flex-start;
    }
    .input-text.inline .input-button {
        width: 100%;
    }
    .input-text.inline .input-button .btn {
        width: 100%;
    }
}

.input-text.right-button {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width: 768px) {
    .input-text.right-button {
        flex-direction: column;
        align-items: flex-start;
    }
    .input-text.right-button .input-button {
        width: 100%;
    }
}

.input-text .input-button {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-text .input-button .btn {
    height: 40px;
    padding: 0px 10px;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    
}

.input-text .input-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0px;
    font-size: 24px;
    color: #ffffff;
    width: 40px;
    height: 40px;
}

.input-text .input-icon .delete-input {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.input-text .input-icon .delete-input .icon {
    font-size: 12px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-text .input-icon.delete-input {
    font-size: 12px;
}

.input-text .input-icon.delete-input .icon {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-text .input-icon .icon {
    width: 20px;
    height: 20px;
    font-size: 20px;
    pointer-events: none;
    color: #000000;
}

.input-text .input-icon img {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.input-text .input-icon.icon-left {
    left: 0px;
    right: unset;
}

.input-text .input-icon.icon-right {
    right: 0px;
    left: unset;
}

.input-text:has(.input-prepend.copyright-text) input {
    padding-left: 80px;
}

.input-text .input-prepend {
    order: -1;
    min-width: 40px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 1px;
    top: 1px;
    border-radius: 10px 0px 0px 10px;
    padding: 0px 10px;
    background-color: #F2F2F2;
    color: #555555;
}

.input-text .input-prepend .input-prepend-icon {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #0B0B0B;
}

.input-text .input-prepend .input-prepend-icon .icon {
    font-size: 16px;
}

.input-text .input-prepend .input-prepend-icon img {
    width: 24px;
    height: 24px;
}

.input-text.add-padding-left input {
    padding-left: 40px;
}

.input-text.add-padding-right input {
    padding-right: 40px;
}

.input-text.domain-input input {
    padding-right: 150px;
}

.input-text.domain-input span {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999999;
    background-color: #F2F2F2;
    font-size: 14px;
    padding: 0px 10px;
    border-radius: 5px;
    border: 1px solid #F2F2F2;
    cursor: default;
}

.input-text.input-dropdown {
    position: relative;
}

.input-text.input-dropdown input {
    padding-right: 30px;
}

.input-text.input-dropdown .dropdown-arrow {
    position: absolute;
    right: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50px;
    z-index: 1;
    cursor: pointer;
}

.input-text.input-dropdown .dropdown-arrow .icon {
    font-weight: bold;
}

.input-text.input-dropdown .input-dropdown-content {
    position: absolute;
    right: 0px;
    top: calc(100% + 10px);
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    max-height: 200px;
    overflow-y: auto;
}

.input-text.input-dropdown .input-dropdown-content .countries-list .dropdown-option {
    font-size: 14px;
}

.input-text.input-dropdown .input-dropdown-content.active {
    opacity: 1;
    visibility: visible;
}

.input-text.input-dropdown .input-dropdown-content .dropdown-option {
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.input-text.input-dropdown .input-dropdown-content .dropdown-option:hover {
    background-color: #CCCCCC;
}

.table-container {
    width: 100%;
    margin-top: 40px;
    max-width: 100vw;
    overflow: auto;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0px 0px 20px 0px;
    gap: 10px;
}

.table-header .table-header-title .table-title {
    font-size: 24px;
}

@media screen and (max-width: 768px) {
    .table-header .table-header-title .table-title {
        font-size: 20px;
    }
}

.table-header .table-header-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.table-header .table-header-options .dropdown-container .dropdown-toggle {
    padding: 0px 10px;
    height: 40px;
}

.table-header .table-header-options .actions-container button,
.table-header .table-header-options .actions-container a {
    height: 40px;
    min-width: 40px;
}

.table-header .results-select-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.table-header .results-select-wrapper label {
    font-weight: 600;
}

.table-header .results-select-wrapper select {
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    padding: 10px;
    border-radius: 5px;
    position: relative;
}

@media screen and (max-width: 576px) {
    .table-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 20px;
    }
}

.table-filter-search {
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #CCCCCC;
}

.table-filter-search .filter-search-input {
    width: 100%;
}

.table-filter-search .filter-search-input input {
    height: 40px;
    width: 100%;
    padding: 10px;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    min-width: 100px;
    outline: none;
}

.table-filter-search .filter-search-input input::placeholder {
    font-size: 14px;
}


.table-filter-search .filter-search-options{
    display: flexfilter-search-input;
}

.table-filter-search .filter-search-options .search-type input:checked + label {
    background-color: rgba(255, 255, 0, 0.1);
}

.table-filter-search .filter-search-options .search-type label {
    background-color: #ffffff;
    padding: 10px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-left: 1px solid #CCCCCC;
}

.table-filter-search .filter-search-options .search-type label .icon {
    color: #111111;
}

.table-filter-search .filter-search-options button.search-type,
.table-filter-search .filter-search-options a.search-type {
    background-color: #ffffff;
    padding: 10px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-left: 1px solid #CCCCCC;
    padding: 0px;
}

.table-filter-search .filter-search-options button.search-type .icon,
.table-filter-search .filter-search-options a.search-type .icon {
    color: #111111;
}

.table-filter-search .input-text input {
    border: none;
}

@media screen and (max-width: 576px) {
    .table-filter-search {
        flex: 1;
    }
}

.table-content {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.table-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background-color: #F9FAFB;
}

.table-empty .table-empty-text {
    font-size: 14px;
    color: #555555;
}

.table-content .table-head {
    display: table-row;
    background-color: #F9FAFB;
    height: 40px;
}

.table-content .table-head .cell {
    font-weight: bold;
    padding: 10px;
    line-height: 1;
    position: relative;
    font-size: 16px;
    display: table-cell;
    vertical-align: middle;
    cursor: pointer;
}

.table-content .table-head .cell:first-child {
    border-top-left-radius: 10px;
}

.table-content .table-head .cell:last-child {
    border-top-right-radius: 10px;
}

.table-content .table-head .cell.nowrap {
    white-space: nowrap;
}

.table-content .table-head.table-sort .cell {
    padding-left: 30px;
    cursor: pointer;
}

.table-content .table-head.table-sort .cell::after {
    content: "\2B81";
    position: absolute;
    left: 10px;
    top: 12px;
    color: rgba(0, 0, 0, 0.25);
}

.table-content .table-head.table-sort .cell:not([data-title]) {
    padding-left: 10px;
}

.table-content .table-head.table-sort .cell:not([data-title])::after {
    display: none;
}

.table-content .table-head.table-sort .cell.wd-full {
    width: 100%;
}

.table-content .table-head.table-sort .cell.wd-100 {
    width: 100px;
}

.table-content .table-head.table-sort .cell.wd-150 {
    width: 150px;
}

.table-content .table-head.table-sort .cell.wd-200 {
    width: 200px;
}

.table-content .table-head.table-sort .cell.wd-250 {
    width: 250px;
}

.table-content .table-head.table-sort .cell.wd-300 {
    width: 300px;
}

.table-content .table-head.table-sort .cell.wd-400 {
    width: 400px;
}

.table-content .table-head.table-sort .cell.wd-500 {
    width: 500px;
}

.table-content .table-head.table-sort .cell.wd-600 {
    width: 600px;
}

.table-content .table-head.table-sort .cell.wd-700 {
    width: 700px;
}

.table-content .table-head.table-sort .cell.wd-800 {
    width: 800px;
}

.table-content .table-head.table-sort .cell.wd-900 {
    width: 900px;
}

.table-content .table-row {
    display: table-row;
}

.table-content .table-row:nth-of-type(odd) {
    background-color: #F9FAFB;
}

.table-content .table-row .cell {
    display: table-cell;
    padding: 10px;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 500;
}

.table-content .table-row .cell.clean {
    padding: 10px !important;       
}

.table-content .table-row .cell .icon {
    font-size: 14px;
}

.table-content .table-row .cell a.highligh {
    position: relative;
    word-break: break-all;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.table-content .table-row .cell a.highligh::before {
    content: "\ea3d";
    font-family: "Racoon-Icons";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    left: 10px;
    color: #0B0B0B;
    display: none;
}

.table-content .table-row .cell a.highligh .mark,
.table-content .table-row .cell a.highligh span {
    background-color: #ff0;
    line-height: 1;
}

.table-content .table-row .cell a.highligh:hover {
    text-decoration: underline !important;
    color: #0B0B0B;
}

.table-content .table-row .cell a.highligh:hover span,
.table-content .table-row .cell a.highligh:hover p {
    color: #0B0B0B;
}

@media screen and (max-width: 768px) {
    .table-content .table-row .cell a.highligh {
        padding-left: 20px;
    }
    .table-content .table-row .cell a.highligh::before {
        display: flex;
    }
}

.table-content .table-row .cell a:not(.highligh), .table-content .table-row .cell p, .table-content .table-row .cell .table-size {
    font-size: 14px;
}

.table-content .table-row .cell .table-category {
    padding: 5px;
    border: 1px solid #9747FF;
    border-radius: 5px;
    background-color: #ffffff;
    transition: 0.2s;
    line-height: 1;
}

.table-content .table-row .cell .table-category:hover {
    border-color: #0B0B0B;
}

.table-content .table-row .cell .table-type {
    display: flex;
    gap: 7.5px;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-weight: 500;
}

.table-content .table-row .cell .table-type .icon {
    font-size: 20px;
    color: #0B0B0B;
}

.table-content .table-row .cell .table-size {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    min-height: 24px;
}

.table-content .table-row .cell .table-text {
    font-weight: 500;
}

.table-content .table-row .cell .table-text.nowrap {
    white-space: nowrap;
}

.table-content .table-row .cell .status-info {
    border-radius: 5px;
    padding: 0px 10px;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
}

@media screen and (max-width: 768px) {
    .table-content {
        display: flex;
        flex-direction: column;
    }
    .table-content .table-head {
        display: none;
    }
    .table-content:not(.file-style) .table-row {
        display: flex;
        flex-direction: column;
        border: 1px solid #CCCCCC;
    }
    .table-content:not(.file-style) .table-row .cell {
        border: none;
        position: relative;
        padding-left: 120px;
        white-space: normal;
        text-align: left;
    }
    .table-content:not(.file-style) .table-row .cell:not(:last-child) {
        border-bottom: 1px solid #eee;
    }
    .table-content:not(.file-style) .table-row .cell:before {
        content: attr(data-title);
        position: absolute;
        top: 10px;
        left: 10px;
        width: 100px;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }
}

.table-content.individual-style {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #CCCCCC;
}

.table-content.individual-style .table-row {
    border: none;
}

.table-content.individual-style .table-row:not(:last-child) {
    border-bottom: 1px solid #CCCCCC;
}

.table-content.individual-style .table-row .cell {
    padding-left: 230px;
}

.table-content.individual-style .table-row .cell p {
    line-height: 1;
}

h1,h2,h3,h4,h5,h6,p	 {
    margin: 0px;
}