.FooterContainer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin: 0px;
    padding-bottom: 30px;
    width: 100%;
    height: auto;
    transition: 0.5s;
    background-color: #fff8e8;
    border-top: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    box-sizing: border-box;
}     
    .FooterContainer > .FrameBase {
        display: flex;
        flex-direction: column;
        width: 270px;
        height: auto;
        margin-top: 30px;
        transition: 0.5s;
    }
        .FooterContainer > .FrameBase > .FrameHeader {
            width: 100%;
            height: auto;
            margin-bottom: 15px;
            padding: 0px;
            text-align: center;
            overflow: hidden;
            cursor: default;
        }
            .FooterContainer > .FrameBase > .FrameHeader > .Arrow {
                display: none;
                width: 100%;
                font-size: 25px;
                vertical-align: baseline;
                transform: rotate(180deg) scaleX(2) scaleY(0.7); 
                transition: 0.5s;

            }
        .FooterContainer > .FrameBase > .ContentList {
            display: grid;
            grid-template-columns: auto;
            grid-row-gap: 10px;
            margin: 0px;
            padding: 0px;
            width: 100%;
            height: 220px;
            transition: 0.5s;
        }                    
            .FooterContainer > .FrameBase > .ContentList > div {
                text-align: center;
                margin: auto;
                padding: 0px;
                width: 100%; 
                height: auto;
                font-size: 16px;
                cursor: default;
            }
                .FooterContainer > .FrameBase > .ContentList > div > a {
                    text-decoration: none;
                }


.ClosingContainer {
    display: flex;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 50px;
    background-color: #242424;
    transition: 0.5s;
    border: 1px solid black;
    box-sizing: border-box;
}
    .ClosingContainer > .Frame1 {
        display: flex;
        justify-content: flex-start;
        align-items: center;                    
        margin: 0px;
        padding: 0px;
        width: 60%;
        height: 50px;
        transition: 0.5s;
    }
        .ClosingContainer > .Frame1 > .Frame1Text {
            display: inline-block;
            margin-left: 15px;
            color: white;
            transition: 0.5s;
        }
    .ClosingContainer > .Frame2 {
        display: flex;
        justify-content: flex-end;
        align-items: center; 
        margin: 0px;
        padding: 0px;
        width: 40%;
/*        height: 50px;*/
        height: auto;
    }
        .ClosingContainer > .Frame2 > .InstaLink {
            display: flex;
            justify-content: center;
            align-items: center;                         
            margin: 0px;
            padding: 0px;
            width: 200px;
            height: 100%;
            text-decoration: none;
            transition: 0.5s;
            background-color: #242424;
        }
        .ClosingContainer > .Frame2 > .InstaLink:hover {
            background-color: #313131;
        }
            .ClosingContainer > .Frame2 > .InstaLink > .Frame2Text {
                display: inline-block;
                margin-right: 7px;
                color: white;
            }
            .ClosingContainer > .Frame2 > .InstaLink > .Frame2Link {
                display: inline-block;
                padding-top: 3px;
            }


.NavigationBackground {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.3);
    z-index: 1;
    cursor: pointer;
    transition: 0.5s;
}     
.ShowNavigationBackground {
    display: block;
}

.AnimateOpacity {
    animation: opac 0.8s
}
@keyframes opac {
    from {opacity:0} 
    to {opacity:1}
}

.MessageBackground {
    display: none;
    justify-content: center;
    align-items: center;                         
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.3);
    z-index: 1;
    cursor: pointer;
    transition: 0.5s;
}
    .MessageBackground > .MessageWindow {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90%;
        max-width: 540px; 
        height: auto; 
        padding: 40px 0px;
        border: 1px solid rgba(0, 0, 0, 0.5);
        border-radius: 5px;
        box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.35);
        background-color: rgb(255, 245, 245);
    }
        .MessageBackground > .MessageWindow > .MessageFrame {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%; 
            height: auto; 
/*            margin-top: 50px;*/
            
/*            background-color: lightsalmon;*/
        }
            .MessageBackground > .MessageWindow > .MessageFrame > .MessageTextFrame {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 95%;
/*                height: 20px;*/
                height: auto;
                margin-bottom: 20px;
                
/*                background-color: lawngreen;*/
            }
                .MessageBackground > .MessageWindow > .MessageFrame > .MessageTextFrame > .MessageText {
                    display: block;
                    text-align: center;
                    font-size: 20px;
                    line-height: 25px;
/*                    background-color: lightcoral;*/
                }  
            .MessageBackground > .MessageWindow > .MessageFrame > .ButtonFrame {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: auto;
                transition: 0.5s;
                
/*                background-color: lightblue;*/
            }    
                .MessageBackground > .MessageWindow > .MessageFrame > .ButtonFrame > .Button {
                    display: block;
                    margin: 10px 10px 0px 10px;
                    width: 200px;
                    height: 50px;
                    color: black;
                    font-size: 20px;
                    background-color: #ffecc7;
                    border: 1px solid #aaa;
                    border-radius: 5px;
                    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
                    transition: 0.5s;  
                }    
                .MessageBackground > .MessageWindow > .MessageFrame > .ButtonFrame > .Button:hover {
                    background-color: #ffde9c;
                }
                
.ShowMessageBackground {
    display: flex;
}

@media screen and (max-width: 1000px) {

    .MainContainer {
        width: 100%;
        border: none;
    }

    .HeaderContainer {
        border-left: none;
        border-right: none;
    }

    .StatusContainer {
        border-left: none;
        border-right: none;
    }
        .StatusContainer > .MenuheaderFrame {
            width: auto;
            min-width: 50px;
        }
            .StatusContainer > .MenuheaderFrame > .MenuLabel {
                display: none;
            }
            .StatusContainer > .MenuheaderFrame > .MenuIcon {
                display: block;
                max-width: 50px;
            }
        .StatusContainer > .StatusHoverContainer {
            width: 100%;
        }

    .ContentContainer {
        border-left: none;
        border-right: none;
    }
        .ContentContainer > .MenuFrame {
            display: block;
            width: auto;
            height: 100%;    
            position: fixed;
            top: 0px;
            left: -225px;
            z-index: 2;
            border: none;
            opacity: 0.95;
            overflow: scroll;

            /* Hide scrollbar for IE, Edge and Firefox */
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */                    
        }
        .ContentContainer > .MenuFrame::-webkit-scrollbar { 
            /* Hide scrollbar for Chrome, Safari and Opera */
            display: none;  /* Safari and Chrome */
        }                
            .ContentContainer > .MenuFrame > .ToggleVisibility {
                display: flex;
            }                
        .ContentContainer > .ShowMenuFrame {
            left: 0px;
            box-shadow: 0px 0px 15px black;
        }

    .FooterContainer {
        border-left: none;
        border-right: none;
    }
    
    .ClosingContainer {
        border-left: none;
        border-right: none;
    }
    
}    

@media screen and (max-width: 756px) {

    .HeaderContainer > .LogoFrame {
        flex-basis: 83%;
    }

    .HeaderContainer > .ShoppingcartFrame {
        flex-basis: 17%;
        min-width: inherit;
    }

}

@media screen and (max-width: 680px) {

    .FooterContainer {
        flex-direction: column;
    }
        .FooterContainer > .FrameBase {
            width: 100%;
            margin-top: 20px;
        }
        .FooterContainer > .ToggleFrameBaseBackground {
            background-image: linear-gradient(to bottom, rgba(255, 226, 128, 0), rgba(255,226,128,0.1));
            border-bottom: 1px solid rgba(0, 0, 0, 0.25);
            box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
        }
            .FooterContainer > .FrameBase > .ContentList {
                height: 0px;
                margin: 0px;
                overflow: hidden;
                transition: 0.5s;
            }
            .FooterContainer > .FrameBase > .ToggleStackVisibility {
                height: 300px;
                margin-top: 20px;
                padding-bottom: 10px;
                transition: 0.5s;
            }
            .FooterContainer > .FrameBase > .FrameHeader {
                height: 45px;
                margin-bottom: 0px;
                padding-top: 5px;
                cursor: pointer;
                transition: 0.5s;
            }
                .FooterContainer > .FrameBase > .FrameHeader > .ToggleArrowRotation {
                    transform: rotate(0deg) scaleX(2) scaleY(0.7); 
                }                        
                .FooterContainer > .FrameBase > .FrameHeader > .Arrow {
                    display: inherit;
                }

}

@media screen and (max-width: 600px) {

.MainContainer {
    margin-bottom: 0px;
}

    .ClosingContainer {
        height: auto;
        flex-wrap: wrap-reverse;
        padding-bottom: 5px;
    }
        .ClosingContainer > .Frame1 {
            justify-content: center;
            flex-basis: auto;
            width: 100%;
            height: 40px;
        }
            .ClosingContainer > .Frame1 > .Frame1Text {
                margin-left: inherit;
            }
        .ClosingContainer > .Frame2 {
            justify-content: center;
            flex-basis: auto;
            min-width: inherit;
            width: 100%;
            height: 40px;
        }   
            .ClosingContainer > .Frame2 > .InstaLink {
                width: 100%;
            }

}

@media screen and (max-width: 510px) {

    .StatusContainer {
        height: 45px;
    }
        .StatusContainer > .StatusHoverContainer {
            top: 45px;
        }
        .StatusContainer > .StatusbuttonFrame > .ToggleButtonVisibility {
            display: none;
        }       

    .MessageBackground > .MessageWindow {
        padding-top: 50px;
    }
            .MessageBackground > .MessageWindow > .MessageFrame > .ButtonFrame {
                flex-direction: column-reverse;
/*                background-color: lightblue;*/
            }    
                .MessageBackground > .MessageWindow > .MessageFrame > .ButtonFrame > .Button {
                    margin-top: 25px;
                    width: 80%;
                    transition: 0.5s;  
                }    

}

@media screen and (max-width: 450px) {

    .FooterContainer {
        border-top: 1px solid rgba(0, 0, 0, 0.25);
    }  
    
    .HeaderContainer > .ShoppingcartFrame > .ShoppingbagContainer > .ShoppingbagFrame > .ShoppingbagText {
        margin-top: 39%;
        margin-right: 14%;
        height: 45%;
        width: 52%;
        color: black;
        font-size: 16px;            
    }

            .MessageBackground > .MessageWindow > .MessageFrame > .MessageTextFrame {
                width: 90%;
            }
                .MessageBackground > .MessageWindow > .MessageFrame > .MessageTextFrame > .MessageText {
                    font-size: 18px;
                }
}            

@media screen and (max-width: 380px) {

    .StatusContainer > .StatusbuttonFrame > .StatusButton {
        width: 57%;
        padding-left: 10px;
    }
    .StatusContainer > .StatusbuttonFrame > .StatusCartButton {
        width: 43%;
    }                

}

@media screen and (max-width: 365px) {

    .ClosingContainer > .Frame1 > .Frame1Text {
        font-size: 14px;
    }

}        