﻿.border-signature {
    border: 1px outset #000000!important;
}

.text-justify {
    text-align: justify!important;
}

.border-img {
    border-bottom: 2px solid black!important;
}

.a-link {
    cursor: pointer;
    text-decoration: underline;
    color: orangered!important;
}

.a-link-2 {
    text-decoration: underline;
    color: black!important;
}

.toast-title {
    font-size: small;!important;
}

.toast-message {
    font-size: small;!important;
}

.toast-info {
    background-color: #9D7335!important;
}

input:invalid:required {
    border: 1px solid #ff3131!important;
}

.shake-rotate {
    animation: animShakeRotate 5s ease 0s infinite normal forwards;
}

@keyframes animShakeRotate {
    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 50% 50%;
    }

    10% {
        transform: rotate(8deg);
    }

    20%,
    40%,
    60% {
        transform: rotate(-10deg);
    }

    30%,
    50%,
    70% {
        transform: rotate(10deg);
    }

    80% {
        transform: rotate(-8deg);
    }

    90% {
        transform: rotate(8deg);
    }
}

.blink-2 {
    animation: animBlink2 3s ease 0s infinite normal forwards;
}

@keyframes animBlink2 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

.img-signature-size {
    height: 200px!important;
    width: 200px!important;
}

.display-none {
    display: none!important;
}

.img-width {
    width: 50px;
    cursor: pointer;
    margin-top: 11px;
}

.text-area-resize {
    resize: none!important;
}

.line-height {
    line-height: 110%!important;
    font-size: small!important;
    color: black!important;
}

.color-orange {
    color: orangered;;
}

.color-black {
    color: black;
}

.font-weight-bold {
    font-weight: bold!important;
    color: #000000!important;
}

.flex-content {
    display: flex;
    justify-content: space-evenly;
}

.flex-buttons {
    float: right!important;
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.grid-container {
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.grid-container * {
    box-sizing: inherit;
}

.grid-col-12 {
    width: calc(12/12 * 100%) !important;
}

.grid-col-center {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
}

.flex-title {
    display: flex;
    flex-direction: column;
    color: #cacaca;
    font-weight: normal;
}

@media (min-width: 600px) {

    .grid-col-7-sm {
        width: calc(7/12 * 100%) !important;
    }
}

@media (min-width: 1025px) {

    .grid-col-6-lg {
        width: calc(6 / 12 * 100%) !important;
    }
}

@media (min-width: 795px) {

}

@media (max-width: 575px) {
    .flex-buttons {
        float: right!important;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        flex-direction: column;
    }
    .flex-title {
        display: flex;
        align-items: center;
        flex-direction: column;
        color: #cacaca;
        font-weight: normal;
    }
}