﻿.errorClass {
    color: red;
}
.successClass {
    color: #155724;
}


/* Style the select element */
#selectMall {
    font-weight: 500;
    -moz-appearance: none;
    cursor: pointer;
    text-align: left;
    text-align-last: center;
    padding-left:10px;
}


    /* Style the dropdown arrow */
    #selectMall::after {
        content: '▼'; /* Unicode arrow character */
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        pointer-events: none;
        color: #007bff; /* Blue arrow */
        
    }

    /* For a cleaner look, you can also target individual options */
    #selectMall option {
        padding: 10px;
        background-color: #fff; /* White background for options */
        color: #343a40; /* Darker text color */
        font-weight: 600;
    }

    #selectMall option:checked {
        background-color: #007bff; /* Blue background for selected option */
        color: #fff; /* White text for better contrast */
    }

.bi-twitter {
    content: "";
    display: inline-block !important;
    width: 25px !important;
    height: 25px !important;
    background-image: url(https://phoenixcitadel.s3.ap-south-1.amazonaws.com/images/social/Twitter-Iconi-Svg.svg) !important;
    cursor: pointer;
    background-size: contain;
}

    .bi-twitter::before {
        content: none !important; /* This removes the Bootstrap icon */
    }

.swiper-pagination {
    position: absolute;
    bottom: 10px;
    right: 50%;
    width: 100% !important;
    margin: 0;
}

.swiper-pagination-bullet {
    padding: 3px 3px;
    border-radius: 0;
    width: auto;
    height: 3px;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0,0,0,0.2);
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: #007aff;
}
 
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio for landscape */
    height: 0;
    width: 100%;
    max-width: 100%; /* Ensures it scales with the container */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}