/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.ibs-remove-margin {
    margin: 0 !important;
}
.uk-card-title {
    font-size: 1.5rem !important;
}
.uk-notification-message.uk-notification-message-warning {
    background: #ffa500 !important;
    color: #fff !important;
}

.uk-notification-message.uk-notification-message-success {
    background: #008000 !important;
    color: #fff !important;
}

.uk-notification-message.uk-notification-message-danger {
    background: #ff0000 !important;
    color: #fff !important;
}

input[type="number"].uk-input, input[type="text"].uk-input {
    padding: 0 10px;
    border-radius: unset;
}

#livitpay-register-form #mobileCode {
    top: 10px;
    bottom: unset;
}

input[type=checkbox].uk-checkbox {
    height: 16px !important;
    width: 16px !important;
    float: unset !important;
}
.uk-close:hover {
    background: unset;
}

.uk-button.ibs-floating-open-button, #ibs-close-mobile-menu {
    display: none;
}

#transaction-table thead tr:nth-child(1), #transaction-table thead th {
    background: #111;
}

#transaction-table_wrapper select {
    background-image: unset;
    appearance: auto;
}

.dataTables_wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.dataTables_wrapper .dataTables_paginate {
    margin: 10px 0; /* Add margin */
    padding: 10px; /* Add padding */
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    margin: 0 5px; /* Add margin between buttons */
    padding: 5px 10px; /* Add padding to buttons */
    text-decoration: none;
}

a.paginate_button {
    color: #111;
}

a.paginate_button.current {
    font-weight: bold;
}

#transaction-table_filter input {
    margin-left: 10px;
}
.uk-table-small td,.uk-table-small th {
    font-size: 16px !important;
}
#recharge-wallet-modal .uk-modal-dialog,
#load-euro-visa-fund-modal .uk-modal-dialog,
#load-usd-visa-fund-modal .uk-modal-dialog {
    width: 400px;
}

.ibs-button-icon.uk-button {
    padding: 5px 0px;
}

#sidebar-collapse a {
    text-decoration: none;
}

.ibs-fa {
    font-size: 15px;
    margin-right: 5px;
}

#livitpay-dashboard.livitpay-container {
    max-width: 90vw;
    margin: 100px auto !important;
}

/* card */

.loop_card {
  position: relative;
  width: 350px;
  height: 221px;
  transform-style: preserve-3d;
  perspective: 500px;
}

.loop_card .face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  /*background: #07739e;*/
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  transition: 1s;
  backface-visibility: hidden;
}

/* card rotate */

.loop_card:hover .face.front {
  transform: rotateY(180deg);
}

.loop_card .face.back {
  transform: rotateY(180deg);
}

.loop_card:hover .face.back {
  transform: rotateY(360deg);
}

.loop_card .face.front .chip {
    position: absolute;
    top: 20px;
    left: 39px;
    max-width: 50px;
}

.loop_card .face.front .number {
  position: absolute;
  bottom: 100px;
  left: 40px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 6px;
  font-size: 18px;
  text-shadow: 0 2px 1px #0005;
  font-family: sans-serif;
}

/* holder name */

.loop_card .face.front .valid {
  position: absolute;
  bottom: 35px;
  left: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 300;
  line-height: 1em;
  text-align: right;
}

.loop_card .face.front .valid span:last-child {
  margin-left: 20px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
}

.holder {
  position: absolute;
  bottom: 15px;
  left: 40px;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
}

.blackbar {
  position: absolute;
  width: 100%;
  top: 30px;
  height: 50px;
  background: #000;
}

/* card back */

.ccvtext {
  position: absolute;
  top: 110px;
  left: 30px;
}

.ccvtext p {
  color: #fff;
  font-weight: 400;
  font-size: 0.6em;
  text-transform: uppercase;
}

.whitebar {
  position: relative;
  width: 230px;
  height: 40px;
  background: #fff;
  margin-top: 5px;
}

.ccv {
    position: relative;
    background: #ccc;
    color: #fff;
    width: 50px;
    height: 30px;
    color: #111;
    font-weight: 600;
    letter-spacing: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -35px;
    left: 230px;
}


/* Loop Card CSS END */

@media (max-width: 767.98px) {
    
    #livitpay-dashboard .sidebar-collapse {
        position: fixed;
        top: 0%;
        left: -300px;
        width: 300px;
        background-color: #f8f9fa;
        transition: left 0.3s ease;
        z-index: 999;
        height: auto;
    }
    
    #livitpay-dashboard .open-menu {
        box-shadow: #3d3a3a7a 0px 0px 20px 1px;
        left: 0; /* Slide the menu into view */
    }
    
    .uk-button.ibs-floating-open-button {
        display: block;
        padding: 0px 0px;
        position: fixed;
        bottom: 10%;
        right: 10%;
        border-radius: 52%;
        z-index: 999;
        font-size: x-large;
        width: 60px;
        height: 60px;
    }
    
    #ibs-close-mobile-menu {
        display: block;
    }
    
    #sidebar-collapse ul {
        margin-top: 50px;
    }
}