:root {
    --primary: #0676ed;
    --background: #222b45;
    --warning: #f2a600;
    --success: #12c99b;
    --error: #e41749;
    --dark: #151a30;
}


.gradient-purple {
    background-color: #8E2DE2;
    background: -webkit-linear-gradient(45deg, #4A00E0 0%, #8E2DE2 100%);
    background: linear-gradient(45deg, #4A00E0 0%, #8E2DE2 100%);
}

.gradient-orange {
    background: #f7b733 !important;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #fc4a1a, #f7b733) !important;  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #fc4a1a, #f7b733) !important; /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.custom-shadow {
    box-shadow: 0 4px 20px 1px rgba(0, 0, 0, .06), 0 1px 4px rgba(0, 0, 0, .08) !important;
}

.custom-card-shadow {
    border-radius: 10px !important;
    box-shadow: 0 4px 20px 1px rgba(0, 0, 0, .06), 0 1px 4px rgba(0, 0, 0, .08) !important;
    border: 0 !important;
}

.outlined-card {
    border: 1px solid #e3e6f0 !important;
    border-radius: 20px !important;
}

header.wrapper{
    background: #153d77;
    height: 264px;
    left: 0;
    top: 0;
    width: 100%;
    padding: 1.5rem;
}

header h1{
    color: #fff;
    font-size: 1.640625rem;
}

header .header-title{
    margin-bottom: 3rem;
    margin-top: 1.3rem;
}

.table-pending{
    background-color: #fbf4dd !important;
    color: #f6a427;
}

.table-paid{
    background-color: #e3ffec !important;
    color: #049176;
}

.app-header {
    background-color: #1a1c22 !important;
}

*.primary-color {
    color: #8E2DE2 !important;
}

.navbar-brand img{
    height: 37px;
}
.hover-button{
    transition: all 0.2s;
 }
 .hover-button:hover{
    transform: scale(1.05);
 }

/* .noty_type__success{
    background-color: #049176 !important;
    color: #fff !important;
    padding: 6px 10px !important;
}
.noty_type__error{
    background-color: #f6a427 !important;
    color: #fff !important;
    padding: 6px 10px !important;
}
.noty_type__warning{
    background-color: #f6a427 !important;
    color: #fff !important;
    padding: 6px 10px !important;
}
.noty_type__info{
    background-color: #049176 !important;
    color: #fff !important;
    padding: 6px 10px !important;
} */

.noty_bar  {
    min-height: 67px;
    width: 560px;
    max-width: 90%;
    border-radius: 12px;
    padding: 16px 22px 17px 20px;
    display: flex;
    align-items: center;
    color: #fff !important;
  }
  .noty_type__warning {
    background: var(--warning);
  }
  .noty_type__success {
    background: var(--success);
  }
  .alert-primary {
    background: var(--primary);
  }
  .alert-dark {
    background: var(--dark);
  }
  .noty_type__error {
    background: var(--error);
  }
  .noty_bar  .icon__wrapper {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.253);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .noty_bar  .icon__wrapper span {
    font-size: 21px;
    color: #fff;
  }
  .noty_bar  p {
    color: #fff;
    font-family: Verdana;
    margin-left: 10px;
  }
  .noty_bar  p a,
  .noty_bar  p a:visited,
  .noty_bar  p a:active {
    color: #fff;
  }
  .noty_bar  .open {
    margin-left: auto;
    margin-right: 5px;
  }
  .noty_bar  .close, .noty_bar  .open {
    color: #fff;
    transition: transform 0.5s;
    font-size: 18px;
    cursor: pointer;
  }
  .noty_bar  .close:hover, .noty_bar  .open:hover {
    transform: scale(1.3);
  }
