@import url(https://fonts.googleapis.com/css?family=Nunito);
@charset "UTF-8";
.user_icon_section {
    float: right;
}

* {
    font-family: 'Nunito', sans-serif;
}


/* width */

::-webkit-scrollbar {
    width: 10px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #888;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.cats-ul-top {
    text-align: center;
}

.main-nav-menu {
    text-decoration: none;
    color: white;
    padding: 10px 0px 0px 10px;
    margin-top: 20px;
}

.blog-title-on-home {
    font-size: 15px;
    font-weight: bold;
    font-family: Nunito, sans-serif;
    color: black;
}

.blog-title-on-home:hover {
    color: #CD0E52;
}

.book-now {
    text-decoration: none;
    border-radius: 50px;
    border: 0px solid black;
    color: black;
    margin-left: 20px;
    padding: 0px 10px 0px 10px;
    line-height: 0.5;
    font-size: 13px;
    opacity: 1;
    color: white;
    font-weight: bold;
    background-color: #E17300;
}

.book-now:hover {
    background-color: #CD0E52;
    opacity: 1;
    color: white;
    text-decoration: none;
}

.cats-ul-side li {
    display: block;
}

.cats-ul-top li {
    display: inline;
    padding: 4px 10px 4px 10px;
    /* border:1px solid #ABB2B9;*/
    border-radius: 50px;
    margin: 3px;
    line-height: 2.8;
    font-size: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background-color: white;
}

.cats-ul-top li:hover {
    background-color: #CD0E52;
    color: white;
    cursor: pointer;
}

.cat-a-top {
    text-decoration: none;
    color: black;
}

.cats-ul-top li:hover .cat-a-top {
    color: white;
    text-decoration: none;
}

.user_icon_section {
    float: right;
}

.themecolor {
    background-color: #00304F !important;
}

.themecolor-secondary {
    background-color: #007f5d !important;
}

.themefontcolor {
    color: black !important;
}

.vl {
    border-left: 3px solid teal;
    padding-left: 10px;
}

.movie-image {
    transition: 0.5s ease;
}

.movie-image:hover {
    transform: scale(1.1);
}

.blog-img-home {
    border-radius: 10px;
    height: 70px;
    width: 100%
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 8%;
    right: 6%;
    z-index: 99;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    padding: 7px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.side_nav_btn {
    font-size: 22px;
    color: #B5AEAC;
    cursor: pointer;
    float: left;
}

.side_nav_btn:hover {
    color: white;
}

.anchor {
    color: #B5AEAC;
}

.anchor:hover {
    color: white;
}

.wrapper_paragraph {
    padding: 0;
    border-bottom: 2px solid #193364;
}

.paragraph {
    /* color:#8E8484;*/
    font-size: 20px;
    font-weight: bold;
    width: auto;
    float: left;
}

.side_triangle {
    width: 0;
    height: 0;
    border-top: 42px solid transparent;
    border-left: 30px solid #193364;
    float: left;
}

.viewall {
    color: #cd0e52;
    font-weight: bold;
    float: right;
    font-size: 18px;
    text-decoration: none;
}

.viewall:hover {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.paragraph_movie {
    margin-top: -12px;
    color: #585555 !important;
    font-size: 13px;
}


/* #boxshadow{
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}*/

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.content {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: auto;
    overflow: hidden;
}

.belowcontent {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: auto;
    overflow: hidden;
}

.content .content-overlay {
    background: #cd0e52;
    position: absolute;
    height: 18%;
    width: 100%;
    /* top: 0;*/
    bottom: -25%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

.singlecontent_wrapper {
    /*  max-height: 190px;
  min-height: 190px;*/
}

.singlecontent_wrapper:hover .content-overlay {
    opacity: 1;
    border-radius: 0px;
    bottom: 0%;
}

.content:hover .content-overlay {
    opacity: 1;
    border-radius: 0px;
    bottom: 0%;
}

.content-image {
    width: 100%;
    height: 170px;
    border-radius: 5px;
}

.content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.content-details h3 {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
}

.content-details p {
    color: #fff;
    font-size: 0.8em;
}

.fadeIn-bottom {
    top: 80%;
}

#boxshadow {
    position: relative;
    -moz-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    padding: 3px;
    background: white;
    transition: 0.7s ease;
    border: 0px solid white;
}

#boxshadow:hover {
    box-shadow: 7px 8px 10px rgba(0, 0, 0, .5);
}

#boxshadowcontainer {
    position: relative;
    -moz-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
    box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
    padding: 20px;
    background: white;
    transition: 0.7s ease;
    border: 0px solid white;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}


/*--star rating--*/

fieldset,
label {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 1.5em;
    margin: 10px;
}


/****** Style Star Rating Widget *****/

.rating {
    border: none;
    float: left;
}

.rating>input {
    display: none;
}

.rating>label:before {
    margin: 5px;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

.rating>.half:before {
    content: "\f089";
    position: absolute;
}

.rating>label {
    color: #ddd;
    float: right;
}


/***** CSS Magic to Highlight Stars on Hover *****/

.rating>input:checked~label,

/* show gold star when clicked */

.rating:not(:checked)>label:hover,

/* hover current star */

.rating:not(:checked)>label:hover~label {
    color: #FFD700;
}


/* hover previous stars in list */

.rating>input:checked+label:hover,

/* hover current star when changing rating */

.rating>input:checked~label:hover,
.rating>label:hover~input:checked~label,

/* lighten current selection */

.rating>input:checked~label:hover~label {
    color: #FFED85;
}

.blog-date-on-home {
    color: black;
    opacity: 0.7;
    font-weight: bold;
    font-size: 12px;
    line-height: 0.5
}

.avg-rating-home {
    color: #cd0e52;
    font-size: 16px;
}

.movie-name-home {
    color: #000000;
    font-size: 17px;
    text-transform: capitalize;
    font-weight: bold;
    font-family: Nunito, sans-serif;
    margin-top: 15px;
}

.custom-margin-totalreviews {
    margin-top: -11px;
}

.site-logo {
    width: 100px;
    height: 30px;
}

.site-info-below-nav {
    font-size: 18px;
    text-align: center;
    color: black;
    font-family: Alegreya SC;
    padding-top: 10px;
    padding-bottom: 10px;
}

.sidenav-user-acc {
    background-color: #CD0E52;
    width: 100%;
    height: auto;
    display: none;
}

.user-on-sidebar {
    float: left;
    margin-left: 20px;
    margin-top: 10px;
}

.user-avatar-on-sidebar {
    height: 60px;
    width: 60px;
    border-radius: 50%;
}

.logout-btn-sidenav {
    padding: 3px !important;
    border: 1px solid white !important;
    color: white !important;
    font-size: 13px !important;
    margin-top: -10px !important;
    margin-bottom: 10px !important;
    width: 50px !important;
    opacity: 0.8 !important;
}

.login-with-google-sidebar {
    font-size: 15px !important;
    border: 1px solid white;
    margin-bottom: 10px;
    padding: 5px 10px 5px 10px !important;
}

.sidenav_a_tag {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: white !important;
    opacity: 0.8 !important;
}

.search_box {
    width: 300px;
    height: auto;
    max-height: 340px;
    background-color: white;
    overflow-y: scroll;
    overflow-x: hidden;
    position: absolute;
    z-index: 1;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.col-8-res-search-box {
    padding-left: 2px;
}

.img-in-search-box {
    width: 100%;
    height: 50px;
    margin: 10px
}

.content-search-box {
    font-size: 14px;
    margin-top: -18px;
    color: black;
    opacity: 0.7;
}

.atagsearch_box {
    text-decoration: none !important;
}

.movie-name-search-box {
    font-size: 16px;
    text-transform: capitalize;
    color: #CD0E52;
    font-weight: bold;
}

.movie-name-search-box:hover {
    color: teal !important;
}

.view-blog-sidebar {
    background-color: #b50a46;
    color: white;
    padding: 5px 0px 5px 30px;
    display: none !important;
}

.clsbtn-display-none-mb {
    display: block;
}

.mt-on-web-only {
    margin-top: 60px;
}

.fixed-on-mb {
    padding-bottom: 10px;
}

.browse-with-category {
    color: white;
    padding: 5px 0px 5px 30px;
    display: block;
}

.blogs-link {
    color: #d8d8cc;
    text-decoration: none;
    font-size: 19px;
}

.blogs-link:hover {
    color: white;
    text-decoration: none;
}

.avg-rating-home-overlay {
    color: yellow;
    font-size: 20px;
}

.movies-wrapper-container {
    background-color: white !important;
    padding: 0px 30px 40px 30px !important;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075)!important;
}

.heading-wrapper-container {
    padding: 0px 30px 0px 30px !important;
    background-color: white !important;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075)!important;
}

.absoulte-cat-box {
    width: 198px;
    height: 200px;
    background-color: red;
    position: absolute;
    z-index: 9999;
    top: 140%;
    display: block;
}

.col-eng-movie-column {
    border-left: 18px solid whitesmoke;
}

@media only screen and (max-width: 1000px) {
    .col-eng-movie-column {
        border-left: 0px solid whitesmoke;
    }
    .display-none-res {
        display: none;
    }
    .site-logo {
        width: 50px;
        height: 20px;
    }
    .sidenav-user-acc {
        display: block;
    }
    .view-blog-sidebar {
        display: block;
    }
    .clsbtn-display-none-mb {
        display: none;
    }
}

@media only screen and (max-width: 1000px) {
    .belowcontent {
        padding-left: 12% !important;
    }
}

@media only screen and (max-width: 600px) {
    .col_section_for_mobile {
        padding-right: 8px !Important;
        padding-left: 8px !Important;
    }
    .tabcontent {
        width: 100%;
        padding: 0px 0px !important;
        margin-top: 20px !important;
        box-shadow: none !important;
    }
    .absoulte-cat-box {
        display: none;
    }
    .mt-on-mbl-rb {
        margin-top: 30px;
    }
    .heading-wrapper-container {
        background-color: white;
        padding-left: 15px !important;
        padding-right: 15px !important box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075)!important;
    }
    .movies-wrapper-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        background-color: white;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075)!important;
    }
    .belowcontent {
        position: relative;
        width: 100% !important;
        max-width: 400px;
        margin: auto;
        overflow: hidden;
        padding-left: 12% !important;
    }
    .content-overlay {
        display: none;
    }
    .content-details {
        display: none;
    }
    .avg-rating-home-overlay {
        color: yellow;
        font-size: 14px;
    }
    .browse-with-category {
        display: none;
    }
    .none-for-mb {
        display: none;
    }
    .mt-on-web-only {
        margin-top: 0px;
    }
    .clsbtn-display-none-mb {
        display: none !important;
    }
    .view-blog-sidebar {
        display: block !important;
    }
    .sidenav-user-acc {
        display: block;
    }
    .mt-on-mb {
        padding-top: 60px !important;
    }
    .fixed-on-mb {
        position: fixed;
        z-index: 1;
        width: 100%;
        padding-bottom: 0px;
    }
    .movie-name-search-box {
        font-size: 20px;
        text-transform: capitalize;
        color: white;
    }
    .content-search-box {
        font-size: 16px;
        margin-top: -18px;
        color: white;
        opacity: 0.7;
    }
    .img-in-search-box {
        width: 50%;
        height: 70px;
        margin: 10px
    }
    .col-8-res-search-box {
        padding-left: 30px !important;
    }
    .search_box {
        width: 290px;
    }
    .site-info-below-nav {
        font-size: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .site-logo {
        width: 30px;
        height: 10px;
    }
    .display-none-res {
        display: none;
    }
    .custom-float-res {
        /*--float left for logged in user avatar --*/
        float: left !important;
        margin-top: 10px;
    }
    .custom-mt-resp {
        /*--margin top for search box --*/
        margin: 10px 10px;
    }
    .custom-mt-home-res {
        margin-top: 30px;
    }
    .paragraph_movie {
        font-size: 10px !Important;
    }
    .custom-margin-totalreviews {
        margin-top: 0px;
    }
    .movie-name-home {
        margin-top: 5px;
        font-size: 13px;
        margin-bottom: 12px;
    }
    .avg-rating-home {
        font-size: 10px;
    }
    .blog-date-on-home {
        font-size: 16px;
        padding: 15px 0px 0px 15px !important;
        line-height: 0;
    }
    .blog-title-on-home {
        padding: 15px 0px 0px 15px;
        font-size: 20px;
    }
    .blog-img-home {
        height: 200px;
    }
    .cats-ul-top {
        display: block;
    }
    .content-image {
        width: 100%;
        height: 160px;
        border-radius: 5px;
    }
    .movie_category {
        margin-top: -10px;
        font-size: 12px;
        color: #969090;
    }
    .paragraph_movie {
        margin-top: -12px;
        color: #585555 !important;
        font-size: 13px;
    }
    .icon-on-movie-card {
        font-size: 10px !Important;
    }
    .content-mbl {
        padding: 5px !Important;
    }
}

.movie_category {
    margin-top: -10px;
    font-size: 10px;
    color: #969090;
}

.outer-divider {
    width: 100%;
    height: 3px;
    background-color: whitesmoke;
    margin-top: 10px;
}

.inner-divider {
    width: 10%;
    height: 3px;
    background-color: #CD0E52;
}