﻿/*
    This file is to show how CSS and other static resources (such as images) can be
    used from a library project/package.
*/

.my-component {
    border: 2px dashed red;
    padding: 1em;
    margin: 1em 0;
    background-image: url('background.png');
}

/*.jccard {*/
    /*box-shadow: 8px 9px 20px 1px #ced4da;*/
    /*box-shadow: -5px 8px 9px 0px #ced4da91;
    border-radius: 5px 5px 5px 5px;
}

.jccardheader {
    background-color: #7891da;
    color: #fff;
    text-align: center;
}*/


.cardhovereffect {
    box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}

.verifiedcolor {
    color: green;
}

.notverifiedcolor {
    color: red;
}

.wizard > .steps .current-info, .wizard > .steps .number {
    display: none;
}

.transactioncardcolor {
    background-color: #91a2dcb0;
}

.steps {
    margin-bottom: 30px;
}

    .steps ul {
        display: flex;
        position: relative;
        list-style: none;
        padding: 0;
    }

        .steps ul li {
            width: 20.16%;
            margin-right: 10px;
        }

            .steps ul li a {
                display: inline-block;
                width: 100%;
                height: 7px;
                background: #c5c5c5;
                border-radius: 3.5px;
            }

            .steps ul li.first a, .steps ul li.checked a {
                background: #4e73df;
                transition: all 0.5s ease;
            }

            .steps ul li:last-child {
                margin: 0;
            }



/*Error Page - End*/
#errorPage {
    position: relative;
    height: 100vh;
}

    #errorPage .errorPage {
        position: absolute;
        left: 50%;
        top: 20%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.errorPage {
    max-width: 710px;
    width: 100%;
    padding-left: 190px;
    line-height: 1.4;
}

    .errorPage .errorPage-icon {
        position: absolute;
        left: 0;
        top: 0;
        width: 150px;
        height: 120px;
    }

        .errorPage .errorPage-icon h1 {
            font-size: 125px;
            letter-spacing: 15.5px;
            margin: 0px;
            font-weight: 900;
            position: absolute;
            left: 69%;
            top: 48%;
            width: 100%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

    .errorPage h2 {
        font-size: 28px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2.5px;
        margin-top: 0;
    }

    .errorPage p {
        font-size: 14px;
        font-weight: 400;
        margin-top: 0;
        margin-bottom: 15px;
        color: #333;
    }

    .errorPage a {
        font-size: 14px;
        text-decoration: none;
        text-transform: uppercase;
        background: #fff;
        display: inline-block;
        padding: 15px 30px;
        border-radius: 40px;
        color: #292929;
        font-weight: 700;
        -webkit-box-shadow: 0px 4px 15px -5px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 4px 15px -5px rgba(0, 0, 0, 0.3);
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .errorPage a:hover {
            color: #fff;
        }

@media only screen and (max-width: 480px) {
    .errorPage {
        text-align: center;
    }

        .errorPage .errorPage-icon {
            position: relative;
            width: 100%;
            margin-bottom: 15px;
        }

    .errorPage {
        padding-left: 15px;
        padding-right: 15px;
    }
}


.circleBeforeTickColor {
    color: hsl(225deg 69% 59%) !important;
}

.circleAfterTickColor {
    color: hsl(110deg 88% 35%) !important;
}

.baseBlock {
    -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .baseBlock:hover {
        -webkit-transform: translate(0, -8px);
        -moz-transform: translate(0, -8px);
        -ms-transform: translate(0, -8px);
        -o-transform: translate(0, -8px);
        transform: translate(0, -8px);
        box-shadow: 0 40px 40px rgba(0, 0, 0, 0.2);
    }
/*Error Page - End*/


.blink_me {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        background-color: #b5d5f7;
    }
}

