.no-resize {
    resize: none;
}

input, textarea, select {
    border: 1px solid #ccc !important;
}

.cursor-pointer {
    cursor: pointer;
}

.langIcon {
    height: 50px;
    width: 50px;
    object-fit: contain;
    display: block;

    &-sm {
        height: 25px;
        width: 25px;
    }
}


.ql-editor {
    img {
        max-width: 200px !important;
        object-fit: scale-down;
        display: inline-block;
        margin: 5px;
    }
}

.chamfer {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0 50%);
}

input[type=checkbox] {
    cursor: pointer;
}

.checkedImage {
    position: relative;


    &:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        height: 30px;
        width: 30px;
        background: red;
        transform: translate(0, -50%);
        clip-path: polygon(
                        50% 0%, 61% 35%, 98% 35%, 68% 57%,
                        79% 91%, 50% 70%, 21% 91%, 32% 57%,
                        2% 35%, 39% 35%
        );
    }

}

.row-gap-3 {
    row-gap: 1rem;
}

.dataTables_filter {
    display: flex;
    justify-content: flex-end;
}

.select2 {
    //box-sizing: border-box;
    //border: 1px solid #ccc !important;
    &-container {
        width: 100%;
    }

    .selection {
        display: block;
        //border: 1px solid #ccc;
        //border-radius: 2px;

    }

    &-selection {
        &--single {

            //border: 1px solid red;
            //height: unset;
        }

        &__rendered {
            //border: transparent;
        }

    }
}

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

.select2-border {
    border: 1px solid #ccc !important;
}

.select2-search__field {
    min-height: unset !important;
    line-height: 1 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.select2-container--default .select2-selection--single {
    height: auto;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {

    height: auto;
    line-height: 1;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #3e5569;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 2px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}