﻿.checkmark {
    width: 50px;
    height: 50px;
    position: relative;
    /*display: inline-block;*/
    display: none;
    vertical-align: top;
}

    .checkmark .background {
        width: 50px;
        height: 5px;
        border-radius: 5px;
        background: #B8A16C;
        position: absolute;
        margin-top: 50px;
    }

    .checkmark .check {
        height: 0px;
        width: 0px;
        background: #708E2B;
        -webkit-transform-origin: left top;
        -moz-transform-origin: left top;
        -ms-transform-origin: left top;
        -o-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: scaleX(-1) rotate(45deg);
        -moz-transform: scaleX(-1) rotate(45deg);
        -ms-transform: scaleX(-1) rotate(45deg);
        -o-transform: scaleX(-1) rotate(45deg);
        transform: scaleX(-1) rotate(45deg);
        border-right: 3px solid #708E2B;
        border-left: 3px solid #708E2B;
        border-radius: 3px;
        content: '';
        left: 10px;
        top: 28px;
        position: absolute;
    }

        .checkmark .check.draw {
            -webkit-animation-delay: 0ms;
            -moz-animation-delay: 0ms;
            animation-delay: 0ms;
            -webkit-animation-duration: 500ms;
            -moz-animation-duration: 500ms;
            animation-duration: 500ms;
            -webkit-animation-timing-function: ease;
            -moz-animation-timing-function: ease;
            animation-timing-function: ease;
            -webkit-animation-name: check;
            -moz-animation-name: check;
            animation-name: check;
            -webkit-animation-fill-mode: forwards;
            -moz-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
        }

@-webkit-keyframes check {
    0% {
        height: 0px;
        width: 1px;
    }

    100% {
        height: 20px;
        width: 1px;
    }
}

@-moz-keyframes check {
    0% {
        height: 0px;
        width: 1px;
    }

    100% {
        height: 20px;
        width: 1px;
    }
}

@keyframes check {
    0% {
        height: 0px;
        width: 1px;
    }

    100% {
        height: 20px;
        width: 1px;
    }
}




.checkmark .check2 {
    height: 0px;
    width: 0px;
    background: #708E2B;
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scaleY(-1) rotate(45deg);
    -moz-transform: scaleY(-1) rotate(45deg);
    -ms-transform: scaleY(-1) rotate(45deg);
    -o-transform: scaleY(-1) rotate(45deg);
    transform: scaleY(-1) rotate(45deg);
    border-top: 3px solid #708E2B;
    border-bottom: 3px solid #708E2B;
    border-radius: 3px;
    content: '';
    left: 21px;
    top: 47px;
    position: absolute;
}

    .checkmark .check2.draw {
        -webkit-animation-delay: 500ms;
        -moz-animation-delay: 500ms;
        animation-delay: 500ms;
        -webkit-animation-duration: 500ms;
        -moz-animation-duration: 500ms;
        animation-duration: 500ms;
        -webkit-animation-timing-function: ease;
        -moz-animation-timing-function: ease;
        animation-timing-function: ease;
        -webkit-animation-name: check2;
        -moz-animation-name: check2;
        animation-name: check2;
        -webkit-animation-fill-mode: forwards;
        -moz-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

@-webkit-keyframes check2 {
    0% {
        height: 1px;
        width: 7px;
    }

    100% {
        height: 1px;
        width: 35px;
    }
}

@-moz-keyframes check2 {
    0% {
        height: 1px;
        width: 7px;
    }

    100% {
        height: 1px;
        width: 35px;
    }
}

@keyframes check2 {
    0% {
        height: 1px;
        width: 7px;
    }

    100% {
        height: 1px;
        width: 35px;
    }
}
