:root {
    --primary-color: #491380;
    --primarr-light-color: #24093E;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-white-100: #FFFFFF33;
    --color-light-100: #00000052;
    --color-light-200: #0000006E;
    --color-danger: #FF4141;
    --color-success: #2BCF10;
    --color-yellow: #FFA048;
    --color-gray: #CFCFCF;
    --color-grident: linear-gradient(0deg, #FF2B6B -41.84%, #B948FF 106.12%);

    --font-65: 65px;
    --font-70: 50px;
    --font-18: 18px;
    --font-16: 16px;
    @media screen and (max-width: 767px) {
        --font-65: 30px;
        --font-70: 28px;
        --font-18: 16px;
    }
}
* {
    font-family: "Roboto", sans-serif;
    color: var(--color-black);
}
body {
    margin: 0 !important;
}
img {
    max-width: 100%;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.btn-referal {
    background: var(--color-grident);
    border: 0 !important;
    font-size: 14px !important;
    height: 49px;
    padding: 0 15px !important;
    display: flex;
    align-items: center;
}
.btn-referal:hover, .btn-referal:focus {
    color: var(--color-white) !important;
}
.btn-outline-primary {
    border: 1px solid var(--color-light-100);
    background-color: var(--color-white);
    color: var(--color-black);
    display: flex;
    align-items: center;
    height: 49px;
    padding: 0 25px;
    font-size: 16px;
    font-weight: 600;
}
.btn-primary {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--color-white);
    height: 49px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    font-size: 16px;
    font-weight: 600;
}
.btn-white, .btn-white:hover, .btn-white:active,  .btn-white:focus-visible {
    border: 1px solid var(--color-white) !important;   
    color: var(--color-white) !important;
    font-weight: 500;
}
.btn-bg-white {
    background-color: var(--color-white) !important;
    color: var(--color-black) !important;
    font-weight: 600;
    box-shadow: 0px 4px 4px 0px #00000040;
    min-width: 150px;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-light-100);
}
.text-warning {
    color: var(--color-yellow);
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-muted {
    color: var(--color-light-200) !important;
}
.text-danger {
    color: var(--color-danger) !important;
}
.text-success {
  color: var(--color-success) !important;
}
.form-control {
    border-color: var(--color-gray) !important;
    height: 60px;
    box-shadow: none !important;
    outline: none !important;
    font-size: var(--font-16);
    padding: 20px;
    border-radius: 10px !important;
}
.form-control::placeholder {
    color: var(--color-light-200);
}
.dropdown-item.active, .dropdown-item:active {
    background-color: var(--primary-color);
    color: var(--color-white);
}
.dropdown-item.active img, .dropdown-item:active img {
  filter: invert();
}
.input-checked input {
    background-image: url(../images/icon-checked.svg);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: 97% center;
    padding-right: 50px;
}
.change-icon input {
    background-image: url(../images/icon-edit.svg);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: 97% center;
    padding-right: 50px;
}
.form-check-input {
    box-shadow: none !important;
    outline: none !important;
}
.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.fs-20 {
    font-size: 20px;
}
.fs-24 {
    font-size: 24px;
}
@media screen and (max-width: 767px) {
    .btn-bg-white {
        min-width: inherit;
    }
    .btn-outline-primary, .btn-referal, .btn-primary {
        height: 38px;
    }
    .btn-referal {
        font-size: 12px;
        padding: 0 12px;
    }
    .fs-20 {
        font-size: 16px;
    }
    .fs-24 {
        font-size: 17px;
    }
}

.card-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100% !important;
    margin: 0 auto;
    right: 0;
    height: 25px;
    border-radius: 0;
    background-color: #ffffff6e;
}
.card-progress .progress-bar {
    background-color: rgba(var(--bs-success-rgb));   
}
.badge-text {
    position: absolute;
    bottom: 5px;
    right: 0;
    right: 20px;
    font-size: 10px !important;
    background-color: #ffffff;
    color: #000;
    padding: 0 6px;
    border-radius: 2px;
}
.badge-text small {
    color: rgba(0,0,0,0.5) !important;  
}
.btn_small {
    height: auto;
    padding: 5px 10px;
    font-size: 14px;
    margin-top: 5px;
}
.link_text {
    font-size: 20px;
}
hr {
    border-top: var(--primary-color) solid;
}
@media screen and (max-width: 575px) {
    .btn-referal {
        padding: 0 10px !important;
        font-size: 12px !important;
    }
}
@media screen and (min-width: 1200px) and (max-width: 1320px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1250px;
    }
}


.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  width: 180px;
  padding: 14px 18px;
  border-radius: 8px;
  color: white;
  font-size: 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.4s ease, fadeOut 0.5s ease 2.5s forwards;
}

.toast.success { background-color: #22c55e; }   /* Green */
.toast.error { background-color: #ef4444; }     /* Red */
.toast.info { background-color: #3b82f6; }      /* Blue */

@keyframes slideIn {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
  to {
    transform: translateX(120%);
    opacity: 0;
  }
}

.toast:not(.show) {
    display: inline-block;
}