.MenubarRow {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 75px;
    background: linear-gradient(135deg, #2f272e, #554430, #665639);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 100;
}

.MenubarRow .Logo {
    position: absolute;
    padding: 25px;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100%;
}

.MenubarRow .Logo p {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}

.MenubarRow .Logo p strong {
    margin-left: 5px;
    font-size: 14px;
}

.MenubarRow .ContactUs,
.MenubarRow .LogOut {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 75px;
    height: 100%;
    cursor: pointer;
}

.MenubarRow .ContactUs a,
.MenubarRow .LogOut a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.MenubarRow .ContactUs span {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    color: #fff;
    border-radius: 50%;
    background: #000;
    font-weight: bold;
}

.MenubarRow .ContactUs a i,
.MenubarRow .LogOut a i {
    color: #fff;
    font-size: 24px;
}

.MenubarColumn {
    position: fixed;
    top: 75px;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 300px;
    height: calc(100vh - 75px);
    background: rgba(0, 0, 0, 0.45);
    z-index: 100;
    overflow-y: auto;
}

.MenubarColumn .Links {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: calc(100% - 50px);
}

.MenubarColumn .Links a {
    position: relative;
    padding: 15px 15px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    min-height: 50px;
    height: auto;
    background: rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.MenubarColumn .Links a i {
    position: relative;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 100%;
    font-size: 14px;
}

.MenubarColumn .Links a.active {
    background: rgba(0, 0, 0, 0.5);
}

.MenubarColumn .Links a:hover {
    background: rgba(0, 0, 0, 0.75);
}

.MenubarColumn .Footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
}

.MenubarColumn .Footer p {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
}

.MenubarColumn .Footer p span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

/*=================================================================================*/
/*==================================CONTACT US=======================================*/
/*=================================================================================*/

.ContactUsPage {
    position: relative;
    padding: 50px;
    top: 75px;
    left: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: calc(100% - 400px);
    height: 100%;
    min-height: calc(100vh - 75px);
}

.ContactUsPage .Box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
    height: auto;
    background: rgba(0, 0, 0, 0.25);
}

.ContactUsPage .Box .Title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 75px;
    background: rgba(0, 0, 0, 0.25);
}

.ContactUsPage .Box .Title p {
    font-size: 32px;
    color: #fff;
    text-align: center;
}

.ContactUsPage .Box .Mails {
    position: relative;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.ContactUsPage .Box .Mails .Mail {
    position: relative;
    margin: 15px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.ContactUsPage .Box .Mails .Mail input[type="text"] {
    position: absolute;
    top: 0;
    left: 0;
    outline: none;
    border: none;
    width: 100%;
    height: 100%;
    color: transparent;
    background: transparent;
    cursor: pointer;
    z-index: 1;
}

.ContactUsPage .Box .Mails .Mail:hover {
    background: rgba(0, 0, 0, 0.5);
}

.ContactUsPage .Box .Mails .Mail .Name {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 15%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.ContactUsPage .Box .Mails .Mail .Name p {
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.ContactUsPage .Box .Mails .Mail .Email {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 35%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.ContactUsPage .Box .Mails .Mail .Email p {
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.ContactUsPage .Box .Mails .Mail .Message {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 35%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.ContactUsPage .Box .Mails .Mail .Message p {
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.ContactUsPage .Box .Mails .Mail .Date {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 15%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.ContactUsPage .Box .Mails .Mail .Date p {
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.ContactUsPage .Box .Mails .EmptyMail {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px;
}

.ContactUsPage .Box .Mails .EmptyMail p {
    font-size: 24px;
    color: #fff;
    text-align: center;
}

.ContactUsPage .Box .Warning {
    position: relative;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 50px;
    height: auto;
    background: rgba(0, 0, 0, 0.75);
}

.ContactUsPage .Box .Warning p {
    font-size: 24px;
    color: #fff;
    text-align: center;
}

.MessageClient {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    transition: all 0.3s;
}

.MessageClient .CloseButton {
    position: absolute;
    top: 25px;
    right: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 75;
    height: 75px;
    cursor: pointer;
}

.MessageClient .CloseButton {
    font-size: 48px;
    color: #fff;
}

.MessageClient .ClientWindow {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 75%;
    height: 80%;
    background: #cccccc;
    border-radius: 25px;
    overflow: hidden;
}

.MessageClient .ClientWindow .Person {
    position: relative;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    height: 100%;
}

.MessageClient .ClientWindow .Person .Title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
}

.MessageClient .ClientWindow .Person .Title p {
    font-size: 32px;
    color: #000;
    text-align: center;
}

.MessageClient .ClientWindow .Person label {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 80%;
    height: 35px;
    border: none;
    font-size: 22px;
    border-radius: 0;
}

.MessageClient .ClientWindow .Person input {
    padding: 15px;
    width: 80%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 0;
    font-size: 22px;
    background: rgba(0, 0, 0, 0.25);
}

.MessageClient .ClientWindow .Person textarea {
    outline: none;
    width: 80%;
    height: calc(100% - 440px);
    font-size: 22px;
    background: rgba(0, 0, 0, 0.25);
    resize: none;
    padding: 15px;
    border: none;
    border-radius: 0;
}

.MessageClient .ClientWindow span {
    position: relative;
    width: 5px;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.MessageClient .ClientWindow .Company {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    height: 100%;
}

.MessageClient .ClientWindow .Company .Title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
}

.MessageClient .ClientWindow .Company .Title p {
    font-size: 32px;
    color: #000;
    text-align: center;
}

.MessageClient .ClientWindow .Company textarea {
    outline: none;
    margin-top: 35px;
    width: 80%;
    height: calc(100% - 200px);
    font-size: 22px;
    resize: none;
    padding: 15px;
    border: none;
    border-radius: 0;
}

.MessageClient .ClientWindow .Company input[type="submit"] {
    margin: 25px;
    padding: 0 15px;
    width: auto;
    height: 50px;
    border: none;
    outline: none;
    background: forestgreen;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.MessageClient .ClientWindow .Company input[type="submit"]:hover {
    background: darkgreen;
}

/*=================================================================================*/
/*====================================ALERTS=======================================*/
/*=================================================================================*/

.Alert {
    position: fixed;
    top: -75px;
    padding: 15px 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 750px;
    height: auto;
    max-height: 50px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.35);
    border-radius: 8px;
    z-index: 1000;
    animation: AlertAnimation 10s forwards;
}

.Alert.Success {
    background: linear-gradient(-45deg, #4CAF50, #519f2e);
}

.Alert.Error {
    background: linear-gradient(-45deg, #e25241, #be0706);
}

.Alert p {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

@keyframes AlertAnimation {
    0% {
        top: -75px;
        max-height: 50px;
    }

    10% {
        top: 15px;
        max-height: 5000px;
    }

    90% {
        top: 15px;
        max-height: 5000px;
    }

    100% {
        top: -75px;
        max-height: 50px;
    }
}

/*=================================================================================*/
/*====================================LOADING======================================*/
/*=================================================================================*/

.LoadingBar {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: rgba(47, 39, 46, 0.75);
    z-index: 1000;
}

.LoadingBar .LoadingBox {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 250px;
    background: #665639;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}

.LoadingBar .LoadingBox i {
    font-size: 64px;
    padding: 50px 0;
    animation: uploadAnimation 2s linear infinite;
    color: #ffffff;
}

@keyframes uploadAnimation {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        transform: translateY(0px);
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: translateY(-50px);
    }
}

.LoadingBar .LoadingBox h1 {
    color: #ffffff;
    font-size: 28px;
}