﻿.card {
    position: relative;
    height: 250px !important;
    min-width: 380px !important;
    background-color: white;
    border-color: rgb(180, 180, 180);
}

.card-small {
    position: relative;
    height: 120px !important;
    min-width: 120px !important;
    background-color: white;
    border-color: rgb(180, 180, 180);
}

@media screen and (max-width: 623px) {
    .card {
        min-width: 95% !important;
        width: 95% !important;
    }

    .card-small {
        min-width: 95% !important;
        width: 95% !important;
    }
}

.card img {
    height: 200px !important;
    display: block;
    margin: auto;
    padding: 15px 0;
}

.card-small img {
    height: 120px !important;
    display: block;
    margin: auto;
}

.card .text {
    display: block;
    color: rgb(43,42,41);
    text-align: center;
    margin: -35px 5px 0px 5px;
    font-size: 16pt;
    font-family: Segoe UI;
}

.card-small .text {
    display: block;
    color: rgb(43,42,41);
    text-align: center;
    margin: -15px 5px 0px 5px;
    font-size: 14pt;
    font-family: Segoe UI;
}

.card .info {
    position: absolute;
    display: block;
    top: 220px;
    bottom: 0;
    width: 100%;
    color: black;
    opacity: 0;
    text-align: center;
    background-color: rgb(43,42,41);
}

.card-small .info {
    position: absolute;
    display: block;
    top: 120px;
    bottom: 0;
    width: 100%;
    color: black;
    opacity: 0;
    text-align: center;
    background-color: rgb(43,42,41);
}

.card .button {
    position: absolute;
    display: block;
    font-size: 20pt;
    background-color: transparent;
    border-width: 0px;
    border-style: none;
    border-color: white;
    text-align: center;
    width: 100%;
    top: 0;
    padding-top: 25px;
    bottom: 0;
    color: gray;
}

.card-small .button {
    position: absolute;
    display: block;
    font-size: 20pt;
    background-color: transparent;
    border-width: 0px;
    border-style: none;
    border-color: white;
    text-align: center;
    width: 100%;
    top: 0;
    padding-top: 10px;
    bottom: 0;
    color: gray;
}

.card:hover {
    box-shadow: 1px 1px 1px 1px rgb(180, 180, 180);
    cursor: pointer;
}

.card-small:hover {
    box-shadow: 1px 1px 1px 1px rgb(180, 180, 180);
    cursor: pointer;
}

.card:hover .info {
    opacity: 0.95;
}

.card-small:hover .info {
    opacity: 0.95;
}

.card:hover .text {
    opacity: 0.9;
    font-size: 18pt;
}

.card-small:hover .text {
    opacity: 0.9;
    font-size: 18pt;
}


.card-small:hover .text {
    opacity: 0.9;
    font-size: 16pt;
}

.card .button:hover {
    color: white;
    /*background-image: url('Images/right_arrow.png');*/
    background-repeat: no-repeat;
    background-position: left;
}

.card-small .button:hover {
    color: white;
    /*background-image: url('Images/right_arrow.png');*/
    background-repeat: no-repeat;
    background-position: left;
}
