body {
    background-color: #F1F2F3;
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 1200px;
}
.profile-card-2 {
    max-width: 300px;
    background-color: #FFF;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    background-position: center;
    overflow: hidden;
    position: relative;
    margin: 10px auto;
    cursor: pointer;
    border-radius: 10px;
}
.product-discount-label{
    display:block;
    padding:4px 15px 4px 30px;
    color:#fff;
    background-color:#206b1b;
    position:absolute;
    top:0px;
    right:0;
    -webkit-clip-path:polygon(34% 0,100% 0,100% 100%,0 100%);
    clip-path:polygon(34% 0,100% 0,100% 100%,0 100%)}
.profile-card-2 img {
    transition: all linear 0.25s;
    opacity: 80%;
}

.profile-card-2 .profile-name {
    position: absolute;
    left: 30px;
    bottom: 70px;
    font-size: 30px;
    color: #050505;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    transition: all linear 0.25s;
}

.profile-card-2 .profile-username {
    position: absolute;
    left: 30px;
    bottom: 50px;
    font-size: 20px;
    color: #050505;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    font-weight: lighter;
    transition: all linear 0.25s;
}


.profile-card-2:hover img {
    filter: grayscale(100%);
}

.profile-card-2:hover .profile-name {
    bottom: 80px;
}
.profile-card-2:hover .profile-username {
    bottom: 60px;
}


.search{
    margin-bottom: auto;
    height: 70px;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.search-input{

    color: white;
    border:0;
    outline: 0;
    background: none;
    width: 0;
    margin-top:5px;
    caret-color:transparent;
    line-height: 40px;
    transition: width 0.4s linear;

}

.search .search-input{
    padding: 0 10px;
    width: 400px;
    caret-color: #536bf6;
    font-size: 21px;
    font-weight: 300;
    color: black;
    transition: width 0.4s linear;
}

.search:hover>.search-icon{
    background:#1A237E;
    color:#fff;
}
.search-icon{

    height: 50px;
    width: 50px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #536bf6;

}
a:link{
    text-decoration: none;
}


.drp-btn{
    width: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    border: 2px solid #dc3545;
    font-weight: 600;
}
.drp-btn:focus{
    box-shadow: none !important;
}

.drp-btn::after {
    display: none;
}

.upper-dropdown{
    width: 200px;
    border: 2px solid #F44336;
    padding: 0rem 0;
    transform: translate3d(0px, 50px, 0px) !important;
}

.dropdown-list:focus, .dropdown-list:hover {
    color: #ffffff;
    background-color: #dc3545;
    padding: 12px;
}

.dropdown-list {
    display: block;
    width: 100%;
    padding: 12px;
    }

    .pagination-outer {
        text-align: center;
        margin-top: 20px;
    }
    
    .pagination {
        display: inline-flex;
        position: relative;
        
        padding: 0;
    }
    
    .pagination:before {
        content: "";
        width: 100%;
        height: 2px;
        background: #e8e8e8;
        position: absolute;
        top: 50%;
        left: 0;
        
    }
    
    .pagination li {
        margin: 0 5px;
    }
    
    .pagination li a.page-link {
        display: block;
        padding: 5px 15px;
        background: #f8f8f8;
        border: 1px solid #e8e8e8;
        border-radius: 5px;
        box-shadow: 0 8px 6px -9px #5b5f5f;
        font-size: 17px;
        color: #686c6c;
       
    }
    
    .pagination li:first-child a.page-link {
        margin-right: 30px;
    }
    
    .pagination li:last-child a.page-link {
        margin-left: 30px;
    }
    
    .pagination li.active a.page-link,
    .pagination li a.page-link:hover {
        background: #85b83d;
        border-color: #739d46;
        color: #fff;
    }
    
    .pagination li.disabled a.page-link {
        pointer-events: none;
        background: #e8e8e8;
        color: #b8b8b8;
    }
    
    @media only screen and (max-width: 479px) {
        .pagination {
            display: block;
            overflow: auto;
        }
    
        .pagination:before {
            display: none;
        }
    
        .pagination li {
            display: inline-block;
        }
    }
    
