/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&family=Poppins:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&family=Poppins:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Lobster&family=Poppins:wght@200;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

 

/* LAYOUT
================================================== */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}
body{
    position: relative;
}
header{
    background: #cf173c;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 20px;
    z-index: 9999999;
}
.header{
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Toggle bar*/
.toggle-bar{
    position: relative;
}
.toggle-bar .toggle{
    height: 4px;
    width: 33px;
    margin-bottom: 5px;
    background: #fff;
    transition: all 300ms ease-out;
    position: relative;
}
.toggle-bar .overlap, .toggle-bar .overlap1{
    background: transparent;
    position: absolute;
    top: -10px;
    left: -5px;
    right: 0;
    bottom: 0;
    padding: 20px;
    cursor: pointer;
}
.toggle-bar .overlap{
    z-index: 1;
}
.toggle-bar .overlap1{
    z-index: -1;
}

@media only screen and (max-width: 767px) {
    /* toggle-bar */
    .toggle-bar{
        align-items: center;
        justify-content: center;
        flex-direction: column;
        
    }
  }

  header .balance{
    background: white;
    margin-top: 10px;
    padding: 25px 20px;
    box-shadow: 0px 8px 8px -5px rgba(0, 0, 0, 0.3)
}
header .balance .balance-top{
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .balance .balance-top .balance-naira h1{
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}
header .balance .balance-top .plus p{
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ccc;
    color: #666;
    font-size: 25px;
    font-weight: 700;
    cursor: pointer;
}
header .balance .balance-top-2{
    margin-top: 20px;
}
header .balance .balance-top-2 .plus{
    display: flex;
    justify-content: space-between;
}
header .balance .balance-top-2 .plus p{
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
}
header .balance .balance-top-2 .plus span{
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}

.fixed-bottom{
    position: fixed;
    background: white;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    z-index: 999999999;
}
.fixed-bottom .cont{
    flex-basis: 20%;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    border-right: 1px solid #ccc;
}
.fixed-bottom .cont i{
    font-size: 20px;
}
.fixed-bottom .cont span{
    font-size: 12px;
    margin-top: 10px;
}
.img-2{
    display: none;
}

@media only screen and (max-width: 767px) {
    .img-1{
        display: none;
    }
    .img-2{
        display: block;
    }
}

.inner-transaction{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 330px;
}
.inner-transaction .inner{
    width: 230px;
    padding: 20px;
    margin: 10px;
    background: #fff;
    box-shadow: 0px 8px 8px -5px rgba(0, 0, 0, 0.3);
}
.inner-transaction .inner h1{
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}
.transactions{
    margin-top: 40px;
}
.transactions .top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ccc;
    padding-top: 5px;
}
.transactions .top p{
    color: rgb(9, 223, 91);
    cursor: pointer;
}
@media only screen and (max-width: 992px) {
    .inner-transaction .inner{
        width: 160px;
    }
}

@media only screen and (max-width: 540px) {
    .inner-transaction .inner{
        width: 160px;
    }
    header .balance .balance-top-2 .plus p{
        height: 40px;
        width: 40px;
    }
    header .balance .balance-top-2 .plus span{
        font-size: 12px;
    }
    header .balance .balance-top .plus p{
        height: 40px;
        width: 40px;
    }
}

.first-section{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 300ms ease-in-out;
}

.sidebar{
    position: fixed;
    height: 0;
    width: 100%;
    top: 60px;
    left: 0;
    background: #cf173c;
    z-index: 999999999999999;
    transition: all 300ms ease-out;
    padding: 0 15px;
    overflow: hidden;
    padding-top: 50px;
    opacity: 0;
}
.sidebar ul{
}
.sidebar a{
    text-decoration: none;
    color: black;
}
.sidebar li{
    list-style: none;
    padding: 15px;
    background: white;
    margin-bottom: 10px;
    font-size: 14px;
}
.sidebar i{
    margin-right: 10px;
}


