
.single-card{
    width: 550px;
    height: 330px;
    font-size: 16px;
}
.a4__card{
    padding-top: 4rem;
    padding-bottom: 2rem;
    background-color: #ffffff;
    //height: 297mm;
    width: 210mm;
    margin: 0 auto;
    //height: 280mm;
    display: grid;
    grid-template-columns: auto auto;
    grid-auto-rows: 244px;
    .card__entry{
        padding: 10px;
        //width: 50%;
        //float: left;
        &:nth-child(odd){
            border-right: 2px dashed lightgray;
            border-bottom: 2px dashed lightgray;
        }
        &:nth-child(even){
            border-bottom: 2px dashed lightgray;
        }
        &:nth-child(1),&:nth-child(2){
            border-top: 2px dashed lightgray;
        }
    }
}


.print_area{
    &.a_portrait{
        padding-top: 2rem;
        padding-bottom: 2rem;
        .card__entry{
            padding: 10px;
            //width: 50%;
            //float: left;
            border-right: 2px dashed lightgray;
            &:nth-child(3n+1){
                border-left: 2px dashed lightgray;
            }
            &:nth-child(2n-1){
                border-bottom: 2px dashed lightgray;
            }
            &:nth-child(even){
                border-bottom: 2px dashed lightgray;
            }
            &:nth-child(1),&:nth-child(2),&:nth-child(3){
                border-top: 2px dashed lightgray;
            }
        }
    }
}

.print_area{
    &.a_landscape{
        padding-top: 2rem;
        padding-bottom: 2rem;
        .card__entry{
            padding: 10px;
            //width: 50%;
            //float: left;
            border-right: 2px dashed lightgray;
            &:nth-child(odd){
                border-left: 2px dashed lightgray;
                border-bottom: 2px dashed lightgray;
            }
            &:nth-child(even){
                border-bottom: 2px dashed lightgray;
            }
            &:nth-child(1),&:nth-child(2){
                border-top: 2px dashed lightgray;
            }
        }
    }
}



.processing-overlay{
    .background {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999;
        top: 0;
        left: 0;
        right: 0;
        background: #000000;
        opacity: 0.4;
    }
    .loader {
        top: 20%;
        position: absolute;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        text-align: center;
        opacity: 1;
        z-index: 9991;
        svg {
            margin: 0 auto;
        }
    }
}

.print_now{
    align-items: center;
    padding: 0 26px;
    font-size: 15px;
    letter-spacing: 0;
    cursor: pointer;
}

.card-items{
    .card__entry{
        border: 4px solid transparent;
        cursor: pointer;
        -webkit-transition: all 0.3s 0s ease;
        -moz-transition: all 0.3s 0s ease;
        -o-transition: all 0.3s 0s ease;
        transition: all 0.3s 0s ease;
        &:hover{
            border-color: #7366ff;
            -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
            -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
            box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
        }
    }
}
.card-properties{
    .card-items{
        .card__entry, .card__entry:hover{
            cursor: initial;
            border-color: transparent;
            box-shadow: none;
        }
    }
}
.print_area{
 &.pageBreak{
     padding-top: 4%;
 }
}

.card__content{
    .main__content{
        .qr_code{
            .qr__image{
                svg{
                    width: 100%;
                    height: 100%;
                }
            }
        }
    }
}
