/* .lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid rgb(0, 133, 200);
    border-color: rgb(0, 138, 208) transparent rgb(0, 136, 203) transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.border {
    border: 1px solid #cfcfcf !important;
}

.card .feeds-widget {
    padding: 0;
}

.logo-img {
    max-width: 100%;
    height: auto;
} */


.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: #ccc;
    border: 5px solid #4973ff;
    border-radius: 50%;
    overflow: hidden;
}

.wave {
    position: relative;
    width: 100%;
    height: 100%;
    background: #4973ff;
    border-radius: 50%;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.wave:before,
.wave:after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
}

.wave:before {
    border-radius: 45%;
    background: rgba(255, 255, 255, 1);
    animation: animate 5s linear infinite;
}

.wave:after {
    border-radius: 40%;
    background: rgba(255, 255, 255, .5);
    animation: animate 10s linear infinite;
}

@keyframes animate {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}

.small-text .nav-link {
    font-size: 14px;
    /* Adjust the size as needed */
}

.bg-nyk {
    background-image: url('assets/images/oesximg/widget.jpg');
    background-size: cover;
    background-position: center;
}

.sticky-th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
    background: hsl(20, 50%, 70%);
}

.sticky-th th:first-child {
    left: 0;
    z-index: 3;
}

.sticky-tbody {
    overflow: scroll;
    height: 200px;
}

/* MAKE LEFT COLUMN FIXEZ */
.sticky-tr> :first-child {
    position: -webkit-sticky;
    position: sticky;
    background: hsl(210, 100%, 86%);
    left: 0;
}

.sticky-tr> :first-child {
    box-shadow: inset 0px 1px black;
}

/* Custom CSS for Right Sidebar Modal */
.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 500px;
    height: 100%;
    right: -320px;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s ease-in-out;
}

.modal.right.show .modal-dialog {
    transform: translate3d(0, 0, 0);
    right: 0;
}

.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal.right .modal-body {
    padding: 15px;
}

/* Close button (custom styling) */
.modal.right .modal-header .btn-close {
    margin-top: -15px;
    margin-right: -15px;
    background-color: transparent;
    color: #000;
    font-size: 24px;
}

.video-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%; 
    overflow: hidden;
  }


.landing-page-video {
     /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 

  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;

  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);

  z-index: -1;
    
}
