/* =========== Google Fonts ============ */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/* =============== Globals ============== */
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #00DBAA;
  --white: #fff;
  --gray: #f5f5f5;
  --black1: #222;
  --black2: #999;
  --navcolor: #8B9198;
  --border:#DBE0EC;
  
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  position: relative;
  width: 100%;
}

/* =============== Navigation ================ */
.navigation {
  position: fixed;
  width: 207px;
  height: 100%;
  background: #00dbaa45;
  border-left: 10px solid #00dbaa0a;
  transition: 0.5s;
  overflow: hidden;
  border-right: 1px solid #00dbaa0a;
}
.navigation.active {
  width: 80px;
}

.d-none {
  display:none;
}
.navigation ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-right: 10px;
}

.navigation ul li {
  position: relative;
  width: 100%;
  list-style: none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-bottom: 7px;
}

.navigation ul li:hover {
  background-color: #000;
}
.navigation ul li.active {
  background-color: #000;

}
.navigation ul li.active a {
  color: var(--white);
}
.navigation ul li:nth-child(1) {
  margin-bottom: 40px;
  pointer-events: none;
}

.navigation ul li a {
  position: relative;
  display: block;
  width: 100%;
  display: flex;
  text-decoration: none;
  color: var(--navcolor);
  font-size: 13px;
  font-weight: 600;
}
.navigation ul li:hover a,
.navigation ul li.hovered a {
  color: var(--white);
}

.navigation ul li a .icon {
  position: relative;
  display: block;
  min-width: 60px;
  height: 45px;
  line-height: 62px;
  text-align: center;
}
.navigation ul li a .icon img {
  margin-left: 13px;
  margin-top: 19px;
}
.navigation ul li a .icon ion-icon {
  font-size: 1.5rem;
}

.navigation ul li a .title {
  position: relative;
  display: block;
  padding: 0 10px;
  height: 45px;
  line-height: 46px;
  text-align: start;
  white-space: nowrap;
}


/* ===================== Main ===================== */
.main {
  position: absolute;
  width: calc(100% - 207px);
  left: 207px;
  min-height: 100vh;
  background: var(--white);
  transition: 0.5s;
}
.main.active {
  width: calc(100% - 80px);
  left: 80px;
}

.topbar {
  width: 96%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
  margin-top: 21px;
}
.left_side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.toggle {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  cursor: pointer;
}
.add_cateogry {
  width: 100%;
  padding: 13px 55px;
}
.add_cateogry h1 {
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  color: #222222;
}
.add_cateogry p {
  margin-top: 9px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #A5A5A5;
}
.d-flex {
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.content-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.mx-height-100 {
  max-height: 100px !important;
}
.content-round {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.insert_box {
  margin: 13px 55px;
  background: #FFFAF2;
  border-radius: 14px;
  padding: 43px 35px;
}
 label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #C7C7C7;
  line-height: 24px;
}
.mt-2 {
  margin-top:12px;
}
.form-group input {
  width: 244px;
  height: 43px;
  border: 1px solid #C2C2C2;
  border-radius: 14px;
  margin-top: 7px;
  color: #202020;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
}
.form-group select {
  width: 244px;
  height: 43px;
  border: 1px solid #C2C2C2;
  border-radius: 14px;
  margin-top: 7px;
  color: #202020;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
}
.save_btn {
  width: 143px;
  height: 43px;
  margin-top: 50px;
  border: none;
  background: #6418C3;
  border-radius: 14px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}
.save_btn span {
  display: inline-block;
  font-size: 21px;
  padding: 5px;
  vertical-align: middle;
}
.cancel_btn {
  width: 143px;
  height: 43px;
  margin-top: 50px;
  border: none;
  background: #C31818;
  border-radius: 14px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  margin-left: 11px;
}
.cancel_btn span {
  display: inline-block;
  font-size: 21px;
  padding: 5px;
  vertical-align: middle;
}
.w-50 {
  width: 50%;
}
.search {
  position: relative;
  width: 350px;
  margin: 0 10px;
}

.search label {
  position: relative;
  width: 100%;
}

.search label input {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  padding: 5px 20px;
  padding-left: 35px;
  font-size: 14px;
  outline: none;
  font-weight: 400;
  border: none;
  background: #F8F8FD;
}

.search label ion-icon {
  position: absolute;
  top: 13px;
  left: 10px;
  font-size: 1.2rem;
}

.user {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.user img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================= Cards ====================== */
.cardBox {
  position: relative;
  width: 100%;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.cardBox .card {
  position: relative;
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
}

.cardBox .card .numbers {
  position: relative;
  font-weight: 500;
  font-size: 2.5rem;
  color: var(--blue);
}

.cardBox .card .cardName {
  color: var(--black2);
  font-size: 1.1rem;
  margin-top: 5px;
}

.cardBox .card .iconBx {
  font-size: 3.5rem;
  color: var(--black2);
}

.cardBox .card:hover {
  background: var(--blue);
}
.cardBox .card:hover .numbers,
.cardBox .card:hover .cardName,
.cardBox .card:hover .iconBx {
  color: var(--white);
}

/* ================== Order Details List ============== */
.details {
  position: relative;
  width: 94%;
  padding: 20px;
  /* display: grid; */
  /* grid-template-columns: 2fr 1fr; */
  /* grid-gap: 30px; */
  /* margin-top: 16px 42px;
  margin-left: atuo; */
  margin-left: auto;
  margin-right: auto;
}
.filter {
  width: 161px;
  /* height: 43px; */
  border: 1px solid #C2C2C2;
  border-radius: 6px;
  margin-top: 0px;
  color: #202020;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-right: 18px;
}
.right_side  {
 
  justify-content: center;
  align-items: center;
}
.details .recentOrders {
  position: relative;
  /* display: grid; */
  min-height: 568px;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}

.details .cardHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cardHeader h2 {
  font-weight: 600;
  color: var(--blue);
}
.cardHeader .btn {
  position: relative;
  padding: 5px 10px;
  background: var(--blue);
  text-decoration: none;
  color: var(--white);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.cardHeader .btn span {
  font-size: 30px;
  line-height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 7px;
}
.details table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.details table thead th {
  font-weight: 600;
  padding: 19px 0;
  text-align: left;
  font-size: 16px;
  line-height: 32px;
}
.details .recentOrders table tr {
  color: var(--black1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.details .recentOrders table tr:last-child {
  border-bottom: none;
}
.details .recentOrders table tbody tr:hover {
  background: #f2f2f280;
  
}
.details .recentOrders table tr td {
  padding: 5px 0px;
  font-size: 14px;
  line-height: 24px;
}

.action_box {
  display: flex;
  align-items: center;
}
.action_box a {
  position: relative;
  padding: 4px;
  /* background: #6418C3; */
  text-decoration: none;
  color: gray;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid gray;
}
.ml-2 {
  margin-left: 9px;
}
.action_box a span {
  font-size: 18px;
  line-height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.td_image img {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  vertical-align: middle;
}
.status.delivered {
  padding: 2px 4px;
  background: #8de02c;
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}
.status.pending {
  padding: 2px 4px;
  background: #e9b10a;
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}
.status.return {
  padding: 2px 4px;
  background: #f00;
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}
.status.inProgress {
  padding: 2px 4px;
  background: #1795ce;
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.recentCustomers {
  position: relative;
  display: grid;
  min-height: 500px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}
.recentCustomers .imgBx {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  overflow: hidden;
}
.recentCustomers .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recentCustomers table tr td {
  padding: 12px 10px;
}
.recentCustomers table tr td h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2rem;
}
.recentCustomers table tr td h4 span {
  font-size: 14px;
  color: var(--black2);
}
.recentCustomers table tr:hover {
  background: var(--blue);
  color: var(--white);
}
.recentCustomers table tr:hover td h4 span {
  color: var(--white);
}

/* ====================== Responsive Design ========================== */
@media (max-width: 991px) {
  .navigation {
    left: -300px;
  }
  .navigation.active {
    width: 300px;
    left: 0;
  }
  .main {
    width: 100%;
    left: 0;
  }
  .main.active {
    left: 300px;
  }
  .cardBox {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .details {
    grid-template-columns: 1fr;
  }
  .recentOrders {
    overflow-x: auto;
  }
  .status.inProgress {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .cardBox {
    grid-template-columns: repeat(1, 1fr);
  }
  .cardHeader h2 {
    font-size: 20px;
  }
  .user {
    min-width: 40px;
  }
  .navigation {
    width: 100%;
    left: -100%;
    z-index: 1000;
  }
  .navigation.active {
    width: 100%;
    left: 0;
  }
  .toggle {
    z-index: 10001;
  }
  .main.active .toggle {
    color: #fff;
    position: fixed;
    right: 0;
    left: initial;
  }
}



/* login page style */

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.bg-illustration {
  position: relative;
  height: 100vh;
  width: 1194px;
  background: url("/assets/imgs/login.png") no-repeat center
    center scroll;
  background-size: cover;
  float: left;
  -webkit-animation: bgslide 2.3s forwards;
  animation: bgslide 2.3s forwards;
}
.bg-illustration img {
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: auto;
 
  height: 100vh;
}

@-webkit-keyframes bgslide {
  from {
    left: -100%;
    width: 0;
    opacity: 0;
  }
  to {
    left: 0;
    width: 1194px;
    opacity: 1;
  }
}

@keyframes bgslide {
  from {
    left: -100%;
    width: 0;
    opacity: 0;
  }
  to {
    left: 0;
    width: 1194px;
    opacity: 1;
  }
}

.login {
    /* max-height: 100vh; */
    overflow-y: auto;
    /* float: left; */
    margin: 0 auto;
    width: calc(100% - 1194px);
    margin-left: auto;
    margin-right: auto;
}
.login .container {
  width: 430px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.login .container h1 {
  margin-top: 100px;
  font-size: 38px;
  font-weight: 600;
  line-height: 57px;
  color: #00DBAA;
}
.login .container p {
  margin-top: 13px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #21212166;
}
.login .container .login-form {
  margin-top: 22px;
}
.login .container .login-form form {
  display: -ms-grid;
  display: grid;
}
.login .container .login-form form input {
     width: 100%;
    height: 64px;
    border: 1.5px solid #00DBAA;
    padding: 18px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin: 12.5px 0;
}
.login .container .login-form form input:focus {
    outline:none;
}
.login .container .login-form form button[type="submit"] {
  background: var(--blue);
  border: none;
  margin-top: 13px;
  margin-bottom: 20px;
  width: 100%;
  height: 58px;
  color: white;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 18px;
}
.login .container .login-form form button[type="submit"]:hover::after {
  opacity: 1;
}
.login .container .login-form form button[type="submit"]::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 10px;
  opacity: 0;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  right: 0;
  bottom: 0;
  background:var(--blue);
}
.login .container .remember-form {
  position: relative;
  margin-top: -30px;
}
.login .container .remember-form input[type="checkbox"] {
  margin-top: 9px;
}
.login .container .remember-form span {
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  top: 32px;
  color: #3b3b3b;
  margin-left: 15px;
}
.login .container .forget-pass {
  position: absolute;
  right: 0;
  margin-top: 189px;
}
.login .container .forget-pass a {
  font-size: 16px;
  position: relative;
  font-weight: normal;
  color: #918f8f;
}
.login .container .forget-pass a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 100px;
  background: -webkit-linear-gradient(110deg, #f794a4 0%, #fdd6bd 100%);
  background: -o-linear-gradient(110deg, #f794a4 0%, #fdd6bd 100%);
  background: linear-gradient(-20deg, #f794a4 0%, #fdd6bd 100%);
  bottom: -4px;
  left: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  right: 0;
}
.login .container .forget-pass a:hover::after {
  opacity: 1;
}

@media only screen and (min-width: 991px) and (max-width: 1680px) {
  .bg-illustration {
    width: 50%;
    -webkit-animation: none;
    animation: none;
  }

  .login {
    width: 50%;
  }
}
/* Display 12", iPad PRO Portrait, iPad landscape */
@media only screen and (max-width: 991px) {
  body {
    overflow-x: hidden;
  }

  @-webkit-keyframes slideIn {
    from {
      left: -100%;
      opacity: 0;
    }
    to {
      left: 0;
      opacity: 1;
    }
  }

  @keyframes slideIn {
    from {
      left: -100%;
      opacity: 0;
    }
    to {
      left: 0;
      opacity: 1;
    }
  }
  .bg-illustration {
    display: none;
    float: none;
    background: url("/assets/imgs/login.png") center center;
    background-size: cover;
    -webkit-animation: slideIn 0.8s ease-in-out forwards;
    animation: slideIn 0.8s ease-in-out forwards;
    width: 100%;
    height: 190px;
    text-align: center;
  }
  .bg-illustration img {
    width: 100px;
    height: auto;
    margin: 20px auto !important;
    text-align: center;
  }
  .bg-illustration .burger-btn {
    left: 33px;
    top: 29px;
    display: block;
    position: absolute;
  }
  .bg-illustration .burger-btn span {
    display: block;
    height: 4px;
    margin: 6px;
    background-color: #fff;
  }
  .bg-illustration .burger-btn span:nth-child(1) {
    width: 37px;
  }
  .bg-illustration .burger-btn span:nth-child(2) {
    width: 28px;
  }
  .bg-illustration .burger-btn span:nth-child(3) {
    width: 20px;
  }

  .login {
    float: none;
    margin: 0 auto;
    width: 100%;
  }
  .login .container {
    -webkit-animation: slideIn 0.8s ease-in-out forwards;
    animation: slideIn 0.8s ease-in-out forwards;
    width: 85%;
    float: none;
  }
  .login .container h1 {
    font-size: 25px;
    margin-top: 40px;
  }
  
  .login .container .login-form form input {
    height: 45px;
  }
  .login .container .login-form form button[type="submit"] {
    height: 45px;
   
  }
  .login .container .login-form .remember-form {
    position: relative;
    margin-top: -14px;
  }
  .login .container .login-form .remember-form span {
    font-size: 16px;
    margin-top: 22px;
    top: inherit;
  }

  .forget-pass {
    position: absolute;
    right: inherit;
    left: 0;
    bottom: -40px;
    margin: 0 !important;
  }
  .forget-pass a {
    font-size: 16px;
    position: relative;
    font-weight: normal;
    color: #918f8f;
  }
  .forget-pass a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 100px;
    background: -webkit-linear-gradient(110deg, #f794a4 0%, #fdd6bd 100%);
    background: -o-linear-gradient(110deg, #f794a4 0%, #fdd6bd 100%);
    background: linear-gradient(-20deg, #f794a4 0%, #fdd6bd 100%);
    bottom: -4px;
    left: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    right: 0;
  }
  .forget-pass a:hover::after {
    opacity: 1;
  }
}


/* upload images design */

.teacher_picture  {
  position: relative;
}
.teacher_picture .uload-card {
  border: 1px dashed #1492E6;
  margin-bottom: 20px;
  /* height: 169px; */
  background: #1492e621;
}

.teacher_picture .upload-img img {
  width: 40px;
  height: 40px;
}

.teacher_picture .upload-text-heading {
  margin-top: 30px;
}

.teacher_picture .upload-input-label {
  margin-bottom: 20px;
  font-weight: 700;
  color: black;
}

.teacher_picture .upload-main-paragraph {
  color: #bbbbbb;
  font-size: 12px;
  font-weight: 100;
  line-height: 7px;
}
.image_box .image  {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.teacher_picture .upload-image-format p {
  font-size: 13px;
  margin-top: 4px;
  font-weight: 600;
}
.teacher_picture .upload-image-format p span {
  color: var(--blue);
  text-decoration: underline;
}
.mx-18 {
  margin: 18px 0px;
}

.teacher_picture .upload-detail h4 {
  font-size: 12px;
  font-weight: 500;
  margin-top: 0px;
  color: #A5A5A5;
}

.teacher_picture .mf {
  margin-top: -37px;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 15px;
  border-top: none;
  display: block;
}

.teacher_picture .upload-card-body {
  
  margin: 34px 19px;
  text-align: center;
}

.teacher_picture .file-upload-btn {
  width: 100%;
  margin: 0;
  color: #fff;
  background: #1FB264;
  border: none;
  padding: 10px;
  border-radius: 4px;
  border-bottom: 4px solid #15824B;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}

.teacher_picture .file-upload-btn:hover {
  background: #1AA059;
  color: #ffffff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  cursor: pointer;
}

.teacher_picture .file-upload-btn:active {
  border: 0;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.teacher_picture .file-upload-content {
  display: none;
  text-align: center;
}

.teacher_picture .file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
  top: 0px;
  right: 0px;
}

.teacher_picture .image-title-wrap {
  padding: 0 15px 15px 15px;
  color: #222;
}

.teacher_picture .drag-text {
  text-align: center;
}

.teacher_picture .drag-text-payment-edit {
  text-align: center;
}

.teacher_picture .drag-text-payment-edit h3 {
  font-weight: 100;
  text-transform: uppercase;
  color: #15824B;
  padding: 60px 0;
}

.teacher_picture .drag-text h3 {
  font-weight: 100;
  text-transform: uppercase;
  color: #15824B;
  padding: 60px 0;
}

.teacher_picture .file-upload-image {
  max-height: 200px;
  max-width: 200px;
  margin: auto;
  padding: 20px;
}

.teacher_picture .remove-image {
    color: #fff;
    font-size: 12px;
    border: none;
    background: #e11919;
    padding: 7px;
    border-radius: 10px;
    font-weight: 500;
}

.teacher_picture .remove-image:hover {
  background: #e11919c7;
}

.pagination {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: .25rem
}
.page-link {
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #000;
  background-color: #fff;
  border: 1px solid #dee2e6
}
.page-link:hover {
  z-index: 2;
  color: var(--blue);
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: .25rem;
  border-bottom-left-radius: .25rem
}
.page-item:last-child .page-link {
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--blue);;
  border-color: var(--blue);
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6
}
a {
  text-decoration: none;
}
.wallpaper_pagination {
   
    position: absolute;
    bottom: 26px;
    right: 23px;
}

.alert-success {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  margin-top: 1rem;
}
.alert-danger {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  margin-top: 1rem;
}

.grand_bg {
  background: linear-gradient(to bottom, rgba(0 219 170 / 20%), #fff);
}