body {
    background-color: #f1f1f1;
}
h1 {
    text-transform: uppercase;
}
.inline-block {
    display: inline-block;
}
.container {
    border: 1px solid #dbdbdb;
    padding: 1em;
    border-radius: 0.3em;
    box-shadow: 0px 3px 5px 1px #DDD;
    background-color: #f8f9faeb;
    z-index: 1001;
    position: relative;
}
.tag {
    background-color: #007bff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-right: 0.2em;
    margin-bottom: 0.3em;
}
.note{
    font-size: 0.8em;
    color: #696969;
}
.list-group {
    font-size: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 0.1em;
    border: 2px solid #dbdbdb;
    box-shadow: 0px 3px 5px 1px #DDD;
}

/* Bootstrap Overrides */
.badge-xl{
    font-size: 1.3em;
}

.btn-xs{
    padding: .06rem .4rem;
    font-size: .675rem;
}

#title {
    font-weight: 600;
}

/* Comment Boxes */
#boxes {
    height: 84%;
    position: relative;
    z-index: 999;
}
.box {
    /*min-width: 100px;
    min-height: 40px;*/
    background-color: white;
    border: 1px solid rgba(86, 86, 86, 0.5);
    position: absolute;
    border-radius: 0.5em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-size: 2em;
    line-height: 1em;
    text-align: center;
    padding: 0.3em 0.5em;
    user-select: none;
    max-width: 450px;
    overflow-wrap: break-word;
    /* transition */   
    transition: border 0.5s;
}
    .box.showcased {
        font-size: 3em;
        left: 50%;
        top: 50%;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }
    .box.showcased-xl {
        font-size: 3.75em;
    }

    .box.private {
        border: 1px solid #f00404 !important;
    }

    .box.new {
        border: 3px dashed #04f55d !important;
    }

#bin {
    padding: 1em;
    /* Transition */
    transition: background-color 1.5s;
    /* Sticky to the bottom */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa90;
    border-top: 1px solid #dbdbdb;

}
    #bin.over{
        background-color: #de4242;
        color: white;
    }


/* Comments */

#comments-sticky {
    position: fixed;
    bottom: 70px;
    width: 50%;
    left: 25%;
    z-index: 1000;
}
#comments-sticky.small {
    bottom: 140px;
    width: 14%;
    height: 10px;
    left: 43%;
}
    @media (max-width: 768px) {
        
        #comments-sticky {
            width: 96%;
            left: 2%;
        }
    }

#comment {
    font-size: 1.5em;
}

#comments-toggle {
    position: relative;
    z-index: 1001;
}

.draggable {
    cursor: move;
}

.hidden {
    display: none;
}

/* QR Code - in bottom right */
.qr {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
    height: 20%;
}
    .qr.large{
        height: 30%;
    }
    .qr.xlarge{
        height: 40%;
    }

/* Media queries */
@media (max-width: 768px) {
    .qr {
        width: 200px;
        height: 200px;
        position: initial;
        margin: auto;
        margin-top: 2em;
    }

    .mobile-hidden {
        display: none;
    }
}


#color-select i {
    cursor: pointer;
}

#color-select i.red {
    color: red;
}
#color-select i.blue {
    color: blue;
}
#color-select i.green {
    color: green;
}


#color-select i.fa-eye-dropper {
    font-size: 1.6em;
    color: #696969;
}


/* Footer */
footer {
    margin-bottom: 8em;
}