﻿


.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.box {
    display: block;
    min-width: 100%;
    height: 150px;
    background-color: white;
    /*border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);*/
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.upload-options {
    position: relative;
    height: 40px;
    background: #E01A2B;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    -webkit-transition: background-color ease-in-out 150ms;
    transition: background-color ease-in-out 150ms;
}

    .upload-options:hover {
        background: #E01A2B;
    }

    .upload-options input {
        width: 0.1px;
        height: 0.1px;
        opacity: 0;
        overflow: hidden;
        position: absolute;
        z-index: -1;
    }

    .upload-options label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        height: 100%;
        font-weight: 400;
        text-overflow: ellipsis;
        white-space: nowrap;
        cursor: pointer;
        overflow: hidden;
    }

        .upload-options label::after {
            content: '+ Upload';
            position: absolute;
            background-color: #E01A2B!important;
            font-size: 1rem;
            color: #e6e6e6;
            top: calc(50% - 0.5rem);
            left: calc(50% - 2.5rem);
            z-index: 0;
        }
.form-floating-outline label::after, .form-floating-outline > span::after {
    background: #E01A2B;
}



        .upload-options label span {
            display: inline-block;
            width: 50%;
            height: 100%;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
            vertical-align: middle;
            text-align: center;
        }

            .upload-options label span:hover i.material-icons {
                color: lightgray;
            }

.js--image-preview {
    height: 110px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-image: url("");
    background-color: #f1f1f16e;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .js--image-preview::after {
        content: " ";
        position: relative;
        font-size: 2em;
        color: #e6e6e6;
        top: calc(50% - 1.5rem);
        left: calc(50% - 7.25rem);
        z-index: 0;
    }

    .js--image-preview.js--no-default::after {
        display: none;
    }


.custom-alert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.custom-alert-content {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: relative;
    max-width: 400px;
    width: 350px;
    text-align: center;
    border-radius: 8px;
}

.close-alert {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.alert-title {
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 13px;
}

.alert-message {
    font-size: 18px;
    margin-bottom: 20px;
}

.ok-button {
    padding: 6px 20px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.dangersymbol {
    padding: 9px 30px 11px 30px;
    border: 2px solid #f43a26;
    border-radius: 100%;
    font-size: 45px;
    color: #f43a26;
    font-weight: 900;
}
.confirm {
    font-weight: 600;
    font-size: 25px;
    padding: 0px!important;
    margin: 0px!important;
}

/*pop up box*/
.popup-alert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popupcustom-alert-content {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: relative;
    max-width: 400px;
    width: 350px;
    text-align: center;
    border-radius: 8px;
}

.popupclose-alert {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.popupalert-title {
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 13px;
}

.popupalert-message {
    font-size: 18px;
    margin-bottom: 20px;
}

.popupok-button {
    padding: 6px 20px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/*------Loader--------*/
/* Freeze body */
body.freeze {
    overflow: hidden; /* Prevent scrolling */
}

/* Loader Overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dull effect */
    z-index: 9999;
    display: none;
}

/* Centered Loader */
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top: 5px solid #E01A2B;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none
}

/* Loader Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}