/*=== Flash Message Styling ===*/
#flash {
    position: fixed;
    top: 80%;
    left: 73%;
    width: 19rem;
    height: auto;
    background-color: #27ae60;
    padding: 0.7rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
    z-index: 2147483638;
    border-radius: 5px;
}

#eflash {
    position: fixed;
    top: 78%;
    left: 70%;
    width: auto;
    height: auto;
    background-color: #e74c3c;
    padding: 0.7rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
    z-index: 2147483638;
    border-radius: 5px;
}

.success-flash {
    color: #fff !important;
}

.error-flash {
    color: #fff !important;
}

.flash-heading p {
    font-size: 14px;
    font-weight: 600;
}

.checked {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    line-height: 1.8rem;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-right: 1rem;
}

.cancel {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    line-height: 1.8rem;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-right: 1rem;
}

.flash-body p {
    margin-left: 3.3rem;
    margin-right: 1.3rem;
    font-size: 13px;
}

#remove {
    position: absolute;
    top: .4rem;
    right: 1rem;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 500;
}

#eremove {
    position: absolute;
    top: .4rem;
    right: 1rem;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 500;
}

#remove:hover {
    cursor: pointer;
}

#eremove:hover {
    cursor: pointer;
}

@media(max-width: 765px) {
    .preference-tp {
        width: 700px;
        padding-right: 10px;
    }

    #flash {
        width: 80%;
        left: 10%;
    }

    #eflash {
        width: 80%;
        left: 10%;
    }

    .flash-heading p {
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    .flash-body p {
        margin-top: 0;
        margin-left: 3.1rem;
        font-size: 0.7rem;
    }
}