:root {
    --pju-red: rgb(204, 40, 40);
    --site-width: 1200px;
    --pju-transition: 0.3s all cubic-bezier(0.3, 0, 0, 1);
}

#dark-mode {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#dark-mode:hover {
    background-color: rgba(0, 0, 0, 0.075);
}


.btn-primary {
    height: 45px;
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
}

.form-control {
    height: 50px;
    padding: .375rem 1.40rem;
}

.rc-anchor {
    box-shadow: 0px 0px 10px black !important;
    background-color: white;
}

.textarea-container {
    display: flex;
    flex-direction: column
}

.textareas {
    width: 70%
}

.due-date-picker .form-control {
    background-color: white;
}

.tag-legend {
    font-size: 1.3rem;
    width: 100%;
    position: sticky;
    top: -30px;
    background-color: white;
    border: solid 1px rgb(236, 236, 236);
    box-shadow: 0px 15px 20px -10px #00000014;
    padding: 15px 30px;
    line-height: 1;
    z-index: 99
}

.tag-legend .wr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.wr .prio {
    position: absolute;
    top: -24px;
    left: -16px;
    width: fit-content;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .5px;
    font-weight: 500;
    color: white;
    background-color: var(--pju-red);
    padding: 4px 8px;
    border-radius: 5px;
    animation: pulse-1 4.0s ease infinite;
}

.wr .due-date-badge {
    position: absolute;
    top: -24px;
    left: 100px;
    width: fit-content;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .5px;
    font-weight: 500;
    color: white;
    background-color: var(--pju-red);
    padding: 4px 8px;
    border-radius: 5px;
}

fieldset.top-priority {
    background: rgb(255 223 63 / 53%);
    border-radius: 5px;
    padding: 10px;
    animation: pulse-2 2.0s cubic-bezier(0.31, 0.28, 0.69, 0.77) infinite;
}

fieldset .added-by{
    line-height: 1.2em;
    font-weight: 100;
    font-size: .7em;
}

.wr .prio.top {
    background-color: #0075ff;
}

@keyframes pulse-1 {
    0% {
        box-shadow: 0px 0px 0px 0px rgba(255, 0, 0, 0.4);
    }

    30% {
        box-shadow: 0px 0px 0px 0px rgba(255, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0px 0px 0px 6px rgba(255, 0, 0, 0);
    }
}

@keyframes pulse-2 {
    0% {
        box-shadow: 0px 0px 0px 0px rgba(255, 0, 0, 0.4);
    }

    30% {
        box-shadow: 0px 0px 0px 0px rgba(255, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0px 0px 52px 10px rgba(255, 0, 0, 0);
    }
}

.wr a {
    font-size: 0.7em;
}

.tag-container {
    /* background-color: white; */
}

.tag-container .leg {
    display: flex;
    width: 100%;
}

.tag-container .leg>div {
    width: 50%;
    text-align: center;
    font-size: 14px;
}

.tags-container>div.dropdown>div.dropdown-menu {
    transform: translate3d(0px, 47px, 0px) !important;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: auto
}

#paste_submit:focus {
    background-color: #007bff;
}


.tag-small {
    padding: 2px 6px;
    background: #e7e7e7;
    line-height: 1;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #595959;
}

.translated-text-wrapper {
    margin-bottom: 10px;
}

/* ------------animations------------ */
/* ------------animations------------ */
/* ------------animations------------ */
/* ------------animations------------ */
/* ------------animations------------ */
/* ------------animations------------ */
/* ------------animations------------ */



.fade-in {
    animation: fadeIn cubic-bezier(0.3, 0, 0.3, 1) 0.4s;
    -webkit-animation: fadeIn cubic-bezier(0.3, 0, 0.3, 1) 0.4s;
    -moz-animation: fadeIn cubic-bezier(0.3, 0, 0.3, 1) 0.4s;
    -o-animation: fadeIn cubic-bezier(0.3, 0, 0.3, 1) 0.4s;
    -ms-animation: fadeIn cubic-bezier(0.3, 0, 0.3, 1) 0.4s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
}

100% {
    opacity: 1;
    transform: translateY(0px);
}
}