/* Google Font Import - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

/* Custom Toast CSS Start */
.cus_toast,
.cus_toast1 {
    position: absolute;
    top: var(--cus_toast_top);
    right: 30px;
    border-radius: 12px;
    background: var(--cus_toast_bg);
    padding: 20px 35px 20px 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--cus_toast_border);
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
    /* transition: all 0.5s linear; */
    z-index: 2000;
    /* display: none;
    opacity: 0; */
}

.cus_toast.active,
.cus_toast1.active {
    /* display: block;
    opacity: 1; */
    transform: translateX(0%);
}

.cus_toast .cus_toast-content,
.cus_toast1 .cus_toast-content {
    display: flex;
    align-items: center;
}

.cus_toast-content .check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    background-color: var(--cus_toast_check_bg);
    color: var(--cus_toast_check_icon);
    font-size: 20px;
    border-radius: 50%;
    margin-right: 15px;
}

.cus_toast-content .error {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    background-color: var(--cus_toast_error_bg);
    color: var(--cus_toast_error_icon);
    font-size: 30px;
    border-radius: 50%;
    margin-right: 15px;
}

.cus_toast-content .message {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    border-left: 2px solid var(--cus_toast_border);
}

.message .text {
    font-size: 15px;
    font-weight: 400;
    color: var(--cus_toast_text);
}

.message .cus_success {
    font-weight: 600;
    color: var(--cus_toast_check_bg);
}

.message .cus_error {
    font-weight: 600;
    color: var(--cus_toast_error_bg);
}

.cus_toast .sami_close,
.cus_toast1 .sami_close1 {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    font-size: 16px;
    cursor: pointer;
    pointer-events: auto;
    opacity: 0.7;
}

.cus_toast .sami_close:hover,
.cus_toast1 .sami_close1:hover {
    opacity: 1;
}

.cus_toast .progress,
.cus_toast1 .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #ddd;
}

.cus_toast .progress:before,
.cus_toast1 .progress:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: var(--cus_toast_border);
}

.progress.active:before {
    animation: progress var(--cus_toast_time) linear forwards;
}

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

/* button {
    padding: 12px 20px;
    font-size: 20px;
    outline: none;
    border: none;
    background-color: #4070f4;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #0e4bf1;
}

.toast.active~button {
    pointer-events: none;
} */

/* Custom Toast CSS End */

/* Custom Image Preview CSS Start */

.image_view {
    width: 100px;
    height: 100px;
    cursor: pointer;
}

.image_view_pointer {
    cursor: pointer;
}

#FullImageView {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
    z-index: 1200;
    justify-content: center;
    align-items: center;
}

#FullImage {
    padding: 24px;
    max-width: 98%;
    max-height: 98%;
}

#CloseBtn {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
}

/* Custom Image Preview CSS End */

@media screen and (max-width: 376px) {
    .cus_toast,
    .cus_toast1 {
        right: 12px;
        padding: 15px 15px 20px 15px;
    }

    .cus_toast.active,
    .cus_toast1.active {
        transform: translateX(2%);
    }
}
