

/*
LOADER
*/

.loader {
    position: relative;
    margin: 0 auto;
    width: 100px;
}
.loader::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.loader-btn {
    width: 20px;
}

.loader-inline {
    display: inline-block;
}

.circular {
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.path {
    stroke: #1bc58a;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

.loader-theme .path {
    stroke: #1bc58a;
}
.loader-primary .path {
    stroke: #3699ff;
}
.loader-secondary .path {
    stroke: #e4e6ef;
}
.loader-success .path {
    stroke: #6dc571;
}
.loader-info .path {
    stroke: #1bc5bd;
}
.loader-warning .path {
    stroke: #ee9d01;
}
.loader-danger .path {
    stroke: #f64e60;
}
.loader-bluegrey .path {
    stroke: #607D8B;
}
.loader-white .path {
    stroke: #fff;
}

.path-multicolor {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}



.loader-blue {
    border: 10px solid #f3f3f3;
    border-top: 10px solid #3498db;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1.5s linear infinite;
    margin: 20px auto;
}
.loader-xs {
    width: 30px;
    height: 30px;
    border-width: 4px;
    border-top-width: 4px;
}
.loader-sm {
    width: 50px;
    height: 50px;
    border-width: 6px;
    border-top-width: 6px;
}
.loader-md {
    width: 80px;
    height: 80px;
    border-width: 8px;
    border-top-width: 8px;
}
.loader-lg {
    width: 120px;
    height: 120px;
    border-width: 12px;
    border-top-width: 12px;
}
.loader-xl {
    width: 150px;
    height: 150px;
    border-width: 14px;
    border-top-width: 14px;
}

.loader-circle-small {
    border: 4px solid rgba(255,255,255,0.2);
    border-top: 4px solid #eee;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 2s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border-width: 6px;
    border-style: solid;
    border-color: #1bc58a transparent #1bc58a transparent;
    animation: spin 1.2s linear infinite;
}
.lds-dual-ring-xs {
    width: 20px;
    height: 20px;
}
.lds-dual-ring-xs:after {
    width: 16px;
    height: 16px;
    margin: 2px;
    border-width: 2px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Loading animation container */
#loader-gif, #loader-gif-sec {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 55px;
    height: 55px;
    margin: -17px 0 0 -17px;
    display:none;
}

/* Spinning circle (inner circle) */
#loader-gif .maskedCircle, #loader-gif-sec .maskedCircle {
    width: 50px;
    height: 50px;
    border-radius: 24px;
    border: 5px solid #1bc5bd;
}

/* Spinning circle mask */
#loader-gif .mask, #loader-gif-sec .mask {
    width: 25px;
    height: 25px;
    overflow: hidden;
}

/* Spinner */
#loader-gif .spinner, #loader-gif-sec .spinner {
    position: absolute;
    left: 1px;
    top: 1px;
    width: 50px;
    height: 50px;
    animation: spin 1s infinite linear;
}



#loader-div {
    margin: 10px auto;
    text-align: center;
}

/* Loading animation container */
#loader {
    position: relative;
    margin: -17px 0 0 -17px;
    /*width: 55px;*/
    height: 50px;
}

/* Spinning circle (inner circle) */
#loader .maskedCircle {
    width: 50px;
    height: 50px;
    border-radius: 24px;
    border: 5px solid #1bc5bd;
}

/* Spinning circle mask */
#loader .mask {
    width: 25px;
    height: 25px;
    overflow: hidden;
}

/* Spinner */
#loader .spinner {
    position: relative;
    width: 45px;
    height: 45px;
    animation: spin 1s infinite linear;
    display: inline-block;
}

#loader h4 {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 10px;
    line-height: 25px;
}
