@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap');
@font-face {
    font-family: "Apple Chancery";
    src: url("/fonts/AppleChancery.ttf") format("ttf"),
    url("/fonts/AppleChancery.ttf") format("ttf");
}
@font-face {
    font-family: "Qasira";
    src: url("/fonts/Qasira.ttf");
    url("/fonts/Qasira.ttf") format("ttf");
}
#admin_panel{
    position: fixed;
    height: 50px;
    background-color: #eeeeee;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin-bottom: 0px;
    z-index: 99999;
}

#admin_panel .admin-panel-element{
    float: left;
    border-right: 1px solid #ccc;
    padding-right: 10px;
    font-family: "Open Sans", sans-serif;
}

.toggle-switch, .toggle-switch .toggle-knob {
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.toggle-switch {
    height: 30px;
    width: 55px;
    display: inline-block;
    background-color: #ffffff;
    margin: 2px;
    margin-bottom: 5px;
    margin-top: 10px;
    margin-left: 20px;
    border-radius: 30px;
    cursor: pointer;
    border: solid 1px #d2d6de;
    box-shadow: inset 1px 1px 9px -3px rgba(4, 4, 4, 0.08), 1px 2px 6px -2px rgba(0, 0, 0, 0.01);
}

.toggle-switch .toggle-knob {
    width: 28px;
    height: 26px;
    display: inline-block;
    background-color: #ffffff;
    border: solid 1px rgba(126, 126, 126, 0.07);
    box-shadow: 0 1px 3px rgba(107, 106, 106, 0.26), 0 5px 1px rgba(107, 106, 106, 0.13);
    border-radius: 26px;
    margin: 1px 1px;
}

.toggle-switch.active {
    background-color: #77e189;
    border: solid 1px transparent;
}

.toggle-switch.active .toggle-knob {
    margin-left: 24px;
}



#sidebar {
    position: fixed;
    min-width: 250px;
    max-width: 250px;
    min-height: 100vh;
    background: #ce2440;
    color: #fff;
    transition: all 0.3s;
    z-index: 9999999;
    margin-left: -250px;
}

#sidebar.active {
    margin-left: 0px;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #CD1935;
}

#sidebar .sidebar-header h3{
    color: white;
    font-weight: 600;
    font-family: "Qasira", sans-serif;
    font-weight: 600;
    font-style: normal;
}

#sidebar .sidebar-header h1{
    color: white;
    font-size: 30px;
    font-weight: 600;
    font-family: "Qasira", sans-serif;
    font-weight: 600;
    font-style: normal;
}

#sidebar ul{
    margin: 20px;
    border-image: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0.2) 100%) 1;
    border-radius: 0px; /* this doesn't work */
    border-width: 2px;
    border-style: solid;
}
#sidebar ul.components {
    padding: 15px;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
    border: 0px;
}
#sidebar ul li h2 {
    font-weight: 600;
    font-family: "Qasira", sans-serif;
    font-weight: 600;
    padding: 10px;
    font-size: 1.1em;
    text-transform: uppercase;
    display: block;
    color: white;
}
#sidebar ul li a {
    font-weight: 600;
    font-family: "Averia Sans Libre", sans-serif;
    padding: 10px;
    font-size: 1.1em;
    text-transform: uppercase;
    display: block;
    color: white;
}
#sidebar ul li a:hover {

}

#sidebar ul li.active > a, a[aria-expanded="true"] {

}

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
}

#sidebar .sidebar-close{
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
}



.modal-fullscreen{
    max-width:90%;
}
.section-header{
    position: relative;
    overflow: hidden;

}

.section-header .back{
    position: relative;
    width: 100%;
}

.section-header .ornament{
    position: absolute;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    top: -60%;
    animation-name: rotation-with-zoom;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes rotation-with-zoom {
    0% {

        transform:rotate(0deg) scale(1, 1);
    }
    100% {

        transform:rotate(180deg) scale(1.2, 1.2);
    }
}

@keyframes rotation {
    0% {

        transform:rotate(0deg) scale(1, 1);
    }
    10% {

        transform:rotate(36deg) scale(1.1, 1.1);
    }
    20% {

        transform:rotate(72deg) scale(1, 1);
    }
    30% {

        transform:rotate(108deg) scale(1.1, 1.1);
    }
    40% {

        transform:rotate(144deg) scale(1, 1);
    }
    50% {
        transform:rotate(180deg) scale(1.1, 1.1);
    }
    60% {
        transform:rotate(216deg) scale(1, 1);
    }
    70% {
        transform:rotate(242deg) scale(1.1, 1.1);
    }
    80% {
        transform:rotate(278deg) scale(1, 1);
    }
    90% {
        transform:rotate(324deg) scale(1.1, 1.1);
    }
    100% {

        transform:rotate(360deg) scale(1, 1);
    }
}

@keyframes only-zoom {
    0% {

        transform: scale(1, 1);
    }
    10% {

        transform: scale(1.1, 1.1);
    }
    20% {

        transform: scale(1, 1);
    }
    30% {

        transform: scale(1.1, 1.1);
    }
    40% {

        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    60% {
        transform: scale(1, 1);
    }
    70% {
        transform: scale(1.1, 1.1);
    }
    80% {
        transform: scale(1, 1);
    }
    90% {
        transform: scale(1.1, 1.1);
    }
    100% {

        transform: scale(1, 1);
    }
}

@keyframes rotation-no-zoom {
    0% {

        transform:rotate(0deg) ;
    }

    100% {

        transform:rotate(360deg);
    }
}


.section-header .temple{
    position: absolute;
    bottom: -8%;
    left: 0px;
    width: 100%;

}

.section-header .logo{
    position: absolute;
    width: 14%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    top: 8%;
}

.section-header .name{
    position: absolute;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    top: 38%;
    animation-name: only-zoom;
    animation-duration: 80s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.heading-section h2{
    font-family: "Qasira", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    color: #CD1935;
    margin-left: -15px;
}

.heading-section .content-block{

}

.heading-section .content-block h3{
    font-family: "Qasira", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #CD1935;
    font-size: 22px;
    margin-bottom: 0px;
}

.heading-section .content-block p{
    font-family: "Averia Sans Libre", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: black;
    font-size: 18px;
    line-height: 24px;
}

.first-section .ornament{
    position: absolute;
    width: 200%;
    right: -60%;
    text-align: center;
    top: -30%;
}

.first-section .ganesha{
    position: absolute;
    width: 100%;
    right: -10%;
    text-align: center;
    top: 5%;
    animation-name: only-zoom;
    animation-duration: 80s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.first-section .text{
    position: absolute;
    width: 120%;
    right: -19%;
    text-align: center;
    top: -5%;
    animation-name: rotation-no-zoom;
    animation-duration: 80s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.first-section h4{
    font-family: "Qasira", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: black;
    font-size: 20px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.ftco-section .box{

    background: #FFFFFF;
    height: auto;
    padding: 12px;
    border: 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.ftco-section .box .box-inner{
    height: 100%;
    border-image: linear-gradient(to right, #E3BB7C 0%, rgba(140, 109, 61, 0.2) 100%) 1;
    border-radius: 0px; /* this doesn't work */
    border-width: 2px;
    border-style: solid;

}

.ftco-section .box .box-inner .left-block{
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 50px;

}

.ftco-section .box .box-inner div{
    font-family: "Averia Sans Libre", sans-serif;
    height: 100%;
    color: black;
    font-weight: bold;
}

.ftco-section .box .box-inner h5{
   width: 100%;
    margin-top: 0px;
    font-family: "Qasira", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #CD1935;
    font-size: 26px;
    text-align: center;
}

.ftco-section .box .box-inner h6{
    font-family: "Qasira", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal;
    font-size: 20px;
    color: #CD1935;
    margin-left: 0px;
}


.ftco-section .box .box-inner .line{
    width: 1px;
    height: 50%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 30%;
    background: linear-gradient(to right, #E3BB7C 0%, rgba(140, 109, 61, 0.2) 100%);
    position: absolute;
}

.btn-temple{
    background: white;
    color: #CD1935;
    font-family: "Qasira", sans-serif;
    font-weight: 400;
    padding: 5px 25px;
    border: 2px solid #CD1935;
    border-radius: 0px;

}
.inline-item{
    height: auto !important;
    margin-bottom: 20px;
}
.inline-item .left{
    text-transform: uppercase;
}
.inline-item .right{
    float: right;
    color: #CD1935;
}

.card-bottom{
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.card-bottom button{
    margin-bottom: 30px;
}

.day-schedule{
    background: linear-gradient(
            to bottom,
            white 0%,
            white 20%,
            #F6F6F6 20%,
            #F6F6F6 100%
    ) !important;
    height: 524px !important;
}

.horizontal-bg{
    background: linear-gradient(
            to right,
            white 0%,
            white 41.6667%,
            #F6F6F6 41.6667%,
            #F6F6F6 100%
    ) !important;
}

.ornament-bg{

    background: url("/temple/subtract.svg") no-repeat;
}

.bottom-content {
    color: black;
    font-size: 18px;
    line-height: 24px;
    font-family: "Averia Sans Libre", sans-serif;
}
.ftco-footer .address p{
    color: #E3BB7C;
    font-family: "Averia Sans Libre", sans-serif;
    font-size: 18px;
    line-height: 24px;
}

.ftco-heading-2{
    margin-top: 0px;
    font-family: "Qasira", sans-serif;
    font-weight: 400;
    color: #E3BB7C !important;
}

.ftco-footer .text{

    margin-bottom: 0px;
}

.ftco-footer .text p{
    font-size: 18px;
    font-family: "Averia Sans Libre", sans-serif;
    color: white;
}

.footer-bottom img{

}

.footer-bottom p{
    color: black;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    font-family: "Averia Sans Libre", sans-serif;
    margin-bottom: 0px;
}

.placeholder-img{
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 50%;
    height: auto;
}


.events-container{
    height: auto !important;
}

.event-name{
    height: auto !important;
}

.calendar{
    width: 100%;
}

.year-header{
    display: flex
;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.days-table, .dates-table, .months-table {
    border-collapse: separate;
    text-align: center; }

.day {
    height: 26px;
    width: 26px;
    padding: 0 10px;
    line-height: 26px;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 10px;
    color: #000; }

.month {
    cursor: default;
    height: 26px;
    width: 26px;
    padding: 0 2px;
    padding-top: 10px;
    line-height: 26px;
    text-transform: uppercase;
    font-size: 11px;
    color: #cccccc;
    -webkit-transition: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms; }
@media (max-width: 991.98px) {
    .month {
        font-size: 8px; } }
@media (max-width: 767.98px) {
    .month {
        font-size: 10.5px; } }

.active-month {
    font-weight: 700;
    color: #000; }

.month:hover {
    color: #fa3050; }

/*  Dates table */
.table-date {
    cursor: default;
    color: #2b2b2b;
    height: 26px;
    width: 26px;
    font-size: 15px;
    padding: 10px;
    line-height: 26px;
    text-align: center;
    border: 2px solid transparent;
    -webkit-transition: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
    position: relative; }

.table-date:not(.nil):hover {
    border-color: #CD1935; }

.event-date {
    border-color: #CD1935;
    background: transparent;
    color: black; }
.event-date:after {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    background: #28a745; }

.active-date {
    background: transparent;
    border-color: #E3BB7C ;
     }

.event-date.active-date {
    background: #CD1935; color: white;   border-color: #CD1935}



.burger {
    cursor: pointer;
    display: block;
    position: relative;
    border: none;
    background: transparent;
    width: 20px;
    height: 15px;
    margin: 0px auto;
    outline: none;
}

.burger:focus{
    outline: none;
}

.burger::before,
.burger::after {
    content: '';
    left: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 12px;
    background: white;
}
.burger::before {
    top: 0;
    box-shadow: 0 6px 0 white;
    transition: box-shadow .1s .15s, top .1s .15s, transform .1s;
}
.burger::after {
    bottom: 0;
    transition: bottom .1s .15s, transform .1s;
}
.burger.active::before {
    top: -4px;
    box-shadow: 0 10px 0 white;
    transition: box-shadow .15s, top .1s, transform .1s .15s;
}
.burger.active::after {
    bottom: -4px;

    transition: bottom .1s, transform .1s .15s;
}
.mobile-language{
    height:100%;
    width: 100%;
    position: absolute;
    background: rgb(227, 187, 124);
    bottom: 100%;
    z-index: 99999999;
    transition: 0.5s;
    padding: 25px;
}

.mobile-menu-list{
    height:100%;
    width: 100%;
    position: absolute;
    background: #CD1935;
    z-index: 9999999;
    padding: 25px;
}

.mobile-nav{
    display: none;
    position: fixed;
    top: 30px;
    left: 30px;
    height: 360px;
    width: 200px;
    overflow: hidden;
    z-index: 9999999;
    border-radius: 12px;

}

.language-selector{
    margin-bottom: 30px;
}

.language-selector span{
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Averia Sans Libre", sans-serif;
}

.mobile-nav.active{
    display: block;
}

.mobile-nav ul li{
    margin-bottom: 15px;
}

.mobile-nav ul li a{
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Averia Sans Libre", sans-serif;
}

.mobile-nav ul li a{
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Averia Sans Libre", sans-serif;
}

.menu-mobile{

    z-index: 999999;
    display: flex
;
    flex-wrap: nowrap;
    align-content: center;
    position: fixed;
    top: 30px;
    left: 30px;
    /* width: 55px; */
    padding: 15px;
    height: 44px;
    background: #CD1935;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.menu-mobile:hover{
    background: rgb(227, 187, 124);
}

.menu-mobile span{
    pointer-events: none;
    font-size: 18px;
    font-family: "Averia Sans Libre", sans-serif;
    color: white;
    margin-left: 5px;
}

.price{
    font-family: Qasira, sans-serif;
    color: #CD1935;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
}

.e-seva{
    height: 350px !important;
}

.e-seva .left-block{
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    height: 300px;
    min-height: 100%;
}


@media (max-width: 768px) {
    .mobile-nav{
        display: none;
        position: fixed;
        top: 15px;
        left: 15px;
        height: 360px;
        width: 200px;
        overflow: hidden;
        z-index: 9999999;
        border-radius: 12px;


    }

    .menu-mobile{

        z-index: 999999;
        display: flex
    ;
        flex-wrap: nowrap;
        align-content: center;
        position: fixed;
        top: 15px;
        left: 15px;
        width: 55px;
        padding: 0px;
        height: 44px;
        background: #CD1935;
        border-radius: 12px;
        align-items: center;
        justify-content: center;
    }


    .section-header .back {
        position: relative;
        width: auto;
        height: 400px;
    }

    .section-header-mobile{
        height: 400px;
    }

    .section-header .temple {
        position: absolute;
        bottom: -1%;
        left: 0px;
        width: 100%;
    }

    .section-header .name {
        position: absolute;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        text-align: center;
        top: 50%;
        animation-name: only-zoom;
        animation-duration: 80s;
        animation-iteration-count: infinite;
        animation-timing-function:
                linear;
    }

    .section-header .logo {
        position: absolute;
        width: 30%;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        text-align: center;
        top: 18%;
    }

    .section-header .ornament {
        position: absolute;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        text-align: center;
        top: -16%;
        animation-name: rotation-with-zoom;
        animation-duration: 3s;
        animation-timing-function:
                ease-in-out;
        animation-fill-mode: forwards;
    }

    .heading-section h2 {
        font-family: "Qasira", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 40px;
        color: #CD1935;
        margin-left: 0px;
    }

    .ftco-footer {
        font-size: 18px;
        padding: 2em 0;
        background: #CD1935 url(/temple/subtract2.svg) no-repeat right top;
        background-size: cover;
    }

    .ftco-footer .ftco-footer-widget h2 {
        font-weight: normal;
        color: #fff;
        margin-bottom: 0px;
        font-size: 18px;
        font-weight: 400;
    }


    .inline-item {
        height: auto !important;
        margin-bottom: 20px;
        display: flex
    ;
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }
    .calendar {
        width: auto;
    }
    .day-schedule {
        background: linear-gradient(to bottom, white 0%, white 30%, #F6F6F6 20%, #F6F6F6 100%) !important;
        height: auto !important;
    }

    .lSSlideOuter .lSPager.lSGallery li {
        overflow: hidden;
        max-height: 100px;
    }

    .imageSlider {
        height: 200px !important;
    }


}