/* Sheet Structure 
 * - Colour Variables
 * - Animation
 * - General
 * - Users tab
 * - Sliders tabs
 * - Screenshot tab
 * - Details tab
 * -- Custom Tagging
 * - Share tab
 * - Item Circle
 * - Chosen DIV Border
 * - Floating Icon
 * - Chat Box
 * - Sidebar
 * - Filter task
 * - Front End Wizard
 * - General Tasks pop up
 * - Plugin Conflicts
 * - Translation Adaptations
 * -- RTL
 * - Mobile
 * - Bug Fixes
 * */




/* Colour Variables */
/*:root {
  --main-wpf-color: #002157 !important;
}*/
/**
 * ----------------------------------------
 * Animation fade-in-top
 * ----------------------------------------
 */
 @-webkit-keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

/**
 * ----------------------------------------
 * Animation fade-out
 * ----------------------------------------
 */
@-webkit-keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/**
 * ----------------------------------------
 * Animation pulse
 * ----------------------------------------
 */
@keyframes wpfpulse {
    0% { box-shadow: inset 0px 0px 10px 5px rgba(255, 255, 255, 0.2), 0 0 10px 1px rgba(0, 0, 0, 0.2); }
    40% { box-shadow: inset 0px 0px 10px 7px rgba(255, 255, 255, 0.2), 0 0 20px 5px rgba(255, 255, 255, 0.4); }
    100% { box-shadow: inset 0px 0px 10px 5px rgba(255, 255, 255, 0.2), 0 0 10px 1px rgba(0, 0, 0, 0.2); }
}

/* ------------ General ------------ */
#menu-posts-wpfeedback {
    display: none !important;
}
object.wpf_none_comment, .popover.wpf_comment_container .popover-body ::before, .popover.wpf_comment_container .popover-body ::after {
    box-sizing: border-box;
}
.wpf_comment_container .popover-body ::-webkit-scrollbar, .wpf_sidebar_container ::-webkit-scrollbar, div#wpf_general_comment_tabs ::-webkit-scrollbar {
    width: 7px;
    transition: all 0.2s ease-in !important;
}
.wpf_comment_container .popover-body ::-webkit-scrollbar-thumb, .wpf_sidebar_container ::-webkit-scrollbar-thumb, div#wpf_general_comment_tabs ::-webkit-scrollbar-thumb {
    background: #dee2e6c9;
    border-radius: 50px;
    transition: all 0.2s ease-in !important;
}
.wpf_comment_container .popover-body ::-webkit-scrollbar-thumb:hover, .wpf_sidebar_container ::-webkit-scrollbar-thumb:hover, div#wpf_general_comment_tabs ::-webkit-scrollbar-thumb:hover  {
    background: #dee2e6 !important;
}

.wpf_comment_container a:focus, .wpf_comment_container button:focus {
    outline: none !important;
}
.wpf_comment_container.popover-body {
    padding: 15px 15px 10px 15px;
}

.popover.wpf_comment_container {
    width: 360px;
    font-family: 'Arial', sans-serif;
    max-width: 360px !important;
    z-index: 199997 !important;
    box-shadow: 0em 0em 1em 0em rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6 !important;
    border-radius: 7px;
    display: inline-block;
    opacity: 0;
}
.popover.wpf_comment_container .popover-body {
    padding: 10px 10px 4px 10px !important;
}
div#wpf_general_comment_tabs a, .popover.wpf_comment_container a, .popover.wpf_comment_container label, .popover.wpf_comment_container button, .wpf_comment_container button {
    text-decoration: none !important;
}
.wpf_comment_container ul {
    margin-left: 0 !important;
    margin-top: 0;
    border: none;
    width: auto;
    margin-bottom: -1px;
}
.wpf_current_chat_box {
    margin-bottom: 10px !important;
}
.wpf_comment_container.bs-popover-auto[x-placement^=right]>.arrow::before, .wpf_comment_container.bs-popover-right>.arrow::before {
    border-right-color: #ffffff !important;
    left: 1px !important;
}
.wpf_comment_container.bs-popover-auto[x-placement^=left]>.arrow::before, .wpf_comment_container.bs-popover-left>.arrow::before {
    border-left-color: #ffffff !important;
    right: 1px !important;
}
.wpf_comment_container .form-group {
    margin-bottom: 8px !important;
    overflow: hidden;
}

.wpf_comment_container .form-group span{
    font-size: 12px;
    font-weight: bold;
    color: #cc1816;
}

.wpf_comment_container textarea.form-control {
    font-size: 14px;
    font-family: arial;
    padding: 5px 10px;
    min-height: 80px;
    border: 1px solid #dee2e6 !important;
    border-radius: 7px;
    width: 100%;
    color: #000000;
    background: #ffffff !important;
    text-transform: unset;
    font-weight: normal;
    height: auto;
    line-height: 1.2 !important;
    max-width: 100%;
    min-width: 100%;
    display: block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: none !important;
    outline: none !important;
}

.wpf_comment_container .nav-tabs .nav-link {
    width: 30px;
    padding: 5px 0 8px 0;
    text-align: center;
    float: right;
    font-size: 16px;
    color: var(--main-wpf-color) !important;
    background-color: transparent;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    opacity: 0.3;
    transition: all 0.2s ease-in !important;
}
.wpf_comment_container .nav-tabs .nav-item.show .nav-link, .wpf_comment_container .nav-tabs .nav-link.active {
    color: var(--main-wpf-color) !important;
    z-index: 10;
    position: relative;
    opacity: 1;
    border-color: #dee2e6 #dee2e6 #fff !important;
}

.wpf_comment_container .nav-tabs .nav-link:hover {
    border-color: transparent;
    opacity: 1;
}
.wpf_comment_container .tab-content {
    overflow: hidden;
    display: block;
    border: inherit;
    padding: inherit;
    letter-spacing: 0.03em;
}
.wpf_comment_container .tab-content>.active {
    display: block;
    border: 1px solid #dee2e6;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 0 0px 10px 10px;
    -webkit-animation: fade-in-top 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-top 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both !important;
}
.wpf_comment_container .hide,.hide{ display: none; }

.wpf_comment_container button {
    width: 82%;
    border: none !important;
    margin-top: 10px;
    background-color: var(--main-wpf-color) !important;
    color: #fff;
    font-size: 14px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    border-radius: 50px;
    padding: 10px 5px !important;
    font-weight: 700;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in !important;
    height: auto;
    line-height: 1.4;
    margin-right: 0;
    margin-bottom: 0;
    text-transform: none;
}

.wpf_comment_container button.wpf_upload_button {
    margin-right: 5px !important;
    background-color: #dee2e6 !important;
    min-width: auto !important;
    position: relative;
    color: var(--main-wpf-color) !important;
    float: right;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer !important;
}
.wpf_comment_container button:hover,.wpf_comment_container button.wpf_upload_button:hover {
    color: #fff !important;
    background-color: var(--main-wpf-color) !important;
    opacity: 0.8;
}
.wpf_comment_container input.wpf_uploadfile {
    width: 100% !important;
    opacity: 0 !important;
    position: absolute !important;
    opacity: 0 !important;
    overflow: hidden;
    left: initial;
    top: initial;
    height: auto;
    left: 0px;
    z-index: 10003 !important;
}
.wpf_comment_container .popover-body .close,.wpf_comment_container .popover-content .close {
    font-size: 30px;
    margin-top: -5px;
    color: var(--main-wpf-color) !important;
    float: right;
    font-weight: 400;
    line-height: 1;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    text-decoration: none;

}
.bs-popover-bottom>.arrow.wpf_arrow:before {
    border-bottom-color: #fff !important;
    margin-top: 1px;
}
.bs-popover-auto[x-placement^=bottom]>.wpf_arrow::before, .bs-popover-bottom>.wpf_arrow::before {
    border-bottom-color: #fff !important;
}
#wpf_launcher a, #wpf_launcher button {
    text-decoration: none !important;
    color: var(--main-wpf-color) !important;
    box-shadow: none !important;
}
.wpf_sidebar_container div, .wpf_sidebar_container.wpf_graphics span {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/* ------------ Users tab  ------------ */

.popover.wpf_comment_container ul.wp_feedback_filter_checkbox, .wpf_tag_autocomplete buttonuser, .popover.wpf_comment_container ul.wp_feedback_filter_checkbox.user {
    max-height: 120px !important;
    overflow-y: auto;
    padding: 0 !important;
    margin: 0 !important;
}
ul.wp_feedback_filter_checkbox.user label {
    margin: 0 0px 5px 5px;
    letter-spacing: initial;
    text-transform: initial;
    font-size: 12px;
}

ul.wp_feedback_filter_checkbox.user li, ul.wp_feedback_filter_checkbox.user label {
    cursor: pointer;
    position: relative;
}

ul.wp_feedback_filter_checkbox.user input[type=checkbox] {
    display: none;
}
ul.wp_feedback_filter_checkbox.user input[type="checkbox"] + label:before, div#wpf_wizard_notifications input + label:before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-bottom: -2px;
    margin-right: 5px;
    margin-left: -5px;
    border-radius: 3px;
    border: 2px solid var(--main-wpf-color) !important;
    opacity: 0.6;
    transition: all .12s,border-color .08s !important;
}
ul.wp_feedback_filter_checkbox.user input[type="checkbox"]:checked + label:before, div#wpf_wizard_notifications input:checked + label:before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-bottom: -2px;
    margin-right: 5px;
    margin-left: -5px;
    border-radius: 3px;
    border: 2px solid var(--main-wpf-color) !important;
    opacity: 0.6;
    transition: all .12s,border-color .08s !important;
}
ul.wp_feedback_filter_checkbox.user input[type="checkbox"]:checked + label:after, div#wpf_wizard_notifications input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 1px;
    left: 0px;
    width: 5px;
    height: 8px;
    border: solid var(--main-wpf-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.wpf_checkbox label {
    margin-bottom: 10px !important;
    position: relative;
}
/* ------------ Sliders tabs  ------------ */

.anim-slider {
    border-bottom: 7px solid #dee2e6;
    box-shadow: 0 1px 0 0 rgba(255,255,255,0.15);
    padding-bottom: 0.25em;
    position: relative;
    width: 100%;
}
.anim-slider::after{
    content: '';
    display: table; width: 100%; clear: both;
}
.anim-slider input[type="radio"] {
    display: none;
}
.anim-slider label {
    float: left;
    width: 25%;
    text-align: center;
    cursor: pointer;
    transition: color .5s !important;
    font-size: 10px !important;
    margin-bottom: -15px;
    font-family: 'Arial', sans-serif;
    color: #6c757d;
    font-weight: 700 !important;
    padding-bottom: 20px;
    text-transform: initial;
    display: inline-block !important;
    letter-spacing: 0.3px !important;
}
.anim-slider label:hover {
    text-decoration: underline !important;
}
.anim-slider input:checked + label {
    color: var(--main-wpf-color) !important;
}
.anim-slider label:last-of-type::after {
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--main-wpf-color) !important;
    content: "";
    position: absolute;
    bottom: -11px;
    border-radius: 50%;
    left: 0;
    margin-left: -0.6em;
    transition: left 0.5s !important;
}
.anim-slider input:checked:nth-of-type(1) ~ label:last-of-type::after {
    left: 12%;
}
.anim-slider input:checked:nth-of-type(2) ~ label:last-of-type::after {
    left: 38%;
}
.anim-slider input:checked:nth-of-type(3) ~ label:last-of-type::after {
    left: 62%;
}
.anim-slider input:checked:nth-of-type(4) ~ label:last-of-type::after {
    left: 88%;
}



/* ------------ Screenshot tab  ------------ */

.wpf_screenshot_button {
    background-color: var(--main-wpf-color) !important;
    color: #fff;
    font-size: 14px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    border-radius: 50px;
    padding: 10px 5px;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 5px;
    /*box-shadow: 0em 0em 1em 0em rgba(0, 0, 0, 0.3);*/
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in !important;
}
.wpf_screenshot_button:hover {
    opacity: 0.8;
}
.wpfb_screenshot_class:before{
    content: "";
    /*background-image: url(../images/ConventionalOblongFairybluebird-small.gif);*/
    width: 150px;
    height: 150px;
    background-size: contain;
    background-color: #fff;
    position: fixed;
    left: calc(50% - 75px);
    top: calc(50% - 75px);

}
.wpfb_screenshot_class{
    filter: grayscale(0%) brightness(200%) contrast(200%);
    -webkit-filter: grayscale(0%) brightness(200%) contrast(200%);
    background-color: transparent !important;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in !important;

}

@-webkit-keyframes appear {
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@keyframes appear {
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
a.wpf_screenshot_img_link img {
    border-radius: 10px;
    transition: all linear .2s !important;
    box-sizing: border-box;
}
a.wpf_screenshot_img_link img:hover {
    box-shadow: 0 6px 24px 0 rgba(18,43,70,.12);
}
/* ------------ Details tab  ------------ */


ul.wpf_details_tab_inner {
    padding: 0;
    margin: 0;
}
.wpf_comment_container .popover-body li, #wpf_general_comment_tabs ul li {
    list-style: none;
    font-size: 12px;
    line-height: 1.5;
    color: #000000;
    margin-left: 0;
    margin-top: 0 !important;
    margin-bottom: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wpf_comment_container .popover .nav-tabs{border-bottom:none;}

.wpf_comment_container > .arrow {width: .5rem !important;height: 1rem !important;border-style: none !important;}

/* ------------ Custom Tagging ------------ */


.mfp-wrap .modal {
    display: block;
}
button.wpf_upload_button:after {
    content: none !important;
}


span.wpf_tag_name a {
    margin-left: 5px;
    color: var(--main-wpf-color) !important;
}
.wpf_comment_container span.wpf_tag_name {
    display: inline-block;
    background: #e2e4e7;
    transition: all .2s cubic-bezier(.4,1,.4,1) !important;
    margin-right: 5px;
    margin-top: 5px;
    border-radius: 12px;
    padding: 0 4px 0 8px;
    font-size: 12px;
}
input.wpf_tag {
    padding: initial;
    width: 100%;
    margin-bottom: 5px;
    height: 40px;
    box-shadow: none;
    border-radius: 5px;
}
.wpf_icon_title {
    display: block;
    text-align: left;
    color: var(--main-wpf-color) !important;
    font-weight: 700;
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: 0.015em;
    line-height: 1.4;
    margin-bottom: 5px;
}
div#wpf_share_page_btn .wpf_icon_title {
    margin-top: 10px;
}
.wpf_tag_autocomplete input {
    font-size: 12px !important;
    font-family: inherit !important;
    border-radius: 5px !important;
}
.wpf_tag_autocomplete {
    position: relative !important;
}
.wpf_tag_autocomplete button {
    position: absolute;
    right: 10px;
    top: 0px;
    bottom: 0;
    width: 24px;
    margin-bottom: 0px;
    height: 40px;
    background-color: transparent !important;
    opacity: 0.9;
    cursor: pointer;
    margin-top: 0px !important;
    box-shadow: none !important;

}
.wpf_tag_autocomplete button i {
    vertical-align: top;
    position: absolute;
    top: 10px;
    right: 0px;
    color: var(--main-wpf-color) !important;
}
.wpf_comment_container button.wpf_tag_submit_btn:hover,.wpf_comment_container button.wpf_tag_submit_btn:focus {
    background: transparent !important;
}
.wpf_tag_autocomplete-items {
    font-size: 12px;
    border: 1px solid #dee2e6;
    position: absolute;
    background-color: #fff;
    width: 100%;
    top: 37px;
    border-radius: 0px 0px 7px 7px;
    cursor: pointer;
    max-height: 115px;
    overflow-y: auto;
    z-index: 10000;
}
.wpf_tag_autocomplete-items div {
    padding: 5px 15px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in !important;
}
.wpf_tag_autocomplete-items div:hover {
    background-color: #dee2e6;
    font-weight: 700;
}
.wpf_tag_autocomplete-items .wpf_tag_autocomplete-active {
    background-color: var(--main-wpf-color) !important;
    color: #ffffff;
}
span.wpf_task_tag_more {
    position: relative;
}
/* ------------ Share tab ------------ */
span.wpf_share_task_link {
    color: rgba(0, 0, 0, 0.7);
    font-size: 12px;
    letter-spacing: 0.015em;
    background-color: #d6fdd9;
    padding: 4px 35px 5px 10px !important;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    display: flex;
    line-height: 1.3;
    max-height: 38px;
    overflow: hidden;
    text-align: left;
    position: relative;
    height: 38px;
    box-sizing: border-box;
    width: 100%;
    align-content: stretch;
    align-items: center;
    margin-bottom: 5px;
}
a.wpf_copy_task_icon {
    position: absolute;
    right: 0;
    top: 2px;
    height: 35px;
    width: 30px;
    padding-left: 10px;
    padding-top: 10px;
    background-color: #d6fdd9;
    box-sizing: border-box;
}
.wpf_success_wpf_share_link {
    position: absolute;
    bottom: -1px;
    left: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.015em;
    background-color: #3ed696;
    padding: 10px 5px 5px 10px !important;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    line-height: 1.3;
    width: 100%;
    height: 40px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out !important;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.wpf_remove_login_box {
    position: relative;
}
label.wpf_remove_login_label {
    font-size: 12px !important;
    color: #000 !important;
    position: relative !important;
    text-align: left;
    display: block !important;
}
input.wpf_remove_login_task_link {
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: none !important;
}
label.wpf_remove_login_label:before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-bottom: -2px;
    margin-right: 2px;
    margin-left: 0;
    border-radius: 3px;
    border: 2px solid var(--main-wpf-color) !important;
    opacity: 0.6;
    transition: all .12s,border-color .08s !important;
}
.wpf_remove_login_box input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 5px;
    width: 5px;
    height: 8px;
    border: solid var(--main-wpf-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.wpf_wizard_modal label.wpf_remove_login_label:after {
    top: 5px !important;
}
div#wpf_wizard_notifications input:checked + label:after{
    top: 3px !important;
}
/* ------------ Item Circle  ------------ */

.wpfb-point {
    position: absolute !important;
    width: 40px;
    height: 40px;
    left: 45%;
    top: 45%;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    font-weight: 800;
    color: #fff !important;
    z-index: 199997;
    font-family: 'Exo', sans-serif;
    text-decoration: none;
    transition: background 0.35s ease, opacity 0.35s ease !important;
    border-radius: 50%;
    background: var(--main-wpf-color) !important;
    cursor: pointer;
    /*box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);*/
    animation: wpfpulse 2s infinite !important;
}
.wpfb-point:active, .wpfb-point:focus {
    opacity: 0.7 !important;
    text-decoration: none;
}
.wpfb-point:hover {
    opacity: 0.4 !important;
    text-decoration: none;
}
/**
 * ----------------------------------------
 * Animation pulse
 * ----------------------------------------
 */
@-webkit-keyframes wpfpulse {
    0% {
        -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        -webkit-box-shadow: 00 0 10px 1px rgba(0, 0, 0, 0.2);
    }
}
@keyframes wpfpulse {
0% {
-moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
}
40% {
-moz-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
}
100% {
-moz-box-shadow:0 0 10px 1px rgba(0, 0, 0, 0.2);
box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
}
}


/* ------------ Chosen DIV Border ------------ */

.outer div {
    position:absolute;
    border-top: 2px dashed red;
    z-index:165000;
    animation: wpfpulse 2s infinite !important;
}
.outer div:nth-child(3), .outer div:nth-child(4) {
    border-right: 2px dashed red;
    animation: wpfpulse 2s infinite !important;
}

/* ------------ Floating Icon ------------ */

#wpf_launcher {
    position: fixed;
    cursor: pointer;
    z-index: 199998;
    right: 0;
    top: 0;
    display: block;
    text-align: right;
    max-width: 350px;
}
.logged-in #wpf_launcher {
    top: 32px;
}
.wpf_launch_buttons {
    position: absolute;
    left: -56px;
    margin-top: 15vh;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 7px 0px 0px 7px;
    overflow: hidden;
    width: 56px;
}
.wpf_start_comment {
    background-color: var(--main-wpf-color) !important;
    display: block;
    text-align: center;
    padding: 7px 0px;
    line-height: 1.2;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in !important;
}



.wpf_start_comment a {
    color: #fff;
    font-size: 10px;
    line-height: 1.6;
    padding: 15px;
    display: block;
    box-sizing: border-box;
}

.wpf_expand {
    background-color: white;
    font-size: 10px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    display: block;
    font-weight: 400;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in !important;
}
.wpf_expand:hover {

}

.wpf_expand a {
    display: block;
    min-height: 43px;
}

.wpf_expand img {
    width: 100%;
    padding: 10px 15px;
}

.wpf_expand object {
    width: 100%;
    padding: 10px 15px;
    pointer-events: none;
}
svg#wpf_icon path#wpf_exc_mark, svg#wpf_icon circle#wpf_exc_circle {
    fill: var(--main-wpf-color) !important;
}
svg#wpf_icon {
    width: 100%;
    padding: 8px 15px 6px 15px;
}
#wpf_expand_btn *,::before,::after {
    box-sizing: border-box;
}

a.wpf_filter_tab_btn.cloud_dashboard_btn svg {
    width: 20px !important;
    display: block;
    padding: 0px 0!important;
    margin: auto;
    height: 32px;
}
/* ------------ Chat Box ------------ */

.wpf_current_chat_box {
    max-height: 350px;
    overflow-y: auto;
    margin-bottom: 10px;
    border: 1px solid #dee2e6;
    border-radius: 7px;
    padding: 10px;
}

.wpf_current_chat_box .task-author {
    margin: 3px 0 7px 0 !important;
    display: block;
}

li.wpf_other {
    margin-bottom: 10px !important;
    border: 1px solid #dee2e6;
    border-radius: 17px;
    padding: 5px 10px !important;
    width: 80%;
    -webkit-animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both !important;
    color: #000000;
    margin-left: 18% !important;
}
li.wpf_author {
    margin-bottom: 10px !important;
    border-radius: 17px;
    padding: 5px 10px;
    width: 80%;
    margin-left: 10%;
    background-color: #dee2e6;
    -webkit-animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both !important;
    list-style: none !important;
    color: #000000;
}
.chat_text {
    font-family: arial;
    margin-bottom: 10px;
    white-space: pre-wrap;
    cursor: auto;
    line-height: 1.4 !important;
}
.wpf_current_chat_box .meassage_area_main img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 7px;
    max-width: 100%;
    transition: all linear .2s !important;
    background-color: #fff;
}
.wpf_current_chat_box .meassage_area_main img:hover {
    box-shadow: 0 6px 24px 0 rgba(18,43,70,.12);
}
ul.wpf_current_chat_box:empty {
    display: none;
}
.wpfb-point.active_comment {
    pointer-events: none;
}

/* ------------ Sidebar ------------ */

.wpf_sidebar_container {
    width: 300px;
    background-color: #fff;
    height: 100vh;
    position: relative;
    box-shadow: 0em 0em 1em 0em rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0;
    margin: 0 -1px 0 0;
    right: 0;
    transition: 0.8s !important;
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    border-top: 3px solid var(--main-wpf-color) !important;
}
.logged-in .wpf_sidebar_container {
    height: calc(100vh - 32px);
}
.wpf_sidebar_header {
    display: block;
    flex: 1;
    flex-grow: 0;
    padding: 5px 5px 0 5px;
    background-color: #dee2e6;
}

.wpf_sidebar_options {
    text-align: center;
    padding: 15px;
    flex:1;
    flex-grow:0;
}
.wpf_sidebar_filter.wpf_col2 div#container {
    overflow: hidden;
    margin-top: 0px;
}
.wpf_sidebar_container .wpf_filter_tab div#container .wpf_active {
    border: 1px solid #dee2e6;
    padding: 0 10px 10px;
    margin: 0;
    border-radius: 0 0 7px 7px;
    -webkit-animation: fade-in-top 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-top 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both !important;
}

button.wpf_tab_sidebar {
    float: left;
    width: 30%;
    font-size: 12px;
    background-color: #dee2e6 !important;
    color: var(--main-wpf-color) !important;
    border-radius: 0;
    font-family: Arial;
    border: none;
    font-weight: 700;
    padding: 13px 0 !important;
    margin-right: 0;
    text-transform: none;
    margin-bottom: 0;
    line-height: normal;
    min-width: auto !important;
}

button.wpf_tab_sidebar.wpf_thispage.wpf_active, button.wpf_tab_sidebar.wpf_allpages.wpf_active, button.wpf_tab_sidebar.wpf_backend.wpf_active, button.wpf_tab_sidebar.wpf_frontend.wpf_active {
    background-color: #fff!important;
    border-radius: 7px 7px 0 0;
}
.wpf_filter_tab {
    padding: 8px 10px;
}

#wpf_launcher .wpf_general_task_thispage {
    float: right;
    color: var(--main-wpf-color) !important;
    background-color: #dee2e6;
    font-weight: 700;
    padding: 7px 10px 5px 5px;
    border-radius: 50px;
    transition: all 0.2s ease-in !important;
}
#wpf_launcher .wpf_general_task_thispage:hover {
    color: #fff !important;
    background-color: var(--main-wpf-color) !important;
}
a.wpf_general_task_thispage i.fa.fa-plus-circle {
    font-size: 18px;
    margin: -4px 5px 0px 0px !important;
    display: inline-block;
    vertical-align: middle;
}

#wpf_launcher a.wpf_filter_tab_btn {
    float: left;
    text-align: center;
    border: 1px solid transparent;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    font-size: 16px;
    color: var(--main-wpf-color) !important;
    background-color: transparent;
    height: 35px;
    width: 32px !important;
    line-height: 2;
    opacity: 0.3;
    outline: none;
    margin-bottom: -1px;
    transition: all 0.2s ease-in !important;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: center;
}
#wpf_launcher a.wpf_filter_tab_btn:hover {
    opacity: 1;
}
#wpf_launcher a.cloud_dashboard_btn{
    display: block;
    width: 30px;
    padding: 0;
}

#wpf_launcher a.cloud_dashboard_btn object {
    pointer-events: none;
    width: 20px;
    margin-top: 6px;
}

a.wpf_filter_tab_btn.wpf_active {
    color: var(--main-wpf-color) !important;
    z-index: 10;
    position: relative;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff !important;
    opacity: 1 !important;
}
.wpf_sidebar_content {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    flex-grow: 1;
}
.wpf_sidebar_footer {
    background-color: #dee2e6;
    text-align: center;
    font-size:12px;
    flex:1;
    flex-grow:0;
}
.wpf_sidebar_footer img {
    max-width: 100px;
    max-height: 24px;
    margin: -5px 2px -7px 2px;
    display: inline-block;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in !important;
}
.wpf_sidebar_footer:hover img {
    max-width: 110px;
    max-height: 30px;
    margin: -10px -6px -8px 0px;
}
.wpf_sidebar_footer a {
    display: block;
    padding: 14px;
    color: var(--main-wpf-color) !important;
}
.wpf_sidebar_footer a:hover {
    color: var(--main-wpf-color) !important;
}

.wpf_sidebar_footer span {
    font-size: 15px;
    font-weight: 700;
}
.wpf_task_pagename {
    font-weight: 700;
    color: var(--main-wpf-color) !important;
    font-family: 'Arial', sans-serif;
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1.4 !important;
}
.wpf_hide, .wpfb-point.complete,.wpf_general_hide{ display: none; }
.complete .wpf_task_number{background-color: #3ed696 !important;}
a.wpfb-point.complete {
    background-color: #3ed696 !important;
}

#wpf_enable_comment {
    position: fixed;
    left: calc(50% - 180px);
    bottom: 10px;
    width: auto;
    background-color: var(--main-wpf-color) !important;
    margin: auto;
    color: white;
    border-radius: 50px;
    font-size: 18px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    padding: 15px 25px;
    font-weight: 700;
    z-index: 10;
}

#wpf_enable_comment p {
    display: inline-block;
    margin: 0 15px 0 0;
}

a.wpf_comment_mode_general_task {
    padding: 5px 10px 5px 7px;
    display: inline-block;
    background-color: white;
    border-radius: 50px;
    color: var(--main-wpf-color) !important;
    text-decoration: none;
    margin-right: 15px;
    line-height: 1.3;
    font-size: 16px;
}
a#disable_comment_a {
    color: #fff;
    text-decoration: underline;
    font-size: 16px;
}
.wpf_sidebar_dashboard svg {
    margin-left: 5px;
}
.wpfb_screenshot_class:before{
    content: "";
    width: 150px;
    height: 150px;
    background-size: contain;
    background-color: #fff;
    position: fixed;
    left: calc(50% - 75px);
    top: calc(50vh - 75px)
}
.wpfb_screenshot_class{
    background-color: transparent !important;
    -webkit-animation: appear 1s ease 1s 1 normal both;
    animation: appear 1s ease 1s 1 normal both !important;
}
.popover.fade.show {
    opacity: 1 !important;
}


@-webkit-keyframes appear {
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@keyframes appear {
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}




.popover a:hover, .popover a:active, .popover a:focus {
    outline : none !important;
}

.wpf_sidebar_container ul {
    padding: 0;
    margin: 0;
}
li.current_page_task, li.current_page_general_task {
    list-style: none;
    position: relative;
    font-size: 12px;
    margin-left: 0;
    padding: 10px 10px 0 10px;
    transition: 0.2s !important;
    background-color: transparent;
    outline: 0px solid #dee2e6;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}
li.current_page_task.wpf_active, li.current_page_general_task.wpf_active, li.current_page_task:hover, li.current_page_general_task:hover {
    background-color: #dee2e6;
}
.wpf_task_number {
    background-color: var(--main-wpf-color) !important;
    color: #fff;
    font-weight: 800;
    width: 32px;
    float: left;
    height: 32px;
    line-height: 2.4;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-family: 'Exo', sans-serif;
    position: relative;
    margin: 1px;
    overflow: hidden;
    transition: all 0.2s ease-in !important;
}
ul#wpf_thispage_container .wpf_task_number:hover {
    background-color: #ff4366 !important;
    color: #ff4366 !important;
}

ul#wpf_thispage_container .wpf_task_number:before {
    content: "";
    box-sizing: border-box;
    display: block;
    transform: scale(var(--ggs,1));
    width: 5px;
    height: 5px;
    border: 2px solid;
    border-radius: 100px;
    position: absolute;
    /*top: 12px;
    left: 12px;*/
    color: #fff;
    transition: all 0.2s ease-in !important;
    opacity: 0;
    z-index: 1;
}
ul#wpf_thispage_container .wpf_task_number:hover:before {
    opacity: 1;
}
ul#wpf_thispage_container .wpf_task_number:after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 11px;
    height: 11px;
    box-shadow: -5px -5px 0 -3px, 5px 5px 0 -3px, 5px -5px 0 -3px, -5px 5px 0 -3px;
    /*left: 9px;
    top: 9px;*/
    transform: rotate(0deg);
    color: #fff;
    transition: all 0.2s ease-in !important;
    opacity: 0;
    z-index: 1;
}
ul#wpf_thispage_container .wpf_task_number:hover:after {
    transform: rotate(45deg);
    opacity: 1;
}
.wpf_task_sum {
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
    width: calc(100% - 45px);
    text-align: left;
    font-family: arial;
    color: #4B4B4B;
    font-size: 12px;
    transition: all 0.2s ease-in !important;
}

level.task-author {
    font-size: 11px;
    color: #000;
    vertical-align: top;
    margin-top: -2px;
    display: block;
    opacity: 0.5;
    font-weight: 800;
}
level.task-author span {
    font-weight: 700;
    margin: 0 5px;
    display: inline-block;
}

#wpf_thispage level.task-author {
    display: block;
    margin: -2px 0px 5px 0px;
}
#wpf_backend level.task-author {
    margin-bottom: 5px;
}
input#wpf_display_all_taskmeta {
    height: 0;
}
input#wpf_display_all_taskmeta:before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-bottom: -2px;
    margin-right: 2px;
    margin-left: 0;
    border-radius: 3px;
    border: 2px solid var(--main-wpf-color) !important;
    opacity: 0.6;
    transition: all .12s,border-color .08s !important;
}
input#wpf_display_all_taskmeta:checked:after {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 5px;
    height: 8px;
    border: solid var(--main-wpf-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.wpf_task_meta {
    display: inline-block;
    vertical-align: top;
    transition: all 0.2s ease-in !important;
    opacity: 0.5;
    margin-top: -10px;
    position: absolute;
    right: 0;
    background-color: transparent;
    box-shadow: none;
    padding: 0 5px;
    height: 120%;
    text-align: right;
}
.wpf_task_meta:hover, .wpf_task_meta.wpf_active {
    opacity: 1;
    right: -5px;
    background-color: rgba(255, 255, 255, 0.9);
}
.wpf_task_meta_icon {
    display: inline-block;
    color: var(--main-wpf-color) !important;
    vertical-align: top;
    font-size: 14px;
    padding: 15px 10px;
    opacity: 1;
    transition: all 0.2s ease-in !important;
    height: 100%;
    position: absolute;
    right: 0;
}
.wpf_task_meta:hover > .wpf_task_meta_icon, .wpf_task_meta.wpf_active .wpf_task_meta_icon {
    opacity: 0;
    z-index: 0;
}

.wpf_task_meta_details {
    display: inline-block;
    vertical-align: middle;
    margin-right: -100px;
    transition: all 0.2s ease-in !important;
    overflow: hidden;
    opacity: 0;
    padding: 5px;
    position: relative;
}
.wpf_task_meta:hover > .wpf_task_meta_details, .wpf_task_meta.wpf_active .wpf_task_meta_details {
    margin-right: 0;
    opacity: 1;
    z-index: 100;
}


span.wpf_task_type {
    background-color: var(--main-wpf-color) !important;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 2px 3px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 2px !important;
    line-height: 1.1;
    letter-spacing: 0;
}
.wpf_task_label {
    margin-top: -1px;
}
.wpf_task_label span {
    width: 18px;
    height: 18px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    margin: 1px 1px 0px 1px;
    font-weight: 100;
    display: inline-block;
    font-size: 10px;
    line-height: 1.9;
}
span.task_status {
    width: 17px;
    height: 17px;
}
span.wpf_task_tag, span.wpf_task_tag_more {
    background-color: #dee2e6;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 15px;
    margin-right: 2px;
}
span.wpf_task_tag:last-child, span.wpf_task_tag_more:last-child {
    margin-right: 0px;
}
.tab-pane ul {
    margin: 0;
    padding: 0;
}

.current_page_task_list {
    height: 40px;
    line-height: 1.2;
    white-space: normal;
    margin-top: -5px;
    max-width: 90%;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

#wpf_already_comment p.wpf_btn, #wpf_reconnecting_task p.wpf_btn {
    margin: 0;
}
div#wpf_already_comment, div#wpf_reconnecting_task,div#wpf_reconnecting_enabled {
    position: fixed;
    margin: auto;
    color: var(--main-wpf-color) !important;
    border-radius: 6px;
    font-size: 14px;
    text-align: left;
    padding: 10px 25px;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    top: 50px;
    left: 25px;
    max-width: 95%;
    z-index: 199999;
    opacity: 1;
    width: 350px;
    background-color: #36FA92;
    line-height: 1.5;
    letter-spacing: 0.02em;
    box-shadow: 0em 0em 1em 0.1em rgba(0, 0, 0, 0.2);
}
.wpf_notice_text {
    font-weight: 400;
}
.wpf_sidebar_generaltask a {
    width: 100%;
    display: inline-block;
    background-color: var(--main-wpf-color) !important;
    padding: 10px;
    border-radius: 7px;
    color: #fff !important;
    font-size: 14px;
    font-weight: bold;
    transition: 0.5s !important;
    margin-bottom: 10px;
    text-decoration: none !important;
}
.wpf_sidebar_generaltask a:hover {
    opacity: 0.8;
}
.wpf_sidebar_dashboard a {
    width: 100%;
    display: inline-block;
    background-color: #efefef;
    padding: 10px;
    border-radius: 7px;
    color: var(--main-wpf-color) !important;
    font-size: 14px;
    font-weight: bold;
    transition:0.5s !important;
}

.wpf_sidebar_dashboard:hover a {
    background-color: #d6d6d6;
}

.wpf_sidebar_dashboard i {
    margin-left: 5px;
    font-size: 18px;
}

.wpf_sidebar_checkboxes input[type=checkbox] {
    display: none;
}

.wpf_sidebar_checkboxes input[type="checkbox"] + label:before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-bottom: -2px;
    margin-right: 5px;
    margin-left: -5px;
    border-radius: 3px;
    border: 2px solid var(--main-wpf-color) !important;
    opacity: 0.6;
    transition: all .12s,border-color .08s !important;
}
.wpf_sidebar_checkboxes input[type="checkbox"]:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 5px;
    height: 8px;
    border: solid var(--main-wpf-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
div#wpf_task_visibility input[type="checkbox"]:checked + label:after {
    top: 3px;
}
label.wpf_visibility_title {
    display: block;
    text-align: left;
    color: var(--main-wpf-color) !important;
    font-weight: 700;
    margin-top: 10px;
    font-size: 12px;
    margin-bottom: 0 !important;
}
.wpf_sidebar_checkboxes {
    width: 48%;
    display: inline-block;
    margin-bottom: 5px;
    text-align: left;
}
.wpf_display_all_taskmeta_div.wpf_sidebar_checkboxes {
    width: 100%;
    padding-left: 7px;
    display: block;
    float: none;
    margin-top: 0;
}

.wpf_sidebar_checkboxes label {
    font-size: 11px;
    font-weight: 700 !important;
    display: block !important;
    text-align: left;
    position: relative;
    margin: 0 !important;
}
div#wpf_task_visibility {
    border: 1px solid #dee2e6;
    padding: 0 10px 10px;
    margin: 0;
    border-radius: 0 0 7px 7px;
    -webkit-animation: fade-in-top 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-top 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both !important;
}
.wpf_start_comment a.active_comment i {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.wpf_task_label .wpf_pending-review,.wpf_task_label .wpf_medium{
    background-color: #fcd227;
}
.wpf_task_label .wpf_high,.wpf_task_label .wpf_in-progress{
    background-color: #ffa532;
}
.wpf_task_label .wpf_complete,.wpf_task_label .wpf_low{
    background-color: #3ed696;
}
.wpf_task_label .wpf_open,.wpf_task_label .wpf_critical {
    background-color: #ff5a48;
}
#wpf_tasks span.wpf_tag_name {
    display: inline-block;
    background: #e2e4e7;
    transition: all .2s cubic-bezier(.4,1,.4,1) !important;
    margin-right: 5px;
    border-radius: 12px;
    padding: 5px 8px;
    font-size: 14px;
}

/*----------------Some website plus icon disappeared on frontend-------------------*/
.wpf_start_comment .fa-plus:hover {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
    animation: wpfpulse 2s infinite !important;
}
.wpf_start_comment a.active_comment i, .wpf_start_comment a.active_comment .fa-plus {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.wpf_start_comment i, .wpf_start_comment .fa-plus{
    margin: 10px 0;
    color: #fff;
    display: block;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in !important;
}
.popover.wpf_comment_container i.fa,#wpf_launcher i.fa, #wpf_launcher .fa-plus {
    margin: 0px;
    background: unset;
    padding: unset;
}

/* ---------- Filter task ---------- */

button.wpf_filter.wpf_filter_taskstatus {
    margin-right: 2%;
}


div#wpf_task_filter_btn {
    border: 1px solid #dee2e6;
    padding: 0 10px 10px;
    margin: 0;
    border-radius: 0 0 7px 7px;
    -webkit-animation: fade-in-top 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-top 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both !important;
}
button.wpf_filter:hover, button.wpf_filter.wpf_active {
    background-color: var(--main-wpf-color) !important;
    color: #fff !important;
}
label.wpf_filter_title {
    display: block;
    text-align: left;
    color: var(--main-wpf-color) !important;
    font-weight: 700;
    margin-top: 10px;
    font-size: 12px;
}
ul#wpf_sidebar_filter_task_status, ul#wpf_sidebar_filter_task_priority {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.wpf_filter_checkbox li {
    float: left;
    font-size: 11px;
    text-align: left;
    font-weight: 700;
    list-style: none;
    margin-top: 5px;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    margin-left: 0;
}
.wpf_filter_checkbox li label {
    cursor: pointer !important;
    font-size: 11px !important;
    margin-left: 0 !important;
    position: relative;
}
ul#wpf_sidebar_filter_task_status.wpf_filter_checkbox li:nth-child(1), ul#wpf_sidebar_filter_task_priority.wpf_filter_checkbox li:nth-child(4) {
    color: #ff5a48;
}
ul#wpf_sidebar_filter_task_status.wpf_filter_checkbox li:nth-child(2), ul#wpf_sidebar_filter_task_priority.wpf_filter_checkbox li:nth-child(3) {
    color: #ffa532;
}
ul#wpf_sidebar_filter_task_status.wpf_filter_checkbox li:nth-child(3), ul#wpf_sidebar_filter_task_priority.wpf_filter_checkbox li:nth-child(2) {
    color: #fcd227;
}
ul#wpf_sidebar_filter_task_status.wpf_filter_checkbox li:nth-child(4), ul#wpf_sidebar_filter_task_priority.wpf_filter_checkbox li:nth-child(1) {
    color: #3ed696;
}

.wpf_filter_checkbox input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: 5px;
    width: 5px;
    height: 8px;
    border: solid var(--main-wpf-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.wpf_filter_checkbox input + label:before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-bottom: -2px;
    margin-right: 2px;
    margin-left: 0;
    border-radius: 3px;
    border: 2px solid var(--main-wpf-color) !important;
    opacity: 0.6;
    transition: all .12s,border-color .08s !important;
}
.wpf_filter_checkbox li input {
    display: none;
}


a.wpf_sidebar_filter_reset_task_status, a.wpf_sidebar_filter_reset_task_priority {
    display: none !important;
    color: var(--main-wpf-color) !important;
}
/* ---------- Share Tab ---------- */

/* ---------- Front End Wizard ---------- */
.wpf_wizard_container {
    position: fixed;
    z-index: 199999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*display: block;*/
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.85);
}
.wpf_wizard_modal {
    width: 450px;
    max-width: 88%;
    margin: auto;
    margin-top: 5%;
    box-shadow: 0em 0em 3em 0em rgba(0,0,0,0.13);
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #efefef;
    background-color: #fff !important;
    text-align: center;
    font-family: arial, sans-serif;
    font-size: 14px;
}
.wpf_wizard_page {
    margin-bottom: 15px;
}
.wpf_wizard_button {
    border-radius: 50px;
    border: none;
    padding: 15px 25px;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    background-color: var(--main-wpf-color) !important;
    display: block;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in !important;
}

.wpf_wizard_button:hover {
    opacity: 0.8;
}
.wpf_wizard_title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--main-wpf-color) !important;
    font-family: 'Arial', sans-serif;
    line-height: 1.1;
}
.wpf_wizard_choice {
    width: 30%;
    display: inline-block !important;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #efefef;
    vertical-align: top;
    min-height: 150px;
    background-color: #fff;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in !important;
}
.wpf_checkbox input[type="checkbox"] {
    /*display: none;*/
}
.wpf_wizard_choice:hover {
    background-color: #efefef;
}
.wpf_wizard_choice_title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--main-wpf-color) !important;
    font-family: 'Arial', sans-serif;
    line-height: 1.1;
}
.wpf_wizard_choice img {
    width: 70px;
    margin: 5px auto;
}
.wpf_wizard_desc {
    font-size: 80%;
    margin-top: 5px;
}
.wpf_wizard_user input[type=radio]:checked+label{
    background-color: #efefef;
}
.wpf_wizard_page input {
    display: none !important;
}
.wpf_wizard_notifications_check .wpf_checkbox {
    margin-bottom: 7px;
    min-height: 22px;
}
.wpf_wizard_notifications_check .wpf_checkbox label {
    margin-bottom: 10px !important;
    position: relative;
    font-size: 14px !important;
}
.wpf_wizard_notifications_check {
    text-align: left;
    border: 1px solid #efefef;
    padding-left: 13px;
    padding-top: 7px;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #000000;
}
btn#wpf_wizard_done_button {
    margin-top: 15px;
}
li.wpf_other.magic_msg_replied {
    padding: 5px 10px !important;
}
li.wpf_other.magic_msg_replied a {
    width: 100%;
    border: none !important;
    margin-top: 10px;
    background-color: var(--main-wpf-color) !important;
    color: #fff;
    font-size: 14px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    border-radius: 50px;
    padding: 12px 5px !important;
    font-weight: 700;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in !important;
    height: auto;
    line-height: initial;
    margin-right: 0;
    margin-bottom: 0;
    text-transform: none;
    display: block;
}
.wpf_comment_container .popover-body ul.nav.nav-tabs li:before , ul.wp_feedback_filter_checkbox.user li:before,.wpf_comment_container .popover-body li:before,#wpf_general_comment_tabs ul li:before, #wpf_sidebar_filter_task_status li:before,#wpf_sidebar_filter_task_priority li:before{
    content: none;
}
.wpf_comment_container .popover-body ul.nav.nav-tabs li,ul.wp_feedback_filter_checkbox.user li,.wpf_comment_container .popover-body li,#wpf_general_comment_tabs ul li,#wpf_sidebar_filter_task_status li,#wpf_sidebar_filter_task_priority li{
    padding: 0;
}
.wpf_comment_container ul{
    padding: inherit;
}
li.wpf_author {
    padding: 5px 10px !important;
}
.wpf_tag_autocomplete input {
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    padding-left: 10px;
}
.wpf_confirm_dialog .wpf-close {
    float: right;
    font-size: 20px;
    margin-top: -5px;
    color: var(--main-wpf-color) !important;
    float: right;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    text-decoration: none;
    font-style: normal;
    cursor: pointer;
}
.popover.wpf_comment_container .popover-body .form-group button.wpf_upload_button {
    margin-right: 5px !important;
    background-color: #dee2e6 !important;
    min-width: auto !important;
    position: relative;
    color: var(--main-wpf-color) !important;
    float: right;
    border-radius: 50%;
    width: 40px !important;
    height: 40px;
    cursor: pointer !important;
}
.popover.wpf_comment_container .popover-body .form-group button {
    width: 82%;
    border: none !important;
    margin-top: 10px;
    background-color: var(--main-wpf-color) !important;
    color: #fff;
    font-size: 14px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    border-radius: 50px;
    padding: 10px 5px !important;
    font-weight: 700;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in !important;
    height: auto;
    line-height: 1.4;
    margin-right: 0;
    margin-bottom: 0;
    text-transform: none;
}
div#wpf_launcher .wpf_sidebar_container .wpf_sidebar_header.wpf_col3 button {
    float: left;
    width: 30%;
    font-size: 12px !important;
    background-color: #dee2e6 !important;
    color: var(--main-wpf-color) !important;
    border-radius: 0;
    font-family: Arial;
    border: none;
    font-weight: 700;
    padding: 13px 0 !important;
    margin-right: 0;
    text-transform: none;
    margin-bottom: 0;
    line-height: normal;
    min-width: auto !important;
}
div#wpf_launcher .wpf_sidebar_container .wpf_sidebar_header.wpf_col3 button.wpf_active
{
    background-color: #fff!important;
    border-radius: 7px 7px 0 0;
}
@media only screen and (max-width: 479px) {
    .wpf_wizard_choice img {
        float: left;
        margin: 0 10px 0 0;
    }
    .wpf_wizard_choice_title {
        display: inline-block;
        margin-top: 15px;
    }
    .wpf_wizard_choice {
        width: 80%;
        text-align: left;
        min-height: auto;
        margin-bottom: 10px;
    }
}
/* ---------- General Tasks pop up ---------- */


a.wpf_general_task_close {
    font-size: 30px;
    margin-top: -7px;
    color: var(--main-wpf-color) !important;
    float: right;
    font-weight: 400;
    line-height: 1;
    opacity: .5;
    text-decoration: none;
}

a.wpf_general_task_close:hover, a.wpf_general_task_close:active, a.wpf_general_task_close:focus {
    text-decoration: none !important;
}
div#wpf_general_comment_tabs {
    text-align: left;
    margin-top: -10px;
    margin-bottom: -10px;
}
.wpf_info_block {
    width: 450px;
    max-width: 88%;
    background-color: #dee2e6;
    margin: 25px auto;
    padding: 15px;
    font-size: 13px;
    font-family: arial, sans-serif;
    border-radius: 7px;
    line-height: 1.5;
}
.wpf_info_block b, .wpf_info_block i {
    color: var(--main-wpf-color) !important;
}

.wpf_wizard_modal ul.wp_feedback_filter_checkbox.user input[type="checkbox"]:checked + label:after {
    top: 1px;
}

/* ------------ Plugin Conflicts ------------ */

/* Conflict with microthemer plugin*/
#css-group-icons .styling-option-icons .pg-icon{
    box-sizing: unset !important;
}
/* Conflict with Virtue - Premium theme collapse*/
.kad-nav-collapse.top_mobile_menu_collapse.collapse.show {
    height: auto !important;
}
.popover.wpf_comment_container .popover-content ul li {
    list-style: none;
    font-size: 12px;
    margin: inherit;
}

/* Conflict with Divi Version: 3.21.1 theme collapse*/
.popover.wpf_comment_container i.fa,#wpf_launcher i.fa {
    margin: 0px;
    background: unset;
    padding: unset;
}
.wpf_comment_container .fa.fa-trash:before {
    content: "\f1f8";
}

nav ul.nav {
    display: inherit;
}
.popover.wpf_comment_container.fade.in {
    opacity: 1;
}
div#elementor-lightbox {
    z-index: 999999;
}

/* ---------- Translation Adaptations ---------- */
button.wpf_tab_sidebar:lang(fr), button.wpf_tab_sidebar:lang(es), button.wpf_tab_sidebar:lang(it), button.wpf_tab_sidebar:lang(de), button.wpf_filter:lang(de) {
    height: 50px !important;
    padding: 5px !important;
}
button.wpf_tab_sidebar:lang(nl) {
    padding: 15px 3px !important;
}
a.wpf_sidebar_filter_reset_task_status:lang(fr), a.wpf_sidebar_filter_reset_task_priority:lang(fr), a.wpf_sidebar_filter_reset_task_status:lang(de), a.wpf_sidebar_filter_reset_task_priority:lang(de), a.wpf_sidebar_filter_reset_task_status:lang(es), a.wpf_sidebar_filter_reset_task_priority:lang(es), a.wpf_sidebar_filter_reset_task_status:lang(it), a.wpf_sidebar_filter_reset_task_priority:lang(it), a.wpf_sidebar_filter_reset_task_status:lang(nl), a.wpf_sidebar_filter_reset_task_priority:lang(nl)  {
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    margin-top: 0;
    margin-right: 10px;
}
.wpf_filter_checkbox li:last-child:lang(fr), .wpf_filter_checkbox li:last-child:lang(de), .wpf_filter_checkbox li:last-child:lang(es), .wpf_filter_checkbox li:last-child:lang(it), .wpf_filter_checkbox li:last-child:lang(nl) {
    margin-right: 0;
}

.wpf_filter_checkbox li:lang(fr), .wpf_filter_checkbox li:lang(de), .wpf_filter_checkbox li:lang(es), .wpf_filter_checkbox li:lang(it), .wpf_filter_checkbox li:lang(nl) {
    width: 23.7%;
}
div#wpf_filter_taskstatus:lang(fr), div#wpf_filter_taskpriority:lang(fr), div#wpf_filter_taskstatus:lang(de), div#wpf_filter_taskpriority:lang(de), div#wpf_filter_taskstatus:lang(es), div#wpf_filter_taskpriority:lang(es), div#wpf_filter_taskstatus:lang(it), div#wpf_filter_taskpriority:lang(it), div#wpf_filter_taskstatus:lang(nl), div#wpf_filter_taskpriority:lang(nl) {
    border-bottom: 1px solid #efefef;
}
.wpf_sidebar_checkboxes:lang(es), .wpf_sidebar_checkboxes:lang(it) {
    vertical-align: top;
}
/*===== RTL ===========*/

.rtl .wpf_wizard_notifications_check
, .rtl .wpf_comment_container ul
{
    text-align: right;
}
.rtl .wpf_wizard_modal textarea.form-control {
    margin-bottom: 10px;
}
.rtl .wpf_comment_container .popover-body .close
, .rtl .wpf_comment_container .popover-content .close
, .rtl a.wpf_general_task_close
{
    float: left;
}
.rtl li.wpf_other
{
    margin-right: 25px;
}
.rtl .wpf_comment_container ul {
    padding-right: 0;
    margin-right: 0;
    direction: rtl;
}
.rtl ul.wp_feedback_filter_checkbox.user input[type="checkbox"]:checked + label:before
, .rtl div#wpf_wizard_notifications input:checked + label:before
{
    margin-left: 5px;
}
.rtl i.gg-share {
    margin-right: 16px;
}
.rtl ul.wp_feedback_filter_checkbox.user input[type="checkbox"] + label:before
, .rtl div#wpf_wizard_notifications input + label:before
{
    margin-left: 2px;
}
.rtl .wpf_remove_login_box input:checked + label:after, .rtl .wpf_filter_checkbox input:checked + label:after {
    right: 7px;
    content: "";

}
.rtl .wpf_sidebar_checkboxes label, .rtl label.wpf_visibility_title, .rtl label.wpf_reports_title, .rtl label.wpf_filter_title {
    text-align: right;
}
.rtl ul.wp_feedback_filter_checkbox.user input[type="checkbox"]:checked + label:after, .rtl div#wpf_wizard_notifications input:checked + label:after, .rtl div#wpf_task_visibility input[type="checkbox"]:checked + label:after {
    right: 10px;
    content: "";
}
.rtl .anim-slider label
{
    float: right;
}
.rtl .anim-slider label:last-of-type::after
{
    left: auto;
    transition: 0.5s;
}
.rtl .anim-slider input:checked:nth-of-type(1) ~ label:last-of-type::after
{
    right: 9%;
}
.rtl .anim-slider input:checked:nth-of-type(2) ~ label:last-of-type::after
{
    right: 35%;
}
.rtl button.wpf_tab_sidebar
{
    float: right;
    margin: 0;
}
.rtl .wpf_sidebar_content, .rtl .wpf_sidebar_container ul
{
    padding-right: 3px;
}
.rtl .wpf_task_sum
{
    text-align: right;
    padding-right: 35px;
}
.rtl .complete .wpf_task_number i.gg-check {
    margin-right: 4px;
}
.rtl a.wpfb-point.complete .gg-check {
    margin-right: 8px;
}
.rtl .anim-slider input:checked:nth-of-type(3) ~ label:last-of-type::after
{
    right: 59%;
}
.rtl .anim-slider input:checked:nth-of-type(4) ~ label:last-of-type::after
{
    right: 85%;
}
.rtl a.wpf_task_delete_btn i.fa.fa-trash
{
    margin-left: 5px !important;
}
.rtl .wpf_comment_container button.wpf_upload_button
{
    margin-left: 5px;
}
.rtl button.wpf_upload_button i {
    margin-right: 10px;
}
.rtl .wpf_sidebar_checkboxes input[type="checkbox"]:checked + label:before
{
    margin-left: 5px;
}
.rtl .wpf_sidebar_checkboxes input[type="checkbox"] + label:before
{
    margin-left: 2px;
}
.rtl button.wpf_filter:last-child {
    margin: -5px;
}
.rtl .wpf_comment_container button {
    margin: 0;
}
.rtl .wpf_icon_title, .rtl label.wpf_remove_login_label {
    text-align: right;
}
.rtl a.wpf_copy_task_icon {
    padding-right: 10px;
}
.rtl .wpf_comment_container span.wpf_tag_name {
    padding: 2px 8px 0 0px;
}
.rtl span.wpf_tag_name a {
    margin-right: 3px;
}
.rtl button.wpf_tag_submit_btn {
    left: 5px;
    right: auto;
}
.rtl label.wpf_remove_login_label:before, .rtl .wpf_filter_checkbox input + label:before, .rtl #wpf_launcher .wpf_general_task_thispage i.gg-add {
    margin-left: 5px;
}
.rtl #wpf_launcher .wpf_general_task_thispage {
    padding: 7px 0px 5px 10px;
}
.rtl .wpf_task_meta_details i.gg-thermostat {
    margin-right: 3px;
}
.rtl .wpf_task_meta_details i.gg-danger {
    margin-right: -1px;
}
.rtl a.wpf_filter_tab_btn i.gg-eye {
    margin-right: 3px;
}
.rtl .wpf_report_trigger a {
    margin-right: 0;
}
.rtl .wpf_report_trigger a:nth-child(3) {
    margin-right: 2% !important;
}

/* RTL */
.popover.wpf_comment_container:lang(he) {
    direction: rtl;
}
.wpf_comment_container .popover-body .close:lang(he), .wpf_comment_container .popover-content .close:lang(he), .wpf_topbar_right:lang(he) {
    float: left;
}
.wpf_topbar_left:lang(he) {
    float: right;
}
a.wpf_button_upload:lang(he) {
    margin-left: 10px;
}
.wpf_graphics_version:lang(he) {
    margin-right: 0;
    margin-left: 15px;
}
.wpf_graphics_button:lang(he) {
    margin-left: 10px;
}
#wpf_launcher a.wpf_filter_tab_btn i.gg-share:lang(he) {
    margin-right: 19px;
}
.wpf_comment_container .nav-tabs .nav-link i.gg-share:lang(he) {
    margin-right: 17px;
}
#wpf_launcher a.wpf_filter_tab_btn i.gg-eye:lang(he) {
    margin-right: 4px;
}
.wpf_body:lang(he) {
    margin-right: 300px;
}
body.wpf_graphics .wpf_topbar:lang(he) {
    right: 0;
}
ul.wp_feedback_filter_checkbox.user input[type="checkbox"]:checked + label:lang(he):after, div#wpf_wizard_notifications input:checked + label:lang(he):after, div#wpf_task_visibility input[type="checkbox"]:checked + label:lang(he):after, .wpf_filter_checkbox input:checked + label:lang(he):after {
    right: 10px;
    top: 3px;
}
.wpf_remove_login_box input:checked + label:lang(he):after, .wpf_filter_checkbox input:checked + label:lang(he):after {
    right: 7px;
}
.wpf_filter_checkbox input + label:lang(he):before, .wpf_sidebar_checkboxes input[type="checkbox"] + label:lang(he):before {
    margin-left: 3px;
}
ul.wp_feedback_filter_checkbox.user input[type="checkbox"] + label:lang(he):before, div#wpf_wizard_notifications input + label:lang(he):before, label.wpf_remove_login_label:lang(he):before {
    margin-left: 5px !important;
}
.wpf_icon_title:lang(he), label.wpf_remove_login_label:lang(he) {
    text-align: right !important;
}
a.wpfb-point.complete .gg-check:lang(he) {
    margin-right: 8px;
}
.complete .wpf_task_number i.gg-check:lang(he) {
    margin-right: 4px;
}
.wpf_report_trigger a:lang(he) {
    margin-right: 0;
}
.wpf_report_trigger a:lang(he):nth-child(3) {
    margin-right: 2%;
}
.wpf_task_meta_details i.gg-danger:lang(he) {
    margin-right: -1px;
}
.wpf_task_meta_details i.gg-thermostat:lang(he) {
    margin-right: 4px;
}

.anim-slider label:lang(he) {
    float: right;
}

.anim-slider label:lang(he):last-of-type::after
{
    left: auto;
    transition: 0.5s;
}
.anim-slider input:checked:nth-of-type(1) ~ label:lang(he):last-of-type::after
{
    right: 9%;
}
.anim-slider input:checked:nth-of-type(2) ~ label:lang(he):last-of-type::after
{
    right: 35%;
}
.anim-slider input:checked:nth-of-type(3) ~ label:lang(he):last-of-type::after
{
    right: 59%;
}
.anim-slider input:checked:nth-of-type(4) ~ label:lang(he):last-of-type::after
{
    right: 85%;
}


.popover.wpf_comment_container .popover-body .form-group button.wpf_upload_button:lang(he) {
    margin-right: 0 !important;
    margin-left: 10px;
}
button.wpf_upload_button i:lang(he) {
    margin-right: 10px;
}
label.wpf_filter_title:lang(he), label.wpf_reports_title:lang(he), label.wpf_visibility_title:lang(he), .wpf_sidebar_checkboxes label:lang(he) {
    text-align: right;
}

/* ------------ Mobile ------------ */

@media (max-width: 782px) {
    .logged-in #wpf_launcher {
        top: 46px;
    }
    .logged-in .wpf_sidebar_container {
        height: calc(100vh - 46px);
    }
}

@media (max-width: 400px) {

    div#wpf_enable_comment {
        margin: auto;
        width: 300px;
        left: 10px;
    }
    .popover.wpf_comment_container {
        margin: 0;
        opacity: 0;
        top: auto !important;
        position: fixed !important;
        bottom: 10px !important;
        left: 15px !important;
        transform: none !important;
        width: calc(100% - 70px);
        display: inline-block;
        max-height: 80vh;
        overflow-y: auto;
    }
}
.wpf_current_chat_box {
    max-height: 30vh;
}
ul.task_comments_content:empty {
    display: none;
}
ul.task_comments_content{
    max-height: 350px;
    overflow-y: auto;
    margin-bottom: 10px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px;
}

.wpf_loader {
    position: absolute;
    z-index: 1999;
    width: 95%;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url(../images/Loader-slider-WPFeedback.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(255, 255, 255, 0.5);
    background-size: 60px;
}
.wpf_sidebar_loader {
    position: absolute;
    z-index: 1999;
    width: 100%;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url(../images/Loader-slider-WPFeedback.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(255, 255, 255, 0.5);
    background-size: 60px;
}



.wpf_report_trigger a {
    background-color: #dee2e6;
    width: 49%;
    display: inline-block;
    border-radius: 50px;
    color: var(--main-wpf-color) !important;
    font-size: 11px;
    font-weight: 700;
    transition: 0.2s !important;
    padding: 8px 0;
    text-align: center;
    margin-right: 2%;
    line-height: 1.4;
}
.wpf_report_trigger a:hover {
    background-color: #b0b7bf !important;
}
.wpf_report_trigger a:nth-child(3) {
    margin-right: 0;
}
label.wpf_reports_title {
    display: block;
    text-align: left;
    color: var(--main-wpf-color) !important;
    font-weight: 700;
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 5px;
}
span#wpf_front_report_sent_span {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.015em;
    background-color: #3ed696;
    padding: 10px !important;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    line-height: 1.3;
    width: calc(100% - 20px);
    margin-top: 5px;
    text-align: left;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out !important;
    position: absolute;
    bottom: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/*===== Bug Fixes ===========*/
.wpf_comment_container .tab-content ul {
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 10px !important;
}
ul.wpf_current_chat_box:empty {
    display: none;
}
.wpfb-point.active_comment {
    pointer-events: none;
}
.popover.wpf_comment_container a.ui-slider-handle.ui-state-default.ui-corner-all {
    background: var(--main-wpf-color) !important;
    cursor: pointer;
}
.popover.wpf_comment_container .ui-slider-range.ui-widget-header.ui-slider-range-min {
    background: var(--main-wpf-color) !important;
}
div#wpf_general_comment .meassage_area_main { color: #000000;}
input#search-field {
    box-sizing: unset;
}
.popover.wpf_comment_container .popover-content {
    padding: .5rem .75rem;
    color: #212529;
}
.wpf_sidebar_header.wpf_col2 button.wpf_tab_sidebar {
    width: 48% !important;
}
.popover.wpf_comment_container ul li a .fa {
    margin: 0px;
}
.popover.wpf_comment_container p {
    color: #000000;
    font-size: 12px;
    line-height: normal;
    margin: 5px 0px;
}
.fusion-modal.modal .modal-header {
    display: flow-root;
}
/*Conflict with WooCommerce TM Extra Product Options plugin setting Backend*/
.transition.tm-animated {
    animation-fill-mode: initial !important;
}

/* Sticker style start */

a.wpfb-point {
overflow: hidden;
border-radius: 50%;
border: 2px solid #FFF;
text-decoration: none;
font-weight: bold;
/*display: inline;*/
font-size: 11px;
box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
width: 35px;
height: 35px;
box-sizing: border-box;
vertical-align: middle;
text-align: center;
line-height: 31px;
text-shadow: 0 0.075em 0.2em rgba(0,0,0,0.5);
}
a.wpfb-point span {
border-radius: 50%;
position: absolute;
top: -9px;
right: -1px;
width: 12px;
height: 27px;
box-shadow: 0px 1px 11px #00000042;
transform: rotate(-34deg);
}
a.wpfb-point:hover {
    opacity: 1 !important;
}
a.open_custom
{
    background: var(--main-wpf-color) !important;
}
a.pending-review_custom
{
    background: #ffa532 !important;
}

a.in-progress_custom
{
    background: #fcd227 !important;
}

a.completed_custom
{
    background: #3ed696 !important;
}

.low_custom
{
    background: #3ed696;
}
.medium_custom 
{
    background: #fcd227;
}
.high_custom  
{
    background: #ffa532;
}
.critical_custom  
{
    background: #ff5a48;
}


a.wpfb-point.complete .gg-check {
    margin: 0;
    z-index: 0px;
}
/* END */

/* sidebar sticker css */


/*.wpf_active_filter ul li.low_custom .wpf_task_number::after, .wpf_active_filter ul li.medium_custom .wpf_task_number::after, .wpf_active_filter ul li.high_custom .wpf_task_number::after, .wpf_active_filter ul li.critical_custom .wpf_task_number::after, .wpf_active_filter ul li.complete_custom .wpf_task_number::after {
    border-radius: 50%;
    position: absolute;
    top: -9px;
    right: 0px;
    width: 9px;
    height: 26px;
    box-shadow: 0px 1px 11px #00000042;
    transform: rotate(-57deg);
    content: '';
    display: block;
    left: auto;
    z-index: 9;
    overflow: hidden;
}*/
.open_custom .wpf_task_number 
{
    background: var(--main-wpf-color) !important;
}

/* END */

.pending-review_custom .wpf_task_number {
    background: #ffa532 !important;
    position: relative;
    z-index: 0;
}
.in-progress_custom .wpf_task_number{
    background: #fcd227 !important;
    position: relative;
    z-index: 0;
}
.open_custom .low_custom, .open_custom .medium_custom,  .open_custom .high_custom, .open_custom .critical_custom, 
.in-progress_custom .low_custom, .in-progress_custom .medium_custom,  .in-progress_custom .high_custom, .in-progress_custom .critical_custom, 
.pending-review_custom .low_custom, .pending-review_custom .medium_custom,  .pending-review_custom .high_custom, .pending-review_custom .critical_custom,
.complete_custom .low_custom, .complete_custom .medium_custom,  .complete_custom .high_custom, .complete_custom .critical_custom{
    border-radius: 50%;
    position: absolute;
    top: -10px;
    right: -1px;
    width: 12px;
    height: 27px;
    box-shadow: 0px 1px 11px #00000042;
    transform: rotate(-44deg);
    border: 0px;
}
.complete_custom .wpf_task_number::after {
    /*box-shadow: 0px 0px 0px !important;*/
    /*background: transparent;*/
}
.open_custom .wpf_task_number, .pending-review_custom .wpf_task_number, .in-progress_custom .wpf_task_number, .complete_custom .wpf_task_number, .wpf_task_number {
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.anim-slider input.low_radio + .low_label {
    color: #3ed696 !important;
}
.anim-slider input.medium_radio + .medium_label {
    color: #fcd227 !important;
}
.anim-slider input.high_radio + .high_label {
    color: #ffa532 !important;
}
.anim-slider input.critical_radio + .critical_label {
    color: #ff5a48 !important;
}
.anim-slider input.open_radio + .open_label {
    color: var(--main-wpf-color) !important;
}
.anim-slider input.in_progress_radio + .in_progress_label {
    color: #fcd227 !important;
}
.anim-slider input.pending_radio + .pending_label {
    color: #ffa532 !important;
}
.anim-slider input.complete_radio + .complete_label {
    color: #3ed696 !important;
}


.wpf_sidebar_content .wpf_container .wpf_task_sum {
    width: calc(100% - 50px);
}
.wpf_sidebar_content .wpf_container .wpf_task_number {
    width: 35px;
    height: 35px;
    border: 2px solid #FFF;
}

.wpf_sidebar_content .wpf_container .wpf_task_number .gg-check {
    margin: 0;
}



.complete .gg-check {
    box-sizing: border-box;
    position: relative;
    transform: scale(var(--ggs,1.5));
    width: 23px;
    height: 23px;
    border: 2px solid transparent;
    border-radius: 100px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-content: center;
    align-items: center;
}

/* 02/11/2020 */
.complete .task_status {
    background: #3ED696 !important;
}
.in-progress .task_status {
    background: #FCD227 !important;
}
.pending-review .task_status {
    background: #FFA532 !important;
}
.open .task_status {
    background: var(--main-wpf-color) !important;
}

.low ~ .wpf_task_meta .priority {
    background: #3ED696 !important;
}
.medium ~ .wpf_task_meta .priority {
    background: #FCD227 !important;
}
.high ~ .wpf_task_meta .priority {
    background: #FFA532 !important;
}
.critical ~ .wpf_task_meta .priority {
    background: #FF5A48 !important;
}

.wpf_task_meta_details i.gg-thermostat {
    transform: scale(var(--ggs,0.65));
    margin-left: 3px;
    margin-bottom: -4px;
}

.gg-check::after {
    z-index: 0;
    left: unset;
    top: 3px;
    transform-origin: center;
}


a.wpfb-point .gg-check {
    left: 3px;
    top: 4px;
}