@charset "UTF-8";
/*
Template Name: Payment Point ppuat
Template URI: https://ppuat.paymentpoint.in/themes/frontend/css/main.css
Description: Payment Point HTML5 Template based on bootstrap 4.
Version: 1.0
Author: Payment Point
Author URI: https://ppuat.paymentpoint.in/

======================
	Table of Content
======================
01. ANIMATION
02. GLOBAL
	* Unordered List
	* Anchor
	* Heading
	* General Rules
	* Manual Font
	* Svg Icons
03. UTILITIES
	* Text decoration
	* Text Colors
	* Margin
	* Padding
	* Width
	* Flexbox
	* Background
	* Background Image
	* Extras
	* Hr
	* Border Radius
	* Hidden
	* Cookie Bar
	* Go To Top Button
	* Times(cross sign)
	* OTP Page
	* Validation Error
	* Preloader
	* New Preloader
	* Popover
    * Whatsapp Icon
04. BUTTON
	* General
	* Size
	* Color
05. LISTS
	* Btn Listbill
	* No Btn Listbill
	* Payment Mode Details
06. FORMS COMPONENT
	* Form Control
	* Input Group
	* Custom Checkbox
	* Custom Radio Button
	* Custom Dropdown
07. CARD
08. SIGNUP LOGIN OVERLAY
09. NAVIGATION
10. HEADER
	* Before Login
	* After Login
11.NAVS
12. WELCOME PAGE
	* Hero Part
	* Make Payment Button
	* Make India Cashless
	* Our Partners
13. PROFILE PAGE
	* Profile Section
	* Profile Accordion
		* Card
		* Card Header
		* Card Body
		* Form Component
	* Modal
		* Modal Content
		* Modal Header
		* Modal Body
			* Card
			* OTP
		* Modal Footer
14. FOOTER
15. COPYRIGHT FOOTER
16. WRAP SECTION
	* Profile
	* Menu
17. MODAL
	* Refer and Earn
	* Apply Now
18. PAST PAYMENT PAGE
	* Text
	* Button
	* Background
	* Sub Header
	* Main Content
	* Nav Pills
	* Form Component
	* List Page
19. SELECT2 STYLE OVERRIDE
20. NEW HOMEPAGE
21. BILL DETAILS PAGE
22. NEW PARTNERS HOMEPAGE
23. RESPONSIVE DESIGN
	* Min 0 to Max 399
		* Viewport
	* Max 319
		* Overlay Logo
	* Max 339
		* Past Payment Page
		* Copyright Footer
    * Button
    * Modal
	* Max 349
		* List
		* Modal OTP(Profile Page)
	* Min 350
		* List
		* Header
	* Max 449
		* Welcome Page(Make Payment Button)
		* Overlay Logo
		* Card body(Profile Page)
	* Min 576
		* New Homepage
	* Max 600
		* Margin
		* Background Image
		* Hidden
		* Tabs
		* Column
		* Payment Section
		* OTP Page
		* Button
		* Popover
		* List
		* Input Group
		* Navs
		* Wrap Section(Profile)
	* Max 767
		* Goto Top Button
		* Footer
		* Welcome Page(Hero Part, Make Payment Button, Make India Cashless)
		* Profile Section(Profile Page)
		* Profile Accordion(Profile Page)
		* Card Header(Profile Page)
		* Card Body(Profile Page)
	* Min 768
		* New Homepage
		* Copyright Footer
		* Card Body(Profile Page)
	* Min 850
		* Welcome Page(Make India Cashless, Our Partners)
	* Max 899
		* Footer
	* Min 900
		* Html
		* Button
	* Max 1200
		* Html

========================
	MEASUREMENT
	1em = 16px
	1rem = 10px
========================
*/





/*===================
    01. ANIMATION
====================*/

/***** FADE IN LEFT *****/
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-10rem);
    }

    80% {
        transform: translateX(1rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-10rem);
    }

    80% {
        transform: translateX(1rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/***** FADE IN RIGHT *****/
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(10rem);
    }

    80% {
        transform: translateX(-1rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(10rem);
    }

    80% {
        transform: translateX(-1rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/***** FADE IN UP *****/
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(9rem);
    }

    80% {
        transform: translateY(-1rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(9rem);
    }

    80% {
        transform: translateY(-1rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/***** FADE IN DOWN *****/
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-9rem);
    }

    80% {
        transform: translateY(1rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-9rem);
    }

    80% {
        transform: translateY(1rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}





/*===================
    02. GLOBAL
===================*/
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
    /* =10px (1rem = 16px; 10px/16px = 62.5%) */
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: #6d6d6d;
    box-sizing: border-box;
    position: relative;
}

/***** UNORDERED LIST *****/
ul {
    list-style: none;
}

/***** ANCHOR *****/
a,
a:hover,
a:visited,
a:active,
a:focus {
    text-decoration: none;
}

a {
    transition: .25s all ease;
    color: inherit;
}

a:hover {
    color: #e91e63;
}

.bg-primary a:hover {
    color: #000000;
}

::-moz-selection {
    background-color: #e91e63;
    color: #fff;
}

::selection {
    background-color: #e91e63;
    color: #fff;
}


/***** HEADING *****/
h1 {
    font-size: 6rem;
}

h2 {
    font-size: 5rem;
}

h3 {
    font-size: 4rem;
}

h4 {
    font-size: 3rem;
}

h5 {
    font-size: 2rem;
}

h6 {
    font-size: 1rem;
}

.h-break span {
    display: block;
    line-height: initial;
}

/***** GENERAL RULES ******/
p {
    font-size: inherit;
}

p:not(:last-child) {
    margin-bottom: 0.5rem;
}

/***** MANUAL FONT *****/
.font-xs {
    font-size: 1.4rem;
    line-height: 2.5rem;
}

.font-sm {
    font-size: 1.1rem !important;
    line-height: 2.1rem;
}

.font-md {
    font-size: 1.7rem;
    line-height: 3rem;
}

.font-lg {
    font-size: 2rem;
    line-height: 3.7rem;
}

.normal {
    font-weight: normal;
}

.semibold {
    font-weight: 500;
}

.bold {
    font-weight: 600;
}

.bolder {
    font-weight: 700;
}

textarea:focus,
input:focus {
    outline: none;
}

/***** SVG ICONS *****/
svg {
    fill: currentColor;
}


/**********************
    03. UTILITIES
**********************/

/***** TEXT DECORATION *****/
.line-through {
    text-decoration: line-through;
}

.text-underline {
    text-decoration: underline;
}

/***** TEXT COLORS *****/
.text-primary {
    color: #e91e63 !important;
}

.text-secondary {
    color: #3f51b5 !important;
}

.text-black {
    color: #000000 !important;
}

.text-success {
    color: #4caf50 !important;
}

.text-purple {
    color: #673ab7 !important;
}

.text-darkpurple {
    color: darkviolet !important;
}

.text-green {
    color: #2CFF4D !important;
}

.text-grey {
    color: rgb(109, 109, 109) !important;
}

/***** MARGIN *****/
.mb-1 {
    margin-bottom: 1rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.mb-3 {
    margin-bottom: 3rem !important;
}

.mb-4 {
    margin-bottom: 4rem !important;
}

.mb-5 {
    margin-bottom: 5rem !important;
}

.mb-6 {
    margin-bottom: 6rem !important;
}

.mb-7 {
    margin-bottom: 7rem !important;
}

.mb-8 {
    margin-bottom: 8rem !important;
}

.mb-9 {
    margin-bottom: 9rem !important;
}

.mb-10 {
    margin-bottom: 10rem !important;
}

/***** PADDING *****/
.p-c1 {
    padding: 1rem !important;
}

.p-c2 {
    padding: 2rem !important;
}

.p-c3 {
    padding: 3rem !important;
}

.p-c4 {
    padding: 4rem !important;
}

.p-c5 {
    padding: 5rem !important;
}

/***** WIDTH *****/
.w-15 {
    width: 15%;
}

.w-16 {
    width: 16%;
}

.w-17 {
    width: 17%;
}

.w-18 {
    width: 18%;
}

.w-19 {
    width: 19%;
}

.w-20 {
    width: 20%;
}


.width-1 {
    width: 1rem;
}

.width-2 {
    width: 2rem;
}

.width-3 {
    width: 3rem;
}

.width-4 {
    width: 4rem;
}

.width-5 {
    width: 5rem;
}

.width-6 {
    width: 6rem;
}

.width-7 {
    width: 7rem;
}

.width-8 {
    width: 8rem;
}

.width-9 {
    width: 9rem;
}

.width-10 {
    width: 10rem;
}

.width-11 {
    width: 11rem;
}

.width-12 {
    width: 12rem;
}

.width-13 {
    width: 13rem;
}

.width-14 {
    width: 14rem;
}

.width-15 {
    width: 15rem;
}

.width-16 {
    width: 16rem;
}

.width-17 {
    width: 17rem;
}

.width-18 {
    width: 18rem;
}

.width-19 {
    width: 19rem;
}

.width-20 {
    width: 20rem;
}

/***** FLEXBOX *****/
.f-15 {
    flex: 15%;
}

.f-16 {
    flex: 16%;
}

.f-17 {
    flex: 17%;
}

.f-18 {
    flex: 18%;
}

.f-19 {
    flex: 19%;
}

.f-20 {
    flex: 20%;
}


/***** BACKGROUND *****/
.bg-primary {
    background: #e91e63 !important;
}

.bg-secondary {
    background: #3f51b5 !important;
}

.bg-black {
    background: #000 !important;
}

.bg-success {
    background: #4caf50 !important;
}

.bg-orange {
    background: #f44336 !important;
}

.bg-fluroscent {
    background: #11d19e !important;
}

.bg-blue {
    background: #2196f3 !important;
}

.bg-purple {
    background: #673ab7 !important;
}

.bg-grey {
    background: #e9ecef !important;
}

.bg-facebook {
    background: #3f5f99 !important;
}

.bg-youtube {
    background: #e91e39 !important;
}

.bg-twitter {
    background: #03a9f5 !important;
}

.bg-zigzag {
    position: relative;
}

.bg-zigzag::before,
.bg-zigzag::after {
    content: '';
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 1.5rem;
    left: 0;
    right: 0;
    background-image: url("../img/misc/zigzag.png");
    background-repeat: repeat-x;
    background-size: contain;
}

.bg-zigzag::before {
    top: -0.6rem;
}

.bg-zigzag::after {
    bottom: -0.6rem;
}

/***** BACKGROUND IMAGE *****/
.bg__img {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

.bg__img.is-1 {
    background-image: url("../img/bg/background-opacity.png");
}

.bg__img.is-2 {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/bg/menu-bg.png");
}

/***** EXTRAS *****/
.centered-parent {
    overflow: hidden auto;
}

.xy-centered {
    padding-top: 15vh;
    padding-bottom: 20vh;
}

.slideToggle {
    display: none;
}

.letter-space-2 {
    letter-spacing: 0.2rem;
}

/***** HR *****/
hr {
    margin-top: 30px;
    border-top: 1px solid #525151;
}


/***** BORDER RADIUS *****/
.rounded {
    border-radius: 0.5rem !important;
}

.rounded-top {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
}

.rounded-bottom {
    border-bottom-left-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
}

.rounded-left {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
}

.rounded-right {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
}


/***** HIDDEN *****/
.hidden {
    display: none !important;
}

.hidden-lg {
    display: none;
}

/***** COOKIE BAR *****/
.cookie-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%
}

/***** GO TO TOP BUTTON *****/
.goToTop {
    position: relative;
    z-index: 150;
    color: #673ab7;
    opacity: 0;
    visibility: hidden;
    font-size: 4rem;
    left: 96%;
}

@-webkit-keyframes gototop {
    100% {
        box-shadow: 0 0 0 10px rgba(103, 58, 183, 0);
        transform: scale(1.1);
    }
}

@keyframes gototop {
    100% {
        box-shadow: 0 0 0 10px rgba(103, 58, 183, 0);
        transform: scale(1.1);
    }
}

@-webkit-keyframes gototophover {
    100% {
        box-shadow: 0 0 0 10px rgba(233, 30, 99, 0);
        transform: scale(1.1);
    }
}

@keyframes gototophover {
    100% {
        box-shadow: 0 0 0 10px rgba(233, 30, 99, 0);
        transform: scale(1.1);
    }
}

.goToTop.show {
    opacity: 1;
    visibility: visible;
}

.goToTop > i {
    position: relative;
    z-index: 10;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(103, 58, 183, 1);
    -webkit-animation: 2s gototop forwards infinite;
    animation: 2s gototop forwards infinite;
    line-height: 85%;
}

.goToTop > i:hover {
    box-shadow: 0 0 0 0 rgba(233, 30, 99, 1);
    -webkit-animation: 2s gototophover forwards infinite;
    animation: 2s gototophover forwards infinite;
}

.goToTop::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    height: 3rem;
    width: 3rem;
    border-radius: 100%;
}


/***** TIMES(cross sign) *****/
.times {
    width: 2rem;
    height: 2rem;
    display: block;
}

.times > span {
    display: block;
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent !important;
    position: relative;
}

.times > span::before,
.times > span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.times > span::before {
    transform: rotate(45deg);
}

.times > span::after {
    transform: rotate(-45deg);
}

.times > span,
.times > span::before,
.times > span::after {
    width: 2rem;
    height: 0.25rem;
    background: #fff;
    transition: 0.25s all ease;
    transform-origin: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.times-dark > span::before,
.times-dark > span::after {
    background: #343a40 !important;
}

.tab-icon > img {
    padding: 0.3rem 1rem;
    height: 3rem;
    transition: 0.25s all ease;
}


/***** OTP PAGE *****/
.otp .form-control {
    display: inline-block;
    padding: 0.8rem;
    height: 4rem;
    width: 4rem;
    text-align: center;
    font-weight: bold;
    color: #212529;
    font-size: 1.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.otp .form-control:not(:last-child) {
    margin-right: 0.5rem;
}


/***** VALIDAION ERROR *****/
div.error,
label.error,
span.error {
    color: #f44336;
    background-color: #fff !important;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    display: block;
    max-width: 70%;
    margin: 10px auto;
}

div.error p {
    font-size: 10px;
    font-weight: inherit;
    margin-bottom: 0;
    padding: 2px;
    background-color: #fff;
    max-width: 70%;
    border-radius: 3px;
    margin-left: 15%;
}

.error:not(:last-child) {
    margin-bottom: 0rem !important;
}

.error-danger {
    color: #d93025;
}

.error-warning {
    color: #ffc107;
}


/**** PRELOADER *****/
.signup__tab {
    display: none;
}

.block-load {
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow: auto;
    color: #fff;
    width: 100%;
    height: 100vh;
    border-radius: 0.5rem;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.25s all ease;
}

.block-load.open {
    opacity: 1;
    visibility: visible;
}

.block-load > .block-load-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/***** NEW PRELOADER *****/
.cube-wrap img {
    position: absolute;
    top: 15%;
    left: 0;
}

.cube-wrap {
    perspective: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -47px;
    margin-top: -47px;
    z-index: 1;
    pointer-events: none;
}

.cube-wrap:before {
    content: "";
    position: absolute;
    top: 100px;
    width: 94px;
    height: 5px;
    background-image: radial-gradient(#fff, #000);
    border-radius: 50%;
    left: 0;
}

.boxcube {
    position: relative;
    width: 94px;
    -webkit-transform-style: preserve-3d;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-transform-origin: 47px 47px 0;
    -webkit-transform-origin: 47px 47px 0;
    -webkit-animation: spin 3s forwards infinite;
}

.boxcube div {
    position: absolute;
    width: 94px;
    height: 94px;
    background: #fff !important;
    overflow: hidden;
}

.boxfront {
    -webkit-transform: translateZ(47px);
    -webkit-backface-visibility: hidden;
}

.boxback {
    -webkit-transform: translateZ(-47px) rotateY(-180deg);
    -webkit-backface-visibility: visible;
}

.boxleft {
    -webkit-transform: rotateY(270deg) translateX(-47px);
    -webkit-transform-origin: center left;
    -webkit-backface-visibility: visible;
}

.boxright {
    -webkit-transform: rotateY(-270deg) translateX(47px);
    -webkit-transform-origin: center right;
    -webkit-backface-visibility: visible;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotateY(0deg);
    }

    25% {
        -webkit-transform: rotateY(90deg);
    }

    50% {
        -webkit-transform: rotateY(180deg);
    }

    75% {
        -webkit-transform: rotateY(270deg);
    }

    100% {
        -webkit-transform: rotateY(360deg);
    }
}


/***** POPOVER *****/
.popover-body {
    font-size: 1.2rem;
}

/*========= WHATSAP BUTTON ========*/
.whatsapp-float {
    position: fixed;
    z-index: 150;
    right: 1rem;
    font-size: 4rem;
    bottom: 2rem;
    opacity: 1;
    visibility: visible;
}

.whatsapp-float > i {
    position: relative;
    z-index: 10;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 1);
    animation: 2s whatsapp-float forwards infinite;
    line-height: 87%;
    background: rgba(37, 211, 102, 1);
    color: #ffffff;
}

@keyframes whatsapp-float{
    100%{
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        transform: scale(1.1);
    }
}

.whatsapp-float > i:hover {
    box-shadow: 0 0 0 0 rgba(233,30,99,1);
    animation: 2s whatsapp-float-hover forwards infinite;
    background: rgba(233, 30, 99, 1);
}

@keyframes whatsapp-float-hover{
    100%{
        box-shadow: 0 0 0 10px rgba(233,30,99,0);
        transform: scale(1.1);
    }
}

/*
.overview__list {
    margin-top: 5rem;
    padding-top: 4rem;
    padding-bottom: 2rem;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 2px solid transparent;
    position: relative;
}

.overview__list.is-purple,
.overview__list.is-purple > li {
    border-color: #673ab7 !important;
}

.overview__list.is-purple .overview__title {
    background: #673ab7;
}

.overview__list.is-secondary,
.overview__list.is-secondary > li {
    border-color: #3f51b5 !important;
}

.overview__list.is-secondary .overview__title {
    background: #3f51b5;
}

.overview__list > li {
    padding: 2rem;
}

.overview__list > li > *:last-child {
    margin-bottom: 0 !important;
}

.overview__list > li:not(:last-child) {
    border-bottom: 2px solid transparent;
}

.overview__title {
    display: inline-block;
    padding: 0.5rem 2rem !important;
    -webkit-border-radius: 5rem;
    border-radius: 5rem;
    color: #fff;
    position: absolute;
    top: -1.5rem;
    left: 1rem;
}
*/





/*************************
    04. BUTTON
*************************/

/***** GENERAL *****/
.btn {
    border: 1px solid #fff;
    font-size: 14px;
    text-transform: uppercase;
    min-width: 11rem;
    padding: .8rem 3rem;
    color: #fff;
    border-radius: 4px;
}

.btn:not(:last-child) {
    margin-right: 3rem;
}

.btn:only-child {
    margin-right: 0rem;
}

.btn-block:not(:last-child) {
    margin-right: 0;
    margin-bottom: 2rem;
}


/***** SIZE *****/
.btn-xs {
    font-size: 1.1rem;
    padding: 0.3rem 1.2rem;
}

.btn-md {
    font-size: 1.1rem;
    padding: 0.3rem 1.2rem;
    min-width: auto;
}

.btn-lg {
    font-size: 1.8rem;
    padding: 1.5rem 3.5rem;
}


/***** COLOR *****/
.btn-primary:hover,
.btn-primary.hover,
.btn-secondary:hover,
.btn-secondary.hover,
.btn-success:hover,
.btn-success.hover,
.btn-dark:hover,
.btn-dark.hover,
.btn-purple:hover,
.btn-purple.hover,
.btn-orange:hover,
.btn-orange.hover,
.btn-default:hover,
.btn-default.hover,
.btn-black:hover,
.btn-black.hover,
.btn-white:hover,
.btn-white.hover {
    background: #fff !important;
    outline: none !important;
    border: 1px solid #fff !important;
    box-shadow: none !important;
}

.btn-primary:focus,
.btn-primary.focus,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-success:focus,
.btn-success.focus,
.btn-dark:focus,
.btn-dark.focus,
.btn-purple:focus,
.btn-purple.focus,
.btn-orange:focus,
.btn-orange.focus,
.btn-default:focus,
.btn-default.focus,
.btn-black:focus,
.btn-black.focus,
.btn-white:focus,
.btn-white.focus {
    outline: none !important;
    border: 1px solid #fff !important;
    box-shadow: none !important;
}

.btn-primary {
    background: #e91e63;
}

.btn-primary:hover {
    color: #e91e63;
}

.btn-secondary {
    background: #3f51b5;
}

.btn-secondary:hover {
    color: #3f51b5;
}

.btn-success {
    background: #4caf50;
}

.btn-success:hover {
    color: #4caf50;
}

.bg-white .btn-success:hover {
    border: 1px solid #4caf50 !important;
    color: #4caf50;
}

.bg-white .btn-primary:hover {
    border: 1px solid #e91e63 !important;
    color: #e91e63;
}

.bg-white .btn-orange:hover {
    border: 1px solid #f44336 !important;
    color: #f44336;
}

.btn-dark {
    background: #495057;
}

.btn-dark:hover {
    color: #495057;
}

.btn-dark.btn-outline {
    background: transparent;
    border-color: #495057;
    color: #495057;
}

.btn-purple {
    background: #673ab7;
}

.btn-purple:hover {
    color: #673ab7;
}

.btn-purple.btn-outline {
    background: transparent;
    border-color: #673ab7;
    color: #673ab7;
}

.btn-orange {
    background: #f44336;
}

.btn-orange:hover {
    color: #f44336;
}

.btn-default {
    background: #dee2e6;
}

.btn-default:hover {
    color: #dee2e6;
}

.btn-black {
    background-color: #000;
}

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

.btn-white {
    background-color: #fff;
    color: #000;
}

.btn-outline-white {
    border-color: #fff;
    color: #fff;
}


.btn-outline-white:hover {
    background: #fff;
    color: #495057;
}



/*=================
    05. LISTS
==================*/
.list-inline > li {
    display: inline-block;
    vertical-align: middle;
}

.list-inline > li:not(:last-child) {
    margin-right: 1rem;
}

.list-flex {
    display: flex;
}

.list-flex > li:not(:last-child) {
    margin-right: 1rem;
}

.list-flex.aic > li {
    align-items: center;
}

.list-flex-full > li {
    flex: 1;
}

.list-sm > li:not(:last-child) {
    margin-bottom: 1rem;
}

.list > li:not(:last-child) {
    margin-bottom: 2rem;
}


.list-lg > li:not(:last-child) {
    margin-bottom: 2rem;
}


/***** BTN LISTBILL *****/
.list-flex.aic > li.no-btn-listbill,
.list-flex.aic > li.btn-listbill {
    margin-top: 0px;
}


/***** NO BTN LISTBILL *****/
.list-flex.aic > li.no-btn-listbill {
    visibility: hidden;
}

.list-cards img {
    max-height: 3rem;
}


/***** PAYEMENT MODE DETAILS *****/
.mode-details,
.mode-btn {
    display: none;
}

.mode.active {
    color: #fff !important;
}

.mode.active .tab-icon > img {
    background: #fff;
    border-radius: 0.3rem;
}

.mode-1.active {
    background: #673ab7 !important;
}

.mode-2.active {
    background: #343a40 !important;
}

.mode-3.active {
    background: #f44336 !important;
}

.mode-4.active {
    background: #4caf50 !important;
}

.mode-5.active {
    background: #2196f3 !important;
}

.mode-6.active {
    background: #3f51b5 !important;
}

.select-mode-details {
    display: none;
}

.payment-mode {
    cursor: pointer;
}

.payment-mode-stat {
    display: none;
}

.payment-mode.active .payment-mode-stat {
    display: block;
}

.nav__payment-modes > li > img {
    max-height: 5rem;
}


.icon-circle {
    display: block;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    border-radius: 100%;
    border: 1px solid transparent;
    text-align: center;
}

.icon-circle-xs {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
}

.icon-circle i {
    font-size: 2rem;
    color: #fff;
}


/*==================
    06. FORMS COMPONENT
===================*/
/***** FORM CONTROL *****/
.form-control {
    font-size: 1.5rem;
    line-height: inherit;
    font-weight: normal;
    border: 1px solid transparent;
    font-family: inherit;
    box-sizing: border-box;
    height: 4rem;
    background: #fff;
    color: #6d6d6d;
    background-clip: unset;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    display: block;
    width: 100%;
}

.bg-white .form-control{
    border-color: #dee2e6 !important;
}

.form-control,
.form-control:disabled,
.form-control::-webkit-input-placeholder {
    -webkit-transition: 0.25s all ease;
    transition: 0.25s all ease;
}

.form-control,
.form-control:disabled,
.form-control:-ms-input-placeholder {
    -ms-transition: 0.25s all ease;
    transition: 0.25s all ease;
}

.form-control,
.form-control:disabled,
.form-control::-ms-input-placeholder {
    -ms-transition: 0.25s all ease;
    transition: 0.25s all ease;
}

.form-control::-webkit-input-placeholder {
    -webkit-transition: 0.25s all ease;
    transition: 0.25s all ease;
}

.form-control::-moz-placeholder {
    -moz-transition: 0.25s all ease;
    transition: 0.25s all ease;
}

.form-control:-ms-input-placeholder {
    -ms-transition: 0.25s all ease;
    transition: 0.25s all ease;
}

.form-control::-ms-input-placeholder {
    -ms-transition: 0.25s all ease;
    transition: 0.25s all ease;
}

.form-control,
.form-control:disabled,
.form-control::placeholder {
    transition: 0.25s all ease;
}

.xy-centered .form-control:disabled,
.xy-centered .form-control::-webkit-input-placeholder {
    border-color: #fff !important;
    color: #6d6d6d !important;
}

.form-control:disabled,
.form-control:-ms-input-placeholder {
    border-color: #6d6d6d !important;
    color: #6d6d6d !important;
}

.form-control:disabled,
.form-control::-ms-input-placeholder {
    border-color: #6d6d6d !important;
    color: #6d6d6d !important;
}

.form-control::-webkit-input-placeholder {
    border-color: #6d6d6d !important;
    color: #6d6d6d !important;
}

.form-control::-moz-placeholder {
    border-color: #6d6d6d !important;
    color: #6d6d6d !important;
}

.form-control:-ms-input-placeholder {
    border-color: #6d6d6d !important;
    color: #6d6d6d !important;
}

.form-control::-ms-input-placeholder {
    border-color: #6d6d6d !important;
    color: #6d6d6d !important;
}

.form-control:disabled,
.form-control::placeholder {
    border-color: #6d6d6d !important;
    color: #6d6d6d !important;
}

.form-control,
.form-control:focus,
.form-control:active,
.form-control:hover {
    box-shadow: none;
    outline: none;
}

.form-control:focus {
    border-color: #3f51b5;
}

.form-control.error {
    border-color: #d93025;
}

.form-control.white {
    border-color: #fff;
    background: transparent;
}

.form-control.white,
.form-control.white::-webkit-input-placeholder {
    color: #fff;
}

.form-control.white,
.form-control.white:-ms-input-placeholder {
    color: #fff;
}

.form-control.white,
.form-control.white::-ms-input-placeholder {
    color: #fff;
}

.form-control.white::-webkit-input-placeholder {
    color: #fff;
}

.form-control.white::-moz-placeholder {
    color: #fff;
}

.form-control.white:-ms-input-placeholder {
    color: #fff;
}

.form-control.white::-ms-input-placeholder {
    color: #fff;
}

.form-control.white,
.form-control.white::placeholder {
    color: #fff;
}


/***** INPUT GROUP *****/
.input-group {
    background: #fff;
    padding-left: 1rem;
    padding-right: 1rem;
    height: 4rem;
    border-radius: 4px;
}

.input-group-prepend {
    padding: 0.5rem 0 !important;
}


.input-group.error {
    border-color: #d93025;
}

.input-group .form-control {
    border-color: transparent;
    border-radius: 0;
    height: auto;
    padding: 0;
}

.input-group .form-control,
.input-group .form-control:focus,
.input-group .form-control:active,
.input-group .form-control:hover {
    outline: none;
    box-shadow: none;
}

.input-group-text {
    background: transparent;
    color: inherit;
    font-size: 1.4rem;
    padding: 0;
    border-color: transparent;
}

.input-group-text img {
    max-height: 2rem;
}

/*
.input-layout label {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-2rem);
    -ms-transform: translateY(-2rem);
    transform: translateY(-2rem);
    margin-bottom: 0;
    -webkit-transition: 0.25s all ease;
    -o-transition: 0.25s all ease;
    transition: 0.25s all ease;
    color: inherit;
    font-size: 1.2rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.input-layout .form-control:focus::-webkit-input-placeholder {
    opacity: 0;
}

.input-layout .form-control:focus:-ms-input-placeholder {
    opacity: 0;
}

.input-layout .form-control:focus::-ms-input-placeholder {
    opacity: 0;
}

.input-layout .form-control:focus::placeholder {
    opacity: 0;
}

.input-layout .form-control:focus + label {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-5.2rem);
    -ms-transform: translateY(-5.2rem);
    transform: translateY(-5.2rem);
}

.input-layout:not(:last-child) {
    margin-bottom: 0.5rem;
}
*/

/***** CUSTOM CHECKBOX *****/
.checkbox {
    position: relative;
}

.checkbox > * {
    cursor: pointer;
}

.checkbox > input {
    display: none;
}

.checkbox > label > span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 1.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 0.3rem;
    background: #000;
}

.checkbox > label > span::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.checkbox > input:checked + label > span {
    -webkit-animation: bounceIn 0.5s;
    animation: bounceIn 0.5s;
}

.checkbox > input:checked + label > span::before {
    content: '✓';
}


/***** CUSTOM RADIO BUTTON *****/
.radio {
    position: relative;
}

.radio > * {
    cursor: pointer;
}

.radio > input {
    display: none;
}

.radio > label > span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
    background: #fff;
}

.radio > label > span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
}

.radio > input:checked + label > span {
    -webkit-animation: bounceIn 0.5s;
    animation: bounceIn 0.5s;
}

.radio > input:checked + label > span::before {
    background: #000;
}

/*
.md-form {
    border-bottom: 1px solid #fff !important;
}

.md-form,
.md-form .form-control {
    background: transparent !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: 0;
    padding-left: 0;
    padding-right: 0;
}

.md-form,
.md-form .form-control,
.md-form .form-control::-webkit-input-placeholder,
.md-form::-webkit-input-placeholder {
    color: #fff !important;
}

.md-form,
.md-form .form-control,
.md-form .form-control:-ms-input-placeholder,
.md-form:-ms-input-placeholder {
    color: #fff !important;
}

.md-form,
.md-form .form-control,
.md-form .form-control::-ms-input-placeholder,
.md-form::-ms-input-placeholder {
    color: #fff !important;
}

.md-form,
.md-form .form-control,
.md-form .form-control::placeholder,
.md-form::placeholder {
    color: #fff !important;
}
*/

/***** CUSTOM DROPDOWN *****/
select {
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    outline: 0px !important;
    box-shadow: none !important;
    background-image: url(../img/afterlogin/dropdown.png) !important;
    background-size: auto !important;
    background-repeat: no-repeat !important;
    background-position: right !important;
    background-origin: content-box !important;
}

/***** UI JQUERY DATEPICKER DROPDOWN *****/
.ui-datepicker-title select {
    background-image: url(../img/afterlogin/dropdown_white.png) !important;
}

.select-dropdown {
    position: relative;
    text-align: left;
    font-size: 1.4rem;
}

.select-dropdown > select {
    display: none;
}

.select-selected {
    background-color: #fff;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 1.4rem;
    right: 1rem;
    width: 0;
    height: 0;
    border: .6rem solid transparent;
    border-color: #495057 transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #495057 transparent;
    top: .7rem;
}

.select-items div,
.select-selected {
    color: #343a40;
    transition: 0.3s all ease;
    font-family: inherit;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    display: block;
    width: 100%;
    cursor: pointer;
}

.select-items {
    position: absolute;
    background-color: #fff;
    padding: 1rem;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 0.1rem solid #e9ecef;
    box-shadow: 0.1rem 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
    -webkit-animation: fadeInDown .5s linear forwards;
    animation: fadeInDown .5s linear forwards;
}

.select-hide {
    display: none;
}

.same-as-selected,
.select-items div.same-as-selected,
.select-items div:hover {
    background-color: #3f51b5;
    color: #fff;
}

.w-purple .same-as-selected,
.w-purple .select-items div.same-as-selected,
.w-purple .select-items div:hover {
    background-color: #673ab7;
}

.select-dropdown.is-white .select-selected {
    border: 1px solid #fff;
    color: #fff !important;
    background: transparent;
}

.select-dropdown.is-white .select-selected::after {
    border-color: #fff transparent transparent transparent;
}

.select-dropdown.is-white .select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
}






/*====================
    07. CARD
====================*/






/*========================
    08. SIGNUP LOGIN OVERLAY
========================*/
.overlay,
.loginoverlay {
    position: fixed;
    overflow: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    background: rgba(103, 58, 183, 0.9);
    transition: 0.25s all ease;
}

.overlay__body {
    padding: 1rem 0;
}

.overlay__body.overlay__spaced {
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.overlay__open-1 .overlay-1 {
    opacity: 1;
    visibility: visible;
}

.overlay__open-2 .overlay-2 {
    opacity: 1;
    visibility: visible;
}

.loginoverlay__open .overlay-3 {
    opacity: 1;
    visibility: visible;
}

.overlay__open-1 .overlay__conditional,
.overlay__open-2 .overlay__conditional {
    display: none;
}

/*to overcome 0.5 opacity over signup overlay*/
.modal-backdrop.show {
    display: none !important;
}






/*==================
    08. NAVIGATION
===================*/
.nav {
    position: fixed;
    z-index: 99;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto;
    font-size: 1.6rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateY(-100%);
    opacity: 0;
    transition: 0.25s all ease;
}

.nav .header__toggle > span,
.nav .header__toggle > span::before,
.nav .header__toggle > span::after {
    background: #fff;
}

.nav__info {
    text-align: right;
    margin-top: 7rem;
}





/*====================
    10. HEADER
====================*/
/***** BEFORE LOGIN *****/
.header {
    padding: 0;
    margin: 0;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.header__toggle {
    width: 2.5rem;
    height: 2.5rem;
    display: block;
    position: relative;
    flex-shrink: 0;
}

.header__toggle > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header__toggle > span::before,
.header__toggle > span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
}

.header__toggle > span::before {
    top: -0.8rem;
}

.header__toggle > span::after {
    bottom: -0.8rem;
}

.header__toggle > span,
.header__toggle > span::before,
.header__toggle > span::after {
    width: 2.5rem;
    height: 0.25rem;
    background: #495057;
    transition: 0.25s all ease;
    transform-origin: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.header__logo {
    /*
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
*/
}

.header__logo > img {
    /*
    display: block;
    margin: auto;
    max-width: 20rem;
*/
}

.header__profile {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.header__profile > ul {
    margin: 0;
    display: flex;
}

.nav .header__toggle {
    position: absolute;
    right: 2rem;
    top: 0;
    z-index: 999;
}


/***** AFTER LOGIN *****/
.header-afterloggedin {
    padding: 0;
    margin: 0;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
}

#menu_icon {
    font-size: 2.3em;
    transform: rotate(90deg);
    /*    margin: 10px 0 0 0;*/
    background: none;
    border: 0;
    outline: none;
}

#menu_close {
    font-size: 2.3em;
    transform: rotate(0);
    margin: 0px 20px 0 0;
    background: none;
    border: 0;
    outline: none;
    color: white;
    float: right;
}

#menu_icon:hover,
#menu_close:hover,
.profile img:hover,
#profile_close:hover {
    cursor: pointer;
}

.menu {
    position: fixed;
    z-index: 9;
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    padding: 0;
    display: none;
    top: 0;
}

#blk_lyr {
    width: 100%;
    height: 100%;
    background: #33333370;
    position: absolute;
    z-index: 10;
}

.menu ul {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    position: absolute;
    z-index: 11;
    padding: 0;
    overflow-y: scroll;
}

.everything {
    width: 100%;
    height: 100%;
    z-index: 12;
}

.everything li {
    height: 55px;
    padding: 30px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.everything li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.everything li a:visited,
.everything li a:focus,
.everything li a:active,
.everything li a:hover {
    border-width: 0px !important;
    -webkit-border-width: 0px !important;
    -moz-border-width: 0px !important;
    -o-border-width: 0px !important;

}

.everything li a img {
    width: 25px;
    margin: 0 15px;
}

#arrw {
    margin-right: 15px;
}



/*====================
    11. NAVS PROFILE
=====================*/
.nav-info {
    padding-top: 10px;
}

.nav-info p {
    text-align: center;
    font-size: 14px;
    margin-top: 6px;
    color: #fff;
}

.nav-info span {
    color: #d42e56;
}

.logo-nav {
    border-bottom: 2px solid #41423d;
    text-align: center;
}

.logo-nav .img-fluid {
    max-width: 80%;
}




.profile {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.profile a {
    text-decoration: none;
    color: #333;
}

.profile img {
    float: right;
    border-radius: 50%;
}

.profile-img {
    background: #fff;
}

.profile-accordion {
    /*    background: #fff;*/
}

.debit-card-details {
    background: #fff;
}

.debit-card-details img {
    padding: 0 0 1% 0;
}





/*=================
    12. WELCOME PAGE
==================*/
/***** HERO PART *****/
.heroPart {
    background: #fff8e6;
    box-shadow: 1px 5px 9px 0px #ccc;
}

.heroTag {
    padding: 3% 0 0 17%;
}

.heroTag h1 {
    font-size: 3em;
    line-height: 1.4;
}

.heroTag button {
    width: 100px;
    height: 38px;
    background: #dc156f;
    color: #fff;
    border: 0;
    border-radius: 5px;
    outline: none;
    margin: 2em 0 7em 0;
    font-size: 0.8em;
}

.heroImg {
    text-align: center;
    padding: 2em 0;
}

.heroImg p {
    color: #000;
    font-size: 18px;
}

.heroImg .id {
    font-size: 12px;
    padding-top: 5px;
    color: #6631c9;
}

.id span {
    color: #fd3365;
}


/***** MAKE PAYMENTS BUTTON *****/
.payments {
    text-align: center;
    padding: 3% 0 4% 0;
}

.payments h1 {
    font-size: 1.9 em;
    margin: 65px 0 40px 0;
}

#payment_wrap {
    width: 100%;
    height: 48px;
    background: #dc156f;
    color: #fff;
    border: 0;
    border-radius: 5px;
    outline: none;
    margin: 3em 0 2em 0;
    font-size: 16px;
}

#payment_inner_wrap button {
    width: 150px;
    height: 100px;
    background: #fff;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 0 8px #ccc;
    margin: 0 1em;
    outline: none;
}

#payment_inner_wrap button:hover {
    cursor: pointer;
}

#payment_inner_wrap button img {
    width: 25px;
    padding: 0 0 6px 0;
}

#payment_inner_wrap button p {
    font-size: 1.1em;
    margin: 0;
}

#pay_sub_wrap3 p {
    color: #09ca09;
}

#pay_sub_wrap3 p:focus {
    color: #fff;
}

#pay_sub_wrap {
    margin: 15px 0 20px 0;
}

#pay_sub_wrap label.error {
    color: #fff;
    font-weight: lighter;
}

#pay_sub_wrap select {
    height: 40px;
    margin: 0 0 14px 0;
    border-radius: 5px;
    outline: none;
}

#payNow {
    width: 115px;
    height: 35px;
    color: #ea097a;
    background: #fff;
    font-size: 0.8em;
    border-radius: 4px;
    border: 0;
    margin: 10px 0 0 0;
    font-weight: bold;
}

#pay_sub_wrap form {
    background: #34a04c;
    margin: auto;
    border-radius: 10px;
    padding: 30px 0;
}

.make-payment {
    margin-left: 10%;
}

.downarrow {
    float: right;
    margin-right: 16px;
    margin-top: 3px;
}

.wrap3 {
    background: #34a04c !important;
}


/***** MAKE INDIA CASHLESS *****/
.my-auto {
    margin-top: 0;
    margin-bottom: 0;
}

.tagline p {
    color: #fff;
    font-size: 1.5em;
    text-align: center;
    padding-top: 18px;
    padding-bottom: 12px;
}

.cashless-part {
    background: #fec107;
}

.refer {
    text-align: center;
}

.refer h1 {
    font-size: 1.9em;
    margin: 0 0 2% 0;
    color: #983497;
    padding-top: 20px;
}

.refer p {
    line-height: 22px;
    color: #fff;
    font-size: 15px;
}

.refer p.line-2 {
    line-height: 22px;
    color: #fff;
    font-size: 14px;
    color: #983497;
}

.refer h6 {
    font-size: 1.2em;
    color: #983497;
    line-height: 1.5;
    margin: 4% 0;
}

.social {
    text-align: center;
    margin-top: 11%;
}

.click-to {
    padding: 8% 0 1% 0;
}

.click-to section {
    padding: 0;
}

.click-to img {
    width: 70px;
    height: 120px;
}

#refImg1 {
    float: left;
    margin-left: 25%;
}

#refImg2 {
    float: right;
    margin-right: 25%;
}

.share-bttn {
    text-align: center;
}

#shareBtn {
    width: 100%;
    height: 44px;
    margin: 20% 0 20% 0;
    background: #fff;
    border: 0;
    border-radius: 4px;
    color: #9a348a;
    box-shadow: 0 2px 4px #aaa;
}

.share-bttn p {
    text-align: center;
    color: #eee;
}

@media only screen and (max-width: 440px) {
    .cashless {
        padding: 7% 0 0 0;
    }
}


/***** OUR PARTNERS *****/
.ourPartners .img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ourPartners .img-wrapper img {
    padding: 5%;
    background-color: #ffffff;
}







/*=================
    13. PROFILE PAGE
==================*/
/***** PROFILE SECTION *****/
.profile-section .my-profile-name {
    font-size: 2.5rem;
    color: #000000;
    font-weight: 700;
    margin: 0;
}

.profile-section .my-profile-customerid {
    font-size: 1.3rem;
    color: #3f51b5;
    padding-bottom: 3%;
}

.profile-section .my-profile-customerid span {
    color: #e91e63;
    font-size: 12px;
}

.my-profile-img-wrapper {
    margin: 0 auto;
    border-radius: 50%;
    width: 112px;
    border: 5px solid #e91e63;
    padding: 5px;
    box-sizing: content-box;
}

div img.my-profile-img {
    border-radius: 50%;
    width: 112px;
}

#btnFileUpload {
    margin: 0 auto;
    width: 112px;
    height: 112px;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(47, 47, 47, 0.7);
    margin-top: 80%;
    text-align: center;
    color: #ffffff;
    cursor: url('../img/icons/uploadcloud.png'), auto;
}

/***** PROFILE ACCORDION *****/
/* card */
.profile-accordion .card {
    border: none;
    background: transparent;
}

/* card header */
.profile-accordion .card-header {
    padding: 0;
    border-radius: 0 !important;
    border: 0;
    box-shadow: none;
    background: #fff;
    margin-bottom: 1rem;
    /*we will check this later*/
}

.profile-accordion .card-header a[aria-expanded="true"] {
    box-shadow: none;
}

.profile-accordion .card-header h2 img {
    margin-left: 100px;
}

.profile-accordion .card-header h2 button {
    color: #fff;
    border: none !important;
    -ms-box-shadow: none;
    box-shadow: none;
    width: 80%;
    text-align: left;
    font-size: 1.7rem;
}

.profile-accordion .card-header h2 button i {
    float: right;
    margin-top: 5px;
}

.profile-accordion .card:nth-child(1) .card-header {
    background-color: #e91e63;
    margin: 0 !important;
    -ms-box-shadow: 0 7px 3px -4px #ab1045 inset;
    box-shadow: 0 7px 3px -4px #ab1045 inset;
}

.profile-accordion .card:nth-child(2) .card-header {
    background-color: #555555;
}

.profile-accordion .card:nth-child(3) .card-header {
    background-color: #6633CC;
}


/* card body */
.profile-accordion .card-body {
    color: #fff;
    padding: 0 2%;
}

.profile-accordion .card-body .container {
    -ms-box-shadow: 1px 20px 10px -22px #000 inset;
    box-shadow: 1px 20px 10px -22px #000 inset;
    margin: 0;
}

.profile-accordion .card:nth-child(1) .card-body .container {
    background-color: #e91e63;
}

.profile-accordion .card:nth-child(2) .card-body .container {
    background-color: #555555;
}

.profile-accordion .card:nth-child(3) .card-body .container {
    background-color: #6633CC;
}

.profile-accordion .card-body .container .row {
    /*    align-items: center;*/
}

.profile-accordion .card-body span {
    font-size: 1.6rem;
}

.profile-accordion .card-body span.error {
    font-size: 10px;
    display: inline;
}

.profile-accordion .card-body span.badge {
    font-size: 1rem;
}

.profile-accordion .card-body #profile_edit_icon:hover,
.profile-accordion .card-body #contact1_edit_icon:hover,
.profile-accordion .card-body #edit_contact:hover,
.profile-accordion #edit_primary:hover,
.profile-accordion #edit_alternate:hover,
.profile-accordion #edit_contact:hover,
.profile-accordion #btnEmailverify:hover,
.profile-accordion #btnMobileVerify:hover,
.profile-accordion #contact1_edit_icon:hover,
.profile-accordion .kyc-remove-btn {
    cursor: pointer;
}

.profile-accordion .card .card-body label {
    font-size: 1.6rem;
    margin-bottom: 0;
}

.profile-accordion .card-body .kyc-add-doc {
    background-color: #f0f0f0;
    width: 70%;
    border: 2px dashed #9e9e9e;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #000000;
}

.profile-accordion .card-body .kyc-add-doc img {
    margin: 10% 0;
}

.profile-accordion .card-body .kyc-add-doc p {
    text-align: center;
    font-size: 1.2rem;
}

.profile-accordion .card-body .kyc-add-doc p a,
.profile-accordion .card-body .kyc-add-doc p a:active,
.profile-accordion .card-body .kyc-add-doc p a:visited,
.profile-accordion .card-body .kyc-add-doc p a:hover,
.profile-accordion .card-body .kyc-add-doc p a:link {
    text-decoration: underline;
    color: #3ea2ff;
    font-weight: 600;
}

.profile-accordion .card-body .kyc-upload-requirement ul li {
    list-style: disc;
    margin-bottom: 5px;
}

.profile-accordion .card-body .btn:hover {
    background: #ffffff;
}

.profile-accordion .card-body .btn-white.btn-block {
    display: flex;
    align-content: center;
    justify-content: space-between;
    color: #e91e63;
}

/* form component */
.profile-accordion .input-group,
.profile-accordion .form-control {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.profile-accordion .input-group .form-control {
    border: 0px solid #ffffff;
}

.profile-accordion .form-control::-webkit-input-placeholder {
    color: #ffffff !important;
    font-weight: 600;
}

.profile-accordion .form-control::-moz-placeholder {
    color: #ffffff !important;
    font-weight: 600;
}

.profile-accordion .form-control:-ms-input-placeholder {
    color: #ffffff !important;
    font-weight: 600;
}

.profile-accordion .form-control::-ms-input-placeholder {
    color: #ffffff !important;
    font-weight: 600;
}

.profile-accordion .form-control::placeholder {
    color: #ffffff !important;
    font-weight: 600;
}

.profile-accordion .form-control::-webkit-input-placeholder {
    color: #ffffff !important;
    font-weight: 600;
}

.profile-accordion .form-control::-moz-placeholder {
    color: #ffffff !important;
    font-weight: 600;
}

.profile-accordion .form-control::-ms-input-placeholder {
    color: #ffffff !important;
    font-weight: 600;
}

.profile-accordion .radio label {
    display: flex;
    align-items: center;
    color: #ffffff !important;
}

.profile-accordion select.form-control {
    font-weight: bold !important;
    background-image: url(../img/pastpayment/dropdown_white.png) !important;
}


/***** MODAL *****/
/* modal content */
.profile-modal .modal-content {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* modal header */
.profile-modal .modal-header {
    border: none;
    -ms-box-shadow: 0 2px 4px #b3b3b3;
    box-shadow: 0 2px 4px #b3b3b3;
    background-color: #01cc34;
}

.profile-modal#edit_mobile_number .modal-header,
.profile-modal#edit_email .modal-header {
    background: transparent;
    box-shadow: none;
}

.profile-modal .modal-header .modal-title {
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
    font-size: 1.5rem;
}

.profile-modal .modal-header .close {
    color: #ffffff;
    opacity: 1;
}

.profile-modal#edit_mobile_number .modal-header .close,
.profile-modal#edit_email .modal-header .close {
    color: #000000;
}

/*modal body*/
.profile-modal .modal-body,
.profile-modal .modal-footer {
    border: none;
    padding: 5%;
}

.profile-modal#update_mobile_number .modal-body {
    padding: 0;
}

.profile-modal .modal-body h5 {
    font-size: 1.8rem;
}

.profile-modal .modal-body p {
    text-align: center;
    color: #323232;
}

.profile-modal .modal-body p.otp-number,
.profile-modal .modal-body p.otp-email,
.profile-modal .modal-body .card-body .otp_mobile_number {
    color: #01cc34;
}

.profile-modal .modal-body .btn-dark,
.profile-modal .modal-body p.customer-regret-msg {
    color: #e91e63;
}

.profile-modal .modal-body .btn-dark:hover {
    border: 1px solid #495057 !important;
}

.profile-modal .modal-body .form-control {
    border: none;
    border-bottom: 1px solid #a5a5a5;
    border-radius: 0;
    color: #a5a5a5;
}

/* card */
.profile-modal#update_mobile_number .modal-body .card-header {
    background: #ffffff;
}

.profile-modal#update_mobile_number .modal-body .card h2 .btn,
.profile-modal#update_mobile_number .modal-body .card h2 .btn:focus {
    color: #323232;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    box-shadow: none;
    text-transform: none;
    text-align: center;
}

.profile-modal#update_mobile_number .modal-body .customer-contact-us span {
    color: #01cc34;
}

.profile-modal#update_mobile_number .modal-body .card:nth-child(3) p {
    text-align: left;
}

/* otp */
.profile-modal .modal-body #otp_box {
    display: flex;
    justify-content: center;
}

.profile-modal .modal-body #otp_box .form-control {
    border: 1px solid #cccccc;
    background-color: #cccccc;
    margin: 1%;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    color: #495057;
}

/* modal footer */
.profile-modal .modal-footer {
    justify-content: center;
}



/*=================
    14. FOOTER
===================*/
.footer_wrapper {
    background: #333;
}

.payment-point {
    background: #333;
    color: #eee;
}

.payment-point h1 {
    font-size: 1.8em;
}

.payment-point hr {
    float: left;
    width: 245px;
}

.footMenu ul {
    padding: 0;
}

.footMenu ul li {
    list-style: none;
    line-height: 2;
}

.footMenu ul li a {
    margin-top: 10px;
    text-decoration: none;
    color: #eee;
}

.footMenu ul li a:hover {
    color: #e91e63;
}

.foot-h hr {
    margin-top: 10px;
}

.foot-h h1 {
    padding: 10px 0;
    border-bottom: 1px solid #525151;
}

.soc-i {
    display: flex;
}

.soc-i a img {
    height: 35px;
    width: 35px;
    margin: 0 5px;
    transition: 1s all;
}

.soc-i a img:hover {
    transform: rotate(360deg);
}






/*=======================
    15. COPYRIGHT FOOTER
========================*/
.copyright {
    padding: 23px 0 0 0;
    text-align: center;
    background: #333;
}

.copyright img {
    margin: 0 0 15px 0;
}



/*==================
    16. WRAP SECTION
===================*/
/***** Profile(right) *****/
.profile_section {
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    position: absolute;
    z-index: 11;
    padding: 0;
}

#profile_close {
    font-size: 1.5em;
    transform: rotate(0);
    margin: 5px 20px 0 0;
    background: none;
    border: 0;
    outline: none;
    float: right;
}

.profile_section .my-profile-name {
    font-size: 2.5rem;
    color: #000000;
    font-weight: 700;
    margin: 0;
}

.profile_section .my-profile-customerid {
    font-size: 1.3rem;
    color: #3f51b5;
    padding-bottom: 3%;
}

.profile_section .my-profile-customerid span {
    color: #e91e63;
    font-size: 12px;
}

.profile_section .heading {
    background-color: #6633CC;
    /*padding: 15px 35px;*/
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.profile_section .heading:nth-child(1) {
    -ms-box-shadow: 0 7px 3px -4px #4b4b4b inset;
    box-shadow: 0 7px 3px -4px #4b4b4b inset;
}

.profile_section .heading .btn {
    color: #fff;
    width: 90%;
    border: none !important;
    -ms-box-shadow: none;
    box-shadow: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile_section .heading .btn span {
    margin-left: 50px !important;
}

.session-details .session-time {
    float: right;
}

.session-details,
.session img {
    padding-top: 15px;
}

.session-details p {
    color: #000;
    font-size: 12px;
    font-weight: 500;
}

.session-details .session-time {
    color: #e91e63;
    font-size: 12px;
    font-weight: 500;
}

.log-out {
    padding: 0;
}

.btn-logout {
    width: 100%;
    padding: 2rem 0;
    background: #e91e63;
    color: #fff;
    border-radius: 0 !important;
}

.log-out span img {
    margin: 0 10px 0 -10px;
}


/***** FOOTER *****/
.footer {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem 0;
    text-align: center;
}

/***** MENU *****/
body.menu__open .header__toggle > span {
    background: transparent;
}

body.menu__open .header__toggle > span::before {
    transform: rotate(45deg);
    top: 0;
}

body.menu__open .header__toggle > span::after {
    transform: rotate(-45deg);
    bottom: 0;
}

body.menu__open .nav {
    opacity: 1;
    transform: translateY(0);
}





/*====================
    17. MODAL
======================*/
/***** REFER AND EARN *****/
.modal{
    padding-right: auto !important;
}
.refer-modal .modal-body input[type=text] {
    border: none;
    border-bottom: 1px solid #cdcdcd;
    width: 100%;
    padding: 25px 0 0 0;
    font-size: 16px;
}

.refer-modal .modal-body input[type=text]::-webkit-input-placeholder {
    color: #000;
    opacity: 1;
    font-weight: 500;
}

.refer-modal .modal-body input[type=text]::-moz-placeholder {
    color: #000;
    opacity: 1;
    font-weight: 500;
}

.refer-modal .modal-body input[type=text]:-ms-input-placeholder {
    color: #000;
    opacity: 1;
    font-weight: 500;
}

.refer-modal .modal-body input[type=text]::-ms-input-placeholder {
    color: #000;
    opacity: 1;
    font-weight: 500;
}

.refer-modal .modal-body input[type=text]::placeholder {
    color: #000;
    opacity: 1;
    font-weight: 500;
}

.refer-modal .modal-body input[type=text]:-ms-input-placeholder {
    color: #000;
    font-weight: 500;
}

.refer-modal .modal-body input[type=text]::-ms-input-placeholder {
    color: #000;
    font-weight: 500;
}

.refer-modal .modal-header {
    background: #fec107 !important;
    text-align: center;
}

.refer-modal .modal-header {
    color: #ea2163;
}

.refer-modal .modal-header p {
    color: #fff;
    font-size: 14px;
}

.refer-modal .modal-header .modal-title {
    font-weight: 600;
    padding: 20px 0 0 30px;
}

.refer-modal .modal-body {
    padding: 10px 40px 30px 40px;
}

.refer-modal .modal-body h5 {
    color: #ea2163;
    font-weight: 600;
    font-size: 16px;
    padding-left: 15px;
}

.refer-modal .modal-footer {
    padding: 0px;
}

.refer-modal .modal-footer .btn {
    width: 100%;
    background: #fec107;
    height: 3em;
    font-size: 16px;
}

.refer-modal .close {
    opacity: 1;
    color: #fff;
    margin-right: -10px;
    margin-top: -10px;
}

.refer-modal .modal-footer .btn {
    color: #fff;
    font-weight: 600;
}
.refer-modal .modal-footer .btn:hover {
    color: #fec107;
}

.refer-modal .modal {
    text-align: center;
    padding: 0 !important;
}

.refer-modal .modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

.refer-modal .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}


/***** APPLY NOW *****/
.applynow__overlay .btn-applynow {
    transform: rotateZ(-90deg);
    position: fixed;
    top: 20%;
    right: -55px;
}

#applynow .refer-modal .modal-body input[type=text], #otp_not_send .refer-modal .modal-body input[type=text]{
    border: none;
    border-bottom: 1px solid #cdcdcd;
    width: 100%;
    padding: 0 0 0 10px;
    font-size: 16px;
}

#applynow .error {
    max-width: 95%;
    margin: 0;
}

.applynow .upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.applynow .upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.applynow .btn-up {
    border: 2px solid gray;
    color: gray;
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
}
.applynow .error{
    display: inline-block !important;
}


/*=====================
    18. PAST PAYMENT
=======================*/
/***** TEXT *****/
.past_payment_wrapper_container .text-primary {
    color: #e91e63 !important;
}

.past_payment_wrapper_container .past_payment_wrapper .font-weight-bold {
    font-weight: 600 !important;
    color: rgba(33, 37, 41, 0.70);
}


/***** BUTTON *****/
.past_payment_wrapper_container .btn {
    outline: 0;
    border-color: #000;
    color: #000;
    font-weight: 600;
}

.past_payment_wrapper_container .btn:focus,
.past_payment_wrapper_container .btn:active {
    outline: 0px !important;
    box-shadow: none !important;
}


.past_payment_wrapper_container .btn-primary {
    color: #fff;
    border-color: #e91e63;
    background-color: #e91e63 !important;
}

.past_payment_wrapper_container .btn-primary:focus,
.past_payment_wrapper_container .btn-primary:active,
.past_payment_wrapper_container .btn-primary:hover {
    outline: 0px !important;
    box-shadow: none !important;
    border-color: #e91e63 !important;
}

.past_payment_wrapper_container .btn-secondary {
    color: #fff;
    border-color: #673ab7;
    background-color: #673ab7 !important;
}

.past_payment_wrapper_container .btn-secondary:focus,
.past_payment_wrapper_container .btn-secondary:active {
    outline: 0px !important;
    box-shadow: none !important;
    border-color: #673ab7 !important;
}


/***** BACKGROUND *****/
.past_payment_wrapper_container .bg-primary {
    background-color: #e91e63 !important;
}

.past_payment_wrapper_container .bg-success {
    background-color: #8ac544 !important;
}

.past_payment_wrapper_container .bg-secondary {
    background-color: #673ab7 !important;
}


/***** SUB HAEDER *****/
.subheader {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12), inset 0 -1px 0 0 #dadce0;
    z-index: 1;
    position: relative;
}

.header_top {
    height: 60px;
    line-height: 60px;
    font-weight: 600;
}


/***** MAIN CONTENT *****/
.main-content {
    color: #ffffff !important;
}


/***** NAVS PILLS *****/
.past_payment_wrapper_container .nav {
    z-index: 0 !important;
    height: 55px;
    line-height: 55px;
    margin-left: -15px !important;
    margin-right: -15px !important;
    position: relative;
    overflow: visible;
    font-size: 1.6rem;
    padding-top: .5rem;
    padding-bottom: 0rem;
    transform: translateY(0%);
    opacity: 1;
}

.past_payment_wrapper_container .nav-pills .nav-link {
    height: 100%;
    line-height: 55px;
    padding: 0 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
}

.past_payment_wrapper_container .nav-pills .nav-item:nth-child(1) .nav-link,
.past_payment_wrapper_container .nav-pills .nav-item:nth-child(1) .nav-link:link,
.past_payment_wrapper_container .nav-pills .nav-item:nth-child(1) .nav-link:visited,
.past_payment_wrapper_container .nav-pills .nav-item:nth-child(1) .nav-link:hover,
.past_payment_wrapper_container .nav-pills .nav-item:nth-child(1) .nav-link:active,
.past_payment_wrapper_container .nav-pills .nav-item:nth-child(1) .nav-link:focus {
    color: #fff;
    background-color: #e91e63 !important;
}

.past_payment_wrapper_container .nav-pills .nav-item:nth-child(2) .nav-link,
.past_payment_wrapper_container .nav-pills .nav-item:nth-child(2) .nav-link:link,
.past_payment_wrapper_container .nav-pills .nav-item:nth-child(2) .nav-link:visited,
.past_payment_wrapper_container .nav-pills .nav-item:nth-child(2) .nav-link:hover,
.past_payment_wrapper_container .nav-pills .nav-item:nth-child(2) .nav-link:active,
.past_payment_wrapper_container .nav-pills .nav-item:nth-child(2) .nav-link:focus {
    color: #fff;
    background-color: #673ab7 !important;
}

.past_payment_wrapper_container .nav-pills .nav-link:not(.active) {
    box-shadow: 0 .25rem .3rem rgba(0, 0, 0, .3) !important;
}


/***** FORM COMPONENT *****/
.past_payment_wrapper_container .input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append > .input-group-text {
    padding: 0 .55rem;
}

.past_payment_wrapper_container .input-group > .form-control {
    font-size: 12px;
    font-weight: 600;
}

.past_payment_wrapper_container .past_payment_search p {
    color: #000;
    font-weight: 600;
}

.past_payment_wrapper_container .col-2 p {
    font-size: 12px;
    font-weight: bold;
    height: 20px;
    line-height: 20px;
}

.past_payment_wrapper_container .past_payment_search .input-group {
    border: 1px solid #aaa !important;
    padding-left: 5px;
    height: 26px;
    border-radius: 0 !important;
    padding-top: 3px;
    padding-bottom: 3px;
}

.past_payment_wrapper_container .past_payment_search .input-group .form-control {
    height: 16px;
    line-height: 20px;
    border-radius: 0 !important;
}

.past_payment_wrapper_container .past_payment_search .input-group .form-control {
    font-size: 10px !important;
    font-weight: bolder;
}

.past_payment_wrapper_container .past_payment_search .input-group .form-control::-webkit-input-placeholder {
    font-size: 10px !important;
}

.past_payment_wrapper_container .past_payment_search .input-group .form-control::-moz-placeholder {
    font-size: 10px !important;
}

.past_payment_wrapper_container .past_payment_search .input-group .form-control:-ms-input-placeholder {
    font-size: 10px !important;
}

.past_payment_wrapper_container .past_payment_search .input-group .form-control::-ms-input-placeholder {
    font-size: 10px !important;
}

.past_payment_wrapper_container .past_payment_search .input-group .form-control::placeholder {
    font-size: 10px !important;
}

.past_payment_wrapper_container select {
    background-color: #fff;
    background-image: url(../img/pastpayment/dropdown.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: right;
    background-origin: content-box;
    font-size: 14px !important;
}


/***** LIST PAGE *****/
.past_payment_body {
    background-color: #f3f3f3;
}

.payment_status {
    font-size: 12px;
}

.payment_status_success {
    color: #8ac544;
}

.payment_status_failure {
    color: #e91e63;
}

.past_payment_subtitle {
    font-size: 12px;
}

.past_payment_p {
    font-size: 18px;
}

.past_payment_btn {
    font-size: 12px;
    outline: 0 !important;
    border: 0 !important;
}

.past_payment_btn_success {
    background-color: #8ac544;
}

.past_payment_wrapper .bg-success {
    background-color: rgb(138, 197, 68) !important;
}

.past_payment_btn_failure {
    background-color: #e91e63;
}

.past_payment_icon_wrapper {
    height: 36px;
    width: 36px;
    background-color: rgb(228, 228, 228);
    padding-left: 6px;
    padding-top: 6px;
    border-radius: 4px;
    box-shadow: 0 3px 2px #aaa;
}





/*============================
    19. SELECT2 STYLE OVERRIDE
=============================*/
.select2-container .select2-choice {
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
/*    color: #6d6d6d !important;*/
    color: #ffffff !important;
/*    background-color: #ffffff !important;*/
    background-color: #e91e63 !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    border-radius: 4px !important;
}

.select2-container.with-white-bg .select2-choice {
    color: #6d6d6d !important;
    background-color: #ffffff !important;
}

.select2-drop-active {
    border: 1px solid #444 !important;
    padding-top: 10px;
    border-radius: 4px !important;
    border-top: none !important;
}

.select2-drop-active {
    padding-top: 0;
    border-radius: 0 0 4px 4px !important;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid transparent !important;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid transparent !important;
}

.biller-category.select2-container-active .select2-choice {
    border: 1px solid #444 !important;
    border-radius: 4px 4px 0 0 !important;
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid transparent !important;
}

.select2-results .select2-highlighted {
    background: #e91e63 !important;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid transparent !important;
}

.select2-container .select2-choice .select2-arrow b {
/*    background: url('../img/afterlogin/dropdown.png') 0px 14px !important;*/
    background: url('../img/afterlogin/dropdown_white.png') 0px 14px !important;
    background-size: auto !important;
    background-repeat: no-repeat !important;
    background-origin: content-box !important;
}

.select2-container.with-white-bg .select2-choice .select2-arrow b {
    background: url('../img/afterlogin/dropdown.png') 0px 14px !important;
    background-size: auto !important;
    background-repeat: no-repeat !important;
    background-origin: content-box !important;
}



/*====================
    20. NEW HOMEPAGE
====================*/
.landing .sub-category .recent h3.payment-point-text-color,
.landing .sub-category .all h3.payment-point-text-color {
    color: #E91E63;
}

.landing .category .col-sm-3 div,
.landing .category .col-sm-2 div,
.landing .sub-category .col-3 div {
    background-color: rgba(255, 255, 255, .5);
    margin: 0 auto;
    color: #e91e45;
    border-radius: 10px;
    box-shadow: 0 0 5px -1px rgba(128, 128, 128, .5);
    transition: all 1s;
    padding: 10px;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.landing .category .col-sm-3 div:hover,
.landing .category .col-sm-2 div:hover,
.landing .sub-category .col-3 div:hover {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0);
}





/*=============================
    21. BILL DETAILS PAGE
==============================*/
#detailsID {
    min-height: 94px;
    max-height: 94px;
    overflow: hidden;
    transition: 1s all;
}

#detailsID.full-view {
    max-height: 100%;
    transition: 1s all;
}





/*=============================
22. NEW PARTNERS HOMEPAGE
==============================*/
.home_partner_section{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
/* Banner */
.home_partner{
    margin-top: -3rem !important;
}
.home_partner .home_partner_banner{
    background-image: linear-gradient(180deg, #EA1E63 43%, #FFDE37 43%);
    padding-top: 2%;
}
.home_partner .home_partner_banner .col-first{
    padding-top: 8%;
    padding-bottom: 8%;
}
.home_partner .home_partner_banner h1{
    font-size: 20px;
    border-bottom: 2px dotted #fff;
    padding-bottom: 20px;
    margin-right: 5rem;
}
.home_partner .home_partner_banner p{
    padding-top: 12px;
    margin-right: 5rem;
}

.offer_badge{
    background-color: #ffffff;
    border-radius: 12px;
    border: 2px solid #000;
    padding: 6px 12px;
    text-align: center;
}
.offer_badge .offer_title{
    color: #EA1E63;
    font-size: 20px;
    text-transform: capitalize;
}
.offer_badge .offer_discount{
    color: #503B8A;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
}
.offer_badge .offer_terms{
    color: #ffffff;
    background-color: #EA1E63;
    font-size: 20px;
    font-weight: bold;
    padding: 6px;
    text-transform: capitalize;
}
.paymentpoint-agent img{
    width: 100%;
}

/* Buttons Section */
.home_partner_banner_buttons{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}
.home_partner_banner_buttons .banner_btn:not(:last-child) {
  margin-right: 0rem;
}
.home_partner_banner_buttons .banner_btn{
    background-color: #ffffff;
    border-radius: 50px;
    box-shadow: 0 6px 36px rgba(0, 0, 0, 0.15);
    color: #EA1E63;
    font-weight: 600;
    font-size: 16px !important;
    margin-bottom: 2rem;
}
.home_partner_banner_buttons .banner_btn:hover{
    background-color: #EA1E63;
    color: #ffffff;
    border-color: #EA1E63;
}
.home_partner_banner_buttons .banner_btn.banner_btn_lg{
    width: 100%;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

/* Headings Section */
.home_partner_headings{
    text-align: center;
}
.home_partner_headings h2{
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: capitalize;
}
.home_partner_headings p{
    font-size: 1.8rem;
}

/* Benefits Section */
.home_partner_benefits_section .benefit_row_end{
    align-items: flex-end;
}
/* Benefits Column */
.home_partner_benefits_section .home_partner_benefits_col .benefit_inner{
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 24px;
    padding: 4rem 4rem 4rem 10rem;
}
.home_partner_benefits_section .home_partner_benefits_col .benefit_inner .benefits_title{
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 600;
    color: #503B8A;
    margin-bottom: 3rem;
}
.home_partner_benefits_section .home_partner_benefits_col .benefit_inner .benefits_content{
    text-transform: uppercase;
    margin-bottom: 3rem;
}
.home_partner_benefits_section .home_partner_benefits_col .benefit_inner .benefits_content::before{
    content: '\2713';
    background-color: #333333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bolder;
    color: #fff;
    margin-bottom: -40px;
    margin-left: -64px;
}
.home_partner_benefits_section .home_partner_benefits_col .benefit_inner .benefits_content:nth-child(1)::before{
    background-color: #FFCE07;
}
.home_partner_benefits_section .home_partner_benefits_col .benefit_inner .benefits_content:nth-child(2)::before{
    background-color: #EA1E63;
}
.home_partner_benefits_section .home_partner_benefits_col .benefit_inner .benefits_content:nth-child(3)::before{
    background-color: #4FB04F;
}
.home_partner_benefits_section .home_partner_benefits_col .benefit_inner .benefits_content_title{
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 600;
}
.home_partner_benefits_section .home_partner_benefits_col .benefit_inner .benefits_content_subtitle{
    text-transform: none;
    font-size: 1.8rem;
}
.home_partner_benefits_section .home_partner_benefits_col .benefit_inner .benefits_content:nth-child(odd) .benefits_content_title{
    color: #EA1E63;
}
.home_partner_benefits_section .home_partner_benefits_col .benefit_inner .benefits_content:nth-child(even) .benefits_content_title{
    color: #503B8A;
}
.home_partner_benefits_section .home_partner_benefits_col .benefit_inner .benefits_content:nth-child(odd) .benefits_content_subtitle{
    color: #EA1E63;
}
.home_partner_benefits_section .home_partner_benefits_col .benefit_inner .benefits_content:nth-child(even) .benefits_content_subtitle{
    color: #503B8A;
}

/* Earn Column */
.home_partner_benefits_section .home_partner_earn_col .earn_title{
    color: #EA1E63;
    font-weight: 600;
    text-transform: uppercase;
    padding-top: 4rem;
    padding-bottom: 4rem;
    font-size: 2.5rem;
}
.home_partner_benefits_section .home_partner_earn_col .earn_box{
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 24px;
    padding: 3rem 3rem 3rem 3rem;
    text-align: center;
    margin-bottom: 2rem;
}
.home_partner_benefits_section .home_partner_earn_col .earn_box.box_violet{
    box-shadow: 0 0 12px rgb(80, 59, 138, 0.15);
    background: #503B8A;
}
.home_partner_benefits_section .home_partner_earn_col .earn_box.box_green{
    box-shadow: 0 0 12px rgb(76, 179, 76, 0.15);
    background: #4FB04F;
}
.home_partner_benefits_section .home_partner_earn_col .earn_box .earn_discount{
    background: #ffffff;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid transparent;
    box-shadow: 0 0 0 2px #ffffff;
    color: #EA1E63;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
}
.home_partner_benefits_section .home_partner_earn_col .earn_box.box_violet .earn_discount{
    border: 2px solid #503B8A;
}
.home_partner_benefits_section .home_partner_earn_col .earn_box.box_green .earn_discount{
    border: 2px solid #4FB04F;
}
.home_partner_benefits_section .home_partner_earn_col .earn_box .earn_discount .discount{
    font-size: 24px;
}
.home_partner_benefits_section .home_partner_earn_col .earn_box .earn_heading{
    padding: 4rem 0 1rem 0;
}
.home_partner_benefits_section .home_partner_earn_col .earn_box .earn_heading h3{
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}
.home_partner_benefits_section .home_partner_earn_col .earn_box .earn_text p{
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
}

/* Procedure Section */
/* Procedure Column */
.home_partner_procedure_section .home_partner_procedure_col .procedure_inner{
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    background: #C9DF7B;
    border-radius: 24px;
    padding: 4rem 2rem 4rem 6rem;
    margin-bottom: 2rem;
}
.home_partner_procedure_section .home_partner_procedure_col .procedure_inner .procedure_title{
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 600;
    color: #503B8A;
    margin-bottom: 4rem;
    text-align: center;
}
.home_partner_procedure_section .home_partner_procedure_col .procedure_inner .procedure_content::before{
    content: '';
    background-color: #EA1E63;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-bottom: -22px;
    margin-left: -40px;
    display: block;
}
.home_partner_procedure_section .home_partner_procedure_col .procedure_inner .procedure_content{
    text-transform: none;
    font-size: 1.6rem;
    padding-bottom: 2rem;
    color: #000;
}
.home_partner_procedure_section .home_partner_procedure_col .procedure_inner .procedure_content .border-top{
    border-top: 2px solid #000000 !important;
    margin-top: 4px;
}

/* tac Column */
.home_partner_procedure_section .home_partner_tac_col .tac_inner{
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    border-radius: 24px;
    padding: 4rem 4rem 4rem 4rem;
    margin-bottom: 2rem;
}
.home_partner_procedure_section .home_partner_tac_col .tac_inner .tac_title{
    font-size: 3rem;
    font-weight: 600;
    color: #503B8A;
    margin-bottom: 4rem;
}
.home_partner_procedure_section .home_partner_tac_col .tac_inner .tac_content::before{
    content: '>';
    color: #503B8A;
    margin-bottom: -24px;
    margin-left: -20px;
    display: block;
}
.home_partner_procedure_section .home_partner_tac_col .tac_inner .tac_content{
    text-transform: none;
    font-size: 1.6rem;
    padding-bottom: 1rem;
    color: #503B8A;
    padding-left: 20px;
    font-weight: 600;
}

/* Testimonial Section */
.home_partner_testimonial_section .testimonial_title{
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 600;
    color: #EA1E63;
    margin-bottom: 2rem;
}
.home_partner_testimonial_section .home_partner_testimonial_wrapper{
    background-color: #EA1E63;
    padding: 4rem 4rem 4rem 4rem;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    width: 100%;
    overflow: hidden;
}
.home_partner_testimonial_section .home_partner_testimonial_wrapper .home_partner_testimonial{
    text-align: center;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 0 4px rgba(255, 255, 255, 1);
    padding: 2rem;
}
.home_partner_testimonial_section .home_partner_testimonial_wrapper .slick-slide > div{
    padding-left: 1rem;
    padding-right: 1rem;
}
.home_partner_testimonial_section .home_partner_testimonial_wrapper .home_partner_testimonial .testimonial_image img{
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    margin: 0 auto;
}
.home_partner_testimonial_section .home_partner_testimonial_wrapper .home_partner_testimonial .testimonial_name > *{
    font-size: 16px;
    color: #000000;
    font-weight: 600;
    padding-top: 3rem;
}
.home_partner_testimonial_section .home_partner_testimonial_wrapper .home_partner_testimonial .testimonial_text > *{
    font-size: 12px;
    color: #000000;
    max-height: 54px;
    overflow: hidden;
}
.banner_home_page {
	height: 530px;
	background-repeat: no-repeat;
	background-color: #e91e63;
	background-position-x: 99%;
	/* background-size: url(../img/bg/banner_image.png),*/
	background-position-y: 10px;
	background-image: linear-gradient(66deg, #e91e63 58%, #f1f1f1 25%);
}
.banner_home_page_mobile {
	display: none;
}
.banner-heading {
	font-size: 31px;
	color: #ffffff;
	font-weight: bold;
	line-height: 40px;
	width: 70%;
}
.banner-text {
	position: relative;
	top: 177px;
	left: 79px;
	width: 52%;
}
.banner-sub-heading {
	font-size: 26px;
	color: #ffc107;
}
.banner-description {
	color: #ffffff;
	font-size: 14px;
	margin-top: 20px;
	width: 519px;
}
.features-heading {
	text-align: center;
	font-size: 26px;
	margin-top: 50px;
	color: #111111;
	font-weight: 900;
}
.features-heading > p > span {
	color: #e91e63;
}
hr.dotted-line {
	border: 1px dotted #fff;
	border-style: none none dotted;
}
.card.feature-icons {
	height: 70px;
	width: 70px;
	border-radius: 50%;
	background-color: #f03567;
	text-align: center;
	margin: 0 auto;
	position: relative;
	top: 13px;
}
.feature-icon {
	font-size: 2rem;
	position: relative;
	top: 25px;
	color: #ffffff;
}
.feature-text {
	margin-top: 30px;
}
.container.five-column.three-column-tablet.two-column-phone {
	overflow: hidden;
	margin-top: 40px;
}
section.features {
	overflow: hidden;
	background-image: url("../img/bg/map.png");
	padding-bottom: 50px;
}
.feature-text > p {
	font-weight: 600;
	color: #343a40;
}
.feature-box {
	float: left;
	margin: 6px;
	width: 210px;
	text-align: center;
	border: 1px solid #eee;
	box-shadow: 2px 0px 11px #ddd;
	height: 207px;
	padding: 25px 5px;
	transition: .2s;
	background-color: #ffffff;
	border-radius: 10px;
}

.feature-box:hover {
	transform: scale(1.05);
}
section.bbps_section {
	overflow: hidden;
	background:linear-gradient(70deg, #0d0dd1 60%,#2726dc 60%);
	margin-bottom: 100px;
	padding-left: 80px;
	padding-top: 5%;
	color: #ffffff;
	padding-bottom: 10%;
}
.bbps_heading {
	width: 52%;
	font-size: 26px;
	width: 150px;
	border-bottom: 2px solid #ffc107;
}
.bbps_sub_heading {
	font-size: 26px;
}
.bbps_sub_heading {
	width: 650px;
	font-weight: bold;
	font-size: 30px;
	margin-top: 11px;
}
.bbps_text_area{
	width: 50%;
}
.bbps-description {
	font-size: 14px;
}
.bbps_feature_block{
	float: left;
	padding: 0;
}
.bbps_text_area {
	width: 55%;
	float: left;
}
.bbps_feature_icon {
	height: 55px;
	width: 55px;
	background-color: white;
	border-radius: 15px;
	padding-right: 0px;
	margin-bottom: 60px;
	float: left;
}
.blue-white-bar {
	height: 39px;
	background: linear-gradient(112deg, #ffffff 60%, #2726dc 60%);
}

.bbps_features {
	padding: 0;
}
.bbps_image_area {
	width: 40%;
	float: left;
}
.bbps_features {
	padding: 0;
	margin-top: 30px;
}
.bbps_feature_description {
	font-size: 14px;
	width: 92%;
}
.pg_feaure_description {
	font-size: 14px;
	width: 92%;
	color: #3F51B5;
}
.bbps_feature_heading {
	font-size: 16px;
	font-weight: bolder;
}
.bbps_feature_text {
	position: absolute;
	left: 80px;
}
section.payment_gateway_section {
	overflow: hidden;
}
.pp-logo-home-page > p {
	color: #ffffff;
	width: 590px;
	margin: 0 auto;
	font-size: 19px;
}
.gateway-heading {
	font-size: 21px;
	text-transform: uppercase;
	color: #e91e63;
	font-weight: bolder;
}
img.pp_image {
	margin-top: 53px;
	max-width: 62%;
}
.pp-logo-home-page {
	background-color: #e91e63;
	height: 300px;
	text-align : center;
}
span.underline_text {
	text-decoration: underline;
	text-decoration-color: #fec107;
	text-decoration-thickness: 4px;
	text-underline-offset: 10px;
}
.gateway_sub_heading {
	width: 650px;
	font-weight: bold;
	font-size: 30px;
	margin-top: 11px;
	color: #673ab7;
}
.gateway_description {
	color: #673ab7;
	font-size: 14px;
	margin-bottom: 30px;
}
.pg_feature_icon {
	height: 55px;
	width: 55px;
	background-color: #e91e63;
	border-radius: 15px;
	padding-right: 0px;
	margin-bottom: 54px;
	float: left;
}
.gateway-feature1 {
	float: left;
	margin-bottom: 40px;
}
img.bbps_image {
	max-width: 95%;
}
img.pg_image {
	max-width: 80%;
}
.pp-logo{
	background-color: #e91e63;
	height: 250px;
}
.gateway-feature2 {
	float: left;
}
.gateway_features
{
	padding: 0;
}
.pg_feature_text {
	position: absolute;
	left: 80px;
}
.pg_feature_heading {
	font-size: 16px;
	color:#e91e63;
	font-weight: bolder;
}
img.banner-image {
	float: right;
	height: 68%;
	position: relative;
	top: 23%;
	right: 2%;
}
section.make_us_your_partner {
	background-color: #f1f1f1;
	height: 500px;
}
img.join_us_image {
	object: scale-down;
	height: 361px;
	width: -webkit-fill-available;
}
.overlay-blue {
	height: -webkit-fill-available;
	background-color: #4d15ae;
	/* opacity: 0.7; */
}
.framebox {
	height: 380px;
	width: 85%;
	background-color: #ffffff;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	top: 50px;
	border: 17px solid #ffffff;
	border-radius: 12px;
	box-shadow: 1px 3px 25px darkgrey;
}
.muyp_heading {
	font-size: 23px;
}
p.heavy-font {
	font-size: 26px;
	font-weight: bolder;
}
.muyp_textarea {
	position: absolute;
	color: #ffffff;
	text-align: center;
	top: 50px;
}
.muyp_description {
	font-size: 14px;
	width: 63%;
	margin: 0 auto;
}
.btn_home_page {
	width: 210px;
	font-weight: bolder;
	margin-top: 25px;
}
.bbps-icon {
	color: #673ab7;
	font-size: 26px;
	position: relative;
	top: 14px;
	left: 12px;
}
.pg-icon {
	font-size: 26px;
	position: relative;
	top: 14px;
	left: 16px;
	color: #ffffff;
}
.pg-icon:hover {
	transform: scale(1.5);
	transition: .3s;
}
.btn_cust_login {
	width: 190px;
	height: 30px;
	font-size: 12px;
	padding: 5px;
	text-transform: none;
}
.btn_cust_login:hover {
	border: 1px solid #e91e63 !important;
}
.btn_agent_login:hover {
	border: 1px solid #673ab7 !important;
}
.btn_agent_login {
	width: 190px;
	height: 30px;
	font-size: 12px;
	padding: 5px;
	background-color: #673ab7;
	text-transform: none;
}
.bbps-icon:hover {
	transform: scale(1.5);
	transition: .3s;
	animation: auto;
}
.modal-content {
	background-color: #f1f1f1;
}
div#contact_modal{
	background-color: #e91e63;

}
.refer-modal .modal-footer .btn {
	background-color: #673ab7;
}
.refer-modal .modal-header {
	background: #673ab7 !important;
}
div#applynow{
	background-color: #e91e63;
	padding: 10px;
}
.refer-modal {
	border-radius: 10px;
}
.captcha_image > img {
	max-height: 38px;
	border-radius: 5px;
	height: 38px;
}
.d_captcha > img {
	margin-bottom: 10px;
	margin-top: 10px;
}
.col-md-6.captcha_image {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}
/*.card.feature-icons:hover {*/
	/*box-shadow: 0px 4px 21px #f03567;*/
	/*transition: .3s;*/
	/*border-color: #ffffff;*/
	/*border-style: solid;*/
/*}*/
/*========================
    23. RESPONSIVE DESIGN
========================*/
/***** MIN 0 MAX 399 *****/
@media screen and (min-width: 0px) and (max-width: 399px) {

    /* viewport */
    @-ms-viewport {
        width: 320px;
    }
}

/***** MAX 319 *****/
@media only screen and (max-width: 319px) {

    /* overlay logo */
    .logo-nav img {
        /*
        width: 18em;
        padding: 0 0 0 5%;
        margin-left: 5px;
*/
    }
}

/***** MAX 339 *****/
@media only screen and (max-width: 339px) {

    /* past payment page */
    .past_payment_wrapper_container input[type="tel"]::-webkit-input-placeholder,
    .past_payment_wrapper_container .datepicker::-webkit-input-placeholder {
        font-size: 10px;
    }

    .past_payment_wrapper_container input[type="tel"]::-moz-placeholder,
    .past_payment_wrapper_container .datepicker::-moz-placeholder {
        font-size: 10px;
    }

    .past_payment_wrapper_container input[type="tel"]:-ms-input-placeholder,
    .past_payment_wrapper_container .datepicker:-ms-input-placeholder {
        font-size: 10px;
    }

    .past_payment_wrapper_container input[type="tel"]::-ms-input-placeholder,
    .past_payment_wrapper_container .datepicker::-ms-input-placeholder {
        font-size: 10px;
    }

    .past_payment_wrapper_container input[type="tel"]::placeholder,
    .past_payment_wrapper_container .datepicker::placeholder {
        font-size: 10px;
    }

    .past_payment_wrapper_container .input-group > .form-control {
        font-size: 12px;
    }

    /* copyright footer */
    .copyright .img-fluid {
        width: 55px;
    }

    /* button */
    .btn:not(:last-child) {
        margin-right: 1rem;
    }

    /* modal */
    .modal .btn:not(:last-child) {
        margin-right: 1rem;
    }
}

/***** MAX 349 *****/
@media only screen and (max-width: 349px) {

    /* list */
    .list-flex.aic > li.no-btn-listbill,
    .list-flex.aic > li.btn-listbill {
        margin-top: 15px;
    }

    /* profile page modal otp*/
    .profile-modal .modal-body #otp_box .form-control {
        width: 30px;
        height: 30px;
        padding: 10px !important;
    }
}

/***** MIN 350 *****/
@media only screen and (min-width: 350px) {

    /* list */
    .list-flex.aic > li.no-btn-listbill {
        display: none;
    }

    /* header */
    .logo .img-fluid {
        max-width: 80%;
    }
}

/***** MAX 449 *****/
@media only screen and (max-width: 449px) {

    /* welcome page make payemtn button */
    .payments {
        text-align: center;
        padding: 0 0 0 0;
    }

    /* overlay logo */
    .logo-nav img {
        width: 20em;
        padding: 0 0 0 5%;
    }

    /* profile accordion card body*/
    .profile-accordion .card-body .kyc-add-doc {
        width: 100%;
    }
}

/***** MIN 576 *****/
@media screen and (min-width: 576px) {

    /* new homepage */
    section.container-fluid.landing .text-jumbotron h2 {
        font-size: 6rem;
    }
}

/***** MAX 600 *****/
@media only screen and (max-width: 600px) {

    /* margin */
    .mb-xs-1 {
        margin-bottom: 1rem !important;
    }

    .mb-xs-2 {
        margin-bottom: 2rem !important;
    }

    .mb-xs-3 {
        margin-bottom: 3rem !important;
    }

    .mb-xs-4 {
        margin-bottom: 4rem !important;
    }

    .mb-xs-5 {
        margin-bottom: 5rem !important;
    }

    .mb-xs-6 {
        margin-bottom: 6rem !important;
    }

    .mb-xs-7 {
        margin-bottom: 7rem !important;
    }


    /* backgroung image */
    .bg__img.is-xs-white {
        background: #fff !important;
    }


    /* hidden */
    .hidden-lg {
        display: block;
    }

    .hidden-xs {
        display: none;
    }

    /* display */
    .xs-reverse{
        flex-direction: column-reverse;
    }

    /* tabs */
    .tab-menu {
        flex-wrap: wrap;
    }

    .tab-menu > li {
        flex: 33.33333% !important;
        margin-right: 0 !important;
        padding-right: 1rem;
    }

    /* column */
    [class^="col-lg"]:not(:last-child) {
        margin-bottom: 2rem;
    }


    /* payment section */
    .payment-section .col-lg-6:last-child {
        background: #fff !important;
    }

    .payment-section .col-lg-6:last-child .white-xs p {
        color: #fff !important;
    }

    .payment-section .col-lg-6:last-child .white-xs p {
        color: initial;
    }


    /* otp page */
    .otp .form-control:not(:last-child) {
        margin-right: 0;
    }


    /* button */
    .btn {
        min-width: 13rem;
        padding: 1rem;
        font-size: 16px;
    }

    .btn-lg {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }

    .fixed-btn-xs {
        position: -webkit-sticky !important;
        position: sticky !important;
        z-index: 80;
        left: 0;
        right: 0;
        bottom: 0rem;
        border-radius: 0 !important;
    }

    .fixed-btn-xs .btn {
        border-radius: 0;
    }

    .btn-xs-block{
        width: 100% !important;
    }


    /* popover */
    .popover-body {
        font-size: 1.4rem;
    }


    /* list */
    .list-lg {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .list-lg > li:not(:last-child) {
        margin-bottom: 0;
    }


    /* input group */
    .input-group {
        height: 4.5rem;
    }


    /* navs */
    .nav {
        font-size: 1.5rem;
    }

    .nav__info {
        margin-top: 0;
        text-align: center;
    }

    .nav__payment-modes {
        text-align: center;
    }

    .nav__payment-modes > li > img {
        max-height: 3rem;
    }

    /* right overlay */
    .profile_card_container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* wrap section profile */
    .profile_section .heading {
        padding: 15px 15px;
    }

    .profile_section .heading .btn {
        width: 100%;
    }

    .profile_section .heading .btn span {
        margin-left: 10px !important;
    }
}

/***** MAX 767 *****/
@media only screen and (max-width: 767px) {

    /* button */
    .btn {
        font-size: 1.5rem;
    }

    /* goto top button */
    .goToTop {
        left: 89%;
    }


    /* footer */
    .footer_wrapper {
        text-align: center !important;
    }

    .foot-h {
        display: flex;
        justify-content: center;
    }

    .soc-i {
        justify-content: center;
    }


    /* welcome page hero part */
    .profile a {
        display: none;
    }

    .heroTag {
        display: none;
    }


    /* welcome page make payment button */
    #payment_inner_wrap button {
        width: 84px;
        height: 72px;
        margin: 0 5px 0 5px;
    }


    /* welcome page make india cashless */
    #refImg1 {
        float: left;
        margin-left: 1em;
    }

    #refImg2 {
        float: right;
        margin-right: 1em;
    }

    #shareBtn {
        width: 100%;
        height: 44px;
        margin: 20% 0 20% 0%;
        background: #fff;
        border: 0;
        border-radius: 4px;
        color: #ea1d60;
        box-shadow: 0 2px 4px #aaa;
        font-size: 12px;
    }

    .social {
        margin-top: 6%;
    }

    /* profile section */
    .profile-section {
        /*padding: 0;*/
        max-width: 100%;
    }

    /* profile accordion */
    .profile-accordion {
        padding: 0;
        margin: 0;
        max-width: 100%;
    }

    /* profile accordion card header */
    .profile-accordion .card-header h2 img {
        margin-left: 15px;
    }

    /* profile accordion card body */
    .profile-accordion .card-body .container {
        padding: 2% 7%;
        max-width: 100%;
    }
}

/***** MIN 768 *****/
@media screen and (min-width: 768px) {

    /* new homepage */
    section.container-fluid.landing .text-jumbotron h2 {
        font-size: 5rem;
    }


    /* copyright footer */
    .copyright .img-fluid {
        width: 45px;
    }

    /* profile accordion card body */
    .profile-accordion .card-body .container {
        padding: 2% 17.5%;
    }




    /* NEW PARTNERS HOMEPAGE */
    /* Banner */
    .paymentpoint-agent{
        width: 250px;
    }

    /* Benefits Section */
    /* Earn Column */
    .home_partner_benefits_section .home_partner_earn_col .earn_box{
        height: 100%;
    }
}

/***** MIN 850 *****/
@media only screen and (min-width: 850px) {

    /* welcome page make india cashless */
    #shareBtn {
        margin: 15% 0 20% 0;
    }


    /* welcome page our partners */
/*
    .ourPartners section p {
        font-size: 1.1em;
    }

    .ourPartners section h6 {
        font-size: 1em;
    }
*/
}

/***** MIN 900 *****/
@media only screen and (min-width: 900px) {

    /* footer */
    .payment-point h1 {
        font-size: 1.7em;
    }
}

/***** MAX 899 *****/
@media only screen and (max-width: 899px) {

    /* html */
    html {
        font-size: 50%;
        /* =8px (1rem = 16px; 8px/16px = 50%) */
    }


    /* button */
    .btn-lg {
        font-size: 1.5rem;
        padding: 1rem 3rem;
    }

    .btn-outline-white {
        background: #fff;
        color: #495057;
    }
}


/***** MIN 992 *****/
@media only screen and (min-width: 992px) {
    /* NEW PARTNERS HOMEPAGE */
    .home_partner_section{
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    /* Banner */
    .home_partner .home_partner_banner{
        background-image: linear-gradient(65deg, #EA1E63 50%, #FFDE37 50%);
        padding-top: 2%;
    }

    .offer_badge .offer_title{
        font-size: 16px;
    }
    .offer_badge .offer_discount{
        font-size: 24px;
    }
    .offer_badge .offer_terms{
        font-size: 16px;
    }
    .paymentpoint-agent{
        position: absolute;
        bottom: 0;
        right: -50px;
        width: 300px;
    }
    .paymentpoint-agent img{
        width: 100%;
    }

    /* Buttons Section */
    .home_partner_banner_buttons_section{
        margin-top: -25px;
    }
    .home_partner_banner_buttons{
        margin-left: -15px;
        flex-direction: row;
    }
    .home_partner_banner_buttons .banner_btn:not(:last-child) {
      margin-right: 4rem;
    }
    .home_partner_banner_buttons .banner_btn.banner_btn_lg{
        width: 50%;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        text-align: right;
    }

    /* Benefits Section */
    /* Earn Column */
    .home_partner_benefits_section .home_partner_earn_col .earn_box{
        height: 100%;
    }

    /* Procedure Section */
    /* Procedure Column */
    .home_partner_procedure_section .home_partner_procedure_col .procedure_inner{
        height: 100%;
    }

    /* tac Column */
    .home_partner_procedure_section .home_partner_tac_col .tac_inner{
        height: 100%;
    }

    /* Testimonial Section */
    .home_partner_testimonial_section .home_partner_testimonial_wrapper{
        padding: 4rem 12rem 4rem 12rem;
        border-top-left-radius: 200px;
        border-bottom-left-radius: 200px;
        box-shadow: -24px 0 0 rgba(249, 207, 9, 1);
        width: 100%;
        overflow: hidden;
    }
}


/***** MAX 1200 *****/
@media only screen and (max-width: 1200px) {

    /* button */
    html {
        font-size: 56.25%;
        /* =9px (1rem = 16px; 9px/16px = 56.25%) */
    }
}


/***** MIN 1200 *****/
@media only screen and (min-width: 1200px) {

    /* NEW PARTNERS HOMEPAGE */
    /* Banner */
    .home_partner .home_partner_banner h1{
        font-size: 32px;
    }

    .offer_badge .offer_title{
        font-size: 20px;
    }
    .offer_badge .offer_discount{
        font-size: 32px;
    }
    .offer_badge .offer_terms{
        font-size: 20px;
    }
    .paymentpoint-agent{
        width: 350px;
    }

    /* Benefits Section */
    .home_partner_benefits_section .home_partner_benefits_col .benefit_inner .benefits_content_subtitle {
        font-size: 1.5rem;
    }
    .home_partner_benefits_section .home_partner_earn_col .earn_box .earn_discount {
        font-size: 16px;
    }
    .home_partner_benefits_section .home_partner_earn_col .earn_box .earn_discount .discount {
        font-size: 32px;
    }

    /* Procedure Section */
    /* Procedure Column */
    .home_partner_procedure_section .home_partner_procedure_col .procedure_inner{
        padding: 4rem 4rem 4rem 6rem;
    }
    .home_partner_procedure_section .home_partner_procedure_col .procedure_inner .procedure_content{
        font-size: 1.6rem;
    }

    /* Testimonial Section */
    .home_partner_testimonial_section .testimonial_title{
        padding-left: 12rem;
    }
}


