/********************** native scrollbar custom ************************/
/* width */
::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}
/* button */
::-webkit-scrollbar-button {
  background: transparent;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #E4E8EC;
  border-radius: 5px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #A6A6A6;
}
/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}
/* The track NOT covered by the handle. ::-webkit-scrollbar-track-piece {
  background: #000;
}
/* Corner */
::-webkit-scrollbar-corner {
  background: #fff;
}
/* Resizer */
::-webkit-resizer {
  background: #fff;
}
/******************* general styles *******************/

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #4F5B6B;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #FF524D;
    --bs-secondary: #9082D9;
    --bs-success: #57D9A3;
    --bs-info: #00C7E6;
    --bs-warning: #FF8426;
    --bs-danger: #E40000;
    --bs-light: #f8f9fa;
    --bs-dark: #4F5B6B;
    --bs-primary-rgb: 255, 82, 77;
    --bs-secondary-rgb: 144, 130, 217;
    --bs-success-rgb: 87, 217, 163;
    --bs-info-rgb: 0, 199, 230;
    --bs-warning-rgb: 255, 132, 38;
    --bs-danger-rgb: 228, 0, 0;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #202020;
    --bs-body-bg: #fff;
  }


  h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", arial, sans-serif;
    font-weight: bold;
    color: #202020;
  }

  p{
      margin-bottom: 1em;
  }

  a {
    /*font-weight: 400;*/
    color: #FF524D;    
  }
  a:hover {
    color: #dd342e;
  }


  ::-moz-selection {
    background:#FF524D;
    color:#fff;
  }

  ::-webkit-selection {
      background:#FF524D;
      color:#fff;
  }

  ::selection {
      background:#FF524D;
      color:#fff;
  }


  .fw-300{
    font-weight: 300 !important;
  }
  .fw-400{
    font-weight: 400 !important;
  }
  .fw-500{
    font-weight: 500 !important;
  }
  .fw-600{
    font-weight: 600 !important;
  }
  .fw-700{
    font-weight: 700 !important;
  }
  .fw-800{
    font-weight: 800 !important;
  }
  .fw-900{
    font-weight: 900 !important;
  }

  .text-body{
    color: #4D4D4D;
  }
  .text-black{
    color: #202020;
  }
  .text-gray-400{
    color: #bebebe;
  }
  .text-gray-600{
    color: #888888;
  }
  .text-white{
    color: #fff;
  }


  .bg-dark{
    background-color: #4F5B6B !important;
  }

  .btn{
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    overflow: hidden;    
  }
  .btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20px;
    width: 0%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.2);*/
    -webkit-transform: skewX(-15deg);
        -ms-transform: skewX(-15deg);
            transform: skewX(-15deg);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: -1;
  }
  .btn:hover::before {
    width: 200%;
  }
  @-webkit-keyframes btn-click {
    0%   {-webkit-transform: scale(100%);transform: scale(100%);}
    50%  {-webkit-transform: scale(95%);transform: scale(95%);}
  }
  @keyframes btn-click {
    0%   {-webkit-transform: scale(100%);transform: scale(100%);}
    50%  {-webkit-transform: scale(95%);transform: scale(95%);}
  }
  .btn:focus{
    -webkit-animation: btn-click 200ms ease-in-out forwards;
            animation: btn-click 200ms ease-in-out forwards;    
  }  
  .btn.shadow:focus{    
    -webkit-box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 35%)!important;    
            box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 35%)!important;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
  }

  .btn-block{
    display: block;
    width: 100%;
  }

  .btn-sm.btn-icon i{
    position: relative;
    top:2px;
    font-size: .95rem;
  }


  .btn-primary {
    color: #fff;
    background-color: #FF524D;
    border-color: transparent;
  }
  .btn-primary::before {
    background-color: #fe1710;
  }  
  .btn-primary:hover {
    color: #fff;
    background-color: #FF524D;
    border-color: transparent;
  }
  .btn-check:focus + .btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: #fe1710;
    border-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #fe1710;
    border-color: transparent;
  }
  .btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-primary:disabled, .btn-primary.disabled {
    color: #fff;
    background-color: #FF7571;
    border-color: transparent;
  }
  
  .btn-secondary {
    color: #fff;
    background-color: #9082D9;
    border-color: transparent;
  }
  .btn-secondary::before {
    background-color: #614dc9;
  } 
  .btn-secondary:hover {
    color: #fff;
    background-color: #9082D9;
    border-color: transparent;
  }
  .btn-check:focus + .btn-secondary, .btn-secondary:focus {
    color: #fff;
    background-color: #614dc9;
    border-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #614dc9;
    border-color: transparent;
  }
  .btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-secondary:disabled, .btn-secondary.disabled {
    color: #fff;
    background-color: #bfb7e9;
    border-color: transparent;
  }
  
  .btn-success {
    color: #fff;
    background-color: #57D9A3;
    border-color: transparent;
  }
  .btn-success::before {
    background-color: #09d17e;
  }
  .btn-success:hover {
    color: #fff;
    background-color: #57D9A3;
    border-color: transparent;
  }
  .btn-check:focus + .btn-success, .btn-success:focus {
    color: #fff;
    background-color: #09d17e;
    border-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #09d17e;
    border-color: transparent;
  }
  .btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-success:disabled, .btn-success.disabled {
    color: #fff;
    background-color: #b7efd7;
    border-color: transparent;
  }
  
  .btn-info {
    color: #fff;
    background-color: #00C7E6;
    border-color: transparent;
  }
  .btn-info::before {
    background-color: #00b2ce;
  }
  .btn-info:hover {
    color: #fff;
    background-color: #00C7E6;
    border-color: transparent;
  }
  .btn-check:focus + .btn-info, .btn-info:focus {
    color: #fff;
    background-color: #00b2ce;
    border-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #00b2ce;
    border-color: transparent;
  }
  .btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-info:disabled, .btn-info.disabled {
    color: #fff;
    background-color: #9ef2ff;
    border-color: transparent;
  }
  
  .btn-warning {
    color: #fff;
    background-color: #FF8426;
    border-color: transparent;
  }
  .btn-warning::before {
    background-color: #ff6e00;
  }
  .btn-warning:hover {
    color: #fff;
    background-color: #FF8426;
    border-color: transparent;
  }
  .btn-check:focus + .btn-warning, .btn-warning:focus {
    color: #fff;
    background-color: #ff6e00;
    border-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ff6e00;
    border-color: transparent;
  }
  .btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-warning:disabled, .btn-warning.disabled {
    color: #fff;
    background-color: #ffa45e;
    border-color: transparent;
  }
  
  .btn-danger {
    color: #fff;
    background-color: #E40000;
    border-color: transparent;
  }
  .btn-danger::before {
    background-color: #b40000;
  }
  .btn-danger:hover {
    color: #fff;
    background-color: #E40000;
    border-color: transparent;
  }
  .btn-check:focus + .btn-danger, .btn-danger:focus {
    color: #fff;
    background-color: #b40000;
    border-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #b40000;
    border-color: transparent;
  }
  .btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-danger:disabled, .btn-danger.disabled {
    color: #fff;
    background-color: #ff3b3b;
    border-color: transparent;
  }

  .btn-light {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
  }
  .btn-light::before {
    background-color: #ececec;
  }
  .btn-light:hover {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
  }
  .btn-check:focus + .btn-light, .btn-light:focus {
    color: #000;
    background-color: #ececec;
    border-color: #ececec;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
            box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
  }
  .btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
    color: #000;
    background-color: #ececec;
    border-color: #ececec;
  }
  .btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
            box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
  }
  .btn-light:disabled, .btn-light.disabled {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
  }
  
  .btn-dark {
    color: #fff;
    background-color: #4F5B6B;
    border-color: #4F5B6B;
  }
  .btn-dark::before {
    background-color: #292929;
  }
  .btn-dark:hover {
    color: #fff;
    background-color: #4D4D4D;
    border-color: #4D4D4D;
  }
  .btn-check:focus + .btn-dark, .btn-dark:focus {
    color: #fff;
    background-color: #292929;
    border-color: #292929;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
            box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
  }
  .btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #292929;
    border-color: #292929;
  }
  .btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
            box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
  }
  .btn-dark:disabled, .btn-dark.disabled {
    color: #fff;
    background-color: #5b5b5b;
    border-color: #5b5b5b;
  }
  
  .btn-outline-primary {
    color: #FF524D;
    border-color: #FF524D;
  }
  .btn-outline-primary::before {
    background-color: #FF524D;
  }
  .btn-outline-primary:hover {
    color: #fff;
    background-color: #fff;
    border-color: #FF524D;
  }
  .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
    color: #fff;
    background-color: #FF524D;
    border-color: #FF524D;
  }
  .btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-outline-primary:disabled, .btn-outline-primary.disabled {
    color: #FF7571;
    background-color: transparent;
  }
  
  .btn-outline-secondary {
    color: #9082D9;
    border-color: #9082D9;
  }
  .btn-outline-secondary::before {
    background-color: #9082D9;
  }
  .btn-outline-secondary:hover {
    color: #fff;
    background-color: #fff;
    border-color: #9082D9;
  }
  .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
    color: #fff;
    background-color: #9082D9;
    border-color: #9082D9;
  }
  .btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
    color: #bfb7e9;
    background-color: transparent;
  }
  
  .btn-outline-success {
    color: #198754;
    border-color: #198754;
  }
  .btn-outline-success::before {
    background-color: #57D9A3;
  }
  .btn-outline-success:hover {
    color: #fff;
    background-color: #fff;
    border-color: #57D9A3;
  }
  .btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
    color: #fff;
    background-color: #57D9A3;
    border-color: #57D9A3;
  }
  .btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-outline-success:disabled, .btn-outline-success.disabled {
    color: #b7efd7;
    background-color: transparent;
  }
  
  .btn-outline-info {
    color: #00C7E6;
    border-color: #00C7E6;
  }
  .btn-outline-info::before {
    background-color: #00C7E6;
  }
  .btn-outline-info:hover {
    color: #fff;
    background-color: #fff;
    border-color: #00C7E6;
  }
  .btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
    color: #fff;
    background-color: #00C7E6;
    border-color: #00C7E6;
  }
  .btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-outline-info:disabled, .btn-outline-info.disabled {
    color: #9ef2ff;
    background-color: transparent;
  }
  
  .btn-outline-warning {
    color: #FF8426;
    border-color: #FF8426;
  }
  .btn-outline-warning::before {
    background-color: #FF8426;
  }
  .btn-outline-warning:hover {
    color: #fff;
    background-color: #fff;
    border-color: #FF8426;
  }
  .btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
    color: #fff;
    background-color: #FF8426;
    border-color: #FF8426;
  }
  .btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-outline-warning:disabled, .btn-outline-warning.disabled {
    color: #ffa45e;
    background-color: transparent;
  }
  
  .btn-outline-danger {
    color: #E40000;
    border-color: #E40000;
  }
  .btn-outline-danger::before {
    background-color: #E40000;
  }
  .btn-outline-danger:hover {
    color: #fff;
    background-color: #fff;
    border-color: #E40000;
  }
  .btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
    color: #fff;
    background-color: #E40000;
    border-color: #E40000;
  }
  .btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-outline-danger:disabled, .btn-outline-danger.disabled {
    color: #ff3b3b;
    background-color: transparent;
  }
  
  .btn-outline-light {
    color: #202020;
    background: #fff;
    border-color: #ced4da;
  }
  .btn-outline-light::before {
    background-color: #ececec;
  }
  .btn-outline-light:hover {
    color: #202020;
    background-color: #fff;
    border-color: #ced4da;
  }
  .btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
    color: #202020;
    background-color: #fff;
    border-color: #ced4da;
  }
  .btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-outline-light:disabled, .btn-outline-light.disabled {
    color: #f8f9fa;
    border-color: #E4E8EC;
  }
  
  .btn-outline-dark {
    color: #4D4D4D;
    border-color: #4D4D4D;
  }
  .btn-outline-dark::before {
    background-color: #4D4D4D;
  }
  .btn-outline-dark:hover {
    color: #fff;
    background-color: #fff;
    border-color: #4D4D4D;
  }
  .btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
            box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
  }
  .btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
    color: #fff;
    background-color: #4D4D4D;
    border-color: #4D4D4D;
  }
  .btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
            box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
  }
  .btn-outline-dark:disabled, .btn-outline-dark.disabled {
    color: #5b5b5b;
    background-color: #4D4D4D;
  }
  
  .btn-outline-light-transparent {
    color: #fff;
    background: transparent;
    border-color: #fff;
  }
  .btn-outline-light-transparent::before {
    background-color: #fff;
  }
  .btn-outline-light-transparent:hover {
    color: #202020;
    background-color: #fff;
    border-color: #fff;
  }
  .btn-check:focus + .btn-outline-light-transparent, .btn-outline-light-transparent:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-check:checked + .btn-outline-light-transparent, .btn-check:active + .btn-outline-light-transparent, .btn-outline-light-transparent:active, .btn-outline-light-transparent.active, .btn-outline-light-transparent.dropdown-toggle.show {
    color: #202020;
    background-color: transparent;
    border-color: #fff;
  }
  .btn-check:checked + .btn-outline-light-transparent:focus, .btn-check:active + .btn-outline-light-transparent:focus, .btn-outline-light-transparent:active:focus, .btn-outline-light-transparent.active:focus, .btn-outline-light-transparent.dropdown-toggle.show:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn-outline-light-transparent:disabled, .btn-outline-light.disabled {
    color: #f8f9fa;
    border-color: #fff;
  }




  
  .btn-link {
    border:none;
    background: none;
    font-weight: 400;
    color: #FF524D;
    text-decoration: underline;
  }
  .btn-link:hover {
    color: #FF524D;
  }
  .btn-link:disabled, .btn-link.disabled {
    color: #6c757d;
  }

  .btn-close{
    background:url(../images/bx-x.svg) transparent center/1.8em auto no-repeat;
    opacity: 1;
  }
  .btn-close.btn-close-white{
    background:url(../images/bx-x-white.svg) transparent center/1.8em auto no-repeat;
  }


  .text-link-info{
    color: #00C7E6;
  }



  .rounded-3 {
    border-radius: 0.5rem !important;
  }

  .dropdown-menu{
      border-color: #E4E8EC;
      border-radius: .5rem;
  }



  /***************** shadow *****************/
  /*.shadow-sm:hover{
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 20%) !important;
  }
  */






  /****************** border *****************/
  .border-primary{
    border-color: #FF524D !important;
  }
  .border-secondary{
    border-color: #9082D9 !important;
  }
  .border-success{
    border-color: #57D9A3 !important;
  }
  .border-info{
    border-color: #00C7E6 !important;
  }
  .border-warning{
    border-color: #FF8426 !important;
  }
  .border-danger{
    border-color: #E40000 !important;
  }
  .border-light{
    border-color: #f8f9fa !important;
  }
  .border-dark{
    border-color: #4F5B6B !important;
  }





  /***************** form ********************/
  label{
    font-weight: 600;
    color: #202020;
  }
  .form-label{
    margin-bottom: .2rem;
  }
  .form-control{
    font-size: .9rem;
  }
  .form-control:focus{
    border-color: #A6A6A6;
  }
  .form-control:focus,
  .btn-check:focus + .btn, .btn:focus{
    -webkit-box-shadow: none;
            box-shadow: none;
  }


  .input-group-password-with-show-btn{
    position: relative;
  }
  .input-group-password-with-show-btn .form-control{
    padding-right: 50px;
  }
  .input-group-password-with-show-btn .btn-show-password{
    background: none; border:none;
    position: absolute !important;
    z-index: 10 !important; 
    right:3px;
    padding:0;
  }


  .dropdown-item{
    font-size: 0.875rem;
  }
  .dropdown-item:hover, .dropdown-item:focus {
    color: #1e2125;
    background-color: #EFF1F4;
  }
  .dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #FF7571;
  }
  .dropdown-item.disabled, .dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent;
  }

 
  .form-check label{
    font-weight: normal;
  }
  .form-check-input:checked {
    background-color: #4F5B6B;
    border-color: #4F5B6B;
  }
  .form-check-input:hover,
  .form-check label:hover{
    cursor: pointer;
  }
  .form-check-input:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .form-check-input[type=checkbox]:indeterminate {
    background-color: #4F5B6B;
    border-color: #4F5B6B;
  }

  .form-select{
    font-size: .9rem;
  }




  /************************ card ********************************/
  .card {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.5rem;
  }
  .card > .list-group:first-child {
    border-top-left-radius: calc(0.5rem - 1px);
    border-top-right-radius: calc(0.5rem - 1px);
  }
  .card > .list-group:last-child {
    border-bottom-right-radius: calc(0.5rem - 1px);
    border-bottom-left-radius: calc(0.5rem - 1px);
  }
  .card-header:first-child {
    border-radius: calc(0.5rem - 1px) calc(0.5rem - 1px) 0 0;
  }
  .card-footer:last-child {
    border-radius: 0 0 calc(0.5rem - 1px) calc(0.5rem - 1px);
  }
  .card-img-overlay {
    border-radius: calc(0.5rem - 1px);
  }
  .card-img,
  .card-img-top {
    border-top-left-radius: calc(0.5rem - 1px);
    border-top-right-radius: calc(0.5rem - 1px);
  }
  .card-img,
  .card-img-bottom {
    border-bottom-right-radius: calc(0.5rem - 1px);
    border-bottom-left-radius: calc(0.5rem - 1px);
  }


  /************************* border ************************/
  .border-top-dashed {
    border-top: 1px dashed #D2D2D2 !important;
  }
  .border-bottom-dashed {
    border-bottom: 1px dashed #D2D2D2 !important;
  }





  /************************** alerts ***************************/
  .alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #D2D2D2;
    background-color: #fff;
    border-radius: 0.5rem;
  }
  
  .alert-link {
    font-weight: 500;
  }
  
  .alert-dismissible {
    padding-right: 3rem;
  }
  .alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem;
  }
  
  .alert-primary {
    color: #202020;
    border-top: 8px solid #FF524D;
  }
  .alert-primary .alert-link {
    color: #FF524D;
  }
  
  .alert-secondary {
    color: #202020;
    border-top: 8px solid #9082D9;
  }
  .alert-secondary .alert-link {
    color: #9082D9;
  }
  
  .alert-success {
    color: #202020;
    border-top: 8px solid #57D9A3;
  }
  .alert-success .alert-link {
    color: #57D9A3;
  }
  
  .alert-info {
    color: #202020;
    border-top: 8px solid #00C7E6;
  }
  .alert-info .alert-link {
    color: #00C7E6;
  }
  
  .alert-warning {
    color: #202020;
    border-top: 8px solid #FF8426;
  }
  .alert-warning .alert-link {
    color: #FF8426;
  }
  
  .alert-danger {
    color: #202020;
    border-top: 8px solid #E40000;
  }
  .alert-danger .alert-link {
    color: #E40000;
  }
  
  .alert-light {
    color: #202020;
    border-top: 8px solid #E4E8EC;
  }
  .alert-light .alert-link {
    color: #4f5050;
  }
  
  .alert-dark {
    color: #4F5B6B;
    border-top: 8px solid #4F5B6B;
  }
  .alert-dark .alert-link {
    color: #4F5B6B;
  }


/************************** badge **************************/
.badge{
  font-weight: 400;
}






/****************** table ************************/
.table-clear tr th,
.table-clear tr td{
  border:none;
}



  /********************** modal ***********************/
  .modal-sm{
    max-width: 320px !important;
    margin-left: auto; margin-right: auto;
  }
  .btn-close:focus{
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .modal-backdrop{
    background-color: #fff;
    z-index: 99991;
  }
  .modal{
    z-index: 99992;
  }
  .modal-content{
    border:none;
    border-radius: 0.5rem;
  }
  .modal-header{
    border-color: #E4E8EC;
    padding:.6rem 1rem;
  }



  /********************** offcanvas ************************/
  .offcanvas{
    z-index: 999991;
    border-color: #E4E8EC;
  }
  .offcanvas-backdrop{
    background: #fff;
    z-index: 99999;
  }
  .offcanvas-main-btns-footer-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }



  /********************** text ******************/
  .fs-7{
    font-size: .85rem !important;
  }



  /********************** max-width ********************/
  .max-w-800{
    max-width: 800px; margin:0 auto;
  }
  .max-w-1600{
    max-width: 1600px; margin:0 auto;
  }