.container {
    max-width: 100% !important;
    margin: 0;
	padding: 0;
    font-family: sans-serif;
    letter-spacing: 0.5px;	
}

img {
    max-width: 100%;
    border-radius: 50%;
}

.msg-header {
    border: none;
    width: 100%;
    height: 15%;
    border-bottom: none;
    display: inline-block;
    background-color: #007bff;
}

.msg-header-img {
    border-radius: 50%;
    width: 40px;
    margin-left: 5%;
    margin-top: 12px;
    float: left;
}

.active {
    width: 120px;
    float: left;
    margin-top: 10px;
}

.active h4 {
    font-size: 20px;
    margin-left: 10px;
    color: #fff;
}

.active h6 {
    font-size: 10px;
    margin-left: 10px;
    line-height: 2px;
    color: #fff;
}

.header-icons {
    width: 120px;
    float: right;
    margin-top: 12px;
    margin-right: 10px;
}

.header-icons .fa {
    color: #fff;
    cursor: pointer;
    margin: 10px;
}

.chat-page {
    padding: 0 0 50px 0;
}

.msg-inbox {
    border: 1px solid #ccc;
    overflow: hidden;
    /*padding-bottom: 30px;*/
}

.chats {
    padding: 5px;
}

.msg-page {
    height: 70%;
    overflow-y: scroll;	
}

::-webkit-scrollbar {
  width: 0;
}

.received-chats-img {
    display: inline-block;
    width: 20px;
    float: left;
}

.received-msg {
    display: inline-block;
    padding: 0 0 0 5px;
    vertical-align: top;
    min-width: 5%;
    max-width: 92%;
}

.received-msg-inbox {
    width: 90%;
}

.received-msg-inbox p {
    background: #efefef none repeat scroll 0 0;
    border-radius: 10px;
    color: #646464;
    font-size: 14px;
    margin: 0;
    padding: 5px 10px 5px 12px;
    width: 100%;
}

.received-time {
    color: #777;
    display: block;
    font-size: 12px;
    margin: 0;
    float: left;
}

.outgoing-time {
    color: #777;
    display: block;
    font-size: 12px;
    margin: 0;
    float: right;
}

.outgoing-chats {
    overflow: hidden;
    margin: 5px 5px;
}

.outgoing-chats-msg p {
    background: #007bff none repeat scroll 0 0;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    margin: 0;
    /*color: #fff;*/
    padding: 5px 10px 5px 12px;
    width: 100%;
}

.outgoing-chats-msg {
    float: right;
    min-width: 5%;
    max-width: 85%;
    margin-left: 6%;
    padding-right: 10px;
}

.outgoing-chats-img {
    display: inline-block;
    width: 20px;
    float: right;
}

.msg-bottom {
    position: relative;
    height: 30%;
    background-color: #007bff;
}

.input-group {
    float: right;
    margin-top: 5px;
    margin-right: 5px;
    outline: none !important;
    border-radius: 20px;
    width: 70% !important;
    background-color: #fff;
	
}

.form-control {
    border: none !important;
    border-radius: 20px !important;

}

.input-group-text {
    background: transparent !important;
    border: none !important;
}

.input-group .fa {
    color: #007bff;
    float: right;
	cursor: pointer;
}

.bottom-icons {
    float: left;
    margin-top: 10px;
    width: 20% !important;
    margin-left: 10px;
}

.bottom-icons .fa {
    color: #fff;
    padding: 5px;
}

.form-control:focus {
    border-color: none !important;
    box-shadow: none !important;
    border-radius: 20px;
}

.get-started {
    border: 1px solid #007bff; 
    border-radius: 20px;
    padding: 5px 15px 5px 15px; 
    width: 100%; 
    font-size: large; 
    color: white; 
    background-color: #007bff; 
    cursor: pointer;    
}

.get-started:hover {
    background-color: white;
    color: #007bff;
}

.get-started:active {
    background-color: #007bff;
    color: white;
}

.get-started-text {
    border: 1px solid #007bff; 
    border-radius: 20px;
    padding: 3px 10px 3px 10px; 
    width: 100%;
}

.get-started-text-line {
    padding-bottom: 5px;
    padding-top: 5px;
}

.get-started-line {
    padding-bottom: 20px;
    padding-top: 20px; 
    text-align: center;
}

.get-started-home {
    padding: 25px;
}

.breakaccess{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color:rgba(0,0,0,5);
    opacity: 0%;
    z-index: 2;
  }

  .breakspinner{

   position: fixed;
   left: 50%;
   top: 50%;
   height:60px;
   width:60px;
   margin:0px auto;
   -webkit-animation: rotation .6s infinite linear;
   -moz-animation: rotation .6s infinite linear;
   -o-animation: rotation .6s infinite linear;
   animation: rotation .6s infinite linear;
   border-left:6px solid rgba(0,174,239,.15);
   border-right:6px solid rgba(0,174,239,.15);
   border-bottom:6px solid rgba(0,174,239,.15);
   border-top:6px solid rgba(0,174,239,.8);
   border-radius:100%;
}

@-webkit-keyframes rotation {
   from {-webkit-transform: rotate(0deg);}
   to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
   from {-moz-transform: rotate(0deg);}
   to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
   from {-o-transform: rotate(0deg);}
   to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
   from {transform: rotate(0deg);}
   to {transform: rotate(359deg);}
}



