@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Squada+One&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #444444;
    overflow-x: hidden;
}

.squada-font {
    font-family: 'Squada One', cursive;
}

a, img {
    text-decoration: none;
    outline: none;
    border: none;
}

a, .btn {
    transition: all .5s;
}

.btn:focus, .form-control:focus {
    box-shadow: none;
}

:focus {
    outline: 0 !important;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: 0px;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

p:last-child {
    margin-bottom: 0;
}

.sticky {}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1024;
}

.navbar-brand {
    position: relative;
    margin: 0 0 0 50px;
    padding: 5px 0;
}

.navbar-brand::before {
    content: '';
    background-image: url('../images/logo-bg.png');
    position: absolute;
    z-index: -1;
    width: 580px;
    background-repeat: no-repeat;
    left: -180px;
    height: 105px;
    top: 0;
}

.navbar {
    padding: 0;
}

.nav-item {
    padding: 0 25px;
    position: relative;
}

.nav-item::after {
    content: none;
    background-color: #ffffff;
    position: absolute;
    right: 0;
    top: 5px;
    bottom: 5px;
    width: 2px;
}

.nav-item:nth-child(1):after, .nav-item:nth-child(2):after {
    content: '';
}

.nav-item a {
    color: #ffffff !important;
    text-transform: uppercase;
    font-weight: 700;
    padding: 3px 5px !important;
    border-radius: 3px;
}

.nav-item.active a, .nav-item a:hover {
    background-color: #59B645;
}

.nav-item:nth-child(4), .nav-item:nth-child(5) {
    padding: 0 0 0 10px;
}

.nav-item:nth-child(3) {
    padding: 0 10px 0 25px
}

.nav-item .header-btn {
    border: 2px solid #ffffff;
    border-radius: 10px 25px !important;
    height: 50px;
    display: inline-flex;
    align-items: center;
    width: 150px;
    justify-content: center;
}

.navbar-nav {
    align-items: center;
}

.banner-section {
    background-image: url('../images/banner-img.png');
    height: 903px;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 220px;
    position: relative;
    background-position: bottom;
    animation: heartbeat-small 3s infinite alternate;
}

.banner-section h1 {
    font-size: 80px;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Squada One', cursive;
    color: #ffffff;
    max-width: 589px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 20px;
    line-height: 75px;
}

.banner-section h1::before {
    content: '';
    background-color: #ffffff;
    width: 4px;
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 0;
}

.banner-section h6 {
    font-size: 22px;
    font-weight: 500;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.75);
    color: #ffffff;
    margin-bottom: 30px;
}

.common-btn {
    background-color: #59B645;
    border: 2px solid #ffffff;
    border-radius: 10px 25px !important;
    height: 60px;
    display: inline-flex;
    align-items: center;
    min-width: 180px;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}

.common-btn:hover {
    background-color: #E07912;
    color: #ffffff;
}

.signup-box {
    background-color: rgba(255, 255, 255, .3);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.20);
    padding: 20px;
    right: -20px;
    position: relative;
}

.inside-signup {
    margin-bottom: 15px;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, .6);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 14px;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}

.inside-signup:hover {
    background: rgba(224, 121, 18, 1);
    background: -moz-linear-gradient(-45deg, rgba(224, 121, 18, 1) 0%, rgba(254, 174, 54, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(224, 121, 18, 1) 0%, rgba(254, 174, 54, 1) 100%);
    background: -o-linear-gradient(-45deg, rgba(224, 121, 18, 1) 0%, rgba(254, 174, 54, 1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(224, 121, 18, 1) 0%, rgba(254, 174, 54, 1) 100%);
    background: linear-gradient(135deg, rgba(224, 121, 18, 1) 0%, rgba(254, 174, 54, 1) 100%);
    color: #ffffff;
    border-color: #ffffff;
}

.inside-signup:last-child {
    margin-bottom: 0;
}

.inside-signup:hover .icon1, .inside-signup:hover .icon2 {
    background-position: 0 -48px;
}

.icon1, .icon2 {
    background-image: url('../images/sign-icon1.png');
    width: 44px;
    height: 48px;
    display: inline-block;
    background-position: 0 0;
    background-repeat: no-repeat;
    transition: .4s ease all;
    margin-right: 10px;
}

.icon2 {
    background-image: url('../images/sign-icon2.png');
}

.banner-left {
    position: absolute;
    bottom: -85px;
    left: 0;
    animation-name: bounceTop;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

@keyframes bounceTop {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.banner-right {
    position: absolute;
    right: 25px;
    bottom: -20px;
    animation-name: bounce;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.agency-section {
    margin-top: 115px;
    padding: 30px 0 100px;
    position: relative;
}

.title-top {
    text-transform: uppercase;
    padding-left: 50px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #59B645;
}

.title-top::before {
    content: '';
    background-color: #59B645;
    height: 3px;
    width: 38px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.common-title {
    font-size: 56px;
    color: #000000;
    font-family: 'Squada One', cursive;
    margin-bottom: 30px;
}

.agency-list {
    margin: 30px 0 40px;
}

.agency-list li {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    position: relative;
    padding-left: 25px;
}

.agency-list li::before {
    content: '\f05d';
    font-family: 'FontAwesome';
    color: #EC8724;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -4px;
}

.agency-section::after {
    /*content: '';*/
    background-image: url('../images/agency-card.png');
    position: absolute;
    right: 0;
    top: -50px;
    bottom: 0;
    width: 50%;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    animation: heartbeat 3s infinite alternate;
    transform: translate(0,0);
    transition: all 1s;
}
.agency-section:hover::after{
    /*transform: translate(0,20px);*/
}

.agency-section .common-title {
    font-size: 36px;
    margin: 20px 0;
}

.work-section {
    padding: 100px 0;
    background-color: rgba(251, 231, 211, .5);
    /*background: url(../images/how-it-works-bg.png) no-repeat center / cover;*/
    position: relative;
    padding: 0;
    margin-top: 130px;
}

.work-section:before {
    content: '';
    background: url(../images/curve-top.png) no-repeat top / cover;
    min-height: 190px;
    width: 100%;
    position: absolute;
    top: -190px;
}

.work-section:after {
    content: '';
    background: url(../images/curve-bottom.png) no-repeat top / cover;
    min-height: 190px;
    width: 100%;
    position: absolute;
    bottom: -190px;
}


.work-box {
    padding: 40px 15px 20px;
    background-color: #ffffff;
    border-radius: 80px 0;
    position: relative;
    margin: 40px;
    /*transform: scale(1);*/
    /*transition: all 0.5;*/
    border: 1px solid transparent;
    height: calc(100% - 80px);
}
.work-box:hover{
    /*transform: scale(1.1);*/
    border: 1px solid #ed8824;
}

.work-box:hover:before{
    top: 0;
    right: 0;
}

.work-box.box-2:before{
    background: #FF9C00;
}

.work-box.box-3:before{
    background: #FFAA2B;
}

.work-box h3 {
    font-size: 30px;
    color: #000000;
    padding-left: 95px;
    line-height: 28px;
    min-height: 85px;
    display: flex;
    align-items: center;
}

.work-icon {
    position: absolute;
    left: -60px;
    top: 20px;
    z-index: 1;
    transition: all 1s;
}
.work-box:hover .work-icon{
    transform: rotateY(360deg);
}

.work-box p {
    margin-top: 70px;
}

.work-box:after{
    content: '';
    border-radius: 80px 0;
    border: 2px dashed #3E3E3E;
    position: absolute;
    top: -15px;
    bottom: -15px;
    left: -15px;
    right: -15px;
}
.work-box:before{
    content: '';
    background: #ED8824;
    position: absolute;
    top: -30px;
    border-radius: 80px 0;
    width: 100%;
    height: 100%;
    right: -30px;
    z-index: -1;
    transition: all 0.6s;
}
.z-index{
    position: relative;
    z-index: 2;
}
.app-download-wrapper{
    padding-top: 150px;
}
.app-btns{
    transform: translate(0,0);
    transition: all 0.6s;
    margin-top: 30px;
}
.app-btns:hover{
    transform: translate(0px,10px);
}
.single-testimonial{
    border-radius: 15px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    padding: 20px;
    margin-right: 20px;
    background: #fff;
}
.jcarousel{
    padding: 20px;
}
.tesitmonial-img{
    border-radius: 50px;
    display: inline-block !important;
    max-width: 60px !important;
}
.single-testimonial p{
    font-size: 14px;    
    margin-top: 20px;
}
.testimonial-name{
    font-size: 22px;
    font-weight: 500;
    font-family: 'Squada One', cursive;
}
.testimonial-section{
    padding: 100px 0;
    background: url(../images/testimonial-bg.png) no-repeat;
    position: relative;
}
.testimonial-section:after{
    content: '';
    background: url(../images/banner-right.png) no-repeat right;
    width: 174px;
    height: 174px;
    display: block;
    position: absolute;
    top: 0;
    right: 30px;    
    animation-name: bounce;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}
@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
.jcarousel-control{
    text-align: center;
}
.subscribe-box{
    background: url(../images/subscibe-img.png) no-repeat center;
    padding: 50px;
    border-radius: 10px;
    z-index: 1;
    position: relative;
    background-size: cover;
}
.subscribe-box h2{
    color: #fff;
    font-family: 'Squada One';
    font-size: 56px;
    line-height: 56px;
    text-shadow: 0 0 9px rgba(0 0 0 / 20%);
}
.form-control{
    border: 2px solid #fff !important;
    background: transparent !important;
    border-radius: 50px !important;
    height: 60px;
    color: #fff !important;
    position: relative;
    padding: 10px 25px !important;
}
.form-control::placeholder{
    color: #fff;
}
.input-group-text{
    position: absolute;
    right: -2px;
    top: 0;
    background: #59B645;
    color: #fff;
    border-radius: 50px !important;
    padding: 16px 30px;
    border: 2px solid #fff;
    z-index: 4;
}
.input-group-text:hover{
    background: #ED8824;
    color: #fff;
}
footer{
    background: #EEEEEE;
    padding-top: 150px;
    margin-top: -100px;
}
.footer-links{
    text-align: right;
}
.footer-links li{
    display: inline-block;    

}
.footer-links li a{
    color: #000000;
    font-weight: 500;
    border-right: 1px solid #000;
    padding: 0 20px;
    line-height: 12px;
    display: inline-block;
}
.footer-links li a:hover{
    color: #59B645
}
.footer-links li:last-child a{
    border-right: 0;
    padding-right: 0;   
}
.social-links{
    text-align: right;
}
.social-links li{
    display: inline-block;
}
.social-links li a{
    font-size: 20px;
    color: #666666;
    border: 1px solid #333333;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50px;
}
.social-links li a:hover{
    color: #59B645;
    border-color: #59B645;
}
.work-box h3 {
    font-size: 24px;
}


.logo-shape:after{
    content: '';
    background: url(../images/banner-right.png) no-repeat right;
    width: 174px;
    height: 174px;
    display: block;
    position: absolute;
    right: 30px;
    top: -140px;
    animation-name: bounce;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}
.logo-shape:before{
    content: '';
    background: url(../images/banner-right.png) no-repeat right;
    width: 174px;
    height: 174px;
    display: block;
    position: absolute;
    left: 30px;
    bottom: -110px;
    z-index: 4;
    animation-name: bounce;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.dashed-box{
    position: absolute;
    left: -35px;
    top: -25px;
}

.heartbeat {
    animation: heartbeat 3s infinite alternate;
}

@-webkit-keyframes heartbeat {
    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes heartbeat {
    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

.agency-img{
    position: absolute;
    top: -340px;
}
.shadow-box{
    background: rgba(255,255,255,.3);
    /*padding: 0px 50px; */
    border-radius: 20px;
    box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}
/*.shadow-box .nav-link{
    padding: 0;
}*/
.shadow-box .nav-item{
    padding: 0;
    width: 50%;
    text-align: center;
}

.shadow-box .nav-tabs .nav-link{
    padding: 24px 40px !important;
    background: #fff;
    color: #333333 !important;
    font-size: 20px;
    font-weight: 600;
    border-radius: 20px;
}
.shadow-box .nav-tabs .nav-link.active{
    background-color: #ED8824;
    border-color: transparent;
    /*padding: 24px 40px !important;*/
    color: #fff !important;
}
.shadow-box-content{
    padding: 30px 50px;
}
.shadow-box .nav-item::after{
    content: none;
}
.shadow-box .nav-tabs {
    border-bottom: 0;
}
.shadow-box .nav-item:first-child .nav-link{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.shadow-box .nav-item:last-child .nav-link{
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.form-label{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    display: block;
    position: relative;
}
.shadow-box .form-control{
    background: rgba(255,255,255,.6) !important;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border: 0 !important;
    color: #333 !important
}
.shadow-box .form-control::placeholder{
    color: #666666;
}
.shadow-box .form-control:focus{
    background: #fff !important;
    color: #333 !important;
}
.box-btn{
    background: #59B645;
    border: 2px solid #fff;
    font-size: 16px;
    color: #fff;
    width: 100%;
    border-radius: 10px 35px;
    padding: 20px;
    font-weight: 600;
}
.box-btn:hover{
    background: #ED8824;
    color: #fff;
}
.already-acc-txt{
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
}
.already-acc-txt a{
    color: #59B645;
    margin-bottom: 40px;
}
.already-acc-txt a:hover {
    color: #ed8824;
}
.mb-120{
    margin-bottom: 120px;
}
.btn-default{
    background: #59B645;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    border: 2px solid #fff;
    /*width: 100%;*/
}
.btn-default:hover{
    color: #fff;
    background: #ed8824;
}
.black-btn{
    background: #4F4E5A;
    color: #fff;
}
.card-box{
    background: rgba(255,255,255,.8);
}
.box-card-title{
    background: #fff;
    padding: 20px;
    font-size: 26px;
    font-family: 'Squada One', cursive;
    border-radius: 20px;   
}
.box-card-title:before{
    content: '';
    background: #FE9858;
    width: 4px;
    height: 17px;
    display: inline-block;
    margin-right: 15px;
}
.single-card{
    padding: 30px;
    background: rgba(255,255,255,.8);
    margin-bottom: 30px;
}
.card-number{
    font-size: 26px;
    color: #333333;
    font-weight: 600;
    margin: 20px 0;
}
.expire-text{
    font-size: 18px;
    color: #757575;
    font-weight: 600;
}
.round-icon{
    background: #fff;
    border-radius: 50px;
    border: 1px solid #A0A0A0;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7A7A7A;
}
.custom-control.custom-radio{
    margin-bottom: 6px;
}
.custom-control-label::before{
    width: 30px;
    height: 30px;
    top: -10px;
    left: -30px;
}
.round-icon{
    margin-bottom: 10px;
    display: flex;
    margin-left: auto;
}
.round-icon:hover{
    border: 1px solid #fff;
    background: #ED8824;
    color: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
}
/*.custom-radio .custom-control-input:checked~.custom-control-label::after{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='#000000'/%3e%3c/svg%3e");
}*/

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #fff;
    background-color: #fff;
}
.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e);
    background: #59B645;
    border-radius: 30px;
    width: 20px;
    height: 20px;
    top: -5px;
    left: -25px;
}
.custom-control-label::after {
    position: absolute;
    top: -10px;
    left: -30px;
    display: block;
    width: 30px;
    height: 30px;
    content: "";
}
.innerpage-wrapper{
    min-height: 900px;
    height: auto;
    /*background-size: contain;*/
}
.innerpage-auto{
    height: auto;
}
.innerpage-wrapper h1{
    font-size: 50px;
}
.innerpage-wrapper h1::before{
    top: 20px;
    bottom: 20px;
}
.user-image{
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 1px solid #CECECE;
    margin-right: 10px;
}
.nav-item.dropdown{
    background: #fff;
    border-radius: 50px;
    padding: 0px 10px 0 0;
}
.nav-item.dropdown .nav-link{
    color: #414141 !important;
    font-size: 15px !important;
    text-transform: none !important;
    font-weight: 500;
    /*padding-left: 15px;*/
}
.navbar-light .navbar-nav .nav-link.dropdown-toggle:hover{
    background: transparent;
}
.dropdown-menu .dropdown-item{
    color: #000 !important;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 10px 15px !important;
    border-bottom: 1px solid #ddd
}
.dropdown-menu{
    min-width: 190px;
    border-radius: 10px;
    overflow: hidden;
}
.dropdown-menu .dropdown-item:hover{
    color: #fff !important;
}

/* css login*/

.otp-btn {
    background: #ED8824;
    float: right;
    padding: 2px 10px;
    border-radius: 30px;
    margin-top: 5px;
    border: 1px solid #fff;
}
.otp-btn a{
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}
.otp-btn:hover{
    background: #59B645;
}
.mt-40{
    margin-top: 40px;
}
.dropdown-menu.show{
    padding: 0;
}
.profile-box{
    background: rgba(255,255,255,.8)   
}
.notverified-txt{
    font-size: 13px;
    color: #ED8824;
    font-weight: 400;
    text-transform: none;
    text-align: right;
    position: absolute;
    right: 0;
}
.verified-txt {
    font-size: 13px;
    color: #59b645;
    font-weight: 400;
    text-transform: none;
    text-align: right;
    position: absolute;
    right: 0;
}
.verified-txt a{
    font-size: 18px;
    color: #3F3F3F;
    display: inline-block;
    margin-left: 5px;
}
.verified-txt a:hover{
    color: #59B645
}
.mob-number{
    background: #fff;
    border-radius: 15px;
    padding: 12px;
}
.dropdown-toggle::after{
    vertical-align: 2px;
}
.edit-pro-btn{
    background: #59b645;
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins';
    padding: 12px 20px;
    border-radius: 50px;
    position: absolute;
    right: 30px;
    top: 14px;
}
.edit-pro-btn i{
    margin-right: 10px;
}
.edit-pro-btn:hover{
    background: #ED8824;
    color: #fff;
}
.search-box{
    position: relative;
}
.seatch-input{
    background: #fff;
    border-radius: 20px;
    width: 100%;
    padding: 24px 20px;
    border: 0;
    box-shadow: 0 0 18px rgb(0 0 0 / 20%)
}
.search-btn{
    background: #ED8824;
    color: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 20px;
    font-size: 18px;
}
.search-btn:hover{
    background: #59B645;
    color: #fff;
}
.contact-list .media{
    border-bottom: 1px solid #C9C9C9;
    padding: 15px 0;
    position: relative;
    z-index: 1;
}
.contact-list .media span{
    width: 50px;
    height: 50px;
    background: #4F4E5A;
    color: #FFFFFF;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-right: 15px;
}
.contact-list .media h4{
    font-size: 16px;
    font-weight: 500;
    color: #4F4E5A;
    margin-bottom: 3px;
}
.contact-list .media p{
    font-size: 14px;
    font-weight: 500;
    color: #4F4E5A;
    margin: 0;
}
.contact-list{
    padding: 0 !important;
}
.contact-list .media:before{
    content: '';
    background: #ED8824;
    top: 0; 
    bottom: 0;
    position: absolute;
    z-index: -1;
    left: -20px;
    right: -20px;
    display: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    transition: all 0.6s;
}
.contact-list .media:hover:before, .contact-list .media.active:before{
    display: block;
}
.contact-list .media:hover{
    border-color: transparent;
}
.contact-list .media:hover h4, .contact-list .media:hover p, .contact-list .media.active h4, .contact-list .media.active p{
    color: #fff;
}
.contact-list .media:hover span, .contact-list .media.active span{
    background: #fff;
    color: #EC8724;
}
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){
    width: 100%;
}
.bootstrap-select .dropdown-toggle{
    background: rgba(255,255,255,.6);
    border-radius: 50px !important;
    height: 60px;
    color: #fff !important;
    position: relative;
    padding: 10px 25px !important;
    width: 100%;
    color: #666666;
    box-shadow: 0 0 15px rgb(0 0 0 / 20%);
    outline: none;
}
.bootstrap-select .dropdown-toggle .filter-option-inner-inner{
    color: #666666;
}
.bootstrap-select .dropdown-toggle::after{
    border-top: .3em solid #333;
}
.bootstrap-select .dropdown-toggle .filter-option{
    display: flex;
    align-items: center;
}
.bootstrap-select .dropdown-toggle:focus, .bootstrap-select>select.mobile-device:focus+.dropdown-toggle{
    outline: none !important;
}
.bootstrap-select .dropdown-menu li a{
    border-bottom: 1px solid #ddd;
    padding: 13px 20px !important;
}
.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show>.btn-light.dropdown-toggle{
    background-color: #fff;
    border-color: #ffff;
}
.bootstrap-select .dropdown-menu li a:hover{
    background: #ED8824
}
.dropdown-item.active, .dropdown-item:active{
    background: #ED8824;
    color: #fff !important;
}
.bank-name{
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}
.mb-220{
    margin-bottom: 220px !important;
}
.send-link{
    color: #ED8824;
    font-size: 13px;
    font-style: italic;
}
.send-link:hover{
    color: #59B645
}
.eye-icon{
    color: #465057;
    font-size: 16px;
}
.eye-icon:hover{
    color: #ED8824;
}
.table td, .table th{
    vertical-align: middle;
    padding: 8px 5px;
    border-bottom: 1px solid #dee2e6;
    border-top: 0;
    white-space: nowrap;
}
.table td{
    font-size: 13px;
    font-weight: 400;
    color: #61606C;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fff;
}
.table th{
    font-size: 14px;
}
.pagination{
    justify-content: flex-end;
}
.pagination-left{
    display: flex;
    align-items: center;
}
.pagination-left p{
    font-size: 13px;
    color: #757485;    
    margin: 0 10px 0 0;
}
.pagination-left select{
    border: 0;
    background-color: #fff;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    padding: 10px; 
    border-radius: 7px;
    width: auto !important;
    min-width: 60px;
    font-size: 17px;

}
.page-item .page-link {
    border-radius: 50px !important;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    margin: 0 3px;
    color: #747474;
}
.page-item .page-link.active{
    background: #59B645;
    color: #fff;
}
.page-item .page-link:hover{
    background: #59B645;
    color: #fff;   
}
.custom-select{
    background: url(../images/down-arrow.png) no-repeat right .75rem center/10px 6px;
}
.history-box{
    background: rgba(255,255,255,.8);
}
.history-box .shadow-box-content {
    padding: 30px 15px;
}
.filter-btn{
    right: 15px;
    background: #fff;
    color: #666;
    box-shadow: 0 3px 7px rgb(0 0 0 / 20%);
}
.mr--20{
    margin-right: -20px;
}
.bank-name{
    font-weight: 600 !important;
}
.white-bg{
    background: #fff;
    padding: 15px 10px;
}
.user-name-history{
    font-size: 14px;
    text-transform: uppercase;
}
.user-history{
    color: #000;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #A6A6A6;
    text-transform: uppercase;
    padding: 20px 0;
}
.custom-pad{
        padding: 20px 30px;
}
.amount-box{
    background: #fff;
    padding: 15px 10px;
    margin-bottom: 20px;
}
.amount-box h2{
    font-size: 20px;
    color: #000 !important;
    color: #59B645;
}
.amount-box p{
    font-size: 20px;
    color: #59B645;
    font-weight: 500;
}
.detail-info p{
    color: #605F6C;
    font-size: 13px;
    border-bottom: 1px solid #E2E2E2;
    padding: 0px 0px 20px 0px; 
}
.detail-info span{
    color: #000;
    font-size: 13px;
    font-weight: 600;
    margin-left: 20px;
}
.btn-small {
    background: #59B645;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 50px;
    border: 2px solid #fff;
    position: absolute;
    right: 30px;
    top: 30px;
}
.btn-small:hover {
    color: #fff;
    background: #ed8824;
}
.custom-align{
    text-align: right;
}

.dropdown-menu a .fa{
    margin-right: 10px;
}
.green-box {
    background: #59B645;
    width: 100%;
    display: block;
    padding: 8px 40px;
    text-align: center;
    border-radius: 10px;
    opacity: 0.7;
}
.red-box {
    background: #ff0000;
    width: 100%;
    display: block;
    padding: 8px 40px;
    text-align: center;
    border-radius: 10px;
    opacity: 0.7;
}
.yellow-box {
    background: #ffc107;
    width: 100%;
    display: block;
    padding: 8px 40px;
    text-align: center;
    border-radius: 10px;
    opacity: 0.7;
}
.green-box p, .red-box p, .yellow-box p{
    color: #fff;
    font-weight: 600;
    text-shadow: -1px -1px 1px rgba(150, 150, 150, 0.50);
}
.file-upload{
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    font-size: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4f4e5a;
    cursor: pointer;
    position: relative;
}
.file-wrapper{
    width: 50px;
    height: 50px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 6px rgb(0 0 0 / 30%);
    border-radius: 100%;
}
#profile_image{
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    top: 0;
    opacity: 0;
}
.contact-list .user-image {
    width: 50px;
    height: 50px;
    margin-right: 0;
}
.custom-control-label::before{
    top: -4px;
}
.custom-radio .custom-control-input:checked~.custom-control-label::after{
    top: 1px;
}
.remove-btn{
    color: #fff;
    background-color: #ed8824;
    border-color: #fff;
    margin-top: 58px;
    border-radius: 50px;
    text-transform: uppercase;
}

.remove-btn:hover {
    color: #fff;
    background-color: #59B645;
    border-color: #fff;
}

.view-more-link{
    position: relative;
    z-index: 3;
    background: #000;
    border: 0;
    /*border-radius: 50px;*/
    border-radius: 3px 15px;
    color: #fff;
    font-size: 13px;
    padding: 5px 15px;
    transition: all 0.7s;
}
.view-more-link:hover{
    background: #ED8824
}
.show-on-hover {
    display: none;
    position: absolute;
    background: #fff;
    padding: 15px;
    min-width: 300px;
    box-shadow: 0 0 15px rgb(0 0 0 / 20%);
    border-radius: 30px 5px ;
    font-size: 13px;
    z-index: 1;
    /*margin-top: 10px;*/
    bottom: 60px;
}
.show-on-hover.show{
    display: block;
}
.show-on-hover p {
    margin-top: 0 !important;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px !important;
}
.show-on-hover ul{
    margin-bottom: 10px;
}