﻿@font-face {
    font-family: 'AdobeCleanUXMedium';
    src: url('../fonts/adobe-clean-cufonfonts/AdobeCleanUXMedium.otf') format('opentype');
}


.pac-container {
    z-index: 99999;
}
body {
    background-color: #F2F7F2;
}
.Myprofile {
    color: #000000;
    padding-left: 10px !important;
    font-size: 18px;
}
.Myprofile_bodydv_icon {
    font-size: 20px;
    color: #000000;
    margin-top: -10px;
}
/*.floating-label {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    outline: none;
    color: rgba(0, 0, 0, 0.5);
}*/

.logo1 img {
    width: 50px;
}

.floating-input, .floating-select {
    font-size: 14px !important;
    padding: 4px 4px;
    display: block;
    width: 100%;
    height: 48px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    outline: none;
    color: rgba(0, 0, 0, 0.7) !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.page_redir {
    position: fixed !important;
    bottom: 20%;
}
.menu-open-button {
    background: #ff8150;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    /* margin-left: -40px; */
    position: absolute;
    top: 20px;
    left: 70px;
    color: white;
    text-align: center;
    line-height: 31px;
    transform: translate3d(0, 0, 0);
    transition: transform ease-out 200ms;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.menu-open-button {
    background: #ff8150;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    /* margin-left: -40px; */
    position: absolute;
    top: 20px;
    left: 70px;
    color: white;
    text-align: center;
    line-height: 31px;
    transform: translate3d(0, 0, 0);
    transition: transform ease-out 200ms;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.menu-open-button2 {
    background: #ff8150;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    /* margin-left: -40px; */
    position: absolute;
    top: 20px;
    left: 30px;
    color: white;
    text-align: center;
    line-height: 31px;
    transform: translate3d(0, 0, 0);
    transition: transform ease-out 200ms;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.menu-open-button, .menu-open-button2 {
    z-index: 2;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-duration: 400ms;
    transform: scale(1.1, 1.1) translate3d(0, 0, 0);
    cursor: pointer;
}

    .menu-open-button:hover {
        transform: scale(1.2, 1.2) translate3d(0, 0, 0);
    }

    .menu-open-button2:hover {
        transform: scale(1.2, 1.2) translate3d(0, 0, 0);
    }
    .floating-input:focus, .floating-select:focus {
        outline: none;
        border: 2px solid #ff693d;
    }

.labellb {
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 5px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.floating-input:focus ~ label, .floating-input:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 13px;
    color: #343C8E;
    background: #fff;
    border-radius: 5px;
    padding-right: 7px;
}

}

.floating-select:focus ~ label, .floating-select:not([value=""]):valid ~ label {
    top: -18px;
    font-size: 10px;
    color: #ff693d;
}

/* active state */
.floating-input:focus ~ .bar:before, .floating-input:focus ~ .bar:after, .floating-select:focus ~ .bar:before, .floating-select:focus ~ .bar:after {
    width: 50%;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.floating-textarea {
    min-height: 30px;
    max-height: 260px;
    overflow: hidden;
    overflow-x: hidden;
}

/* highlighter */
.highlight {
    position: absolute;
    height: 50%;
    width: 100%;
    top: 15%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
.floating-input:focus ~ .highlight, .floating-select:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

.labellb {
    color: rgba(0, 0, 0, 0.5);
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 20px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}
.edit_div{
    display:none;
}


[role="progressbar"] {
    --percentage: var(--value);
    --primary: #F1C40F;
    --secondary: #ff8150;
    --size: 40px;
    animation: progress 2s 0.5s forwards;
    width: var(--size);
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

    [role="progressbar"]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: conic-gradient(var(--primary) calc(var(--percentage) * 1%), var(--secondary) 0);
        mask: radial-gradient(white 55%, transparent 0);
        mask-mode: alpha;
        -webkit-mask: radial-gradient(#0000 55%, #000 0);
        -webkit-mask-mode: alpha;
    }

    [role="progressbar"]::after {
        counter-reset: percentage var(--value);
       /* content: counter(percentage) '%';*/
        font-family: 'Outfit-Medium';
        font-size: calc(var(--size) / 5);
        color: var(--primary);
    }
.upload-options {
    position: relative;
    height: 40px;
    background: #6c757d78;
    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: linear-gradient(93.7deg, #ff8a47 1.97%, #ff4300 92.38%);
    }

    .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;
            font-size: 1rem;
            color: #e6e6e6;
            top: calc(50% - 0.5rem);
            left: calc(50% - 2.5rem);
            z-index: 0;
        }

        .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;
    }

.item a .dropdown {
    position: absolute;
    right: 0;
    margin: 20px;
    transition: 0.3s ease;
}

.item a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    display: block;
    padding: 5px 15px;
    line-height: 30px;
}

  /*  .item a:hover {
        background: #33363a;
        transition: 0.3s ease;
    }*/

.item i {
    margin-right: 15px;
}

.item a .dropdown {
    position: absolute;
    right: 0;
    margin: 20px;
    transition: 0.3s ease;
}

.item .sub-menu1 {
    /* background: #262627;*/
    display: none;
}

    .item .sub-menu1 a {
        padding-left: 16px;
    }

.sub-item {
    width: 100% !important;
    height: 100% !important;
    background: none !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 48px !important;
    font-size: 16px !important;
    color: var(--dark) !important;
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
}

.rotate {
    transform: rotate(90deg);
}


/* SIDEBAR */
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    /*height: 100%;*/
    /*background: var(--light);*/
    z-index: 2000;
    font-family: 'AdobeCleanUXMedium';
    transition: .3s ease;
    overflow-x: hidden;
    scrollbar-width: none;
}

    #sidebar::--webkit-scrollbar {
        display: none;
    }

    #sidebar.hide {
        width: 60px;
    }

    #sidebar .brand {
        font-size: 24px;
        font-weight: 700;
        height: 56px;
        display: flex;
        align-items: center;
        color: var(--blue);
        position: sticky;
        top: 0;
        left: 0;
        /*background: var(--light);*/
        z-index: 500;
        padding-bottom: 20px;
        box-sizing: content-box;
    }

        #sidebar .brand .bx {
            min-width: 60px;
            display: flex;
            justify-content: center;
        }

    #sidebar .side-menu {
        width: 100%;
        /*margin-top: 48px;*/
    }

        #sidebar .side-menu li {
            /* height: 48px;*/
            /* background: transparent;
            margin-left: 6px;*/
            border-radius: 48px 0 0 48px;
            padding: 4px;
        }

            #sidebar .side-menu li.active {
                background: var(--grey);
                position: relative;
            }

                #sidebar .side-menu li.active::before {
                    content: '';
                    position: absolute;
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    top: -40px;
                    right: 0;
                    box-shadow: 20px 20px 0 var(--grey);
                    z-index: -1;
                }

                #sidebar .side-menu li.active::after {
                    content: '';
                    position: absolute;
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    bottom: -40px;
                    right: 0;
                    box-shadow: 20px -20px 0 var(--grey);
                    z-index: -1;
                }

            #sidebar .side-menu li a {
                width: 100%;
                height: 100%;
              /*  background: var(--light);*/
                display: flex;
                align-items: center;
              /*  border-radius: 48px;*/
                font-size: 15px;
                color: var(--dark);
                white-space: nowrap;
                overflow-x: hidden;
                overflow-y: hidden;
            }

        #sidebar .side-menu.top li.active a {
            color: var(--blue);
        }

    #sidebar.hide .side-menu li a {
        width: calc(48px - (4px * 2));
        transition: width .3s ease;
    }

    #sidebar .side-menu li a.logout {
        color: var(--red);
    }

    #sidebar .side-menu.top li a:hover {
        color: var(--blue);
    }

    #sidebar .side-menu li a .bx {
        min-width: calc(60px - ((4px + 6px) * 2));
        display: flex;
        justify-content: center;
    }
/* SIDEBAR */
#exampleModal {
    z-index: 99999;
}

.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: #6c757d78;
    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: linear-gradient(93.7deg, #ff8a47 1.97%, #ff4300 92.38%);
    }

    .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;
            font-size: 1rem;
            color: #e6e6e6;
            top: calc(50% - 0.5rem);
            left: calc(50% - 2.5rem);
            z-index: 0;
        }

        .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;
    }
.avatars {
    vertical-align: middle;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
.swal2-container {
    z-index: 999999 !important;
}