﻿#usr_msg{
    position: fixed;
    bottom: 0;
    left: 40px;
    width: 600px;
    /*left: 0;
    width: 100%;*/
    min-height: 66px;
    z-index: 9999999;
    font-size: 18px;
    line-height: 1.4;
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background-color: rgba(233, 233, 233, 0.9);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 3px 5px 6px rgba(0,0,0,0.2);
    -moz-box-shadow:    0 3px 5px 6px rgba(0,0,0,0.2);
    box-shadow:         0 3px 5px 6px rgba(0,0,0,0.2);
    -webkit-animation: utilitySlide 3.5s ease-out;
    -moz-animation: utilitySlide 3.5s ease-out;
    -ms-animation: utilitySlide 3.5s ease-out;
    -o-animation: utilitySlide 3.5s ease-out;
}
#usr_msg.collapsed{
    height: 0px;
}

@-webkit-keyframes utilitySlide {
    0%, 35% {
    max-height: 0; }

    to {
    max-height: 300px; } 
}

@-o-keyframes utilitySlide {
    0%, 35% {
    max-height: 0; }

    to {
    max-height: 300px; } 
}

@-moz-keyframes utilitySlide {
    0%, 35% {
    max-height: 0; }

    to {
    max-height: 300px; } 
}

@-ms-keyframes utilitySlide {
    0%, 35% {
    max-height: 0; }

    to {
    max-height: 300px; } 
}

#usr_msg header{
    background-color: rgba(153, 153, 153, 0.9);
    display: table;
    padding: 0;
    width: 100%;
}
#usr_msg header h2{
    display: table-cell;
    vertical-align: middle;
    padding: 8px 0 8px 17px;
    margin: 0;
    color: #fff;
    font-family: MuseoSans-500;
    font-size: 15px;
    /*font-weight: 400;*/
    text-transform: uppercase;
    -webkit-text-size-adjust:100%;
}
#usr_msg .close{
    /*display: table-cell;
    vertical-align: middle;*/
    position: absolute;
    top: 6px;
    right: 6px;
    height: 36px;
    width: 36px;
    cursor: pointer;
    display: block;
    float: right;
    margin: 0;
    background-color: #000;
    border-radius: 100px;
    position: absolute;
    right: 6px;
    top: 6px;
}
#usr_msg .close:after{
    float: left;
    left: 3px;
    padding: 0 6px;
    position: relative;
    font-size: 22px;
    font-size: 1.4666666667rem;
    font-family:FontAwesome;
    content: '\f00d';
    color: #fff;
}
#usr_msg .container{
    display: block;
    padding: 0 10px;
    height: initial;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
#usr_msg .body{
    /*height: 100%;*/
    width: 540px;
    float: left;
}
#usr_msg .body p{
    padding: 5px 20px;
    font-family: MuseoSans-300;
    font-size: 16px;
    margin: 0;
    -webkit-text-size-adjust:100%;
}

@media (max-width: 768px){
    #usr_msg{
        left: 0;
        margin: 0 8px;
        width: -webkit-calc(100% - 16px);
        width: calc(100% - 16px);
        left: 0;
        margin: 0 8px;
        width: -webkit-calc(100% - 16px);
        width: calc(100% - 16px);
    }
    #usr_msg .body{
        width: -webkit-calc(100% - 36px);
        width: calc(100% - 36px);
    }
}