
.folder {
    color: #609D9F;
    /* font-family: "century gothic";     */
}

.folder-header {
    position: relative;
    height: 50px;
    width: 200px;
    border-radius: 15px 15px 0 0;
    padding: 10px;
    padding-right:30px;
    padding-left:30px;
    text-align: left;
    font-weight: bolder;
    font-size: 16px;
    background-color: #064649;
    color: #609d9f;
    text-transform: uppercase;
}

.folder-header::before {
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: -14px;
    right: -36px;
    height: 50px;
    width: 25px;
    border-top-left-radius: 25px;
    box-shadow: 0 -25px 0px -1px #064649;
    transform: rotate(-90deg);
}

.folder-body {
    position: relative;
    min-height: 50px;
    width: 100%;
    border-radius: 0 15px 15px 15px;
    margin-top: -9px;
    padding: 20px;
    padding-top: 25px;
    background-color: #064649;
    min-height: 60px;
}

.folder-body textarea {
    min-height: 182px;
    padding: 10px;
    color: #fff;
    border: none;
}

.bg-circle {
    background-color: #28676A;
    padding: 5px;
    border-radius: 10px;
}

.suggested-task{
    background-color: #143536;
    border-radius: 10px;
    padding: 10px;
    font-size: 0.7em;
    color: white;
}

.task-icon{
    height: 40px;
    width: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.custom-shadow-top{
   box-shadow: 0px -12px 15px -10px #111;
   font-size: 10px;
   text-align: left
}

.folder-hover:hover{
    transform: scaleY(1.3);
}



.remaining-day {
    font-size: 900%;
}





/* planner style */


.big-calendar .day {
    background-color: #064648;
    border-radius: 100%;
    text-align: center;
    color: #96bbc9;
    padding: 1rem 1.25rem;
    margin: 0.5rem;
    font-size: 1.5rem;
}

.big-calendar .today {
    background-color: #96bbc9;
    border-radius: 100%;
    text-align: center;
    color: #064648;
    padding: 1rem 1.25rem;
    margin: 0.5rem;
    font-size: 1.5rem;
}

.big-calendar .this-day {
    background-color: #96bbc9;
    border-radius: 100%;
    text-align: center;
    color: #064648;
    padding: 1rem 1.25rem;
    margin: 0.5rem;
    font-size: 1.5rem;
    border-color: #064648;
    text-decoration: underline;
}

.task {
    width: 50px;
    cursor: pointer;
}

.task-suggested {
    width: 50px;
    cursor: pointer;
}

.folder-body-dark {
    background-color: #143536;
    padding: 10px;
    border-radius: 5px;
}

.folder-body-dark-title {
    color: #fff;
    font-weight: bold;
}

.dropped {
    position: static !important;
}

.ui-droppable-active.allow-droppable {
    border: 1px solid #96bbc9;
    border-radius: 5px;
    background-color: rgba(150,187,201,0.5);
}


.task-name {
    position: absolute;
    border-radius: 45px;
    border: 2px solid #96bbc9;
    color: #fff;
    width: max-content;
    padding: 4px 40px;
    background-color: #064649;
    font-size: 13px;
    top: 10px;
    left: 26px;
    display: none;
    box-shadow: 0px 1px 5px #000;
}
.task-details {
    position: absolute;
    border-radius: 5px;
    color: #fff;
    width: max-content;
    padding: 2px 10px;
    background-color: #064649;
    font-size: 13px;
    top: 40px;
    left: 26px;
    width: 170px;
    display: none;
    box-shadow: 0px 0px 5px #000;
}


.task-container {
    position: relative;
}

.task-container:hover .task-name,
.task-container:hover .task-details,
.task-name:hover,
.task-details:hover,
.zoom .task-name
{
    display: block;
    z-index: 3;
}

.task-container:hover img,
.zoom img
{
    z-index: 4;
}

.task-container.disabled img {
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
    filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
}



.task-container img {
    position: relative;
}


.task-name.live {
    background-color: #ffa242;
    color:#064649;
    font-weight: bold;
    cursor: pointer;
}


.task-details a:hover {
    text-decoration: underline;
}

.title-planner {
    font-size: 3rem;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #E3E3E3 !important;
    color: #888 !important;
}



@media only screen and (max-width: 600px) {
    .day {
        background-color: #064648;
        border-radius: 100%;
        text-align: center;
        color: #96bbc9;
        padding: 0.4rem 0.5rem;
        margin: 0.35rem;
        font-size: 1rem;
    }

    .today {
        padding: 0.4rem 0.5rem;
        margin: 0.35rem;
        font-size: 1rem;
    }

    .title-planner {
        font-size: 2.5rem;
    }
}

/* end planner */


.modal-body a,
.modal .card-text a
{
    color: #1f7473;
}

.modal-body a:hover,
.modal .card-text a
{
    color: #063f43;
}

.card-zoom .card-img-top {
    background-color: #07464B;
    height: 160px;
    border: 0.3rem #28676A solid;
    background-size: contain;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
}