@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    font-family: Roboto, serif;
}

.row-actions {
    display: flex;
    align-items: center;
    gap: 10px;

    svg {
        width: 18px;
        height: 18px;
    }

    .delete-link svg {
        width: 20px;
        height: 20px;

        path {
            stroke: #d90000;
        }
    }
}

.navbar.shadow-sm {
    box-shadow: none !important;
    border-bottom: 1px solid #eaeaea;
}

.navbar {
    a {
        color: #000;
    }
}

.hidden-elem {
    display: none !important;
}

form {
    input[type=text], input[type=password], input[type=file], input[type=number], textarea, select {
        background-color: #fff !important;
    }
}
.user-avatar {
    width: 100%;
    max-width: 250px;
}
.alert {
    ul {
        margin: 0 0 0 20px;
        padding: 0;
    }
}
.form-check-input + .form-check-label {
    opacity: 0.5;
    transition: opacity 0.1s ease;
}

.form-check-input:checked + .form-check-label {
    opacity: 1;
    color: #000 !important
}
.flat-input {
    border: 1px solid silver;
    border-radius: 4px;
    box-shadow: none !important;
    outline: none !important;
}
.copy-link {
    svg {
        /*width: 21px;*/
        /*height: 21px;*/
    }
}
.table-extra-small {
    font-size: 11px;
}
.pos-input {
    border: 1px solid silver;
    border-radius: 4px;
    text-align: center;
    max-width: 50px;
}
.model-tags-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    flex-wrap: wrap;
    gap: 2px;

    li {
        display: flex;
        align-items: center;
        gap: 10px;

        .tag-title {
            flex: 1;
        }
        .tag-value-checkbox {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 100px;
            width: 100%;
        }
        .tag-value-input {
            border: 1px solid #b3b3b3;
            border-radius: 4px;
            text-align: center;
            max-width: 100px;
        }
    }
}
.title-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    svg {
        width: 14px;
        height: 14px;
    }
}
.light-button {
    display: inline-block;
    background-color: #f6f8fa;
    color: #24292f;
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
}

.light-button:hover {
    background-color: #f3f4f6;
    border-color: rgba(27, 31, 35, 0.2);
}
.plan-flex-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.justify-content-end {
    justify-content: flex-end;
}
.fields-box {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 50%;

    .fields-row {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 5px;

        input {
            border: 1px solid #cbcbcb;
            border-radius: 3px;
            flex: 1;
        }


        .delete-field-link {
            svg {
                width: 20px;
            }
            width: 20px;
        }
    }
}
.open-task {
    text-decoration: none;
    color: #000;

    img {
        width: 80px;
        border-radius: 4px;
    }
}
.popup-results {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;

    .result-item {
        width: 200px;

        img {
            width: 100%;
            border-radius: 5px;
        }

        video {
            width: 100%;
            border-radius: 5px;
        }
    }
}
.style-preview {
    border-radius: 5px;
    width: 140px;
    height: 140px;
}
.style-preview-small {
    border-radius: 5px;
    width: 70px;
    height: 70px;
}
.style-examples {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px;

    li {
        position: relative;
        width: 140px;
        height: 140px;
    }
}
.delete-style-example {
    position: absolute;
    top: 0;
    right: 5px;

    svg {
        width: 14px;
        height: 14px;

        path {
            stroke: #c80000;
        }
    }
}
.disabled-item {
    opacity: 0.3;
}
