﻿
/*mycard ----------------------------[]*/
.mycards-list {
    z-index: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.mycard {
    margin: 30px auto;
    width: 190px;
    height: 190px;
    border-radius: 30px;
    box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
    cursor: pointer;
    transition: 0.4s;
}


@media (max-width: 767px) {
    .mycard {
        margin: 10px auto;
        width: 150px;
        height: 150px;
        border-radius: 20px;
        box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
        cursor: pointer;
        transition: 0.4s;
    }

    .mycard_image {
        border-radius: 20px 20px 0 0 !important;
    }
}


.mycard .mycard_image img {
  
    /*border-radius: 30px;*/
    object-fit: cover;
   
   
    position: relative;
}

img.card-flag {
    width: 95px;
    height: 55px;
    border-radius: 20px 0px 0px 0px;
    left: 0;
}


.mycard_image {
    background: #f5f5f5;
    border-radius: 30px 30px 0 0;
}

.mycard .mycard_title {
    text-align: center;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 15px;
    height: 30px;
    background: #f5f5f5;
    margin-left: 20px;
}

.mycard_subtitle {
    text-align: center;
    border-radius: 0px 0px 30px 30px;
    font-family: sans-serif;
    font-size: 13px;
    height: 30px;
    font-family: sans-serif;
    font-weight: bold;
}

.mycard:hover {
    transform: scale(0.9, 0.9);
    box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.25), -5px -5px 30px 15px rgba(0,0,0,0.22);
}

.title-white {
    color: #212529;
}

.title-black {
    color: black;
}

@media all and (max-width: 500px) {
    .mycard-list {
        /* On small screens, we are no longer using row direction but column */
        flex-direction: column;
    }

    .mycard_subtitle {
        height:22px;
    }
}


.buysel_title {
    color: #8E24AA;
}