img.mt-addons-video-img{
    width: fit-content;
}
.mt-addons-video-img:hover {
    transform: scale(1.1);
    transition: all 400ms ease-in-out 0s;
    -ms-transformtransition: all 400ms ease-in-out 0s;
    -webkit-transformtransition: all 400ms ease-in-out 0s;
}
.mt-addons-video-img {
    cursor: pointer;
    transform: scale(1.0);
    transition: all 400ms ease-in-out 0s;
    -ms-transformtransition: all 400ms ease-in-out 0s;
    -webkit-transformtransition: all 400ms ease-in-out 0s;
}
@media only screen and (max-width: 767px) {
    body img.mt-addons-video-img {
        width: 100px;
    }
}
.mt-addons-video-group  .modal-body{
    padding: 0;
}
.mt-addons-video-group  iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 500px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6)
}
.mt-addons-video-group .embed-responsive.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}
.mt-addons-video-group .embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

/* Modal Overlay */
.modal-backdrop {
  opacity: 0.5 !important; /* Adjust opacity as needed */
  background-color: #000;  /* Overlay color */
}

/* Modal Content */
.modal-content {
  background-color: #fff;  /* Background color of modal */
  border-radius: 10px;     /* Adjust border radius as needed */
}

/* Modal Body Padding */
.modal-body {
  padding: 15px;
}
/* Video Image Styling (Optional) */
.mt-addons-video-link {
  cursor: pointer;
  /* Add any other styles as needed */
}

.mt-addons-video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
}

.mt-addonsvideo-modal-content {
    position: relative;
    background-color: transparent;
    margin: 15% auto;
    padding: 20px;
    width: 100%;
    max-width: 800px;
}

.close {
    color: #fff;
    position: absolute;
    top: -25px;
    right: 19px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.8;
}

.close:hover {
    opacity: 1;
}

/* Overlay Styles */
.mt-addons-video-overlay {
    display: none;
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 768px) {
    .mt-addonsvideo-modal-content {
        background-color: transparent;
        margin: 25% 0;
        padding: 20px;
        width: 100%;
        max-width: 800px;
    }
}
