:root {
    --blue: #001f67;
    --blueHover: #03309b;
    --blueOpacity: #001f67f0;
    --orange: #f25b06;
    --orangeHover: #ff7629;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family: Cairo;
}

.mainPage{
    padding-top: 60px;
}

ion-icon {
    margin-bottom: -2px;
}


.LogoContainer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.mainNavbar {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgb(255, 255, 255, 0.25);
    backdrop-filter: blur(3px);
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 25px;
    border-bottom: solid var(--orange) 2px;
}


#navXIcon {
    font-size: 60px;
    color: white;
}

.bgMenuShow {
    width: 100%;
    position: fixed;
    background: #00000000;
    height: 100vh;
    top: 0px;
    z-index: 9;
}

.sideBar {
    background: var(--blueOpacity);
    width: 400px;
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 60px;
    right: -400px;
    z-index: 999;
    backdrop-filter: blur(3px);
    border-right: solid 60px var(--orange);
    transition: 0.3s;
}

    .sideBar.Slide {
        right: 0px;
        transition: 0.3s;
    }



.sideBarTop {
    margin-right: -60px;
}


.sideBarBottom {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: solid 2px white;
}


.sideBarLink {
    font-size: 20px;
    color: white !important;
    border-right: solid 60px var(--orange);
    transition: 0.3s;
}

    .sideBarLink:hover {
        border-right: solid 60px var(--orangeHover);
        background: var(--blueHover);
        transition: 0.3s;
    }


    .sideBarLink ion-icon {
        font-size: 20px;
        color: white;
        margin: 0px 5px 0px 30px;
        margin-inline-start: -55px;
        margin-inline-end: 33px;
    }





.sideBarSocial {
    margin: 8px 12px;
    font-size: 20px;
    fill: white;
    color: white;
    transition: 0.3s;
}



.sideBarSocial ion-icon, .sideBarSocial svg {
    font-size: 20px;
    fill: white;
    color: white;
    transition: 0.3s;
}


    .sideBarSocial:hover ion-icon, .sideBarSocial:hover svg {
        fill: var(--orangeHover);
        color: var(--orangeHover);
        transition: 0.3s;
    }


.nav__trigger {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    right: 0px;
    top: 0px;
    cursor: pointer;
    background: var(--orange);
    transition: 0.3s;
}

    .nav__trigger:hover {
        background: var(--orangeHover);
        transition: 0.3s;
    }


.nav__icon {
    display: inline-block;
    position: absolute;
    width: 15px;
    height: 4px;
    background-color: white;
    right: 15px;
    left: 15px;
    top: 28px;
    transition: 0.3s;
}

    .nav__icon:before, .nav__icon:after {
        content: '';
        position: absolute;
        display: block;
        height: 4px;
        transition: 0.3s;
    }

    .nav__icon:before {
        width: 30px;
        top: -8px;
        background: white;
        transition: 0.3s;
    }

    .nav__icon:after {
        width: 25px;
        top: 8px;
        background: white;
        transition: 0.3s;
    }

    .nav__trigger:hover .nav__icon,
    .nav__trigger:hover .nav__icon:before,
    .nav__trigger:hover .nav__icon:after {
        width: 30px;
        transition: 0.3s;
    }


.mainNavButtons{
    display: flex;
}

.secondNavButtons {
    display: none;
    width: 100%;
    flex-direction: column;
}

.mainButton {
    display: block;
    text-decoration: none;
    background: var(--blue);
    color: white;
    border: solid white 3px;
    padding: 10px;
    transition: 0.3s;
    cursor: pointer;
}

    .mainButton ion-icon {
        color: white;
    }


    .mainButton:hover {
        text-decoration: none;
        background: var(--blueHover);
        color: white;
        box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        transition: 0.3s;
    }

.orangeBtn{
    background: var(--orange);
}

    .orangeBtn:hover {
        text-decoration: none;
        background: var(--orangeHover);
        color: white;
        transition: 0.3s;
    }


.cardShadow{
    padding: 25px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

    .cardShadow h1 {
        color: var(--blue);
        border-radius: 5px;
        font-size: 18px;
        font-weight: bold;
    }


.field-icon {
    left: 15px;
    top: 5px;
    position: absolute;
    z-index: 2;
    cursor: pointer;
    padding: 5px;
}


.processingBarContainer {
    position: fixed;
    z-index: 999999;
    top: 80px;
    right: 10px;
    background: white;
    padding: 20px;
    min-width: 250px;
    border-radius: 5px;
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.3);
}

.processingBarLineContainer {
    position: relative;
    width: 100%;
    height: 10px;
    background: silver;
    margin-top: 10px;
    border-radius: 10px;
}

.processingBarLineVal {
    position: absolute;
    width: 1%;
    height: 10px;
    border-radius: 10px;
    z-index: 2;
    background: #5d78ff;
    transition: 0.3s;
}






@media(max-width: 550px) {
    .mainNavButtons{
        display: none;
    }
    .secondNavButtons {
        display: flex;
    }

    .sideBar {
        width: 100%;
    }
}