/* BEGIN - MODAL STYLES */
.efe-modal {
    display: none; 
    position: fixed; 
    z-index: 99999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.efe-modal-body {
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.efe-modal-content {
    position: fixed;
    background-color: #fefefe;
    left: calc(50% - 225px);
    top: calc(50% - 105px);
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: efe-animatetop;
    animation-duration: 0.4s;
}

.efe-modal-close {
    position: relative;
    top: 10px;
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition: all 0.25s linear;
}

.efe-modal-close:hover,
.efe-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.efe-modal-header {
    padding: 2px 16px;
    background-color: #e6001e;
    color: #fff;
}

.efe-modal-header h2{
    color: #fff;
}

.efe-modal-footer {
    display: flex;
    gap: 15px;
    padding: 10px 15px;
    background-color: #fff;
    color: #000;
    border-top: 1px solid #e4e4e4;
}

.efe-modal-footer #efe-modal-footer-btn-close{
    cursor: pointer;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #000;
    transition: all 0.25s linear;
    margin-left: auto;
}

.efe-modal-footer #efe-modal-footer-btn-close:hover{
    background-color: #000;
    color: #fff;
}

.efe-modal-footer #efe-modal-footer-btn-save{
    cursor: pointer;
    padding: 10px 20px;
    background-color: #e6001e;
    color: #fff;
    border: 1px solid #e6001e;
    transition: all 0.25s linear;
}

#efe-loading-modal.efe-modal .efe-modal-content{
    width: 300px;
    left: calc(50% - 150px);
    height: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(min-width: 600px){
    #efe-loading-modal.efe-modal .efe-modal-content{
        width: 500px;
        left: calc(50% - 250px);
    }
}

.efe-svg-loader{
    display:flex;
    position: relative;
    align-content: space-around;
    justify-content: center;
}

.efe-svg-loader svg{
    width: 80px;
    height: 80px;
}

.efe-loader-svg{
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    fill: none;
    stroke-width: 5px;
    stroke-linecap: round;
    stroke: #7EC1E7;
}

.efe-loader-svg.efe-bg{
    stroke-width: 5px;
    stroke: #050505;
}

.efe-animate{
    stroke-dasharray: 242.6;
    animation: fill-animation 1s cubic-bezier(1,1,1,1) 0s infinite;
}

#efe-error-modal .efe-modal-content{
    width: 300px;
    left: calc(50% - 150px);
    top: 150px;
    align-items: center;
    justify-content: center;
    animation-name: efe-error-modal-animatetop;
}

@media(min-width: 600px){
    #efe-error-modal .efe-modal-content{
        width: 550px;
        left: calc(50% - 275px);
    }
}

#efe-error-modal .efe-modal-header {
    padding: 2px 16px;
    background-color: #fff;
    color: #fff;
}

#efe-error-modal .efe-modal-header .efe-modal-close {
    color: #6f6f6f;
}

#efe-error-modal .efe-modal-body {
    padding: 15px 16px;
    text-align: center;
}

#efe-error-modal .efe-modal-body .es-fe-error-modal-msg-main{
    font-size: 28px;
    font-weight: 500;
}

#efe-error-modal .efe-modal-body i.fa-exclamation-circle{
    color: #e6001e;
    font-size: 40px;
}

@keyframes efe-error-modal-animatetop {
    from {top: -300px; opacity: 0}
    to {top: 150px; opacity: 1}
}

@keyframes fill-animation{
    0%{
        stroke-dasharray: 40 242.6;
        stroke-dashoffset: 0;
    }
    50%{
        stroke-dasharray: 141.3;
        stroke-dashoffset: 141.3;
    }
    100%{
        stroke-dasharray: 40 242.6;
        stroke-dashoffset: 282.6;
    }
}
/* END - MODAL STYLES */

@-moz-keyframes efe-loading-spinner-spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes efe-loading-spinner-spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes efe-loading-spinner-spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

@-moz-keyframes efe-animatetop { from {top: -300px; opacity: 0} to {top: calc(50% - 105px); opacity: 1} }
@-webkit-keyframes efe-animatetop { from {top: -300px; opacity: 0} to {top: calc(50% - 105px); opacity: 1} }
@keyframes efe-animatetop { from {top: -300px; opacity: 0} to {top: calc(50% - 105px); opacity: 1} }