/* =========================
   Footer Section
========================= */
#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #071d7e;
    color: #fff;
    text-align: center;
    line-height: 45px;
    font-size: 18px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgb(0 0 0 / .2);
    transition: all .3s ease;
    z-index: 1000
}
#backToTop:hover {
    background-color: #071d7e;
    color: #fff
}
.my-events-footer {
    width: 100%;
    background: #fff;
    color: #111;
    padding: 30px 0 8px;
    font-family: Arial, Helvetica, sans-serif;
}
.my-events-footer-top {
    min-height: 65px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.my-events-footer-logo {
    display: inline-block;
    text-decoration: none;
}
.my-events-footer-logo img {
    width: 120px;
    height: auto;
    display: block;
}
.my-events-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
}
.my-events-footer-social>span {
    margin-right: 2px;
    font-size: 14px;
    font-weight: 600;
    color: #454545;
}
.my-events-footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c9c9c9;
    border-radius: 50%;
    color: #454545;
    text-decoration: none;
    font-size: 20px;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}
.my-events-footer-social a:hover {
    color: #0056a6;
    border-color: #0056a6;
    transform: translateY(-2px);
}
.my-events-footer-feedback {
    border-bottom: 1px solid #cfcfcf;
    text-align: center;
    padding: 5px 0 10px;
}
.my-events-footer-feedback p {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    color: #111;
}
.my-events-footer-feedback a {
    color: #555;
    text-decoration: underline;
    margin-left: 3px;
}
.my-events-footer-copyright {
    padding-top: 8px;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    color: #111;
}
@media (max-width: 767px) {
    .my-events-footer {
        padding: 25px 15px 10px;
    }
    .my-events-footer-top {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .my-events-footer-logo img {
        width: 100px;
    }
    .my-events-footer-social {
        padding-top: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .my-events-footer-social>span {
        width: 100%;
        margin: 0 0 5px;
        text-align: center;
        font-size: 14px;
    }
    .my-events-footer-feedback {
        margin-top: 20px;
        padding: 12px 0;
    }
    .my-events-footer-feedback p {
        font-size: 12px;
        line-height: 1.5;
    }
    .my-events-footer-feedback a {
        display: block;
        margin: 3px 0 0;
    }
    .my-events-footer-copyright {
        padding-top: 8px;
        font-size: 11px;
    }
}




/* //OTP */

#partitionOuter {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

#partitionOuter .incorrectOTP {
    width: 150px;
    text-align: center
}

#partitionInner {
    left: 0;
    position: sticky;
    display: flex
}

#partitionInner input[type=text] {
    height: 30px;
    width: 30px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-right: 10px
}

#partitionInner input[type=text]::-webkit-inner-spin-button,
#partitionInner input[type=text]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}


