/* Typefaces */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");
/* Colors */
/* Background Themes */
/*Gradients*/
/* Sizing */
p {
    margin-bottom: 0 ;
}
.w-5 {
  width: 5% !important;
}

.w-10 {
  width: 10% !important;
}

.w-15 {
  width: 15% !important;
}

.w-33 {
  width: 33% !important;
}

.w-66 {
  width: 66% !important;
}

/* TACK UI Components */
/* Type */
.t-header {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.t-header {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
}
.card-inset {
    background-color: #f4f6f9;
    border-radius: 12.5px;
}
/* Component Mixins */
/* Card Componenets */
/* /Card Componenets */
/* UI Cards */
.t-card-lite {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  border: 0.5px solid transparent;
  border-radius: 10px;
  color: #2b2b2b;
  padding: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(133, 150, 168, 0.15);
  transition: 0.25s ease-in-out;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
}
.t-card-lite:hover {
  box-shadow: 0 0.5rem 1rem rgba(133, 150, 168, 0.35);
  border: 0.5px #3c9dff solid;
}

.t-card-dark {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #2b2b2b;
  border: 0.5px solid transparent;
  border-radius: 10px;
  color: #ffffff;
  padding: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
  transition: 0.25s ease-in-out;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
}
.t-card-dark:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.45);
  border: 0.5px #3c9dff solid;
}

/* Card Banners */
.card-banner-sm {
  margin: -1rem -1rem 1rem -1rem;
  height: 50px;
  border-radius: 10px 10px 0 0;
}

.card-banner-md {
  margin: -1rem -1rem 1rem -1rem;
  height: 100px;
  border-radius: 10px 10px 0 0;
}

.card-banner-lg {
  margin: -1rem -1rem 1rem -1rem;
  height: 200px;
  border-radius: 10px 10px 0 0;
}

.card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 10px 0 0 10px;
}

/* Card Images */
.t-card-img {
  height: 150px !important;
}

.t-card-img img {
  width: 100% !important;
  border-radius: 10px !important;
  margin-bottom: 1rem !important;
  max-height: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* BUTTONS */
/* Solid Buttons */
.btn-blue {
  background-color: #3c9dff !important;
  color: white !important;
}
.btn-blue:hover {
  background-color: #3488dc !important;
}

.btn-rose {
  background-color: #ee4169 !important;
  color: white !important;
}
.btn-rose:hover {
  background-color: #ca3457 !important;
}

.btn-orange {
  background-color: #ff972b !important;
  color: white !important;
}
.btn-orange:hover {
  background-color: #dc852a !important;
}

.btn-lime {
  background-color: #45d66e !important;
  color: white !important;
}
.btn-lime:hover {
  background-color: #3eb560 !important;
}

.btn-purple {
  background-color: #971fe4 !important;
  color: white !important;
}
.btn-purple:hover {
  background-color: #7013ad !important;
}

.btn-black {
  background-color: #121212 !important;
  color: white !important;
}

/* Gradient Buttons */
.btn-blue-gradient {
  background: linear-gradient(135deg, #386dff 0%, #42e9ff 100%) !important;
  color: white !important;
}

.btn-violet-gradient {
  background: linear-gradient(135deg, #ff444d 0%, #bb39b7 100%) !important;
  color: white !important;
}

.btn-orange-gradient {
  background: linear-gradient(135deg, #f7ae40 0%, #fc7531 100%) !important;
  color: white !important;
}

.btn-green-gradient {
  background: linear-gradient(135deg, #40f786 0%, #00d1d1 100%) !important;
  color: white !important;
}

.btn-purple-gradient {
  background: linear-gradient(135deg, #cf40f7 0%, #6200d1 100%) !important;
  color: white !important;
}

.btn-black-gradient {
  background: linear-gradient(135deg, #404359 0%, black 100%) !important;
  color: white !important;
}

/* Outline Buttons */
.btn-outline-blue {
  background-color: transparent !important;
  border: #3c9dff 1px solid !important;
  color: #3c9dff !important;
}
.btn-outline-blue:hover {
  background-color: #3c9dff !important;
  color: white !important;
}

.btn-outline-rose {
  background-color: transparent !important;
  border: #ee4169 1px solid !important;
  color: #ee4169 !important;
}
.btn-outline-rose:hover {
  background-color: #ee4169 !important;
  color: white !important;
}

.btn-outline-orange {
  background-color: transparent !important;
  border: #ff972b 1px solid !important;
  color: #ff972b !important;
}
.btn-outline-orange:hover {
  background-color: #ff972b !important;
  color: white !important;
}

.btn-outline-lime {
  background-color: transparent !important;
  border: #45d66e 1px solid !important;
  color: #45d66e !important;
}
.btn-outline-lime:hover {
  background-color: #45d66e !important;
  color: white !important;
}

.btn-outline-purple {
  background-color: transparent !important;
  border: #971fe4 1px solid !important;
  color: #971fe4 !important;
}
.btn-outline-purple:hover {
  background-color: #971fe4 !important;
  color: white !important;
}

.btn-outline-black {
  background-color: transparent !important;
  border: #121212 1px solid !important;
  color: #121212 !important;
}
.btn-outline-black:hover {
  background-color: #121212 !important;
  color: white !important;
}

/* Corners */
.rounded-pill-sm {
  padding: 0 10px !important;
  border-radius: 50rem !important;
}

/* Colors */
.bg-blue {
  background-color: #3c9dff !important;
}

.bg-rose {
  background-color: #ee4169 !important;
}

.bg-orange {
  background-color: #ff972b !important;
}

.bg-lime {
  background-color: #45d66e !important;
}

.bg-black {
  background-color: #121212 !important;
}

.bg-purple {
  background-color: #971fe4 !important;
}

/* Text Colors */
.text-blue {
  color: #3c9dff !important;
}

.text-rose {
  color: #ee4169 !important;
}

.text-orange {
  color: #ff972b !important;
}

.text-lime {
  color: #45d66e !important;
}

.text-black {
  color: #121212 !important;
}

.text-purple {
  color: #971fe4 !important;
}

/* Gradient Backgrounds */
.bg-blue-gradient {
  background: linear-gradient(135deg, #386dff 0%, #42e9ff 100%) !important;
}

.bg-violet-gradient {
  background: linear-gradient(135deg, #ff444d 0%, #bb39b7 100%) !important;
}

.bg-orange-gradient {
  background: linear-gradient(135deg, #f7ae40 0%, #fc7531 100%) !important;
}

.bg-green-gradient {
  background: linear-gradient(135deg, #40f786 0%, #00d1d1 100%) !important;
}

.bg-purple-gradient {
  background: linear-gradient(135deg, #cf40f7 0%, #6200d1 100%) !important;
}

.bg-black-gradient {
  background: linear-gradient(135deg, #404359 0%, black 100%) !important;
}

.compact-mobile {
    margin: 10px 35px !important;
}

.list-card {
    border-radius: 5px !important;
}

.list-inner-card {
    border-radius: 0 !important;
}
.form-control.error {
    border-color: red !important;
    border-right: 1px solid red !important;
}

/*Custom Page Styling*/

.rotate-arrow {
    transform: rotate( 90deg );
    transition: 0.5s ease;
}


button.nav-link {
    color:#c2c7d0 !important;
    font-size: 16px !important;
}

button.nav-link + svg{
    color: #c2c7d0 !important;
    font-size: 16px !important;
    width: 17px;
    height: 17px;
}

    button.nav-link + svg:hover {
        color: #007bff !important;
    }

.nav-link > svg {
    width: 20px !important;
    height: 20px !important;
}

.nav-link p {
    margin-left: 3px !important;
}
.list-accordion-item {
    margin-left: 12px;
}
.fa-sort-down {
    transition: 0.5s ease;
}
.circle-accent {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 100%;
    margin-right: 5px;
}
p.project-count {
    margin-left: auto !important;
    font-size: 10px !important;
    background-color: #292d32;
    padding: 1px 5px;
    border-radius: 5px;
}
.nav-link.nested-item {
    padding-left: 8px !important;
    padding-right: 0 !important;
}
.project-options {
    color: #c2c7d0 !important;
}

.card-img-fix img {
    width: 100%;
}


.table-td-fix {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;
    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    white-space: normal;
    table-layout:fixed;

}
card table.description-email {
    table-layout: fixed;
}
.comment-email {
    table-layout: fixed;
}
.task-list-view {
    max-height: 244px !important;
}
    .task-list-view .css-reset {
        height: 72px !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.note-editor .note-editing-area .note-editable table td, .note-editor .note-editing-area .note-editable table th {
     border: none !important;
}

.attach-delete {
    right: 10px;
    top: 21px;
}

#lbUserLabels + .select2 .select2-selection__choice {
    border: none !important;
    background: #f2f2f2 !important;
    font-weight: bold !important;
    color: #7d7d7d !important;
    padding: 3px 7.5px 3px 10.5px !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row-reverse;
}
#addLabel {
    border: none !important;
    background: #f2f2f2 !important;
    font-weight: bold !important;
    color: #7d7d7d !important;
    padding: 5px 7.5px !important;
    border-radius: 20px !important;
    font-size: 13px !important;
}
    #addLabel:hover {
        cursor: pointer;
        background-color: #e3e3e3 !important;
    }
    #addLabel:active {
        background-color: #cbcbcb !important;
    }
#lbUserLabels + .select2 .select2-container--default .select2-selection--multiple li.select2-selection__choice {
    color: #7d7d7d !important;
}
#lbUserLabels + .select2 .select2-container--default .select2-selection--multiple span.select2-selection__choice__remove:hover {
    color: #dc3545;
}

#lbUserLabels + .select2 .select2-selection.select2-selection--multiple {
    border: solid 1px lightgray;
}

.select2-container--default .select2-dropdown {
    box-shadow: 0 0.5rem 1rem rgb(133 150 168 / 15%) !important;
}

#lbUserLabels + .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #e32b2b;
}
#lbUserLabels + .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    font-size: 18px;
}

.project-link:hover svg {
    color: #5599ff !important;
}

.project-button:hover {
    color: #5599ff !important;
}

.task-drag:hover {
    cursor: grab;
}
.task-drag:active {
    cursor: grabbing;
}

.project-item-sep:first-of-type {
    border-top: solid #efefef 0.5px;
    border-bottom: solid #efefef 0.5px;
    padding: 7.5px 0;
}

.project-item-sep {
    border-bottom: solid #efefef 0.5px;
    padding: 7.5px 0;
}

.project-page .accordion-button:hover {
    background-color: #f3f3f3;
}
input[type="color"]:hover {
    cursor: pointer;
}
input[type="color"] {
    -webkit-appearance: none;
    border: none;
}

    input[type="color"]::-webkit-color-swatch-wrapper {
        padding: 0;
    }

    input[type="color"]::-webkit-color-swatch {
        border: none;
    }
input[type=color]::-webkit-color-swatch {
    border: none;
    border-radius: 50%;
    padding: 0;
}

input[type=color]::-webkit-color-swatch-wrapper {
    border: none;
    border-radius: 50%;
    padding: 0;
}
.color-input {
    width: 15px;
    height:15px;
}
/* sourceMappingURL=tackui.css.map */
