﻿/* Global Styles */
.adage-item.item *,
.adage-item.item ::after, .adage-item.item ::before {
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
}

.adage-item.item {
    position: relative;
    display: inline-block;
    width: 110px;
    height: 90px;
    padding: 10px;
    margin: 0 7.5px 7.5px 0;
    cursor: pointer;
    background: rgba(65, 54, 89, 0.05);
    border-radius: 3px;
}

    .adage-item.item input:not(.adage-text-field) {
        display: none;
    }

    .adage-item.item span,
    .adage-heading-items .input-field input.adage-text-field {
        position: absolute;
        top: -1px;
        right: -1px;
        bottom: -1px;
        left: -1px;
        z-index: 11;
        display: block;
        border-width: 1px;
        border-style: solid;
        border-color: rgba(28, 38, 79, 0.1);
        box-shadow: 0 0 10px rgba(53, 68, 177, 0);
        transition: all 0.4s ease-in-out 0s;
        border-radius: 5px;
    }

        .adage-item.item:hover span,
        .adage-heading-items .input-field input.adage-text-field:hover {
            background: #f9f9f9;
            border-color: rgba(245, 193, 188, 0.5);
            border-color: rgba(28, 38, 79, 0.5);
            border-width: 2px;
            border-width: 1px;
            box-shadow: 0 0 10px rgba(16, 31, 60, 0.1);
        }

        .adage-item.item input[type="radio"]:checked + span,
        .adage-item.item input[type="checkbox"]:checked + span,
        .adage-heading-items .input-field input.adage-text-field:focus {
            background: #ffffff;
            border-width: 1px;
            border-width: 2px;
            border-color: #5cb85c;
            border-color: #1C264F;
            border-color: #F5C1BC;
            box-shadow: 0 0 30px rgba(28, 38, 79, 0.2);
            border-radius: 10px;
            opacity: 1;
            transform: scale(1.025);
        }

.adage-heading-items .input-field input.adage-text-field {
    position: relative;
    background: rgba(65, 54, 89, 0.05);
}
    .adage-heading-items .adage-item.item input[type="radio"]:checked + span,
    .adage-heading-items .input-field input.adage-text-field:focus {
        transform: none;
        color: #1C264F;
        box-shadow: 0 0 10px rgba(28, 38, 79, 0.15);
    }


.adage-item.item .inner {
    position: relative;
    z-index: 12;
    display: block;
    width: 100%;
    height: 70px;
}

.adage-item .inner svg {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    transition: all 0.4s ease-in-out 0s;
    transform: translate(-50%, -50%);
}

.adage-item.item:hover .inner svg,
.adage-item.item.checked .inner svg {
    opacity: 1;
}

.adage-item.item .name {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 12;
    font-size: 9px;
    line-height: 12px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    text-align: center;
    /*color: #8A8A8A;*/
    color: #413659;
}

.adage-item.item input[type="radio"]:checked ~ .name,
.adage-item.item input[type="checkbox"]:checked ~ .name {
    color: #413659;
}