﻿


/*table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

th:first-child {
    border-top-left-radius: 10px;
    border-top: 2px solid #000000;
    border-left: 2px solid #000000;
}

th:last-child {
    border-top-right-radius: 10px;
    border-top: 2px solid #000000;
    border-right: 2px solid #000000;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
    border-bottom: 2px solid #000000;
}

td:first-child {
    border-left: 2px solid #000000;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
    border-bottom: 2px solid #000000;
}

td:last-child {
    border-right: 2px solid #000000;
}

th {
    border: 1px solid #000000;
    padding: 5px;
    text-align: center;
    background-color: yellow;
}

td {
    border: 1px solid #000000;
    padding: 5px;
    text-align: center;
}

.info td {
    width: 50%;
}

    .info td:first-child {
        border-top: 2px solid #000000;
        border-top-left-radius: 10px;
    }

    .info td:last-child {
        border-top: 2px solid #000000;
        border-top-right-radius: 10px;
    }*/

.info div:first-child {
    border: 2px solid #000000;
    border-right: 0px solid #000000;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.info div:last-child {
    border: 2px solid #000000;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}


@media screen and (max-width: 768px) {
    .info div:first-child {
        border: 2px solid #000000;
        margin-bottom: -1px;
    }

    .info div {
        margin-top: -1px;
        border: 2px solid #000000;
        border-radius: 10px;
    }
}

.image-holder {
    border-radius: 50%;
    border: 1px solid #e7e1e1;
    cursor: pointer;
}

.image-block {
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #e7e1e1;
}

.image-holder:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

/* Effect */
.image-holder.effect:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 4px #c8d42b;
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(.8);
    opacity: 0;
}


.image-holder.effect.sub:after {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.image-holder.effect.sub:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.div-p-mb-0 p {
    margin-bottom: 0px;
}
