﻿
div.dataTables_wrapper div.dataTables_filter {
    text-align: unset !important;
}


    div.dataTables_wrapper div.dataTables_filter label {
        width: 100% !important;
    }

    div.dataTables_wrapper div.dataTables_filter input {
        width: calc(100% - 55px);
    }

div.dataTables_wrapper div.dataTables_info {
    padding-top: 0.5em !important;
}

.tagify__dropdown.extra-properties .tagify__dropdown__item > img {
    display: inline-block;
    vertical-align: middle;
    height: 20px;
    transform: scale(.75);
    margin-right: 5px;
    border-radius: 2px;
    transition: .12s ease-out;
}

.tagify__dropdown.extra-properties .tagify__dropdown__item--active > img,
.tagify__dropdown.extra-properties .tagify__dropdown__item:hover > img {
    transform: none;
    margin-right: 12px;
}

.tagify.countries .tagify__input {
    min-width: 175px;
}

.tagify.countries tag {
    white-space: nowrap;
}

    .tagify.countries tag img {
        display: inline-block;
        height: 16px;
        margin-right: 3px;
        border-radius: 2px;
    }

.tagify {
    --tag--min-width: 3ch !important;
    --tag--max-width: 3ch !important;
}


    .tagify .tagify__tag .tagify__tag__removeBtn:after {
        margin-left: 10px;
    }

hint {
    font-size: 80%;
    font-weight: 400;
    margin-left: 2px;
    width: 100%;
    margin-top: 0.25rem;
}

.img-checkcard {
    border: 1px solid #efefef;
    box-shadow: 0 0 5px 2px #efefef;
    border-radius: 5px;
    height: 175px;
    margin-bottom: 15px;
}

    .img-checkcard .img-checkimage {
        padding: 10px;
    }

        .img-checkcard .img-checkimage img {
            width: 100%;
            -o-object-fit: contain;
            object-fit: contain;
        }

.img-fluid {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
    cursor: pointer;
    height: 150px;
}


/*Fixing Footer*/
.kt-grid.kt-grid--hor:not(.kt-grid--desktop):not(.kt-grid--desktop-and-tablet):not(.kt-grid--tablet):not(.kt-grid--tablet-and-mobile):not(.kt-grid--mobile) > .kt-grid__item.kt-grid__item--fluid, .kt-grid.kt-grid--hor:not(.kt-grid--desktop):not(.kt-grid--desktop-and-tablet):not(.kt-grid--tablet):not(.kt-grid--tablet-and-mobile):not(.kt-grid--mobile) > .kt-grid__item.kt-grid__item--fluid {
    min-height: 82vh;
}

/*Make tablist scrollable*/
.nav-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    display: -webkit-box;
    display: -moz-box;
    flex-wrap: nowrap;
}

    /*.nav-tabs:hover {
        overflow-x: auto;
    }*/

    .nav-tabs.nav-tabs-line.nav-tabs-line-brand.nav.nav-tabs .nav-link:hover, .nav-tabs.nav-tabs-line.nav-tabs-line-brand.nav.nav-tabs .nav-link.active, .nav-tabs.nav-tabs-line.nav-tabs-line-brand a.nav-link:hover, .nav-tabs.nav-tabs-line.nav-tabs-line-brand a.nav-link.active {
        color: #5d78ff;
        border-bottom: 7px solid #5d78ff !important;
    }

    .nav-tabs .nav-link {
        white-space: nowrap;
    }


/*change the thinkness of the scrollbar here*/
::-webkit-scrollbar {
    width: 1px;
    height: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
/*add a shadow to the scrollbar here*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
/*this is the little scrolly dealio in the bar*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(135, 154, 230);
    height: 3px;
}
/*nobody needs this little scrollbar corner, I mean really, get rid of it haha*/
::-webkit-scrollbar-corner {
    display: none;
    height: 0px;
    width: 0px;
}

/*Fixing Multiselect styles*/
.multiselect, .multiselect__input, .multiselect__single {
    font-size: 12px !important;
}

/*Required Fields*/
requiredLabel::after {
    content: " *";
    color: red;
}

.form-group requiredLabel {
    font-size: 1rem;
    font-weight: 400;
}

requiredLabel {
    display: inline-block;
    margin-bottom: 0.5rem;
}


/*Enhance Badges*/
.badge-info, .badge-success, .badge-danger, .badge-warning, .badge-secondary {
    padding: 2px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 95%;
}

.salonati-badge {
    text-transform: uppercase;
    font-weight: 500;
    background: #c6486f;
    color: white;
    margin-left: 20px;
}

.tag-container {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}

/*Left and Right Modals*/
.modal.left .modal-dialog,
.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 425px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal.left .modal-body,
.modal.right .modal-body {
    padding: 15px 15px 80px;
}

/*Left*/
.modal.left.fade .modal-dialog {
    left: -425px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.show .modal-dialog {
    left: 0;
}

/*Right*/
.modal.right.fade .modal-dialog {
    right: -425px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.show .modal-dialog {
    right: 0;
}

.help-modal {
    border-radius: unset !important;
}

@media (max-width: 475px) {
    .modal.left .modal-dialog,
    .modal.right .modal-dialog {
        width: 90% !important;
    }
}

/*Generic Header for Pages that does not require login (Help for exposed pages)*/
.kt-generic-header {
    background-color: #1a1a27;
    -webkit-box-shadow: 0px 1px 9px -3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 9px -3px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 15px;
    height: 50px;
    min-height: 50px;
    position: relative;
    z-index: 1;
}

    .kt-generic-header .kt-generic-header__logo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

.btn-primary {
    background-color: #a5304d;
    border-color: #a5304d;
}

    .btn-primary:hover {
        background-color: #8e2b44;
        border-color: #8e2b44
    }

    .btn-primary:not([disabled]):not(.disabled).active, .btn-primary:not([disabled]):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
        background-color: #8e2b44;
        border-color: #8e2b44;
        box-shadow: 0 0 0 0.2rem rgba(142, 43, 68, .5)
    }

    .btn-primary.focus, .btn-primary:focus {
        box-shadow: 0 0 0 0.2rem rgba(142, 43, 68, .5)
    }

    .btn-primary.disabled, .btn-primary:disabled {
        background-color: #a5304d;
        border-color: #a5304d
    }

.nav-tabs .nav-item .nav-link.active, .nav-tabs .nav-item .nav-link:active, .nav-tabs .nav-item .nav-link:hover {
    color: #ffffff !important;
    background-color: #5d78ff !important;
}