/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */button,hr,input{overflow:visible}a,legend{color:inherit}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}a,li,ul{text-decoration:none}body,li,ul{margin:0}html{line-height:1.15;-webkit-text-size-adjust:100%}details,main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}li,ul{list-style:none;padding:0}
/* * SoapsFlix.com 2023 * */
/* * Global Start * */
@font-face {
  font-family: Quicksand;
  src: url(../font/Quicksand-VariableFont_wght.ttf);
}
:root{
    --theme-color: #864BFC;
    --primary-color: #181818;
    --secondary-color: #1E1E1E;
    --text-color: #DCDCDC;
    --muted-text-color: #656D77;
}
body{
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 500;
    background: var(--primary-color);
    color: var(--text-color);
    line-height: 1.5rem;
}
.wrapper{
    display: flex;
    flex-direction: row;
    width: 1400px;
    margin: 1rem auto;
    border: 6px solid var(--secondary-color);
    border-radius: 1rem;
}
.sidebar{
    width: 250px;
    border-right: 6px solid var(--secondary-color);
}
.sidebar-logo{
    padding: 1rem;
    height: 58px;
    /* border-bottom: 6px solid var(--secondary-color); */
}
.sidebar-menu ul li {
    display: flex;
}
.sidebar-menu ul li a{
    width: 100%;
    margin: 0;
    padding: 0.75rem 1rem;
}
.sidebar-menu-header{
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-text-color);
}
.sidebar-menu-header span{
    font-size: 20px;
}
.container{
    width: 100%;
}
.container-flex{
    display: flex;
}
.navbar{
    display: flex;
    align-items: center;
    vertical-align: middle;
    padding: 1rem;
    height: 58px;
}
.navbar-logo{
    width: 150px;
}
.navbar-search{
    position: relative;
}
.navbar-search input{
    padding: 0.75rem 2.5rem !important;
}
.navbar-search span{
    position: absolute !important;
    top: 9px;
    left: 10px;
    padding: 0;
    margin: 0;
}
.navbar-menu ul{
    display: flex;
}
.navbar-buttons{
    margin-left: auto;
}
#mobile-div{
    display: none;
}
.footer{
    display: flex;
    align-items: center;
    vertical-align: middle;
    padding: 1rem;
    border-top: 6px solid var(--secondary-color);
}
.footer-logo{
    width: 150px;
}
.footer-menu{
    display: flex;
    margin-left: auto;
}
.footer-menu ul{
    display: flex;
}
.profile{
    display: flex;
}
.profile-details{
    padding: 1rem;
    margin: 1rem;
    width: 50%;
    background-color: var(--secondary-color);
}
.profile-details ul{
    padding: 1rem;
    list-style-type: disc;
}
.profile-details ul li{
    padding: 0.5rem 0;
    list-style-type: disc;
}
.profile-password{
    padding: 1rem;
    margin: 1rem;
    width: 50%;
    background-color: var(--secondary-color);
}
.profile-password input{
    background-color: var(--primary-color);
}
/* * Global End * */

/* * Container Start * */
.cover-header, .cover-text, .cover-button{
    padding: 0.50rem;
}
.cover{
    padding: 10rem 7rem;
}
.cover-header{
    font-size: 2rem;
    font-weight: 600;
}
.cover-text{
    font-weight: 400;
}
.segment-header{
    font-weight: 600;
    font-size: 1.5rem;
    padding: 1rem 0;
    margin: 0 2rem;
    border-bottom: 3px solid #12151C;
    border-image: linear-gradient(to right, var(--secondary-color), var(--secondary-color), var(--primary-color), var(--primary-color) ) 30;
}
.segment-body{
    padding: 1rem;
}
.episode-card, .episode-card-mini{
    display: inline-flex;
    flex-direction: column;
    width: calc(100% / 5 - 36px);
    margin: 1rem;
    transition: 500ms;
}
.episode-card:hover .episode-card-hover{
    opacity: 0.90;
}
.episode-card-image{
    position: relative;
}
.episode-card-hover{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.episode-card-hover i{
    font-size: 100px;
}
.episode-card-title span{
    display: flex;
    padding: 0.2rem 0;
}
.episode-card-title span:first-child{
    font-weight: 500;
    font-size: 14px;
    color: var(--muted-text-color);
}
.episode-card-title span:last-child{
    font-weight: 600;
    font-size: 16px;
}
.episode-card-mini{
    display: flex;
    flex-direction: row;
}
.episode-card-mini .episode-card-image{
    width: 65px;
}
.episode-card-mini > .episode-card-title{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    width: 100%;
}
/* * Container End * */

/* * Contact Page Start * */
.contact{
    background-color: var(--secondary-color);
    padding: 0.5rem 1rem;
    width: 500px;
    margin: 1rem auto;
}
.contact .form-class{
    background-color: var(--primary-color);
}
/* * Contact Page End * */

/* * Serie Single Page Start * */
.serie{
    padding: 1rem;
    display: flex;
}
.serie-poster{
    width: 250px;
}
.serie-details{
    padding: 0 1rem;
    width: calc(100% - 250px);
}
.serie-header{
    font-weight: 600;
    font-size: 1.5rem;
}
.serie-sumamry{
    font-weight: 500;
    font-size: 1rem;
}
/* * Serie Single Page End * */

/* * Plus Page Start * */
.plus-apply{
    padding: 1rem;
    margin: 1rem;
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.plus-apply div{
    padding: 1rem;
}
.plus-tiers{
    display: flex;
    justify-content: center;
}
.tier{
    padding: 1rem;
    margin: 1rem;
    background-color: var(--secondary-color);
    width: 280px;
    display: flex;
    flex-direction: column;
}
.tier-title, .tier-price{
    border-bottom: 1px solid var(--primary-color);
    padding: 1.5rem;
}
.tier-price span{
    font-size: 48px;
    font-weight: 400;
}
.tier-details li{
    list-style-type: circle;
    padding: 0.5rem;
}
.tier-details{
    padding: 1rem;
    margin: 1rem;
}
.tier-button{
    margin-top: auto;
    padding: 1rem;
}
.tier-button a{
    display: flex !important;
}
/* * Plus Page End * */

/* * Watch Start * */
.video-player{
    padding: 1rem;
    display: flex;
    justify-content: center;
}
.episode-info{
    padding: 1rem;
    display: flex;
}
.episode-image{
    width: 200px;
}
.episode-details{
    width: calc(100% - 350px);
}
.episode-title{
    padding: 0 1rem;
    font-size: 20px;
}
.episode-summary{
    padding: 1rem;
}
.episode-buttons{
    margin-left: auto;
}
video{
  --video-width: 426;
  --video-height: 240;
  aspect-ratio: var(--video-width) / var(--video-height);
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* * Watch End * */

/* * Search Start * */
.search-page{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 6px solid var(--secondary-color);
}
.search-page .form-row{
    padding: 0 1rem;
    width: calc(100% * (1/3) - 2rem);
}
/* * Search End * */

/* * Tool Start * */
.alert{
	background-color: var(--theme-color);
	padding: 0.5rem;
	/* background-color: var(--secondary-color); */
}
.alert-header{
	font-size: 1.1rem;
	font-weight: 600;
}
.alert-header, .alert-body, .alert-footer{
	padding: 0.1rem 0.5rem;
	margin: 0.1rem 0.5rem;
}
.alert-footer{
	/* padding: 1rem 0; */
}
.loader{
	background: var(--secondary-color);
	width: 100%;
	height: 480px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.loader-bar {
  border: 10px solid var(--primary-color);
  border-top: 10px solid var(--theme-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}
.page-error{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 720px;
	margin: auto;
	padding: 2rem;
}
.page-error-title{
	font-size: 2rem;
	font-weight: 600;
	padding: 1rem;
}
.page-error-info{
	padding: 1rem;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.ri-lg{
    display: inline-flex !important;
    vertical-align: -4.5px !important;
}
.form-row{
    display: flex;
    flex-direction: column;
    margin: 1.5rem 0;
}
.form-class{
    padding: 1rem 1.5rem;
    background-color: var(--secondary-color);
    border: none;
    border-radius: 2rem;
    color: var(--text-color);
    outline: none;
}
img{
    display: block;
    width: 100%;
}
h1{
	display: block;
	padding: 0px;
	margin: 0px;
	font-size: 2rem !important;
	font-weight: 600 !important;
}
h2{
	display: block;
	padding: 0px;
	margin: 0px;
	font-size: 1rem !important;
	font-weight: 400 !important;
}
.pb-1{ padding-bottom: 0.5rem !important; }
.pb-2{ padding-bottom: 1rem !important; }
.pb-3{ padding-bottom: 1.5rem !important; }
.pb-4{ padding-bottom: 2rem !important; }
.pt-1{ padding-top: 0.5rem !important; }
.pt-2{ padding-top: 1rem !important; }
.pt-3{ padding-top: 1.5rem !important; }
.pt-4{ padding-top: 2rem !important; }
.plr-0{ padding-left: 0 !important; padding-right: 0 !important; }
.plr-1{ padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.plr-2{ padding-left: 1rem !important; padding-right: 1rem !important; }
.plr-3{ padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.plr-4{ padding-left: 2rem !important; padding-right: 2rem !important; }
.ptb-0{ padding-top: 0 !important; padding-bottom: 0 !important; }
.ptb-1{ padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.ptb-2{ padding-top: 1rem !important; padding-bottom: 1rem !important; }
.ptb-3{ padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.ptb-4{ padding-top: 2rem !important; padding-bottom: 2rem !important; }
.p-0{ padding: 0 !important; }
.p-1{ padding: 0.5rem !important; }
.p-2{ padding: 1rem !important; }
.p-3{ padding: 1.5rem !important; }
.p-4{ padding: 2rem !important; }
.mute-text{
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-text-color);
}
.pagination{
    padding: 1rem;
    display: flex;
    justify-content: center;
    /* width: 100%; */
    box-sizing: border-box;
}
.pagination ul{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    /* width: 100%; */
}
.pagination a{
    background-color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
}
.pagination .active{
    color: var(--theme-color);
}
.link-btn, .page-link{
    padding: 0.5rem;
    margin: 0.5rem;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.link-btn:hover, .page-link:hover{
    color: var(--theme-color);
}
.button{
    display: inline-block;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    text-decoration: none;
    border: none;
    border-radius: 2rem;
    color: inherit;
    cursor: pointer;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.button-primary{
    background: var(--primary-color);
}
.button-primary:hover{
    color: var(--theme-color);
}
.button-secondary{
    background: var(--theme-color);
    color: #fff;
}
.button-secondary:hover{
    background: var(--primary-color);
}
.button-purple{
    background: var(--theme-color);
    color: #fff;
}
.button-purple:hover{
    background: var(--secondary-color);
}
.button-border{
    background-color: transparent;
    border-radius: 0;
    border: 1px solid var(--secondary-color);
}
.button-border:hover{
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
}
.swal2-popup{
    background-color: var(--primary-color) !important;
    color: var(--text-color) !important;
}
.swal2-confirm{
    background-color: var(--theme-color) !important;
    color: var(--text-color) !important;
}
/* * Tool End * */

@media only screen and (max-width: 1024px) {
    .wrapper{
        width: auto;
        margin: 0;
        /* border: 0; */
    }
    .sidebar{
        display: none;
        position: fixed;
        z-index: 1;
        background-color: var(--primary-color);
        height: 100%;
        left: 0;
        top: 0;
        overflow-x: hidden;
    }
    .episode-card{
        width: calc(100% / 4 - 36px);
    }
    .navbar-buttons{
        display: none;
    }
    #mobile-div{
        display: block;
    }
    .segment-header, .cover-header, .episode-title, .serie-header{
        font-size: 1.5rem !important;
    }
    .cover-text, .episode-summary, .serie-sumamry{
        font-size: 1rem !important;
    }

    .video-player video{
        width: 100%;
        height: 100%;
    }
    .episode-info{
        flex-direction: column;
    }
    .episode-image{
        display: none;
        width: 100%;
    }
	.episode-card-image img{
        width: 100% !important;
		height: 100% !important;
    }
    .episode-details{
        width: 100%;
    }
    .episode-title{
        padding: 0;
        padding-top: 1rem;
    }
    .episode-summary{
        padding: 0;
        padding-top: 1rem;
    }
    .episode-buttons{
        margin: 0;
        padding-top: 1rem;
        width: 100%;
    }
    .episode-buttons button{
        width: 100%;
    }
    .serie{
        flex-direction: column;
    }
    .serie-poster{
        width: 100%;
    }
    .serie-details{
        padding: 0;
        padding-top: 1rem;
        width: 100%;
    }

    .contact{
        box-sizing: border-box;
        width: 100%;
    }
    .search-page .form-row{
        width: 100%;
    }

    .footer{
        flex-direction: column !important;
    }
    .footer-menu{
        flex-direction: column !important;
        margin: 0 !important;
    }
    .footer-menu ul{
        margin-top: 1rem;
        align-items: center;
        vertical-align: middle;
        flex-direction: column !important;
    }

}
@media only screen and (max-width: 960px) {
    .plus-tiers{
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    .tier{
        padding: 1rem;
        margin: 1rem;
        background-color: var(--secondary-color);
        width: calc(100% - 4rem);
        display: flex;
        flex-direction: column;
    }
}
@media only screen and (max-width: 768px) {
    .episode-card{
        width: calc(100% / 3 - 36px) !important;
    }
    .cover{
        padding: 5rem !important;
        background: linear-gradient(90deg, rgba(24,24,24,1) 0%, rgba(24,24,24,0.75) 30%, rgba(30,30,30,0.50) 70%, rgba(30,30,30,0.25) 100%) !important;
    }
}
@media only screen and (max-width: 550px) {
    .episode-card{
        width: calc(100% / 2 - 36px) !important;
    }
    .cover{
        padding: 1rem !important;
    }
    .segment-header, .cover-header, .episode-title, .serie-header{
        font-size: 1.1rem !important;
    }
    .cover-text, .episode-summary, .serie-sumamry{
        font-size: 0.9rem !important;
    }
}