﻿/*
    Copyright � 2016 Verenigde Fuchsia- en Kuipplanten vereniging.
    All rights reserved.
    Author: Victor van Sloun.
    Removing this banner is illegal.
*/

@charset "UTF-8";

.cv-item {
    background-color: rgba(255, 255, 255, 0.90);
    padding: 10px 30px;
    border-radius: 25px;
    margin: 10px 0px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

    .cv-item .title {
        text-align: center;
        vertical-align: center;
        font-size: 28px;
        display: block;
        font-weight: bold;
        width: 100%;
    }

    .cv-item .cv-doc {
        display: block;
        transition: all 0.25s;
        margin: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
        float: left;
        width: 180px;
        height: 325px;
        background: rgba(255, 255, 255, 0);
    }	

.cv-item .cv-doc:hover {
    border: 1px solid #777;
    background-color: rgba(210, 210, 210, 0.50);
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2);
}

        .cv-item .cv-doc img {
            width: 100%;
            height: auto;
            margin: 0;
            padding: 0;
            border-radius: 5px;
        }

.cv-item .cv-doc a:link {
    text-decoration: none;
    color: black;
}

.cv-item .cv-doc a:visited {
    text-decoration: none;
    color: black;
}

.cv-item .cv-doc a:hover {
    text-decoration: none;
    color: black;
}

.cv-item .cv-doc a:active {
    text-decoration: none;
    color: black;
}

.cv-item .cv-doc .descr {
    padding: 0px 15px 4px 15px;
    height: 65px;
    text-align: center;
    margin-top: 0 auto;
    margin-bottom: 0 auto;
}

.error {
    background-color: red;
    border-radius: 25px;
    color: white;
    text-align: center;
    padding: 10px 30px;
    margin-bottom: 10px;
}

.error p {
    font-size: 18px;
}

.rendition {
    width: 100%;
    text-align: center;
    color: #555;
}