﻿/* Fix for Blazor hydration issue - force content to be visible */
body > div:first-child {
    display: block !important;
}

body,html{
    height:100%;
    font-family: 'MADEEvolveSans','Helvetica Neue', Helvetica, Arial, sans-serif;
}

a{
    text-decoration: none;
}

.header h1 span {
    display: inline-block;
    position: relative;
}

.header h1 span:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -.25rem;                                               
    left: 50%;
    transform: translateX(-50%);
    width: 3.3rem;
    height: .45rem;
    background: url(images/underline.png);
    background-size: 100%
}

.underline {
    padding-bottom: .49em;
    display: inline-block;
    position: relative;
}

.offcanvas {
    z-index:1100;
}

.underline:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 66px;
    height: 9px;
    background: url(images/underline.png);
}

/*.overlap {*/
/*    position: absolute;*/
/*    display: block;*/
/*    top: 0;*/
/*    right: 0;*/
/*    z-index: 100;*/
/*}*/

.read-more {
    position: absolute;
    bottom:0;
    right: 0;
}

.mfl-admin-modal .modal {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: unset;
    background: rgba(0,0,0,0.3);
}

.mfl-admin-modal .modal-dialog{
    height: 100%;
    max-width: unset;
    
}

.mfl-admin-modal .modal-content {
    margin: 5% auto;
    width: 80%;
    height: 80%;
}

.mfl-module-actions
{
    /*position: absolute;*/
    top:0;
    right: 0;
    /*z-index: 500;*/
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.validation-message
{
    color: red;
}

/* Fix for Syncfusion RTE colorpicker covering toolbar */
.e-rte-toolbar .e-colorpicker-container {
    position: relative !important;
    overflow: hidden;
    max-width: fit-content;
}

.e-rte-toolbar .e-colorpicker-container .e-split-btn-wrapper {
    display: inline-flex !important;
    flex-shrink: 0;
    max-width: 100px;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.carousel-image{
     max-width: 100%;
     max-height: 100%;
}

#page-container{
    max-width: 1140px;
}

.form-group{
    margin-bottom: 1rem;
}

.uic-pagepanel { overflow:hidden; }
.uic-pagepanel__container { position: relative; display: flex; flex-wrap: nowrap; align-items: stretch; height: 100%; transition: all ease-in-out 200ms; }
.uic-pagepanel__page { transition: all ease-in-out 200ms; overflow: hidden; flex-grow:0; flex-shrink:0; }
