﻿.ctgrBox div {
    height: 193px;
    background: #3085d6;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    color: white;
}

.ctgrBox:hover div {
    background: #68dd25;
    color: black
}

.dropbtn {
    background-color: #d3d3d363;
    color: black;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 2px 16px;
        text-decoration: none;
        display: block;
        cursor: pointer;
    }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: lightgray;
}
.alert {
    padding: 0px;
    background-color: #f44336;
    color: white;
    position: absolute;
    z-index: 999;
    width: 25%;
    text-align: right;
}

.search {
    position: fixed;
    z-index: 4444 !important;
    margin-left: 45px;
    width: 40%;
    display: inline-flex;
}

.zoom {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

    .zoom:hover {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

.bodRd {
    border-radius: 10px;
}



.item {
    overflow: hidden;
}

    .item img {
        transition: all 0.3s;
    }

    .item:hover img {
        transform: scale(1.5);
    }
/*    //---- Product card start-----------*/
.flip-card {
    background-color: transparent;
    width: 250px;
    height: 240px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  /*  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);*/
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
  /*  background-color: #bbb;*/
    color: black;
}

.flip-card-back {
   /* background-color: #2980b9;*/
    color: white;
    transform: rotateY(180deg);
}
/*    //---- Product card end -----------*/
