.circle-loader {
    margin-bottom: 2.5em;
    border: 5px solid rgba(0, 0, 0, 0.2);
    border-left-color: #00897b;
    animation: loader-spin 1.2s infinite linear;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    width: 10em;
    height: 10em;
}
.load-complete {
    -webkit-animation: none;
    animation: none;
    border-color: #00897b;
    transition: border 500ms ease-out;
}
.checkmark {
    display: none;
}
.checkmark.draw:after {
    animation-duration: 800ms;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg);
}
.checkmark:after {
    opacity: 1;
    height: 5em;
    width: 2.5em;
    transform-origin: left top;
    border-right: 5px solid #00897b;
    border-top: 5px solid #00897b;
    content: '';
    left: 2.5em;
    top: 5em;
    position: absolute;
}
@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }
    20% {
        height: 0;
        width: 2.5em;
        opacity: 1;
    }
    40% {
        height: 5em;
        width: 2.5em;
        opacity: 1;
    }
    100% {
        height: 5em;
        width: 2.5em;
        opacity: 1;
    }
}

.close-x {
    display: inline-block;
    width: 130px;
    height: 130px;
    border: 7px solid red;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 43%, #fff 45%, #fff 55%, rgba(0, 0, 0, 0) 57%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(135deg, red 0%, red 43%, #fff 45%, #fff 55%, red 57%, red 100%);
}
 