﻿/* Move down content because we have a fixed navbar that is 50px tall */
/*body {
    padding-top: 50px;
    padding-bottom: 20px;
}*/

* {
    box-sizing: border-box;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
}

.master-form-wrapper {
    height: 100%;
    width: 100%;
    DISPLAY: FLEX;
    FLEX-DIRECTION: column;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
}

.tooltip {
    pointer-events: none;
}

.privacy-statement {
    background: #3963ff;
    color: white;
    font-weight: 600;
    cursor: pointer;
    position: fixed;
    left: 0;
    top: 0;
    width: 65px;
    height: 65px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0% 100%);
    font-size: 1.5em;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 5px 5px;
    z-index: 99999;
}

    .privacy-statement i {
        pointer-events: none;
    }

.AppsFooterButtons {
    border: 1px solid;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 5px;
}

.iconpicker-popover {
    position: sticky !important;
}


.showHideFooterBtn {
    color: black;
    background-color: #e8e8e8;
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    border-top: 1px solid grey;
    border-left: 1px solid grey;
    border-right: 1px solid grey;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    font-weight: normal !important;
}

.footerContact {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.text-size-controls:hover {
    /* background-color:red;*/
    cursor: pointer;
}

.btn-contrast {
    cursor: pointer;
}

.accessibility-element {
    position: relative;
    display: inline-block;
    padding: 20px;
    padding-top: 5px !important;
    /*border-right: 1px solid black;*/
    /*margin:10px 0 0;*/
}

.accessibility-logo {
    padding: 0;
    margin-bottom: 20px !important;
    /*border-right: 0 !important;*/
}

.master-footer-btn {
    position: fixed;
    bottom: 0;
}


.master-footer-content {
    text-align: center;
    background-color: #e8e8e8;
    border-top: 1px solid grey;
    padding-top: 0 !important;
}

/*CA*/

.input-group {
    width: 100%;
}

    .input-group > .form-control {
        max-width: inherit;
    }


.required-field {
    position: absolute;
    font-size: 20px;
    color: red;
    font-weight: bold;
    left: 2px;
    cursor: pointer;
}

.required-field-style {
    display: none;
    transform: translateY(5px) !important;
    font-weight: 200;
    width: 100%;
    text-align: center;
    background-color: #ff0e0e; /*#ff6161;*/
    padding: 2px;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    /*margin-bottom: 2px;*/
    color: white;
    font-weight: 500;
}

    .required-field-style::after {
        content: " \f06a"; /* FontAwesome Unicode */
        font-family: 'Font Awesome\ 5 Free';
        font-weight: 900;
    }

    .required-field-style.show {
        display: inline-block !important;
        animation-name: errorAnimatation;
        animation-duration: 1s;
    }

@keyframes errorAnimatation {

    from {
        transform: translateY(20px);
    }

    to {
        transform: translateY(5px);
    }
}

.websys-alert-box {
    position: fixed;
    top: 0;
    right: 0;
    margin: 5px;
    z-index: 999999;
    max-width: 500px;
    display: inline-block;
    /*animation-name: animateAlert;
    animation-duration: 2s;
    animation-iteration-count: 1;*/
    animation: slideDown 2s forwards, moveToRight 2s 5s forwards;
}

.tooltip {
    pointer-events: none;
}


@keyframes animateAlert {
    from {
        right: 100%;
        transform: scale(1.2);
    }

    to {
        right: 0;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        z-index: 99999;
        right: 50%;
        transform: translate(50%, -50px);
    }

    to {
        z-index: 99999;
        right: 50%;
        transform: translate(50%, 15px);
    }
}

@keyframes moveToRight {

    to {
        right: 0;
        top: 0;
        transform: translateX(0);
    }
}

.btn-disabled {
    pointer-events: none !important;
    opacity: 0.5 !important;
    font-size: 0 !important;
}

    .btn-disabled i {
        pointer-events: none !important;
        opacity: 0.5 !important;
        font-size: 0 !important;
    }

    .btn-disabled::after {
        content: "\f110";
        font-size: 15px;
        animation: spin 1s linear infinite;
        font-family: 'Font Awesome\ 5 Free';
        display: inline-block;
        font-weight: 900;
    }

        .btn-disabled::after i {
            color: red !important;
        }


@keyframes spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.bold{
    font-weight: bold;
}