﻿* {
    box-sizing: border-box;
}


.post-itModal {
    width: 80%;
    position: relative;
    background: #ffa;
    overflow: hidden;
    color: black;
    margin: 30px auto;
    padding: 20px;
    border-radius: 0 0 0 30px/45px;
    box-shadow: inset 0 -40px 40px rgba(0,0,0,0.2), inset 0 25px 10px rgba(0,0,0,0.2), 0 5px 6px 5px rgba(0,0,0,0.2);
    line-height: 1.7em;
    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}

.post-it {
    /*width: 250px;*/
    height: 180px;
    position: relative;
    background: #ffa;
    overflow: hidden;
    margin: 10px 3px 15px 0px;
    padding: 5px;
    border-radius: 0 0 0 30px/45px;
    box-shadow: inset 0 -40px 40px rgba(0,0,0,0.2), inset 0 25px 10px rgba(0,0,0,0.2), 0 5px 6px 5px rgba(0,0,0,0.2);
    font-family: 'Permanent Marker', cursive;
    line-height: 1.7em;
    font-size: 18px;
    font-size: calc(100% + 2vw);
    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
    color: #130d6b;
}

.post-itDashboard {
    /*width: 250px;*/
    /*height: 80px;*/
    position: relative;
    background: #ffa;
    overflow: hidden;
    /*margin: 10px 3px 15px 0px;*/
    border: 2px solid red;
    padding: 5px;
    border-radius: 0 0 0 30px/45px;
    /*box-shadow: inset 0 -40px 40px rgba(0,0,0,0.2), inset 0 25px 10px rgba(0,0,0,0.2), 0 5px 6px 5px rgba(0,0,0,0.2);*/
    /*font-family: 'Permanent Marker', cursive;*/
    /*line-height: 1.7em;*/
    font-weight:bold;
    /*font-size: 9px;*/
    /*font-size: calc(100% + 2vw);*/
    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
    color: #130d6b;
}
    .post-itDashboard a:link {
        color: #130d6b;
    }
    .post-itDashboard a:visited {
        color: #130d6b;
    }

.post-itDashboardAlert {
    background-color: lightcoral;
}

.post-itDashboardNotStarted0 {
    border-color: black;
}

.post-it p {
    font-family: 'Permanent Marker', cursive;
    margin: 0px;
    line-height: 1.7em;
    font-size: clamp(8px, 10% + 8px, 40px);
    /*font-size:calc(100% + 2vw);*/
    color: #130d6b;
}

    .post-it h1 {
        font-family: 'Permanent Marker', cursive;
        font-size: 20px;
        position: relative;
        font-size: clamp(12px, 10% + 12px, 80px);
        position: relative;
    }

    .post-it h5 {
        font-size: clamp(12px, 10% + 12px, 80px);
        position: relative;
    }

.post-it:hover {
    transform: scale(1.1) rotate(-10deg);
    cursor: pointer;
}

.post-itPastDue {
    position: relative;
   /* color: #f76565;*/
    overflow: hidden;
    border: 2px dashed red;
    padding: 5px;
    border-radius: 0 0 0 30px/45px;
    font-weight: bold;
    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
    /*color: #130d6b;*/
}

.post-itcompleted {
    background: #a1ffa1;
}

.post-it:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 25px;
    background: #ffa;
    box-shadow: 3px -2px 10px rgba(0,0,0,0.2), inset 15px -15px 15px rgba(0,0,0,0.3);
    left: 0;
    bottom: 0;
    z-index: 2;
    transform: skewX(25deg);
}

.post-it:after {
    content: "";
    display: block;
    position: absolute;
    width: 75%;
    height: 20px;
    border-top: 3px solid #130d6b;
    border-radius: 50%;
    bottom: 0px;
    left: 10%;
}

.post-itDashboard:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 16px;
    background: #ffa;
    box-shadow: 1px -2px 10px rgba(0,0,0,0.2), inset 15px -15px 15px rgba(0,0,0,0.3);
    left: 0;
    bottom: 0px;
    z-index: 2;
    transform: skewX(25deg);
}

.post-itDashboardAlert:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 16px;
    background: lightcoral;
    box-shadow: 1px -2px 10px rgba(0,0,0,0.2), inset 15px -15px 15px rgba(0,0,0,0.3);
    left: 0;
    bottom: 0px;
    z-index: 2;
    transform: skewX(25deg);
}

.post-itPastDue:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 16px;
    background: lightcoral;
    box-shadow: 1px -2px 10px rgba(0,0,0,0.2), inset 15px -15px 15px rgba(0,0,0,0.3);
    left: 0;
    bottom: 0px;
    z-index: 2;
    transform: skewX(25deg);
}

.post-itDashboard:after {
    content: "";
    display: block;
    position: absolute;
    width: 75%;
    height: 25px;
    border-top: 1px solid #130d6b;
    border-radius: 50%;
    bottom: -18px;
    left: 10%;
}

.post-itModal:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 25px;
    background: #ffa;
    box-shadow: 3px -2px 10px rgba(0,0,0,0.2), inset 15px -15px 15px rgba(0,0,0,0.3);
    left: 0;
    bottom: 0;
    z-index: 2;
    transform: skewX(25deg);
}

.post-itModal:after {
    content: "";
    display: block;
    position: absolute;
    width: 75%;
    height: 20px;
    border-top: 3px solid #130d6b;
    border-radius: 50%;
    bottom: 0px;
    left: 10%;
}

.cadmusTaskItemHeader {
    position: absolute;
    top: -10px;
    color: #0a0a0a33;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 3em;
    font-size: 7px;
    font-size: clamp(7px, 100% - 25px, 20px);
}

.cadmusTaskItemHeadernotstarted {
}

.cadmusTaskItemHeadercompleted {
}

.cadmusTaskItemHeaderdefered {
}

.cadmusTaskItemHeaderhigh {
}

.cadmusTaskItemHeadernormal {
}

.cadmusTaskItemHeaderlow {
}

.cadmusTaskItemHeadercritical {
}

.post-itnormal:after {
}

.post-itlow:after {
    border-top: 3px solid #441212;
}

.post-ithigh:after {
    border-top: 4px solid yellow;
}

.post-itcritical:after {
    border-top: 4px ridge red;
}

.post-itinprogress:after {
    border-top-style: dashed;
}

.post-itcompleted:after {
    border-top-color: green;
}


.cadmusTechSupportME {
    position: relative;
    background-color: lightgray;
    text-align: left;
    min-width: 55%;
    max-width: 90%;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    float: left;
    left: -8px;
    color:black;
}

.cadmusTechSupportME .message {
    color: black;
}

    .cadmusTechSupportME img {
        max-height: 300px;
    }
    .cadmusTechSupportME .name {
        color: darkslategray;
    }
    .cadmusTechSupportME .datetime {
        color: gray;
    }

    .cadmusTechSupportME:nth-child(even) {
        background-color: lightgray;
    }
    .cadmusTechSupportME::before {
        content: '';
        position: absolute;
        visibility: visible;
        top: -1px;
        left: -10px;
        border: 10px solid transparent;
        border-top: 10px solid #ccc;
    }

    .cadmusTechSupportME::after {
        content: '';
        position: absolute;
        visibility: visible;
        top: 0px;
        left: -8px;
        border: 10px solid transparent;
        border-top: 10px solid lightgray;
        clear: both;
    }


.cadmusTechSupportResponse {
    position: relative;
    background: lightgreen;
    text-align: right;
    min-width: 55%;
    max-width: 90%;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid lightgreen;
    float: right;
    right: 5px;
    line-height: 0.8em;
}

    .cadmusTechSupportResponse .message {
        color: black;
    }
    .cadmusTechSupportResponse img {
        max-height: 300px;
        border-radius: 6px;
    }
    .cadmusTechSupportResponse .name {
        color: #483d8b;
    }

    .cadmusTechSupportResponse .datetime {
        color: #532763;
    }
    .cadmusTechSupportResponse .authorinfo {
        text-align: left;
    }
    .cadmusTechSupportResponse:nth-child(even) {
        background-color: lightgreen;
        color: white;
    }
        .cadmusTechSupportResponse:nth-child(even)::after {
            border-top: 10px solid lightgreen;
        }

    .cadmusTechSupportResponse::before {
        content: '';
        position: absolute;
        visibility: visible;
        top: -1px;
        right: -10px;
        border: 10px solid transparent;
        border-top: 10px solid lightgreen;
    }

    .cadmusTechSupportResponse::after {
        content: '';
        position: absolute;
        visibility: visible;
        top: 0px;
        right: -8px;
        border: 10px solid transparent;
        border-top: 10px solid lightgreen;
        clear: both;
    }


.cadmusTechSupportPrivate {
    position: relative;
    background: black;
    text-align: right;
    min-width: 55%;
    max-width: 90%;
    padding: 10px 15px;
    border-radius: 20px;
    border: 5px solid black;
    float: right;
    right: 5px;
}
    .cadmusTechSupportPrivate img {
        max-height: 300px;
    }
    .cadmusTechSupportPrivate .name {
        color: #483d8b;
    }

    .cadmusTechSupportPrivate .datetime {
        color: #6E82B0;
    }
    .cadmusTechSupportPrivate .authorinfo {
        text-align:left;
    }
    .cadmusTechSupportPrivate:nth-child(even) {
        background-color: black;
    }
 /*   .cadmusTechSupportPrivate::before {
        content: '';
        position: absolute;
        visibility: visible;
        top: -1px;
        right: -10px;
        border: 10px solid transparent;
        border-top: 10px solid khaki;
    }

    .cadmusTechSupportPrivate::after {
        content: '';
        position: absolute;
        visibility: visible;
        top: 0px;
        right: -8px;
        border: 10px solid transparent;
        border-top: 10px solid khaki;
        clear: both;
    }*/


.cadmusTechSupportPrivateCircle1 {
    border: 5px solid darkkhaki;
    position: absolute;
    width: 5px;
    padding: 10px 8px;
    border-radius: 50%;
    right: -14px;
    top: -9px;
}

    .cadmusTechSupportPrivateCircle1:before {
        content: "";
        position: absolute;
        width: 10px;
        padding: 10px 8px;
        border-radius: 50%;
        right: 0px;
        bottom: 0px;
        background: #fff;
    }

.cadmusTechSupportPrivateCircle2 {
    border: 3px solid darkkhaki;
    position: absolute;
    width: 5px;
    padding: 8px 6px;
    border-radius: 50%;
    right: -25px;
    top: -14px;
}


.cadmus_exchk_attachbutton1 {
    position: absolute;
    bottom: 30px;
    right: 6px;
    color: black;
    background-color: transparent;
    border: none;
    padding: 4px;
    border-radius: 4px;
    font-size: 25px;
}

.cadmus_exchk_attachbutton2 {
    position: absolute;
    bottom: 30px;
    left: 10px;
    color: black;
    background-color: transparent;
    border: none;
    padding: 4px;
    border-radius: 4px;
    font-size: 25px;
}

.cadmus_exchk_attachbutton3 {
    position: absolute;
    top: 24px;
    right: 6px;
    color: black;
    background-color: transparent;
    border: none;
    padding: 4px;
    border-radius: 4px;
    font-size: 15px;
}

.cadmus_exchk_attachbutton4 {
    position: absolute;
    top: 24px;
    left: 10px;
    color: black;
    background-color: transparent;
    border: none;
    padding: 4px;
    border-radius: 4px;
    font-size: 15px;
}

.cadmusTechSupportReplyBox {
    background: whitesmoke;
    padding: 4px 30px 4px 30px;
    overflow: auto;
    white-space: normal !important;
}

    .cadmusTechSupportReplyBox::-webkit-scrollbar {
        width: 1em;
    }

.cadmus_float-containerTasks label {
    color: goldenrod;
}

.cadmus_float-containerTasks textarea {
    background-color: #ffa;
    color: darkblue;
    border-bottom: 1px solid #d8a8a8;
    border-radius: 10%;
}

    .cadmus_float-containerTasks textarea:focus {
        background-color: white;
    }

.cadmus_float-containerTasks input[type=text] {
    background-color: #ffa;
    color: darkblue;
    border-bottom: 1px solid #d8a8a8;
    border-radius: 10%;
}
        .cadmus_float-containerTasks input[type=text]:focus {
            background-color: white;
        }

.cadmus_float-containerTasks option {
    background-color: #ffa;
    color: darkblue;
}

.cadmus_float-containerTasks select {
    background-color: #ffa;
    color: darkblue;
    border: 0px;
    border-bottom: 1px solid #d8a8a8;
    border-radius: 10%;
}


    .cadmus_float-containerTasks select:not([multiple]) {
        background-color: #ffa;
        color: darkblue;
        border-bottom: 1px solid #d8a8a8;
        border-radius: 10%;
    }

    .cadmus_float-containerTasks select option:checked {
        background-color: #feba0f !important;
        color: black;
    }


.cadmusTask {
    overflow:visible;
}

.cadmusTaskReply label {
    color: black;
}

.cadmusTaskUnreadMsgNotification {
    position: absolute;
    right: 3px;
    top: 3px;
    background: radial-gradient( 5px -9px, circle, white 8%, red 26px );
    background-color: red;
    border: 2px solid white;
    border-radius: 12px; /* one half of ( (border * 2) + height + padding ) */
    /*box-shadow: 1px 1px 1px black;*/
    color: white;
    font: bold 15px/13px Helvetica, Verdana, Tahoma;
    /*height: 16px;*/
    min-width: 14px;
    padding: 6px 4px 2px 5px;
    text-align: center;
    box-shadow: inset 0 -40px 40px rgb(0 0 0 / 20%), inset 0 25px 10px rgb(0 0 0 / 20%), 0 5px 6px 5px rgb(0 0 0 / 20%);
}

.cadmusTaskUnreadMsgNotification:empty {
    display: none;
}