.invalid-feedback {
    display: block !important;
}

.myToast-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.myToast-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none; /* Disable interactions when not active */
}

.myToast-container .myToast {
    z-index: 99999;
    max-width: 90%; /* Ensure the toast doesn't exceed the viewport width */
    position: absolute;
    top: 25px;
    right: 30px;
    border-radius: 12px;
    background: #fff;
    padding: 20px 35px 20px 25px;
    box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
    opacity: 0;
    pointer-events: none;
}

.myToast-container .myToast.active {
    transform: translateX(0%);
    opacity: 1;
    pointer-events: auto;
}

.myToast-container .myToast .myToast-content {
    display: flex;
    align-items: center;
}

.myToast-container .myToast-content .check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    min-width: 35px;
    background-color: #4070f4;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
}

.myToast-container .myToast-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}

.myToast-container .message .text {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

.myToast-container .message .text.text-1 {
    font-weight: 600;
    color: #333;
}

.myToast-container .myToast .close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
}

.myToast-container .myToast .close:hover {
    opacity: 1;
}

.myToast-container .myToast .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
}

.myToast-container .myToast .progress:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #4070f4;
}

.myToast-container .progress.active:before {
    animation: progress 5s linear forwards;
}

@keyframes progress {
    100% {
        right: 100%;
    }
}

.myToast-container .myToast .progress:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: var(--progress-color, #4070f4); /* Use the variable with a fallback color */
}

.btn-group.btn-group-v2 >.btn-group:not(:last-child)>.btn,
.btn-group.btn-group-v2 >.btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
}

.btn-group.btn-group-v2 >.btn-group:not(:first-child)>.btn,
.btn-group.btn-group-v2 >.btn:nth-child(n+3),
.btn-group.btn-group-v2 >:not(.btn-check)+.btn {
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
}

.btn-group.btn-group-v2 > label.btn:not(:first-of-type) {
    margin-left: 10px;
}

.pagination-info {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding: 5px 0;
}

.lang {
    position: relative;
    height: 36px;
    width: 110px;
    border-radius: 1000px;
    padding: 5px 10px;
    background-color: white;
    top: 6px;
    transform: scale(0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.05);
}

.lang > span {
    cursor: pointer;
    height: 100%;
    font-size: 12px;
    font-weight: 900;
    display: flex;
    align-items: center;
    color: #888;
}

.lang > span.active {
    color: #556ee6;
}

.lang .toggle {
    cursor: pointer;
    border-radius: 1000px;
    height: 100%;
    width: 42px;
    padding: 4px;
    display: flex;
    align-items: center; /* This looks like a typo – maybe you meant `center`? */
    background-color: rgba(85, 110, 230, 0.15);
}

.lang .toggle .image {
    height: 18px;
    width: 18px;
    background-color: white;
    border-radius: 1000px;
    background-image: url("{{ URL::asset('assets/images/uz.svg')}}");
    background-size: 100%;
}

.lang:has(.ru) .toggle .image {
    background-image: url("{{ URL::asset('assets/images/ru.svg')}}");
    transform: translateX(16px);
}

.lang {
    display: flex;
    column-gap: 4px;
}

.lang button {
    padding: 4px 8px;
    border-radius: 10px;
    background-color: transparent;
}

.lang button.active {
    background-color: #556ee6;
}
