:root {
    --funp__main_wrapper_width : 350px;
    --funp__main_wrapper_height: 550px;
    --funp__main_wrapper_bgClr: #ffffff;
    --funp__main_wrapper_brdrClr: #d1d1d1;
    --funp__main_wrapper_open_btn_bgClr: #000000;
    --funp__main_wrapper_open_btn_txtClr: #ffffff;
    --funp__header_cont_txtClr: #333;    
    --funp__single_card_bgClr: #FFFACD;
    --funp__single_card_txtClr: #333;
    --funp__msg_wrp_bgClr: #dedede;
}
.funp__outer_wrapper * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.funp__outer_wrapper{
    position: relative;
}
.funp__main_wrapper_open_btn {
    position: fixed;
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 30%;
    right: 0;
    left: auto;
    z-index: 9999999;
}
.funp__main_wrapper_open_btn.funp__open_btn_is_icon {
    width: auto;
    margin-right: 10px;
}
.funp__main_wrapper_open_btn a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--funp__main_wrapper_open_btn_bgClr);
    margin: 0;
    padding: 7px;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    color: var(--funp__main_wrapper_open_btn_txtClr);
    text-decoration: none;
    text-align: center;
    border-radius: 4px 0 0 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.funp__main_wrapper_open_btn a > span {
    width: 12px;
    margin-right: 5px;
}
.funp__main_wrapper_open_btn.funp__open_btn_is_icon a {
    font-size:0;
    padding: 7px;
    border-radius: 100%;
}
.funp__main_wrapper_open_btn.funp__open_btn_is_icon a > span {
    font-size: inherit;
    margin: 0;
}
.funp__main_wrapper_open_btn.funp__open_btn_is_icon a:hover,
.funp__main_wrapper_open_btn.funp__open_btn_is_icon a:focus {
    -webkit-transform: scale(1.1);
       -ms-transform: scale(1.1);
           transform: scale(1.1);
}
.funp__main_wrapper {
    position: fixed;
    width: var(--funp__main_wrapper_width);
    height: var(--funp__main_wrapper_height);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    right: 0;
    top: 50%;
    margin: 0;
    padding: 0;
    background-color: var(--funp__main_wrapper_bgClr);
    border: 1px solid var(--funp__main_wrapper_brdrClr);
    border-radius: 4px 0 0 4px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transform: translate(var(--funp__main_wrapper_width),-50%);
        -ms-transform: translate(var(--funp__main_wrapper_width),-50%);
            transform: translate(var(--funp__main_wrapper_width),-50%);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 999999999999;
}
.funp__outer_wrapper.funp__widget_is_open .funp__main_wrapper {
    -webkit-box-shadow: 0px 25px 80px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 25px 80px rgba(0, 0, 0, 0.15);
    -webkit-transform: translate(0,-50%);
        -ms-transform: translate(0,-50%);
            transform: translate(0,-50%);
}
.funp__main_wrapper_close_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.funp__main_wrapper_close_btn > a {
    position: absolute;
    width: 20px;
    height: 20px;
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 2px;
    right: 2px;
    margin: 0;
    padding: 5px;
    background-color: var(--funp__header_cont_txtClr);
    color: var(--funp__main_wrapper_bgClr);
    border-radius: 100%;
    opacity: 0.9;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
    z-index: 9999;
}
.funp__outer_wrapper.funp__widget_is_open .funp__main_wrapper .funp__main_wrapper_close_btn > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.funp__main_wrapper_close_btn > a:hover,
.funp__main_wrapper_close_btn > a:focus {
    opacity: 1;
    text-decoration: none;
}
.funp__outer_wrapper.funp__widget_is_open .funp__main_wrapper_open_btn {
    display: none;
}
.funp__inner {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    overflow: hidden;
}
.funp__inner_top {
    position: relative;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden;
}
.funp__top_header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 25px 25px 15px;
    border-bottom: 1px solid var(--funp__main_wrapper_brdrClr);
}
.funp__top_header h3.funp__header_title {
    font-family: sans-serif;
    font-size: 19px;
    line-height: 24px;
    font-weight: bold;
    font-style: normal;
    color: var(--funp__header_cont_txtClr);
    margin: 0 0 5px;
    padding: 0;
}
.funp__top_header p.funp__header_desc {
    font-family: sans-serif;
    font-size: 13px;
    line-height: 18px;
    font-weight: normal;
    font-style: normal;
    color: var(--funp__header_cont_txtClr);
    margin: 0 0 5px;
    padding: 0;
}
.funp__msg_wrp {
    position: absolute;
    width: 100%;
    height: auto;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    background-color: var(--funp__msg_wrp_bgClr);
    top: 100%;
    right: auto;
    left: auto;
    margin:0;
    padding: 7px;
    font-size: 14px;
    line-height: 16px;
    font-style: italic;
    font-weight: normal;
    border-radius: 4px;
    -webkit-transition: -webkit-transform 1.5s ease;
    transition: -webkit-transform 1.5s ease;
    -o-transition: transform 1.5s ease;
    transition: transform 1.5s ease;
    transition: transform 1.5s ease, -webkit-transform 1.5s ease;
    opacity: 1;
    z-index: -99;
}
.funp__msg_wrp.funp__msg_is_visible{
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   opacity: 1;
   z-index: 9999;
}
.funp__cards_wrapper {
    margin: 0;
    padding: 15px;
    font-size: 15px;
    overflow-x: hidden;
    overflow-y: auto;
}
.funp__inner_top article {
    position: relative;
    width: auto;
    height: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background-color: var(--funp__single_card_bgClr);
    margin: 10px 5px;
    padding: 10px;
    font-size: 13px;
    color: var(--funp__single_card_txtClr);
    border: 1px solid var(--funp__main_wrapper_brdrClr);
    border-radius: 4px;
    outline: none;
    -webkit-box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.funp__inner_top article .funp__card_action_links {
    position: absolute;
    display: none;
    top: -7px;
    left: 0px;
}
.funp__inner_top article:hover .funp__card_action_links,
.funp__inner_top article:focus .funp__card_action_links,
.funp__inner_top article.funp__cont_isEditable .funp__card_action_links{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.funp__inner_top article .funp__card_action_links a {
    width: 12px;
    height: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 5px;
    padding: 0;
    font-size: 12px;
    line-height: 12px;
    text-decoration: none;
    border-radius: 100%;
}
.funp__inner_top article .funp__card_action_links a:hover,
.funp__inner_top article .funp__card_action_links a:focus {
    text-decoration: none;
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.funp__cont_isEditable .funp__card_note_cont{
    background-color: #fff;
    -webkit-box-shadow: inset;
            box-shadow: inset;
    padding: 5px;
}
.funp__inner_bottom {
    position: relative;
    width: 100%;
}
.funp__bottom_actions_frm {
    position: relative;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.funp__add_note_html {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.funp__add_note_html_inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.funp__add_note_html_textarea_wrp {
    width: 100%;
    border-radius: 4px;
}
.funp__add_note_html_textarea {
    position: relative;
    width: 100%;
    height: 75px;
    background-color: white;
    margin: 0;
    padding: 5px;
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
    font-style: normal;
    border: 1px solid var(--funp__main_wrapper_brdrClr); 
    border-radius: 4px;
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);  
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
}
.funp__add_note_html_textarea[contentEditable=true]:empty:before {
    content: attr(placeholder);
    opacity: 0.6;
}
.funp__add_note_html_textarea:focus,
.funp__add_note_html_textarea:active
/* .funp__add_note_html_textarea[contentEditable=true]:not(:empty) */ {
    height: 125px;
    -webkit-box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
            box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    border-color: #007bff; 
    outline: none;
}
.funp__add_note_submit {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.funp__add_note_submit .funp__add_note_submit_notice {
    font-size: 12px;
    font-style: italic;
    color: red;
}
.funp__add_note_submit .funp__add_note_submit_btn a.funp__add_btn_action {
  position: relative;
  width: 100%;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5px 0;
  padding: 2px;
  text-decoration: none;
}
.funp__cards_wrapper::-webkit-scrollbar,
.funp__add_note_html_textarea::-webkit-scrollbar {
    width: 7px;
}
.funp__cards_wrapper::-webkit-scrollbar-track,
.funp__add_note_html_textarea::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
            box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}
.funp__cards_wrapper::-webkit-scrollbar-thumb,
.funp__add_note_html_textarea::-webkit-scrollbar-thumb {
    background-color: var(--funp__main_wrapper_brdrClr);
    outline: 1px solid var(--funp__main_wrapper_brdrClr);
}
.funp__card_placeholder {
    top: 0;
    left: 0;
    background-color: #ced4da;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 2;
    display: none;
}
.funpPlcAnim .funp__card_placeholder {
    display: block;
}
.funpPlcAnim {
    overflow: hidden;
    position: relative;
}
.funpPlcAnim::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(
        linear,
        left top, right top,
        from(rgba(255, 255, 255, 0)),
        color-stop(50%, rgba(255, 255, 255, 0.4)),
        to(rgba(255, 255, 255, 0))
    );
    background: -o-linear-gradient(
        left,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    height: 100%;
    width: 100%;
    z-index: 5;
    -webkit-animation: funpPlcAnim 1s infinite;
        animation: funpPlcAnim 1s infinite;
}
@-webkit-keyframes funpPlcAnim {
    0% {
        -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(100%);
            transform: translateX(100%);
    }
}
@keyframes funpPlcAnim {
    0% {
        -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(100%);
            transform: translateX(100%);
    }
}
/* Media Queries */
@media only screen and (max-width: 600px) {
    .funp__main_wrapper { 
        max-width: 90%; 
    }
}

