/*----------------------------------------------
    # Imports
----------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..700;1,100..700&family=Outfit:wght@300..900&display=swap'");
@import url('vendor.css');
@import url('main.css');

/*---------------------------------------------------
	responsive style
----------------------------------------------------*/
@media all and (min-width: 700px) {
	.search-popup .search-form {
		min-width: 550px;
	}
}
@media all and (max-width: 440px) {
	.ba-navbar {
		width: 270px;
	}
	.search-popup .search-form .form-group .form-control {
	    border: none;
	    border-top-right-radius: 6px;
	    border-bottom-right-radius: 6px;
	    height: 54px;
	    padding: 0 70px 0 12px;
	    font-size: 14px;
	}
	.qr-button {
	    display:none;
	}
}
@media all and (max-width: 360px) {
	.ba-navbar {
		width: 280px;
	}
	.ba-balance-inner {
	    margin: 0 30px;
	}
	.ba-add-balance-inner .btn {
	    padding: 0 14px;
	    font-size: 13px;
	}
	.ba-add-balance-inner .btn i {
	    padding-left: 4px;
	}
	.single-goal .details {
	    padding: 20px 15px;
	}
	.single-goal .circle-inner {
	    padding: 20px 10px;
	}
	.single-goal.single-goal-one .goal-amount,
	.single-goal .details h6 {
	    font-size: 15px;
	}
	.ba-single-history {
		padding: 15px;
	}
	.ba-single-history h6 {
		font-size: 15px;
	}
	.ba-single-history h5 {
		font-size: 16px;
	}
	.ba-single-transaction {
	    padding: 12px;
	}
	.ba-single-transaction .thumb {
	    margin-right: 8px;
	}
	.ba-single-transaction p {
	    font-size: 11px;
	}
	.ba-single-transaction h5 {
	    font-size: 15px;
	}
	.ba-single-transaction .amount {
	    right: 10px;
	    font-size: 13px;
	}
	.single-blog .details {
	    padding: 15px;
	}
	.ba-navbar-user .details h5 {
		font-size: 16px;
		margin-bottom: 2px;
	}
	.ba-navbar-user .details p {
		font-size: 13px;
	}
	.ba-navbar .ba-add-balance-title h5 {
	    font-size: 16px;
	}
	.ba-add-balance-title p {
	    padding-top: 0;
	    font-size: 13px;
	}
	.ba-single-transaction.style-two .amount {
	    width: 64px;
	}
	.transaction-details-inner li {
	    list-style: none;
	    display: block;
	    overflow: hidden;
	    border-bottom: 1px solid #ececec;
	    background: #fff;
	    padding: 20px 15px;
	    font-size: 14px;
	    font-weight: 500;
	}
	.section-title .title {
	    font-size: 22px;
	}
	.section-title a {
	    padding-top: 3px;
	}
	.verification-inner h3 {
	    font-size: 22px;
	}
	.qr-button {
	    display:none;
	}
	.transaction-details-inner li .float-start {
	    min-width: 120px;
	}
	.uikit-alert-inner {
	    width: 280px;
	}
}

/*----------------------------------------------
    # Custom
----------------------------------------------*/
.bg-main{
	background: var(--main-color) !important;
}
.bg-img{
	background-position: center center; background-repeat: no-repeat; background-size: cover;
}
.show-pass{
	background: transparent; border: 0; float: right; z-index: 900; position: relative; margin-top: -35px;
}

#tranBody{
	box-shadow: 0px 3px 6px 0px rgba(31, 31, 31, 0.08);
}
  .animated-top-border {
    position: relative;
    padding: 30px;
  }

  /* The animated black line at the top */
  .animated-top-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 2.5px;
    width: 0%;
    background-color: #efefef;
    animation: slideLine 2s ease-in-out infinite;
  }

  @keyframes slideLine {
    0%, 100% {
      width: 0%;
      left: 0;
    }
    50% {
      width: 100%;
      left: 0;
    }
  }