/*****************************************
* SWITCH TOGGLE BUTTON
*****************************************/
.switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(23, 45, 64, 0.15);
    -webkit-transition: .4s;
    transition: .4s;
}

.task-slider {
    transform: translateY(-5px);
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #172D40;
}

input:focus + .slider {
    box-shadow: 0 0 1px #172D40;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.vtSwitchLabel {
    position: absolute;
    font-size: 14px;
    color: rgb(75, 75, 75);
    padding-left: 15px;
    padding-top: 2px;
}

.ranges ul li.active, .daterangepicker td.active, .daterangepicker td.active:focus, .daterangepicker td.active:hover  {
    background: #172D40;
}

.oddRowList {
    background: rgb(255, 255, 255);
}

.evenRowList {
    background: rgb(247, 247, 247);
}

/*****************************************
* DATATABLES STYLING
*****************************************/
.oddRowStripe {
    background: rgb(255, 255, 255);
}

.evenRowStripe {
    background: rgb(250, 250, 250);
}


.rowHighlight {
    background: rgba(72, 238, 208, 0.1);
}

.vtTabNavItem a {
    text-transform: uppercase;
}

.dt-button-collection>div>.dt-button.active {
    background-color: #172D40;
    color: rgb(218, 218, 218);
    font-weight: bold;
}

.dt-button-collection>div>.dt-button {
    padding: .5rem 1rem;
    border: 0;
    display: block;
    outline: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all ease-in-out .15s;
    margin-top: 1px;
}

.custom-control-label::before {
    position: absolute;
    top: .00002rem;
    left: -1.875rem;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    pointer-events: none;
    content: "";
    background-color: #eee;
    border: transparent solid 1px;
    box-shadow: 0 0 0 0 transparent
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: transparent;
    background-color: #455a64;
    box-shadow: none
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(69, 90, 100, .5);
}

.dataTables_paginate .paginate_button.current,
.dataTables_paginate .paginate_button.current:focus,
.dataTables_paginate .paginate_button.current:hover {
    background: #172D40;
}

.dataTables_length select {
    border-radius: 15px;
}

/*****************************************
* VISUAL SCROLLING MAX HEIGHT SCROL
*****************************************/
.visualScrollDropdownWrapper {
    overflow-y: auto;
    max-height: 250px;
}


.pseudoInputGroup {
    margin-bottom: 15px;
}

.pseudoInputField {
    background-color: rgba(23, 45, 64, 0.02);
    padding: 5px 15px 5px 15px;
    border-bottom: solid 1px rgba(23, 45, 64, 0.4);
    border-radius: 4px;
    height: 30px;
}

.psedoDescScroll {
    height: 100%;
    max-height: 100px;
    overflow-y: auto;
}

.smart_search-msg {
    color: #b80404; font-weight: bold; font-size: 17px; margin-top: 10px;
}





/* SLIDERS */
.rightSliderContentWrapper {
    position: fixed;
    top: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;
    width: 0%;
    left: 100%;

    max-height: 100vh;
    max-width: 50%;


    box-shadow: 0 5px 20px 0 rgb(21 27 38 / 8%);
    background-color: rgb(255, 255, 255);
    border-left: 1px solid #e8ecee;
    border-top: 1px solid #e8ecee;

    transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-100%);
}

@media screen and (max-width: 1280px) {
    .rightSliderContentWrapper {
        max-width: 60%;
    }
}

@media screen and (max-width: 1024px) {
    .rightSliderContentWrapper {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .rightSliderContentWrapper {
        margin-top: 58px;
    }

    .rightSliderContentWrapper .vtTabNavTabs {
        padding: 0 !important;
        margin: 0 auto !important;
    }
}

.task-criticality-btn {
    border: transparent;
    font-weight: bold;
    padding: 5px 25px 5px 25px;
    border-radius: 4px;
    color: #313131;
    background: rgba(199, 199, 199, 0.2);
    border-bottom: solid 2px transparent;
    transition: all 0.5s ease;
}

.criticality-low {
    border-bottom: solid 2px #4caf50;
    color: #4caf50;
}

.criticality-medium {
    border-bottom: solid 2px #ff7043;
    color: #ff7043;
}

.criticality-high {
    border-bottom: solid 2px #f44336;
    color: #f44336;
}

.criticality-low:hover {
    background: rgba(76, 175, 80, 0.2);
    border-bottom: solid 2px #4caf50;
    color: #4caf50;
    transition: all 0.5s ease;
}

.criticality-medium:hover {
    background: rgba(255, 112, 67, 0.2);
    border-bottom: solid 2px #ff7043;
    color: #ff7043;
    transition: all 0.5s ease;
}

.criticality-high:hover {
    background: rgba(244, 67, 54, 0.2);
    border-bottom: solid 2px #f44336;
    color: #f44336;
    transition: all 0.5s ease;
}

.taskTemplateRow {
    padding: 12px;
    font-size: 14px;
    transition: all 0.5s ease;
    border-left: solid 3px transparent;
}

.taskTemplateRow:hover {
    cursor: pointer;
    background: rgba(72, 238, 208, 0.1);
    padding-left: 25px;
    transition: all 0.3s ease;
    border-left: solid 3px rgba(72, 238, 208, 0.8);
}

.taskTemplateRow .templateTitle {
    font-weight: bold;
}

.evenRow {
    background: rgb(252, 252, 252);
}

.oddRow, .oddRow2 {
    background: rgb(245, 245, 245);
}


.addTemplateBtn {
    /* border: solid 2px transparent; */
    /* background: rgba(72, 238, 208, 0.1); */
    /* background: rgb(240, 240, 240); */
    color: #142d40;
    font-weight: bold;
    font-size: 14px;
    padding: 5px 10px 5px 10px;
    transition: all 0.3s ease;
    border-radius: 50px;
    border: solid 1px transparent;
    /*
    padding: 5px 12px 7px 12px;
    transition: all 0.3s ease; */
}

.addTemplateBtn:focus, .addTemplateBtn:hover {
    cursor: pointer;
    background: rgba(72, 238, 208, 0.15);
    border: solid 1px rgba(72, 238, 208, 0.2);
    padding: 5px 10px 5px 10px;
    transition: all 0.3s ease;
    /* border: solid 2px rgba(72, 238, 208, 0.5);

    transition: all 0.3s ease; */
}

.hover-radius {
    transition: all 0.3s ease;
}

.hover-radius:hover {
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dark-body {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(17, 17, 17, 0.8);
    z-index: 100;
    top:0;
    left: 0;
    transition: all 0.3s ease;
    filter: blur(3px);
}

.page-loading {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 100;
    top:0;
    left: 0;
    transition: all 0.3s ease;
}

.hideViewTaskSlider {
    transform: translateX(-150);
}

.createUpdateTaskAnchorLinks {
    color: #313131;
    font-size: 14px;
    border-radius: 50px;
    background: rgb(245, 245, 245);

}


/* .uppy-StatusBar-actions {
    display: none;
} */

.checkDateIcon {
    position: absolute;
    right: 0;
    color: #4caf50;
    font-size: 24px;
}

.horizontalbar {
    border-left: solid 4px #172D40 !important;
    border-top-left-radius: 22px !important;
    background: rgba(23, 45, 64, 0.05) !important;
}

.uppy-Dashboard-inner { max-height: 320px;}



.tekmon-border-basic-color {
    border-color: #172D40;
}
.tekmon-text-basic-color {
    color: #172D40;
}


/**************************************************************
*
* SIDE TABLE FILTERS
*
**************************************************************/
.tableFilters {
    z-index: 9999999999;

    height: 100vh;
    width: 0px;

    position: fixed !important;
    top: 0 !important;
    left: 0px !important;

    background-color: rgb(252, 252, 252);
    box-shadow: 10px 0 5px -2px rgb(21 27 38 / 8%);
    transition: all 0.5s ease;
}

.showTableFilters {
    width: 400px;
}

@media screen and (max-width: 767.98px) {
    .tableFilters { width: 0; }
    .tableFilters.showTableFilters { width: 100%; }
}

.vtSidenav {
    height: 100%;
    width: 0;
    position: fixed !important;
    z-index: 1;
    top: 0 !important;
    left: 0 !important;
    background-color: rgb(252, 252, 252);
    box-shadow: 10px 0 5px -2px rgb(21 27 38 / 8%);
    overflow-x: hidden;
    transition: 0.5s;

}

.vtSidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.vtSidenav a:hover {
    color: #f1f1f1;
}

.vtSidenav .vtClosebtn {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
    .vtSidenav {padding-top: 15px;}
    .vtSidenav a {font-size: 18px;}
}

.filterRow {
    margin: 15px 30px 15px 30px;
}

/* Hide scrollbar but allow scrolling */
.vtsideFilters {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll; 
}

.vtsideFilters::-webkit-scrollbar {
    display: none;
}

/* Apply box shadow at the bottom side of the filters header */
.vtsideFilters .card-header {
    -moz-box-shadow: 0 4px 4px rgb(21 27 38 / 8%);
    -webkit-box-shadow: 0 4px 4px rgb(21 27 38 / 8%);
    box-shadow: 0 4px 4px rgb(21 27 38 / 8%);
}

/* Apply box shadow at the top side of the filters footer */
.vtsideFilters .card-footer {
    -moz-box-shadow: 0px 0 7px rgb(21 27 38 / 8%);
    -webkit-box-shadow: 0px 0 7px rgb(21 27 38 / 8%);
    box-shadow: 0px 0 7px rgb(21 27 38 / 8%);
}

/* Light grey scrollbar in filters */
/* .vtsideFilters::-webkit-scrollbar {
    width: 5px;
}

.vtsideFilters::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(245, 245, 245);
    border-radius: 50px;
}

.vtsideFilters::-webkit-scrollbar-thumb {
    border-radius: 22px;
    -webkit-box-shadow: inset 0 0 6px  rgb(150, 150, 150);
} */

.openRightSlider {
    width: 45%;
    opacity: 1;
}



/* Apply box shadow at the bottom side of the filters header */
.vtTemplateSlider .card-header {
    -moz-box-shadow: 0 4px 4px rgb(21 27 38 / 8%);
    -webkit-box-shadow: 0 4px 4px rgb(21 27 38 / 8%);
    box-shadow: 0 4px 4px rgb(21 27 38 / 8%);
}

/* Apply box shadow at the top side of the filters footer */
.vtTemplateSlider .card-footer {
    -moz-box-shadow: 0px 0 7px rgb(21 27 38 / 8%);
    -webkit-box-shadow: 0px 0 7px rgb(21 27 38 / 8%);
    box-shadow: 0px 0 7px rgb(21 27 38 / 8%);
}

/*****************************************
* Text Tooltip
*****************************************/
.vt_tooltip .vt_tooltiptext {
    visibility: hidden;
    width: 320px;
    background-color: #323232;
    color: #fff;
    text-align: left;
    border-radius: 7px;
    padding: 10px 10px 10px 10px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.vt_tooltip:hover .vt_tooltiptext {
    visibility: visible;
}

/*******************************************************
* Noty notifications                                   *
*******************************************************/

@media screen and (max-width: 768px) {
    .noty_bar {
        margin-top: 60px !important;
    }
}