a.disabled {
    pointer-events: none !important;
}

.cshadow {
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; */
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.letter-spacing {
    letter-spacing: 0.1em;
}

.text-color {
    color: #7e4e00;
}

.btn-color {
    background: #7e4e00;
    border: #7e4e00;
    color: #fff;
}

.sms-text {
    display: none !important;
    background-color: aqua;
    font-weight: bold !important;
    letter-spacing: 0.2em !important;
    color: black;
    padding: 5px;
    border-radius: 10px;
    border: 0;
    width: 100px !important;
}

.btn-hover1:hover .sms-text {
    display: block;
}

.tooltip1 {
    position: relative;
    display: inline-block;
}

.tooltip1 .tooltiptext1 {
    visibility: hidden;
    width: 100%;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 10px 10px 10px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 20em;
}

.tooltip1 .tooltiptext2 {
    visibility: hidden;
    width: 100%;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 10px 10px 10px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 20em;
}

.tooltip1 .tooltiptext3 {
    visibility: hidden;
    width: 100%;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 10px 10px 10px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 99999;
    bottom: 0;
    left: 20em;
}

.tooltip1:hover .tooltiptext1 {
    visibility: visible;
}

.tooltip1:hover .tooltiptext2 {
    visibility: visible;
}

.tooltip1:hover .tooltiptext3 {
    visibility: visible;
}

a {
    text-decoration: none;
}

button:hover {
    background-color: aquamarine !important;
    color: #000 !important;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.highlight {
    background-color: rgb(0, 0, 0);
    color: #fff;
    border-radius: 20px;
    padding: 5px;
    animation: zoom-in-zoom-out 2s ease-out infinite;
}

.highlight:hover {
    animation: none;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.5, 1.5);
    }

    100% {
        transform: scale(1, 1);
    }
}

.popup {
    display: none;
    position: fixed;
    left: 60%;
    top: 40%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    color: #000000;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.1em;
    border: none !important;
    border-radius: 20px;
    width: 30%;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

/* Close button style */
.close {
    color: #696969;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .popup {
        width: 80%;
        padding: 10px;
        left: 50%;
    }
}

@media (max-width: 480px) {
    .popup {
        width: 90%;
        left: 50%;
    }
}

.bg-card {
    background-image: url('../img/kedar.jpg') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}