﻿.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1100;
    /* Sit on top */
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px) saturate(100%) contrast(45%) brightness(100%);
}
.modalSignup {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1100;
    /* Sit on top */
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    background-color: rgba(0, 0, 0, 0.5);
}

.modalForForm {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1100;
    /* Sit on top */
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0);
}

body.modal-open {
    overflow: hidden;
}
/* Modal Content */

.modal-content {
    color: white;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 25%;
    height: auto;
    background-color: #ffffff;
    margin: auto;
    padding: 0;
    border-radius: 13px 13px 13px 13px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 50%;
    box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2), 0 0.375rem 1.25rem 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.6s;
    animation-name: animatetop;
    animation-duration: 0.6s;
}

.modal-body {
    padding: 2px 16px;
    width: auto;
    overflow-y: scroll;
    height: auto;
    max-height: 58vh;
    margin-top: 80px;
}

::-webkit-scrollbar {
    width: 0; /* Remove scrollbar space */
    background: transparent; /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}

/* Add Animation */

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 50%;
        opacity: 1;
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 50%;
        opacity: 1;
    }
}

@-webkit-keyframes animateBottom {
    from {
        top: 50%;
        opacity: 1;
    }

    to {
        top: -300px;
        opacity: 0;
    }
}

@keyframes animateBottom {
    from {
        top: 50%;
        opacity: 1;
    }

    to {
        top: -300px;
        opacity: 0;
    }
}

.modal-content-active {
    -webkit-animation-name: animateBottom;
    -webkit-animation-duration: 1.4s;
    animation-name: animateBottom;
    animation-duration: 1.4s;
}


/* The Close Button */

.close {
    position: absolute;
    color: #8e8383;
    border-radius: 50%;
    top: 1px;
    right: 1px;
    border: none;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 25px;
    background-color: transparent;
}

    .close:hover,
    .close:focus {
        color: #fff;
        background-color: red;
        text-decoration: none;
        cursor: pointer;
    }

.modal-header {
    width: 99.4%;
    height: auto;
    position: absolute;
    margin-right: 20px;
    background-color: #E6E6E6;
    color: #333333;
    font-family: ezassistFont;
    font-size: 22px;
    border-bottom: 1px solid rgb(194, 201, 207);
    padding-left: 5px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .modal-header p {
        font-size: 15px;
        font-weight: bold;
        padding-top: 10px;
        padding-left: 5px;
    }

.modal-footer {
    display: flex;
    width: 100%;
    height: 10%;
    margin-bottom: 10px;
    margin-right: 20px;
    background-color: #fff;
    text-align: right;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}


.footer_right {
    width: 48%;
    margin: 4px 3px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}


.footer_left {
    width: 48%;
    margin: 4px 9px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer_btn_submit {
    width: 50%;
    background-color: #00C34F;
    border: none;
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
    color: #fcfcfc;
    box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2), 0 0.375rem 1.25rem 0 rgba(0, 0, 0, 0.19);
}

.footer_btn_cancel {
    width: 50%;
    background-color: #FF0000;
    border: none;
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2), 0 0.375rem 1.25rem 0 rgba(0, 0, 0, 0.19);
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
}

.crossmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #ff0000;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.crossmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #ff0000;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #ff0000;
    animation: fillred .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.crossmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.cross__path {
    stroke: #ffffff;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    transform-origin: 50% 50% 0;
}

.cross__path--right {
    animation: 0.3s ease 0.8s normal forwards 1 running stroke;
}

.cross__path--left {
    animation: 1s ease 0.8s normal forwards 1 running stroke;
}

@keyframes fillred {
    100% {
        box-shadow: inset 0px 0px 0px 30px #ff0000;
    }
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.circular-loader {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 40px;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    width: 40px;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
}

.loader-path {
    stroke-dasharray: 150, 200;
    stroke-dashoffset: -10;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@-webkit-keyframes color {
    0% {
        stroke: #ffffff;
    }

    40% {
        stroke: #ffffff;
    }

    66% {
        stroke: #ffffff;
    }

    80%, 90% {
        stroke: #ffffff;
    }
}

@keyframes color {
    0% {
        stroke: #ffffff;
    }

    40% {
        stroke: #ffffff;
    }

    66% {
        stroke: #ffffff;
    }

    80%, 90% {
        stroke: #ffffff;
    }
}





.form_Box_InputMini {
    height: 37px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    .form_Box_InputMini:focus {
        color: #495057;
        background-color: #ffffff;
        border-color: #80bdff;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
    }

.loginClass {
    background-color: #0054D1;
    color: #fff;
    font-weight: 400;
    outline: none;
    border: 0px;
    width: 181px;
    padding: 5px;
    border-radius: 11px;
    height: 35px;
    cursor: pointer;
}

    .loginClass:focus {
        background-color: #0054D1;
        color: #fff;
        font-weight: 400;
        outline: none;
        border: 0px;
        width: 181px;
        padding: 5px;
        border-radius: 11px;
        height: 35px;
        cursor: pointer;
    }

.loginWitdh {
    width: 39% !important;
    margin-top: 35px;
}
#cusBtn {
    width: 123px;
    float:none;
    font-weight: bold;
    border-radius: 7px;
    background-color: #F28020;
    color: #fff;
    outline: none;
    border: 0px;
    height:27px;
    cursor:pointer;
    font-weight:bold;
}
#logoFlex {
    display: flex;
    width: 100%;
}
#butnFlex {
    vertical-align: baseline;
    margin-top: 41px;
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}
::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 11px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

@-webkit-keyframes spinner-border {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
#centerLogo {
    display: flex;
    margin: auto;
    float: right;
}
#logoMargin {
    margin-left: 355px;
}
#headSen {
    padding-top: 11px;
    padding-bottom: 21px;
}
#creditFontSize{
    font-size:15px;
}
.modalMarginForLogo {
    margin-top: 61px;
}


.collapsible {
    background-color: #777;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

    .active, .collapsible:hover {
        background-color: #555;
    }

