﻿/* Common Css */
.loginBackground {
    background-image: url('../../Images/desktop.png');
    width: 100%;
    height: 950px;
}
a, a:focus, a:active {
    outline: none;
    text-decoration: none !important;
    color: #555555;
    cursor: pointer;
}

.btn:focus, .btn:active:focus {
    outline: none;
}

*:focus {
    outline: none;
}

body, html {
    background: #FFFFFF;
}

body {
    -webkit-font-smoothing: antialiased;
    font-family: 'Open sans',sans-serif;
    font-size: 14px;
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6, p, li {
    margin: 0;
    padding: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.w-auto {
    width: auto !important;
}

textarea, input[type='text'], input[type='email'], input[type='search'], input[type='password'] {
    -webkit-appearance: none;
}

label {
    font-weight: normal;
}

img {
    max-width: 100%;
}

.btn {
    transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -webkit-transition: all .3s ease-out 0s;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.spinloader-container {
    position: relative;
}

.spin-loader {
    border-radius: 50%;
    border: 2px dotted #00bfa5;
    width: 20px;
    height: 20px;
    animation: 1.64s spining infinite linear;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    margin: auto;
}

@keyframes spining {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.rotate-arrow-90 {
    transform: rotate(90deg);
    transition: 0.5s;
}

.rotate-arrow-0 {
    transform: rotate(0deg);
}

.draggable {
    position: relative;
}

    .draggable:before {
        background-image: url(../../Images/final-images/draggable.png);
        background-repeat: no-repeat;
        background-position: 0 center;
        content: '';
        position: absolute;
        left: -4px;
        top: 0;
        width: 10px;
        bottom: 0;
        margin: auto;
        opacity: 0;
    }

.task-container:hover .draggable:before {
    opacity: 1;
}

.cursor-notallowed.task-container:hover .draggable:before {
    opacity: 0;
}

.word-break-all {
    word-break: break-all;
}

/* Ellipsis Loader */
.ellipsis-loader span:nth-child(1) {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    background: rgba(245, 103, 115,0.6);
}

.ellipsis-loader span {
    vertical-align: middle;
    border-radius: 100%;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 3px 2px;
    -webkit-animation: loader1 0.8s linear infinite alternate;
    animation: loader1 0.8s linear infinite alternate;
}

    .ellipsis-loader span:nth-child(2) {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
        background: rgba(245, 103, 115,0.8);
    }

    .ellipsis-loader span:nth-child(3) {
        -webkit-animation-delay: -0.26666s;
        animation-delay: -0.26666s;
        background: rgba(245, 103, 115,1);
    }

    .ellipsis-loader span:nth-child(4) {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
        background: rgba(245, 103, 115,0.8);
    }

@keyframes loader1 {
    from {
        transform: scale(0, 0);
    }

    to {
        transform: scale(1, 1);
    }
}

@-webkit-keyframes loader1 {
    from {
        -webkit-transform: scale(0, 0);
    }

    to {
        -webkit-transform: scale(1, 1);
    }
}

/*standard Style Start */
::-moz-selection {
    color: #fff;
    background: #01a28c !important;
}

::selection {
    color: #fff;
    background: #3044C5 !important;
}

input::-ms-clear {
    display: none;
}

.form-control::placeholder, .placeholder {
    font-size: 12px;
    color: #bbb;
    font-weight: normal;
}

.p-0 {
    padding: 0 !important;
}

.pl-0 {
    padding-left: 0;
}

.p-event-none {
    pointer-events: none;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.v-hidden {
    visibility: hidden;
}

.d-block {
    display: block !important;
}

.d-inline-block {
    display: inline-block;
}

.margin-0 {
    margin: 0 !important;
}

.m-auto {
    margin: auto;
}

.m-top-p-2 {
    margin-top: 2px;
}

.m-topm-2 {
    margin-top: -2px;
}

.m-topm-3 {
    margin-top: -3px;
}

.m-top-3 {
    margin-top: 3px;
}

.m-top-5 {
    margin-top: 5px;
}

.m-top-10 {
    margin-top: 10px;
}

.m-top-15 {
    margin-top: 15px;
}

.m-top-20 {
    margin-top: 20px;
}

.m-top-25 {
    margin-top: 25px;
}

.m-top-30 {
    margin-top: 30px;
}

.m-top-minus-10 {
    margin-top: -10px;
}

.m-top-minus-15 {
    margin-top: -15px;
}

.m-right-2 {
    margin-right: 2px;
}

.m-right-5 {
    margin-right: 5px;
}

.m-right-10 {
    margin-right: 10px;
}

.m-right-15 {
    margin-right: 15px;
}

.m-right-20 {
    margin-right: 20px;
}

.m-right-30 {
    margin-right: 30px;
}

.m-left-5 {
    margin-left: 5px;
}

.m-right-8 {
    margin-right: 8px;
}

.m-left-10 {
    margin-left: 10px;
}

.m-left-15 {
    margin-left: 15px;
}

.m-left-20 {
    margin-left: 20px;
}

.m-left-25 {
    margin-left: 25px;
}

.m-left-50 {
    margin-left: 50px;
}

.m-left-30 {
    margin-left: 30px;
}

.m-left-35 {
    margin-left: 36px;
}

.m-left-40 {
    margin-left: 40px;
}

.m-left-70 {
    margin-left: 70px;
}

.m-left-auto {
    margin-left: auto
}

.m-bottom-3 {
    margin-bottom: 3px;
}

.m-bottom-5 {
    margin-bottom: 5px;
}

.m-bottom-10 {
    margin-bottom: 10px;
}

.m-bottom-15 {
    margin-bottom: 15px;
}

.m-bottom-20 {
    margin-bottom: 20px;
}

.m-bottom-25 {
    margin-bottom: 25px;
}

.m-bottom-30 {
    margin-bottom: 30px;
}

.m-bottom-40 {
    margin-bottom: 40px;
}

.m-bottom-50 {
    margin-bottom: 50px;
}

.m-10 {
    margin: 10px;
}

.m-10-25 {
    margin: 10px 25px;
}

.p-15 {
    padding: 15px !important;
}

.p-right-10 {
    padding-right: 10px;
}

.p-left-10 {
    padding-left: 10px;
}

.p-left-20 {
    padding-left: 20px;
}

.p-left-30 {
    padding-left: 30px;
}

.p-top-10 {
    padding-top: 10px;
}

.p-bottom-5 {
    padding-bottom: 5px;
}

.p-bottom-10 {
    padding-bottom: 10px;
}

.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.font-22 {
    font-size: 22px !important;
}

.font-600 {
    font-weight: 600;
}

.verticle-center {
    display: flex;
    align-items: center;
}

.c-grey {
    color: #9d9fa2;
}

.c-blue {
    color: #0d47a1;
}

.c-green {
    color: #4caf50;
}

.c-teal {
    color: #00bfa5;
}

.sm-img {
    height: 13px;
    width: 13px;
    margin-top: -2px;
    margin-right: 6px
}

.c-pointer {
    cursor: pointer !important;
}

.w-75 {
    width: 75%;
}

.flex-justify-center {
    justify-content: center;
}

.flex-justify-end {
    justify-content: flex-end;
}

.flex-1 {
    flex: 1;
}

.w-fit {
    width: fit-content;
    width: -moz-max-content;
}

.w-30-px {
    width: 30px !important;
}

.w-20-px {
    width: 20px !important;
}

.w-50 {
    width: 50%;
}

.w-98 {
    width: 98% !important;
}

.w-100 {
    width: 100%;
}

.w-200 {
    width: 200px;
}

.w-250 {
    width: 250px;
}

.w-400 {
    width: 400px;
}

.h-50-px {
    height: 50px;
}

.h-100 {
    height: 100%;
}

.d-inline-flex {
    display: inline-flex;
}

.d-flex-center {
    display: flex;
    align-items: center;
}

.d-table-cell {
    display: table-cell !important;
}

.action-absolute-menu {
    display: block;
    position: absolute;
    right: 5px;
}

.d-flex-direction {
    display: flex;
    flex-direction: column;
}

.p-5 {
    padding: 5px;
}

.disabled {
    cursor: default;
    pointer-events: none;
}

.b-red {
    border: 1px solid #FF0000;
}

.cursor-notallowed {
    cursor: not-allowed;
    opacity: 0.6;
}

.b-radius-3 {
    border-radius: 3px;
}

.text-white {
    color: #fff;
}

.b-bottom-dashed {
    border-bottom: 1px dashed #d5d4d8;
}

.b-grey {
    background-color: #FFFFFF;
}

.b-white {
    background-color: #ffffff;
}

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .text-ellipsis.disabled {
        color: #9a9c9f;
        text-decoration: line-through;
    }

.b-error {
    border: 1px solid #d72b3f !important;
}

.bg-gray-dark {
    background: #ffffff;
}

.vh-center {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.f-normal {
    font-weight: normal;
}

.p-0-30 {
    padding: 0px 20px;
}

.p-left-60 {
    padding-left: 60px;
}

.p-left-73 {
    padding-left: 73px;
}

.f-size-12 {
    font-size: 12px;
}

.f-size-13 {
    font-size: 13px;
}

.f-size-15 {
    font-size: 15px;
}

.f-size-18 {
    font-size: 18px;
}

.font-weight-700 {
    font-weight: 700;
}

.c-error {
    color: #d72f41;
}

.c-unschedule {
    color: #ad1457;
}

.c-overloaded {
    color: #d04437;
}

.c-grey-light {
    color: #8e8e8e;
}

.c-logged {
    color: #6a6c6f !important;
}

.c-light-pink {
    color: #ac8596;
}

.c-light-grey {
    color: #9a9ca6;
}

.b-radius-0 {
    border-radius: 0 !important;
}

.line-height20 {
    line-height: 20px;
}

.line-height22 {
    line-height: 22px;
}

.line-height30 {
    line-height: 30px;
}

.ui-tooltip, .tooltip {
    z-index: 99999;
}

.ui-tooltip-new.ui-widget-content {
    word-break: break-all;
}

.sprint-forword {
    color: #27568E;
}

.sprint-pause {
    color: red;
}

.sprint-complete {
    color: #4caf50;
}

.h-v-100 {
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.label-dark {
    color: #000;
    text-align: left;
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 0;
}

.overflow-duplicate {
    display: inline-block;
    width: 100%;
}

.overflow-auto {
    overflow: auto;
}

.wipalert {
    background: #f9d3d3 !important;
}

.border-grey {
    border: 1px solid #ddd;
}

.flx-3 {
    flex: 3;
}

.flx-2 {
    flex: 2;
}

.flx-1 {
    flex: 1;
}

.flx-0 {
    flex: 0;
}

/* Buttons Css */
.btn-till-outline {
    padding: 6px 8px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    border: 1px solid #00bfa5;
    background: #fff;
    color: #00BFA5;
    border-radius: 2px;
}

    .btn-till-outline:focus {
        box-shadow: none;
    }

    .btn-till-outline:active {
        color: #00BFA5;
    }

.btn {
    border-radius: 2px;
    font-weight: 600;
}

.btn-sm {
    font-size: 12px;
    padding: 3px 10px 5px;
}

.btn-xl {
    font-size: 13px;
    padding: 5px 20px 5px;
    border: 0.5px solid #cfcfcf !important;
    color: #7a7a7a !important;
}

    .btn-xl.newInviteButton{
        border-color:#3044C5 !important;
        color:#3044C5 !important;
    }

.btn-xl.newCancelButton:hover{
    background-color:#FFF !important;
    color: #7a7a7a !important;
}

.btn-lg {
    padding: 3px 10px;
    font-size: 13px;
}

.btn:focus, .btn.focus {
    box-shadow: none;
}

.btn-primary {
    color: #3044C5 !important;
    background-color: #f8f9fb !important;
    border-color: #3044C5 !important;
}

.AddProjectButton:hover {
    background-color: #3044C5 !important;
    border-color: #3044C5 !important;
    box-shadow: none !important;
    border: 0.5px solid #3044C5 !important;
    color: #FFFFFF !important;
}

    .btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:active:hover, .btn-primary:active:focus, .btn-xl:hover, .btn-xl:active:hover {
        background-color: #3044C5;
        border-color: #3044C5;
        box-shadow: none;
        border: 0.5px solid #3044C5;
        color: #FFFFFF !important;
    }

    .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
        background-color: #01a28c;
        border-color: #01a28c;
    }

.btn-outline-primary {
    color: #3044C5;
    background-color: #fff;
    border-color: #3044C5;
    background-image: none;
    border-radius: 3px;
    font-size: 12px;
}

    .btn-outline-primary:hover {
        color: rgb(255, 255, 255);
        background-color: #3044C5;
        border-color: #3044C5;
    }

.btn-secondary {
    background: rgb(255, 255, 255);
    color: rgba(81, 102, 130, 0.8);
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0 2px 2px rgba(36, 37, 38, .08);
}

    .btn-secondary:hover {
        color: rgb(81, 102, 130);
        background-color: rgb(225, 228, 233);
        border: 1px solid rgb(225, 228, 233);
        box-shadow: 0 1px 2px rgba(0, 0, 0, .09);
    }

    .btn-secondary:focus, .btn-secondary.focus {
        box-shadow: 0 2px 2px rgba(36, 37, 38, .08);
    }

.btn-default {
    background-color: rgb(225, 228, 233);
    color: #7a7a7a;
    border: 1px solid rgb(225, 228, 233);
}

    .btn-default:hover {
        background-color: rgb(201, 204, 210);
        border: 1px solid rgb(201, 204, 210);
    }

.btn-icon {
    background-color: #fff;
    color: rgb(81, 102, 130);
    border: 1px solid #fff;
    transition: 0.3s;
}

    .btn-icon:hover {
        background-color: #3044C5;
        color: #FFF;
    }

.btn-icon-teal {
    background-color: #3044C5;
    color: rgb(81, 102, 130);
    border: 1px solid #fff;
    transition: 0.3s;
    color: #fff;
    border-radius: 5px;
    padding: 4px 8px;
}

    .btn-icon-teal:focus {
        color: #fff;
    }

    .btn-icon-teal:hover {
        background-color: #3044C5;
        color: #fff;
    }

.btn-icon-danger {
    background-color: #ffffff;
    border: 1px solid #d72f41;
    transition: 0.3s;
    color: #d72f41;
    border-radius: 5px;
    padding: 3px 10px;
}

    .btn-icon-danger:hover {
        background-color: #d72f41;
        color: #fff;
    }

.btn-mark-done {
    background: #ffffff;
    color: #2ecc71;
    font-weight: 600;
    font-size: 12px;
    border: 2px solid #ffffff;
    padding: 5px 10px;
    margin-left: 20px;
}

    .btn-mark-done:hover {
        color: #292929;
    }

    .btn-mark-done:focus {
        color: #ffffff;
        background: #2ecc71;
        border: 2px solid transparent;
    }

    .btn-mark-done i {
        margin-right: 10px;
        font-size: 15px;
    }

.btn-green {
    background-color: #2ecc71;
    border-color: #2ecc71;
    color: #ffffff;
}

    .btn-green:hover, .btn-green:focus {
        background-color: #12b758;
        border-color: #12b758;
        color: #ffffff;
    }

.btn-primary-common {
    padding: 5px 12px 5px;
    height: 28px;
    border-radius: 4px;
    font-size: 11px;
    background-color: #3044C5;
    border-color: #3044C5;
    color: #ffffff;
}

    .btn-primary-common:hover, .btn-primary-common:focus {
        background-color: #ffffff;
        border-color: #3044C5;
        color: #3044C5;
    }

.saved-notifcation {
    position: absolute;
    right: 0;
    top: -1px;
    padding: 2px 5px;
    cursor: default;
    font-size: 10px;
    z-index: 1;
}

    .saved-notifcation.est-saved {
        right: 62%;
    }

    .saved-notifcation.editor-saved {
        top: -30px;
    }

.m-content .saved-notifcation.input-saved {
    top: 10px;
    right: 10px;
}

.btn-switch-block {
    /*border: 1px solid #cdcdcd;*/
    border-radius: 4px;
}

    .btn-showhide-block {
        border: 1px solid #ddd;
        border-radius: 4px;
        width: 35px;
        height: 29px;
        color: #7a7a7a;
        cursor: pointer;
    }

    .btn-showhide-block:hover {
        color: #00bfa5;
    }

    .btn-showhide-block.active {
        color: #00bfa5;
    }

    .btn-showhide-block span {
        display: block;
        width: 100%;
        text-align: center;
    }

.btn-switch-left, .btn-switch-right {
    padding: 3px 8px;
    display: inline-block;
    color: #7a7a7a;
    border:0.5px solid #cfcfcf;
}

    .btn-switch-left:hover, .btn-switch-right:hover, .btn-switch-left:focus, .btn-switch-right:focus, .btn-switch-teal.open .btn-switch-right {
        color: #3044C5;
        border: 0.5px solid #3044C5;
    }
.btn-switch-left {
    border: 0.5px solid #cfcfcf;
    border-radius: 0px 3px 3px 0px;
}

    .btn-switch-left.active {
        color: #3044C5;
        border: 0.5px solid #3044C5;
    }

.btn-switch-teal.btn-switch-block:hover {
    border: 1px solid #00bfa5;
}

.btn-switch-teal .btn-switch-right {
    font-weight: 600;
    font-size: 12px;
    padding: 4px 8px 5px;
}

    .btn-switch-teal .btn-switch-right:hover {
        color: #3044C5;
    }

.dp-cover-hover.btn-switch-left {
    display: flex;
    align-items: center;
    width: 30px;
    height: 26px;
    padding: 0;
}

    .dp-cover-hover.btn-switch-left span {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.total-count-container {
    display: flex;
    align-items: center;
    border-radius: 4px;
    color: #292929;
    margin: 0px;
    font-size: 12px;
    padding: 0px 10px;
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    height: 35px;
}

.count-numbers {
    font-weight: 600;
}

.switch-container.btn-switch-block.on {
    border: 0.5px solid #3044C5;
}

    .switch-container.btn-switch-block.on .switch-on {
        color: #ffffff;
        background: #3044C5;
    }

.switch-off:hover {
    color: #3044C5;
}

.data-container .total-count-container {
    position: fixed;
    bottom: 18px;
    width: 100%;
}

.search-box-width {
    width: 260px;
}

.form-control.lg {
    height: 37px;
    border-radius: 3px;
}

.btn-icon-grey-delete {
    background: #f8f9fb;
    color: #9e9e9e;
    border: 1px solid #ebe9ea;
}

    .btn-icon-grey-delete:hover, .btn-icon-grey-delete:focus, .btn-icon-grey-delete:active {
        background: #d72e41 !important;
        color: #fff;
        border: 1px solid #d72e41 !important;
    }

.btn-delete-all {
    background: #d72f41;
    border: 1px solid #d72f41;
    color: #fff;
}

    .btn-delete-all:hover, .btn-delete-all:focus {
        background: #fff;
        border: 1px solid #d72f41;
        color: #d72f41;
    }

.btn-demo.btnaccess {
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 6px;
    margin-right: 20px;
    text-transform: capitalize;
    font-weight: 600;
    font-family: inherit;
    font-size: 11px;
}

.btn-switch-teal.btn-switch-block.selected {
    border: 1px solid #00bfa5;
}

.btn-switch-teal.selected .btn-switch-right {
    color: #00bfa5;
}

/*Toolbar Switches  */
.switch-container {
    position: relative;
    overflow: hidden;
    min-width: 85px;
    height: 28px;
}

    .switch-container.on .switch-inner {
        left: -100%;
    }

    .switch-container.on .switch-handle {
        float: right;
    }

.switch-inner {
    position: absolute;
    width: 200%;
    top: 0;
    bottom: 0;
    left: 0;
    transition: left .35s;
    -webkit-transition: left .35s;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.switch-off {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 50%;
    margin: 0;
    border: 0;
    font-weight: 600;
    border-radius: 0;
    color: #7a7a7a;
    font-size: 13px;
    display: flex;
    align-items: center;
    padding-left: 22px;
    cursor: pointer;
}

.switch-on {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-weight: 600;
    color: #7a7a7a;
    font-size: 13px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    cursor: pointer;
}

.switch-off:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-size: 1000% 1000%;
    background-position: 50%;
    border: none;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: background .5s, opacity 1s;
    transition: background .5s, opacity 1s;
}

.switch-on:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-left: 0;
    background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-size: 1000% 1000%;
    background-position: 50%;
    border: none;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: background .5s, opacity 1s;
    transition: background .5s, opacity 1s;
}

.switch-handle {
    position: relative;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    width: 0;
    border-width: 0 1px;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
    padding: 6px 6px;
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
}

    .switch-handle:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        margin-left: 0;
        background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
        background-repeat: no-repeat;
        background-size: 1000% 1000%;
        background-position: 50%;
        border: none;
        opacity: 0;
        pointer-events: none;
        -webkit-transition: background .5s, opacity 1s;
        transition: background .5s, opacity 1s;
    }

.switch-group-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon-size {
    background-image: url(/Images/tab-no-record/card-size.png);
    height: 16px;
    width: 18px;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
}

    .icon-size.icon-sm {
        background-position: 0px;
    }

        .icon-size.icon-sm:hover, .icon-size.icon-sm.active {
            background-position: -19px;
        }

    .icon-size.icon-md {
        background-position: -38px;
    }

        .icon-size.icon-md:hover, .icon-size.icon-md.active {
            background-position: -57px;
        }

    .icon-size.icon-lg {
        background-position: -76px;
    }

        .icon-size.icon-lg:hover, .icon-size.icon-lg.active {
            background-position: -95px;
        }

.switch-container.c-admin-switch {
    min-width: 105px;
    border: 0.5px solid #cdcdcd;
}

    .switch-container.c-admin-switch .switch-handle {
        float: left;
    }

    .switch-container.c-admin-switch.on .switch-handle {
        float: right;
    }

/* Switch toggle with icons */
.switch-button {
    position: relative;
    width: 150px;
    height: 28px;
    overflow: hidden;
    /*border-radius: 2px;
    border: 1px solid #ddd;*/
    margin-left: auto;
    margin-right: 10px;
}

    .switch-button .switch-button-checkbox {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        opacity: 0;
        cursor: pointer;
        z-index: 3;
    }

.switch-knobs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    left: 0;
}

    .switch-knobs:before {
        content: '';
        background-color: #03A9F4;
    }

.switch-button-checkbox:checked + .switch-knobs:before {
    left: 42px;
    background-color: #F44336;
}

.switch-knobs:before, .switch-knobs:after, .switch-knobs span {
    position: absolute;
    width: 84px;
    height: 26px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    border-radius: 2px;
    transition: 0.3s ease all;
}

.switch-knobs span {
    display: inline-block;
    left: 4px;
    color: #fff;
    z-index: 1;
}

.switch-knobs:after {
    content: '';
    right: 4px;
    color: #4e4e4e;
}

/* Tab switch */
.switch-tabs-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 3px;
    margin-left: auto;
    position: relative;
    z-index: 0;
    margin-right: 10px;
}

    .switch-tabs-wrapper input {
        display: none;
    }

    .switch-tabs-wrapper .tab-label {
        vertical-align: middle;
        font-size: 12px;
        font-weight: 600;
        width: 100px;
        height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #7a7a7a;
        user-select: none;
        transition: all 0.4s;
        position: relative;
        z-index: 99;
        margin-bottom: 0;
        cursor: pointer;
        line-height: 24px;
    }

    .switch-tabs-wrapper .tab-input.tab-input-1:checked ~ .tab-label.tab-label-1 {
        z-index: 1;
        /*color: #3044C5;*/
        z-index: 1;
        color: #3044C5;
        border: 1px solid #3044C5;
        border-radius: 3px 0px 0px 3px;
    }

    .switch-tabs-wrapper .tab-input.tab-input-2:checked ~ .tab-label.tab-label-2 {
        z-index: 1;
        color: #3044C5;
        border: 1px solid #3044C5;
        border-radius: 0px 3px 3px 0px;
    }

    .switch-tabs-wrapper .tab-label .tab-icon {
        vertical-align: middle;
        margin-right: 8px;
        position: relative;
    }

    .switch-tabs-wrapper .tab-animation {
        width: 90px;
        height: 26px;
        /*background: #EAFFFC;*/
        position: absolute;
        opacity: 1;
        pointer-events: none;
        transition: all 0.5s;
        left: 0;
    }

    .switch-tabs-wrapper .tab-input.tab-input-2:checked ~ .tab-animation {
        left: 89px;
    }

.tab-label.tab-label-1 {
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 3px 0px 0px 3px;
}

.tab-label.tab-label-2 {
    border: 1px solid #cfcfcf;
    border-left: none;
    border-radius: 0px 3px 3px 0px;
}

.tab-label.tab-label-1:hover {
    border-color: #3044C5;
    color: #3044C5;
}

.tab-label.tab-label-2:hover {
    border-color: #3044C5;
    color: #3044C5;
}

/* Highlight search */
.highlighted-current {
    background: #fff701 !important;
    color: #000;
    animation: none;
}

.highlighted {
    background: #ffff00;
}

/* Tabs bootstrap */
.tab-bootstrap-container {
    background: #ffffff;
    font-family: Open Sans,sans-serif;
    margin:0px;
}

    .tab-bootstrap-container .nav-item {
        height: 36px;
        line-height: 32px;
        color: #9d9fa2;
        width: auto;
        font-size: 11px;
        text-align: center;
        border-radius: 0;
        display: block;
        padding: 0 20px;
        position: relative;
        font-weight: 600;
        border: none;
        height: 100%;
        border-top: 2px solid transparent;
        margin-bottom: -1px;
    }

        .tab-bootstrap-container .nav-item:hover {
            border-top: 2px solid #3044C5;
            color: #3044C5;
            background: #ffffff;
        }

    .tab-bootstrap-container .tab-content > .tab-pane {
        background: #fff;
        padding: 10px;
        font-weight: 600;
    }

    .tab-bootstrap-container .nav-item.active {
        color: #3044C5;
        background-color: #fff;
        border-top: 2px solid #3044C5;
        /*border-color: #68d1a6 #dee2e6 #fff;*/
    }

/* Icon css */
.icon {
    color: #7a7a7a;
    font-size: 14px;
}

    .icon:hover {
        color: #3044C5;
    }

.span-icon {
    margin-right: 10px;
    font-size: 15px;
}

.flex-container {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 12px;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.onAdd-box-shadow {
    box-shadow: 0px 0px 20px #ffff00 !important;
}

.viewmore-shadow {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-width: 142px;
    max-width: 142px;
    margin-bottom: 10px;
    background: #fff;
    position: relative;
    transition: box-shadow .2s ease,transform .2s ease;
}

    .viewmore-shadow:hover {
        box-shadow: 5px 5px 7px #CCC;
    }

    .viewmore-shadow span {
        font-size: 12px !important;
    }

.pb-header-icon {
    margin-right: 10px;
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    color: #292929;
    justify-content: center;
    font-weight: 600;
    font-size: 11px;
    border-radius: 50px;
}

/* List expand */
.list-expand {
    color: rgb(117, 117, 117);
    font-size: 16px;
    cursor: pointer;
    padding: 0px 8px;
    position: relative;
    text-align: center;
    width: 25px;
    margin: 4px 0px 4px 5px;
}

.list-expand-duplicate {
    padding: 0px 8px;
    position: relative;
    width: 30px;
    cursor: all-scroll;
}

.list-container .table-head .list-expand-duplicate {
    background: #f5f7fa;
}

.list-expand:before {
    content: '';
    display: block;
    border-radius: 3px;
    opacity: 0;
    position: absolute;
    transition-duration: .15s;
    transition-timing-function: cubic-bezier(0.4,0.0,0.2,1);
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: #3044C5;
    transform: scale(0);
    transition-property: transform,opacity;
}

.list-expand:hover {
    color: #000;
}

    .list-expand:hover.list-expand:before {
        opacity: 0.2;
        transform: scale(1);
    }

.list-expand.disable {
    opacity: 0.4;
    pointer-events: none;
}

.blue-link-text, .blue-link-text:hover, .blue-link-text:focus {
    font-size: 11px;
    color: #0657C0 !important;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid transparent;
}

    .blue-link-text:hover, .blue-link-text:focus {
        border-bottom: 1px solid rgb(39, 86, 142);
    }

.btn-delete {
    background: #fff;
    color: #d72b3f;
    border: 1px solid #ffffff;
    border-radius: 0px;
    padding: 4px 12px;
    height: 26px;
    font-size: 12px;
}

    .btn-delete:hover {
        background: #d72b3f;
        border: 1px solid #d72b3f;
        color: #fff;
    }

.btn-delete-outline {
    background: #fff;
    border: 1px solid #d72b3f;
    border-radius: 3px;
    color: #d72b3f;
    padding: 5px 25px;
    font-size: 12px;
}

    .btn-delete-outline:hover {
        background: #d72b3f;
        color: #fff;
    }

.square-hover {
    height: 25px;
    width: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    transition: 0.2s;
}

    .square-hover:hover {
        background: #e0e4ff;
    }

/* No Record */
.no-record-container {
    position: absolute;
    width: 100%;
}

.no-record-box {
    background-color: #fafafa;
    border-radius: 5px;
    color: #a6a6a6;
    font-size: 11px;
    font-weight: bold;
    margin: 20px auto;
    padding: 10px;
    max-width: 400px;
    text-align: center;
}

.no-record-center {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 130px;
    text-align: center;
}

.not-found {
    padding: 10px;
    text-align: center;
    color: rgb(138, 148, 153);
}

    .not-found i {
        font-size: 13px;
        margin-bottom: 5px
    }

    .not-found p {
        font-size: 13px;
    }

/* Badge for count */
.badge-white {
    background: rgb(255, 255, 255);
    color: rgb(85, 85, 85);
    margin: -1px 5px;
    border: 1px solid rgb(157, 159, 162);
    font-size: 11px;
    font-weight: 600;
}

.badge-status {
    background-color: rgb(233, 233, 233);
    padding: 1px 6px;
    color: #fff;
    border-radius: 15px;
    font-size: 10px;
    height: 16px;
    display: inline-block;
    border: 1px solid rgb(221, 221, 221);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.15);
}

@-moz-document url-prefix() {
    .badge-status {
        padding: 0px 6px;
    }
}

.badge-status.inprogress {
    background: rgba(255,87,34,.8);
    border: 1px solid #ff5722;
    color: #fff;
}

.badge-status.complete {
    background: #218838;
    border: 1px solid #218838;
    color: #fff;
}

.badge-status.upcoming {
    border: 1px solid #03a9f4;
    color: #fff;
    background-color: rgba(3,169,244,.8);
}

.badge-danger {
    background: #959494;
}

.badge-rounded {
    background: #647F8B;
    display: flex;
    align-items: center;
    color: #292929;
    justify-content: center;
    font-weight: 600;
    font-size: 11px;
    border-radius: 50px;
    height: 22px;
    width: 22px;
}

.notify-badge {
    position: absolute;
    top: -5px;
    right: 2px;
    font-size: 10px;
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    line-height: 15px;
    text-align: center;
    background: #d04437;
    color: #fff;
}

.badge-complete {
    background: #4caf4e;
    color: #fff;
    font-weight: 600;
}

.badge-todo {
    background: #2096f3;
    color: #fff;
    font-weight: 600;
}

.badge-inprogress {
    background: #f67c01;
    color: #fff;
    font-weight: 600;
}

.badge-teal {
    background: #36b37e;
    font-weight: 600;
}

.badge-lg {
    height: 40px;
    line-height: 33px;
    font-size: 15px;
    border-radius: 50px;
    padding: 3px 20px;
}

.badge-toolbar {
    display: inline-flex;
    margin-right: 10px;
    height: 28px;
    width: 28px;
    font-size: 14px;
    align-items: center;
    color: #292929;
    justify-content: center;
    font-weight: 600;
    border-radius: 50px;
}

    .badge-toolbar i {
        color: #ffffff;
    }

/* Sprite Icons */
.sprite-icons {
    background-image: url(../Images/final-images/tasksprite.png);
    height: 16px;
    width: 16px;
    display: inline-block;
    background-repeat: no-repeat;
}

.action-icon {
    width: 4px;
    background-position: -374px 0;
}

.tasksprite.import-icon {
    background-position: -429px 0;
    width: 18px;
    height: 17px;
    overflow: hidden;
}

    .tasksprite.import-icon:hover {
        background-position: -447px 0;
    }

.add-config-icon {
    background-image: url('../../Images/tab-no-record/release-sprint-sprite.png');
    background-position: -170px 0 !important;
    background-repeat: inherit !important;
}

    .add-config-icon:hover, .add-config-icon:focus {
        background-position: -187px 0 !important;
    }

/* Progress bar */
.qs-progress-container {
    width: 100px;
    float: right;
}

.qs-progress {
    overflow: hidden;
    height: 13px;
    border: 1px solid #dfe0e0;
    border-radius: 2px;
    box-shadow: none;
    position: relative;
}

.qs-progress-bar {
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    background-color: rgba(46, 205, 111, 0.78);
    transition: width .6s ease;
    font-size: 10px;
    color: rgb(41, 41, 41);
    font-weight: bold;
    position: inherit;
}

.qs-progress-bar-text {
    text-align: center;
    font-size: 10px;
    height: 13px;
    position: relative;
    display: block;
    line-height: 11px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-weight: bold;
    color: #222;
}

/* Radio Button */
.radio-btn input[type="radio"] {
    display: none;
}

    .radio-btn input[type="radio"] + label {
        display: inline-block;
        position: relative;
        padding: 0 0px 0 22px;
        cursor: pointer;
        font-size: 12px;
    }

.radio-btn label:before, .radio-btn label:after {
    position: absolute;
    content: '';
    border-radius: 50%;
    transition: all .3s ease;
    transition-property: transform, border-color;
}

.radio-btn label:before {
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 100%;
    background: #eee;
}

.radio-btn label:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    transform: scale(0);
    background: #3044C5;
}

.radio-btn input[type="radio"]:checked + label:before, .radio-btn.active label:before {
    border-color: #3044C5;
    animation: ripple 0.2s linear forwards;
}

.radio-btn input[type="radio"]:checked + label:after, .radio-btn.active label:after {
    transform: scale(1);
}

/* Checkbox */
.check-box-container input[type=checkbox] {
    display: none;
}

.check-box-container input[type=checkbox] + label {
    cursor: pointer;
    font-size: 12px;
    color: #6a6c6f;
    margin-bottom: 0;
}

.check-box-container input[type=checkbox] + label:before {
    content: "\2714";
    border: 1px solid #cdcdcd;
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-right: 0.8em;
    vertical-align: middle;
    color: transparent;
    transition: .2s;
    line-height: 11px;
    font-size: 10px;
    text-align: center;
    margin-top: -2px;
}

.check-box-container input[type=checkbox] + label:active:before {
    transform: scale(0);
}

.check-box-container input[checked="checked"] + label:before, .check-box-container input[type="checkbox"]:checked ~ label::before {
    background-color: #3044C5;
    border-color: #3044C5;
    color: #fff;
}

.check-box-container input[type=checkbox] + label:hover:before {
    border: 1px solid #26a69a;
}

.check-box-container input[checked="checked"] + label {
    color: #26a69a;
}

.check-box-container input[type=checkbox] + .checkbox-error:before {
    border: 1px solid #d72b3f;
}

.check-box-container input[type=checkbox] + .checkbox-error:hover:before {
    border: 1px solid #d72b3f;
}

/* Checkbox Rounded Varient */
.check-box-container.checkbox-rounded input[type=checkbox] + label:before {
    margin-right: 0;
    border-radius: 50px;
    background-color: #fff;
    border: 1px solid #ccc;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    height: 15px;
    width: 15px;
    line-height: 15px;
}

.check-box-container.checkbox-rounded:hover input[type=checkbox] + label:before, .list-data-checkbox:hover .check-box-container.checkbox-rounded input[type=checkbox] + label:before {
    border: 1px solid #292929;
}

.check-box-container.checkbox-rounded input[checked="checked"] + label:before, .check-box-container.checkbox-rounded input[type="checkbox"]:checked ~ label::before {
    background-color: #26a69a;
    color: #fff;
    content: "\f00c";
    border: none;
}

.todo-checkbox .check-box-container.checkbox-rounded input[checked="checked"] + label:before, .todo-checkbox .check-box-container.checkbox-rounded input[type="checkbox"]:checked ~ label::before {
    background-color: #03a9f3;
}

.inprogress-checkbox .check-box-container.checkbox-rounded input[checked="checked"] + label:before, .inprogress-checkbox .check-box-container.checkbox-rounded input[type="checkbox"]:checked ~ label::before {
    background-color: #fe5722;
}

.completed-checkbox .check-box-container.checkbox-rounded input[checked="checked"] + label:before, .completed-checkbox .check-box-container.checkbox-rounded input[type="checkbox"]:checked ~ label::before {
    background-color: #4eaf50;
}

.global-list-view .item-tab-content .list-container .table-td.list-data-checkbox.checkbox-hover.todo-checkbox {
    background: #BCDFFB !important;
}

.global-list-view .item-tab-content .list-container .table-td.list-data-checkbox.checkbox-hover.inprogress-checkbox {
    background: #FFCCBC !important;
}

.global-list-view .item-tab-content .list-container .table-td.list-data-checkbox.checkbox-hover.completed-checkbox {
    background: #CAE7CA !important;
}

.checkbox-hover.todo-checkbox .check-box-container.checkbox-rounded:hover input[type=checkbox] + label:before, .list-data-checkbox.checkbox-hover.todo-checkbox:hover .check-box-container.checkbox-rounded input[type=checkbox] + label:before {
    border: 1px solid #2196f3;
}

.checkbox-hover.inprogress-checkbox .check-box-container.checkbox-rounded:hover input[type=checkbox] + label:before, .list-data-checkbox.checkbox-hover.inprogress-checkbox:hover .check-box-container.checkbox-rounded input[type=checkbox] + label:before {
    border: 1px solid #fe5722;
}

.checkbox-hover.completed-checkbox .check-box-container.checkbox-rounded:hover input[type=checkbox] + label:before, .list-data-checkbox.checkbox-hover.completed-checkbox:hover .check-box-container.checkbox-rounded input[type=checkbox] + label:before {
    border: 1px solid #4eaf50;
}

.todo-checkbox .check-box-container.checkbox-rounded:hover input[checked="checked"] + label:before,
.todo-checkbox .check-box-container.checkbox-rounded:hover input[type="checkbox"]:checked ~ label::before,
.checkbox-hover .check-box-container.checkbox-rounded input[type=checkbox] + label:before {
    border: none;
}

.inprogress-checkbox .check-box-container.checkbox-rounded:hover input[checked="checked"] + label:before, .inprogress-checkbox .check-box-container.checkbox-rounded:hover input[type="checkbox"]:checked ~ label::before {
    border: none;
}

.completed-checkbox .check-box-container.checkbox-rounded:hover input[checked="checked"] + label:before, .completed-checkbox .check-box-container.checkbox-rounded:hover input[type="checkbox"]:checked ~ label::before {
    border: none;
}

/* Should be removed (Used for advance search)*/
.right-section-body .check-box-container input[type=checkbox] + label:before {
    color: transparent !important;
    background-color: transparent !important;
    border-color: #cdcdcd;
}

.right-section-body .check-box-container input.checked + label:before {
    background-color: #26a69a !important;
    border-color: #26a69a !important;
    color: #fff !important;
}

/* Common Dropdown */
.project-setting-menu-container {
    position: absolute;
    z-index: 999;
    background: red;
}

.menu-item {
    padding: 10px 20px;
}

.qs-dropdown-container {
    position: relative;
}

    .qs-dropdown-container .dropdown-menu {
        box-shadow: 0 4px 17px 6px rgba(0, 0, 0, 0.1);
        border: none;
        padding: 8px;
        max-width: 400px;
        right: 0;
        left: auto;
        border-radius: 2px;
    }

.p-settings .dropdown-menu {
    left: -80px;
    top: 27px;
    z-index: 99;
    /*background: #293846;*/
}

.qs-dropdown-container .dropdown-menu li.selected a, .qs-dropdown-container .dropdown-menu li.selected a span {
    color: #00bfa5;
}

    .qs-dropdown-container .dropdown-menu li.selected a:hover {
        background: transparent;
        cursor: default;
    }

.p-settings .dropdown-toggle i {
    color: #555555;
    font-size: 15px;
}

    .p-settings .dropdown-toggle i:hover {
        color: #00bfa5;
    }

.qs-dropdown-container .dropdown-menu li {
    line-height: 22px;
}

    .qs-dropdown-container .dropdown-menu li a {
        padding: 7px 10px;
        color: #7a7a7a;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0;
        font-family: Open Sans,sans-serif;
        line-height: 1.8;
    }

.p-settings.qs-dropdown-container .dropdown-menu li.active a, .p-settings.qs-dropdown-container .dropdown-menu li.active a span {
    color: #00bfa5;
}

.p-settings.qs-dropdown-container .dropdown-menu > .active > a, .p-settings.qs-dropdown-container .dropdown-menu > .active > a:hover, .p-settings.qs-dropdown-container .dropdown-menu > .active > a:focus {
    background: transparent;
}

.qs-dropdown-container .dropdown-menu li a.active, .qs-dropdown-container .dropdown-menu li a.active span {
    color: #3044C5;
}

.qs-dropdown-container .dropdown-menu li a span {
    color: #bbbbbb;
    margin-right: 10px;
    width: 20px;
    font-size: 16px;
}

.qs-dropdown-container .dropdown-menu li a.action-delete span, .qs-dropdown-container .dropdown-menu li a.action-delete {
    color: #d72f41;
}

.qs-dropdown-container .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    background-color: #f5f5f5;
    color: #292929;
}

.qs-dropdown-container a:hover .tasksprite.ellipsis-icon {
    background-position: -378px 0;
}

.qs-dropdown-container.action-varient a i {
    font-size: 22px;
    color: #9d9fa2;
}

.qs-dropdown-container.action-varient:hover a i {
    color: #292929;
}

.qs-dropdown-container.dp-sm .dropdown-menu {
    min-width: 80px;
    right: -10px;
    z-index: 99;
}

    .qs-dropdown-container.dp-sm .dropdown-menu li a {
        padding: 5px 10px;
    }

.white-card {
    align-items: center;
    display: flex;
    position: relative;
    padding: 20px;
    background: #fff;
    margin-bottom: 10px;
}

.input-date i {
    position: absolute;
    top: 35px;
    right: 20px;
    color: #9a9c8b;
    font-size: 16px;
}

.input-date .form-control, .input-date i {
    cursor: pointer;
}

.input-date:hover i {
    color: #292929;
}

.btn-tab {
    background: #FFF;
    border-radius: 0;
    box-shadow: none;
    font-weight: 600;
    font-size: 12px;
    padding: 6px 15px 7px;
    border: none;
}

    .btn-tab:hover {
        color: #00bfa5;
    }

    .btn-tab.active, .btn-tab:active, .btn-tab:focus {
        box-shadow: none;
        color: #FFF;
        background: #00bfa5;
        outline: none !important;
    }

.custom-dropdown.select2-container--default .select2-results__option[aria-selected=true] {
    color: #00bfa5;
}

.custom-dropdown.select2-container--default .select2-results__option[aria-selected=true] {
    color: #3044C5;
}

/* Sprint with tab dropdown */
.dp-tab-container {
    font-family: Open Sans,sans-serif;
}

    .dp-tab-container .dropdown-menu li {
        width: 100%;
        margin: 0;
    }

    .dp-tab-container .dropdown-menu {
        border: none !important;
        border-radius: 4px;
        min-width: 500px;
        z-index: 9;
    }

.dropdown-tabs .nav-tabs {
    display: flex;
    align-items: center;
    border: none;
}

.dropdown-tabs .dp-tab-list {
    flex: 1;
    padding: 15px 10px 8px;
    border-bottom: 2px solid #c2c2c2;
    margin-right: 5px;
    text-align: center;
    cursor: pointer;
}

    .dropdown-tabs .dp-tab-list a {
        font-size: 13px;
        color: #898b8e;
        font-weight: 600;
        text-align: center;
        background: transparent;
    }

        .dropdown-tabs .dp-tab-list a:focus, .dropdown-tabs .dp-tab-list a:hover {
            background: transparent;
        }

    .dropdown-tabs .dp-tab-list.active a, .dropdown-tabs .dp-tab-list:hover a {
        color: #00bfa5;
    }

    .dropdown-tabs .dp-tab-list.active, .dropdown-tabs .dp-tab-list:hover {
        border-bottom: 2px solid #00bfa5;
    }

    .dropdown-tabs .dp-tab-list:last-child {
        margin-right: 0;
    }

.dp-tab-container .tab-content .dropdown-menu {
    display: block;
    right: 0;
    min-width: 426px;
    max-height: 225px;
    position: relative;
    box-shadow: none;
    margin-bottom: 5px;
    margin-top: 0;
    z-index: 0;
    overflow-y: auto;
    padding: 0px 15px 15px 15px;
    overflow-x: hidden;
}

.dp-tab-inner-list ul {
    font-size: 13px;
    border-radius: 0;
    font-size: 14px;
    overflow-y: auto;
    padding: 0;
    width: 100%;
    z-index: 1001;
}

    .dp-tab-inner-list ul > li > a {
        color: #656565;
        border-bottom: none;
        min-height: 32px;
        overflow: hidden;
        font-size: 12px;
        clear: both;
        display: flex;
        align-items: center;
        padding: 6px 10px;
        white-space: nowrap;
        line-height: 20px;
        font-weight: 600;
    }

.dp-tab-sublist .dropdown-menu > li span.text-ellipsis {
    display: block;
    align-items: center;
    width: 275px;
}

.dp-tab-inner-list ul > li > a:hover, .dp-tab-inner-list ul > li > a:focus, .dp-tab-sublist .dropdown-menu > li > a:hover, .dp-tab-sublist .dropdown-menu > li .dp-varient-sprint:hover {
    background: #f2f2f2;
}

.dp-tab-sublist .dropdown-menu > li > a, .dp-tab-sublist .dropdown-menu > li .dp-varient-sprint {
    padding: 6px 5px;
    overflow: hidden;
    min-height: auto;
    color: #292929;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.dp-tab-close {
    position: absolute;
    right: -7px;
    width: 26px;
    height: 26px;
    background: #f4f5f7;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -13px;
    border: 1px solid #ddd;
    color: #595f6b;
}

    .dp-tab-close .fa-times {
        transition: 0.2s;
        transform: rotate(0);
    }

    .dp-tab-close:hover .fa-times {
        transform: rotate( 90deg );
    }

.dp-varient-sprint.advance-chk label {
    color: #656565;
    border-bottom: none;
    min-height: 32px;
    overflow: hidden;
    font-size: 12px;
    clear: both;
    display: flex;
    align-items: center;
    white-space: nowrap;
    line-height: 20px;
    font-weight: 600;
}

.dp-varient-sprint.advance-chk {
    padding: 0 5px 0 10px !important;
}

    .dp-varient-sprint.advance-chk label::before {
        position: relative;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
    }

/*Board And List Common structure (Common css)*/
.main-container {
    height: 88%;
    position: absolute;
    width: 100%;
    left: 0;
}

    .main-container.pb-header-height {
        height: 92%;
    }

    .main-container.zoomEnable {
        overflow: hidden;
    }

.board-container-full {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.data-container {
    background: rgb(255, 255, 255);
    display: flex;
    flex: 0 0 100%;
    height: 100%;
    min-width: 1px;
    position: relative;
    margin: 0 10px;
    overflow: auto;
    transform-origin: top left;
}

.container-fluid {
    background: #F3F3F3;
}

.section-container {
    height: 100%;
    background: #FFF;
}

.table-main {
    position: relative;
    border-collapse: separate;
    display: table;
    white-space: normal;
    width: 100%;
}

.table-head {
    display: table-header-group;
    vertical-align: middle;
}

.table-tr {
    display: table-row;
    vertical-align: inherit;
    height: auto;
}

.table-body {
    display: table-row-group;
    vertical-align: middle;
}

.table-th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    color: #ffffff;
    display: table-cell;
    vertical-align: inherit;
    text-align: center;
    padding: 10px 10px 10px;
    background-color: rgb(243, 243, 243);
    border-right: 4px solid rgb(255, 255, 255);
    border-bottom: 3px solid rgb(255, 255, 255);
    font-size: 13px;
    min-width: 300px;
}

/* For fix Header*/
.table-head .table-th:first-child {
    left: 0;
    z-index: 1;
}

.table-body .table-th {
    position: -webkit-sticky; /* for Safari */
    position: sticky;
    left: 0;
}

.table-td, .form-table-td {
    display: table-cell;
    vertical-align: top;
    border-bottom: 4px solid rgb(255, 255, 255);
    border-right: 4px solid rgb(255, 255, 255);
    padding: 10px;
    min-height: 153px;
    background-color: #FFFFFF;
    min-width: 301px;
    max-width: 301px;
}

/* Pagination */
.pagination-container .pagination {
    border-radius: 0;
    margin: 10px 0;
}

    .pagination-container .pagination > li > a, .pagination-container .pagination > li > span {
        color: #6a6c6f;
        padding: 4px 10px;
        font-size: 12px;
    }

    .pagination-container .pagination > li:first-child > a, .pagination-container .pagination > li:last-child > a {
        border-radius: 0;
    }

    .pagination-container .pagination > li > a:hover, .pagination-container .pagination > li > a:focus {
        color: #00bfa5;
    }

    .pagination-container .pagination > .active > a, .pagination-container .pagination > .active > a:hover, .pagination-container .pagination > .active > a:focus {
        background-color: #00bfa5;
        border-color: #ddd;
        color: #fff;
    }

/* Modal css */
.modal-body .text-danger {
    font-size: 13px;
    font-weight: 600;
}

.import-modal-container .list-container {
    height: 400px;
    margin: 0;
}

.import-modal-container .list-expand {
    display: none;
}

.import-modal-container .list-data-blank {
    display: none;
}

.import-modal-container .blue-link-text {
    cursor: default;
    color: #555 !important;
}

    .import-modal-container .blue-link-text:hover, .import-modal-container .blue-link-text:focus {
        color: #555 !important;
        border-bottom: none;
        cursor: default;
    }

.import-modal-container .list-container .list-data-action {
    background: transparent !important;
}

#completeSprintModal .teamborderbottom {
    padding: 8px;
    line-height: 16px;
}

#completeSprintModal .check-box-container input[type=checkbox] + label:before {
    margin-right: 0;
}

/* Action Dropdown */
.action-dropdown-container .dropdown-menu {
    border-radius: 0;
    left: auto;
    margin: 0;
    padding: 6px;
    right: 22%;
    border: 1px solid #d9d9d9;
    -webkit-box-shadow: 0 0 6px 0 rgba(0,0,0,0.11);
    -moz-box-shadow: 0 0 6px 0 rgba(0,0,0,0.11);
    box-shadow: 0 0 6px 0 rgba(0,0,0,0.11);
}

    .action-dropdown-container .dropdown-menu > li > a {
        padding: 6px 10px;
        color: #3e3e3e;
        font-size: 12px;
        display: flex;
        align-items: center;
    }

        .action-dropdown-container .dropdown-menu > li > a:hover, .action-dropdown-container .dropdown-menu > li > a:focus {
            background-color: #f3f3f3;
            color: #3e3e3e;
            cursor: pointer
        }

.action-dropdown-container.table-th:hover {
    position: relative;
    cursor: pointer;
}

.action-dropdown-container:hover .tasksprite.ellipsis-icon {
    background-position: -378px 0;
}

/* Sortable (Drag & Drop) css */
.ui-sortable .table-td {
    cursor: move;
}

.ui-sortable.ui-sortable-disabled .table-td {
    cursor: default;
}

.drag-state-placeholder {
    background-color: #fbf9ed;
    border: 1px dashed rgb(177, 147, 59) !important;
}

.collapse-drag-state-placeholder {
    background-color: #fbf9ed;
    border: 1px dashed rgb(177, 147, 59) !important;
    position: absolute;
    width: 33px;
}

    .collapse-drag-state-placeholder .drag-state-placeholder {
        display: none;
    }

/* Inline Dropdown */
.inline-dropdown-container {
    cursor: pointer;
    position: relative;
    text-align: center;
    width: 100%;
}

    .inline-dropdown-container .inline-dropdown-label {
        height: 25px;
        line-height: 22px;
        padding: 0 15px;
        border: 1px solid transparent;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.inline-dropdown-label .caret {
    opacity: 0;
    position: absolute;
    right: 5px;
    top: 11px;
}

.inline-dropdown-label:hover .caret {
    opacity: 1;
}

.inline-dropdown-container .select2-container .select2-selection--single {
    font-size: 11px;
    color: #555;
    height: 25px;
    line-height: 22px;
    border: 1px solid transparent;
}

    .inline-dropdown-container .select2-container .select2-selection--single:hover, .inline-dropdown-container .inline-dropdown-label:hover, .inline-dropdown-container .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
        border: 1px dashed #a6a6a7;
        background: #fff;
    }

.inline-dropdown-container .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: -5px;
    border-color: #555555 transparent #555555;
    opacity: 0;
}

.inline-dropdown-container:hover .select2-container--default .select2-selection--single .select2-selection__arrow b, .inline-dropdown-container .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    opacity: 1;
}

.select2-results__option {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sm-dropdown .select2-dropdown {
    width: 240px !important;
}

.sm-dropdown.select2-container {
    margin-top: -20px;
}

.custom-dropdown.select2-container .select2-results__options {
    max-height: 250px;
    padding: 10px 0;
}

/* Custom Dropdown */
.custom-dropdown .select2-dropdown {
    box-shadow: 1px 2px 12px 2px rgba(0,0,0,.175);
    border: none;
    border-radius: 3px;
}

.custom-dropdown .select2-search--dropdown {
    display: block;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.custom-dropdown .select2-results__option {
    height: 38px;
    padding: 5px 15px;
    font-weight: 600;
    color: #656565;
    letter-spacing: 0.5px;
    font-size: 12px;
    display: flex;
    align-items: center;
    font-family: Open Sans,sans-serif;
}

.custom-dropdown.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #d8d8d8;
    height: 38px;
    border-radius: 3px;
    padding: 5px 10px;
}

    .custom-dropdown.select2-container--default .select2-search--dropdown .select2-search__field:focus {
        border: 1px solid #3044C5;
    }

.select2-container {
    z-index: 99999;
}

.sprint-padding .select2-container, .sprint-header .select2-container, .portfolio-main-container .select2-container, .user-story-add .select2-container, .standup-header .select2-container, .dp-overlape .select2-container, .c-admin-header .select2-container {
    z-index: 99;
}

.helpdesk-header .select2-container {
    z-index: 9;
}

.c-admin-header .p-dp-z-index .select2-container {
    z-index: 9;
}

.sprint-add-table .select2-container {
    z-index: 2;
}

.helpdesk-list-container .action-main-box:after, .helpdesk-list-container .action-main-box:before {
    border: none;
}
/* Skeleton Loaders */
.list-container .loading-skeleton {
    height: 38px;
}

.skeleton-loader {
    position: absolute;
    left: 0;
    right: 0;
    width: 98%;
}

.loading-skeleton {
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background-repeat: no-repeat;
    border-radius: 2px;
    margin-bottom: 10px;
    background: #f6f7f8;
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
}

@-webkit-keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 1400px 0;
    }
}

@-moz-keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 1400px 0;
    }
}

.spinner-container {
    position: absolute;
    right: 0;
    top: 42%;
    left: 47%;
    text-align: center;
    z-index: 999;
}

.reverse-spinner {
    position: relative;
    height: 90px;
    width: 90px;
    border: 4px solid transparent;
    border-top-color: #00bfa5;
    border-left-color: #00bfa5;
    border-radius: 50%;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
    background: #fff;
}

    .reverse-spinner::before {
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        content: "";
        border: 4px solid transparent;
        border-top-color: #ff5722;
        border-left-color: #ff5722;
        border-radius: 50%;
        -webkit-animation: spinBack 1s linear infinite;
        animation: spinBack 1s linear infinite;
    }

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinBack {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(-720deg);
        transform: rotate(-720deg);
    }
}

@keyframes spinBack {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(-720deg);
        transform: rotate(-720deg);
    }
}

.loader-center {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #ffffff;
}

/* Skeleton Varient */
.skeleton-varient .sk-story-card.card-skeleton {
    box-shadow: none;
    border: none;
    padding: 0;
    margin-left: 15px;
    margin-right: 0;
}

.sk-varient-card {
    margin-left: 50px;
    margin-top: 4px;
}

.sk-red {
    background: linear-gradient(to right, #e2e2e2 4%, #de89ab 25%, #de89ab 36%);
    width: 80%;
    height: 10px;
    margin-bottom: 8px;
    background-size: 1000px 100%;
}

.skeleton-varient .sk-code {
    height: 10px;
}

.skeleton-varient .sk-story-card.card-skeleton .sk-progress {
    position: relative;
    right: 0;
    top: 0;
    background: linear-gradient(to right, #a3c5a9 4%, #7ed8b3 25%, #7ed8b3 36%);
    background-size: 1000px 100%;
}

.sk-round {
    width: 20px;
    height: 20px;
    background-color: #bcc8ce;
    border-radius: 50px;
    margin-right: 15px;
}

.sm-card-skeleton .sk-red {
    margin: 0 auto 8px;
}

.sm-card-skeleton .sk-progress {
    width: 100%;
    background: linear-gradient(to right, #a3c5a9 4%, #7ed8b3 25%, #7ed8b3 36%);
    background-size: 1000px 100%;
}

.sk-red.sk-red-light {
    height: 7px;
    background: linear-gradient(to right, #e2e2e2 4%, #f2d0dd 25%, #f2d0dd 36%);
    background-size: 1000px 100%;
}

/*Upload modal*/
.upload-modal-container {
    border-radius: 5px;
    left: auto;
    right: 30px;
    top: auto;
    height: auto;
    bottom: 30px;
    box-shadow: 1px 2px 12px 2px rgba(0,0,0,.175);
    z-index: 99999;
    position: fixed;
    transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -webkit-transition: opacity .3s ease;
    width: 400px;
}

.upload-modal-header {
    display: flex;
    align-items: center;
    font-size: 25px;
    color: #fff;
    background: #2f3642;
    padding: 5px 10px 4px;
    border-radius: 5px 5px 0 0
}

    .upload-modal-header h3 {
        font-size: 16px;
        font-weight: 700;
    }

    .upload-modal-header i {
        cursor: pointer;
    }

.upload-modal-body {
    max-height: 300px;
    height: auto;
    padding: 15px;
    overflow: auto;
    background: #fff;
}

.upload-icon {
    font-size: 20px;
    margin-right: 15px;
}

.upload-modal-body li label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #27568e;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0;
    font-family: Open Sans;
}

.upload-modal-body .spin-loader {
    left: auto;
    top: 0;
}

.upload-modal-body ul li:last-child {
    margin-bottom: 0;
}

/* Release Modal */
.release-modal {
    font-family: Open Sans,sans-serif;
}

    .release-modal .modal-dialog {
        width: 600px;
    }

    .release-modal .qs-modal .modal-header {
        background: #ffffff;
        border-radius: 5px;
        display: flex;
        align-items: center;
        padding: 40px 40px 20px;
    }

    .release-modal .qs-modal .modal-content {
        border-radius: 5px;
    }

    .release-modal .modal-title {
        color: #6a6c6f;
        font-size: 16px;
        font-weight: 600;
        margin-left: 20px;
    }

    .release-modal .qs-modal .modal-body {
        padding: 0 40px 20px;
    }

    .release-modal .modal-footer {
        padding: 0 40px 40px;
        border: none;
        display: flex;
        align-items: center;
    }

.release-modal-content {
    color: #0657c0;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 20px;
}

    .release-modal-content a {
        color: #0657c0;
    }

        .release-modal-content a:hover {
            text-decoration: underline !important;
        }

.release-modal-img {
    margin-bottom: 40px;
    height: 300px
}

    .release-modal-img img {
        box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.10);
        height: 100%;
        width: 100%;
    }

.relese-dec li {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #545454;
    position: relative;
    padding-left: 25px;
    letter-spacing: 0.5px;
}

    .relese-dec li:before {
        content: "\f111";
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        position: absolute;
        top: 6px;
        font-size: 10px;
        left: 0;
    }

.release-modal .btn-outline-primary {
    color: #0657c0;
    border: 2px solid #0657c0;
    padding: 10px 15px;
    border-radius: 5px;
}

    .release-modal .btn-outline-primary:hover {
        color: #fff;
        background: #0657c0;
    }

        .release-modal .btn-outline-primary:hover a {
            color: #FFFFFF;
        }

.release-modal .close-modal {
    border: none;
    background: transparent;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 26px;
    color: #909599;
}

    .release-modal .close-modal:hover, .release-modal .close-modal:focus {
        color: #292929;
        box-shadow: none;
    }

.feedback-modal h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1px;
}

.feedback-modal p {
    font-size: 12px;
    color: #87888b;
}

.feedback-modal .emoji-container {
    margin-top: 10px;
    margin-bottom: 10px;
}

.feedback-modal textarea.form-control {
    margin: 20px 0;
}
/* Component css */
.estimation-pts {
    color: #8e8e8e;
    font-size: 10px;
    margin-left: 2px;
}

.watermark {
    bottom: 0;
    height: 65px;
    left: 0;
    margin: auto;
    right: 0;
    top: 0;
    width: 80px;
    position: absolute;
}

.label-rounded-img {
    background: #ffffff;
    border-radius: 50px;
    height: 35px;
    width: 35px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #ddd;
}

.form-container .form-header {
    padding: 10px 20px 10px 10px;
    background: #e8ebef;
    display: inline-block;
    border-radius: 0px 50px 50px 0;
    margin: 10px 0 5px;
}

    .form-container .form-header label {
        margin-bottom: 0;
        color: #506a76;
    }

.form-body {
    padding: 10px;
}

.form-container .dropdown-menu {
    padding: 0;
    background-color: #fff;
    border: none;
    border-radius: 0;
    min-width: 340px;
    box-shadow: 0 1px 10px rgba(0,0,0,.3), 0 0 0px 0 rgba(0,0,0,.3);
    left: 0;
    top: -2px;
    padding: 9px 14px;
}

.form-container .radio-btn {
    float: left;
    margin-right: 10px;
}

.icon-question-circle {
    height: 20px;
    width: 20px;
    position: absolute;
    bottom: -9px;
    right: -8px;
}

.user-img-square {
    border-radius: 2px;
    height: 21.2px;
    width: 26px;
    overflow: hidden;
    position: relative;
    background: #e8ebef;
    text-transform: uppercase;
    font-family: "Open Sans",sans-serif;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inline-edit-title {
    display: inline-flex;
    vertical-align: middle !important;
}

    .inline-edit-title .fa-pencil {
        /*transform: scale(0);*/
        display: none;
        transition: 0.3s;
        margin-left: 10px;
        align-content: center;
    }

.pb-header-box:hover .inline-edit-title .fa-pencil {
    /*transform: scale(1);*/
    display: inline-block;
}

.qs-breadcrumbs > li.inline-edit-title a {
    font-size: 12px;
}

.inline-edit-title .form-control {
    height: 29px;
}

.display-label {
    color: #6a6c6f;
    font-size: 12px;
    margin-bottom: 0;
    font-weight: 500;
}

.icon-label {
    font-weight: 600;
    font-size: 13px;
    margin-top: 3px;
}

    .icon-label p {
        display: inline-flex;
        background: #eeeeee;
        border-radius: 50px;
        padding: 2px;
        font-size: 11px;
        width: 28px;
        height: 28px;
        justify-content: center;
        align-items: center;
        margin-right: 5px;
        color: #9d9fa2;
    }

.icon-files i {
    font-size: 22px;
}

.icon-files span {
    position: absolute;
    left: 3px;
    color: #fff;
    font-weight: 600;
    top: 4px;
}

.label-disable {
    color: #292929;
    cursor: not-allowed;
    width: fit-content;
}

.allocation-alert-box {
    background: #f7dfe1;
    color: #721C24;
    font-size: 12px;
    margin-bottom: 10px;
    padding: 10px;
    line-height: 22px;
}

    .allocation-alert-box span, .allocation-info-box span {
        position: absolute;
        font-size: 16px;
    }

    .allocation-alert-box p, .allocation-info-box p {
        padding-left: 32px;
    }

.allocation-info-box {
    background: #e4f1ff;
    color: #004085;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 20px;
    border-radius: 5px;
    position: relative;
}

    .allocation-info-box.warning {
        color: #856404;
        background-color: #fff3cd;
        border-color: #ffeeba;
    }

/* Inline Edit */
.inline-edit-label .form-control {
    font-size: 22px;
    height: 40px;
    background-color: transparent;
    border: 1px solid transparent;
    color: #292929;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 2px 12px 5px;
    font-weight: 600;
}

.inline-edit-label:hover .form-control {
    border: 1px solid #ddd;
    background-color: #fff;
}

.inline-edit-label .form-control:focus {
    border-color: #00bfa5;
    background-color: #fff;
}

/* Estimation point rounded */
.est-point-container .est-rounded {
    border: 1px solid #dededf;
    border-radius: 50%;
    font-size: 10px;
    background: #eee;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555555;
    font-weight: 600;
    margin: 0 3px;
}

    .est-point-container .est-rounded.active {
        background: #3044C5;
        border: 1px solid #3044C5;
        color: #fff;
    }

    .est-point-container .est-rounded:hover {
        border: 1px solid #3044C5;
    }

/* Star Rating */
.star-rating {
    font-size: 20px;
    color: #b1b1b1;
    cursor: pointer;
    margin-right: 8px;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: 0.1s;
}

    .star-rating:hover {
        color: #3044C5;
    }

    .star-rating.active {
        color: #3044C5;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

.clear-label {
    margin-left: 15px;
    font-size: 11px;
    color: #ababab;
    cursor: pointer;
    font-weight: 600;
}

    .clear-label:hover {
        color: #292929;
    }

/* Date component */
.date-container {
    width: fit-content;
    width: -moz-fit-content;
}

    .date-container .form-control {
        color: #292929;
        font-weight: 600;
        letter-spacing: 1px;
        font-size: 13px;
        padding: 6px 10px 8px 35px;
        height: 32px;
        border: 1px solid transparent;
        cursor: pointer;
        background: transparent;
    }

    .date-container:hover .form-control {
        border: 1px solid #dddddd;
    }

    .date-container .icon-date {
        position: absolute;
        font-size: 20px;
        left: 6px;
        top: 1px;
        cursor: pointer;
        color: #a7a7a7;
    }

    .date-container .form-container .dropdown-menu {
        min-width: 260px;
        right: auto;
    }

    .date-container .form-container textarea {
        height: auto;
        border: 1px solid #ddd;
        font-weight: normal;
        padding: 5px 10px;
        cursor: text;
    }

        .date-container .form-container textarea:focus {
            border: 1px solid #00bfa5;
        }

    .date-container .form-container .form-label {
        font-size: 13px;
        font-weight: normal;
        margin-bottom: 10px;
    }

/*Timepicker start*/
/*.time-picker-container .bootstrap-datetimepicker-widget table td span {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin: 2px 1.5px;
    cursor: pointer;
    border-radius: 4px;
    color: #9a9ca6;
}
.bootstrap-datetimepicker-widget table td {
    height: 35px;
    line-height: 35px;
    width: 35px;
}*/
/*.bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second {
    font-weight: 600;
    font-size: 1.2em;
    margin: 0;
    border: 1px solid #ddd;
    color: #9a9ca6;
    width: 100px;
    height: 35px;
    line-height: 32px;
    margin: auto;
}
.bootstrap-datetimepicker-widget table td {
    height: auto;
    line-height: initial;
    width: auto;
    padding: 3px !important;
}
.bootstrap-datetimepicker-widget table td span {
    width: 28px;
    height: 28px;
    line-height: initial;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a9ca6;
}
.bootstrap-datetimepicker-widget a[data-action] {
    padding: 0;
}
.bootstrap-datetimepicker-widget table td span:hover {
    background: transparent;
}*/

/* Right section common css */
.right-section-container {
    width: 24%;
    position: relative;
    z-index: 2;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px 0 rgba(21,27,38,.15);
    height: 100%;
}

.right-section-container {
}

.scroller-container {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 1px;
    width: 100%;
}

.right-section-header {
    align-items: center;
    background: #f7f7f7;
    display: flex;
    flex: 0 0 auto;
    height: 38px;
    justify-content: space-between;
    padding: 8px;
    position: relative;
    z-index: 100;
}

.right-section-body {
    min-height: 1px;
    overflow-y: auto;
    overflow-x: hidden;
}

.backlog-container .right-section-container {
    z-index: 1;
}

/* Common Delete modal */
.confirm-delete-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    width: 96%;
    height: auto;
    background: rgba(237, 28, 36,0.8);
    padding: 22px 5px 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    z-index: 99;
}

    .confirm-delete-overlay .fa-times {
        position: absolute;
        top: 4px;
        right: 7px;
        font-size: 22px;
        cursor: pointer;
        transition: 0.2s;
        transform: rotate(0)
    }

    .confirm-delete-overlay p {
        line-height: 16px;
        font-size: 12px;
        text-align: center;
    }

    .confirm-delete-overlay .btn-delete {
        border: 1px solid #ffffff;
        display: flex;
        justify-content: center;
        width: 75px;
        margin: 10px auto;
        border-radius: 3px;
        height: 24px;
        padding: 2px 12px;
        align-items: center;
    }

    .confirm-delete-overlay .fa-times:hover {
        transform: rotate(90deg);
    }

/* Color picker */
.color-picker {
    padding: 4px 6px;
    border-radius: 2px;
    transition: 0.1s;
    transform: scale(1);
    width: 28px;
    height: 28px;
    line-height: 20px;
    float: left;
    margin-right: 9px;
    cursor: pointer;
    display: flex;
}

    .color-picker:hover {
        transform: scale(1.1);
    }

    .color-picker i {
        color: #ffffff;
    }

/* Moth picker design */
.daterangepicker select.monthselect, .daterangepicker select.yearselect {
    border: 1px solid transparent;
    padding: 2px 5px !important;
    cursor: pointer !important;
    border-radius: 3px;
}

    .daterangepicker select.monthselect:hover, .daterangepicker select.yearselect:hover {
        border: 1px solid #ddd;
    }

/* Common Simple Tab */
.tb-container {
    /*border-bottom: 1px solid #e8e8e8;*/
    margin: 0px;
    background: #fff;
}

.tb-list li {
    height: 36px;
    line-height: 32px;
}

    .tb-list li button {
        color: #9d9fa2;
        width: auto;
        font-size: 11px;
        text-align: center;
        border-radius: 0;
        display: block;
        padding: 0 20px;
        position: relative;
        font-weight: 600;
        border: none;
        height: 100%;
        border-top: 2px solid transparent;
    }

        .tb-list li button:hover {
            border-top: 2px solid #9d9fa2;
            color: #292929;
            background: #fff;
        }

        .tb-list li button.btn-onoff {
            background: #ffffff;
            border-top: 2px solid #00bfa5;
            color: #292929 !important;
        }

        .tb-list li button:focus {
            box-shadow: none;
        }

/*drop css*/
.drag-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #00bfa5;
    padding: 50px;
    opacity: 0.8;
    z-index: 99;
}

.drop-content {
    border: 3px dashed #fff;
    height: 100%;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    flex-direction: column;
}

.download-progress {
    position: absolute;
    bottom: 20px;
    background: #585757;
    color: #fff;
    padding: 10px 15px;
    left: 20px;
    z-index: 99;
}

/* Iframe css */
.iframe-container {
    width: 100%;
    height: 450px;
}

/* Popover tooltip */
.tooltip-container {
    padding: 5px;
    min-width: 335px;
    font-family: Open Sans,sans-serif;
}

    .tooltip-container hr {
        margin-bottom: 15px;
    }

.tp-header {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: 600;
}

.tp-body ul {
    padding: 0;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    list-style: none;
}

    .tp-body ul:last-child {
        margin-bottom: 5px;
    }

.tp-body li:first-child {
    width: 38%;
    text-align: right;
}

.tp-body li:nth-child(2) {
    width: 35%;
}

.tp-body li:last-child {
    margin-right: 0;
}

.tp-body li {
    color: #ffffff;
    font-size: 11px;
    margin-right: 15px;
    border-radius: 0;
    height: 12px;
    line-height: 11px;
}

.tp-body .qs-progress {
    background: #ffffff;
}

.tp-body .qs-progress-bar {
    height: 12px;
}

.tp-list {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.tp-working-progress {
    background: #aeaeae;
}

.tp-scheduled-progress {
    background: #32c787;
}

.tp-unscheduled-progress {
    background: #ad1457;
}

.tp-overloaded-progress {
    background: #d04437;
}

.tooltip-container .resource-user-img p, .tooltip-container .resource-user-img img {
    height: 30px;
    width: 30px;
}

.popover.top > .arrow:after {
    border-top-color: #293846;
}

/* New Pb header */
.new-pb-header {
    box-shadow: none;
    font-family: Open Sans,sans-serif;
    padding: 8px 10px;
    border-bottom:0.5px solid #efefef;
}

    .new-pb-header .form-control, .new-pb-header .search-img {
        border-radius: 4px;
        margin-left: 2px;
    }

/* Floating Action Menu */
.floating-action-menu {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    opacity: 0;
    position: absolute;
    right: 0;
    background: #fff;
    padding: 5px;
    height: 36px;
}

    .floating-action-menu .btn-switch-block {
        display: flex;
        border: none;
    }

    .floating-action-menu .btn-switch-right {
        color: #BCC0C7 !important;
        border-radius: 4px;
        width: 30px;
        text-align: center;
    }

        .floating-action-menu .btn-switch-right:hover {
            color: #ffffff !important;
            background: #00bfa5;
        }

    .floating-action-menu .qs-dropdown-container .fa-ellipsis-h {
        font-size: 22px;
        color: #BCC0C7;
        text-align: center;
        height: 26px;
        border-radius: 4px;
        line-height: 27px;
        width: 30px;
    }

        .floating-action-menu .qs-dropdown-container .fa-ellipsis-h:hover {
            background: #00BFA5;
            color: #ffffff;
        }

.global-list-view .item-tab-content .list-container .table-body .table-tr:hover .floating-action-menu {
    opacity: 1;
}

.floating-action-menu .qs-dropdown-container .dropdown-menu {
    right: 0;
    margin-top: -32px;
}

/* Notificatoin css */
.notifyjs-bootstrap-base.notifyjs-bootstrap-success {
    background-color: #06a534;
}

.notifyjs-bootstrap-base.notifyjs-bootstrap-warning, .notifyjs-bootstrap-base.notifyjs-bootstrap-warn {
    background: #ffbc00;
}

.notifyjs-bootstrap-base.notifyjs-bootstrap-error {
    background: #f94416;
}

.notifyjs-bootstrap-base.notifyjs-bootstrap-success:before {
    content: "\f058";
}

.notifyjs-bootstrap-base.notifyjs-bootstrap-warning:before, .notifyjs-bootstrap-base.notifyjs-bootstrap-warn:before {
    content: "\f071";
}

.notifyjs-bootstrap-base.notifyjs-bootstrap-error:before {
    content: "\f057";
}

.notifyjs-bootstrap-base.notifyjs-bootstrap-info {
    background: #0087d7;
}

    .notifyjs-bootstrap-base.notifyjs-bootstrap-info:before {
        content: "\f05a";
    }

.notifyjs-corner .notifyjs-wrapper, .notifyjs-corner .notifyjs-container {
    margin: 0;
}

.notifyjs-bootstrap-base .notifyjs-bootstrap-warning {
    background-color: #e7a60a;
    border: 1px solid #e7a60a;
    color: #ffffff;
}

.notifyjs-bootstrap-base {
    padding: 10px 15px 10px 45px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 2px;
    border-radius: 3px;
    background-repeat: no-repeat;
    background-position: 7px 10px;
    border: none;
    text-shadow: none;
    font-family: Open Sans,sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    background-image: none;
}

    .notifyjs-bootstrap-base:before {
        font-family: "Font Awesome 5 Pro";
        font-size: 18px;
        position: absolute;
        left: 13px;
        top: 8px;
    }

/* Input Spin */
.input-spin-container {
    width: 150px;
    margin-left: 10px;
}

/* Info Msg In Popup */
.info-box-container {
    background: #e4f1ff;
    color: #004085;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 20px;
    position: relative;
    border-radius: 5px;
}

    .info-box-container span, .info-box-container span {
        position: absolute;
        font-size: 18px;
        left: 10px;
        top: 10px;
    }

    .info-box-container p, .info-box-container p {
        padding-left: 32px;
    }

.fitContent {
    width: fit-content;
}

.zoomControlOnFullScr {
    position: fixed;
    bottom: 40px;
    right: 50px;
    height: 35px;
    border-radius: 25px;
    box-shadow: 1px 1px 8px #c1c1c1;
    padding: 0 5px 0 5px;
}

.itemzoomHover {
    transform: scale(1.5);
    z-index: 99;
    transition: 0.3s;
}

.requiredIndication {
    font-size: 7px;
}

.c-admin-icon {
    font-size: 20px;
}

/* Create board popup */
.create-board-content {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.board-type-box {
    flex: 1;
    padding: 25px 20px 20px 20px;
    border-radius: 3px;
    border: 1px solid #ddd;
    cursor: pointer;
}

    .board-type-box:hover {
        border: 1px solid #00bfa5;
    }

    .board-type-box h3 {
        font-weight: 700;
        font-size: 15px;
        margin-bottom: 5px;
    }

    .board-type-box p {
        font-weight: 600;
        font-size: 12px;
        color: #9a9c9f;
    }

.check-icon-board {
    left: 23%;
    top: -12px;
    position: absolute;
    background: #00bfa5;
    height: 24px;
    width: 24px;
    border-radius: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.board-type-box.kanban-board-type .check-icon-board {
    opacity: 1;
}

.board-type-box.kanban-board-type.taskboard-type .check-icon-board {
    left: auto;
    right: 22%;
}

.board-type-box.kanban-board-type {
    border: 1px solid #00bfa5;
}

.panel-container .tab-no-record {
    margin: 13% auto 0;
    position: relative;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #bbb;
}

/* Shared Responsive css */
@media (min-width: 1199px) and (max-width: 1399.98px) {
    /* Common css */
    .m-top-20 {
        margin-top: 15px;
    }

    .res-margin-top.qs_margin_top55 {
        margin-top: 45px;
    }

    .main-container {
        height: 84%;
    }

        .main-container.pb-header-height {
            height: 92%;
        }
    /*.w-75 {
            width: 73%;
        }*/
    /*.right-section-container {
            width: 27%;
        }*/
    .display-label {
        font-size: 11px;
    }

    .star-rating {
        font-size: 18px;
    }

    .inline-edit-label .form-control {
        font-size: 18px;
        height: 32px;
        padding: 2px 10px 6px;
    }

    .date-container .form-control {
        font-size: 12px;
    }

    .date-container .icon-date {
        font-size: 18px;
        top: 2px;
    }

    .est-point-container .est-rounded {
        height: 22px;
        width: 22px;
        font-size: 10px;
        line-height: 26px;
    }

    .not-found i {
        font-size: 14px;
    }

    .not-found {
        font-size: 12px;
    }

    .color-picker {
        width: 26px;
        height: 26px;
    }

    .btn-till-outline {
        padding: 5px 8px;
    }

    .qs-dropdown-container .dropdown-menu > li > a {
        padding: 5px 10px;
        font-size: 12px;
        font-weight: 600;
    }

    .upload-modal-header {
        font-size: 20px;
        padding: 5px 10px;
    }

        .upload-modal-header h3 {
            font-size: 15px;
        }

    .upload-modal-container {
        width: 320px;
        right: 20px;
    }

    .upload-modal-body {
        padding: 10px;
        max-height: 250px;
    }

        .upload-modal-body li label {
            font-size: 13px;
        }

    .icon-files i {
        font-size: 20px;
    }

    .icon-files span {
        top: 3px;
        font-size: 14px;
    }

    .iframe-container {
        height: 335px;
    }

    .t-modal-body .f-size-18 {
        font-size: 14px;
    }

    .daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
        height: 20px !important;
        line-height: 18px !important;
    }

    .md-resolution .qs_margin_bottom15 {
        margin-bottom: 5px;
    }

    .sm-dropdown .select2-dropdown {
        width: 210px !important;
    }

    .md-dropdown.sm-dropdown .select2-dropdown {
        width: 240px !important;
    }

    .md-dropdown.custom-dropdown .select2-results__option {
        font-size: 11px;
    }

    .qs-dropdown-container .dropdown-menu li a span {
        font-size: 13px;
    }

    .new-pb-header {
        padding: 6px 10px;
    }

        .new-pb-header .form-control, .new-pb-header .search-img {
            margin-left: 2px;
        }

    .info-box-container {
        margin-bottom: 10px;
    }

    .search-box-width {
        width: 210px;
    }

    .data-container .total-count-container {
        width: 98.3%;
        bottom: 16px;
    }

    .total-count-container .tool_pagination .pagination > li > a {
        font-size: 12px;
        padding: 6px 10px;
    }

        .total-count-container .tool_pagination .pagination > li > a .qs-font16 {
            font-size: 14px;
        }

    .panel-container .tab-no-record {
        left: 5% !important;
    }

        .panel-container .tab-no-record h4 {
            font-size: 15px;
        }

    .dashboard-popup {
        min-height: auto;
    }

    .custom-dropdown.select2-container .select2-results__options {
        max-height: 195px;
    }

    .btn-demo.btnaccess {
        margin-right: 10px;
        padding: 5px 8px;
    }

    #resource_workload_container .qstool-label {
        margin-right: 10px;
    }

    .search-input::placeholder {
        font-size: 11px;
    }
}

@media screen and (max-width: 1600px) {
}

@keyframes blinkingBackground {
    0% {
        background-color: #f7941d;
        color: #000;
    }

    50% {
        background-color: transparent;
        color: #585858;
    }

    100% {
        background-color: #f7941d;
        color: #000;
    }
}

.skipVideo {
    border: 2px solid #FA6900;
    background-color: transparent;
    color: #FA6900;
    position: absolute;
    line-height: 5px;
    right: 5px;
}

    .skipVideo:hover {
        border: 2px solid #FA6900;
        background-color: #FA6900;
        color: #FFFFFF;
    }

/* Slack integration */
.slack-integration-container {
    background: #FFFFFF;
}

    .slack-integration-container .qs-main-box {
        width: 40%;
        margin: 0 auto;
        background: #f6f7f9;
        border: 1px solid #e8ebef;
        border-radius: 5px;
        overflow: hidden;
    }

    .slack-integration-container select {
        width: 38%;
    }

    .slack-integration-container .select2-container {
        width: 100% !important;
    }

.integration-title {
    background: #FFFFFF;
    padding: 15px;
}

.integration-form-body {
    padding: 15px;
}

.slack-integration-container .btn-primary {
    padding: 8px 20px;
    border: 0;
    cursor: pointer;
    border-radius: 3px;
    border: solid 1px transparent;
}

    .slack-integration-container .btn-primary:hover {
        background: #FFF;
        color: #00BFA5;
        border: 1px solid #00BFA5 !important;
    }

.slack-integration-container .error-message {
    padding: 5px;
    display: block;
    font-size: 12px;
    color: #d04437;
}

.slack-config-container {
    width: 40%;
    margin: auto;
    padding-top: 5%;
    text-align: center;
}

.config-description {
    width: 60%;
    margin: auto;
    line-height: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #9b9b9b;
    padding: 10px 0 20px 0;
}

.navigation-container {
    padding: 10px 20px;
    height: 40px;
    line-height: 40px;
}

    .navigation-container a, .navigation-container i, .navigation-container span {
        font-size: 13px;
        font-weight: 600;
    }

    .navigation-container span, .navigation-container i {
        color: #9a9b9f;
    }

.slack-form-action-container a {
    color: #8a8b8c;
    font-size: 13px;
    font-weight: 600;
}

.slack-form-action-container button {
    float: right;
    margin-left: 10px;
}

.slack-form-action-container a:hover {
    color: #27568e
}

/* Integration page */
#slackIntegration .navigation-container {
    border-bottom: solid 1px #ddd;
    margin-bottom: 35px;
}

.slack-integration-container .m-body {
    width: auto !important;
    background: #e8ebf0 !important;
    flex-direction: row;
    justify-content: space-between;
}

    .slack-integration-container .m-body > div {
        background: #fff;
        padding: 15px 25px;
        border: solid 1px #e1e2e6;
    }

    .slack-integration-container .m-body .check-box-container.p-relative {
        display: inline-block;
        margin-right: 20px;
        margin-top: 15px;
        min-width: 105px;
    }

.slack-integration-container .m-header {
    min-height: 35px;
}

#integrationList .qs_margin_bottom15 {
    height: 100%;
}

.bggray {
    display: flex;
    flex-direction: row;
    padding: 25px;
    background: #FFFFFF;
    height: 100%;
}

.integration-container {
    display: inline-block;
    max-width: 240px;
    margin-right: 10px;
    vertical-align: top;
    position: relative;
}

    .integration-container span {
        position: absolute;
        z-index: 9;
        right: 10px;
        top: 1px;
    }

        .integration-container span i {
            color: #cabdd5;
            font-size: 10px;
        }

            .integration-container span i:hover {
                color: #fff;
                cursor: pointer;
            }


    .integration-container img {
        max-width: 240px;
    }

.integration-content {
    padding: 10px;
    background: #fff;
    text-align: left;
    font-size: 12px;
    color: #9d9fa2;
    border: 1px solid #cfcfcf;
    box-shadow: 0px 0px 4px #cfcfcf;
}

    .integration-content p {
        min-height: 70px;
    }

    .integration-content a {
        margin-top: 6px;
        display: block;
    }

.integration-action {
    margin-top: 10px;
    color: #3973b6;
}

    .integration-action:hover {
        text-decoration: none;
        color: #000;
    }



.list-container .qs-dropdown-container .dropdown-menu {
    position: absolute;
    top: 100%;
    left: auto;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 190px;
    padding: 10px;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: none;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}


.backlog-container .list-container .qs-dropdown-container .dropdown-menu {
    position: absolute;
    top: 100%;
    left: auto;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.open > .dropdown-menu {
    display: block !important;
}

/* Slack Listing & Add Channal page */

#slackContianer .navigation-container div {
    display: inline-block;
    margin-left: 40px;
    float: right;
    margin-top: 3px;
}

#slackContianer .qs-main-section {
}

#slackContianer .navigation-container .fa-angle-right {
    margin-left: 5px;
}

#slackContianer #configFormContainer {
    margin-bottom: 35px;
}

#slackContianer .qs-dropdown-container .dropdown-menu li a {
    display: block;
}

#slackContianer .list-data-action .qs-dropdown-container .dropdown-menu {
    left: auto;
    right: 45px;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    background-color: #f5f5f5;
}

#slackContianer .modal-overlay, #slackContianer .modal-container {
    z-index: 100000 !important;
}

/*#nav-project-integration .data-container, #nav-project-integration #integrationDataContainer {
    height: 100%;
}*/

#slackContianer .ui-sortable .table-td {
    cursor: default;
}

#slackContianer .list-data-IsActive .item-active {
    padding: 4px 10px;
    background: #a0f2ca;
    border-radius: 3px;
    margin-left: -8px;
    color: #18754a;
    text-transform: uppercase;
    font-size: 10px;
}

#slackContianer .list-data-IsActive .item-stopped {
    padding: 6px 18px;
    background: #fcb4ca;
    border-radius: 3px;
    margin-left: -20px;
    color: #c57289;
    text-transform: uppercase;
    font-size: 12px;
}

.scrum-board-list-view .list-container .qs-dropdown-container .dropdown-menu {
    left: auto !important;
}

body.slack-integration-container {
    height: 100%;
}

.slack-integration-container .modal-container .import-users-body {
    background: #fff !important;
}

.slack-integration-container .modal-container .reverse-spinner {
    left: -50px;
    position: absolute;
    top: 29%;
}

.slack-integration-container .modal-container .spinner-container {
    border: none !important;
    background: transparent !important;
    position: relative;
    height: 300px;
}

.integration-form-body .slack-form-action-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

    .integration-form-body .slack-form-action-container a {
        margin-right: auto;
        padding-top: 10px;
    }

/* Responsive */
@media screen and (max-width: 767px) {
    .bgray {
        text-align: center;
    }

    .integration-container {
        margin-right: 0px;
        margin-bottom: 10px;
    }
}
