:root {
    --MIP_Blue: #5198d2;
    --MIP_Yellow: #f0bc40;
    --MIP_BorderBlue: rgb(16, 104, 177);
    --MIP_Blue02: rgba(81,152,210, 0.2);
    --MIP_Blue07: rgba(81, 152, 210, 0.702);
    --MIP_Yellow02: rgba(240,188,64, 0.2);
}

* { 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
     box-sizing: border-box; 
}

a {
    text-decoration: none;
}

.Undisplay{
    display: none !important;
}

.PositionAbsolute {
    position: absolute;
}

.Height100 {
    height: 100%;
}

.MaxHeight0 {
    max-height: 0;
    
}

.MaxHeight100 {
    max-height: 100000px;
}

.MaxHeight60px {
    max-height: 60px;
}

.MaxHeight42px {
    max-height: 42px;
}

.MaxWidth90 {
    max-width: 90% !important;
}

.FloatLeft {
    float: left;
}

.ColorFirebrick {
    color: firebrick;
}

.GlowFirebrick {
    -webkit-box-shadow: 0 0 15px firebrick;
    box-shadow: 0 0 15px firebrick;
}

.PageLoading {
    background-color: rgba(255, 255, 255, 1);
    background-image: url('../media/images/LoadingBlueTransparent.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px;
}

.FormOpen {
    background-color: rgba(255, 255, 255, 0.6);
}





.DownloadThumbnail {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 20px;
    width: 200px;
    border: 1px solid var(--MIP_Blue);
    border-radius: 3px;
    background-color: var(--MIP_Blue);
    cursor: pointer;
    overflow: hidden;
}

    .DownloadThumbnail span {
        position: relative;
        display: block;
        margin: 10px 0;
        color: white;
        text-align: center;
        font-size: large;
        font-weight: bold;
    }

        .DownloadThumbnailLinkCntainer {
            margin-bottom: 10px;
            padding: 0 10px;
        }

            .DownloadThumbnailLinkCntainer a{
                color: white;
                font-size: small;
            }

    .PDF_Agreement {
        margin-top: 20px;
        height: 90%;
        width: 100%;
    }

.YellowButton {
    margin: 20px 20px 20px 0;
    padding: 5px 10px;
    width: fit-content;
    color: var(--MIP_BorderBlue);
    font-size: medium;
    font-weight: bold;
    background-color: var(--MIP_Yellow);
    border: none;
    border-radius: 3px;
    cursor: pointer;
}


html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    height:100%;
    margin:0;
    padding: 0;
    /*font-family: monospace;*/
    font-family: Helvetica;
    background-color: #ECF2F6;
}

    /*LOGIN*/
    #LoginContainer {
        
    }

        .Login {
            position: absolute;
            top: 50%;
            left: 50%;
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            padding: 0 0 20px 0;
            height: 300px;
            width: 320px;
            border: 1px solid var(--MIP_Blue);
            border-radius: 3px;
            box-shadow: 10px 10px 10px gray;
        }

            #LoginHeader {
                margin-bottom: 40px;
                padding: 15px 0;
                text-align: center;
                background-color: var(--MIP_Blue);
            }

                #LoginHeader img {
                    width: 50%;
                }
            
            #Login input {
                font-size: medium;
            }

            #LoginErrorContainer {
                position: absolute;
                bottom: 35px;
                width: 100%;
                text-align: center;
                color: firebrick;
                font-size: medium;
            }

                #LoginErrorSymbol {
                    margin-right: 5px;
                    font-weight: bold;
                    font-size: larger;
                }

            #LoginForgotPassword {
                color: var(--MIP_BorderBlue);
                text-align: center;
                text-decoration: underline;
                font-size: medium;
                cursor: pointer;
            }








    .FormContainer {
        position: fixed;
        height: 100%;
        width: 100%;
        /*background-color: rgba(0, 0, 0, .5);*/
        border: 1px solid var(--MIP_BorderBlue);
        z-index: 5;
    }

        .Form {
            position: fixed;
            top: 50%;
            left: 50%;
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            padding-bottom: 30px;
            width: 80%;
            max-width: 600px;
            background-color: white;
            border: 1px solid var(--MIP_BorderBlue);
            border-radius: 3px;
            box-shadow: 10px 10px 10px darkslategray;
        }

            .ContainerUploadMessage {
                position: absolute;
                height: 100%;
                width: 100%;
                /*background-color: rgba(145, 238, 145, 0.6);*/
                z-index: 1;
            }

            .UploadLoading {
                background-color: rgba(255, 255, 255, 0.6);
                background-image: url('../media/images/LoadingBlueTransparent.gif');
                background-repeat: no-repeat;
                background-position: center;
                background-size: 50px;
            }

            .UploadSuccess {
                background-color: rgba(145, 238, 145, 0.6);
                cursor: pointer;
            }

                .UploadSuccess div {
                    background-color: forestgreen;
                }

            .UploadError {
                background-color: rgba(178, 34, 34, .6);
                cursor: pointer;
            }

                .UploadError div {
                    background-color: firebrick;
                }

                .UploadMessage{
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    -ms-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%);
                    padding: 40px 20px;
                    width: 80%;
                    text-align: center;
                    color: white;
                    font-size: x-large;
                    /*background-color: forestgreen;*/
                    border-radius: 3px;
                }

                    .UploadSuccessful {

                    }

            .FormCloseButton {
                position: absolute;
                top: 5px;
                right: 5px;
                padding: 5px 10px;
                color: white;
                background-color: firebrick;
                border-radius: 3px;
                cursor: pointer;
            }
        
            .FormTitle {
                margin-bottom: 60px;
                padding: 10px;
                height: 40px;
                text-align: center;
                color: white;
                font-size: larger;
                background-color: var(--MIP_BorderBlue);
                border-bottom: 1px solid var(--MIP_BorderBlue);
            }

            .InputLabel {
              width: 80%;
              margin: 0 auto -25px;
              color: gray;
			}

            .FormInput {
                display: block;
                margin: 30px auto;
                padding: 10px;
                width: 80%;
                color: darkslategray;
                font-size: large;
                border: 1px solid gray;
                border-radius: 5px;
            }

            #FormCountries {
                margin: 50px auto;
                padding: 5px;
                width: 80%;
            }

                .FormCountryContainer {
                    display: inline-block;
                    margin-right: 20px;
                    width: fit-content;
                }

                    .FormCountryCheckbox {
                        margin-right: 10px;
                    }

                    .FormCountryName {
                        margin-right: 10px;
                        font-weight: bold;
                    }

                    .FormCountryFlag {
                        vertical-align: bottom;
                        width: 25px;
                    }

            .FormSubmit {
                display: block;
                margin: 0 auto;
                padding: 5px 10px;
                color: var(--MIP_BorderBlue);
                font-size: large;
                font-weight: bold;
                background-color: var(--MIP_Yellow);
                border: none;
                border-radius: 3px;
                cursor: pointer;
            }

    #LeftMenu {
        position: absolute;
        left:0;
        min-width: 200px;
        height: 100%;
        /*background-color: #00273D;*/
        z-index: 3;
    }

        #LogoMIP {
            margin: 25px 0 40px 25px;
            height: 48px;
        }

        #LogoLinkedin {
            position: absolute;
            left: 10px;
            bottom: 10px;
            height: 36px;
        }

        .LeftMenuOption{
            position: relative;
            max-height: 50px;
            margin: 5px 5px 0 5px;
            padding: 15px;
            color: white;
            font-family: Montserrat, sans-serif;
            font-size: 16px;
            background-color: var(--MIP_Blue);
            border: 1px solid var(--MIP_BorderBlue);
            border-radius: 3px;
            overflow: hidden;
            cursor: pointer;
            transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
        }

            .LeftMenuOption:hover {
                margin: 5px 2px 0 8px;
                color: rgb(81,152,210);
                background-color: var(--MIP_Yellow02);
                border-color: rgb(81,152,210);
            }

            .LeftMenuOptionExpanded {
                max-height: 200px;
                transition: max-height 0.2s ease-in-out;
            }

        .LeftMenuSuboption{
            position: relative;
            padding: 0 20px;
            color: white;
            font-family: Montserrat, sans-serif;
            font-size: 17px;
            border-top: 1px solid rgba(218, 219, 226, 0.4);
        }

    #Header {
        position: relative;
        top:0;
        /*left:20%;
        height: 100px;
        width: 80%;*/
        padding: 0 0 0 20%;
        height: 100px;
        width: 100%;
        background-color: var(--MIP_Blue);
        border-bottom: 1px solid var(--MIP_BorderBlue);
        z-index: 2;
    }

        #SearchHeader {
            height: 40px;
            width: 40%;
            margin: 30px 0 0 30px;
            padding: 0 0 0 10px;
            color: #0b4a74;
            font-size: 16px;
            font-family: Montserrat, sans-serif;
            border: none;
            border-radius: 3px;
        }

        #User {
            overflow: hidden;
            position: absolute;
            top: 20px;
            right: 10px;
            /*max-height: 60px;*/
            width: 100px;
            text-align: center;
            cursor: pointer;
            z-index: 1;
        }

            #User img {
                height: 30px;
            }

            #UserName {
                margin-top: 5px;
                height: fit-content;
                color: white;
                font-size: small;
                font-weight: bold;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: clip;
            }

            #UserMenu {
                overflow: hidden;
                margin-top: 10px;
            }

                .UserMenuOption {
                    margin: 5px 0;
                    padding: 5px 0 5px 10px;
                    text-align: left;
                    color: white;
                    font-size: small;
                    background-color: var(--MIP_BorderBlue);
                    border-radius: 3px;
                    cursor: pointer;
                }

                .UserMenuOption:hover {
                    color: var(--MIP_BorderBlue);
                    background-color: var(--MIP_Yellow);
                }

    #Content {
        position: relative;
        height: calc(100% - 200px);
        width: 100%;
        /*top:100px;
        left: 20%;
        padding: 0 0 0 15%;*/
        padding: 0 0 0 220px;
        background-color:#ECF2F6;
    }
    
        #ContentContainer {
            position: relative;
            /*height: calc(100% - 44px);*/
            height: 100%;
            width: 99%;
            margin: 22px 0;
            border: 1px solid var(--MIP_Blue);
            /*padding: 22px 20px 0 20px;*/
            overflow-y: scroll;
        }

            .ContentSection {
                    position: relative;
                    padding: 0 20px 0 20px;
                    overflow: hidden;
                    transition: max-height 0.2s ease-in-out;
                }

                    .ContentSectionHeadline {
                        position: fixed;
                        margin-left: -20px;
                        padding-left: 20px;
                        width: calc(100% - 250px);
                        height: 50px;
                        line-height: 50px;
                        background-color: white;
                        box-shadow: 0px 5px 5px lightgray;
                        z-index: 1;
                    }

                    .ContentSectionEmptyHeadline {
                        height: 0px;
                    }

                        .ContentSectionHeadlineTitle {
                            float: left;
                            width: max-content;
                            color: var(--MIP_BorderBlue);
                            font-weight: bold;
                            font-size: larger;
                        }

                        .ContentSectionHeadlineButton {
                            float: right;
                            margin: 10px;
                            padding: 5px 10px;
                            line-height: 20px;
                            color: var(--MIP_BorderBlue);
                            font-weight: bold;
                            background-color: var(--MIP_Yellow);
                            border-radius: 5px;
                            cursor: pointer;
                        }

                    .ContentSectionData {
                        margin-top: 80px;
                    }

        #MembersContainer {
            color: darkslategray;
            font-size: 15px;
        }

            #MembersDataContainer{
                position: relative;
            }

            #MembersContainer a {
                text-decoration: none;
                color: var(--MIP_BorderBlue);
            }

            #MembersContainer #TableMenu {
                background-color: white;
            }
        
            #MembersContainer .TopHeaderButton {
                background-color: var(--MIP_Blue02);
            }

            #MembersContainer .TopHeaderButton:hover {
                background-color: var(--MIP_Yellow02);
            }

            #MembersContainer #TableResultsInfo {
                font-size: medium;
            }
        
            #MembersContainer #RowHeaderCheckboxContainer {
                background-color: var(--MIP_Blue);
                border-radius: 5px 0 0 0;
            }
        
            #MembersContainer .MT_HeaderColumn {
                background-color: var(--MIP_Blue);
                color: white;
            }

                #MembersContainer .HeaderFixColumnButtonChecked {
                    background-color: var(--MIP_Yellow);
                }

            #MembersContainer .CellButtonMenu {
                background-color: var(--MIP_Blue02);
            }

            #MembersContainer .CellButtonMenu:hover {
                background-color: var(--MIP_Yellow02);
            }


            /*DASHBOARD BLOCKS*/
                
                #DashboardTabs{
                    display: inline-block;
                    vertical-align: top;
                    left: 0;
                    width: 60px;
                    /*border: 1px solid gray;*/
                }

                    .DashboardTab {
                        height: 60px;
                        width: 60px;
                        margin: 0 0 10px 0;
                        background-size: cover;
                        /*border: 1px solid var(--MIP_Blue);*/
                        border-radius: 2px;
                        cursor: pointer;
                    }

                #DashboardBlocks {
                    display: inline-block;
                    height: 100%;
                    width: calc(100% - 100px);
                    margin-left: 15px;
                    /*padding: 30px 20px;*/
                    padding: 0px 20px 30px 20px;
                    vertical-align: top;
                    /*border: 1px solid var(--MIP_Blue);*/
                    border-radius: 3px;
                }
                
                .DashboardBlock {
                    overflow: hidden;
                    transition: max-height 0.5s ease-in-out;               
                }

                    .DashboardText  {
                        display: inline-block;
                        margin: 0 20px;
                        width: fit-content;
                    }
                    
                        .DashboardTextTitle{
                            color: var(--MIP_Blue);
                            font-size: 16px;
                            font-weight: bold;
                        }

                        .DashboardTextNumber {
                            margin-left: 2px;
                            color: rgb(153, 34, 153);
                            font-size: 16px;
                        }

            /*SUMMARY BLOCK*/
            .DashboardSummaryThumbnail {
                display: inline-block;
                vertical-align: top;
                margin: 0 40px 40px 0;
                height: 200px;
                width: 200px;
                border: 1px solid var(--MIP_Blue);
                border-radius: 3px;
                background-color: var(--MIP_Blue);
            }

                .DashboardSummaryTextTitle {
                    display: block;
                    margin: 30px 0;
                    color: white;
                    text-align: center;
                    font-size: large;
                    font-weight: bold;
                }

                .DashboardSummaryTextNumber {
                    display: block;
                    margin-top: 50px;
                    width: 100%;
                    text-align: center;
                    color: var(--MIP_Yellow);
                    font-size: x-large;
                }
            
            /* BRANDS BLOCK */

                #BrandThumbnailsContainer {
                    /*margin-top: 80px;*/
                }
            
                    .Brand {
                        position: fixed;
                        top: 50%;
                        left: 50%;
                        -ms-transform: translate(-50%, -50%);
                        transform: translate(-50%, -50%);
                        max-width: 800px;
                        /* float: left; */
                        display: inline-block;
                        margin: 0 30px 30px 0;
                        padding: 10px;
                        width: calc(100% - 50px);
                        background-color: white;
                        border: 1px solid var(--MIP_Blue07);
                        border-radius: 3px;
                        overflow: hidden;
                        box-shadow: 10px 10px 10px gray;
                        transition: all 0.3s ease-in-out;
                        z-index: 10;
                    }

                    .Brand:hover {
                        box-shadow: 0 0 10px var(--MIP_Blue07);
                    }

                    .BrandClose {
                        position: relative;
                        display: inline-block;
                        left: 0;
                        /*float: left;*/
                        transform: none;
                        max-height: 300px;
                        max-width: 250px;
                        box-shadow: none;
                        transition: all 0.3s ease-in-out;
                        z-index: 0;
                    }

                        .BrandImage {
                            margin-top: 50px;
                            height: 200px;
                            width: 100%;
                            background-position: center;
                            background-size: contain;
                            background-repeat: no-repeat;
                            border-radius: 3px;
                            cursor: pointer;
                        }

                        .BrandName {
                            margin-top: 10px;
                            color: var(--MIP_BorderBlue);
                            text-align: center;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                            font-weight: bold;
                            overflow: hidden;
                        }

                        .BrandData {
                            margin-top: 20px;
                        }

                        .BrandDescription {
                            margin-bottom: 50px;
                            text-align: center;
                            color: gray;
                        }

                            .BrandSuppliersButton {
                                position: absolute;
                                top: 10px;
                                right: 15px;
                                padding: 5px 10px;
                                color: var(--MIP_BorderBlue);
                                font-size: medium;
                                font-weight: bold;
                                background-color: var(--MIP_Yellow);
                                border: none;
                                border-radius: 3px;
                                cursor: pointer;
                            }


            
            /* SUPPLIERS BLOCK */

                #BrandThumbnailsContainer {
                    /*margin-top: 80px;*/
                }
            
                    .Supplier {
                        position: fixed;
                        top: 50%;
                        left: 50%;
                        -ms-transform: translate(-50%, -50%);
                        transform: translate(-50%, -50%);
                        height: 90%;
                        max-width: 800px;
                        /* float: left; */
                        display: inline-block;
                        margin: 0 30px 30px 0;
                        padding: 10px;
                        width: calc(100% - 50px);
                        text-align: center;
                        background-color: white;
                        border: 1px solid var(--MIP_Blue07);
                        border-radius: 3px;
                        overflow-x: scroll;
                        box-shadow: 10px 10px 10px black;
                        transition: all 0.3s ease-in-out;
                        z-index: 10;

                    }

                    .SupplierClose {
                        position: relative;
                        display: inline-block;
                        left: 0;
                        /*float: left;*/
                        transform: none;
                        max-height: 300px;
                        max-width: 250px;
                        overflow: hidden;
                        box-shadow: none;
                        transition: all 0.3s ease-in-out;
                        z-index: 0;

                        & .SupplierName {
                            margin: 10px 0 20px 0;
                        }
                    }

                    .SupplierClose:hover {
                        box-shadow: 0 0 10px var(--MIP_Blue07);
                    }

                        .SupplierImage {
                            display: flex;
                            margin-top: 50px;
                            height: 200px;
                            width: 100%;
                            background-position: center;
                            background-size: contain;
                            background-repeat: no-repeat;
                            border-radius: 3px;
                            cursor: pointer;
                        }

                            .SupplierImage img {
                                width: 100%;
                                /*height: 100%;*/
                                object-fit: contain;
                            }

                        .SupplierName {
                            /*margin-top: 10px;*/
                            margin: 20px 0 20px 0;
                            color: var(--MIP_BorderBlue);
                            text-overflow: ellipsis;
                            white-space: nowrap;
                            font-weight: bold;
                            overflow: hidden;
                        }

                        .SupplierData {
                            /*margin-top: 20px;*/
                            margin: 0 auto;
                            width: 95%;
                            text-align: center;
                        }

                        .SupplierDescription {
                            padding: 10px 0 20px 0;
                            color: var(--MIP_Blue);
                            font-weight: bold;
                        }

                            .SupplierBrandsButton {
                                position: absolute;
                                top: 10px;
                                right: 15px;
                                padding: 5px 10px;
                                color: var(--MIP_BorderBlue);
                                font-size: medium;
                                font-weight: bold;
                                background-color: var(--MIP_Yellow);
                                border: none;
                                border-radius: 3px;
                                cursor: pointer;
                            }

                        .SupplierDataLine {
                            margin-top: 10px;
                            padding: 5px;
                            width: 100%;
                            color: gray;
                            font-weight: bold;
                            overflow: hidden;
                            border: 1px solid lavender;
                            border-radius: 3px;
                        }

                            .SupplierDataLineBlock {
                                /*float: left;*/
                                padding: 5px;
                                line-height: 24px;
                                text-align: left;
                            }

                                .SupplierAddress {
                                    /*width: calc(50% - 10px);*/
                                }

                                .SupplierAddress::before {
                                    content: "\1F3E2\0020";
                                }

                                .SupplierPhone {
                                    /*width: calc(25% - 10px);*/
                                    color: var(--MIP_BorderBlue);
                                }

                                .SupplierPhone::before {
                                    content: "\1F4F1\0020";
                                }

                                .SupplierWebsite {
                                    /*width: calc(25% - 10px);*/
                                    color: var(--MIP_BorderBlue);
                                }

                                .SupplierWebsite::before {
                                    content: "\1F517\0020";
                                }

                        .CloseAgreement {
                            position: absolute;
                            top: 10px;
                            right: 10px;
                            width: fit-content;
                            padding: 5px 10px;
                            color: white;
                            background-color: var(--MIP_Blue);
                            border: 1px solid var(--MIP_BorderBlue);
                            border-radius: 3px;
                            cursor: pointer;
                        }


            
            
            /*EVENTS BLOCKS*/
                
                .Event {
                    padding: 10px 20px 20px 20px;
                    background-color: white;
                    border: 1px solid var(--MIP_Blue);
                    border-radius: 2px;
                    transition: all 0.3s ease-in-out;
                }
                
                    .EventOpen {
                        margin-bottom: 30px;
                        height: 100%;
                        width: 100%;
                    }

                    .EventClose {
                        position: relative;
                        display: inline-block;
                        height: 350px;
                        width: 300px;
                        margin: 0 30px 30px 0;
                        overflow: hidden;

                            & .EventTitle {
                                width: 100%;
                            }

                            & .HTML_Body {
                                margin-top: 240px;
                            }
                    }

                    .EventClose:hover {
                        box-shadow: 0 0 10px var(--MIP_Blue07);
                    }

                    .EventTitle{
                        display: -webkit-box;
                        line-clamp: 2;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                        height: 52px;
                        width: calc(100% - 100px);
                        padding: 5px 0;
                        color: var(--MIP_Blue);
                        font-size: 20px;
                        font-weight: bold;
                        overflow: hidden;
                    }

                        .EventDate {
                            display: inline-block;
                            padding: 10px 0;
                            color: var(--MIP_Yellow);
                            font-size: 16px;
                            font-weight: bold;
                        }

                        .EventDate::before {
                            content: "\1F4C5\0020";
                        }

                            .EventDateStart {
                                margin-right: 20px;
                            }

                        .EventTime {
                            display: inline-block;
                            padding: 10px 0;
                            color: var(--MIP_Yellow);
                            font-size: 18px;
                            font-weight: bold;
                        }

                        .EventTime::before {
                            content: "\1F552\0020";
                        }

                        .EventLocation {
                            display: inline-block;
                            padding: 5px 0;
                            color: var(--MIP_Yellow);
                            font-size: 18px;
                            font-weight: bold;
                        }

                        .EventLocation::before {
                            content: "\1F310\0020";
                        }

                        .EventProvider {
                            padding: 5px 0;
                            text-overflow: ellipsis;
                            color: var(--MIP_Blue);
                            font-weight: 700;
                            font-size: small;
                        }

                        .EventImage {
                            position: absolute;
                            top: 140px;
                            height: 160px;
                            width: 100%;
                            max-width: 260px;
                            background-size: cover;
                            background-position-x: center;
                            background-position-y: center;
                            background-repeat: no-repeat;
                        }

                        .EventButton {
                            padding: 5px 10px;
                            color: white;
                            background-color: var(--MIP_Blue);
                            border: 1px solid var(--MIP_BorderBlue);
                            border-radius: 3px;
                            cursor: pointer;
                        }

                        .EventExpand {
                            position: absolute;
                            left: 20px;
                            bottom: 10px;
                        }

                        /*.EventShrink {
                            position: absolute;
                            top: 40px;
                            right: 40px;
                        }*/

                        .EventShrink {
                            position: fixed;
                            top: 215px;
                            right: 70px;
                        }

                        .EventDownload {
                            /*position: absolute;*/
                            right: 20px;
                            bottom: 10px;
                        }

                        .EventPDF{
                            margin-top: 20px;
                            height: 800px;
                            width: 100%;
                        }

                        .HTML_Body {
                            margin-top: 0px;
                        }
            
            
            /*SEARCH BLOCK*/
            #SearchContainer {
                /*height: calc(100% - 100px);*/
                overflow: hidden;
            }

                .SearchContainerSection {
                    overflow: hidden;
                }

                    .SearchHeader{
                        /*margin-bottom: 10px;
                        padding: 10px;
                        background-color: white;
                        border-bottom: 1px solid var(--MIP_BorderBlue);*/
                        margin-bottom: 10px;
                        padding: 10px;
                        color: white;
                        font-weight: bold;
                        background-color: var(--MIP_Blue);
                    }

            .SearchNotFoundContainer{
                position: relative;
                margin: 20% auto;
                /*top: 50%;
                left: 50%;
                -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);*/
                width: max-content;
            }

                .SearchNotFoundSymbol{
                    margin-right: 20px;
                    color: firebrick;
                    font-size: xxx-large;
                }

                .SearchNotFoundMessage{
                    vertical-align: super;
                    color: var(--MIP_BorderBlue);
                    font-size: 20px;
                    font-weight: bold;
                }

            /*WHITE LABEL BLOCK */
            .SectionBodyMessage {
                margin: 30px 0 30px 0;
                color: gray;
                font-size: large;
            }


            
            

    #Footer {
        position: fixed;
        bottom: 0;
        height: 50px;
        width: 100%;
        background-color: #193C50;
        color: white;
        line-height: 50px;
        text-align: center;
        font-size: small;
        z-index: 4;
    }

        #FooterSocialNetworks {
            position: absolute;
            height: 50px;
            max-width: 200px;
        }

            #FooterSocialNetworks img {
                margin: 10px;
                height: 30px;
                cursor: pointer;
            }