/* V3 asset block */


/* NORMAL ASSET CARD */
.assetCardBase {
    box-shadow: 0 0 15px rgb(0 0 0 / 29%);
    width: 300px;
    background-color: white;
    margin: 30px;
    margin-bottom: 48px;
    vertical-align: top;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    vertical-align: top;
    display: inline-block;
}

.assetCardImage {
    height: 154px;
    width: 300px;
}

.assetCardImageV2 {
    height: 175px;
    width: 300px;
}

.assetCardImage img {
    margin: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;}

.assetCardImageV2 img {
    margin: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;}

.assetCardTypeTitle {
    font-size: 12px;
    margin-top: 14px;
    font-weight: bold;
}

.assetCardTitle {
    text-transform: uppercase;
    font-family: 'Open Sans Condensed';
    font-display: swap;
    font-size: 19pt;
    margin-bottom: 16px;
    font-weight: bold;
    color: black;
}

.assetCardBody {
    position: relative;
    font-family: 'Roboto';
    font-display: swap;
    font-size: 14px;
    padding: 0px 20px 20px 20px;
    text-align: start;
    color: #666666;
    max-height: 58px;
    height: 58px;
    overflow: hidden;
}

.assetCardFooter {
    height: 70px;
}

.assetCardInfoItem {
    height: 70px;
    display: inline-block;
}

.assetCardInfoItemValue {
    color: white;
    display: block;
    font-weight: bold;
    font-family: 'Open Sans Condensed';
    font-display: swap;
    font-size: 22px;
    margin-top: 7px;
}

.assetCardInfoItemDesc {
    color: #e5e5e5;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 5px;
}

.assetCardInfoItemIcon {
    width: 23px;
    margin-bottom: 3px;
}

.assetCardBodyFader {
    position: absolute;
    bottom: 0px;
    display: inline-block;
    width: 260px;
    height: 25px;
    z-index: 200;
    background-image: linear-gradient(to bottom, 
        rgb(255 255 255 / 0%), 
        rgb(255 255 255 / 90%)
    100%);
}


/* Small card */

.assetCardBaseSmall {
    box-shadow: 0 0 13px rgb(0 0 0 / 36%);
    width: 150px;
    background-color: white;
    margin: 16px;
    margin-bottom: 10px;
    vertical-align: top;
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
    vertical-align: top;
    display: inline-block;
}

.assetSmallCardImage {
    height: 77px;
    width: 150px;
}

.assetSmallCardImage img {
    margin: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;}

.assetSmallCardTypeTitle {
    font-size: 16px;
    margin-top: 6px;
    font-weight: bold;
}

.assetSmallCardTitle {
    text-transform: uppercase;
    font-family: 'Open Sans Condensed';
    font-display: swap;
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: bold;
    color: black;
}

@media only screen 
and (max-width : 1200px) 
and (min-width : 1001px) {
    .assetCardBase {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 30px;
        margin-bottom: 10px;
    }
}

@media only screen 
and (max-width : 1000px) 
and (min-width : 925px) {
    .assetCardBase {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 30px;
        margin-bottom: 10px;
        width: 270px;
    }
    
    .assetCardImageV2 {
        width: auto;
    }
    
    .assetCardInfoItem {
        width: auto !important;
        padding: 0px 8px;
    }
}

@media only screen 
and (max-width : 925px) 
and (min-width : 501px) {
    
}

@media only screen 
and (max-width : 500px) {
    .assetCardBase {
        width: calc(100vw - 16px - 20px);
        margin: 8px;
    }
    
    .assetCardImageV2 {
        width: auto;
    }
    
    .assetCardInfoItem {
        width: auto !important;
        padding: 0px 8px;
    }
}