*{
    margin: 0;
    padding: 0;
}
.matToolbarContent {
    width: calc(100% - 60px);
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 60px;
}
.matToolbarBtnCont {
    position: absolute;
    left: 0;
    width: 60px;
    height: 100%;
}
.back-button {
    position: relative;
    width: 50px;
    height: 40px;
    border: 0;
    background: transparent;
    top: 8px;
    color: #FFF;
    outline: 0;
    cursor: pointer;
}
.matToolbarContent h3{
    padding-top: 3px;
    color: #ffffff;
}
.matToolbarContent p{
    margin: 0;
    font-size: 14px;
    line-height: 14px;
    color: #ffffff;
}
.top-toolbar-fixed .mat-toolbar{
    background: #20272C;
}
.top-toolbar-fixed{
    background:#20272C;
    /* position: fixed; */
    top: 0;
    z-index: 10;
    width: 100%;
    height: 10vh;
}
.matToolbarBtnCont .mat-icon{
    color: #FFF;
}
.story-box-1{
    height: auto;
    min-height: 100vh;
    overflow: hidden;
    position: fixed;
    width: 100%;
}
.chat-msg-container{
    width: 100%;
    height: calc(100vh - 56px);
    box-sizing: border-box;
    position: absolute;
    top: 56px;
    z-index: 1;
    background-image: url("../images/chat-bg.jpg");
    overflow-y: auto;
}
.chat-messages {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 10px;
    box-sizing: border-box;
}
.click-suggest {
    width: 100%;
    max-width: 260px;
    text-align: center;
    position: absolute;
    bottom: 25px;
    box-sizing: border-box;
    font-size: 21px;
    color: #444;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.single-msg-row {
    height: auto;
    overflow: hidden;
    width: 100%;
    padding: 25px 20px 0;
    box-sizing: border-box;
}
.mat-toolbar-row{
    height: 56px;
}
.mat-toolbar-multiple-rows {
    min-height: 56px;
}
.mat-toolbar-row .mat-button{
    top: -3px;
}
.spinnerContainer{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
}
.chapter-btn i {
    position: relative;
    top: 5px;
}
.chapter-btn {
    width: 100%;
    height: 54px;
    border: 0;
    margin: 0 auto 5px;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    line-height: 54px;
    position: relative;
    background: linear-gradient(to right,#6b5cfb,#b856fc,#aa56fb);
    text-transform: uppercase;
    border-radius: 10px;
    text-align: center;
}
.nextChapterBtn {
    position: relative;
    width: 100%;
    bottom: 0px;
    padding: 0 10px;
    box-sizing: border-box;
    padding-bottom: 16vh;
}
.no-more-chapter {
    text-align: center;
    font-size: 20px;
    color: #e4b1b1;
    padding-bottom: 15px;
}
@media (max-width: 767px){
    .chat-msg-container{
        width: 100%;
        height: calc(100vh - 56px);
        padding: 0 5px;
        box-sizing: border-box;
        position: absolute;
        top: 56px;
        z-index: 1;
        background: url("../images/chat-bg.jpg");
        overflow-y: auto;
    }
}


.chat-box{
    width: 480px;
    height: 100%;
    overflow: hidden;
    background-color: beige;
    margin: 0 auto;
}
.chat-messages{
    width: 100%;
    min-height: 60px;
    overflow-x: auto;
    overflow-y: hidden;
}
.msg-list {
    width: 100%;
    height: 40vh;
    overflow-y: auto;
}
.single-msg{
    max-width: 70%;
    min-width: 5%;
    height: auto;
    padding: 10px;
    margin: 5px 0;
    position: relative;
}
.single-msg p{
    margin: 0;
    word-wrap: break-word;
}
.sender{
    float: right;
    background-color: #dcf8c6;
    color: #111;
    border-radius: 5px 0 5px 5px;
    clear: left;
    box-shadow: 0 1px 0.5px rgba(0,0,0,.13);
}
.sender .actualMsgTxt::after{
    content: "";
    display: block;
    border: 7px solid #dcf8c6;
    position: absolute;
    top: 0;
    right: -14px;
    border-right-color: transparent;
    border-bottom-color: transparent;
}
.receiver{
    float: left;
    background-color: #FFF;
    border-radius: 0 5px 5px 5px;
    clear: right;
    color: black;
    box-shadow: 0 1px 0.5px rgba(0,0,0,.13);
}
.receiver .actualMsgTxt::after{
    content: "";
    display: block;
    border: 7px solid #FFF;
    position: absolute;
    top: 0;
    left: -14px;
    border-left-color: transparent;
    border-bottom-color: transparent;
}
.no-msg {
    text-align: center;
    color: #555;
    margin-top: 14px;
}
.author-name {
    position: absolute;
    top: -25px;
    color: #444;
}
.sender .author-name {
    right: 0;
}
.receiver .author-name {
    left: 0;
}
.msg-seperator{
    height: 20px;
    width: 100%;
    overflow: hidden;
}
.single-msg.sender.no-msg-color {
    background: #FFF;
}
.mediaMsg {
    overflow: hidden;
    height: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.bigImage {
    overflow: hidden;
    height: calc(100vh - 56px);
    width: 100%;
    background: #1b1b1ba8;
    position: fixed;
    top: 56px;
    left: 0;
    z-index: 20;
}
.yesBtn.mat-button {
    background: rgb(6, 175, 76);
    margin: 0 15px 15px 0;
    max-width: 100%;
    height: auto;
    white-space: initial;
    line-height: 20px;
    padding: 8px 10px;
}
.noBtn.mat-button {
    background: #ec721b;
    color: #FFF;
    max-width: 100%;
    height: auto;
    white-space: initial;
    line-height: 20px;
    padding: 8px 10px;
}
.single-msg.receiver.headerMsg {
    max-width: 100%;
    background: transparent;
    text-align: center;
    width: 100%;
    font-size: 20px;
    color: #808080;
    text-shadow: 1px 1px 1px #989898;
}
.single-msg.receiver.headerMsg .author-name{
    display: none;
}
@media (max-width: 480px){
    .single-msg{
        max-width: 75%;
    }
}
.tickBox {
    font-size: 10px;
    line-height: 12px;
    text-shadow: 4px 4px 4px white;
    padding-bottom: 7px;
    text-align: center;
    margin-top: 20px;
    color: #99918a;
}
#wapTickBoxContainer {
    display: block;
    width: 100%;
}
disclaimer > .legals > .terms_link {
	text-align: center;
	font-size: 10px;
}
.legals {
	margin-bottom: 100px;

}
.terms_link > p {
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    line-height: 20px;
}
.terms_link > a {
    color: #99918a;
}
