<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*---------------------------------------------------
VIDEO BUTTON
----------------------------------------------------*/
.mas-modal-wrapper .mas-modal-button{
    display: flex;
}
.mas-modal-button .mas-modal-image-action {
    display: inline-flex;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.top-to-middle {
    -webkit-transform: translate(-50%, -60%);
    transform: translate(-50%, -60%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mas-modal-item.modal-vimeo.bottom-to-middle {
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mas-modal-item.active.modal-vimeo.bottom-to-middle {
    z-index: 9999;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.mas-modal-item.modal-vimeo.right-to-middle {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(-30%, -50%);
    transform: translate(-30%, -50%);
}

.mas-modal-item.active.modal-vimeo.right-to-middle {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.mas-modal-item.modal-vimeo.left-to-middle {
    -webkit-transform: translate(-70%, -50%);
    transform: translate(-70%, -50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mas-modal-item.active.modal-vimeo.left-to-middle {
    z-index: 9999;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.mas-modal-item.modal-vimeo.zoom-in {
    -webkit-transform: translate(-50%, -50%) scale(0.5);
    transform: translate(-50%, -50%) scale(0.5);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mas-modal-item.active.modal-vimeo.zoom-in {
    z-index: 9999;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.mas-modal-item.modal-vimeo.zoom-out {
    -webkit-transform: translate(-50%, -50%) scale(1.5);
    transform: translate(-50%, -50%) scale(1.5);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mas-modal-item.active.modal-vimeo.zoom-out {
    z-index: 9999;
    display: block;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.mas-modal-item.modal-vimeo.left-rotate {
    opacity: 0;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-transform: translate(-50%, -50%) rotateX(90deg);
    transform: translate(-50%, -50%) rotateX(90deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.mas-modal-item.active.modal-vimeo.left-rotate {
    opacity: 1;
    z-index: 9999;
    -webkit-transform: translate(-50%, -50%) rotateX(0);
    transform: translate(-50%, -50%) rotateX(0);
}

.mas-modal-item.modal-vimeo .mas-modal-content .mas-close-btn {
    position: absolute;
    top: -40px;
    right: -40px;
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.mas-modal-item.modal-vimeo .mas-modal-content .mas-close-btn span {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
}

.mas-modal-item.modal-vimeo .mas-modal-content .mas-close-btn span::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 20px;
    background: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
    left: 50%;
}

.mas-modal-item.modal-vimeo .mas-modal-content .mas-close-btn span::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 2px;
    background: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
    left: 50%;
}

.mas-modal-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    display: none;
}

.mas-modal-overlay.active {
    opacity: 1;
    z-index: 1000;
    display: block;
    transition: all 0.3s ease;
}

.mas-modal-item.image-gallery .mas-modal-element {
    display: flex;
    flex-wrap: wrap;
}

.mas-modal-item.image-gallery .mas-modal-element.column-one .mas-modal-element-card {
    width: 100%;
}

.mas-modal-item.image-gallery .mas-modal-element.column-two .mas-modal-element-card {
    width: 50%;
}

.mas-modal-item.image-gallery .mas-modal-element.column-three .mas-modal-element-card {
    width: 33.33%;
}

.mas-modal-item.image-gallery .mas-modal-element.column-four .mas-modal-element-card {
    width: 25%;
}

.mas-modal-item.image-gallery .mas-modal-element.column-five .mas-modal-element-card {
    width: 20%;
}

.mas-modal-item.image-gallery .mas-modal-element.column-six .mas-modal-element-card {
    width: 16.66%;
}

.mas-modal-item {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.mas-modal-item.modal-vimeo {
    opacity: 0;
    -webkit-transform: translate(-50%, -60%);
    transform: translate(-50%, -60%);
    height: auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    visibility: hidden;
}

@media (max-width: 991px) {
    .mas-modal-item.modal-vimeo {
        height: 100%;
    }

    .mas-modal-item.modal-vimeo::-webkit-scrollbar {
        display: none;
    }
}

.mas-modal-item.modal-vimeo .mas-modal-content .mas-modal-element img {
    display: block;
    width: 100%;
}

.mas-modal-item.modal-vimeo .mas-modal-content .mas-modal-element .mas-modal-element-card .mas-modal-element-card-body p {
    margin: 0;
}

.mas-modal-item.modal-vimeo .mas-modal-content .mas-modal-element .mas-modal-element-card img {
    display: block;
    width: 100%;
}

.mas-modal-item.modal-vimeo .mas-modal-content {
    position: relative;
}

.mas-modal-item .mas-modal-content .mas-modal-element iframe {
    display: block;
    height: 100%;
    width: 100%;
}

.mas-modal-item.active.modal-vimeo {
    opacity: 1;
    z-index: 2000;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    visibility: visible;
}

.mas-modal-wrapper .mas-modal-item.mas-content-overflow-x- {
    overflow-x: hidden;
}

.mas-modal-wrapper .mas-modal-item.mas-content-overflow-y- {
    overflow-y: scroll;
}
.mas-modal-button span.mas-modal-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.mas-modal-button.mas-modal-btn-fixed-width-yes {
    display: flex;
}

.mas-modal-action-icon{
    z-index: 0;
    position: relative;
}

.mas-modal-action-icon::before, 
.mas-modal-action-icon::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    z-index: -1;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
     -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
  }
  .mas-modal-action-icon::after{
    -webkit-animation-delay: 1s;
  animation-delay: 1s;
  }

@keyframes waves {
    0% {
      -webkit-transform: scale(0.2, 0.2);
      transform: scale(0.2, 0.2);
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
      opacity: 0.9;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
      -webkit-transform: scale(0.9, 0.9);
      transform: scale(0.9, 0.9);
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
  }
.mas-modal-wrapper .mas-overlay-img {
    position: relative;
}

.mas-modal-wrapper .overlay-img-pos {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}</pre></body></html>