@charset "utf-8";
/* CSS Document */

/* Thumbnail and Play Button Styling */
.video-thumbnail {
    position: relative;
    display: inline-block;
    cursor: pointer;
    max-width: 840px;
    margin: 0 auto;
}

.thumbnail-image {
    width: 100%;
    height: auto;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    background-color: rgba(0, 47, 166, 0.5);
    border-radius: 50%;
    padding: 10px 40px;
	border-bottom-style: dashed;
}

/* Modal Popup Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 10000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    margin: 150px auto;
    padding: 2px;
    width: 90%;
    max-width: 900px;
    background: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
}