﻿/*
    Styles CSS composante vCardBox du framework MVC.
*/
.cardBox {
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.07);
    border: 3px solid transparent;
    margin-bottom: 15px !important;    
}

.cardBox-inline {
    display: inline-block;
    margin-right: 15px;
    vertical-align: top;
}

.cardBox-small-padding {
    padding: 10px;
}

.cardBox-medium-padding {
    padding: 20px;
}

.cardBox-large-padding {
    padding: 30px
}

/*Cliquable*/
.cardBox-clickable {
    cursor: pointer;
    transition: all 0.3s
}

    .cardBox-clickable:hover {
        box-shadow: 0 0 15px rgba(0,0,0,0.2);
        transition: all 0.3s
    }

/*Sélectionnable multiple (checkbox)*/
.cardBox-selectable {
    cursor: pointer;
    transition: all 0.3s
}

.cardBox-checkbox {
    visibility: hidden;
}

.cardBox-selectable:before {
    float: right;
    margin-left: 20px;
    content: "\f096";
    font-family: FontAwesome, Arial, Helvetica, sans-serif;
    font-size: 22px;
    color: #bbb
}

    .cardBox-selectable:hover {
        box-shadow: 0 0 15px rgba(0,0,0,0.2);
        border-color: #bbb;
    }

        .cardBox-selectable:hover:before {
            display: block;
            content: "\f14a";
            font-family: FontAwesome, Arial, Helvetica, sans-serif;
            font-size: 20px;
            color: #bbb;
            border: none;
        }

    .cardBox-selectable:focus {
        -webkit-appearance: none;
        -moz-appearance: none;
        outline: none;
        border-color: #bbb;
        box-shadow: 0 0 15px rgba(0,0,0,0.2);
    }

        .cardBox-selectable:focus:before {
            content: "\f14a";
            font-family: FontAwesome, Arial, Helvetica, sans-serif;
            font-size: 20px;
            color: #bbb;
            border: none;
            display: block;
        }

/* Sélectionnable radio (radio) */
.cardBox-selectable-radio {
    cursor: pointer;
    transition: 0.3s
}

    .cardBox-selectable-radio:before {
        float: right;
        margin-left: 20px;
        content: "  ";
    }

    .cardBox-selectable-radio:hover {
        box-shadow: 0 0 15px rgba(0,0,0,0.2);
        border-color: #bbb;
    }

        .cardBox-selectable-radio:hover:before {
            display: block;
            content: "\f058";
            font-family: FontAwesome, Arial, Helvetica, sans-serif;
            font-size: 20px;
            color: #bbb;
        }

    .cardBox-selectable-radio:focus {
        -webkit-appearance: none;
        -moz-appearance: none;
        outline: none;
        border-color: #bbb;
        box-shadow: 0 0 15px rgba(0,0,0,0.2);
    }

        .cardBox-selectable-radio:focus:before {
            content: "\f058";
            font-family: FontAwesome, Arial, Helvetica, sans-serif;
            font-size: 20px;
            color: #bbb;
            border: none;
            display: block;
        }

.cardBox-title {
    font-size: 14px;
    font-weight: bold;
    padding-left: 0;
}

.icon-round {
    background: #D1EFFD;
    color: #00A2ED;
    height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 25px;
    text-align: center;
    border-radius: 50%;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    padding-top: 5px;
    color: #666;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
    .section-title p {
        margin-top: 10px;
        margin-bottom: 17px;
        font-size: 12px;
        font-weight: lighter;
        color: #666;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

.label-Logo img{
    max-width: 200px;
    width: 100%;
}

.carBox-description {
margin-top: 0px;
}

.carBox-title {
    font-size: 12px;
    color: #323232;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 0px !important;
}

.section-title-botton {
    font-size: 16px;
    font-weight: 600;
    padding-top: 5px;
    padding-left: 0px;
    color: #666;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

    .section-title-botton p {
        margin-top: 10px;
        margin-bottom: 20px;
        font-size: 12px;
        font-weight: lighter;
        color: #666;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

@media screen and (max-width:767px) {
    /*champ extra Large dans un vcardbox, fiter l'icon oeil + champ obligatoire dans un petit format*/
    .vcardbox-input-width-xlarge-small-screen {
        width: 93%;
    }
}
