/* Font Awesome Brands fix - set correct font-family for brand icons */
.fab,
.fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* ========================================
   Upload Interface Animations & Enhancements
   ======================================== */

/* CSS Custom Properties for Upload Animations */
:root {
    --transition-fast: 100ms ease-out;
    --transition-normal: 200ms ease-out;
    --transition-slow: 300ms ease-out;
    --drop-zone-highlight: rgba(var(--primaryColorRGB, 99, 102, 241), 0.05);
    --drop-zone-border: var(--primaryColor, #6366f1);
    --success-color: #22c55e;
    --error-color: #ef4444;
}

/* Keyframe Animations */

/* Pulse animation for upload icon (2s cycle) */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Scale-bounce for success checkmark (200ms) */
@keyframes scale-bounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Shake animation for errors (300ms) */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

/* Fade-in animation (150ms) */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress bar animation */
@keyframes progress-bar {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 0;
    }
}

/* Rotating spinner for upload */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Accessibility - Focus States */
.uploadbox-drag:focus {
    outline: 2px solid var(--primaryColor);
    outline-offset: 4px;
}

.uploadbox-drag:focus:not(:focus-visible) {
    outline: none;
}

.uploadbox-drag:focus-visible {
    outline: 2px solid var(--primaryColor);
    outline-offset: 4px;
}

/* Upload button disabled state */
.upload-files-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Terms checkbox styling */
#termsAcceptCheckbox {
    /* Remove default appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* Custom styling */
    cursor: pointer;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    background-color: #fff;
    margin-top: 0.2rem;
    margin-right: 0;

    /* Positioning */
    position: relative;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;

    /* Transitions */
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

#termsAcceptCheckbox:checked {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 75% 75%;
}

#termsAcceptCheckbox:focus {
    outline: none;
    border-color: var(--primaryColor);
    box-shadow: 0 0 0 3px rgba(var(--primaryColorRGB, 99, 102, 241), 0.2);
}

#termsAcceptCheckbox:hover:not(:checked) {
    border-color: var(--primaryColor);
}

.form-check-label {
    cursor: pointer;
    user-select: none;
    padding-left: 8px;
    line-height: 1.5;
    display: inline-block;
    margin-bottom: 0;
}

.form-check {
    display: flex;
    align-items: flex-start;
    padding-left: 0;
    margin-bottom: 0;
}

/* ======================================== */

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 65px;
    font-family: "-apple-system", "BlinkMacSystemFont", "San Francisco", "Roboto", "Helvetica Neue", "Almarai", "sans-serif";
    color: #333;
    background-color: var(--bgColor);
    min-height: 100vh;
}

body>* {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.4;
}

 ::-moz-selection {
    background-color: var(--primaryColor);
    color: #fff;
}

 ::selection {
    background-color: var(--primaryColor);
    color: #fff;
}

.text-muted {
    color: #888 !important;
}

.red {
    color: red;
}

.text-primary {
    color: var(--primaryColor) !important;
}

.mt-40 {
    margin-top: 40px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-80 {
    margin-bottom: 80px;
}


/* Start Custom scrollbar */

 ::-webkit-scrollbar {
    width: 10px;
}

 ::-webkit-scrollbar-track {
    background: #eee;
}

 ::-webkit-scrollbar-thumb {
    background: #d3d3d6;
}

 ::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}


/* End Custom scrollbar */

.simplebar-content-wrapper {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.text-normal {
    -o-text-overflow: clip !important;
    text-overflow: clip !important;
    -webkit-line-clamp: unset !important;
}

p {
    margin-bottom: 0;
}

a {
    color: var(--primaryColor);
    text-decoration: none;
}

a:hover {
    color: var(--primaryColor);
    opacity: .9;
}

.link {
    cursor: pointer;
}

.bg-light {
    background-color: var(--bgColor) !important;
}

.logo {
    display: inline-block;
    height: 35px;
}

.logo img {
    height: 100%;
}

.icon-color {
    fill: var(--primaryColor);
}

.breadcrumb {
    --bs-breadcrumb-divider: '/';
    margin-bottom: 0;
}

.breadcrumb-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: capitalize;
}

.breadcrumb-item.active {
    color: #888;
}

.breadcrumb-item.active::before {
    color: #999;
}

.file-password {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.file-password .file-password-img {
    margin-bottom: 30px;
}

.file-password .file-password-img svg {
    width: 220px;
    height: 160px;
}

.file-password .file-password-form {
    width: 100%;
}

.file-password .file-password-form .form-label {
    text-align: center;
    width: 100%;
}

.stats .stats-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.stats .stats-info .stats-meta {
    margin-right: 16px;
}

.stats .stats-info .stats-title {
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primaryColor);
}

.stats .stats-info .stats-text {
    margin-top: 16px;
    font-size: 40px;
    line-height: 40px;
    color: #aaa;
}

.stats .stats-info .stats-icon i {
    font-size: 60px;
    color: var(--primaryColor);
}

.space .space-text {
    color: #888;
    margin-bottom: 5px;
    font-size: 22px;
}

.space .space-progress {
    height: 18px;
    background-color: #ddd;
    border-radius: 5px;
}

.space .space-progress .space-progress-inner {
    height: 100%;
    background-color: var(--primaryColor);
    border-radius: 5px;
}

.dash-table .table-header {
    margin-bottom: 15px;
}

.dash-table .table-body table {
    width: 100%;
}

.dash-table .table-body table thead th {
    padding: 15px 10px;
    font-weight: bold;
    border-bottom: 1px solid #f4f4f4;
    color: #666;
}

.dash-table .table-body table thead th:first-child {
    padding-left: 25px;
}

.dash-table .table-body table thead th:last-child {
    letter-spacing: 0;
    padding-right: 25px;
}

@media (max-width: 1399.98px) {
    .dash-table .table-body table thead th:nth-child(5) {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .dash-table .table-body table thead th:nth-child(6) {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .dash-table .table-body table thead th:nth-child(4) {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .dash-table .table-body table thead th:nth-child(7) {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .dash-table .table-body table thead th:not(.dash-table .table-body table thead th.table-mob) {
        display: none;
    }
}

.dash-table .table-body table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.dash-table .table-body table tbody tr:not(:last-child) {
    border-bottom: 1px solid #f4f4f4;
}

.dash-table .table-body table tbody td {
    padding: 15px 10px;
    font-weight: 300;
}

.dash-table .table-body table tbody td:first-child {
    padding-left: 25px;
}

.dash-table .table-body table tbody td:last-child {
    padding-right: 25px;
}

@media (max-width: 499.98px) {
    .dash-table .table-body table tbody td.table-name {
        max-width: calc(100vw - 200px);
    }
}

@media (max-width: 1399.98px) {
    .dash-table .table-body table tbody td:nth-child(5) {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .dash-table .table-body table tbody td:nth-child(6) {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .dash-table .table-body table tbody td:nth-child(4) {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .dash-table .table-body table tbody td:nth-child(7) {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .dash-table .table-body table tbody td:not(.dash-table .table-body table tbody td.table-mob) {
        display: none;
    }
}

.dash-table .table-search .form-search input {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-color: transparent;
    border-bottom-color: #eee;
}

.dash-table .table-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    margin-top: 20px;
}

.file-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 499.98px) {
    .file-name {
        display: block;
    }
}

.file-name .file-name-icon {
    margin-right: 10px;
    width: 45px;
    height: 45px;
}

@media (max-width: 499.98px) {
    .file-name .file-name-icon {
        display: none;
    }
}

.file-name .file-name-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.file-name .file-name-title {
    margin-bottom: 0;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}

@media (max-width: 499.98px) {
    .file-name .file-name-title {
        max-width: 100%;
    }
}

.file-name .file-name-text {
    color: #888;
    font-size: 15px;
    max-width: 200px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 499.98px) {
    .file-name .file-name-text {
        max-width: 100%;
    }
}

.settingsbox .card-v {
    padding: 0;
    height: 100%;
}

.settingsbox .settings-user-img {
    position: relative;
    width: 100px;
    height: 100px;
}

.settingsbox .settings-user-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.settingsbox .settings-user-img .settings-user-img-change {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-color: rgba(20, 20, 20, 0.15);
}

.settingsbox .settings-user-img .settings-user-img-change i {
    cursor: pointer;
    color: #666;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.settingsbox .settings-user-img .settings-user-img-change i:hover {
    opacity: .7;
}

.settingsbox .settings-side .settings-user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
}

.settingsbox .settings-side .settings-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
}

.settingsbox .settings-side .settings-links .settings-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #7d7d7e;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.settingsbox .settings-side .settings-links .settings-link:hover,
.settingsbox .settings-side .settings-links .settings-link.active {
    color: #555;
    background-color: #e8eaec;
}

.settingsbox .settings-side .settings-links .settings-link i {
    width: 35px;
}

.settingsbox .settings-form .settings-form-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

.settingsbox .settings-form .settings-form-body {
    padding: 20px 30px;
}

.btn {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 5px;
}

.btn.btn-md {
    padding: 10px 20px;
}

.btn.btn-lg {
    padding: 12px 20px;
    font-size: 16px;
}

.btn[class*="-icon"] {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn[class*="-icon"] i {
    margin-left: 10px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.btn[class*="-icon"]:hover i {
    -webkit-transform: translate(10px);
    -ms-transform: translate(10px);
    transform: translate(10px);
}

.btn.btn-primary-icon {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    color: #fff;
}

.btn.btn-secondary-icon {
    background-color: #fff;
    border-color: #fff;
    color: var(--primaryColor);
}

.btn.btn-primary {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

.btn.btn-gradient {
    color: #000;
    background: linear-gradient( 180deg, #fff, #f9fafb);
    border-color: #c4cdd5;
    box-shadow: 0 1px 0 0 rgb(22 29 37 / 5%);
}

.btn.btn-gradient:hover {
    background: linear-gradient( 180deg, #f9fafb, #f4f6f8);
    border-color: #c4cdd5;
}

.btn.btn-light {
    background-color: #fff;
    border-color: #fff;
    color: var(--primaryColor);
}

.btn.btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.btn.btn-outline-light:hover {
    background-color: #fff;
    color: var(--primaryColor);
}

.btn:hover {
    opacity: .9;
}

.btn.btn-outline-primary {
    color: var(--primaryColor);
    border-color: var(--primaryColor);
}

.btn.btn-outline-primary:hover {
    background-color: var(--primaryColor);
    color: #fff;
    opacity: 1;
}

.btn-close {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.btn-close:active,
.btn-close:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.social-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.social-btn i {
    font-size: 18px;
}

/* Social network brand colors - Regional platforms */

.social-btn.social-vk {
    background-color: #0077FF; /* VKontakte official blue */
}

.social-btn.social-telegram {
    background-color: #0088cc; /* Telegram official blue */
}

.social-btn.social-whatsapp {
    background-color: #25d366; /* WhatsApp official green */
}

.social-btn.social-ok {
    background-color: #EE8208; /* Odnoklassniki official orange */
}

.social-btn.social-link {
    background-color: #8C95A0;
}

.social-btn:hover {
    opacity: .8;
    color: #fff;
}

.input-group button {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: -5px;
    margin-left: -5px;
}

.share.v2 {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.share.v2 .social-btn {
    border-radius: 5px;
    width: 100%;
    height: 50px;
}

.share .social-btn {
    margin: 5px;
}

.form-control {
    border-color: #ddd;
}

.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--primaryColor);
}

.form-control.form-control-md {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.form-control.form-control-lg {
    padding-top: 12px;
    padding-bottom: 12px;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #eee;
}

.form-select {
    border-color: #ddd;
}

.form-select:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--primaryColor);
}

.form-select.form-select-md {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.form-select.form-select-lg {
    padding-top: 12px;
    padding-bottom: 12px;
}

.form-select:disabled,
.form-select[readonly] {
    background-color: #eee;
}

.form-search {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-search input {
    padding: 15px 65px 15px 25px;
    border: 1px solid #ecf2f6;
    border-radius: 10px;
    width: 100%;
}

.form-search input:focus {
    outline: 0;
    border-color: var(--primaryColor);
}

.form-search button {
    position: absolute;
    right: 0;
    outline: 0;
    border: 0;
    background: transparent;
    color: #ccc;
    width: 65px;
    height: 100%;
    text-align: center;
}

.form-check .form-check-input {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.form-check .form-check-input:checked {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

.form-check .form-check-input:focus {
    border-color: var(--primaryColor);
}

.form-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.form-number .form-select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    height: auto;
}

.form-number .form-select:focus {
    border-color: #ced4da;
}

.form-number .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.form-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.form-button .form-control {
    padding-right: 50px;
}

.form-button button {
    position: absolute;
    top: 0;
    right: 0;
    outline: 0;
    border: 0;
    background: transparent;
    height: 100%;
    width: 50px;
    color: var(--primaryColor);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.form-button button:hover {
    opacity: .9;
}

.input-icon {
    position: relative;
}

.input-icon .form-control {
    border-radius: .25rem !important;
    padding-right: 50px;
}

.input-icon button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    z-index: 5;
    color: #999;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.input-icon button:hover {
    opacity: .8;
}

.textarea-btn {
    position: relative;
    width: 100%;
}

.textarea-btn .btn {
    visibility: hidden;
    position: absolute;
    top: 8px;
    right: 8px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    opacity: 0;
    font-size: 12px;
    padding: 0.15rem 0.65rem;
    border-radius: 200px;
    color: #fff;
}

.textarea-btn .btn:hover {
    opacity: .8;
}

.textarea-btn:hover button {
    visibility: visible;
    opacity: 1;
}

.header .wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: calc(100vh - 65px);
    background-color: var(--primaryColor);
    padding-top: 80px;
    padding-bottom: 80px;
}

.header .wrapper.wrapper-page {
    min-height: 0;
    height: 200px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.header .wrapper.wrapper-page .page-title {
    text-align: center;
}

.header .wrapper.wrapper-page .breadcrumb-item::before {
    color: #fff;
    font-size: 14px;
}

.header .wrapper.wrapper-page .breadcrumb-item a {
    color: #fff;
}

.header .wrapper.wrapper-page .breadcrumb-item.active {
    color: #fff;
}

.header .wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: unset;
    background-image: url('../../images/home-pattern.png');
    background-size: 5%;
    opacity: .05;
    background-position: center center;
}

.header .wrapper .wrapper-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    color: #fff;
}

.header .wrapper .wrapper-content .file-upload-icon {
    margin-bottom: 30px;
    cursor: pointer;
    -webkit-animation: bounce 2.5s infinite;
    animation: bounce 2.5s infinite;
    transition: transform var(--transition-normal);
    transform: translateZ(0); /* GPU acceleration */
    will-change: transform;
}

.header .wrapper .wrapper-content .file-upload-icon:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    transform: scale(1.1);
}

.header .wrapper .wrapper-content .file-upload-icon svg {
    stroke: #fff;
    border-radius: 50%;
    height: 120px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: filter var(--transition-normal);
}

.header .wrapper .wrapper-content .file-upload-icon:hover svg {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.nav-bar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    z-index: 1030;
}

.nav-bar .nav-bar-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 65px;
}

.nav-bar .nav-bar-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1199.98px) {
    .nav-bar .nav-bar-actions {
        margin-left: auto;
    }
}

.nav-bar .nav-bar-menu-btn {
    display: none;
    opacity: .8;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}

.nav-bar .nav-bar-menu-btn:hover {
    opacity: .5;
}

@media (max-width: 1199.98px) {
    .nav-bar .nav-bar-menu-btn {
        display: block;
    }
}

.nav-bar .nav-bar-menu {
    margin-left: auto;
}

@media (max-width: 1199.98px) {
    .nav-bar .nav-bar-menu {
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        margin-left: 0;
        opacity: 0;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        z-index: 1030;
    }
    .nav-bar .nav-bar-menu.show {
        visibility: visible;
        opacity: 1;
    }
    .nav-bar .nav-bar-menu.show .nav-bar-links {
        right: 0;
    }
}

.nav-bar .nav-bar-menu .overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 1199.98px) {
    .nav-bar .nav-bar-menu .overlay {
        display: block;
    }
}

.nav-bar .nav-bar-menu .nav-bar-menu-header {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.nav-bar .nav-bar-menu .nav-bar-menu-header .nav-bar-menu-close {
    cursor: pointer;
    font-size: 18px;
}

@media (max-width: 1199.98px) {
    .nav-bar .nav-bar-menu .nav-bar-menu-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.nav-bar .nav-bar-menu .nav-bar-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1199.98px) {
    .nav-bar .nav-bar-menu .nav-bar-links {
        top: 0;
        right: -300px;
        height: 100%;
        width: 300px;
        position: absolute;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        background-color: #fff;
        padding: 15px;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        overflow: hidden auto;
    }
}

.nav-bar .nav-bar-menu .nav-bar-links .link {
    color: #222;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.nav-bar .nav-bar-menu .nav-bar-links .link:not(:last-child) {
    margin-right: 20px;
}

@media (max-width: 1199.98px) {
    .nav-bar .nav-bar-menu .nav-bar-links .link:not(:last-child) {
        margin-right: 0;
    }
}

@media (max-width: 1199.98px) {
    .nav-bar .nav-bar-menu .nav-bar-links .link {
        width: 100%;
        padding: 10px 5px;
    }
}

.nav-bar .nav-bar-menu .nav-bar-links .link:hover {
    color: var(--primaryColor);
}

.nav-bar .nav-bar-menu .nav-bar-links .link-btn:not(:last-child) {
    margin-right: 12px;
}

@media (max-width: 1199.98px) {
    .nav-bar .nav-bar-menu .nav-bar-links .link-btn:not(:last-child) {
        margin-right: 0;
    }
}

@media (max-width: 1199.98px) {
    .nav-bar .nav-bar-menu .nav-bar-links .link-btn .btn {
        width: 100%;
        padding-top: 8.5px;
        padding-bottom: 8.5px;
        margin-top: 10px;
    }
}

.nav-bar .nav-bar-menu .nav-bar-links .drop-down:not(:last-child) {
    margin-right: 20px;
}

@media (max-width: 1199.98px) {
    .nav-bar .nav-bar-menu .nav-bar-links .drop-down:not(:last-child) {
        margin-right: 0;
    }
}

@media (max-width: 1199.98px) {
    .nav-bar .nav-bar-menu .nav-bar-links .drop-down .drop-down-menu {
        width: 100%;
        top: 40px;
    }
}

@media (max-width: 1199.98px) {
    .nav-bar .nav-bar-menu .nav-bar-links .drop-down {
        width: 100%;
        padding: 10px 5px;
    }
}

.nav-bar.v2 {
    background-color: var(--primaryColor);
}

.nav-bar.v2 .drop-down .drop-down-btn {
    color: #fff;
}

.nav-bar.v2 .nav-bar-menu-btn {
    color: #fff;
}

.nav-bar.v2 .nav-bar-menu .nav-bar-links .link {
    color: #fff;
}

@media (max-width: 1199.98px) {
    .nav-bar.v2 .nav-bar-menu .nav-bar-links .link {
        color: #222;
    }
    .nav-bar.v2 .nav-bar-menu .nav-bar-links .link:hover {
        color: var(--primaryColor);
    }
}

.nav-bar.v2 .nav-bar-menu .nav-bar-links .drop-down .drop-down-btn {
    color: #fff;
}

@media (max-width: 1199.98px) {
    .nav-bar.v2 .nav-bar-menu .nav-bar-links .drop-down .drop-down-btn {
        color: #222;
    }
    .nav-bar.v2 .nav-bar-menu .nav-bar-links .drop-down .drop-down-btn:hover {
        color: var(--primaryColor);
    }
}

@media (max-width: 1199.98px) {
    .nav-bar.v2 .btn.btn-light {
        background-color: var(--primaryColor);
        color: #fff;
    }
}

@media (max-width: 1199.98px) {
    .nav-bar.v2 .btn.btn-outline-light {
        border-color: var(--primaryColor);
        color: var(--primaryColor);
    }
    .nav-bar.v2 .btn.btn-outline-light:hover {
        background-color: var(--primaryColor);
        color: #fff;
    }
}

.drop-down {
    position: relative;
}

.drop-down .drop-down-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    color: #222;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.drop-down .drop-down-btn:hover {
    color: var(--primaryColor);
    opacity: .9;
}

.drop-down .drop-down-menu {
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    border-radius: 5px;
    top: 35px;
    right: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: perspective(200px) translateZ(-200px);
    transform: perspective(200px) translateZ(-200px);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.drop-down .drop-down-menu .drop-down-divider {
    border-top: 1px solid #eee;
}

.drop-down .drop-down-menu .drop-down-item {
    display: block;
    padding: 8px 10px;
    color: #555;
}

.drop-down .drop-down-menu .drop-down-item i {
    width: 25px;
}

.drop-down .drop-down-menu .drop-down-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.drop-down .drop-down-menu .drop-down-item:last-child {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.drop-down .drop-down-menu .drop-down-item.active {
    background-color: #fff;
    color: var(--primaryColor) !important;
}

.drop-down .drop-down-menu .drop-down-item:hover {
    background-color: var(--primaryColor);
    color: #fff !important;
}

.drop-down.active {
    z-index: 1000;
}

.drop-down.active .drop-down-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: perspective(200px) translateZ(0);
    transform: perspective(200px) translateZ(0);
}

.user-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1199.98px) {
    .user-menu {
        margin-right: 16px;
    }
}

.user-menu .user-img {
    margin-right: 10px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

@media (max-width: 575.98px) {
    .user-menu .user-img {
        margin-right: 0;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 575.98px) {
    .user-menu .user-name,
    .user-menu i {
        display: none;
    }
}

.user-menu .drop-down-menu {
    top: 40px;
}

.section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section.v2 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section.v3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.section.v3>* {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.section.v3 [class*="container"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.section.v3 [class*="container"]>* {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.section.v3 .section-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.section.v3 .section-inner>* {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.section.v3 .section-inner .section-body {
    margin-top: auto;
    margin-bottom: auto;
}

.section .section-inner .section-header {
    margin-bottom: 45px;
}

.section .section-inner .section-header .section-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--primaryColor);
    margin-bottom: 25px;
}

.section .section-inner .section-header .section-title h5 {
    margin-bottom: 0;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.section .section-inner .section-header .section-title::before,
.section .section-inner .section-header .section-title::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primaryColor);
}

.section .section-inner .section-header .section-title::before {
    margin-right: 15px;
}

.section .section-inner .section-header .section-title::after {
    margin-left: 10px;
}

.section .section-inner .section-header .section-text {
    font-size: 18px;
    font-weight: 300;
    color: #666;
}

.section .section-inner .section-header .section-text p {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.faqs,
.contact-us {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.card-v {
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-v.v2 {
    padding: 21px;
}

.card-v.v2 .card-v-title {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.card-v.v3 {
    padding: 20px;
}

.card-v .card-v-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--bgColor);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 16px;
    margin-right: auto;
    margin-left: auto;
}

.card-v .card-v-icon svg,
.card-v .card-v-icon img {
    width: 40px;
}

.card-v .card-v-title {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 12px;
}

.card-v .card-v-text {
    font-weight: 300;
    color: #888;
}

.card-v .card-v-header {
    padding: 20px;
}

.card-v .card-v-body {
    padding: 20px;
}

.blog-post {
    background-color: #fff;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 10px;
}

.blog-post .blog-post-img {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-post .blog-post-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 25px;
}

.blog-post .blog-post-cate {
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 5px 15px;
    font-size: 14px;
    text-transform: uppercase;
    background-color: var(--primaryColor);
    border-radius: 200px;
    margin-bottom: 16px;
    color: #fff;
    opacity: 1;
}

.blog-post .blog-post-title {
    font-weight: 400;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}

.blog-post .blog-post-title h6 {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.4;
}

.blog-post .blog-post-text {
    color: #888;
    font-weight: 300;
    font-size: 15px;
}

.blog-post .blog-post-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 25px 25px;
}

.blog-post .blog-post-user-img {
    margin-right: 10px;
}

.blog-post .blog-post-user-img img {
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.blog-post .blog-post-user-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 15px;
}

.blog-post .blog-post-user-name {
    font-weight: 500;
    color: #333;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.blog-post .blog-post-time {
    color: #888;
    font-size: 14px;
    font-weight: 300;
}

.posts .post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.posts .post:not(:last-child) {
    margin-bottom: 16px;
}

.posts .post .post-img {
    border-radius: 10px;
    margin-right: 10px;
    width: 70px;
    height: 70px;
    -o-object-fit: cover;
    object-fit: cover;
}

.posts .post .post-info .post-title {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}

.post-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.post-meta .post-meta-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #888;
    font-size: 14px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.post-meta .post-meta-item:not(:last-child) {
    margin-right: 10px;
}

.post-meta .post-meta-item:not(:last-child)::after {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #999;
    margin-left: 10px;
    border-radius: 50%;
}

.post-meta .post-meta-item i {
    margin-right: 5px;
}

.post-content p {
    margin-bottom: 1rem;
}

.accordion-custom .accordion-item {
    background: transparent;
    border: 1px solid transparent;
}

.accordion-custom .accordion-item:not(:last-child) {
    margin-bottom: 16px;
}

.accordion-custom:first-of-type .accordion-button.collapsed,
.accordion-custom:last-of-type .accordion-button.collapsed {
    border-radius: 10px;
}

.accordion-custom .accordion-button {
    border-radius: 200px;
    border: 1px solid #eee;
}

.accordion-custom .accordion-button:not(.collapsed) {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
    color: #333;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.accordion-custom .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion-custom .accordion-body {
    border: 1px solid #eee;
    border-top: 0;
    background-color: #fff;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.footer {
    background-color: var(--bgColor);
    padding: 30px 0;
    margin-top: auto;
    border-top: 1px solid #eee;
}

.footer .footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer .footer-links .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
}

.footer .footer-links .link:not(:last-child) {
    margin-right: 8px;
}

.footer .footer-links .link:not(:last-child)::after {
    content: '';
    width: 7px;
    height: 7px;
    background-color: var(--secondaryColor);
    opacity: .6;
    border-radius: 50%;
    margin-left: 8px;
}

.footer .footer-links .link a {
    color: var(--primaryColor);
}

.footer .footer-copyright {
    font-size: 14px;
    color: #777;
}

.uploadbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1030;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    opacity: 0;
}

.uploadbox input,
.uploadbox select,
.uploadbox textarea {
    background-color: #eee !important;
    border-color: #eaeaea;
}

.uploadbox input:focus,
.uploadbox select:focus,
.uploadbox textarea:focus {
    border-color: var(--primaryColor);
}

.uploadbox.active {
    visibility: visible;
    opacity: 1;
}

.uploadbox.active .uploadbox-content {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.uploadbox .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.45);
}

.uploadbox .uploadbox-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: auto;
    max-height: 100%;
    background-color: #fff;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

@media (max-width: 767.98px) {
    .uploadbox .uploadbox-content {
        height: 100%;
    }
}

.uploadbox .uploadbox-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.uploadbox .uploadbox-header .upload-more-btn {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.uploadbox .uploadbox-header .upload-more-btn.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.uploadbox .uploadbox-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media (max-width: 1199.98px) {
    .uploadbox .uploadbox-body {
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        overflow-x: hidden;
    }
}

.uploadbox .uploadbox-body .uploadbox-body-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font: 14px;
}

@media (max-width: 499.98px) {
    .uploadbox .uploadbox-body .uploadbox-body-header {
        font-size: 12px;
    }
}

.uploadbox .uploadbox-body .uploadbox-body-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding-top: 60px;
    padding-bottom: 80px;
    min-height: 400px;
    cursor: pointer;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: all var(--transition-normal);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 100%);
    transform: translateZ(0); /* GPU acceleration */
}

.uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag:hover {
    transform: scale(1.01);
    border-color: var(--drop-zone-border);
    border-style: solid;
    background: var(--drop-zone-highlight);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag.dz-drag-hover,
.uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag.dragover {
    transform: scale(1.03);
    border: 3px solid var(--drop-zone-border);
    background: var(--drop-zone-highlight);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag.inactive {
    display: none;
}

.uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    transition: transform var(--transition-normal);
}

.uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag:hover .uploadbox-drag-inner {
    transform: translateY(-2px);
}

.uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag-inner i {
    font-size: 100px;
    color: var(--primaryColor);
    margin-bottom: 15px;
    animation: pulse 2s infinite;
    transform: translateZ(0); /* GPU acceleration */
}

.uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag:hover .uploadbox-drag-inner i {
    animation-play-state: paused;
    transform: scale(1.05);
}

.uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-wrapper {
    display: none;
    padding-top: 20px;
    padding-bottom: 20px;
}

.uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-wrapper .uploadbox-wrapper-form {
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
}

.uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-wrapper.active {
    display: block;
}

.uploadbox .uploadbox-body .uploadbox-complete {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
}

.uploadbox .uploadbox-body .uploadbox-complete .uploadbox-complete-icon {
    font-size: 28px;
    color: #FFF;
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background-color: #27ae61;
    border-radius: 50%;
}

.uploadbox .uploadbox-body .uploadbox-complete .uploadbox-complete-icon i {
    font-size: 50px;
}

.uploadbox .uploadbox-body .uploadbox-complete .uploadbox-complete-tilte {
    text-align: center;
    margin-bottom: 10px;
}

.uploadbox .uploadbox-body .uploadbox-complete .uploadbox-complete-text {
    text-align: center;
    margin-bottom: 20px;
}

.uploadbox .uploadbox-body .uploadbox-complete-files {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.uploadbox .uploadbox-body .uploadbox-complete-files .uploadbox-complete-file {
    margin-top: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
    margin-left: 5px;
    width: 110px;
    height: 110px;
}

.uploadbox .uploadbox-body .uploadbox-complete-files .uploadbox-complete-file img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.uploadbox .uploadbox-body .uploadbox-complete-share {
    width: 100%;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .uploadbox .uploadbox-body .uploadbox-complete-share .uploadbox-complete-share-select .form-select {
        width: 50%;
    }
}

.uploadbox .uploadbox-body .uploadbox-complete-share .uploadbox-complete-share-inputs {
    position: relative;
    margin-top: 10px;
}

.uploadbox .uploadbox-body .uploadbox-complete-share .uploadbox-complete-share-inputs .uploadbox-complete-share-input {
    display: none;
}

.uploadbox .uploadbox-body .uploadbox-complete-share .uploadbox-complete-share-inputs .uploadbox-complete-share-input.active {
    display: block;
}

.uploadbox .uploadbox-body .uploadbox-complete-share .uploadbox-complete-share-inputs textarea {
    height: 100px;
    padding-right: 90px;
}

.uploadbox .uploadbox-body .uploadbox-complete-share .uploadbox-complete-share-inputs button {
    visibility: hidden;
    position: absolute;
    top: 10px;
    right: 10px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    opacity: 0;
}

.uploadbox .uploadbox-body .uploadbox-complete-share .uploadbox-complete-share-inputs:hover button {
    visibility: visible;
    opacity: 1;
}

.dropzone {
    min-height: 0;
    padding: 0;
    border: 0;
    pointer-events: all;
}

.dropzone .dz-default {
    display: none;
}

.dropzone .dz-preview .dz-preview-container {
    position: relative;
    display: block;
    min-height: 0;
    padding: 70px 25px;
    border-radius: 8px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border: 2px solid transparent;
    height: 100%;
    animation: fadeIn 150ms ease-out;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    transform: translateZ(0); /* GPU acceleration */
}

.dropzone .dz-preview .dz-preview-container:hover {
    transform: scale(1.02);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.dropzone .dz-preview .dz-preview-container .dz-actions {
    position: absolute;
    width: 100%;
    top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    left: 0;
}

.dropzone .dz-preview .dz-preview-container .dz-success-mark,
.dropzone .dz-preview .dz-preview-container .dz-error-mark {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    margin: 0;
    font-size: 18px;
    background-color: var(--success-color);
    border-bottom-right-radius: 5px;
    color: #fff;
}

.dropzone .dz-preview .dz-preview-container .dz-error-mark {
    background-color: var(--error-color);
}

.dropzone .dz-preview .dz-preview-container .dz-details {
    position: static;
    min-width: 0;
    padding: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    opacity: 1 !important;
}

.dropzone .dz-preview .dz-preview-container .dz-details .dz-details-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dropzone .dz-preview .dz-preview-container .dz-details .dz-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 110px;
    width: 110px;
    min-width: 110px;
    overflow: hidden;
    border-radius: 5px;
}

.dropzone .dz-preview .dz-preview-container .dz-details .dz-img img {
    height: 100%;
    min-width: 100%;
}

.dropzone .dz-preview .dz-preview-container .dz-remove,
.dropzone .dz-preview .dz-preview-container .dz-edit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    width: 20px;
    height: 20px;
    text-decoration: none;
    border-radius: 50%;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
}

.dropzone .dz-preview .dz-preview-container .dz-edit .fa-lock {
    color: #00ce3e !important;
}

.dropzone .dz-preview .dz-preview-container .dz-remove i,
.dropzone .dz-preview .dz-preview-container .dz-edit i {
    cursor: pointer;
    color: #222;
    font-size: 18px;
}

.dropzone .dz-preview .dz-preview-container .dz-remove:hover,
.dropzone .dz-preview .dz-preview-container .dz-edit:hover {
    opacity: .7;
}

.dropzone .dz-preview .dz-preview-container .dz-remove i {
    color: #dc3545;
}

.dropzone .dz-preview .dz-preview-container [data-dz-thumbnail] {
    width: 100px;
    height: 100px;
    border-radius: 5px;
}

.dropzone .dz-preview .dz-preview-container .dz-name {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    padding-right: 30px;
    padding-left: 30px;
}

.dropzone .dz-preview .dz-preview-container .dz-size {
    text-align: center;
    color: #6a6a6a;
    font-size: 14px;
}

.dropzone .dz-preview .dz-preview-container .dz-size strong {
    font-weight: 400;
}

.dropzone .dz-preview .dz-preview-container .dz-error-message {
    display: block;
    position: static;
    width: auto;
    height: auto;
    opacity: 1;
    padding: 0;
    background: transparent;
    color: #dc3545;
}

.dropzone .dz-preview .dz-preview-container .dz-error-message::after {
    display: none;
}

.dropzone .dz-preview .dz-preview-container .dz-progress {
    position: relative;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    margin: 0;
    height: 28px;
    border-radius: 8px;
    background-color: #f0f0f0;
    margin-top: 16px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.dropzone .dz-preview .dz-preview-container .dz-progress .dz-upload {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primaryColor) 0%, var(--primaryColor) 100%);
    border-radius: 8px;
    transition: width var(--transition-normal);
    /* Animated stripes effect */
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    background-size: 40px 40px;
    animation: progress-bar 1s linear infinite;
}

.dropzone .dz-preview .dz-preview-container .dz-progress .dz-upload-precent {
    position: relative;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.dropzone .dz-preview .dz-preview-container .dz-file-edit {
    visibility: hidden;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1030;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.dropzone .dz-preview .dz-preview-container .dz-file-edit .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.45);
}

.dropzone .dz-preview .dz-preview-container .dz-file-edit .dz-file-edit-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    padding: 20px;
    background-color: #fff;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    border-radius: 5px;
    cursor: default;
    -webkit-transform: perspective(200px) translateZ(-200px);
    transform: perspective(200px) translateZ(-200px);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@media (max-width: 575.98px) {
    .dropzone .dz-preview .dz-preview-container .dz-file-edit .dz-file-edit-box {
        max-width: 90vw;
    }
}

.dropzone .dz-preview .dz-preview-container .dz-file-edit .dz-file-edit-box * {
    cursor: auto;
}

.dropzone .dz-preview .dz-preview-container .dz-file-edit .dz-file-edit-box .dz-file-edit-box-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dropzone .dz-preview .dz-preview-container .dz-file-edit .dz-file-edit-box .dz-file-edit-box-header .dz-file-edit-close {
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.dropzone .dz-preview .dz-preview-container .dz-file-edit .dz-file-edit-box .dz-file-edit-box-header .dz-file-edit-close i {
    cursor: pointer;
}

.dropzone .dz-preview .dz-preview-container .dz-file-edit .dz-file-edit-box .dz-file-edit-box-header .dz-file-edit-close:hover {
    opacity: .8;
}

.dropzone .dz-preview .dz-preview-container .dz-file-edit .dz-file-edit-box .dz-file-edit-box-body {
    position: relative;
    max-height: calc(90vh - 64px);
    padding: 20px;
}

.dropzone .dz-preview .dz-preview-container .dz-file-edit .dz-file-edit-box .dz-file-edit-box-body .btn {
    cursor: pointer;
}

.dropzone .dz-preview .dz-preview-container .dz-file-edit.active {
    visibility: visible;
    opacity: 1;
}

.dropzone .dz-preview .dz-preview-container .dz-file-edit.active .dz-file-edit-box {
    -webkit-transform: perspective(200px) translateZ(0);
    transform: perspective(200px) translateZ(0);
}

.dropzone .dz-preview.dz-processing .dz-preview-container .dz-progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dropzone .dz-preview.dz-complete .dz-preview-container .dz-progress {
    display: none;
}

.dropzone .dz-preview.dz-success .dz-preview-container {
    border-color: var(--success-color);
    animation: fadeIn 200ms ease-out;
}

.dropzone .dz-preview.dz-success .dz-preview-container .dz-success-mark {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    animation: scale-bounce 200ms ease-out;
    opacity: 1;
}

.dropzone .dz-preview.dz-error .dz-preview-container {
    border-color: var(--error-color);
    animation: shake 300ms ease-out;
}

.dropzone .dz-preview.dz-error .dz-preview-container .dz-error-mark {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    animation: shake 300ms ease-out;
    opacity: 1;
}

.pagination {
    margin-bottom: 0;
}

.page-item:not(:last-child) {
    margin-right: 6px;
}

.page-item .page-link {
    color: var(--primaryColor);
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 5px !important;
    border: 0;
    background: transparent;
}

.page-item .page-link:focus,
.page-item .page-link:active {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.page-item .page-link:hover {
    background: var(--primaryColor);
    color: #fff;
}

.page-item.active .page-link {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    color: #fff;
}

.page-item.disabled .page-link {
    background-color: transparent;
}

.page-item.active .page-link:hover {
    color: #fff;
}

.page-item[disabled] .page-link {
    cursor: default;
    background: transparent;
    color: var(--primaryColor);
}

.comments {
    width: 100%;
}

.comments .comments-title {
    margin-bottom: 25px;
}

.comments .comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fafafa;
    padding: 30px 20px;
    border-radius: 10px;
}

.comments .comment .comment-img img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 16px;
}

.comments .comment .comment-text {
    font-size: 15px;
}

.comments .comment:not(:last-child) {
    margin-bottom: 16px;
}

.fileviewer .fileviewer-sidebar-open {
    cursor: pointer;
}

@media (max-width: 1299.98px) {
    .fileviewer .fileviewer-sidebar-open {
        display: block;
    }
}

.fileviewer .fileviewer-sidebar-open:hover {
    opacity: 0.8;
}

.fileviewer .fileviewer-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 450px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #2e2e2e;
    height: 70px;
    -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
    padding-left: 16px;
    padding-right: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    z-index: 1030;
}

@media (max-width: 1299.98px) {
    .fileviewer .fileviewer-nav {
        width: 100%;
    }
}

.fileviewer .fileviewer-nav .fileviewer-nav-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.fileviewer .fileviewer-nav .fileviewer-nav-actions .fileviewer-nav-action {
    padding: 10px 15px;
    background-color: #404040;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@media (max-width: 575.98px) {
    .fileviewer .fileviewer-nav .fileviewer-nav-actions .fileviewer-nav-action {
        font-size: 14px;
        padding: 8px 12px;
    }
}

.fileviewer .fileviewer-nav .fileviewer-nav-actions .fileviewer-nav-action .fileviewer-nav-action-text {
    text-transform: uppercase;
    margin-left: 5px;
}

@media (max-width: 499.98px) {
    .fileviewer .fileviewer-nav .fileviewer-nav-actions .fileviewer-nav-action .fileviewer-nav-action-text {
        display: none;
    }
}

.fileviewer .fileviewer-nav .fileviewer-nav-actions .fileviewer-nav-action:hover {
    background-color: #494949;
}

.fileviewer .fileviewer-nav .fileviewer-nav-actions>* {
    margin-left: 20px;
}

.fileviewer .fileviewer-body {
    padding-top: 40px;
    padding-bottom: 40px;
}

.fileviewer .fileviewer-body .fileviewer-file {
    text-align: center;
}

.fileviewer .fileviewer-body .fileviewer-file img {
    max-width: 100%;
    max-height: 100%;
}

.fileviewer .fileviewer-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1030;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    visibility: hidden;
    opacity: 0;
}

@media (max-width: 1299.98px) {
    .fileviewer .fileviewer-sidebar {
        visibility: hidden;
        max-width: 100%;
        width: 100%;
        opacity: 0;
    }
}

.fileviewer .fileviewer-sidebar .overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 1299.98px) {
    .fileviewer .fileviewer-sidebar .overlay {
        display: block;
    }
}

.fileviewer .fileviewer-sidebar .fileviewer-sidebar-content {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 0;
    right: -450px;
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@media (max-width: 1299.98px) {
    .fileviewer .fileviewer-sidebar .fileviewer-sidebar-content {
        right: -450px;
    }
}

@media (max-width: 575.98px) {
    .fileviewer .fileviewer-sidebar .fileviewer-sidebar-content {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }
}

.fileviewer .fileviewer-sidebar .fileviewer-sidebar-content .fileviewer-sidebar-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-bottom: 1px solid #eee;
}

@media (max-width: 499.98px) {
    .fileviewer .fileviewer-sidebar .fileviewer-sidebar-content .fileviewer-sidebar-header {
        padding-right: 10px;
        padding-left: 10px;
    }
}

.fileviewer .fileviewer-sidebar .fileviewer-sidebar-content .fileviewer-sidebar-header .fileviewer-sidebar-title {
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.fileviewer .fileviewer-sidebar .fileviewer-sidebar-content .fileviewer-sidebar-header .fileviewer-sidebar-close {
    color: #888;
    cursor: pointer;
}

.fileviewer .fileviewer-sidebar .fileviewer-sidebar-content .fileviewer-sidebar-header .fileviewer-sidebar-close:hover {
    opacity: .8;
}

.fileviewer .fileviewer-sidebar .fileviewer-sidebar-content .fileviewer-sidebar-body {
    max-height: 100%;
    padding: 20px 16px;
    overflow: auto;
}

@media (max-width: 499.98px) {
    .fileviewer .fileviewer-sidebar .fileviewer-sidebar-content .fileviewer-sidebar-body {
        padding-right: 10px;
        padding-left: 10px;
    }
}

.fileviewer .fileviewer-sidebar .fileviewer-sidebar-content .fileviewer-sidebar-body .fileviewer-sidebar-section {
    margin-bottom: 25px;
}

.fileviewer .fileviewer-sidebar .fileviewer-sidebar-content .fileviewer-sidebar-body .fileviewer-sidebar-section .fileviewer-sidebar-section-title {
    font-size: 18px;
    color: #888;
    margin-bottom: 6px;
}

.fileviewer .fileviewer-sidebar .fileviewer-sidebar-content .fileviewer-sidebar-footer {
    margin-top: auto;
    padding: 20px 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 15px;
    border-top: 1px solid #eee;
    color: #888;
    text-align: center;
}

@media (max-width: 499.98px) {
    .fileviewer .fileviewer-sidebar .fileviewer-sidebar-content .fileviewer-sidebar-footer {
        padding-right: 10px;
        padding-left: 10px;
    }
}

.fileviewer .fileviewer-user {
    display: flex;
    align-items: center;
}

.fileviewer .fileviewer-user .fileviewer-user-img {
    margin-right: 15px;
}

.fileviewer .fileviewer-user .fileviewer-user-img img {
    width: 70px;
    height: 70px;
    border-radius: 5px;
}

.fileviewer .fileviewer-user .fileviewer-user-title {
    font-weight: 500;
}

.fileviewer .fileviewer-user .fileviewer-user-meta {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.fileviewer .fileviewer-user .fileviewer-user-meta .fileviewer-user-meta-item {
    margin: 5px;
    font-size: 15px;
    color: #666;
}

.fileviewer.toggle .fileviewer-sidebar {
    visibility: visible;
    opacity: 1;
}

.fileviewer.toggle .fileviewer-sidebar .fileviewer-sidebar-content {
    right: 0;
}

.ad {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 300px;
    height: 280px;
}

.ad.ad-lg {
    width: 720px;
    height: 90px;
}

@media (max-width: 767.98px) {
    .ad.ad-lg {
        width: 300px;
        height: 250px;
    }
}

@media (max-width: 991.98px) {
    .ad {
        margin-right: auto;
        margin-top: 20px;
        margin-left: auto;
    }
}

.dz-dragbox {
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #FFF;
    z-index: 10000;
    opacity: 0;
    transition: .3s;
}

@media (max-width: 991.98px) {
    .dz-dragbox {
        display: none;
    }
}

.dz-dragbox.show {
    visibility: visible;
    opacity: 1;
}

.dz-dragbox .dz-dragbox-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: var(--white);
    width: 100%;
    height: 100%;
    padding: 40px;
    text-align: center;
}

.dz-dragbox .dz-dragbox-inner>* {
    z-index: 1;
}

.dz-dragbox .dz-dragbox-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primaryColor);
    opacity: .7;
    z-index: 0;
}

.dz-dragbox .dz-dragbox-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: 5px dashed #eee;
    outline-offset: -25px;
}

.notifications {
    margin-right: 10px;
}

.notifications .drop-down-btn {
    display: block;
    position: relative;
}

.notifications .drop-down-btn .notifications-count {
    position: absolute;
    top: -10px;
    right: -13px;
    background-color: var(--secondaryColor);
    padding: 2px 9px;
    font-size: 11px;
    border-radius: 20px;
}

.notifications .drop-down-menu {
    width: 360px;
    font-size: 15px;
}

@media (max-width: 499.98px) {
    .notifications .drop-down-menu {
        width: 90vw;
        right: -85px;
    }
}

@media (max-width: 449.98px) {
    .notifications .drop-down-menu {
        right: -90px;
    }
}

.notifications .drop-down-menu .notifications-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 8px 14px;
}

.notifications .drop-down-menu .notifications-header .notifications-title {
    font-weight: 500;
}

.notifications .drop-down-menu .notifications-header .notifications-action {
    font-size: 13px;
}

.notifications .drop-down-menu .notifications-body {
    max-height: 248px;
    overflow: auto;
}

@media (max-height: 499.98px) {
    .notifications .drop-down-menu .notifications-body {
        max-height: 186px;
    }
}

@media (max-height: 349.98px) {
    .notifications .drop-down-menu .notifications-body {
        max-height: 124px;
    }
}

.notifications .drop-down-menu .notifications-body .notifications-items .notifications-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 14px;
}

.notifications .drop-down-menu .notifications-body .notifications-items .notifications-item.unread {
    position: relative;
    padding-right: 30px;
}

.notifications .drop-down-menu .notifications-body .notifications-items .notifications-item.unread::after {
    display: block;
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: #dc3545;
    border-radius: 50%;
    right: 1rem;
    top: 1rem;
    -webkit-animation: flashing 2s infinite;
    animation: flashing 2s infinite;
}

.notifications .drop-down-menu .notifications-body .notifications-items .notifications-item .notifications-item-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.notifications .drop-down-menu .notifications-body .notifications-items .notifications-item .notifications-item-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.notifications .drop-down-menu .notifications-body .notifications-items .notifications-item .notifications-item-info {
    width: calc(100% - 50px);
}

.notifications .drop-down-menu .notifications-body .notifications-items .notifications-item .notifications-item-title {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 0;
    color: #222;
}

.notifications .drop-down-menu .notifications-body .notifications-items .notifications-item .notifications-item-text {
    color: #888;
    margin-bottom: 0;
    font-size: 13px;
}

.notifications .drop-down-menu .notifications-body .notifications-items .notifications-item:hover {
    background-color: var(--bgColor);
}

.notifications .drop-down-menu .notifications-footer {
    display: block;
    text-align: center;
    padding: 5px 14px;
    color: #888;
    border-top: 1px solid #eee;
    font-size: 13px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.notifications .drop-down-menu .notifications-footer:hover {
    opacity: .7;
}

@-webkit-keyframes flashing {
    50% {
        opacity: 0;
    }
}

@keyframes flashing {
    50% {
        opacity: 0;
    }
}

.profile-container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.profile-user {
    margin-bottom: 25px;
}

.profile-user .profile-user-cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767.98px) {
    .profile-user .profile-user-cont {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.profile-user .profile-user-cont .profile-user-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 5px;
    background-color: #fff;
    border: 1px solid #eee;
    margin-right: 25px;
}

@media (max-width: 767.98px) {
    .profile-user .profile-user-cont .profile-user-avatar {
        margin-bottom: 10px;
        margin-right: 0;
        width: 120px;
        height: 120px;
    }
}

.profile-user .profile-user-cont .profile-user-name {
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-size: 18px;
}

@media (max-width: 767.98px) {
    .profile-user .profile-user-cont .profile-user-name {
        font-size: 16px;
        text-align: center;
    }
}

.profile-user .profile-user-cont .profile-user-text {
    color: #888;
    letter-spacing: 1px;
}

@media (max-width: 767.98px) {
    .profile-user .profile-user-cont .profile-user-text {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .profile-user .profile-user-cont .share {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.profile-sections {
    margin-bottom: 20px;
}

.profile .profile-header {
    margin-bottom: 25px;
}

.profile .profile-header .profile-title {
    font-weight: 400;
    margin-bottom: 0;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.profile .profile-header .form-search {
    min-width: 300px;
    max-width: 800px;
    width: 100%;
}

.profile .profile-header .form-search input {
    padding: 12px 65px 12px 20px;
    width: 100%;
}

.profile .profile-body .profile-items .profile-item {
    display: block;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.profile .profile-body .profile-items .profile-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: perspective(200px) translateZ(0) rotate(0);
    transform: perspective(200px) translateZ(0) rotate(0);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.profile .profile-body .profile-items .profile-item:hover img {
    -webkit-transform: perspective(200px) translateZ(50px) rotate(6deg);
    transform: perspective(200px) translateZ(50px) rotate(6deg);
}

.collections {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -8px;
    margin-left: -8px;
}

.collections .card-v {
    width: calc((100% - 80px) / 5);
    margin: 8px;
}

@media (max-width: 1399.98px) {
    .collections .card-v {
        width: calc((100% - 64px) / 4);
        margin: 8px;
    }
}

@media (max-width: 1199.98px) {
    .collections .card-v {
        width: calc((100% - 48px) / 3);
        margin: 8px;
    }
}

@media (max-width: 767.98px) {
    .collections .card-v {
        width: calc((100% - 32px) / 2);
        margin: 8px;
    }
}

@media (max-width: 449.98px) {
    .collections .card-v {
        width: calc((100% - 16px) / 1);
        margin: 8px;
    }
}

.collections .collection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.collections .collection .collection-img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.collections .collection .collection-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
}

.collections .collection .collection-empty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: 3px dashed #eee;
    margin-bottom: 10px;
    cursor: pointer;
    color: #ddd;
}

.collections .collection .collection-title {
    margin-bottom: 0;
    text-align: center;
}

.collections .collection .collection-title h5 {
    font-weight: 400;
}

.filemanager-actions {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -5px -5px 15px;
}

.filemanager-actions>* {
    margin: 5px;
}

.filemanager-actions .form-check-input,
.filemanager-actions .form-check-label {
    cursor: pointer;
}

.filemanager-actions.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.filemanager-file {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    border-radius: 8px;
    background-color: #fff;
    padding: 15px 20px 40px;
    cursor: pointer;
    border: 2px solid transparent;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
}

.filemanager-file .form-check .form-check-input {
    cursor: pointer;
}

.filemanager-file .filemanager-file-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px;
    width: 100%;
}

.filemanager-file .filemanager-file-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
}

.filemanager-file .filemanager-file-icon img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
}

.filemanager-file .filemanager-file-title {
    font-weight: 400;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 5px;
    text-align: center;
    max-width: 100%;
}

.filemanager-file .filemanager-file-meta {
    font-size: 12px;
    color: #999;
    text-align: center;
}

.filemanager-file.selected {
    border-color: var(--primaryColor);
}

.languages.drop-down .language-img {
    margin-right: 10px;
}

.languages.drop-down .language-img img {
    width: 25px;
    height: 25px;
}

.languages.drop-down .drop-down-menu .drop-down-item {
    display: flex;
    align-items: center;
}

.px-20p {
    padding-right: 20px;
    padding-left: 20px;
}

.categories .category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 13px 25px;
    border: 1px solid #ecf2f6;
    border-radius: 10px;
}

.categories .category:not(:last-child) {
    margin-bottom: 10px;
}

.categories .category:hover {
    background-color: var(--bgColor);
}

.dash-chart {
    height: 400px;
}

@media (max-width: 767.98px) {
    .dash-chart {
        height: 220px;
    }
}

.swal2-styled:focus {
    box-shadow: none !important;
}

.twoFA .form-control {
    font-size: 20px;
}

.notifications-page .notification-item {
    background: #fff;
    color: #212529;
    padding: 1rem;
    padding-right: 1.5rem;
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
    border-radius: 10px;
    margin-bottom: 0.8rem;
}

.notifications-page .notification-item .icon {
    font-size: 12px;
    -webkit-animation: flashing 2s infinite;
    animation: flashing 2s infinite;
}

.vr-adv-unit.vr-adv-unit-728x90 {
    width: 100%;
    min-width: 728px;
    max-width: 728px;
    height: 90px;
    max-height: 90px;
}

.vr-adv-unit.vr-adv-unit-300x280 {
    width: 100%;
    min-width: 300px;
    max-width: 300px;
    height: 280px;
    max-height: 280px;
}

.vr-adv-unit.vr-adv-unit-200x355 {
    width: 100%;
    min-width: 200px;
    max-width: 200px;
    height: 355px;
    max-height: 355px;
}

@media (max-width: 767.98px) {
    .vr-adv-unit.vr-adv-unit-728x90 {
        width: 100%;
        min-width: 300px;
        max-width: 300px;
        height: 280px;
        max-height: 280px;
    }
}

.responsive-image {
    max-width: 100%;
    height: auto;
}

@-webkit-keyframes bounce {
    0%,
    10%,
    20%,
    30%,
    40%,
    60%,
    80%,
    90%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50%,
    70% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%,
    10%,
    20%,
    30%,
    40%,
    60%,
    80%,
    90%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50%,
    70% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

/* ========================================
   Responsive Styles for Upload Interface
   ======================================== */

/* Tablet styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .header .wrapper .wrapper-content .file-upload-icon svg {
        height: 100px;
    }

    .uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag {
        min-height: 350px;
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag-inner i {
        font-size: 80px;
    }

    .dropzone .dz-preview .dz-preview-container {
        padding: 60px 20px;
    }

    .dropzone .dz-preview .dz-preview-container .dz-details .dz-img {
        height: 100px;
        width: 100px;
        min-width: 100px;
    }

    /* Touch target sizes - minimum 44px */
    .uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag {
        min-height: 44px;
    }
}

/* Mobile styles (< 768px) */
@media (max-width: 767px) {
    .header .wrapper .wrapper-content .file-upload-icon svg {
        height: 80px;
    }

    .header .wrapper .wrapper-content .file-upload-icon {
        margin-bottom: 20px;
    }

    .uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag {
        min-height: 300px;
        padding: 40px 20px;
        border-radius: 8px;
    }

    .uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag-inner i {
        font-size: 64px;
        margin-bottom: 10px;
    }

    .uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag-inner h4 {
        font-size: 18px;
    }

    .uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag-inner p {
        font-size: 14px;
    }

    .dropzone .dz-preview .dz-preview-container {
        padding: 50px 15px;
    }

    .dropzone .dz-preview .dz-preview-container .dz-details .dz-img {
        height: 80px;
        width: 80px;
        min-width: 80px;
    }

    .dropzone .dz-preview .dz-preview-container .dz-progress {
        height: 24px;
    }

    .dropzone .dz-preview .dz-preview-container .dz-progress .dz-upload-precent {
        font-size: 12px;
    }

    /* Mobile touch targets - minimum 48px */
    .uploadbox .uploadbox-header .upload-more-btn {
        min-height: 48px;
        padding: 12px 20px;
    }

    /* Remove hover effects on touch devices */
    .uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag:hover {
        transform: scale(1);
    }

    .dropzone .dz-preview .dz-preview-container:hover {
        transform: scale(1);
    }

    /* Add tap feedback instead */
    .uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .dropzone .dz-preview .dz-preview-container:active {
        transform: scale(0.98);
    }
}

/* Very small mobile (< 480px) */
@media (max-width: 479px) {
    .header .wrapper .wrapper-content .file-upload-icon svg {
        height: 64px;
    }

    .uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag {
        min-height: 250px;
        padding: 30px 15px;
    }

    .uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag-inner i {
        font-size: 48px;
    }

    .uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag-inner h4 {
        font-size: 16px;
    }

    .uploadbox .uploadbox-body .uploadbox-body-content .uploadbox-drag-inner p {
        font-size: 13px;
    }

    .dropzone .dz-preview .dz-preview-container {
        padding: 40px 10px;
    }

    .dropzone .dz-preview .dz-preview-container .dz-details .dz-img {
        height: 70px;
        width: 70px;
        min-width: 70px;
    }
}