.CamContainer {
    position: relative;
    width: 100%;
    height: 90px;
    background-color: white;
}

.CamUserImage {
    position: absolute;
    left: 10px;
    top: 0;
    width: 80px;
    height: 80px;
    background-size: cover;
    border-radius: 40px;
}

.CamUserTitle {
    position: absolute;
    top: 0;
    left: 100px;
    right: 8px;
    height: 80px;
    line-height: 80px;
    margin: 0;
    background-size: cover;
    color: #555555;
    font-weight: 500;
    font-size: 30px;
}

.CamBuyCoins {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: auto;
    height: auto;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    background-color: #3baa34;
    color: #ffffff;
    font-size: 19px;
    font-weight: 400;
}

.CamUserTitle, .CamBuyCoins {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.CamIFrameContainer {
    position:absolute;
    left: 0;
    top: 150px;
    bottom: 0;
    width: 100%;
}
.CamIFrame {
    width: 100%;
    height: 100%;
    border: none;
}

@media screen and (max-width: 767px) {
    .CamContainer {
        height: 60px;
    }
    .CamUserImage {
        left: 15px;
        width: 50px;
        height: 50px;
        border-radius: 25px;
    }
    .CamUserTitle {
        left: 80px;
        height: 50px;
        line-height: 50px;
    }
    .CamIFrameContainer {
        position: relative;
        top: 0;
        height: calc(100vh - 242px);
    }
}

/* below while camera is new feature */
#MainCamButton .MenuButtonLabel{
    color: #e22b4c;
}
.buttonBadgeNew{
    position: absolute;
    transform: rotate(4deg);
    border-radius: 4px;
    background: #e22b4c;
    color: #fff;
    right: 0;
    padding: 1px 12px;
    font-family: "HelveticaNeue-Light", sans-serif;
    box-shadow: 0 3px 0 RGBA(0,0,0,0.3);
    transition: all 0.1s ease;
}
.MenuButton:hover .buttonBadgeNew{
    font-size: 18px;
    top: 2px;
}
.buttonBadgeNew:empty{
    display:none;
}