

/************************************************************************

 				Global Styles
 	
************************************************************************/

:root {
    --P100: #FBF3F3;
    /* --P500: #D04042; */
    --P500: #DD0108;
    --P600: #B12C2D;
    --BtnLight: #564c4c;
    --BtnDrk: #483c3c;
    --N000: #FFFFFF;
    --N100: #F5F5F5;
    --N200: #D9D9D9;
    --N300: #BDBDBD;
    --N500: #858585;
    --N600: #676767;
    --N700: #3C3C3C;
    --N800: #313131;
    --N900: #151515;
    --cardWidth: 150px;
    --menuMargin: 70px;
    --mobileMenuMargin: 50px;
    --pageWidth: 1168px;
    --shadow: 0 1px 7px #0003;
}

* {
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	outline: none !important;
    border: none !important;
	-webkit-tap-highlight-color: transparent;
}

:focus {
	outline: none !important;
}

html {
    font-size: 16px;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    color: var(--N900);
    padding: 0;
    margin: var(--menuMargin) 0 0 !important;
    overflow-x: hidden;
}

body.is-active {
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}

body h1 {
    font-size: 2.75rem !important;
	line-height: 1.25em;
	font-family: 'Inter', sans-serif !important;
	color: var(--N900);
	font-weight: 700;
    margin: 0;
}

body h2 {
    font-size: 2.2rem !important;
	line-height: 1.25em;
	font-family: 'Inter', sans-serif !important;
	color: var(--N900);
	font-weight: 700;
    margin: 0;
}

body h3 {
    /* font-size: 1.75rem !important; */
    font-size: clamp(1.2rem, calc(1.2rem + ((1vw - 0.2rem) * 1.1818)), 1.75rem) !important;
	line-height: 1.25em;
	font-family: 'Inter', sans-serif !important;
	color: var(--N900);
	font-weight: 700;
    margin: 0;
}

body h4 {
    font-size: 1.45rem !important;
	line-height: 1.25em;
	font-family: 'Inter', sans-serif !important;
	color: var(--N900);
	font-weight: 700;
    margin: 0;
}

body h5 {
    font-size: 1rem !important;
	line-height: 1.25em;
	font-family: 'Inter', sans-serif !important;
	color: var(--N700);
	font-weight: 700;
    margin: 0;
}

body p {
    line-height: 1.5;
    margin: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--P500);
}

section {
    padding: 5rem 1rem;
    max-width: var(--pageWidth);
    margin: auto;
    overflow: hidden;
}

.slider_section{
    padding-left: 0;
    padding-right: 0;
}

.truncate_text_2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 24px;    
    max-height: 48px;      
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}

.truncate_text_1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 24px;    
    max-height: 24px;      
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
}

.nectar-skip-to-content:not(:focus) {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute!important;
    width: 1px;
    word-wrap: normal!important;
}


@media (max-width: 1024px) {
    body {
        margin: var(--mobileMenuMargin) 0 0 !important;
    }
}



/************************************************************************

 				TSL Header
 	
************************************************************************/


.wp-navbar-fix {
    top: 32px !important;
}


.tsl_nav_wrapper {
    background: white;
    width: 100vw;
    position: fixed;
    top: 0px;
    z-index: 999999;
    box-shadow: 0 2px 3px -2px #0002;
}

.nav_content {
    max-width: var(--pageWidth);
    padding: 0 1rem;
    margin: auto;
    height: var(--menuMargin);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.nav_content_left {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: center;
}

.nav_content_left .scriptlab_logo {
    height: 32px;
    margin-right: 2rem;
    vertical-align: middle;
}

.nav_content_left .search_form_wrapper {
    background: var(--N100);
    height: 40px;
    width: 305px;
    border-radius: 8px;
    padding-left: 1rem;
}

.nav_content_left form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.nav_content_left input {
    height: 100%;
    width: 100%;
    background: unset;
    padding: unset;
    font-size: 16px;
    font-family: 'Inter', sans-serif !important;
}

.nav_content_left button,
.nav_content_left button:hover,
.nav_content_left button:focus {
    background: unset !important;
    padding: 1rem;
}

.nav_content_right {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: end;
    align-items: center;
}

.nav_content_right a,
.nav_content_right p {
    color: var(--N900);
    padding: 1rem;
}

.nav_content_right a:hover,
.nav_content_right p:hover {
    color: var(--P500);
}

.nav_content_right .sign_in_btn {
    color: var(--N000);
    background: var(--P500);
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    margin-left: 1rem;
    transition: 0.2s ease-in-out;
}

.nav_content_right .sign_in_btn:hover {
    background: var(--N900);
    color: var(--N000);
}

.nav_content_right .sign_in_btn.logged_in {
    color: var(--N500);
    font-weight: 400;
    background: none;
    padding: 0;
}

.nav_content_right .sign_in_btn.logged_in:hover {
    background: none;
    color: var(--P500);
}

.competition_menu_item {
    position: relative;
    cursor: default;
}

.competition_dropdown_menu {
    position: absolute;
    top: 100%;
    left: 9000px;
    opacity: 1;
    transition: opacity 0.1s ease-in-out;
}

.competition_text_container .chevron_down {
    transform: translateY(4px);
}

.competition_text_container:hover ~ .competition_dropdown_menu {
    opacity: 1;
    left: 0px;
}

.competition_dropdown_menu:hover {
    opacity: 1;
    left: 0px;
}

.nav_content_right .competition_dropdown_menu .competition_dropdown_container {
    min-width: 100px;
    margin-top: -0.5rem;
    background: var(--N000);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px 0 rgba(133, 133, 133, 0.15);
}

.nav_content_right .competition_dropdown_menu .competition_dropdown_container a {
   padding: 0.5rem;
   white-space: nowrap;
}

.store_menu_item {
    position: relative;
    cursor: default;
}

.store_dropdown_menu {
    position: absolute;
    top: 100%;
    left: 9000px;
    opacity: 1;
    transition: opacity 0.1s ease-in-out;
}

.store_text_container .chevron_down {
    transform: translateY(4px);
}

/* .store_text_container:hover .chevron_down {
    transform: rotate(180deg) translateY(-3px);
} */

.store_text_container:hover ~ .store_dropdown_menu {
    opacity: 1;
    left: 0px;
}

.store_dropdown_menu:hover {
    opacity: 1;
    left: 0px;
}

.nav_content_right .store_dropdown_menu .dropdown_container {
    min-width: 100px;
    margin-top: -0.5rem;
    background: var(--N000);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px 0 rgba(133, 133, 133, 0.15);
}

.nav_content_right .store_dropdown_menu .dropdown_container a {
   padding: 0.5rem;
   white-space: nowrap;
}

.mobile_nav_content {
    max-width: var(--pageWidth);
    margin: auto;
    position: relative;
    display: none;
}

.mobile_nav_wrapper {
    background: var(--N000);
    width: 100%;
    height: var(--mobileMenuMargin);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.mobile_nav_wrapper .scriptlab_logo {
    max-height: 25px;
    vertical-align: middle;
}

.mobile_nav_wrapper #mobile-search-icon,
.mobile_nav_wrapper #mobile-menu-icon {
    cursor: pointer;
    padding: 1rem;
    filter: brightness(0) saturate(1);
}

.mobile_nav_content .mobile_search_wrapper {
    width: 100%;
    height: var(--mobileMenuMargin);
    background: var(--N000);
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: -100%;
    left: 0px;
    right: 0px;
}

.mobile_search_wrapper form {
    width: 100%;
    height: 100%;
    padding-left: 1rem;
}

.mobile_search_wrapper input {
    height: 100%;
    width: 100%;
    background: unset;
    padding: unset;
    font-size: 16px;
    font-family: 'Inter', sans-serif !important;
}

.mobile_search_wrapper #mobile-search-close-icon {
    cursor: pointer;
    padding: 1rem;
    filter: brightness(0) saturate(1);
}

.background_cover {
    background: rgba(0, 0, 0, 0.65);
    display: none;
    position: absolute;
    top: -100vh;
    left: 0;
    height: 100vh;
    width: 100vw;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.show_background {
    position: fixed;
    top: 0;
    bottom: 0;
    opacity: 1;
}

.mobile_dropdown_container {
    background: var(--N000);
    /* width: 100%; */
    padding: 0.25rem 1rem 1rem;
    display: none;
    position: absolute;
    top: -300px;
    left: 0px;
    right: 0px;
    transition: top 0.3s ease-out;
}

.open_mobile_menu {
    top: 100% !important;
}

.mobile_dropdown_container .mobile_dropdown_row {
    border-top: 1px solid var(--N200);
    padding: 1.25rem 0;
    cursor: pointer;
}

.mobile_dropdown_container a,
.mobile_dropdown_container p {
    color: var(--N900);
    padding: 0;
    display: block;
}

.mobile_dropdown_row .store_menu_item,
.mobile_dropdown_row .competition_menu_item {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.mobile_dropdown_row .store_dropdown_mobile_menu,
.mobile_dropdown_row .competition_dropdown_mobile_menu {
    padding: 0.5rem 0 0 1rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 0px;
    transition: max-height 0.3s ease-out;
}

.open_store_menu,
.open_competition_menu {
    max-height: 300px !important;
}

.mobile_dropdown_row .store_dropdown_mobile_menu a,
.mobile_dropdown_row .competition_dropdown_mobile_menu a {
    padding: 1rem 0;
}

.mobile_dropdown_container .sign_in_btn {
    color: var(--N000);
    background: var(--P500);
    display: block;
    margin: 1rem auto;
    padding: 1rem 0;
    text-align: center;
    border-radius: 8px;
    transition: 0.2s ease-in-out;
    font-weight: 700;
}

.mobile_dropdown_container .sign_in_btn:hover {
    background: var(--N900);
    color: var(--N000);
}

.mobile_dropdown_container .sign_in_btn.logged_in_mobile {
    color: var(--N000);
    background: var(--N500);
    display: block;
    margin: 1rem auto;
    padding: 1rem 0;
    text-align: center;
    border-radius: 8px;
    transition: 0.2s ease-in-out;
    font-weight: 700;
}

.mobile_dropdown_container .sign_in_btn.logged_in_mobile:hover {
    background: var(--N700);
    color: var(--N000);
}


@media (max-width: 1052px) {

    .wp-navbar-fix {
        top: 46px !important;
    }

    .nav_content {
        display: none;
    }

    .mobile_nav_content,
    .mobile_dropdown_container,
    .background_cover {
        display: block;
    }
}


/************************************************************************

 				TSL Footer
 	
************************************************************************/


.footer_outer {
    width: 100vw;
    background: var(--N000);
}

.footer_wrapper {
    max-width: var(--pageWidth);
    padding: 2rem 1rem;
    margin: auto;
    border-top: 1px solid var(--N200) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_content_left .footer_menu {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 0.25rem;
}

.footer_content_left a,
.footer_content_left p {
    color: var(--N500);
    font-size: 14px;
    padding: 0;
}

.footer_content_left a:hover {
    color: var(--P500);
}

.footer_content_left .footer_menu * + * {
    margin-left: 1.25rem;
}

.footer_content_right {
    display: flex;
    font-size: 35px;
}

.footer_content_right * + * {
    margin-left: 1rem;
}

@media (max-width: 600px){
    .footer_wrapper {
        flex-direction: column-reverse;
    }

    .footer_content_left .footer_menu {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .footer_content_left a, .footer_content_left p {    
        text-align: center;
    }

    .footer_content_right {
        margin: 1rem 0 2rem;
    }
}


/************************************************************************

 				Poster Slider
 	
************************************************************************/

.slider_section_wrapper {
    margin-bottom: 4rem;
}

.slider_section_wrapper > h3 {
    padding-left: 1rem;
    padding-bottom: 1rem;
}

.slider_cards > :first-child {
    margin-left: 1rem;
}

.spacer_card {
    width: 1rem;
    min-width: 1rem;
}

.slider_wrapper {
    position: relative;
}

.slider_wrapper_gradient {
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 100%);
    z-index: 2;
    transition: opacity 0.5s ease-in;
}
.narrow {
    width: 30px !important;
}

.slider_cards{
    padding: 1rem 0;
    overflow-x: auto;
    display: flex;
}

.slider_cards::-webkit-scrollbar {
    height: 5px;
    /* display: none; */
}

.slider_cards::-webkit-scrollbar-thumb {
    background-color: var(--N200);
    border-radius: 20px;
}

.slider_cards::-webkit-scrollbar-track {
    background: transparent;
}

.slider_card {
    width: var(--cardWidth);
    margin-left: 1.5rem;
    text-align: center;
}

.slider_card_image_wrapper {
    width: var(--cardWidth);
    height: calc(var(--cardWidth) * 1.5);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    /* border: .0625rem solid var(--N100) !important; */
    /* box-shadow: 0 1px 3px #0005; */
    box-shadow: var(--shadow);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.slider_card_image_wrapper:hover {
    transform: scale(1.02);
}

.slider_card_image_wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/************************************************************************

 				Home Page
 	
************************************************************************/


.featured_header {
    position: relative;
    max-width: 1440px;
    margin: auto;
}

.gradient_edge {
    width: 150px;
    height: 100%;
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
}

.gradient_bottom {
    width: 100%;
    height: 300px;
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
}

.featured_wrapper {
    margin: auto;
    position: relative;
    z-index: 1;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 2rem;
    max-width: calc(var(--pageWidth) + 2rem);
}

.featured_wrapper * {
    color: white;
}

.featured_content {
    max-width: 568px;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.featured_content .weekly_feature_headline {
    color: var(--P500);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 1.5rem;
}

.featured_content .title_content_wrapper {
    margin-bottom: 1.5rem;
}

.featured_content .title_content_wrapper p{
    font-size: 18px;
    margin-top: 1rem;
}

.featured_wrapper .featured_chevron {
    transform: translateY(4px);
    filter: invert(100%);
}

.home_section_header {
    margin-bottom: 2rem;
}

.section_title_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section_title_row_spacing {
    padding: 0 1rem;
    margin-bottom: 0.75rem;
}

.section_title_row a {
    color: var(--N900);
    white-space: nowrap;
}

.section_title_row a:hover {
    color: var(--P500);
}

.section_title_row a > img {
    transform: translateY(3px);
}

.section_title_row a:hover > img {
    filter: invert(18%) sepia(93%) saturate(1599%) hue-rotate(336deg) brightness(135%) contrast(82%);
}

.section_title_row p > img {
    transform: translateY(3px);
}

.section_title_row p:hover > img {
    filter: invert(18%) sepia(93%) saturate(1599%) hue-rotate(336deg) brightness(135%) contrast(82%);
}

.articles__post_cards_full_width {
    display: grid;
    /* grid-template-columns: 1fr 1fr 1fr 1fr; */
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    grid-gap: 1.5rem;
    overflow-x: auto;
}

.articles__post_cards_full_width .articles__post_card {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.articles__post_cards_full_width .post_card_image_wrapper {
    width: 100%;
    height: 0px;
    position: relative;
    padding-top: 56.25%;
    margin-bottom: 0.5rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease-in-out;
}

.articles__post_cards_full_width .post_card_image_wrapper:hover {
    transform: scale(1.02);
}

.articles__post_cards_full_width .post_card_image_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0px 0px 0px 0px;
}

.section_divider {
    width: var(--pageWidth);
    max-width: calc(100vw - 2rem);
    height: 1px;
    background: var(--N200);
    margin: auto;
}

.section_divider_blog {
    width: var(--pageWidth);
    max-width: calc(100vw - 2rem);
    height: 1px;
    background: var(--N200);
    margin: auto;
    display: none;
}

.slider_section_spacing {
    max-width: calc(var(--pageWidth) + 2rem);
    margin: auto;
}

.section_pt_5 {
    padding-top: 5rem;
}

.section_pb_5 {
    padding-bottom: 5rem;
}

.section_pb_0 {
    padding-bottom: 0;
}

.section_pt_4 {
    padding-top: 4rem;
}

.home_competition_cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1.5rem;
}

.home_competition_card {
    display: flex;
    flex-direction: column;
}

.home_competition_card_image_wrapper {
    width: 100%;
    height: 0px;
    position: relative;
    padding-top: 62.5%;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.home_competition_card_image_wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0px 0px 0px 0px;
}

.home_competition_reminder_btn {
    background: var(--N000);
    color: var(--P500);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--N100);
    /* box-shadow: 0px 0px 3px #0003; */
    position:absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
}

.home_competition_reminder_btn:hover {
    transform: scale(1.1);
}

.home_competition_reminder_btn img{
    width: 18px;
    height: 18px;
    margin: auto;
}

.home_competition_info {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.home_competition_details {
    margin-right: 0.5rem;
}

.home_competition_enter_btn {
    color: var(--N000);
    background: var(--P500);
    padding: .5rem 1rem;
    border-radius: 8px;
    transition: 0.2s ease-in-out;
    min-width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_competition_enter_btn:hover {
    background: var(--N900);
    color: var(--N000);
}

.home_wide_adspace {
    max-width: 970px; 
    width: calc(100% - 2rem); 
    height: auto; 
    margin: auto;
}

.home_wide_adspace img{
    width: 100%;
    border-radius: 8px;
}

.home_mobile_adspace{
    max-width: 500px; 
    width: calc(100% - 2rem); 
    height: auto; 
    margin: auto;
    display: none;
}

.home_mobile_adspace img{
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 1168px) {
    .blog_articles,
    .search_results_articles {
        padding-left: 0;
        padding-right: 0;
    }
    
    .article_section_header {
        margin: 0 1rem 2rem;
    }

    .articles__post_cards_full_width {
        grid-template-columns: repeat(4,minmax(286px,1fr));
        grid-gap: 0.5rem;
    }

    .articles__post_cards_full_width > * {
        margin-left: 1rem
    }
}

@media (max-width: 1024px) {
    /* .articles__post_cards_full_width {
        grid-template-columns: 1fr 1fr;
    } */

    .home_competition_info {
        flex-direction: column;
    }

    .home_competition_details {
        margin-bottom: 0.5rem;
    }

    .home_competition_enter_btn {
        padding: 1rem 1rem;
    }
}

@media (max-width: 768px) {
    .home_competition_cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .home_wide_adspace {
        display: none;
    }

    .home_mobile_adspace{
        display: block;
    }
}

@media (max-width: 540px) {
    /* .articles__post_cards_full_width {
        grid-template-columns: 1fr;
    } */

    .home_competition_cards {
        grid-template-columns: 1fr;
        grid-row-gap: 3rem;
    }

    .section_title_row a {
        font-size: 14px;
    }
}


/************************************************************************

 				Properties Page
 	
************************************************************************/


.property_featured_content_bg {
    position: relative;
}

.property_featured_content_bg > .gradient_bottom {
    z-index: 1;
}

.property_featured_section {
    position: relative;
    color: var(--N000);
}

.property_featured_section h1 {
    color: var(--N000);
}

.property_featured_section::before {
    content: '';
    width: 100px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to left, rgba(21,21,21,0) 0%, rgba(21,21,21,1) 100%);
}

.property_featured_section::after {
    content: '';
    width: 100px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: linear-gradient(to right, rgba(21,21,21,0) 0%, rgba(21,21,21,1) 100%);
}

.property_featured_section .main_card {
    display: flex;
    position: relative;
    z-index: 2;
}

.property_featured_section .property_primary_content {
    display: flex;
    margin-right: 3rem;
}

.image_wrapper_medium {
    width: 268px;
    height: calc(268px * 1.5);
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
    margin-right: 2rem;
}

.image_wrapper_medium img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property_main_info {
    display: flex;
    flex-direction: column;
}

.top_title_section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.top_content .year_genre_format_row {
    margin-top: 1.25rem;
    display: flex;
}

.top_content .year_genre_format_row * + * {
    margin-left: 2rem;
}

.middle_content {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
}

.middle_content .middle_additional_content {
    display: flex;
    flex-direction: column;
    margin-left: 3rem;
    font-size: 14px;
    min-width: 250px;
    max-width: 250px;
}

.middle_content .middle_additional_content > * + * {
    margin-top: 0.5rem;
}

.middle_content .middle_additional_content a {
    color: var(--N000) !important;
}

.middle_content .middle_additional_content a:hover {
    color: var(--P500) !important;
}

.property_main_info .share_button {
    background: var(--N000);
    display: flex;
    align-items: center;
    color: var(--N900);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    margin-left: 2rem;
}

.property_main_info .share_button > img {
    margin-right: 0.25rem;
    transform: translateY(1px);
}

.share_popup_wrapper {
    position: absolute;
    top: 130%;
    right: -9000px;
    opacity: 0;
    transition: opacity 0.1s ease-in-out, top 0.1s ease-in-out;
}

.share_popup_container {
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
}

.share_active {
    right: 0;
    top: 100%;
    opacity: 1;
}

.property_main_info .share_button_mobile {
    background: var(--N000);
    display: flex;
    align-items: center;
    color: var(--N900);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    margin-left: 2rem;
}

.property_main_info .share_button_mobile > img {
    margin-right: 0.25rem;
    transform: translateY(1px);
}

.property_main_info .share_button_mobile {
    display: none;
}

.share_popup_wrapper_mobile {
    position: absolute;
    bottom: calc(-100% - 1.5rem - 20px);
    left: -1000px;
    opacity: 0;
    z-index: 10;
    transition: opacity 0.1s ease-in-out, bottom 0.1s ease-in-out;
}

.mobile_share_active {
    left: 0;
    bottom: calc(-100% - 1.5rem);
    opacity: 1;
}

.social_share_row {
    display: flex;
    justify-content: space-between;
}

.share_popup_container a {
    color: var(--N900);
    display: block;
    margin-right: 1rem;
}

.share_popup_container a > i{
    font-size: 40px;
}

.share_popup_container a > i:hover{
    font-size: 40px;
}

.share_popup_container_mobile {
    position: fixed;
    z-index: 2;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 0.5rem;
    box-shadow: 0 -1px 5px #0001;
}

.share_popup_container_mobile a {
    color: var(--N900);
    display: block;
    margin-right: 1rem;
}

.share_popup_container_mobile a > i{
    font-size: 40px;
}

.share_popup_container_mobile a > i:hover{
    font-size: 40px;
}

.property_main_info .bottom_links_wrapper .share_button {
    display: none;
}

.bottom_content .suggest_changes_link {
    color: var(--N500);
}

.bottom_content .suggest_changes_link:hover {
    color: var(--P500);
}
.bottom_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.bottom_content.flex_end{
    justify-content: flex-end;
    margin-top: 1rem;
}

.bottom_content .script_link {
    width: 100%;
    max-width: 368px;
}

.script_download_button {
    background: var(--BtnLight);
    display: flex;
    color: var(--N000);
    overflow: hidden;
    border-radius: 8px;
    max-width: 368px;
    width: 100%;
    cursor: pointer;
}

.script_download_button .download_info {
    padding: 1rem 1.25rem;
    width: 100%;
}

.script_download_button .download_info .download_title {
    font-size: 18px;
    font-weight: 700;
}

.script_download_button .download_icon {
    background: var(--BtnDrk);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    width: 100%;
    max-width: 72px;
    height: auto;
}



.episodes_wrapper {
    background: rgba(21, 21, 21, 1);
    color: white !important;
}

.episodes_container {
    padding-top: 0rem;
}

.title_row h4 {
    color: white; 
}

.episode_rows > * + * {
    border-top: 1px solid var(--N700) !important;
}

.episode_row {
    padding: 2rem 0;
}

.episode_row .episode_lg_wrapper {
    display: flex;
}

.image_wrapper_small {
    width: var(--cardWidth);
    min-width: var(--cardWidth);
    height: calc(var(--cardWidth) * 1.5);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 2rem;
}

.image_wrapper_small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0px 0px 0px 0px;
}

.episode_main_info {
    width: 100%;
}

.episode_main_info h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.episode_main_info .episode_year {
    margin: 1.5rem 0;
}

.mobile_download_button_wrapper {
    display: none;
}

.sidebar_wrapper {
    padding-right: 1rem;
}

.sidebar_wrapper h3 {
    margin-bottom: 1rem;
}

.scripts_articles_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    max-width: calc(var(--pageWidth) + 2rem);
    margin: auto;
    padding: 5rem 0;
}

.related_scripts_wrapper {
    grid-column-start: 1;
    grid-column-end: 3;
}

.articles__post_cards {
    display: grid;
    grid-template-columns: 1fr;
}

.articles__post_cards a {
    display: block;
}

.articles__post_card {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.articles__post_info {
    margin-right: 1rem;
}

.secondary_text {
    font-size: 14px;
    color: var(--N500);
}

.secondary_text:hover {
    color: var(--N500);
}

.post_card_image_wrapper {
    min-width: 75px;
    height: 75px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.post_card_image_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0px 0px 0px 0px;
}

.competition_cards {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
}

.competition_card {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--N200) !important;
}

.competition_card_image_wrapper {
    min-width: 68px;
    height: 68px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 1rem;
}

.competition_card_image_wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0px 0px 0px 0px;
}

.adgroup {
    margin: 3rem 0;
}

.adgroup > div {
    margin: auto;
}

.adgroup img {
    max-width: 100%
}


.modal_script_wrapper {
    position: fixed;
    z-index: 999999;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: -100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.modal_active {
    left: 0;
    opacity: 1;
}

.modal_script_bg {
    width: 100%;
    height: 100%;
    background: var(--N900);
    opacity: 0.8;
    position: absolute;
    inset: 0;
    z-index: -1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal_script_container {
    background: var(--N000);
    border-radius: 8px;
    padding: 2rem;    
    width: 568px;
    max-width: 75vw;
    max-height: 80vh;
    overflow-y: scroll;
}

.modal_script_container .content_header {
    text-align: center;
}

.modal_script_container .script_download_rows {
    margin: 2rem auto;
    width: 100%
}

.modal_script_container .script_download_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    border: 1px solid var(--N200) !important;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.modal_script_container .script_download_row .left_content {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.modal_script_container .script_download_row .left_content img {
    margin-right: 1rem;
}

.modal_script_container .script_download_row .left_content .script_download_row_content p {
    font-size: 14px;
    color: var(--N500);
}

.modal_script_container .script_download_row > img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(81%) saturate(1567%) hue-rotate(332deg) brightness(94%) contrast(86%);
}

.modal_script_container .contact_row {
    text-align: center;
}

.modal_script_container .contact_row p {
    font-size: 14px;
    color: var(--N500);
}

.modal_script_container .contact_row a {
    color: var(--P500);
}

.registration_wrapper {
    background: rgba(0 0 0 /.8);
    position: fixed;
    top: 5%;
    left: 100%;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow-y: scroll;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease-out 0.2s;
}

.registration_card {
    background: var(--N000);
    padding: 2rem;
    margin: auto;
    max-width: 432px;
    border-radius: 8px;
    box-shadow: 0 3px 2px #0003;
    text-align: center;
}

.registration_card > * + * {
    margin-top: 2rem;
}

.registration_card .header_content p {
    font-size: 18px;
    margin: .5rem auto 0;
    max-width: 33ch;
}

.registration_card .secondary_text a {
    color: var(--P500);
}

.registration_card .mp-form-row.mepr_bold.mepr_price {
    display: none !important;
}

.registration_card .mp-form-row input {
    border: none !important;
    background: var(--N100);
    border-radius: 8px;
}

.registration_card .mp-form-row .mp-form-label label {
    font-size: 14px;
}

.registration_card .mp-form-row a {
    color: var(--P500);
    font-size: 12px;
}

.registration_card .mp-form-submit input[type="submit"] {
    display: block;
    width: 100%;
    padding: 1rem 1rem;
    background: var(--P500);
    color: var(--N000);
    border-radius: 8px;
    font-size: 16px;
    -webkit-appearance: none;
}

.registration_card .mp-form-row.mp-password-strength-area {
    display: none;
}

.registration_card .mepr_tos .mepr-checkbox-field {
    display: flex !important;
    align-items: center;
}

.registration_card .mepr_tos .mepr-checkbox-field #mepr_agree_to_tos {
    margin-right: 0.5rem;
}

.registration_card #mepr-mailchimptags-checkbox {
    display: flex !important;
    align-items: center;
}

.registration_card #mepr-mailchimptags-checkbox .mepr-form-checkbox {
    margin-right: 0.5rem;
}

.registration_card .mepr-mailchimptags-message {
    font-size: 12px;
}

.registration_card .mepr-mailchimp-privacy-link {
    font-size: 10px !important;
    color: var(--N500) !important;
    margin-left: 1.65rem;
}




@media (max-width: 1024px) {
    .middle_content {
        flex-direction: column;
    }

    .middle_content .middle_additional_content {
        margin: 1.5rem 0 0;
        max-width: 100%;
    }

    .bottom_content {
        flex-direction: column;
        align-items: flex-start;
    }

    .bottom_links_wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin: 2rem 0 0;
    }

    .bottom_links_wrapper .share_button_mobile {
        display: flex !important;
        margin-left: 0;
    }

    .property_main_info .top_content .share_button {
        display: none;
    }
}

@media (max-width: 768px) {
    .scripts_articles_wrapper {
        grid-template-columns: 1fr;
        grid-column-gap: 0;
        grid-row-gap: 0;
    }

    .slider_section_wrapper:last-child{
        margin-bottom: 2rem !important
    }

    .section_divider_blog {
        display: block;
        margin-bottom: 5rem;
    }

    .sidebar_wrapper {
        padding: 2rem 1rem;
    }

    .property_primary_content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 !important;
        text-align: center;
    }

    .property_primary_content .image_wrapper_medium {
        margin: 0;
    }

    .property_primary_content .top_title_section {
        display: block;
        margin: 2rem auto 0;
    }

    .property_primary_content .year_genre_format_row {
        justify-content: center;
        align-items: center;
        font-size: 14px;
    }

    .property_primary_content .bottom_content {
        align-items: center;
        margin-top:  2rem;
    }

    .script_download_button .download_details {
        font-size: 14px;
    }

    .bottom_links_wrapper {
        font-size: 14px;
    }

    .bottom_links_wrapper .share_button_mobile > img{
        width: 14px;
    }

    .image_wrapper_small {
        width: 100px;
        min-width: 100px;
        height: calc(100px * 1.5);
        margin-right: 1rem;
    }

    .registration_card .header_content p {
        font-size: 14px !important;
    }
    
}


@media (max-width: 500px) {

    .property_primary_content .image_wrapper_medium {
        width: 200px;
        height: calc(200px * 1.5);
    }

    .script_download_button {
        max-width: 100%;
    }

    .image_wrapper_small {
        width: 68px;
        min-width: 68px;
        height: calc(68px * 1.5);
    }

    .episode_main_info .script_download_button {
        display: none;
    }

    .mobile_download_button_wrapper {
        display: block;
    }

    .modal_script_container .script_download_row .left_content img {
        display: none;
    }
}



/************************************************************************

 				TSL Search Page
 	
************************************************************************/

.no_search_wrapper {
    min-height: calc(100vh - var(--menuMargin) - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.no_search_wrapper .header_wrapper {
    text-align: center;
}

.no_search_wrapper .header_wrapper p {
    margin-bottom: 2rem;
}


.no_search_wrapper .search_form_wrapper {
    background: var(--N100);
    height: 40px;
    width: 368px;
    border-radius: 8px;
    padding-left: 1rem;
}

.no_search_wrapper form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.no_search_wrapper input {
    height: 100%;
    width: 100%;
    background: unset;
    padding: unset;
    font-size: 16px;
    font-family: 'Inter', sans-serif !important;
}

.no_search_wrapper button,
.no_search_wrapper button:hover,
.no_search_wrapper button:focus {
    background: unset !important;
    padding: 1rem;
}

.search_results_articles {
    padding-top: 0;
}

.search_results_all_articles {
    padding-top: 0;
}

.search_results_header_term {
    padding-bottom: 5rem;
    text-align: center;
}

.search_results_info_wrapper .number_results {
    font-size: 14px;
    color: var(--N500);
}

.see_all {
    cursor: pointer;
    color: var(--N900);
}

.see_all:hover {
    color: var(--P500);
}

.search_articles__post_cards_full_width {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 1.5rem;
}

.search_articles__post_cards_full_width .articles__post_card {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.search_articles__post_cards_full_width .post_card_image_wrapper {
    width: 100%;
    height: 0px;
    position: relative;
    padding-top: 56.25%;
    margin-bottom: 0.5rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease-in-out;
}

.search_articles__post_cards_full_width .post_card_image_wrapper:hover {
    transform: scale(1.02);
}

.search_articles__post_cards_full_width .post_card_image_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0px 0px 0px 0px;
}

.search_results_properties {
    padding-bottom: 5rem;
}

.results_cards {
    display: grid;
    grid-template-columns: repeat( 6, 1fr);
    grid-gap: 1.5rem;
}

.result_card {
    text-align: center;
}

.result_card_image_wrapper {
    width: 100%;
    height: 0px;
    position: relative;
    padding-top: 150%;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.result_card_image_wrapper:hover {
    transform: scale(1.02);
}

.result_card_image_wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0px 0px 0px 0px;
}

.pagination_wrapper {
    margin: 4rem 0 2rem;
    text-align: center;
}

a.page-numbers i{
    color: var(--N200);
}

a.page-numbers {
    padding: 8px 12px;
    margin: 0.5rem;
    color: var(--N900);
    border: 1px solid var(--N200) !important;
    box-sizing: border-box;
    border-radius: 8px;
}

span.page-numbers.current {
    padding: 8px 12px;
    margin: 0.5rem;
    color: var(--N000);
    border: 1px solid var(--P500);
    box-sizing: border-box;
    border-radius: 8px;
    background: var(--P500);
}

.script_requests {
    padding-top: 0;
    padding-bottom: 6.5rem;
    text-align: center;
}

.script_requests h4 {
    margin-bottom: 2.5rem;
}

.script_requests a {
    background: var(--P500);
    color: white;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 8px;
}

.script_requests a:hover {
    background: var(--N900);
}


@media (max-width: 1024px) {
    .search_articles__post_cards_full_width {
        grid-template-columns: 1fr 1fr;
    }

    .results_cards {
        grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
    }
}

@media (max-width: 500px) {
    .search_results_info_wrapper .number_results {
        font-size: 12px;
    }

    .search_articles__post_cards_full_width {
        grid-template-columns: 1fr;
    }
    
    a.page-numbers {
        padding: 6px 10px;
        margin: 0.25rem;
        font-size: 12px;
    }
}


/************************************************************************

 				TSL Browse Page
 	
************************************************************************/


.browse_page_title {
    text-align: center;
    padding-top: 3rem;
}

.errorBox {
    border: 1px solid red !important;
}

.tsl_section_box .vertical_divider {
    height: 183px;
    width: 1px;
    background-color: #d6d5d5;
    margin-top: auto;
    margin-bottom: auto;
}

.tsl_section_box {

    width: 700px;
    max-height: 400px;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
}

p.tsl_filter_title {
    margin-top: 10px;
    font-size: 19px;
    color: #1b1b1b;
}

.tsl_section_box_body {
    display: flex;
    justify-content: space-between;
}

.tsl_section_box_body label {
    display: flex
}

ul.tsl_filter_list_param {
    margin: 0;
    padding: 0;

}

.tsl_filter_list_param_box {
    display: flex;
    height: 270px;
}

ul.tsl_filter_list_param li {
    display: block;
    margin: 2px;
    width: fit-content;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px
}

.tsl_filter_list_param_wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
}

ul.tsl_filter_list_param li.active {
    background-color: var(--P500);
    color: #fff;
    font-weight: 600;

}

.tsl_section_box_footer {
    display: flex;
    justify-content: flex-end;
}

.tsl_date_filter {
    padding-bottom: 1rem;

}

.tsl_section_box_body .tsl_filter_title {

    font-weight: 800;
    font-size: 20px;

}

.tsl_date_filter {
    margin-bottom: 10px;
}

.tsl_section_box_body .tsl_filter_title,
.tsl_date_filter,
ul.tsl_filter_list_param li {
    padding: 5px
}

.tsl_date_filter input {
    border-radius: 4px;
    background-color: #f9f9f9;
    height: 35px;
    width: 110px;
    padding: 6px 6px 6px 14px;
    margin-top: 6px;
    font-size: 16px;
    color: #868484;
}

.tsl_apply_button {
    background-color: var(--P500);
    border-radius: 4px;
    border: none;
    color: #fff;
    padding: 12px 22px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

.tsl_apply_button:focus-visible,
.tsl_date_filter input:focus-visible {
    outline: none;
}

.pop_modal_box {
    width: 100%;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1000000;
    position: fixed;
    background: rgba(0 0 0 /.8);
    display: flex;
}

.pop_close_box {
    position: relative;
    height: 0px;
}

.pop_close {
    border-radius: 26px;
    padding: 10px;
    position: absolute;
    top: -15px;
    border: 3px solid #fff;
    right: -15px;
    height: 20px;
    width: 20px;
    text-align: center;
    background-color: var(--P500);
    color: #fff;
    cursor: pointer;
}

.filter_selections {
    display: flex;
    flex-wrap: wrap;

}

.cur_point {
    cursor: pointer;
}

/* Chrome, Safari, Edge, Opera */
.tsl_date_filter input::-webkit-outer-spin-button,
.tsl_date_filter input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.tsl_date_filter input[type=number] {
    -moz-appearance: textfield;
}

.filter_selection_tab .filter_btn {
    color: var(--N900);
    padding-right: 10px;
}

.filter_clear,
.filter_edit {
    font-size: 14px;
    margin-right: 1rem;
}

.filter_edit {
    color: var(--P500);
}

.filter_clear a{
    color: var(--N500);
}

.filter_selection_tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.tsl_date_filter input[type=number]::placeholder {
    color: #bfbbbb;
}

.sortby_select {
    font-size: 17px;
    font-weight: 700;
    color: var(--P500);
    /* border: 1px solid var(--N200) !important; */
    padding: 0rem 0.25rem;
    border-radius: 8px;
    /* margin-left: 0.5rem; */
    /* -webkit-appearance: none; */
}

.filter_tag {
    font-size: 12px;
    font-weight: 500;
    padding-right: 20px;
    color: #b1aeae;
}

.tsl_section_box_wrapper {
    margin: auto;
}

.noresults_wrapper {
    margin: auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


@media (min-width: 1025px) and (max-width: 1114px) {
    .tsl_section_box_wrapper {
        height: 400px;
        margin: auto;
    }

    .pop_close {
        position: absolute;
        right: -14px;
        top: -16px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .tsl_section_box_wrapper {
        height: 600px;
        margin: auto;
    }

    .pop_close {
        right: -18px;
        top: -22px;
    }

}

@media (max-width: 768px) {
    .sortby_select {
        width: 125px;
    }

    .tsl_filter_list_param_wrap {
        flex-direction: row;
        width: 584px;
    }

    .tsl_section_box {
        width: 570px;
        height: 422px;
        max-height: 470px;
    }

    .tsl_section_box_body {
        flex-direction: column;
    }

    .tsl_section_box .vertical_divider {
        display: none
    }

    .tsl_date_filter input {
        width: 250px;
    }

    .tsl_filter_list_param_box {
        height: 100px;
        width: 580px;
    }

    ul.tsl_filter_list_param {
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;

    }

    .tsl_date_wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    p.tsl_filter_title {
        width: 100%;
    }

    .tsl_section_box_wrapper {
        height: 600px;
        margin: auto;
    }

    .pop_close {
        position: absolute;

        right: -18px;
        top: -22px;
    }


}

@media (min-width: 480px) and (max-width: 540px) {
    .tsl_section_box {
        width: 456px;

        height: 506px;
        max-height: 501px;
    }

    .tsl_date_filter input {
        width: 194px;
    }

    .tsl_filter_list_param_box {
        height: 134px;
        width: 466px;
    }

    .pop_close {
        right: -15px;
        top: -14px;
    }
}


@media (max-width:480px) {

    .tsl_filter_list_param_box {

        height: 159px;
        width: 342px;
    }

    .tsl_date_filter input {
        width: 110px;
    }

    .tsl_section_box {
        width: 340px;
        height: 680px;
        max-height: 630px;
        margin: auto 13px;

        overflow-y: scroll;
        overflow-x: hidden;
    }

    .tsl_section_box_body {
        flex-direction: column;
    }

    .tsl_section_box .vertical_divider {
        display: none
    }

    ul.tsl_filter_list_param {
        display: flex;

        flex-wrap: wrap;
        min-width: 325px;
    }

    .tsl_date_wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    p.tsl_filter_title {
        width: 100%;
    }

    .tsl_section_box_wrapper {
        height: 680px;
        margin: auto;
    }

    .pop_close {
        position: absolute;
        right: 2px;
        top: -16px;
    }

}

@media (max-width:375px) {

    .tsl_section_box {
        width: 290px;
        height: 500px;
        margin: auto 13px;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .tsl_section_box_wrapper {
        height: 500px;
        margin: auto;
    }

    ul.tsl_filter_list_param {
        width: 307px;
        min-width: 300px;
    }
}

@media (max-width:360px) {
    .tsl_section_box {
        width: 287px;
        height: 530px;
    }

    .tsl_filter_list_param_box {
        height: 200px;
    }

    ul.tsl_filter_list_param {
        width: 310px;
        min-width: 300px;
    }


    .tsl_section_box_wrapper {
        height: 530px;

    }
}


@media (max-width:320px) {
    .tsl_section_box {
        width: 250px;
        max-height: 445px;
    }

    .tsl_section_box_wrapper {
        height: 445px;

    }

    .tsl_filter_list_param_box {
        height: 228px;
    }

    .tsl_date_wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tsl_date_filter input {
        width: 95px;

    }

    .tsl_date_filter {
        width: 46%;
    }

    ul.tsl_filter_list_param {
        min-width: 181px;
        width: 266px;
    }
}

@media (max-width: 320px) {
    .tsl_section_box {
        width: 216px;

    }

    ul.tsl_filter_list_param {
        min-width: 181px;
        width: 225px;
    }

    .tsl_date_filter input {
        width: 193px;
    }
}




/************************************************************************

 				TSL Competition Page
 	
************************************************************************/

.competition_page .section_header_title {
    text-align: center;
    margin-bottom: 5rem;
}

.competition_page .section_header_title p {
    max-width: 60ch;
    margin: 1rem auto 0;
}

.competition_page .featured_competition_card{
    border: 3px solid var(--P500) !important;
    position: relative;
}

.competition_page .free_competition_badge{
    position: relative;
}

.competition_page .free_competition_badge::before {
    content: 'Featured & Free';
    background: var(--P500);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    left: 0;
    top: 0px;
    position: absolute;
    padding: 0.5rem;
    z-index: 1;
}

.competition_page .home_competition_cards {
    grid-column-gap: 3rem;
    grid-row-gap: 5rem;
}

.coverfly_competitions_wrapper {
    display: flex;
    align-items: center;
}

.coverfly_image_wrapper {
    width: 50%;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 3rem;
    display: flex;
}

.coverfly_image_wrapper .coverfly_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coverfly_competitions_wrapper .coverfly_competitions_content {
    width: 50%;
}

.coverfly_competitions_wrapper .coverfly_competitions_content p{
    margin: 1rem 0 3rem;
}

.coverfly_competitions_wrapper .coverfly_competitions_content .coverfly_programs_btn{
    background: var(--P500);
    color: var(--N000);
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: background 0.2s ease-in-out
}

.coverfly_competitions_wrapper .coverfly_competitions_content .coverfly_programs_btn:hover{
    background: var(--N900);
}

@media (max-width: 768px) {
    .coverfly_competitions_wrapper {
        flex-direction: column;
    }

    .coverfly_image_wrapper {
        width: 100%;
        /* height: auto; */
        margin: 0 auto 2rem;
    }

    .coverfly_competitions_wrapper .coverfly_competitions_content {
        width: 100%;
    }

}


/************************************************************************

 				TSL Blog Page - single.php
 	
************************************************************************/


.article_main_container {
    margin: auto;
    padding: 5rem 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow: visible;
}

.article_main_content {
    width: 100%;
    max-width: 44rem;
    margin-right: 3rem;
}

.article_header_info p {
    color: var(--N500) !important;
    margin-top: 0.5rem;
}

.article_main_content > img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0 1rem;
}

.article_main_content .article_content {
    margin-bottom: 3rem;
}

.article_main_content .article_content p {
    font-size: 18px;
    line-height: 1.5;
    text-align: justify;
    padding-bottom: 1.5rem;
    color: var(--N600) !important;
}

.article_main_content .article_content iframe {
    aspect-ratio: 16 / 9;
    width: 100% !important;
    height: 100% !important;
}

.article_main_content .article_content ul,
.article_main_content .article_content ol {
    line-height: 1.5;
    font-size: 18px;
    color: var(--N600)!important;
    margin-top: 0;
}

.article_main_content .article_content h1 {
    font-size: 2.25rem!important;
    line-height: 1.25em!important;
    margin: .5em 0;
    text-align: left;
}

.article_main_content .article_content h2 {
    font-size: 2.0rem!important;
    margin: .75em 0 .25em;
}

.article_main_content .article_content h3 {
    font-size: 1.75rem!important;
    margin: .75em 0 .25em;
}

.article_main_content .article_content h4 {
    font-size: 1.25rem!important;
    margin: 0.5em 0;
}

.article_main_content .article_content a {
    color: var(--P500);
}

.article_main_content .article_content .nectar-button {
    background: var(--P500)!important;
    color: white!important;
    padding: 1rem 2rem;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    margin: 0 1rem 2rem 0 !important;
    display: inline-block;
}

.article_main_content .article_content .nectar-button i {
    margin-left: 1rem;
}

.article_main_content .article_content img {
    max-width: 100%;
    height: auto;
}

.article_main_content .article_content blockquote {
    margin: 2rem 3rem 3rem;
}

.article_main_content .article_content blockquote *{
    padding: 0 !important;
}

.article_main_content .article_content .wp-caption {
    max-width: 100% !important;
}

.article_main_content .article_content .wp-caption .wp-caption-text {
    max-width: 90%;
    width: auto;
    margin-left: 5%;
    display: inline-block;
    margin-bottom: 5px;
    background-color: #fff;
    box-shadow: 0 10px 35px rgb(0 0 0 / 10%);
    padding: 10px 15px;
    top: -25px;
    position: relative;
}

.article_main_content .article_featured_scripts_section {
    margin-bottom: 2rem;
}

.article_main_content .slider_wrapper {
    --cardWidth: 135px;
}

.article_main_content .slider_cards>:first-child {
    margin-left: 0 !important;
}

.article_main_content .alignleft {
    float: left;
    margin-right: 15px;
}

.single_grid_column {
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    margin-bottom: 3rem;
    overflow: unset;
}

.article_page_wrapper .blog_sidebar {
    width: 100%;
    max-width: 368px;
    flex-shrink: 1;
    position: sticky;
    top: -1000px;
    align-self: flex-start;
}

.article_page_wrapper .blog_sidebar .recent_posts .section_title_row {
    margin-bottom: 0 !important;
}

.article_page_wrapper .blog_sidebar .sidebar_competitions {
    margin-top: 3rem;
}

.article_page_wrapper .blog_sidebar .sidebar_competitions .competition_cards{
    margin-top: 1rem;
}

.article_page_wrapper .more_related_articles {
    padding-top: 0;
}

.hidden {
    display: none;
}

.free_scripts_ad {
    max-width: 368px;
    margin: auto;
}

.free_scripts_ad img {
    max-width: 100%;
}


@media (max-width: 1024px) {

    .article_main_container {
        flex-direction: column;
    }

    .article_main_content {
        margin: auto;
    }

    .article_page_wrapper .blog_sidebar {
        margin: auto;
        max-width: 44rem;
    }

    .article_page_wrapper .blog_sidebar .section_divider_blog {
        display: block;
        max-width: calc(100% - 2rem);
        margin-bottom: 5rem;
    }
}

@media (max-width: 500px) {

    .article_main_content h1 {
        font-size: 2.1rem!important;
    }

    .article_main_content .article_content h1 {
        font-size: 2rem!important;
    }

    .article_main_content .article_content h2 {
        font-size: 1.75rem!important;
    }

    .article_main_content .article_content h3 {
        font-size: 1.5rem!important;
    }

    .article_main_content .article_content h4 {
        font-size: 1.2rem!important;
    }
}

/************************************************************************

 				Script Request
 	
************************************************************************/

.script_request_form_wrapper {
    margin: auto;
    max-width: 600px !important;
}

.script_request_form_wrapper .gform_heading{
    text-align: center;
}

.script_request_form_wrapper .gform_description{
    margin: 1rem auto 2rem !important;
    max-width: 50ch;
    line-height: 1.5;
}

.script_request_form_wrapper .gform_body input{
    padding: 10px 8px !important;
    background-color: var(--N100);
    border-radius: 8px;
}

.script_request_form_wrapper .gform_footer .gform_button{
    width: 100% !important;
    margin: auto !important;
    padding: 1rem;
    font-weight: 700;
    background: var(--P500);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    line-height: 1 !important;
}

.script_request_form_wrapper .gform_footer .gform_button:hover{
    background: var(--N900);
}

.script_request_form.gform_confirmation_wrapper {
    text-align: center;
    max-width: 600px;
    margin: auto;
    min-height: calc(100vh - 10rem - 200px);
}

/************************************************************************

 				template-download.php
 	
************************************************************************/

.expired_link_wrapper,
.max_downloads_wrapper {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 65ch;
    text-align: center;
    padding: 0 1rem;
}

.expired_link_wrapper p,
.max_downloads_wrapper p{
    font-size: 16px;
    color: var(--N900);
    margin-top: 1rem;
}




/************************************************************************

 				Miscellaneous
 	
************************************************************************/

.at-share-dock-outer {
    display: none;
}

/* Memberpress Account page container */
.container.main-content{
    /* max-width: var(--pageWidth) !important;
    padding: 0 !important */
}

/* Article Registration Popup */
.article_pop_up_btn {
    background: var(--P500); 
    color: white; 
    display: block; 
    text-align: center; 
    padding: 1rem; 
    cursor: pointer; 
    border-radius: 8px; 
    font-weight: 700;
    transition: 0.3s;
}

.article_pop_up_btn:hover {
    background: var(--P500); 
    color: white; 
    transform: scale(1.03);
}

.article_sign_up_container {
    margin-bottom: 0 !important;
}

#popmake-29237 .col,
#popmake-29514 .col,
#popmake-29515 .col {
    margin-bottom: 0 !important;
}

#gform_wrapper_2 .gform_footer input{
    background: var(--P500);
    color: white;
    font-weight: 700;
    border-radius: 8px !important;
}

@media (max-width: 500px) {
    #popmake-29237 {
        width: 300px !important;
    }
}










