.video-introduction {
	text-align: center;
}

.video-introduction h1, .video-introduction p {
    font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
	color: #ffffff;
}

.subscription-status {
	display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.subscription-status h3 {
	background-color: #c09393;
    width: fit-content;
    padding: 15px;
    color: #ffffff;
    font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
}

.course-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.course-container h3 {
	font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
    text-align: center;
}

.course-item {
    flex: 1 1 22%; /* Adjusts each item to take about 22% of the container width */
    padding: 15px;
    text-align: center;
    box-sizing: border-box; /* Ensures padding is included in the width */
}

.course-item.subscribed {
	cursor: pointer;
}

.course-item img {
	cursor: pointer;
}

@media (min-width: 768px) {
	.course-item img {
		width: 50%;
		border-radius: 15px;
	}
}

@media (max-width: 767px) {
    .course-item {
        flex-basis: 100%; /* Each item takes full width on mobile */
		padding: 0px !important;
    }
}

.course-item h3 {
	font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif!important;
    font-size: 15px;
    color: #fec76f;
    padding-top: 10px;
    line-height: 1.3em;
}

.course-item p {
	font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
    color: #a66d00;
}

.course-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-modal-content {
    position: relative;
    background: #fff;
    padding: 20px;
    height: auto;
    width: 640px;
    max-width: 90%;
}

.course-modal-content iframe {
	max-width: 100%;
	max-height: 100%;
	width: 640px;
    height: 315px;
}

@media (max-width: 767px) {
	.course-modal-content iframe {
		height: auto;
	}
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
}

#card-number-element, #card-expiry-element, #card-cvc-element, #card-number-element-register, #card-expiry-element-register, #card-cvc-element-register {
	padding: 15px;
    background-color: #f4f4f4;
    border-radius: 10px;
	margin-bottom: 10px;
}

.video-buttons {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
	margin-bottom: 25px;
}

.purchase-access-button, .checkout-button, .login-register-button, .renew-access-button, .reset-link-btn, .save-new-pass-btn, .watch-trailer-button, .external-donate-button {
    color: #fffefe;
    border: 1px solid #a66d00;
    border-radius: 50px;
    font-size: 16px;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    background-color: #a66d00;
    padding: 10px 60px 10px 40px;
    display: inline-block; /* ensures padding is applied correctly */
    text-decoration: none; /* removes underline from links */
    position: relative; /* for positioning the icon */
}

.login-register-btn {
	width: fit-content;
}

.purchase-access-button:after, .checkout-button:after, .login-register-button:after, .renew-access-button:after, .reset-link-btn:after, .save-new-pass-btn:after, .watch-trailer-button:after, .external-donate-button:after {
    content: "";
    background-image: url('../img/arrow-right-white.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 18px;
    height: 18px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.purchase-access-button:hover, .checkout-button:hover, .login-register-button:hover, .renew-access-button:hover, .reset-link-btn:hover, .save-new-pass-btn:hover, .watch-trailer-button:hover, .external-donate-button:hover {
    background-color: #855905;
    border-color: #855905;
	cursor: pointer;
}

.course-item.not-subscribed {
    pointer-events: none;
    cursor: default;
}

/* .course-item.not-subscribed img {
	filter: blur(4px);
} */

.course-item .thumbnail-container {
    position: relative;
}

.course-item .lock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    color: #ffffff;
	background: #00000075;
    padding: 10px;
    border-radius: 5px;
}

.course-item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4em;
    color: #ffffff;
	background: #00000075;
    padding: 15px;
    border-radius: 10px;
}

@media (max-width: 767px) {
	.course-item .play-icon {
		top: 40%;
		font-size: 2em;
	}
}

.purchase-access-form-wrapper {
	display: flex;
    justify-content: center;
	margin-bottom: 20px;
	margin-top: -5%;
}

.purchase-access-form {
	padding: 20px;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    justify-content: space-evenly;
	align-items: center;
	border: 1px solid #e4e3e3;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#purchase-form {
	width: 50%;
}

@media only screen and (max-width: 767px) {
  #purchase-form {
  	width: 100%;
  }
}

.purchase-access-form h4, .purchase-access-form p {
	font-family: montserrat;
	color: #000000;
}


@media only screen and (max-width: 767px) {
	.fluid-width-video-wrapper {
		padding-top: 60% !important;
	}
}

.premium-video-container {
    padding-top: 5%;
}

.video-introduction p {
	color: #ffffff;
}

@media only screen and (max-width: 767px) {
	.premium-video-container {
        padding: 25px 0px 25px 0px;
    }
	.video-introduction p {
		font-size: 20px;
	}
}

.share-donate-buttons {
    text-align: center;
    display: flex;
    flex-direction: row;
	justify-content: center;
    gap: 15px;
    padding: 0px 15px;
}

@media only screen and (max-width: 767px) {
	.share-donate-buttons {
		flex-direction: column;
	}
}

.yl-donate-form-container {
    padding-top: 25px;
}