/***
Position and Layout
 */
.unset {
    position: unset;
}
.relative {
    position: relative;
}
.hidden {
    display: none !important;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.justify-center {
    justify-content: center;
}
.justify-content-end {
    justify-content: end;
}
.justify-content-start {
    justify-content: start;
}
.justify-space-around {
    justify-content: space-around;
}
.justify-space-between {
    justify-content: space-between;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-grow {
    flex-grow: 1;
}
.break {
    flex-basis: 100%;
    height: 0;
}
.align-items-stretch {
    align-items: stretch;
}
.align-items-center {
    align-items: center;
}
.align-items-end {
    align-items: end;
}
.align-self-start {
    align-self: start;
}
.align-self-end {
    align-self: end;
}
.align-self-center {
    align-self: center;
}
.pull-left {
    float: left;
}
.pull-right {
    float: right;
}
/***
Box model
 */
.full-width {
    width: 100%;
}
.half-width {
    width: 50%;
}
.full-height {
    height: 100%;
}
.half-height {
    height: 50%;
}
.box-shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.rounded-box {
    border-radius: 4px;
}
.no-padding {
    padding: 0;
}
.no-padding-right {
    padding-right: 0 !important;
}
.no-margin {
    margin: 0;
}
.border-1 {
    border-width: 1px;
    border-style: solid;
}
.border-top-1 {
    border-top-width: 1px;
    border-top-style: solid;
}
.border-bottom-1 {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
/***
Typography
*/
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.pointer {
    cursor: pointer;
}
.text-decoration-none {
    text-decoration: none;
}
.form-group.has-error label {
    color: var(--danger-color);
}
.form-group.has-error input {
    border-color: var(--danger-color);
}
.has-error .form-control,
.has-error .form-control:focus {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 0.25rem var(--light-grey-color);
}
/**
Scrollbars
 */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--light-grey-color);
}
::-webkit-scrollbar-thumb {
    background: var(--medium-grey-color);
    border-radius: 6px;

}
::-webkit-scrollbar-thumb:hover {
    opacity: 0.9;
}
/**
Buttons
 */
.btn {
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
}
/** Generic **/
.disabled {
    cursor: not-allowed;
}
