:root {
    --main-color: #39ae81;
}

body {
  font-family: "Urbanist", sans-serif;
  line-height: 22px;
}

textarea,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select, 
.swal2-popup {
    font-family: "Urbanist", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Urbanist", sans-serif;
  text-rendering: optimizeLegibility;
}

.main-color{color: var(--main-color);}
.main-color-hover:hover{color: var(--main-color) !important;}
.main-color-bg{background-color: var(--main-color) !important;}
.main-color-bg-hover:hover{background-color: var(--main-color) !important;}
.main-color-border{border-color: var(--main-color);}
.main-color-border-hover:hover{border-color: var(--main-color) !important;}

.office701-logo {width: 100px;}
.has-error {
    border-color: #b94a48 !important;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}
.has-success {
    border-color: #50cd89 !important;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #555555;
    background: rgba(255, 255, 255, 0.9);
}
.closecookies {
    z-index: 2;
    position: absolute !important;
    right: 0 !important;
    border: none;
    background: transparent;
    font-size: 17px;
    padding: 0px;
}
.closeBtn {
    font-weight: bold;
    color: black;
}
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0.9;
    border-style: none;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #555;
    background: #fff;
    box-shadow: 0 0 10 0 rgb(0 0 0 / 24%);
    padding: 15px 10px 15px 5px;
}
.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}
.cookiealert a {
    text-decoration: underline;
}
.cookiealert a:hover {
    color: var(--theme-color2);
}
.cookiealert .cookiealert-text {
    z-index: 1;
    padding: 15px 0px 0px 10px;
    margin: 0;
    width: 100%;
    font-size: 12px;
}

.cookiealert .cookiealert-text p {
    font-size: 13px;
    line-height: 1.5;
}
.cookiealert .full-width {
    width: 100%;
}
.cookiealert .pull-rightleft {
    text-align: center;
}
@media screen and (min-width: 991px) {
    .cookiealert {
        bottom: 10px;
        left: 18px;
        width: 400px;
        border-radius: 10px;
    }

    .cookiealert .cookiealert-text {
        width: 414px;
        line-height: 2;
        margin-bottom: 15px;
    }
}
@media (max-width: 768px) {
    .cookiealert .pull-rightleft {
        float: none;
        text-align: center;
    }
}

.tf-counter .icon img{
    width: 85px;
    height: 85px;
}

.status {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
}

.status.active {
    background-color: #d4edda;
    color: #155724;
}

.status.completed {
    background-color: #d1ecf1;
    color: #0c5460;
}

.status.upcoming {
    background-color: #fff3cd;
    color: #856404;
}

.status.inactive {
    background-color: #f8d7da;
    color: #721c24;
}

/* Modern Dropzone Tasarımı */
.dropzone {
    border: 3px dashed rgba(0, 135, 247, 0.3);
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 60px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow-y: auto;
    max-height: 600px;
    min-height: 320px;
    display: block;
}

.dropzone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 135, 247, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.dropzone:hover {
    border-color: #0087F7;
    background: linear-gradient(135deg, #e8f4ff 0%, #f8f9ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 135, 247, 0.15);
}

.dropzone:hover::before {
    opacity: 1;
}

.dropzone.dz-drag-hover {
    border-color: #0056b3;
    background: linear-gradient(135deg, #d4ebff 0%, #e8f4ff 100%);
    transform: scale(1.01);
    box-shadow: 0 20px 60px rgba(0, 135, 247, 0.25);
}

/* Dropzone Scrollbar Styling */
.dropzone::-webkit-scrollbar {
    width: 8px;
}

.dropzone::-webkit-scrollbar-track {
    background: rgba(0, 135, 247, 0.05);
    border-radius: 10px;
}

.dropzone::-webkit-scrollbar-thumb {
    background: rgba(0, 135, 247, 0.3);
    border-radius: 10px;
}

.dropzone::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 135, 247, 0.5);
}

/* Dropzone Preview Container */
.dropzone .dz-preview-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.dropzone .dz-message {
    font-size: 18px;
    color: #2c3e50;
    margin: 0 0 30px 0;
    font-weight: 500;
    z-index: 1;
    display: block;
}

.dropzone .dz-message .upload-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0087F7 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 135, 247, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.dropzone .dz-message .upload-icon i {
    font-size: 36px;
    color: white;
}

.dropzone .dz-message h5 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 15px 0 10px;
}

.dropzone .dz-message p {
    font-size: 14px;
    color: #6c757d;
    margin: 5px 0 0;
}

.dropzone .dz-message .supported-formats {
    display: inline-flex;
    gap: 8px;
    margin-top: 15px;
}

.dropzone .dz-message .format-badge {
    background: rgba(0, 135, 247, 0.1);
    color: #0087F7;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.dropzone .dz-preview {
    margin: 15px;
    min-height: 120px;
    display: inline-block;
    vertical-align: top;
}

.dropzone .dz-preview .dz-image {
    border-radius: 12px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.dropzone .dz-preview .dz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropzone .dz-preview .dz-details {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 10px;
}

.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
    animation: checkmark 0.5s ease-in-out;
}

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.dropzone .dz-preview .dz-progress {
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: linear-gradient(90deg, #0087F7 0%, #00c6ff 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.dropzone .dz-preview .dz-remove {
    color: #dc3545;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dropzone .dz-preview .dz-remove:hover {
    color: #a71d2a;
    transform: scale(1.1);
}

/* Gallery Grid (Dropzone sayfaları için - .gallery-grid parent gerekli) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-grid .gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.gallery-grid .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.gallery-grid .gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-grid .gallery-item:hover::before {
    opacity: 1;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-grid .gallery-item .delete-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(220, 53, 69, 0.95);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.gallery-grid .gallery-item:hover .delete-btn {
    opacity: 1;
    transform: scale(1);
}

.gallery-grid .gallery-item .delete-btn:hover {
    background: #dc3545;
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
}

.gallery-grid .gallery-item .delete-btn:active {
    transform: scale(0.95);
}

/* Upload Progress Overlay */
.upload-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.upload-overlay.active {
    display: flex;
}

.upload-progress-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    min-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.upload-progress-box .spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 135, 247, 0.2);
    border-top-color: #0087F7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.upload-progress-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.upload-progress-box p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.toggle-password{
    position: absolute;
    top: 40px;
    right: 20px;
    cursor: pointer;
    color: #6c757d;
}

.min-h-340px{min-height: 340px;}
.valid-error{
    border: solid 1px;
    border-color: #a22 !important;
}

/* ====== Dil Kartları Drag & Drop ====== */
.lang-drag-handle {
    cursor: grab;
    padding: 4px 2px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}
.lang-drag-handle:hover {
    background: #f1f1f4;
    cursor: grab;
}
.lang-drag-handle:hover i {
    color: #4e5cbb !important;
}
.lang-drag-handle:active {
    cursor: grabbing;
}
.lang-dragging {
    z-index: 999;
    transform: rotate(1.5deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18) !important;
}
.lang-dragging > .card {
    border-color: #4e5cbb !important;
    background: #fafaff;
}
.lang-sort-placeholder {
    border: 2px dashed #b5b5c3;
    border-radius: 12px;
    background: #f5f5ff;
    min-height: 120px;
    margin-bottom: 0;
}
.gallery-dropzone{border:2px dashed #e4e6ef;border-radius:8px;padding:28px 20px;text-align:center;cursor:pointer;transition:all .2s;background:#fafafa}
.gallery-dropzone:hover,.gallery-dropzone.dz-drag-hover{border-color:#009ef7;background:#f1faff}
.gallery-dropzone .dz-icon{font-size:2.2rem;color:#b5b5c3;margin-bottom:6px;transition:color .2s}
.gallery-dropzone.dz-drag-hover .dz-icon{color:#009ef7}
#dzPreviews{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px;justify-content:center}
.dz-preview{width:72px;position:relative;border-radius:6px;overflow:hidden;border:1px solid #e4e6ef;background:#fff}
.dz-preview .dz-image{width:72px;height:54px;overflow:hidden}
.dz-preview .dz-image img{width:100%;height:100%;object-fit:cover}
.dz-preview .dz-progress{position:absolute;bottom:14px;left:3px;right:3px;height:3px;background:rgba(0,0,0,.12);border-radius:2px;overflow:hidden}
.dz-preview .dz-progress-bar{height:100%;background:#009ef7;width:0;transition:width .2s}
.dz-preview.dz-success .dz-progress-bar{background:#50cd89;width:100%}
.dz-preview.dz-error .dz-progress-bar{background:#f1416c;width:100%}
.dz-preview .dz-filename{font-size:9px;color:#a1a5b7;padding:2px 3px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
/* ====== Post Galeri Kartları ====== */
#galleryContainer .gallery-item{
    margin-bottom:12px;
    position:relative;
}
#galleryContainer .gallery-thumb{
    position:relative;
    border-radius:10px;
    overflow:hidden;
    border:2px solid transparent;
    transition:all .25s ease;
    background:#f5f8fa;
    cursor:pointer;
}
#galleryContainer .gallery-thumb img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
    object-position:center center;
    display:block;
    padding:12px;
    background:#fff;
    transition:transform .3s ease;
}
#galleryContainer .gallery-thumb:hover img{
    transform:scale(1.05);
}

/* Overlay */
#galleryContainer .gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(0deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.10) 40%, rgba(0,0,0,.25) 100%);
    opacity:0;
    transition:opacity .25s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:8px;
    z-index:3;
    pointer-events:none;
}
#galleryContainer .gallery-thumb:hover .gallery-overlay{
    opacity:1;
    pointer-events:auto;
}

/* Overlay Butonları */
#galleryContainer .gallery-overlay .btn{
    width:36px;
    height:36px;
    min-width:36px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.95);
    border:none;
    color:#3f4254;
    font-size:14px;
    line-height:1;
    padding:0;
    transition:all .2s ease;
    transform:translateY(8px);
    opacity:0;
    box-shadow:0 2px 8px rgba(0,0,0,.18);
    pointer-events:auto;
    position:relative;
    z-index:5;
}
#galleryContainer .gallery-overlay a.btn{
    width:36px;
    height:36px;
    min-width:36px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}
#galleryContainer .gallery-thumb:hover .gallery-overlay .btn{
    transform:translateY(0);
    opacity:1;
}
#galleryContainer .gallery-thumb:hover .gallery-overlay .btn:nth-child(1){transition-delay:.02s}
#galleryContainer .gallery-thumb:hover .gallery-overlay .btn:nth-child(2){transition-delay:.06s}
#galleryContainer .gallery-thumb:hover .gallery-overlay .btn:nth-child(3){transition-delay:.10s}
#galleryContainer .gallery-thumb:hover .gallery-overlay .btn:nth-child(4){transition-delay:.14s}
#galleryContainer .gallery-overlay .btn:hover{
    background:#009ef7;
    color:#fff;
    transform:translateY(0) scale(1.15);
    box-shadow:0 4px 14px rgba(0,158,247,.4);
}
#galleryContainer .gallery-overlay .btn:hover .text-danger{
    color:#fff!important;
}
#galleryContainer .gallery-overlay .gallery-delete-btn:hover{
    background:#f1416c;
    box-shadow:0 4px 14px rgba(241,65,108,.4);
}

/* Seçim */
#galleryContainer .gallery-item.selected .gallery-thumb{
    border-color:#009ef7;
    box-shadow:0 0 0 2px rgba(0,158,247,.35);
}
#galleryContainer .gallery-item.selected .gallery-check{
    display:flex!important;
}
#galleryContainer .gallery-check{
    display:none;
    position:absolute;
    top:6px;
    left:6px;
    z-index:4;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#009ef7;
    color:#fff;
    align-items:center;
    justify-content:center;
    font-size:10px;
    box-shadow:0 2px 6px rgba(0,158,247,.4);
}

/* Başlık */
.gallery-title{
    font-size:11px;
    color:#7e8299;
    margin-top:5px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    padding:0 2px;
    text-align:center;
}

/* Sıralama Placeholder */
.gallery-sort-placeholder{
    background:#f1faff;
    border:2px dashed #009ef7;
    border-radius:10px;
    min-height:100px;
    margin-bottom:12px;
}

/* ====== CKEditor 5 — sabit içerik alanı, iç scroll ====== */
.ck.ck-editor .ck-editor__main {
	overflow: hidden;
}
.ck.ck-editor .ck-editor__main > .ck-editor__editable:not(.ck-editor__nested-editable) {
	overflow-y: auto !important;
}

/* ====== Modal CKEditor Mini ====== */
#imgEditModalBody .ck-editor{margin-bottom:0}
#imgEditModalBody .ck.ck-editor__editable_inline{min-height:80px;max-height:200px}

/* ====== Jcrop ====== */
.jcrop-holder{-ms-touch-action:none;touch-action:none;direction:ltr;text-align:left}
.jcrop-vline,.jcrop-hline{background:#FFF url(../../_public/img/jcrop.gif);font-size:0;position:absolute}
.jcrop-vline{height:100%;width:1px!important}
.jcrop-vline.right{right:0}
.jcrop-hline{height:1px!important;width:100%}
.jcrop-hline.bottom{bottom:0}
.jcrop-tracker{-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;height:100%;width:100%}
.jcrop-handle{background-color:#333;border:1px #EEE solid;font-size:1px;height:7px;width:7px}
.jcrop-handle.ord-n{left:50%;margin-left:-4px;margin-top:-4px;top:0}
.jcrop-handle.ord-s{bottom:0;left:50%;margin-bottom:-4px;margin-left:-4px}
.jcrop-handle.ord-e{margin-right:-4px;margin-top:-4px;right:0;top:50%}
.jcrop-handle.ord-w{left:0;margin-left:-4px;margin-top:-4px;top:50%}
.jcrop-handle.ord-nw{left:0;margin-left:-4px;margin-top:-4px;top:0}
.jcrop-handle.ord-ne{margin-right:-4px;margin-top:-4px;right:0;top:0}
.jcrop-handle.ord-se{bottom:0;margin-bottom:-4px;margin-right:-4px;right:0}
.jcrop-handle.ord-sw{bottom:0;left:0;margin-bottom:-4px;margin-left:-4px}
.jcrop-dragbar.ord-n,.jcrop-dragbar.ord-s{height:7px;width:100%}
.jcrop-dragbar.ord-e,.jcrop-dragbar.ord-w{height:100%;width:7px}

/* Post / kategori sürükle-bırak sıralama */
.js-sort-handle {
	width: 36px;
	padding: 0 !important;
	text-align: center;
	vertical-align: middle;
	cursor: grab;
	user-select: none;
}

.js-sort-handle:active {
	cursor: grabbing;
}

.post-sort-handle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	color: #7e8299;
	background: #f5f8fa;
	border: 1px dashed #d1d5db;
	transition: color .15s ease, background .15s ease, border-color .15s ease;
}

.post-sort-handle:hover {
	color: var(--main-color, #39ae81);
	background: #eef9f4;
	border-color: var(--main-color, #39ae81);
}

tr.is-sorting {
	background: #f8fff9 !important;
	box-shadow: inset 3px 0 0 var(--main-color, #39ae81);
}

.table-sort-placeholder td {
	background: #fcf8e3 !important;
	border: 2px dashed #f1c40f !important;
}

.js-sortable-table tbody tr {
	transition: background-color .15s ease;
}

/* Varyasyon sürükle-bırak sıralama */
.variant-sort-handle,
.variant-option-sort-handle {
	cursor: grab;
	user-select: none;
}

.variant-sort-handle:active,
.variant-option-sort-handle:active {
	cursor: grabbing;
}

.variant-sort-item.variant-is-sorting,
.variant-option-chip.variant-is-sorting {
	box-shadow: inset 3px 0 0 var(--main-color, #39ae81);
	background: #f8fff9 !important;
}

.variant-sort-placeholder {
	visibility: visible !important;
	min-height: 64px;
}

.variant-option-sort-placeholder {
	visibility: visible !important;
	display: inline-flex !important;
	min-width: 80px;
	min-height: 38px;
}

/* Video Galeri */
.video-thumb-sm {
	width: 80px;
	height: 48px;
	border-radius: 6px;
	overflow: hidden;
	background: #f5f5f5;
}

.video-thumb-sm img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#videoContainer .video-card {
	border: 1px solid #eff2f5;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	height: 100%;
	transition: box-shadow .2s ease, transform .2s ease;
}

#videoContainer .video-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,.08);
	transform: translateY(-2px);
}

#videoContainer .video-card-thumb {
	position: relative;
	aspect-ratio: 16/9;
	background: #111;
}

#videoContainer .video-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

#videoContainer .video-type-badge {
	position: absolute;
	top: 8px;
	left: 8px;
}

#videoContainer .video-card-body {
	padding: 12px;
}

#videoContainer .video-sort-placeholder {
	border: 2px dashed #c9d2dc;
	border-radius: 10px;
	min-height: 180px;
	background: #f9fafb;
}

/* Video form */
.video-form-section {
	padding: 1.25rem 0;
	border-bottom: 1px dashed #e4e6ef;
}

.video-form-section:last-of-type {
	border-bottom: 0;
}

.video-form-section-head {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-weight: 600;
	font-size: 1rem;
	color: #181c32;
	margin-bottom: 1.25rem;
}

.video-form-section-head i {
	font-size: 1rem;
}

.video-form-thumb-preview {
	max-width: 320px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #eff2f5;
	background: #f9f9f9;
}

.video-form-thumb-preview img {
	display: block;
	width: 100%;
	max-height: 140px;
	object-fit: cover;
}

.video-form-actions {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding-top: 1.5rem;
	margin-top: .5rem;
	border-top: 1px solid #eff2f5;
}

.video-form .select2-container {
	width: 100% !important;
}

.video-form .form-label {
	margin-bottom: .4rem;
	font-weight: 500;
}

.video-form .form-text {
	margin-top: .35rem;
}

.video-linked-post-preview {
	border: 1px dashed #e4e6ef;
	border-radius: 8px;
	background: #f9f9f9;
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.video-linked-post-preview img {
	display: block;
	width: 100%;
	max-height: 160px;
	object-fit: cover;
}

.video-linked-post-preview-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: 1.5rem 1rem;
	color: #a1a5b7;
	text-align: center;
	font-size: .85rem;
}

.video-linked-post-preview-empty i {
	font-size: 1.75rem;
	opacity: .45;
}

.video-bulk-urls {
	min-height: 180px;
	font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
	font-size: .85rem;
	line-height: 1.5;
}

.video-bulk-table .video-thumb-sm {
	width: 72px;
	height: 48px;
}

.video-bulk-table .video-thumb-sm img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-bulk-table .form-control-sm {
	font-size: .85rem;
}

.video-bulk-table tr.is-invalid td {
	background: #fff5f8;
}

.video-bulk-status {
	font-size: .85rem;
	color: #7e8299;
}

.symbol>img{
    object-fit: contain !important;
}

.ecom-tile {
    border: 1px solid #eff2f5;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.ecom-tile:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.10);
    transform: translateY(-3px);
    border-color: #d0d5dd;
}
.ecom-tile__icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}