﻿.form-check .form-check-label > span
{
    vertical-align: middle;
}

.input-validation-error {
    border-color: #dc3545;
    padding-right: 1.95rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: center right calc(0.375em + 0.1875rem);
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.input-validation-error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.field-validation-error {
    font-size: .7rem;
    line-height: .75rem;
    margin-bottom: -1rem;
    text-align: right;
    width: 100%;
    margin-top: 0.25rem;
    color: #dc3545;
    display: block;
}

/* togliere se mettiamo menu */
body.app header.header {
    margin-top: 0px !important;
}

    body.app header.header .header-icon {
        display: inherit !important;
    }

    body.app header.header .nav {
        display: inherit !important;
    }

.grants .grant .grant-icon {
    font-size: 16px;
    max-height: 16px;
    max-width: 16px;
    vertical-align: text-bottom;
}

.grants .grant.grant-api .grant-icon {
    color: #4285f4;
    fill: #4285f4;
}

.grants .grant.grant-identity .grant-icon {
    color: #ff5dca;
    fill: #ff5dca;
}

iframe {
    border: none !important;
}

#g-recaptcha-response {
    display: block !important;
    position: absolute;
    margin: -78px 0 0 0 !important;
    width: 302px !important;
    height: 76px !important;
    z-index: -999999;
    opacity: 0;
}

.removed-item-1 {
    animation: removed-item-animation 1s cubic-bezier(0.55, -0.04, 0.91, 0.94) forwards;
    /*transform origin is moved to the bottom left corner*/
    transform-origin: 0% 100%;
}

.removed-item-2 {
    animation: removed-item-animation 2s cubic-bezier(0.55, -0.04, 0.91, 0.94) forwards;
    /*transform origin is moved to the bottom left corner*/
    transform-origin: 0% 100%;
}

@keyframes removed-item-animation {
    0% {
        opacity: 1;
        transform: rotateZ(0);
    }

    100% {
        opacity: 0;
        transform: translateY(600px) rotateZ(90deg);
    }
}

.field-validation-valid {
    display: none !important;
}