﻿/* Make the text in the brand (title of site) align left */
.sidebar-brand {
    text-align: left;
}

.avatar {
    object-fit: cover;
    object-position: top;
}
.company-logo {
    object-fit: contain;
}
.feather-16 {
    width: 16px;
    height: 16px;
}

.feather-24 {
    width: 24px;
    height: 24px;
}

.feather-32 {
    width: 32px;
    height: 32px;
}
.table-bordered{
    border:none;
}
.borderless-table th {
    border: none;
}
.borderless-table td {
    border-left: none;
    border-right: none;
}
/*.select2-container--bootstrap4 .select2-selection--single {
    padding: .5rem 1.45rem .4rem .7rem;
}*/
.select2-container .select2-selection--single .select2-selection__rendered{
    overflow:unset;
}
/* Profile picture */
.avatar {
    width: 35px;
    height: 35px;
}

/*File upload / filepond*/

.filepond--root {
    background: white;
    overflow: hidden;
    font-size: 66%;
    opacity: 0.5;
    font-weight: 100;
    min-width: 100%;
    float: left;
    padding: 0;
    margin-bottom: 0.5em;
    margin-top: 0em;
    width: 9em;
    margin-left: -0.5em;
}

.filepond--root .filepond--drop-label {
    background: white;
    min-height: 15em;
}

.filepond--drop-label.filepond--drop-label label {
    cursor: pointer;
    border: 1px dashed #b1afaf;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 0.4em;
    font-size: 1.5em;
    width: 100%;
    padding: 2.5em;
}

.filepond--label-action:focus {
    outline: none !important;
}
/*Checkbox Styling*/
.custom-checkbox-row input[type="checkbox"] {
	margin: 0;
	opacity: 0;
}
.custom-checkbox-row {
    position: relative;
    margin-top: 0.4em !important;
}
.custom-checkbox-row input[type="checkbox"] + span {
	padding-left: 18px;
	display: inline-block;
}
.custom-checkbox-row input[type="checkbox"] + span::before {
	border-color: #dddddd;
	border-radius: 4px;
	border-style: solid;
	border-width: 1px;
	content: "";
	cursor: pointer;
	display: inline-block;
	height: 25px;
	left: 0;
	position: absolute;
	transition: 0.3s linear all;
	width: 25px;
}
.custom-checkbox-row input[type="checkbox"] + span::before {
	background-color: #ffffff;
    transform: scale(0.72);
    border-radius: 0.25em;
    border: 1px solid #c3c2c2;
}
.custom-checkbox-row input[type="checkbox"]:checked + span::before {
	background-color: #E1F0FF;
    border-style: solid;
    transform: scale(0.75);
    border-color: #E1F0FF;
    border-radius: 0.25em;
}
.custom-checkbox-row input[type="checkbox"]:checked + span::after {
	transform: scale(1);
	opacity: 1;
}
.custom-checkbox-row input[type="checkbox"]:checked + span::after {
	color: #3f80ea;
    content: "\2714";
    cursor: pointer;
    /*font-family: 'FontAwesome';*/
    left: 7px;
    position: absolute;
    top: 2px;
    transform: scale(0.8);
    transition: 0.3s linear all;
}
.custom-checkbox-row input[type="checkbox"] + span::after {
	transform: scale(2);
	opacity: 0;
}
.custom-checkbox-row input[type="checkbox"] + span::after {
	content: "";
	transform: scale(0);
	transition: 0.3s linear all;
}

.checkbox-style:before {
    border: none;
}
/* Validation Errors*/
.input-validation-error {
    border: 1px solid red;
}
.form-width {
    width: 60%;
}
@media screen and (max-width: 1440px) {
    .form-width {
        width: 85%;
    }
}

@media screen and (max-width: 1200px) {
    .form-width {
        width: 100%;
    }
    .custom-table-responsive {
        width: 60rem;
    }
}


.sort-ghost {
    background-color: #aaa;
}