
.input-upper {
    text-transform: uppercase;
}

::-webkit-input-placeholder { /* WebKit browsers */
    text-transform: none;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    text-transform: none;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    text-transform: none;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    text-transform: none;
}

::placeholder { /* Recent browsers */
    text-transform: none;
}

.m-header {
    background-color: #fff !important;
}

.logo-image {
    width: 40%;
}

.vinfo {
    padding: 10px;
    font-size: 1.25em;
}

.print-reduce-margin {
    margin-top:-100px;
}

@media screen and (min-width: 1025px) {
    .logo-image {
        width: 100%;
    }
}

@media screen and (min-width: 800px) {
    .summaryview {
        width: 60vw;
        margin-left: auto;
        margin-right: auto;
    }
}

.table-coverage th, .table-coverage td {
    border: none;
}

.table-coverage td {
    vertical-align: middle !important;
}

    .table-coverage td h3 {
        vertical-align: middle !important;
    }

/* Wait Screen Overlay CSS */
.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: #ebebeb;
    opacity: 0.8;
    overflow: hidden;
    z-index: 15000;
}

.loader-box {
    z-index: 15001;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15vw;
    height: 20vw;
    border-radius: 20px;
    background-color: transparent;
    transform: translate(-50%, -50%);
    opacity: 1.0;
}

/* Makes slider cursor a hand */
.irs-from, .irs-to, .irs-single {
    cursor: pointer;
}


@media screen and (max-width: 800px) {
    .loader-box {
        width: 100%;
        height: 100%;
        border-radius: 0px;
    }

    .m-widget27 .m-widget27__container .m-widget27__nav-items .m-widget27__nav-item {
        display: block;
        margin: 2px;
    }

    .m-body .m-content {
        padding: 0px !important;
    }

    .main_display_body {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

.loader-box .loader-container {
    height: 100%;
    padding: 10px;
    text-align: center;
}

    .loader-box .loader-container h1, .loader-box .loader-container h2 {
        font-family: Roboto;
        padding: 5px;
    }

    .loader-box .loader-container h2 {
        font-weight: 300;
    }

.loading-image {
    vertical-align: middle;
    height: 50%;
}

    .loading-image i {
        position: relative;
        top: 40%;
        opacity: 0.7
    }

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(359deg);
    }
}

@-o-keyframes rotation {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}


* {
    box-sizing: border-box;
}

.m-form .form-control-feedback {
    font-size: 1.5rem;
}

.feedback-radio-micro {
    position: absolute;
    bottom: 0;
}

.m-portlet .m-portlet__body {
    padding: 1rem 1rem;
    !important
}

@media (min-width: 1025px) {
    .m-header--fixed .m-body {
        padding-top: 50px !important;
    }
}

.tile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /*height: 100vh;*/
}

.invalid-feedback {
    font-size: 1.5em;
}

.radio-tile-group,
.radio-tile-group-small {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
    /*set dimensions for invisible container*/
    .radio-tile-group .input-container,
    .radio-tile-group-small .input-container {
        position: relative;
        height: 14rem;
        width: 14rem;
        margin: 0.5rem;
    }
        /*make actual radio input invisible*/
        /* + stretch to fill container*/
        .radio-tile-group .input-container input,
        .radio-tile-group-small .input-container input {
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            margin: 0;
            cursor: pointer;
        }

        /*default tile styles*/
        .radio-tile-group .input-container .radio-tile,
        .radio-tile-group-small .input-container .radio-tile {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            border: 2px solid #079ad9;
            border-radius: 5px;
            padding: 1rem;
            transition: transform 300ms ease;
        }

        .radio-tile-group .input-container i,
        .radio-tile-group-small .input-container i {
            fill: #079ad9;
        }

        .radio-tile-group .input-container .radio-tile-label,
        .radio-tile-group-small .input-container .radio-tile-label {
            text-align: center;
            font-size: 1.3rem;
            font-weight: 600;
            /*text-transform: uppercase;*/
            letter-spacing: 1px;
            color: #079ad9;
            padding-top: 20px;
            max-width: 13rem;
        }

        .radio-tile-group .input-container a,
        .radio-tile-group-small .input-container a {
            text-decoration: none;
        }

        /*active tile styles*/
        .radio-tile-group .input-container input:checked + .radio-tile,
        .radio-tile-group-small .input-container input:checked + .radio-tile {
            background-color: #079ad9;
            border: 2px solid #079ad9;
            color: white;
            transform: scale(1.1, 1.1);
        }

        .radio-tile-group .input-container input:checked i,
        .radio-tile-group-small .input-container input:checked i {
            fill: white;
            background-color: #079ad9;
        }

        .radio-tile-group .input-container input:checked + .radio-tile .radio-tile-label,
        .radio-tile-group-small .input-container input:checked + .radio-tile .radio-tile-label {
            color: white;
            background-color: #079ad9;
        }

        /* active preload */
        .radio-tile-group .input-container .radio-tile-active,
        .radio-tile-group-small .input-container .radio-tile-active {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            border: 2px solid #079ad9;
            border-radius: 5px;
            padding: 1rem;
            transition: transform 300ms ease;
            background-color: #079ad9;
            border: 2px solid #079ad9;
            color: white;
            transform: scale(1.1, 1.1);
        }

            .radio-tile-group .input-container .radio-tile-active i,
            .radio-tile-group-small .input-container .radio-tile-active i {
                fill: white;
                background-color: #079ad9;
            }

            .radio-tile-group .input-container .radio-tile-active .radio-tile-label,
            .radio-tile-group-small .input-container .radio-tile-active .radio-tile-label {
                color: white;
                background-color: #079ad9;
            }

.input-container-parent {
    width: 15rem;
    margin-bottom: 30px;
}

.radio-tooltip {
    font-size: 12px;
    padding: 10px;
    min-height: 3rem !important;
    border: 2px solid lightgray;
    border-radius: 15px;
    margin: 8px;
    margin-top: 10px;
}


/* small version */
.radio-tile-group-small .input-container {
    height: 8rem;
    width: 8rem;
    margin: 0.5rem;
}

    .radio-tile-group-small .input-container .radio-tile-label {
        font-size: 1.1rem;
        padding-top: 10px;
    }

/* ------ end: radio styles ------- */

.m-portlet .m-portlet__head {
    border-bottom: 0px solid #ebedf2;
}

.progress {
    background-color: white;
    border-bottom: 1px solid #ebedf2;
}

.display-4 {
    font-size: 4.0rem;
    font-weight: 300;
    line-height: 1.2;
}

.wide {
    height: 200px;
    width: 200px;
}

.m-topbar .m-topbar__nav.m-nav > .m-nav__item > .m-nav__link .m-nav__link-icon {
    color: #838383;
}

.m-topbar .m-topbar__nav.m-nav > .m-nav__item.m-topbar__notifications.m-topbar__notifications--img.m-dropdown--arrow .m-dropdown__arrow {
    color: #838383
}

.m-topbar .m-topbar__nav.m-nav > .m-nav__item.m-topbar__languages.m-dropdown--header-bg-fill.m-dropdown--arrow .m-dropdown__arrow {
    color: #838383
}

.m-topbar .m-topbar__nav.m-nav > .m-nav__item.m-topbar__quick-actions.m-topbar__quick-actions--img.m-dropdown--arrow .m-dropdown__arrow {
    color: #838383
}

.m-topbar .m-topbar__nav.m-nav > .m-nav__item.m-topbar__user-profile.m-topbar__user-profile--img.m-dropdown--arrow .m-dropdown__arrow {
    color: #838383
}

.m-widget27 .m-widget27__container .m-widget27__nav-items .m-widget27__nav-item > a.active {
    background-color: #079ad9;
    border-color: #079ad9 !important;
    color: #fff;
}

.m-widget27 .m-widget27__pic:before {
    background: -webkit-gradient(linear, left top, right top, color-stop(20%, #838383), color-stop(120%, #079ad9));
}

.btn-white {
    color: white !important;
}

.m-widget4 .m-widget4__item .m-widget4__info {
    width: 75% !important;
}

.form-control.m-input--pill.form-control-lg {
    border-radius: 2rem;
    font-size: 1.75rem;
    font-family: inherit;
    text-align: center;
}

.jp-card {
    background-image: ('../assets/global/img/bg/card-back.jpg');
    !important
}


/* OVERRIDES FOR ASIDE-LEFT (THE NAV BAR) FROM DEMO 11 */

@media (min-width: 1025px) {
    .m-body {
        padding: 30px 40px 0px 40px;
    }

        .m-body .m-content {
            padding: 0px 0px;
            padding-right: 0;
            padding-bottom: 0;
            padding-left: 20px;
            margin-bottom: -20px;
        }

    .m-aside-left--fixed .m-body .m-wrapper {
        margin-left: 50px;
    }

    .m-header--fixed .m-body {
        padding-top: 110px !important;
    }
}

.m-aside-left {
    -webkit-transition: width 0.2s ease;
    transition: width 0.2s ease;
    width: 275px;
}

    .m-aside-left.m-aside-left--skin-dark {
        background-color: #2c2e3e;
        -webkit-box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
        box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
    }

    .m-aside-left.m-aside-left--skin-light {
        background-color: #ffffff;
        -webkit-box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
        box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
    }

@media (min-width: 1025px) {
    .m-aside-left {
        padding: 10px 0;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .m-aside-left--minimize .m-aside-left {
        width: 80px;
        -webkit-transition: width 0.2s ease;
        transition: width 0.2s ease;
    }

    .m-aside-left--fixed .m-aside-left {
        top: 0;
        bottom: 30px;
        margin-bottom: 0;
        position: fixed;
        height: auto !important;
        left: 40px;
        z-index: 90;
        overflow: hidden;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

        .m-aside-left--fixed .m-aside-left.m-aside-left--skin-dark .ps > .ps__rail-x:hover, .m-aside-left--fixed .m-aside-left.m-aside-left--skin-dark .ps > .ps__rail-x:focus {
            opacity: 1;
            background: transparent !important;
        }

            .m-aside-left--fixed .m-aside-left.m-aside-left--skin-dark .ps > .ps__rail-x:hover > .ps__thumb-x, .m-aside-left--fixed .m-aside-left.m-aside-left--skin-dark .ps > .ps__rail-x:focus > .ps__thumb-x {
                background: #1b1c26;
                opacity: 1;
            }

        .m-aside-left--fixed .m-aside-left.m-aside-left--skin-dark .ps > .ps__rail-x > .ps__thumb-x {
            background: #1b1c26;
            opacity: 1;
        }

            .m-aside-left--fixed .m-aside-left.m-aside-left--skin-dark .ps > .ps__rail-x > .ps__thumb-x:hover, .m-aside-left--fixed .m-aside-left.m-aside-left--skin-dark .ps > .ps__rail-x > .ps__thumb-x:focus {
                opacity: 1;
                background: #1b1c26;
            }

        .m-aside-left--fixed .m-aside-left.m-aside-left--skin-dark .ps > .ps__rail-y:hover, .m-aside-left--fixed .m-aside-left.m-aside-left--skin-dark .ps > .ps__rail-y:focus {
            background: transparent !important;
            opacity: 1;
        }

            .m-aside-left--fixed .m-aside-left.m-aside-left--skin-dark .ps > .ps__rail-y:hover > .ps__thumb-y, .m-aside-left--fixed .m-aside-left.m-aside-left--skin-dark .ps > .ps__rail-y:focus > .ps__thumb-y {
                background: #1b1c26;
                opacity: 1;
            }

        .m-aside-left--fixed .m-aside-left.m-aside-left--skin-dark .ps > .ps__rail-y > .ps__thumb-y {
            background: #1b1c26;
            opacity: 1;
        }

            .m-aside-left--fixed .m-aside-left.m-aside-left--skin-dark .ps > .ps__rail-y > .ps__thumb-y:hover, .m-aside-left--fixed .m-aside-left.m-aside-left--skin-dark .ps > .ps__rail-y > .ps__thumb-y:focus {
                opacity: 1;
                background: #1b1c26;
            }

        .m-aside-left--fixed .m-aside-left.m-aside-left--skin-light .ps > .ps__rail-x:hover, .m-aside-left--fixed .m-aside-left.m-aside-left--skin-light .ps > .ps__rail-x:focus {
            opacity: 1;
            background: transparent !important;
        }

            .m-aside-left--fixed .m-aside-left.m-aside-left--skin-light .ps > .ps__rail-x:hover > .ps__thumb-x, .m-aside-left--fixed .m-aside-left.m-aside-left--skin-light .ps > .ps__rail-x:focus > .ps__thumb-x {
                background: #e5e5f0;
                opacity: 1;
            }

        .m-aside-left--fixed .m-aside-left.m-aside-left--skin-light .ps > .ps__rail-x > .ps__thumb-x {
            background: #e5e5f0;
            opacity: 1;
        }

            .m-aside-left--fixed .m-aside-left.m-aside-left--skin-light .ps > .ps__rail-x > .ps__thumb-x:hover, .m-aside-left--fixed .m-aside-left.m-aside-left--skin-light .ps > .ps__rail-x > .ps__thumb-x:focus {
                opacity: 1;
                background: #e5e5f0;
            }

        .m-aside-left--fixed .m-aside-left.m-aside-left--skin-light .ps > .ps__rail-y:hover, .m-aside-left--fixed .m-aside-left.m-aside-left--skin-light .ps > .ps__rail-y:focus {
            background: transparent !important;
            opacity: 1;
        }

            .m-aside-left--fixed .m-aside-left.m-aside-left--skin-light .ps > .ps__rail-y:hover > .ps__thumb-y, .m-aside-left--fixed .m-aside-left.m-aside-left--skin-light .ps > .ps__rail-y:focus > .ps__thumb-y {
                background: #e5e5f0;
                opacity: 1;
            }

        .m-aside-left--fixed .m-aside-left.m-aside-left--skin-light .ps > .ps__rail-y > .ps__thumb-y {
            background: #e5e5f0;
            opacity: 1;
        }

            .m-aside-left--fixed .m-aside-left.m-aside-left--skin-light .ps > .ps__rail-y > .ps__thumb-y:hover, .m-aside-left--fixed .m-aside-left.m-aside-left--skin-light .ps > .ps__rail-y > .ps__thumb-y:focus {
                opacity: 1;
                background: #e5e5f0;
            }

    .m-aside-left--fixed.m-page--wide .m-aside-left {
        left: auto;
    }

    .m-aside-left--fixed.m-header--static .m-aside-left, .m-aside-left--fixed.m-header--fixed .m-aside-left {
        top: 110px;
    }

    .m-aside-left--fixed.m-header--fixed.m-header--fixed-hidable.m-header--hide .m-aside-left {
        -webkit-transition: all 0.3s ease 0.5s;
        transition: all 0.3s ease 0.5s;
    }

    .m-aside-left--fixed.m-header--fixed.m-header--fixed-hidable.m-header--show .m-aside-left {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .m-aside-left--fixed .m-body {
        -webkit-transition: width 0.2s ease;
        transition: width 0.2s ease;
        padding-left: 275px;
    }

    .m-aside-left--fixed.m-page--wide.m-aside-left--fixed .m-body {
        padding-left: 0;
    }

    .m-aside-left--fixed.m-aside-left--minimize .m-body {
        -webkit-transition: width 0.2s ease;
        transition: width 0.2s ease;
        padding-left: 80px;
    }

    .m-aside-left--fixed.m-page--boxed .m-aside-left {
        left: auto;
        margin-left: -275px;
    }

    .m-aside-left--fixed.m-page--boxed.m-aside-left--minimize .m-aside-left {
        margin-left: -80px;
    }
}

@media (max-width: 1024px) {
    .m-aside-left.m-aside-left-offcanvas-default .m-aside-left {
        top: 0 !important;
    }

    .m-aside-left {
        padding-top: 10px;
    }
}

.m-aside-left-close {
    display: none;
}

@media (max-width: 1024px) {
    .m-aside-left {
        display: block !important;
        z-index: 1001;
        position: fixed;
        -webkit-overflow-scrolling: touch;
        top: 0;
        bottom: 0;
        overflow-y: auto;
        -webkit-transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        width: 75vw !important;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        left: -80vw;
    }

        .m-aside-left.m-aside-left--on {
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
            left: 0;
        }

    .m-aside-left-overlay {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        overflow: hidden;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.1);
        -webkit-animation: m-offcanvas-overlay-fade-in .3s linear 1;
        animation: m-offcanvas-overlay-fade-in .3s linear 1;
    }

    .m-aside-left-close {
        left: -25px;
        width: 25px;
        height: 25px;
        top: 1px;
        z-index: 1002;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 3px;
        cursor: pointer;
        outline: none !important;
        text-align: center;
        vertical-align: center;
        display: inline-block;
    }

        .m-aside-left-close:hover {
            text-decoration: none;
        }

        .m-aside-left-close > i {
            line-height: 0;
            font-size: 1.4rem;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

    .m-aside-left--on .m-aside-left-close {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        left: 249px;
    }

    .m-aside-left-close.m-aside-left-close--skin-dark {
        background-color: #323446;
    }

        .m-aside-left-close.m-aside-left-close--skin-dark > i {
            color: #968ad4;
        }

        .m-aside-left-close.m-aside-left-close--skin-dark:hover {
            background-color: #6167e6;
        }

            .m-aside-left-close.m-aside-left-close--skin-dark:hover > i {
                color: #ffffff;
            }

    .m-aside-left-close.m-aside-left-close--skin-light {
        background-color: #eeeef5;
    }

        .m-aside-left-close.m-aside-left-close--skin-light > i {
            color: #777c9d;
        }

        .m-aside-left-close.m-aside-left-close--skin-light:hover {
            background-color: #6167e6;
        }

            .m-aside-left-close.m-aside-left-close--skin-light:hover > i {
                color: #ffffff;
            }
}

@media (max-width: 275px) {
    .m-aside-left {
        width: 90% !important;
    }
}

.alert-warning:not(.m-alert--outline) {
    color: black !important;
    background-color: #ffb822;
    border-color: #ffb822;
}

.option-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 90%;
    max-width: 300px;
    height: 75px;
    margin: auto;
    position: relative;
    margin-top: 17px;
    margin-bottom: 17px;
}

.option {
    flex-grow: 1;
    display: block;
    padding: 0.5em;
    background: #FFF;
    border-radius: 0.25em;
    font-size: 6rem;
    position: relative;
    margin: 0.1em;
    border: 2px solid #079ad9;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    cursor: pointer;
    opacity: 0.5;
    transition-duration: 0.5s, 0.3s;
    transition-property: flex-grow, opacity;
    transition-timing-function: cubic-bezier(0.98, 0, 0.22, 0.98), ease-in-out;
}

    .option:before,
    .option:after {
        content: '';
        display: block;
        border: solid 2px #64D6EE;
        visibility: visible;
    }

    .option:before {
        position: absolute;
        top: 0.5em;
        right: 0.5em;
        border-radius: 50%;
        width: 0.25em;
        height: 0.25em;
    }

    .option:after {
        width: 100%;
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: scaleX(0.2);
        transform: scaleX(0.2);
        transition: inherit;
        transition-property: opacity, -webkit-transform;
        transition-property: transform, opacity;
        transition-property: transform, opacity, -webkit-transform;
    }

.option-input {
    position: absolute;
    top: 0;
    z-index: -1;
    opacity: 0;
}

.option__label {
    display: inline-block;
    text-transform: uppercase;
    font-size: 3.5em;
    font-weight: bold;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    transition: inherit;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
}

    .option__label sub {
        margin-left: 0.25em;
        font-size: 0.4em;
        display: inline-block;
        vertical-align: 0.3em;
    }

.option-input:checked + .option {
    flex-grow: 4;
    opacity: 1;
}

    .option-input:checked + .option::after {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    .option-input:checked + .option::before {
        background: #64D6EE;
    }

    .option-input:checked + .option .option__label {
        -webkit-transform: scale(1);
        transform: scale(1);
    }


.m-pricing-table-2 .m-pricing-table-2__content .m-pricing-table-2__container {
    max-width: 35%;
}



.m-portlet.m-portlet--last {
    margin-bottom: 30px;
}


@media (max-width: 1366px) {
    .m-pricing-table-2 .m-pricing-table-2__content .m-pricing-table-2__container {
        max-width: 90% !important;
    }
}

.m-pricing-table-2 .m-pricing-table-2__head {
    padding: 1rem 0 25rem 0;
}

.m-callout {
    padding: 1.5rem;
}

    .m-callout .m-callout__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .m-callout .m-callout__body .m-callout__content {
            -webkit-box-flex: 2;
            -ms-flex: 2;
            flex: 2;
            width: 100%
        }

            .m-callout .m-callout__body .m-callout__content .m-callout__title {
                font-size: 1.85rem;
                font-weight: 500;
                color: #48465b;
                margin-bottom: 1rem;
            }

            .m-callout .m-callout__body .m-callout__content .m-callout__desc {
                font-size: 1.15rem;
                line-height: 2rem;
                color: #9392a0;
                padding-right: 2rem;
                font-weight: 400;
            }

                .m-callout .m-callout__body .m-callout__content .m-callout__desc:last-child {
                    margin-bottom: 0;
                }

        .m-callout .m-callout__body .m-callout__action {
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: end;
            -ms-flex-align: end;
            align-items: flex-end;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            .m-callout .m-callout__body .m-callout__action .btn.btn-custom {
                padding: 1rem 1.3rem;
                font-size: 0.9rem;
            }

.m-callout--diagonal-bg {
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

    .m-callout--diagonal-bg .m-callout__body {
        position: relative;
        z-index: 2;
    }

    .m-callout--diagonal-bg:before {
        content: ' ';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #f7f8fa;
        z-index: 1;
    }

    .m-callout--diagonal-bg:after {
        content: ' ';
        width: 200%;
        height: 1000px;
        position: absolute;
        z-index: 1;
        top: 0;
        left: 45%;
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
        background-color: #fff;
    }

.m-callout--brand {
    background-color: rgba(93, 120, 255, 0.07);
}

    .m-callout--brand.m-callout--diagonal-bg {
        background-color: #fff;
    }

        .m-callout--brand.m-callout--diagonal-bg:before {
            background-color: rgba(93, 120, 255, 0.15);
        }

.m-callout--light {
    background-color: rgba(255, 255, 255, 0.07);
}

    .m-callout--light.m-callout--diagonal-bg {
        background-color: #fff;
    }

        .m-callout--light.m-callout--diagonal-bg:before {
            background-color: rgba(255, 255, 255, 0.15);
        }

.m-callout--dark {
    background-color: rgba(40, 42, 60, 0.07);
}

    .m-callout--dark.m-callout--diagonal-bg {
        background-color: #fff;
    }

        .m-callout--dark.m-callout--diagonal-bg:before {
            background-color: rgba(40, 42, 60, 0.15);
        }

.m-callout--primary {
    background-color: rgba(88, 103, 221, 0.07);
}

    .m-callout--primary.m-callout--diagonal-bg {
        background-color: #fff;
    }

        .m-callout--primary.m-callout--diagonal-bg:before {
            background-color: rgba(88, 103, 221, 0.15);
        }

.m-callout--success {
    background-color: rgba(10, 187, 135, 0.07);
}

    .m-callout--success.m-callout--diagonal-bg {
        background-color: #fff;
    }

        .m-callout--success.m-callout--diagonal-bg:before {
            background-color: rgba(10, 187, 135, 0.15);
        }

.m-callout--info {
    background-color: rgba(85, 120, 235, 0.07);
}

    .m-callout--info.m-callout--diagonal-bg {
        background-color: #fff;
    }

        .m-callout--info.m-callout--diagonal-bg:before {
            background-color: rgba(85, 120, 235, 0.15);
        }

.m-callout--warning {
    background-color: rgba(255, 184, 34, 0.07);
}

    .m-callout--warning.m-callout--diagonal-bg {
        background-color: #fff;
    }

        .m-callout--warning.m-callout--diagonal-bg:before {
            background-color: rgba(255, 184, 34, 0.15);
        }

.m-callout--danger {
    background-color: rgba(253, 57, 122, 0.07);
}

    .m-callout--danger.m-callout--diagonal-bg {
        background-color: #fff;
    }

        .m-callout--danger.m-callout--diagonal-bg:before {
            background-color: rgba(253, 57, 122, 0.15);
        }

.btn-assistance {
    color: white !important;
}

.m-aside-menu.m-aside-menu--skin-light .m-menu__nav > .m-menu__item .m-menu__submenu .m-menu__item > .m-menu__heading .m-menu__link-text, .m-aside-menu.m-aside-menu--skin-light .m-menu__nav > .m-menu__item .m-menu__submenu .m-menu__item > .m-menu__link .m-menu__link-text {
    color: #656778;
}

.m-footer__copyright {
    color: #686869 !important;
}

.kt-widget.kt-widget--user-profile-1 .kt-widget__head .kt-widget__content .kt-widget__section .kt-widget__subtitle {
    color: #656778 !important;
}

.kt-widget.kt-widget--user-profile-1 .kt-widget__body .kt-widget__content .kt-widget__info .kt-widget__data {
    color: #656670 !important;
}

.kt-widget.kt-widget--user-profile-1 .kt-widget__body .kt-widget__items .kt-widget__item.kt-widget__item--active .kt-widget__section .kt-widget__desc {
    color: #073688 !important;
}

.kt-widget.kt-widget--user-profile-1 .kt-widget__body .kt-widget__items .kt-widget__item .kt-widget__section span.kt-widget__desc {
    color: #656670;
}

.kt-widget.kt-widget--user-profile-1 .kt-widget__body .kt-widget__items .kt-widget__item:hover .kt-widget__desc {
    color: #073688 !important;
}

button.btn.btn-success-axe {
    background: #98E1E1;
    color: #14483C;
}

.btn.btn-success.btn-success-axe:hover:not(:disabled) {
    color: #124034 !important;
    background: #84DCDC;
}


/* checkbox-method style */
.bx {
    font-size: 1.3rem;
    font-weight: 700px;
}

.checkbox-title {
    font-size: 15px;
    color: #13689e;
    font-weight:400;
}
.checkbox-container {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
}

/* Hide default radio style */
.checkbox-input {
    opacity: 0;
    visibility: hidden;
    margin: 0;
}

    /* Change icon, border and text color when radio is checked */
    .checkbox-input:checked + .checkbox-tile,
    .checkbox-input:checked + .checkbox-tile span {
        border-color: #13689e;
        color: #13689e;
    }

        /* Checkbox display */
        .checkbox-input:checked + .checkbox-tile::before {
            transform: scale(1);
            opacity: 1;
            background-color: #13689e;
            background-color: #13689e;
        }

/* Checkbox icon and text */
.checkbox-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    width: 160px;
    height: 70px;
    border-radius: 5px;
    border: 1px solid #ebedf2;
    transition: 0.1s ease;
    cursor: pointer;
    position: relative;
}

    .checkbox-tile:hover {
        border-color: #999;
    }

    /* Checkmark (icon inside checker) */
    .checkbox-tile::before {
        content: "";
        position: absolute;
        display: block;
        width: 1rem;
        height: 1rem;
        background-color: #fff;
        border-radius: 50%;
        top: 0.25rem;
        left: 0.25rem;
        opacity: 0;
        transform: scale(0);
        transition: 0.25s ease;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
        border: 2px solid #13689e;
        background-size: 12px;
        background-repeat: no-repeat;
        background-position: 50% 50%;
    }
