/* Custom CSS */

.hide_column {
    display: none;
}

/* ===== Gold Rate Marquee ===== */

.marquee {
    width: 100%;
    overflow: hidden;
    background-color: #ffc2c2;
    white-space: nowrap;
}

.marquee-content {
    padding-left: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    animation: marquee 45s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(100%); }
    to   { transform: translateX(-100%); }
}

.marquee img {
    vertical-align: middle;
    margin-right: 15px;
}

.marquee span {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: red;
    padding-right: 50px;
}

.marquee label {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: #000;
}

/* ===== Layout ===== */

.CustomerProfileDiv {
    position: absolute;
    bottom: 10px;
    width: 100%;
    font-size: 18px;
}

.DefaultCard {
    background-image: url(../images/DefaultCard_logo.png);
    background-position: right;
    background-repeat: no-repeat;
    width: 100%;
}

.pg_innerpanel-bg {
    border: 1px solid #d9d7d7 !important;
    background-color: #fcfcfc !important;
    cursor: pointer;
    padding: 10px 25px;
    margin: 0 5px 5px 0;
    background-position: 35px center;
    background-repeat: no-repeat;
    background-size: auto;
}

/* ===== Mobile ===== */

@media (max-width: 767px) {

    .marquee {
        margin-top: 56px;
    }

    .sidebar-left .sidebar-header {
        height: 60px;
        position: relative;
    }
}

@media (max-width: 600px) {

    .col-xs-1 {width: 8.33%;}
    .col-xs-2 {width: 16.66%;}
    .col-xs-3 {width: 25%;}
    .col-xs-4 {width: 33.33%;}
    .col-xs-5 {width: 41.66%;}
    .col-xs-6 {width: 50%;}
    .col-xs-7 {width: 58.33%;}
    .col-xs-8 {width: 66.66%;}
    .col-xs-9 {width: 75%;}
    .col-xs-10 {width: 83.33%;}
    .col-xs-11 {width: 91.66%;}
    .col-xs-12 {width: 100%;}

    .tab-content {
        background: #fff;
        border: 1px solid #eee;
        border-top: 0;
        padding: 15px;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 1px 5px rgba(0,0,0,.04);
    }
}

/* ===== Custom Alert ===== */

.customalert {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(2px);
}

.customalert-content {
    background: #ffffff;
    padding: 32px 38px;
    border-radius: 14px;
    min-width: 360px;
    max-width: 520px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
    animation: portoPop .35s ease;
    position: relative;
}

@keyframes portoPop {
    from {
        transform: translateY(20px) scale(.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.customalert-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 22px;
    line-height: 1.6;
}

.close-btn {
    position: absolute;
    right: 16px;
    top: 12px;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    transition: .2s;
}

.close-btn:hover {
    color: #000;
}

.customalertbutton {
    padding: 10px 28px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg,#ff4b5c,#dc3545);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
    box-shadow: 0 6px 18px rgba(220,53,69,.35);
}

.customalertbutton:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(220,53,69,.45);
}

