﻿pooja-btn-left {
    padding-right: 0 !important;
}

pooja-btn-right {
    padding-left: 0 !important;
}

.modal {
    display: none;
    position: fixed; 
    padding-top: 150px; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.modal-header {
    padding: 15px 20px;
    background-color: #F5F5F5;
    color: white;
}

.modal-body {
    padding: 15px;
}

.modal-footer {
    padding: 2px 20px;
    background-color: #F5F5F5;
    color: white;
}

.custom-date-input {
    border: solid 1px #0000005e !important;
}

.custom-input-border {
    border: solid 1px #0000005e !important;
}

.custom-checkbox-conteiner {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

.custom-checkbox-conteiner:hover input ~ .checkmark {
    background-color: #ccc;
}

.custom-checkbox-conteiner input:checked ~ .checkmark {
    background-color: #e18360;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox-conteiner input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox-conteiner .checkmark:after {
    left: 7px;
    top: 1px;
    width: 11px;
    height: 18px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.custom-note-container{
    display: flex;
    flex-direction: column;
}

    .custom-note-container textarea {
        background: transparent;
        border: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        padding: 10px 15px;
        border-radius: 5px;
    }


@media only screen and (max-width: 767px){
    .modal-content {
       width: 90%;
    }
}

.status-tag {
    padding: 5px 20px;
    color: #fff;
    border-radius: 10px 0;
}

    .status-tag.active {
        background-color: var(--bs-success);
    }

    .status-tag.processing {
        background-color: var(--bs-blue);
    }

    .status-tag.pending {
        background-color: var(--bs-warning);
    }

    .status-tag.complete {
        background-color: var(--bs-teal);
    }

@media only screen and (max-width: 767px) {
    .header-top {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .hero-wrap {
        margin-top: 55px;
    }

    .content-wrapper {
        margin-top: 55px;
    }

    .header-wrap.sticky {
        top: 0 !important;
    }
}

.field-validation-error {
    color: red;
}

.cart-icon {
    width: 40px;
}

.mobile-cart {
    margin-top: -9px;
    display: none;
}

@media only screen and (max-width: 991px) {
    .mobile-cart {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .add-devotee-btn{
        padding-right: 5px;
        padding-top: 10px;
    }
}

.dropdownarrow {
    position: absolute;
    right: 10px;
    top: 40px;
}