/** [COMPONENT] ALERT MODAL **/
#alert {
    background: rgba(0, 0, 0, 0.8);
}

#alert .modal-md {
    height: 90%;
    position: relative;
}

#alert .loading {
    background: transparent;
    display: inline-block !important;
}

#alert .loading::after {
    border: solid 2px #111;
    border-top: 2px solid #FFF;
}

.msg {
    position: fixed;
    z-index: 9999999999;
    bottom: 30%;
    width: 25%;
    left: 50%;
    margin-left: -12.5%;
    min-height: 50px;
    background: #FFF;
    border-radius: 6px !important;
    text-align: center;
    display: table;
    padding: 8px 0 24px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s cubic-bezier(.215, .61, .355, 1);
    -moz-transition: all .5s cubic-bezier(.215, .61, .355, 1);
    -o-transition: all .5s cubic-bezier(.215, .61, .355, 1);
    transition: all .5s cubic-bezier(.215, .61, .355, 1);
}

.msg.on {
    bottom: 36%;
    opacity: 1;
    visibility: visible;
}

.msg * {
    display: inline-block;
    color: #FFF;
    padding: 0 4px;
    margin: 0;
}

.msg .p {
    float: left;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 0 5px 0;
    line-height: 20px;
}

.msg small {
    float: left;
    width: 100%;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    margin-top: -5px;
}

.msg i {
    font-size: 60px;
}

.msg .icon {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    margin: 0 8px;
}

.msg .icon::before {
    position: absolute;
    left: 0;
    top: 16px;
}

.msg .icon-close {
    display: inline-block;
    background: transparent;
    cursor: pointer;
    position: absolute;
    right: 2px;
    top: 6px;
    opacity: .6;
    color: #666;
    font-size: 24px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0) !important;
}

.msg .icon-close:hover {
    opacity: 1;
}

.msg .icon-close::before {
    position: relative;
    width: 24px;
    height: 24px;
    top: 0px;
    border-radius: 100%;
    -webkit-transition: all .5s cubic-bezier(.215, .61, .355, 1);
    -moz-transition: all .5s cubic-bezier(.215, .61, .355, 1);
    -o-transition: all .5s cubic-bezier(.215, .61, .355, 1);
    transition: all .5s cubic-bezier(.215, .61, .355, 1);
}

@media (max-width: 992px) {
    .msg {
        width: 90%;
        margin-left: 5%;
        left: 0;
    }
}

.scrolling::-webkit-scrollbar {
    width: 6px;
    height: 40px;
}

.scrolling::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, .2);
    background-color: none;
    margin: 10px;
    border: solid 4px rgba(0, 0, 0, 0);
}

.scrolling::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, .2);
    background-color: #44b6ae;
}