body {
    margin: 0px;
    padding: 0px;
}
.grecaptcha-badge {
    z-index: 99999;
}
.cover-container {
    max-width: 42em;
    min-width: 250px;
}

section {
    display: none;
}

section.show {
    display: block;
}

#UtilsMsgDiv {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    z-index: 10;
    display: flex;
    align-items: stretch;
    justify-content: center;
    backdrop-filter: blur(10px);
}

#UtilsMsgDiv.blackBg {
    background: #000;
    color: #fff;
}

#UtilsMsgDiv.blackBg>div {
    background: #000;
    color: #fff;
}

#UtilsMsgDiv.blackBg.full>div {
    padding-top: 10px !important;
}

#UtilsMsgDiv>div {
    max-width: 42em;
    min-width: 30em;
    background: #fff;
    padding: 20px 20px 15px 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: stretch;
    text-align: center;
}

@media screen and (max-width: 500px) {
    #UtilsMsgDiv>div {
        min-width: 100%;
    }
}
#UtilsMsgDiv>div>#UtilsMsgDivText {
    font-size: 130%;
    line-height: 1.5;
    overflow: auto;
    max-height: 70vh;
}

#UtilsMsgDiv.full>div {
    padding: 0px !important;
}

#UtilsMsgDiv.full>div>#UtilsMsgDivText {
    max-height: 100vh;
    height: 100vh;
    width: 100%;
}

#UtilsMsgDiv>div>#UtilsMsgDivButtons {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-content: space-around;
    flex-wrap: nowrap;
    align-items: stretch;
}

#UtilsMsgDiv>div>#UtilsMsgDivButtons>button {
    font-size: 150%;
    padding: 15px 0 15px 0;
    margin: 5px;
    flex: 1 1 0;
    position: relative;
}

body.landscape #UtilsMsgDiv>div>#UtilsMsgDivButtons, #UtilsMsgDiv>div>#UtilsMsgDivButtons.BtnsAsRows {
    flex-direction: row-reverse !important;
}

body.landscape #UtilsMsgDiv>div>#UtilsMsgDivButtons button, #UtilsMsgDiv>div>#UtilsMsgDivButtons.BtnsAsRows button {
    font-size: 100% !important;
}

#UtilsMsgDiv>div>#UtilsMsgDivButtons>button>i.bi::before {
    transform: scale(1.5);
}

#UtilsMsgDiv>div>#UtilsMsgDivIcon {
    text-align: center;
    max-height: 30vh;
}

#UtilsMsgDiv.ok>div>#UtilsMsgDivIcon #SvgOK {
    display: block;
}

#UtilsMsgDiv.error>div>#UtilsMsgDivIcon #SvgError {
    display: block;
}

#UtilsMsgDiv.wait>div>#UtilsMsgDivIcon #SvgWait {
    display: block;
}

#UtilsMsgDiv.custom>div>#UtilsMsgDivIcon #UtilsMsgDivCustomIcon {
    display: block;
    width: 100%;
}

#UtilsMsgDiv.custom>div>#UtilsMsgDivIcon #UtilsMsgDivCustomIcon>i.bi {
    font-size: 20vh;
}

#UtilsMsgDiv.custom>div>#UtilsMsgDivIcon #UtilsMsgDivCustomIcon>i.bi::before {
    vertical-align: top;
}


#UtilsMsgDiv.wait {
    cursor: wait;
}

#UtilsMsgDiv>div>#UtilsMsgDivIcon>svg,
#UtilsMsgDiv>div>#UtilsMsgDivIcon>div {
    width: 100%;
    max-height: 100%;
    margin: auto;
    display: none;
}

#UtilsMsgDiv>div>#UtilsMsgDivIcon>svg .path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

#UtilsMsgDiv>div>#UtilsMsgDivIcon>svg .path.circle {
    -webkit-animation: dash 0.9s ease-in-out;
    animation: dash 0.9s ease-in-out;
}

#UtilsMsgDiv>div>#UtilsMsgDivIcon>svg .path.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
    animation: dash 0.9s 0.35s ease-in-out forwards;
}

#UtilsMsgDiv>div>#UtilsMsgDivIcon>svg .path.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
    animation: dash-check 0.9s 0.35s ease-in-out forwards;
}

#UtilsMsgDiv>div>#UtilsMsgDivIcon>svg .rotar {
    animation-duration: 3s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-name: hourglass-rotation;
    transform-origin: 50% 50%;
}

#UtilsMsgDiv>div>#UtilsMsgDivIcon>svg .path.circle {
    animation-duration: 3s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-name: hourglass-opacity;
}

.animate-blink,
#UtilsMsgDiv>div>#UtilsMsgDivIcon>svg .blink {
    animation-duration: 1s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-name: blinker;
}

@keyframes hourglass-opacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes hourglass-rotation {
    50% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(180deg);
    }
}

@keyframes blinker {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

.divTYC {
    font-size: 13px;
    margin: 10px;
    text-align: justify;
    background: #ccc;
    padding: 10px;
    overflow: auto;
}
.divTYC table {
    width: 100%;
    text-align: right;
    border: 1px solid #000;
    white-space: nowrap;
    font-weight: normal;
    font-size: 90%;
}

.divTYC table td {
    border: 1px solid #000;
    padding: 0 2px;
}

:root {
    --txt-bg-fx-percent: 0%;
    --txt-bg-fx-time: 0s;
}

.text-bg-fx {
    background-repeat: no-repeat;
    will-change: background-size;
    transition: background-size var(--txt-bg-fx-time) linear;
    background-image: linear-gradient(90deg, rgba(0, 212, 255, 0.7) 99%, rgba(0, 212, 255, 0.7) 99%);
    background-size: var(--txt-bg-fx-percent) 100%;
    line-height: 150%;
}

.text-bg-fx.go {
    --txt-bg-fx-percent: 100%;
}

.animate-once, .anim-once:before {
    animation-iteration-count: 1 !important;
}

.animate-gelatine,
i.bi.anim-gelatine:before {
    animation: gelatine-animation 1.5s infinite;
}

@keyframes gelatine-animation {
    from, to {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.9, 1.1);
    }

    50% {
        transform: scale(1.1, 0.9);
    }

    75% {
        transform: scale(0.95, 1.05);
    }
}

.animate-spin,
i.bi.anim-spin:before {
    animation: spin-animation 1s infinite linear;
}

@keyframes spin-animation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-elastic-spin,
i.bi.anim-elastic-spin:before {
    animation: elastic-spin-animation 1s infinite ease;
}

@keyframes elastic-spin-animation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(720deg);
    }
}

.animate-pulse,
i.bi.anim-pulse:before {
    animation: pulse-animation 1s infinite ease-in-out alternate;
}

@keyframes pulse-animation {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1.2);
    }
}

.animate-flash,
i.bi.anim-flash:before {
    animation: flash-animation 500ms ease infinite alternate;
}

@keyframes flash-animation {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.animate-hithere,
i.bi.anim-hithere:before {
    animation: hithere-animation 1s ease infinite;
}

@keyframes hithere-animation {
    30% {
        transform: scale(1.2);
    }

    40%, 60% {
        transform: rotate(-20deg) scale(1.2);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.animate-grow,
i.bi.anim-grow:before {
    animation: grow-animation 2s ease infinite;
}

@keyframes grow-animation {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.animate-bounce,
i.bi.anim-bounce:before {
    animation: bounce-animation 2s ease infinite;
}

@keyframes bounce-animation {
    70% {
        transform: translateY(0%);
    }

    80% {
        transform: translateY(-15%);
    }

    90% {
        transform: translateY(0%);
    }

    95% {
        transform: translateY(-7%);
    }

    97% {
        transform: translateY(0%);
    }

    99% {
        transform: translateY(-3%);
    }

    100% {
        transform: translateY(0);
    }
}

.animate-bounce2,
i.bi.anim-bounce2:before {
    animation: bounce2-animation 2s ease infinite;
}

@keyframes bounce2-animation {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.animate-shake,
i.bi.anim-shake:before {
    animation: shake-animation 2s ease infinite;
}

@keyframes shake-animation {
    0%, 100% {
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

.animate-flip,
i.bi.anim-flip:before {
    backface-visibility: visible !important;
    animation: flip-animation 2s ease infinite;
}

@keyframes flip-animation {
    0% {
        transform: perspective(400px) rotateY(0);
        animation-timing-function: ease-out;
    }

    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg);
        animation-timing-function: ease-out;
    }

    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        animation-timing-function: ease-in;
    }

    80% {
        transform: perspective(400px) rotateY(360deg) scale(.95);
        animation-timing-function: ease-in;
    }

    100% {
        transform: perspective(400px) scale(1);
        animation-timing-function: ease-in;
    }
}

.animate-swing,
i.bi.anim-swing:before {
    transform-origin: top center;
    animation: swing-animation 2s ease infinite;
}

@keyframes swing-animation {
    20% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(5deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

#SignatureDiv {
    background: #fff;
    position: relative;
    padding: 0;
    margin: 0;
    display: inline-block;
}
body.landscape #btnClearSignature {
    position: absolute;
}