/**
 * placeholder-loading v0.6.0
 * Author: Zalog (https://www.zalog.ro/)
 * License: MIT
 **/

:root {
    --placeholder-bg: #ced4da;
}

body[theme="dark"] {
    --placeholder-bg: #2f3c4c;
}


.ph-item {
    border: 1px solid #e6e6e6;
    border-radius: 2px;
    direction: ltr;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 15px 15px;
    position: relative
}

.ph-item.p-0 {
    padding: 0;
}

[dir="rtl"] .ph-item {
    direction: rtl;
}

.ph-item,
.ph-item *,
.ph-item :after,
.ph-item :before {
    box-sizing: border-box
}

.ph-item:before {
    -webkit-animation: ph-animation .8s linear infinite;
    animation: ph-animation .8s linear infinite;
    background: linear-gradient(145deg, hsla(0, 0%, 100%, 0) 46%, hsla(0, 0%, 100%, 0.122) 50%, hsla(0, 0%, 100%, 0) 54%) 50% 50%;
    bottom: 0;
    content: " ";
    left: 50%;
    margin-left: -250%;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 500%;
    z-index: 1
}

.ph-item > * {
    display: flex;
    flex: 1 1 auto;
    flex-flow: column;
    margin-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px
}

.ph-item.p-0 > * {
    margin: 0;
    padding: 0;
}

.ph-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: -7.5px
}

.ph-row div {
    background-color: var(--placeholder-bg);
    height: 10px;
    margin-top: 8px
}

.ph-row .big,
.ph-row.big div {
    height: 15px
}

.ph-row .empty {
    background-color: hsla(0, 0%, 100%, 0)
}

.ph-col-2 {
    flex: 0 0 16.6666666667%
}

.ph-col-4 {
    flex: 0 0 33.3333333333%
}

.ph-col-6 {
    flex: 0 0 50%
}

.ph-col-8 {
    flex: 0 0 66.6666666667%
}

.ph-col-10 {
    flex: 0 0 83.3333333333%
}

.ph-col-12 {
    flex: 0 0 100%
}

[class*=ph-col] {
    direction: ltr
}

[class*=ph-col] > * + .ph-row {
    margin-top: 0
}

[class*=ph-col] > * + * {
    margin-top: 7.5px
}

.ph-avatar {
    background-color: var(--placeholder-bg);
    border-radius: 50%;
    min-width: 60px;
    overflow: hidden;
    position: relative;
    width: 100%
}

.ph-avatar:before {
    content: " ";
    display: block;
    padding-top: 100%
}

.aspect-ratio-1-1 {
    --aspect-ratio: 1; /* Square */
}

.aspect-ratio-16-9 {
    --aspect-ratio: 16 / 9; /* Widescreen */
}

.aspect-ratio-21-9 {
    --aspect-ratio: 21 / 9; /* Ultra Widescreen */
}

.aspect-ratio-3-1 {
    --aspect-ratio: 3 / 1; /* Standard */
}

.aspect-ratio-4-3 {
    --aspect-ratio: 4 / 3; /* Standard */
}

.ph-picture {
    background-color: var(--placeholder-bg);
    height: 100%;
    width: 100%
}

.ph-picture-custom {
    aspect-ratio: var(--aspect-ratio);
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    width: 100%;
}

@-webkit-keyframes ph-animation {
    0% {
        transform: translate3d(-30%, 0, 0)
    }

    to {
        transform: translate3d(30%, 0, 0)
    }
}

@keyframes ph-animation {
    0% {
        transform: translate3d(-30%, 0, 0)
    }

    to {
        transform: translate3d(30%, 0, 0)
    }
}
