﻿ 
.mybackbutton, .backbutton {
    padding: 5.2px 22px;
    border-radius: 4px;
    background: #ab5907;
    margin-right: 10px;
}

 
 
  

.gallerybody-wrapper {
    position: relative;
    padding: 35px 0px;
    background-image: url('../../content/images/main-bg.jpg');
    background-attachment: fixed;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.gallery-wrapper {
    position: relative;
    overflow: hidden;
}

.photo-gallery figure img {
    display: block;
    border-radius: 20px;
    /*  filter: grayscale()*/
}

.gallery-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition: opacity 0.8s ease, transform 0.8s ease;
    width: 100%;
}

@keyframes rainbow-blast {
    0% {
        box-shadow: 0 0 0px red;
        background: rgba(255, 0, 0, 0.7);
    }

    25% {
        box-shadow: 0 0 50px orange;
        background: rgba(255, 165, 0, 0.7);
    }

    50% {
        box-shadow: 0 0 80px yellow;
        background: rgba(255, 255, 0, 0.7);
    }

    75% {
        box-shadow: 0 0 100px green;
        background: rgba(0, 255, 0, 0.7);
    }

    100% {
        box-shadow: 0 0 150px blue;
        background: rgba(0, 0, 255, 0.7);
    }
}

.gallery-wrapper.overlay-blast .gallery-overlay {
    animation: overlayBlast 1s ease-in-out forwards;
}

.overlay-blast .gallery-overlay {
    opacity: 0;
    transform: scale(3) rotate(720deg);
    animation: rainbow-blast 0.8s ease forwards;
    pointer-events: none;
}

.photo-gallery {
    opacity: 0;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    position: relative;
    z-index: 99999999;
    margin-bottom: 20px;
}

    .photo-gallery video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 12px;
    }

#photo-1 {
    animation-name: animate-photo-1;
}

#photo-2 {
    animation-name: animate-photo-2;
}

#photo-3 {
    animation-name: animate-photo-3;
}

#photo-4 {
    animation-name: animate-photo-4;
}

#photo-5 {
    animation-name: animate-photo-5;
}

#photo-6 {
    animation-name: animate-photo-6;
}


@keyframes animate-photo-1 {
    0% {
        transform: translate(-100vw, 100vh);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes animate-photo-2 {
    0% {
        transform: translateY(-100vh);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes animate-photo-3 {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes animate-photo-4 {
    0% {
        transform: translate(100vw, -100vh);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes animate-photo-5 {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes animate-photo-6 {
    0% {
        transform: translateX(100vw);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


.video-gallery {
    position: relative;
}

.photo-gallery {
    transition: opacity 1s ease;
}

/* .video-gallery {
        display: none;
        opacity: 0;
        transition: opacity 1s ease;
    }*/

.video-gallery .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    /*margin-bottom: 20px;*/
    box-shadow: 4px 4px 0px rgb(21 177 192 / 86%);
    border: 1px solid #35afba;
    border-radius: 0px 0px 8px 8px;
    background-color: #fff;
}

.video-gallery .bg-video {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    border-radius: 0px 0px 0px 0px;
    /* filter: grayscale(); */
}

.video-gallery .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    pointer-events: none;
    /* transform: translateY(100%);*/
    transition: transform 0.5s ease, background 0.5s ease;
}

.video-wrapper:hover .video-overlay {
    transform: translateY(0);
    background: rgba(27, 27, 27, 0.3);
    pointer-events: auto;
}

.video-wrapper.video-overlay {
    transform: translateY(0);
    background: rgba(27, 27, 27, 0.3);
    pointer-events: auto;
}

.video-gallery .play-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgb(239 123 0 / 86%);
    border: none;
    outline: none;
    position: absolute;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0px;
    line-height: 50px;
    display: flex;
    justify-content: center;
    margin-top: -60px;
}

    .video-gallery .play-btn:hover {
        background: rgb(226 123 16);
    }

.video-gallery .play-icon {
    width: 0;
    height: 0;
    border-left: 12px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    position: absolute;
    left: 28px;
    top: 24px;
}

.video-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.video-popup-content {
    position: relative;
    /* width: 90%;*/
    max-width: 800px;
}

.close-btn {
    position: absolute;
    top: -4px;
    right: -11px;
    font-size: 30px;
    color: #fff;
    background: #000000;
    /* padding: 4px 10px; */
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 24px;
}

.video-popup video {
    width: 100%;
    border-radius: 12px;
    display: block;
    position: relative;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(239 123 0 / 86%);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.8);
    transition: all 0.4s ease;
    pointer-events: none;
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 12px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.video-wrapper:hover .play-btn {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    margin-top: -60px;
}

    .video-wrapper:hover .play-btn::before,
    .video-wrapper:hover .play-btn::after,
    .video-wrapper:hover .play-btn span::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 4px solid white;
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        z-index: 0;
    }

    .video-wrapper:hover .play-btn::before {
        animation: pulse-ring 1.5s ease-out 0s infinite;
    }

    .video-wrapper:hover .play-btn::after {
        animation: pulse-ring 1.5s ease-out 0.5s infinite;
    }

    .video-wrapper:hover .play-btn span::before {
        animation: pulse-ring 1.5s ease-out 1s infinite;
    }


.play-icon {
    position: relative;
    z-index: 2;
    width: 0;
    height: 0;
    border-left: 16px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    70% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.4);
        opacity: 0;
    }
}

.section-title {
    /* max-width: 450px;*/
    text-align: center;
    margin: -10px auto 30px;
    position: relative;
}

    .section-title h2 {
        font-size: 35px;
        font-weight: 700;
        margin-bottom: 10px;
        font-family: poppins, sans-serif;
        letter-spacing: 1px;
        line-height: 50px;
    }

.row.flex-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* #video-file {
        opacity: 0;
        display: none;
        transition: opacity 1s ease;
    }*/

#photo-file {
    transition: opacity 1s ease;
}

.gallery-overlay {
    transition: opacity 1s ease;
}

#photo-file {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (min-width: 1400px) {
    #photo-file {
        max-width: 1320px;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    #photo-file {
        max-width: 1140px;
    }
}

/*#photo-file {
        margin-top: -150px;
    }

    @media (min-width: 1200px) and (max-width: 1300.98px) {
        #photo-file {
            margin-top: -300px;
        }
    }

    @media (min-width: 1440px) and (max-width: 1600px) {
        #photo-file {
            margin-top: -300px;
        }
    }*/

@media (max-width: 767px) {
    .row.flex-center {
        display: block;
    }
}

@media (max-width: 767px) {

    .gallerybody-wrapper {
        padding: 40px 0px;
    }

    .section-title h2 {
        font-size: 28px;
        line-height: 40px;
    }

    .section-title {
        margin: -10px auto 15px;
    }

    #photo-file {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        margin-top: 0px;
    }
}

@media (min-width: 576px) {
    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem);
    }
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 600px;
        margin: 1.75rem auto;
    }
}

.video-caption {
    position: relative;
    bottom: 0px;
    left: 0;
    width: 100%;
    color: #000000;
    background: #fff5e7;
    padding: 12px 15px 12px;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    z-index: 2;
    pointer-events: none;
    line-height: 20px;
    box-shadow: 0px 21px 46px rgb( 0 0 0 /10%);
    border-top: 1px solid #ffffffc7;
    min-height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-container {
    display: flex;
    width: 100%;
    max-width: 550px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    background-color: white;
    /* margin-bottom: 10px;*/
    margin: 0 auto;
}

.search-input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 999px 0 0 999px;
    outline: none;
}

.search-button {
    background-color: #f9f9f9;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    border-left: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin-bottom: 0px;
}

.search-icon {
    font-size: 18px;
    color: #333;
}

.search-container select {
    border: none;
    height: 35px;
    padding: 0px 15px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 8px;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], textarea, select, .form-control {
    height: 31px;
    border: 2px solid #eaeaea;
    background-color: transparent;
    border-radius: 5px;
    border-width: 2px;
    color: #323232;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 9px;
    padding-bottom: 9px;
}

.track-village-bar {
    background-image: url('../../content/images/heading-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    background-color: #065e6d;
    border-radius: 6px;
    padding: 11px 10px;
    max-width: 100%;
    height: 50px;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

    .track-village-bar:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(239 123 0 / 95%);
        z-index: -1;
        border-radius: 6px;
    }

.back-btn {
    background-color: white;
    border: none;
    border-radius: 6px;
    width: 50px;
    height: 40px;
    /*margin-right: 12px;*/
    cursor: pointer;
    line-height: 33px;
    text-align: center;
}

    .back-btn span {
        color: #f77c00;
        font-size: 32px;
        font-weight: bold;
    }

.track-text {
    flex: 1;
    text-align: center;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 23px;
    font-family: poppins, sans-serif;
    letter-spacing: 1px;
}

.from-bg {
    background-color: #244e75;
    padding: 8px 0px;
    margin-bottom: 15px;
    border-radius: 6px;
    /*background: linear-gradient(to right, #e97522 0%, #e97522 100%);*/
}

.bg-shadow {
    background-color: #fff;
    padding: 25px;
    /* box-shadow: 6px 6px 0px rgb(239 123 0); */
    border: 1px solid #ddd;
    border-radius: 8px;
    border: 1px solid rgba(14, 15, 17, 0.06);
    background: rgb(255 255 255);
    box-shadow: 0px 4px 4px 0px rgba(14, 15, 17, 0.02), 0px 4px 26px 0px rgba(14, 15, 17, 0.03);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
    padding: 0px;
}

    .pagination a {
        color: #007b8f;
        background-color: #fff;
        border: 1px solid #007b8f;
        padding: 8px 14px;
        text-decoration: none;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .pagination a:hover {
            background-color: #007b8f;
            color: white;
        }

        .pagination a.active {
            background-color: #007b8f;
            color: white;
            pointer-events: none;
        }

.prev, .next {
    font-size: 20px;
}

@media (max-width: 767px) {
    .track-text {
        font-size: 23px;
    }

    .search-container {
        width: 90%;
    }

    .bg-shadow {
        padding: 10px;
    }

    .pagination a {
        padding: 3px 10px;
    }
}

.headingss123 {
    text-align: center;
    background: #607D8B;
    padding: 8px;
    color: white;
    font-weight: bold;
}

.dist_dashboard {
    margin-bottom: 30px;
    padding: 10px 10px 10px;
    background: #fff9f1;
    border-radius: 8px;
    border: 1px solid #d6d6d6;
}

.jjm-col.s12 {
    width: 100% !important;
}

.card-new {
    margin: 0;
    padding: 0px 10px 13px;
}

.jjm-text-orange {
    padding: 10px 10px !important;
    background-color: #002e47 !important;
    color: #ffffff !important;
    font-size: 18px;
    font-family: 'Poppins';
    text-align: left;
    border-radius: 4px;
}

.informbox {
    font-size: 14px !important;
    color: #000000 !important;
    margin: 0 !important;
    background: #ffffff;
    text-align: center;
    padding: 10px 10px;
    font-weight: 500;
    font-family: 'Poppins';
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    text-align: left;
    border: 1px solid #8989894a;
    background-image: url(https://www.transparenttextures.com/patterns/cream-pixels.png);
    background-size: contain;
}

.txt1 {
    font-weight: bold;
    color: blueviolet;
    margin-bottom: 0px;
    font-family: 'Poppins';
}

label {
    font-weight: 500 !important;
    margin-bottom: 0px;
    margin-left: 20px;
    /* cursor: pointer; */
}

.live_disconnected {
    border: none;
    background: #e70000;
    padding: 3px 20px;
    border-radius: 2px;
    color: #fff;
    width: 100%;
    margin-top: 8px;
    text-align: center;
}

.live_Status {
    border: none;
    background: #00b307;
    padding: 3px 20px;
    border-radius: 2px;
    color: #fff;
    width: 100%;
    margin-top: 8px;
}

.AIS_Status a, .cbutton {
    background: #003c60;
    color: black;
    width: 100%;
    display: block;
    padding: 5px 10px;
    margin: 5px 0 1px;
    font-weight: 600;
    /* border-left: 4px solid #001d52; */
    background: linear-gradient(109.6deg, rgb(203 133 73) 11.3%, rgb(195 110 22) 69.9%);
    border-radius: 6px;
    box-shadow: 2px 3px 5px 1px rgb(2 0 0 / 25%);
    /* text-transform: uppercase; */
    /* font-size: 12px; */
}

.w3-input-group-append {
    display: flex
}

.bxs {
    margin: 0 0 40px 0
}

.mb-6 {
    margin-bottom: 40px;
}

.form-control {
    border-radius: 0px;
    height: 34px;
    line-height: 29px;
    padding: 0 8px;
}

.imis {
    background: #82bb83;
}

.jjm {
    background: lightcoral;
}

.total {
    background: #ddb082;
    color: white;
    font-weight: bold;
}

.bxs111 {
    z-index: -1;
    border: transparent;
    box-shadow: 4px 4px 0px rgb(239 123 0);
    margin-bottom: 0px;
    background: #fff;
    padding: 14px 20px 10px;
    /* min-height: 20vh; */
    border: 1px solid #ef7b00;
    border-radius: 0px 0px 8px 8px;
}

.select2-container ul li {
    display: block;
    border-bottom: 1px solid #efdcdc;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], textarea, select, .form-control {
    height: 38px;
    border: 2px solid #eaeaea;
    background-color: transparent;
    border-radius: 5px;
    border-width: 2px;
    color: #323232;
    padding-left: 30px;
    padding-right: 30px;
    /* padding-top: 9px; */
    padding-bottom: 9px;
}

thead {
    background: #f0f0f0 !important;
}

.headingss {
    text-align: center;
    background: #FFC107;
    padding: 8px;
}

.track-village_heda {
    display: flex;
    justify-content: center;
}

.ggas {
    background: #045f6b;
    padding: 0px 10px;
    border-radius: 4px;
    margin-bottom: 35px;
}


.div1 h3 {
    margin: 0;
    text-transform: uppercase;
    font-size: 20px;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 600;
}

.pt-50 {
    padding: 50px 0px 50px;
}


.theme_buttons a, .theme_button, .wc-proceed-to-checkout .checkout-button, .buttons a, button, input[type="submit"] {
    font-weight: 700;
    padding: 8px 18px;
    margin-bottom: 7px !important;
    background: #ffffff;
    color: #ef7b00;
    font-size: 18px;
}

.track_headign {
    font-weight: 700;
    color: #ffff;
    margin-top: 5px !important;
    margin-bottom: 0px;
    font-size: 21px;
    text-transform: uppercase;
}

[class*="col-"] {
    margin-top: 6px;
    margin-bottom: 0px;
}

.button_1 {
    /*width: 145px;*/
    background: #ef7b00;
    padding: 8px;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
    text-align: center;
    border-radius: 4px 4px 0px 0px;
    color: #fff;
}

.d-flexs {
    display: flex;
    gap: 14px;
}





.info-boxes {
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

    .info-boxes .col-lg-2 {
        padding: 0;
        border-right: 1px solid #ccc;
        margin-top: 0px;
    }

        .info-boxes .col-lg-2:last-child {
            border-right: none;
        }

    .info-boxes .col-lg-2 {
        width: 14%;
    }

@media( max-width: 767px ) {
    .info-boxes .col-lg-2 {
        width: 100%;
    }
}

.info-boxes .info-value {
    margin: 0;
    padding: 10px;
    background-color: #f0f0f000;
}

.info-boxes .info-title {
    font-weight: bold;
    margin: 0;
    padding: 10px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ccc;
}


.informbox {
    width: 100%;
    /*background: linear-gradient(135deg, #ffa000 0%, #982c04 100%);*/
    padding: 15px 20px;
    border-radius: 10px;
    /*color: #fff !important;*/
    margin-bottom: 20px;
    border: none;
}

.informbox-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.informbox .text {
    font-size: 18px;
    display: flex;
    flex-direction: column;
}

.informbox .txt1 {
    margin-left: 0px;
    color: blueviolet;
}

.informbox .icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
}

    .informbox .icon i {
        font-size: 22px;
        color: #fff;
    }


.bg-gradient-1 {
    background: linear-gradient(135deg, #c2dfff, #6693dd);
}

.bg-gradient-2 {
    background: linear-gradient(135deg, #d0f0c0, #57c29a);
}

.bg-gradient-3 {
    background: linear-gradient(135deg, #ffe0b2, #e78f0e);
}

.bg-gradient-4 {
    background: linear-gradient(135deg, #e1d5e7, #9378c4);
}

.bg-gradient-5 {
    background: linear-gradient(135deg, #b2dfdb, #54c2b8);
}

.bg-gradient-6 {
    background: linear-gradient(135deg, #e0eafc, #8bacdc);
}

.bg-gradient-7 {
    background: linear-gradient(135deg, #f3eac2, #cfcd8b);
}

.bg-gradient-8 {
    background: linear-gradient(135deg, #ffd4d4, #d88282);
}

.bg-gradient-9 {
    background: linear-gradient(135deg, #fff2cc, #c2a52d);
}


.new-info .col-md-3 {
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 6px;
    padding-right: 6px;
    box-sizing: border-box;
}

.done {
    background: #008000;
    color: white;
    font-size: 12px;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.show-btn {
    margin: 0;
    padding: 6px 8px;
    height: 32px;
    margin-top: 27px;
    display: inline-block;
    width: 85px;
    font-size: 12px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

    .show-btn i {
        font-size: 18px;
        margin-right: 5px;
    }
     