  .btn-area-main :active,
  :hover,
  :focus {
    outline: 0 !important;
    outline-offset: 0;
  }

  .btn-area-main ::before,
  .btn-area-main ::after {
    position: absolute;
    content: "";
  }

  .btn-area-main .btn-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* max-width: 1000px; */
  }

  .btn-area-main .btn {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    /* margin: 0px 25px 15px; */
    min-width: 150px;
  }

  .btn-area-main .btn span {
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    /* letter-spacing: 2px; */
    text-transform: uppercase;
    top: 0;
    left: 0;
    width: 100%;
    padding: 6px 12px;
    transition: 0.3s;
  }

  /*--- btn-1 ---*/
  .btn-area-main .btn-1::before {
    background: var(--primary-color);
    transition: 0.3s ease-out;
  }

  .btn-area-main .btn-1 span {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: 0.2s 0.1s;
  }

  .btn-area-main .btn-1 span:hover {
    color: rgb(215 18 92);
    transition: 0.2s 0.1s;
  }

  .btn-area-main .btn-1.active span
  {
    color: white ;
  }

  .btn-area-main .btn:hover span {
    color: white;
  }

  .btn-area-main .btn.hover-filled-slide-left.active::before {
    width: 100%;
  }

  /* .btn-area-main .btn.hover-filled-slide-left.active span {
    color: var(--primary-color);
  } */

  /* 1.hover-filled-slide-down */
  .btn-area-main .btn.hover-filled-slide-down::before {
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
  }

  .btn-area-main .btn.hover-filled-slide-down:hover::before {
    height: 0%;
  }

  /* 2.hover-filled-slide-up */
  .btn-area-main .btn.hover-filled-slide-up::before {
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
  }

  .btn-area-main .btn.hover-filled-slide-up:hover::before {
    height: 0%;
  }

  /* 3.hover-filled-slide-left */
  .btn-area-main .btn.hover-filled-slide-left::before {
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0%;
  }

  .btn-area-main .btn.hover-filled-slide-left:hover::before {
    width: 100%;
  }

  /* 4. hover-filled-slide-right */
  .btn-area-main .btn.hover-filled-slide-right::before {
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
  }

  .btn-area-main .btn.hover-filled-slide-right:hover::before {
    width: 0%;
  }

  /* 5. hover-filled-opacity */
  .btn-area-main .btn.hover-filled-opacity::before {
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
  }

  .btn-area-main .btn.hover-filled-opacity:hover::before {
    opacity: 0;
  }

  /*--- btn-2 ---*/
  .btn-area-main .btn-2::before {
    background-color: rgb(28, 31, 30);
    transition: 0.3s ease-out;
  }

  .btn-area-main .btn-2 span {
    color: rgb(28, 31, 30);
    border: 1px solid rgb(28, 31, 30);
    transition: 0.2s;
  }

  .btn-area-main .btn-2 span:hover {
    color: rgb(255, 255, 255);
    transition: 0.2s 0.1s;
  }

  /* 6. hover-slide-down */
  .btn-area-main .btn.hover-slide-down::before {
    top: 0;
    left: 0;
    right: 0;
    height: 0%;
    width: 100%;
  }

  .btn-area-main .btn.hover-slide-down:hover::before {
    height: 100%;
  }

  /* 7. hover-slide-up */
  .btn-area-main .btn.hover-slide-up::before {
    bottom: 0;
    left: 0;
    right: 0;
    height: 0%;
    width: 100%;
  }

  .btn-area-main .btn.hover-slide-up:hover::before {
    height: 100%;
  }

  /* 8. hover-slide-left */
  .btn-area-main .btn.hover-slide-left::before {
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 0%;
  }

  .btn-area-main .btn.hover-slide-left:hover::before {
    width: 100%;
  }

  /* 9. hover-slide-right */
  .btn-area-main .btn.hover-slide-right::before {
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0%;
  }

  .btn-area-main .btn.hover-slide-right:hover::before {
    width: 100%;
  }

  /* 10. hover-opacity */
  .btn-area-main .btn.hover-opacity::before {
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
  }

  .btn-area-main .btn.hover-opacity:hover::before {
    opacity: 1;
  }

  /*--- btn-3 ---*/
  .btn-area-main .btn-3 {
    padding: 5px;
  }

  .btn-area-main .btn-3 span {
    color: rgb(255, 255, 255);
    background-color: rgb(54, 56, 55);
  }

  .btn-area-main .btn-3::before,
  .btn-area-main .btn-3::after {
    background: transparent;
    z-index: 2;
  }

  /* 11. hover-border-1 */
  .btn-area-main .btn.hover-border-1::before,
  .btn-area-main .btn.hover-border-1::after {
    width: 10%;
    height: 25%;
    transition: 0.35s;
  }

  .btn-area-main .btn.hover-border-1::before {
    top: 0;
    left: 0;
    border-left: 1px solid rgb(28, 31, 30);
    border-top: 1px solid rgb(28, 31, 30);
  }

  .btn-area-main .btn.hover-border-1::after {
    bottom: 0;
    right: 0;
    border-right: 1px solid rgb(28, 31, 30);
    border-bottom: 1px solid rgb(28, 31, 30);
  }

  .btn-area-main .btn.hover-border-1:hover::before,
  .btn-area-main .btn.hover-border-1:hover::after {
    width: 99%;
    height: 98%;
  }

  /* 12. hover-border-2 */
  .btn-area-main .btn.hover-border-2::before,
  .btn-area-main .btn.hover-border-2::after {
    width: 10%;
    height: 25%;
    transition: 0.35s;
  }

  .btn-area-main .btn.hover-border-2::before {
    bottom: 0;
    left: 0;
    border-left: 1px solid rgb(28, 31, 30);
    border-bottom: 1px solid rgb(28, 31, 30);
  }

  .btn-area-main .btn.hover-border-2::after {
    top: 0;
    right: 0;
    border-right: 1px solid rgb(28, 31, 30);
    border-top: 1px solid rgb(28, 31, 30);
  }

  .btn-area-main .btn.hover-border-2:hover::before,
  .btn-area-main .btn.hover-border-2:hover::after {
    width: 99%;
    height: 99%;
  }

  /* 13. hover-border-3 */
  .btn-area-main .btn.hover-border-3::before,
  .btn-area-main .btn.hover-border-3::after {
    width: 0%;
    height: 0%;
    opacity: 0;
    transition: width 0.2s 0.15s linear, height 0.15s linear, opacity 0s 0.35s;
  }

  .btn-area-main .btn.hover-border-3::before {
    top: 0;
    right: 0;
    border-top: 1px solid rgb(28, 31, 30);
    border-left: 1px solid rgb(28, 31, 30);
  }

  .btn-area-main .btn.hover-border-3::after {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid rgb(28, 31, 30);
    border-right: 1px solid rgb(28, 31, 30);
  }

  .btn-area-main .btn.hover-border-3:hover::before,
  .btn-area-main .btn.hover-border-3:hover::after {
    width: 100%;
    height: 99%;
    opacity: 1;
    transition: width 0.2s linear, height 0.15s 0.2s linear, opacity 0s;
  }

  /* 14. hover-border-4 */
  .btn-area-main .btn.hover-border-4::before,
  .btn-area-main .btn.hover-border-4::after {
    width: 0%;
    height: 0%;
    opacity: 0;
    transition: width 0.2s linear, height 0.15s 0.2s ease-out, opacity 0s 0.35s;
  }

  .btn-area-main .btn.hover-border-4::before {
    bottom: 0;
    left: -1px;
    border-top: 1px solid rgb(28, 31, 30);
    border-left: 1px solid rgb(28, 31, 30);
  }

  .btn-area-main .btn.hover-border-4::after {
    top: 0;
    right: 0;
    border-bottom: 1px solid rgb(28, 31, 30);
    border-right: 1px solid rgb(28, 31, 30);
  }

  .btn-area-main .btn.hover-border-4:hover::before,
  .btn-area-main .btn.hover-border-4:hover::after {
    width: 100%;
    height: 99%;
    opacity: 1;
    transition: width 0.2s 0.15s ease-out, height 0.15s ease-in, opacity 0s;
  }

  /* 15. hover-border-5 */
  .btn-area-main .btn.hover-border-5::before,
  .btn-area-main .btn.hover-border-5::after {
    width: 0%;
    height: 0%;
    opacity: 0;
  }

  .btn-area-main .btn.hover-border-5::before {
    top: 0;
    right: 0;
    border-top: 1px solid rgb(28, 31, 30);
    border-left: 1px solid rgb(28, 31, 30);
    transition: width 0.2s 0.5s ease-out, height 0.15s 0.35s linear, opacity 0s 0.7s;
  }

  .btn-area-main .btn.hover-border-5::after {
    bottom: 0;
    left: 0px;
    border-bottom: 1px solid rgb(28, 31, 30);
    border-right: 1px solid rgb(28, 31, 30);
    transition: width 0.2s 0.15s linear, height 0.15s ease-in, opacity 0s 0.35s;
  }

  .btn-area-main .btn.hover-border-5:hover::before,
  .btn-area-main .btn.hover-border-5:hover::after {
    width: 100%;
    height: 96%;
    opacity: 1;
  }

  .btn-area-main .btn.hover-border-5:hover::before {
    transition: width 0.2s ease-in, height 0.15s 0.2s linear, opacity 0s;
    /* 1,2 */
  }

  .btn-area-main .btn.hover-border-5:hover::after {
    transition: width 0.2s 0.35s linear, height 0.15s 0.5s ease-out, opacity 0s 0.3s;
  }

  /*--- btn-4 ---*/
  .btn-area-main .btn-4 span {
    color: rgb(28, 31, 30);
    background-color: rgb(245, 245, 245);
  }

  .btn-area-main .btn-4 span:hover {
    color: rgb(54, 56, 55);
  }

  .btn-area-main .btn-4::before,
  .btn-area-main .btn-4::after {
    width: 15%;
    height: 2px;
    background-color: rgb(54, 56, 55);
    z-index: 2;
  }

  /* 16. hover-border-6 */
  .btn-area-main .btn.hover-border-6::before,
  .btn-area-main .btn.hover-border-6::after {
    top: 0;
    transition: width 0.2s 0.35s ease-out;
  }

  .btn-area-main .btn.hover-border-6::before {
    right: 50%;
  }

  .btn-area-main .btn.hover-border-6::after {
    left: 50%;
  }

  .btn-area-main .btn.hover-border-6:hover::before,
  .btn-area-main .btn.hover-border-6:hover::after {
    width: 50%;
    transition: width 0.2s ease-in;
  }

  .btn-area-main .btn.hover-border-6 span::before,
  .btn-area-main .btn.hover-border-6 span::after {
    width: 0%;
    height: 0%;
    background: transparent;
    opacity: 0;
    z-index: 2;
    transition: width 0.2s ease-in, height 0.15s 0.2s linear, opacity 0s 0.35s;
  }

  .btn-area-main .btn.hover-border-6 span::before {
    top: 0;
    left: 0;
    border-left: 2px solid rgb(54, 56, 55);
    border-bottom: 2px solid rgb(54, 56, 55);
  }

  .btn-area-main .btn.hover-border-6 span::after {
    top: 0;
    right: 0;
    border-right: 2px solid rgb(54, 56, 55);
    border-bottom: 2px solid rgb(54, 56, 55);
  }

  .btn-area-main .btn.hover-border-6 span:hover::before,
  .btn-area-main .btn.hover-border-6 span:hover::after {
    width: 50%;
    height: 96%;
    opacity: 1;
    transition: height 0.2s 0.2s ease-in, width 0.2s 0.4s linear, opacity 0s 0.2s;
  }

  /* 17. hover-border-7 */
  .btn-area-main .btn.hover-border-7::before,
  .btn-area-main .btn.hover-border-7::after {
    bottom: 0;
    transition: width 0.2s 0.35s ease-out;
  }

  .btn-area-main .btn.hover-border-7::before {
    right: 50%;
  }

  .btn-area-main .btn.hover-border-7::after {
    left: 50%;
  }

  .btn-area-main .btn.hover-border-7:hover::before,
  .btn-area-main .btn.hover-border-7:hover::after {
    width: 50%;
    transition: width 0.2s ease-in;
  }

  .btn-area-main .btn.hover-border-7 span::before,
  .btn-area-main .btn.hover-border-7 span::after {
    width: 0%;
    height: 0%;
    background: transparent;
    opacity: 0;
    z-index: 2;
    transition: width 0.2s ease-in, height 0.15s 0.2s linear, opacity 0s 0.35s;
  }

  .btn-area-main .btn.hover-border-7 span::before {
    bottom: 0;
    left: 0;
    border-left: 2px solid rgb(54, 56, 55);
    border-top: 2px solid rgb(54, 56, 55);
  }

  .btn-area-main .btn.hover-border-7 span::after {
    bottom: 0;
    right: 0;
    border-right: 2px solid rgb(54, 56, 55);
    border-top: 2px solid rgb(54, 56, 55);
  }

  .btn-area-main .btn.hover-border-7 span:hover::before,
  .btn-area-main .btn.hover-border-7 span:hover::after {
    width: 50%;
    height: 96%;
    opacity: 1;
    transition: height 0.2s 0.2s ease-in, width 0.2s 0.4s linear, opacity 0s 0.2s;
  }

  /* 18. hover-border-8 */
  .btn-area-main .btn.hover-border-8::before,
  .btn-area-main .btn.hover-border-8::after {
    bottom: 0;
    width: 15%;
    transition: width 0.2s 0.35s ease-out;
  }

  .btn-area-main .btn.hover-border-8::before {
    right: 50%;
  }

  .btn-area-main .btn.hover-border-8::after {
    left: 50%;
  }

  .btn-area-main .btn.hover-border-8:hover::before {
    width: 50%;
    transition: width 0.2s ease-in;
  }

  .btn-area-main .btn.hover-border-8:hover::after {
    width: 50%;
    transition: width 0.1s ease-in;
  }

  .btn-area-main .btn.hover-border-8 span::before,
  .btn-area-main .btn.hover-border-8 span::after {
    width: 0%;
    height: 0%;
    bottom: 0;
    background: transparent;
    opacity: 0;
    z-index: 2;
  }

  .btn-area-main .btn.hover-border-8 span::before {
    left: 0%;
    border-left: 2px solid rgb(54, 56, 55);
    transition: height 0.25s ease-in, opacity 0s 0.35s;
  }

  .btn-area-main .btn.hover-border-8 span:hover::before {
    height: 96%;
    opacity: 1;
    transition: height 0.25s 0.2s ease-out, opacity 0s 0.2s;
  }

  .btn-area-main .btn.hover-border-8 span::after {
    right: 0%;
    border-right: 2px solid rgb(54, 56, 55);
    border-top: 2px solid rgb(54, 56, 55);
    transition: width 0.2s ease-in, height 0.15s 0.2s linear, opacity 0s 0.35s;
  }

  .btn-area-main .btn.hover-border-8 span:hover::after {
    width: 99%;
    height: 96%;
    opacity: 1;
    transition: height 0.15s 0.1s linear, width 0.2s 0.25s linear, opacity 0s 0.1s;
  }

  /* 19. hover-border-9 */
  .btn-area-main .btn.hover-border-9::before,
  .btn-area-main .btn.hover-border-9::after {
    bottom: 0;
    width: 15%;
    transition: width 0.2s 0.35s ease-out;
  }

  .btn.hover-border-9::before {
    right: 50%;
  }

  .btn-area-main .btn.hover-border-9::after {
    left: 50%;
  }

  .btn-area-main .btn.hover-border-9:hover::before {
    width: 50%;
    transition: width 0.1s ease-in;
  }

  .btn-area-main .btn.hover-border-9:hover::after {
    width: 50%;
    transition: width 0.2s ease-in;
  }

  .btn-area-main .btn.hover-border-9 span::before,
  .btn-area-main .btn.hover-border-9 span::after {
    width: 0%;
    height: 0%;
    bottom: 0;
    background: transparent;
    opacity: 0;
    z-index: 2;
  }

  .btn-area-main .btn.hover-border-9 span::after {
    right: 0%;
    border-right: 2px solid rgb(54, 56, 55);
    transition: height 0.25s ease-in, opacity 0s 0.35s;
  }

  .btn-area-main .btn.hover-border-9 span:hover::after {
    height: 96%;
    opacity: 1;
    transition: height 0.25s 0.2s ease-out, opacity 0s 0.2s;
  }

  .btn-area-main .btn.hover-border-9 span::before {
    left: 0%;
    border-left: 2px solid rgb(54, 56, 55);
    border-top: 2px solid rgb(54, 56, 55);
    transition: width 0.2s ease-in, height 0.15s 0.2s linear, opacity 0s 0.35s;
  }

  .btn-area-main .btn.hover-border-9 span:hover::before {
    width: 98.5%;
    height: 96%;
    opacity: 1;
    transition: height 0.15s 0.1s linear, width 0.2s 0.25s linear, opacity 0s 0.1s;
  }

  /* 20. hover-border-10 */
  .btn-area-main .btn.hover-border-10::before,
  .btn-area-main .btn.hover-border-10::after {
    left: 0%;
    height: 30%;
    width: 2px;
    transition: height 0.2s 0.35s ease-out;
  }

  .btn-area-main .btn.hover-border-10::before {
    top: 50%;
  }

  .btn-area-main .btn.hover-border-10::after {
    bottom: 50%;
  }

  .btn-area-main .btn.hover-border-10:hover::before {
    height: 50%;
    transition: height 0.2s ease-in;
  }

  .btn-area-main .btn.hover-border-10:hover::after {
    height: 50%;
    transition: height 0.1s ease-in;
  }

  .btn-area-main .btn.hover-border-10 span::before,
  .btn-area-main .btn.hover-border-10 span::after {
    width: 0%;
    height: 0%;
    background: transparent;
    opacity: 0;
    z-index: 2;
  }

  .btn-area-main .btn.hover-border-10 span::after {
    bottom: 0;
    left: 0%;
    border-bottom: 2px solid rgb(54, 56, 55);
    transition: width 0.25s ease-in, opacity 0s 0.35s;
  }

  .btn-area-main .btn.hover-border-10 span:hover::after {
    width: 100%;
    opacity: 1;
    transition: width 0.25s 0.2s ease-out, opacity 0s 0.2s;
  }

  .btn-area-main .btn.hover-border-10 span::before {
    top: 0%;
    left: 0%;
    border-top: 2px solid rgb(54, 56, 55);
    border-right: 2px solid rgb(54, 56, 55);
    transition: height 0.15s ease-in, width 0.2s 0.15s linear, opacity 0s 0.35s;
  }

  .btn-area-main .btn.hover-border-10 span:hover::before {
    width: 98.5%;
    height: 96%;
    opacity: 1;
    transition: width 0.2s 0.1s linear, height 0.15s 0.3s ease-out, opacity 0s 0.1s;
  }

  /*--- btn-5 ---*/
  .btn-area-main .btn-5 span {
    color: rgb(28, 31, 30);
    border: 2px solid rgb(249, 211, 27);
    transition: 0.2s;
  }

  .btn-area-main .btn-5 span:hover {
    background-color: rgb(245, 245, 245);
  }

  /* 21. hover-border-11 */
  .btn-area-main .btn.hover-border-11::before,
  .btn-area-main .btn.hover-border-11::after {
    width: 100%;
    height: 2px;
    background-color: rgb(54, 56, 55);
    z-index: 2;
    transition: 0.35s;
  }

  .btn-area-main .btn.hover-border-11::before {
    top: 0;
    right: 0;
  }

  .btn-area-main .btn.hover-border-11::after {
    bottom: 0;
    left: 0;
  }

  .btn-area-main .btn.hover-border-11:hover::before,
  .btn-area-main .btn.hover-border-11:hover::after {
    width: 0%;
    transition: 0.2s 0.2s ease-out;
  }

  .btn-area-main .btn.hover-border-11 span::before,
  .btn-area-main .btn.hover-border-11 span::after {
    width: 2px;
    height: 100%;
    background-color: rgb(54, 56, 55);
    z-index: 2;
    transition: 0.25s;
  }

  .btn-area-main .btn.hover-border-11 span::before {
    bottom: 0;
    right: -2px;
  }

  .btn-area-main .btn.hover-border-11 span::after {
    top: 0;
    left: -2px;
  }

  .btn-area-main .btn.hover-border-11 span:hover::before,
  .btn-area-main .btn.hover-border-11 span:hover::after {
    height: 0%;
  }

  .cancel-btn {
    background: #e3e3e3;
    border: none;
    padding: 8px 24px;
    box-shadow: 0px 0px 10px -8px;
    border-radius: 5px;
    font-weight: bold;
    transition: .5s;
    height: 33px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
  }

  .cancel-btn:hover {
    border: 1px solid #c9c9c9;
    background: transparent;
  }

  .theme-btn {
    background: #d7125c;
    border: none;
    color: white;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    height: 30px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
  }

  .theme-btn:hover {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
  }

  .theme-btn-sm {
    background: var(--primary-color);
    border: none;
    color: white;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
    border-radius: 3px;
    /* height: 30px; */
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    width: fit-content;
    min-width: 70px;
    min-height: 22px;
    transition: .5s;
    text-decoration: none;
  }

  .theme-btn-sm:hover {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
  }

  .btn1 {
    background: #d7125c;
    color: white;
    padding: 6px 20px;
    border-radius: 7px;
    border: none;
    box-shadow: 6px 3px 7px -3px #910036;
    font-weight: bold;
    min-height: 35px;
  }

  .btn1:hover,
  .btn1:focus {
    transform: perspective(10px);
    border: 1px solid #d7125c;
    background-color: transparent;
    color: #d7125c;
  }

  .btn1-sm {
    background: hsl(201.82deg 25.58% 91.57%);
    color: #5b305a;
    padding: 5px;
    border-radius: 3px;
    border: none;
    /* box-shadow: 6px 3px 7px -3px #910036; */
    font-weight: bold;
    min-height: 28px;
    font-size: 13px;
    /* margin-bottom: 7px; */
    text-transform: uppercase;
    font-weight: 500;
  }

  .btn1-sm:hover,
  .btn1-sm:focus {
    background: var(--primary-color);
    color: white;
  }

  .download-btn {
    background-color: #2ac164;
    color: white;
    padding: 1px 5px;
    border-radius: 5px;
    text-decoration: none;
    transition: .3s;
    font-size: 12px;
  }

  .download-btn:hover {
    border: 1px solid #2ac164;
    background-color: transparent;
    color: #2ac164;
    font-weight: bold;
  }

  .select-btn {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: white;
    background: #328bd8;
    border: none;
    padding: 5px;
    transition: .3s;
  }

  .select-btn:hover,
  .select-btn:focus {
    background: #2c7dc5;

  }

  .finalbtn {
    font-size: 12px;
    white-space: nowrap;
    background-color: var(--primary-color) !important;
  }

  .book-btn {
    position: relative;
    bottom: -3%;
    width: 100%;
    color: white;
    background: #5b305a;
    border: none;
    padding: 5px;
    transition: .3s;
  }

  .book-btn:hover {
    color: white;
    background: #650b63;
  }
  .colorbtn 
  {
    color: #f68c34;
    border: none;
    background-color: transparent;
  }
  .invoice-btn 
  {
    background: antiquewhite;
    padding: 2px 10px !important;
    border-radius: 5px;
  }
  .invoice-btn:hover 
  {
    background-color: #fee5c3;
  }
  .btn-blue
  {
    background-color: var(--btn-blue) !important;
    font-size: 11px;
  }
  .btn-blue:hover 
  {
    background-color: transparent !important;
    border-color: var(--btn-blue) !important;
    color: var(--btn-blue) !important;
  }
  .btn-red 
  {
    background-color: var(--btn-red) !important;
    font-size: 11px;
  }
  .btn-red:hover 
  {
    background-color: transparent !important;
    border-color: var(--btn-red) !important;
    color: var(--btn-red) !important;
  }