﻿.centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.avatar-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 3%;
    display: block;
    cursor: pointer;
}

.avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3%;
    background-color: rgba(0, 0, 0, 0.25);
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}

.card-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 4px;
    overflow-x: auto;
}

.card {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    user-select: none;
}

.dragging {
    opacity: 0.5;
}

.placeholder {
    border: 2px dashed #999;
    border-radius: 8px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-inner {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.cf-turnstile * { //Для капчи от cloudflare, чтоб она не росла внезапно
    height: 0;
}