﻿/*--import variables here--*/
 

.card {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(var(--rgba-shadow-color),.6);
    transition: box-shadow 220ms ease-in;
}

.card:hover {
    cursor: pointer;
}

.cc-card-padding-md {
    padding: 20px;
}


.cc-card.cc-relative .cc-single-action {
    display: none;
    right: 17px;
    top: 13px;
}

.cc-card.cc-relative:hover > .cc-single-action {
    display: inline-block;
}

.cc-card-overlay {
    background: rgba(28, 39, 47, .5);
    border-radius: 8px;
    height: 100%;
    opacity: 0;
    padding: .7rem;
    width: 100%;
}

.cc-card-overlay .cc-actions {
    /*text-align: right;*/
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.cc-card-overlay .cc-main-action {
    background-color: transparent;
    flex: 1;
}

.cc-card-overlay .cc-actions span:last-child {
    margin-left: 15px;
}

.card:hover {
    box-shadow: 0px 2px 24px rgba(var(--rgba-shadow-color), 0.4);
}

.card:hover > .cc-card-overlay {
    animation-duration: 220ms;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-name: fadeInOpacity;
    animation-timing-function: ease-in;
    cursor: pointer;
}

.card:hover > .cc-card-overlay {
    /* display: block; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cc-image-area {
    background-image: url(../../../pics/cc-cde-icon.svg);
    height: 110px;
    width: 110px;
}

.cc-image-area-reportbuilder {
    background-size: cover;
    box-shadow: 0px 2px 5px rgba(var(--rgba-shadow-color), 0.34);
}

.card.cc-card p {
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
}

.cc-image-area.cc-image-area-number span {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.cc-image {
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
}

.card.cc-card {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 2px 7px rgba(var(--rgba-shadow-color),.2);
    margin-bottom: 2rem;
    padding: 2rem 1.6rem;
    transition: box-shadow 220ms ease-in;
}

.cc-card.cc-grid-card {
    height: 250px;
}

.cc-card-overlay {
    background: rgba(28, 39, 47, .5);
    border-radius: 8px;
    display: none;
    height: 100%;
    opacity: 1;
    padding: .7rem;
    position: absolute;
    top: 0;
    width: 100%;
}

.cc-card-view-text {
    color: var(--white-color);
    display: block;
    font-size: 18px;
    padding-top: 3rem;
    text-align: center;
    text-transform: uppercase;
}

.cc-image-area.cc-cde-icon {
    background-image: url(../../../pics/cde-icon.svg);
    height: 110px;
    width: 110px;
}

.cc-image-area.cc-cde-icon {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 500;
}



/*always have media queries at the bottom of the file like so*/


/* Extra small devices (portrait phones, less than 576px)
No media query for `xs` since this is the default in Bootstrap*/

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) { 

}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {

}


/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {

}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {

}


