/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100,400&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Acme&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Pirata+One&display=swap');

:root {
    --color-proposed: #fbd053;
    --color-active: #d7ebdb;
    --color-gray: #898989;
    --color-nav-bg: #f06665;
}

* {
    box-sizing: border-box;
}

.pointer {
    cursor: pointer;
}

.color-gray {
    color: var(--color-gray);
}

body {
    background-color: #f5f8fb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
        "Segoe UI Symbol";
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
}

a:hover,
a:active {
    text-decoration: underline;
}

.font-acme {
    font-family: "Acme", sans-serif;
}

.v-hidden {
    visibility: hidden;
}
.v-visible {
    visibility: visible;
}
.display-none {
    display: none;
}
.display-block {
    display: block;
}

.opacity0 {
    opacity: 0;
}

.opacity1 {
    opacity: 1;
}

.header {
    position: relative;
    margin-bottom: 96px;
    background-color: var(--color-nav-bg);
}

.navbar {
    color: white;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.navbar .brand {
    font-family: 'Pirata One', cursive;

}
.nav-search-area{
    min-width: 500px
}

.nav-search-area input {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
}

.nav-filters{
    margin: 8px 0;
}

.nav-filter-head{
    font-weight: bold;
}

.nav-filter-btn{
    user-select: none;
    cursor: pointer;
    display: inline-block;
    padding: 4px 8px;
    border: 1px solid #fff;
    border-radius: 5px;
}
.nav-filter-btn:hover{
    background-color: #f8a4a4;
}
.nav-filter-btn.active{
    background-color: white !important;
    color: var(--color-nav-bg);
}

.navbar h1,
.navbar p {
    font-weight: 400;
    line-height: 1.2;
    font-size: 1.2rem;
    margin: 0;
}


.searchProjects-sm-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divider svg {
    position: relative;
    display: block;
    width: calc(144% + 1.3px);
    height: 85px;
}

.divider .shape-fill {
    fill: var(--color-nav-bg);
}

tr {
    line-height: 30px;
    min-height: 30px;
    height: 30px;
}

td.projectCode{
    position: relative;
    overflow: hidden;
}

td.projectCode::after{
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    bottom: 0px;
    left: 2px;
    background-color: #f06665;
    transform: translateX(-105%);
}
td.mousedown.projectCode::after{
    transition: all 900ms ease;
    transition-delay: 100ms;
    transform: translateX(0);
}


/*****************************************************/

.new-client-table .table-head{
    display: flex;
    height: 40px;
    border-bottom: 2px solid red;
    border-top: 2px solid red;
}

.new-client-table .table-head div{
    font-weight: bold;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 8px;
}

.new-client-table .project{
    border-bottom: 1px solid red;
}

.new-client-table .project .basics{
    display: flex;
    height: 40px;
}

.new-client-table .project .basics div{
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.new-client-table .project .details{
    position: static;
    display: flex;
    height: 40px;
}

.new-client-table .project .details div{
    padding: 0 8px;
    display: flex;
    align-items: center;
}

.new-client-table .project .details .project-steps{
    flex: 60% 1 1;
}
.new-client-table.project .details .jira-details{
    flex: 40% 1 1;
}

.new-client-table .code{
    flex: 100px 0 0;
    min-width: 100px;
}
.new-client-table .project-name{
    flex: 1;
}
.new-client-table .comments{
    flex: 1;
}
.new-client-table .status{
    flex: 175px 0 0;
}
.new-client-table .priority{
    flex: 50px 0 0;
}
.new-client-table .priority i{
    display: block;
    margin: 0 auto;
    font-size: 24px;
}
.new-client-table .actions{
    flex: 100px 0 0;
}
.new-client-table .actions i{
        display: block;
    margin: 0 auto;
    font-size: 24px;
}

.new-client-table .historical-projects{
    display: none;
}
.new-client-table .historical-projects.show{
    display: block;
}
/*****************************************************/


.client {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: all 0.2s ease-in-out;
}

.client:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;

}

.client-table {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
    transition: box-shadow 0.6s;
}

.client-table:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.client-table-head {
    display: flex;
    justify-content: space-between;
}

.client:hover {
    transform: scale(1.03);
}

.card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 0.5rem 0;
}
.card-head h3 {
    padding-left: 25px;
    position: relative;
    cursor: pointer;
    margin: 0;
}

.card-head h3 .circle{
    border-radius: 50%;
    position: absolute;
    width: 15px;
    height: 15px;
    top: 3px;
    left: 0;
    background-color: #1fe4f5;
}

.project-row{
    position: relative;
}
.project-row.active{
    background-color: #cecece;
}
.project-row td{
    border-top-width: 1px;
    border-bottom: none;
}

.project-row .details{
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid greenyellow;
}

.priority span {
    padding-left: 25px;
}

.priority span::before {
    border: 1px solid black;
    content: "";
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
}
.priority.status-default span::before {
    background-color: green;
}
.priority.status-medium span::before {
    background-color: orange;
}
.priority.status-high span::before {
    background-color: red;
}

.status,
.priority {
    cursor: pointer;
    position: relative;
    user-select: none;
}

.status-list{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-0%);
    transition: 0.2s;
    z-index: 10;
    user-select: none;    
}

.priority-list {
    position: absolute;
    top: 140%;
    left: 0;
    right: 0;
    width: 100px;
    transform: translateY(-0%);
    transition: 0.2s;
    z-index: 10;
    user-select: none;
}

tr.active {
    color: red;
    background-color: #919191;
}
.project-buttons{
    /* display: flex; */
}

.project-buttons button.btn {
    position: relative;
}
.project-buttons button.btn:hover .tooltiptext {
    visibility: visible;
    opacity: 0.8;
}

.project-buttons button.btn .tooltiptext {
    visibility: hidden;
    position: absolute;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
    opacity: 0;
    transition: opacity .6s;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
}

.checkmark {
    display: inline-block;
    transform: rotate(45deg);
    height: 25px;
    width: 12px;
    border-bottom: 4px solid #a8a8a8;
    border-right: 4px solid #a8a8a8;
}
.delete-project{
    display: inline-block;
}

.comments-input-group,
.comments-text {
    transition: 0.2s;
}
.projectName{
    /* height: 55px; */
}
.project-name-text{
    /* height: 55px; */
    overflow: scroll;
}

.table-hover > tbody > tr:hover > .priority {
    position: relative;
    padding-right: 0 !important;
}

.project-row:hover{
    background-color: rgba(0, 0, 0, 0.075) !important;
}

div.dategroup i.bi-trash3-fill {
    position: absolute;
    right: 5px;
    color: red;
    opacity: 0;
    scale: 0;
    transition: all 0.2s;
    cursor: pointer;
}

div.dategroup[data-has-value="true"]:hover i.bi-trash3-fill {
    scale: 1;
    opacity: 1;
}
div.dategroup:hover{
    border-bottom: 2px solid black;
}

div.dategroup.active,
div.dategroup:focus,
div.dategroup{
    position: relative;
    border-bottom: 2px solid transparent;
    display: flex;
    transition: all 0.5s;
    align-items: center;
}
input.datepick.active,
input.datepick:focus,
input.datepick{
    cursor: pointer;
    outline: none;
    border: none;
    background-color: inherit !important;
    width: unset;
    box-shadow:none;
    flex-grow: 1;
}

.project-details td:first-child{
    /* padding: 12px 50px; */
    border-right: 2px solid rgba(164, 164, 164, 0.606)
}

.task-item{
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.task-item:hover{
    background-color: #dbdbdb !important;
}

.task-item button{
    color: red;
    opacity: 0;
    transition: all 0.3s;
}

.task-item:hover button{
    opacity: 1;
}

.task-checked{
    text-decoration: line-through !important;
    color: #878787 !important;
}

.project-time{
    position: relative;
    height: 1px;
}


.jira-details{
    padding: 12px;
    overflow-y: scroll;
    min-height: 300px;
    height: 100%;
    position:relative;
}
.jira-details-header{
    margin-left: -12px;
    margin-right: -12px;
}

.jira-stats{
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 8px;
    align-items: center;
}

.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 {
    grid-area: 1 / 2 / 2 / 3;
}
.div3 { grid-area: 1 / 3 / 2 / 4; }
.div4 { grid-area: 2 / 1 / 3 / 2; }
.div5 { grid-area: 2 / 2 / 3 / 3; }
.div6 { grid-area: 2 / 3 / 3 / 4; }
.div7 { grid-area: 3 / 1 / 4 / 2; }
.div8 { grid-area: 3 / 2 / 4 / 3; }
.div9 { grid-area: 3 / 3 / 4 / 4; }

.jira-row-bar{
    width: 95%;
    height: 10px;
    border-radius: 10px;
    background-color: rgb(198, 198, 198);
}
.jira-row-bar-cover{
    width: attr(data-width);
    height: 100%;
    border-radius: 10px;
    background-color: rgb(0, 41, 77);
}


/* Color Themes Start */
.aqua {
    background: radial-gradient(#1fe4f5, #3fbafe);
}
.aqua-border {
    color: #3fbafe;
    border-bottom: 2px solid #3fbafe !important;
    border-top: 2px solid #3fbafe !important;
}

.salmon {
    background: radial-gradient(#fbc1cc, #fa99b2);
}

.salmon-border {
    color: #fa99b2;
    border-bottom: 2px solid #fa99b2 !important;
    border-top: 2px solid #fa99b2 !important;}

.violet {
    background: radial-gradient(#76b2fe, #b69efe);
}

.violet-border {
    color: #a285fc;
    border-bottom: 2px solid #b69efe !important;
    border-top: 2px solid #b69efe !important;}

.emeralds {
    background: radial-gradient(#60efbc, #58d5c9);
}

.emeralds-border {
    color: #3fbafe;
    border-bottom: 2px solid #3fbafe !important;
    border-top: 2px solid #3fbafe !important;}

.coral {
    background: radial-gradient(#f588d8, #c0a3e5);
}
.coral-border {
    color: #b69efe;
    border-bottom: 2px solid #b69efe !important;
    border-top: 2px solid #b69efe !important;}

.vanilla {
    background: radial-gradient(circle, #c1e9a6, #76d9b0 100%);
}
.vanilla-border {
    color: #76d9b0;
    border-bottom: 2px solid #76d9b0 !important;
    border-top: 2px solid #76d9b0 !important;}

.orange {
    background: radial-gradient(#fae3af 0%, #f5bb64 100%);
}
.orange-border {
    color: #f5bb64;
    border-bottom: 2px solid #f5bb64 !important;
    border-top: 2px solid #f5bb64 !important;}

/* Color Themes End */

.postponed,
.proposed {
    background-color: #f78f95 !important;
}

.estimatesent,
.estimateneeded {
    background-color: #fbbc7d !important;
}

.approved {
    background-color: #90d2bb !important;
}

.active {
    background-color: #49bea1 !important;
}

.completed {
    background-color: #b8bdc1 !important;
}

.onhold {
    background-color: #f4ce76 !important;
}

.cancelled {
    background-color: #df5154 !important;
}

.status-default {
    color: green !important;
}

.status-default:hover {
    color: green !important;
}

.status-medium {
    color: orange !important;
    /* font-weight: bold; */
}

.status-medium:hover {
    color: orange !important;
    /* font-weight: bold; */
}

.status-high {
    color: red !important;
    /* font-weight: bold; */
}

.status-high:hover {
    color: red !important;
    /* font-weight: bold; */
}

.top-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.top-curve svg {
    position: relative;
    display: block;
    width: calc(295% + 1.3px);
    height: 203px;
}

.top-curve .shape-fill {
    fill: #ffffff;
}
.container-signin {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #9053c7;
    background: -webkit-linear-gradient(-135deg, #c850c0, #4158d0);
    background: -o-linear-gradient(-135deg, #c850c0, #4158d0);
    background: -moz-linear-gradient(-135deg, #c850c0, #4158d0);
    background: linear-gradient(-135deg, #c850c0, #4158d0);
}

.wrap-signin {
    width: 960px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 150px 100px 150px 100px;
}

.signin-card {
    width: 300px;
}

.signin-card input:focus,
.signin-card input:active,
.signin-card input {
    background-color: #f5f5f5;
}

footer{
    background-color:  var(--color-nav-bg);
    margin: 196px 0 0 0;
    padding: 48px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.divider-footer {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg) translateY(100%);
}

.divider-footer svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 77px;
}

.divider-footer .shape-fill {
    fill: var(--color-nav-bg);
}


.spinner {
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  width: 50px;
  height: 50px;
}
.spinner .path {
  stroke:  var(--color-nav-bg);
  stroke-linecap: round;
  -webkit-animation: dash 1.5s ease-in-out infinite;
          animation: dash 1.5s ease-in-out infinite;
}

@-webkit-keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}