/*
 Theme Name:   Digiflex Child
 Theme URI:    https://movies.westloverentworld.com/
 Description:  A child theme for the Digiflex WordPress theme
 Author:       Ese @Credence56
 Author URI:   https://movies.westloverentworld.com/
 Template:     digiflex
 Version:      1.0.0
*/

/* Add your custom CSS below */

/* For site main menu */
/* Normal state */
.navbar .site-menu ul li a {
    color: #fff;
    font-weight: 600;
    padding: 0;
}
/* hover state */
.navbar .site-menu ul li a:hover {
    color: #c58938;
    font-weight: 600;
    padding: 0;
}

/* Custom css for the Homepage*/

/* css code for the buttons on the slider for both main and hover state */
/* Normal state for the slider button */
.slider .main-slider .swiper-slide .container .play-btn {
    height: 66px;
    line-height: 64px;
    display: inline-block;
    float: left;
    background-color: #c58938;
    color: #ffffff;
    font-weight: 800;
    padding: 0 50px;
    margin-right: 30px;
    border: 2px solid #c58938;
    transition: all 0.3s ease;
}

/* Hover state for the slider button */
.slider .main-slider .swiper-slide .container .play-btn:hover {
    background-color: transparent !important;
    color: #c58938 !important;
    border: 2px solid #c58938 !important;
}

/* Tagline line on the left of the slider*/
.slider .main-slider .swiper-slide .container .tagline {
    width: 100%;
    display: block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #c58938;
    border-left: 3px solid #c58938;
    padding-left: 10px;
}

/* Online Streaming Section title h2 */
.section-title h6 {
    width: 100%;
    display: block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.7;
    color: #c58938;
}

/* Movie Genre popup in the movie section */
.category-thumb .category-content .tags li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 0;
    list-style: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background: #c58938;
    padding: 4px 8px;
    font-size: 12px;
}

/* Tv Shows Genre in Tv show section*/
.video-thumb .video-content .tags li {
    display: inline-block;
    margin-right: 10px;
    padding: 0;
    list-style: none;
    color: #c58938;
}


/* Browse Movie button on Homepage */
/* Normal State */
.custom-button {
    height: 66px;
    line-height: 64px;
    display: inline-block;
    background: #c58938;
    color: #fff;
    font-weight: 800;
    padding: 0 50px;
    border: 2px solid transparent;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

/* Hover State */
.custom-button:hover {
    background-color: transparent !important;
    color: #c58938 !important;
    border: 2px solid #c58938 !important;
}

/* Pricing Plan save percentage tag */
.price-box .save {
    height: 32px;
    line-height: 32px;
    display: inline-block;
    background: #ffe9c9;
    color: #c58938;
    padding: 0 20px;
    border-radius: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 15px;
}

/* Purchase button in pricing Plan */
/* Normal State */
.price-box a {
    width: 100%;
    height: 66px;
    line-height: 66px;
    background: #c58938;
    color: #fff;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 2px solid transparent;
}

/* Hover state */
.price-box a:hover {
   background-color: transparent !important;
   color: #c58938 !important;
    border: 2px solid #c58938 !important;
}


/* Submit button for Mailchip form */
/* Normal State */
input[type=submit] {
    height: 70px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #c58938;
    border: none;
    padding: 0 50px;
}

/* Hover State */
input[type=submit]:hover {
   background-color: transparent !important;
   color: #c58938 !important;
    border: 2px solid #c58938 !important;
}
/* This ends the styling for the homepage */

/* Movie Gnere tag in single movie page */
.movie-info-box .features .category {
    color: #c58938;
    font-weight: 600;
}

/* Favourite button in single movie page */
/* Normal State */
.info-bottom .add-btn .simplefavorite-button {
    height: 66px;
    line-height: 66px;
    display: inline-block;
    color: #fff;
    background: var(--color-dark);
    text-align: center;
    border-radius: 66px;
    font-size: 15px;
    padding: 0 35px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}
/* Hover state */
.info-bottom .add-btn .simplefavorite-button:hover {
    background-color: #c58938 !important;
   color: #020202 !important;
}
   
/* Page pagination */
.pagination .page-numbers.current {
    background: #c58938;
    border-color: #c58938;
    color: #fff;
}  

/* Blog archive search button */
/* Normal state */
.sidebar .widget form button[type=submit] {
    background: #c58938;
    color: #fff;
    margin: 0;
}

/* Hover State */
.sidebar .widget form button[type=submit]:hover {
   background-color: transparent !important;
   color: #c58938 !important;
    border: 2px solid #c58938 !important;
}

/* Sign in link in registration form */
/* Normal state */
a {
    color: #c58938;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

/* Hover state */
a:hover {
    color: #c58938;
    text-decoration: underline;
}

/* for the button on registration page */
/* Normal state */
 body.user-registration-page .user-registration:not(.user-registration-MyAccount) .ur-button-container .ur-submit-button {
    width: max-content;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: .15px;
    border: 1px solid #c58938;
    margin-right: 0;
    background: #c58938;
}
/* Hover state */
 body.user-registration-page .user-registration:not(.user-registration-MyAccount) .ur-button-container .ur-submit-button:hover {
      background-color: transparent !important;
   color: #c58938 !important;
    border: 2px solid #c58938 !important;
}

/* Button for the login form */
 body.user-registration-page #user-registration:not(.user-registration-MyAccount) .ur-frontend-form .user-registration-form .ur-form-row .ur-form-grid>div .user-registration-Button, body.user-registration-page .user-registration:not(.user-registration-MyAccount) .ur-frontend-form .user-registration-form .ur-form-row .ur-form-grid>div .user-registration-Button {
    padding: 10px 24px;
    font-size: 15px;
    line-height: 25px;
    background: #c58938
}

/* hover state */
body.user-registration-membership_page_user-registration-login-forms #user-registration:not(.user-registration-MyAccount) .ur-frontend-form .user-registration-form .ur-form-row .ur-form-grid>div .user-registration-Button:hover, body.user-registration-membership_page_user-registration-login-forms .user-registration:not(.user-registration-MyAccount) .ur-frontend-form .user-registration-form .ur-form-row .ur-form-grid>div .user-registration-Button:hover, body.user-registration-page #user-registration:not(.user-registration-MyAccount) .ur-frontend-form .user-registration-form .ur-form-row .ur-form-grid>div .user-registration-Button:hover, body.user-registration-page .user-registration:not(.user-registration-MyAccount) .ur-frontend-form .user-registration-form .ur-form-row .ur-form-grid>div .user-registration-Button:hover {
   background-color: transparent !important;
   color: #c58938 !important;
    border: 2px solid #c58938 !important;
}

/* Mobile menu account button */
/* Normal state */
.mobile-menu .button-account {
    width: 100%;
    height: 70px;
    line-height: 70px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #c58938;
    padding: 0 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    margin-top: 20px;
}
/* Hover state */
.mobile-menu .button-account:hover {
     background-color: transparent !important;
   color: #c58938 !important;
    border: 2px solid #c58938 !important;
}
/* Dot on hero section after page title */
.page-header h1:after {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #c58938;
    border-radius: 50%;
    margin-left: 10px;
}

/* bar under device column widget */
.devices-box:before {
    content: "";
    width: calc(100% - 100px);
    height: 6px;
    background: #c58938;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    position: absolute;
    left: 50px;
    bottom: -6px;
    overflow: hidden;
}

/* bar in contact page under infos */
.contact-box:before {
    content: "";
    width: calc(100% - 100px);
    height: 6px;
    background: #c58938;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    position: absolute;
    left: 50px;
    bottom: -6px;
    overflow: hidden;
}

/* Faq page */
/* Normal State */
.accordion .card .card-header a {
    width: 100%;
    float: left;
    font-weight: 600;
    padding: 20px 25px;
    color: var(--color-dark);
    font-size: 17px;
}

/* Hover State */
.accordion .card .card-header a:hover {
    width: 100%;
    float: left;
    font-weight: 600;
    padding: 20px 25px;
    color: #c58938;
    font-size: 17px;
}

transitions style {
    color: rgb(131, 9, 9);
}

/* Active color for the faq page */
.accordion .card [aria-expanded=true] {
    color: #c58938 !important;
}

/* Help Page */
.support-box:before {
    content: "";
    width: calc(100% - 100px);
    height: 6px;
    background: #c58938;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    position: absolute;
    left: 50px;
    bottom: -6px;
    overflow: hidden;
}