:root {
    --tertiary: rgb(153, 35, 84);
    --tertiary-alt: #ff1476;
}


/** custom styles */
html {
    scroll-behavior: smooth !important;
}

.gradientFlow {
    background: rgb(9, 52, 73);
    background: linear-gradient(32deg, rgba(9, 52, 73, 1) 0%, rgba(15, 81, 112, 1) 14%, rgba(31, 113, 152, 1) 32%, rgba(21, 89, 121, 1) 50%, rgba(38, 124, 164, 1) 70%, rgba(9, 90, 128, 1) 89%, rgba(7, 68, 97, 1) 100%);
}

#homepageContactForm label {
    color: white !important;
}



#homepageContactForm button {

    background-color: var(--e-global-color-primary);
    color: white;
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: 15pt !important;
}

.ast-above-header-bar {
    border: none !important;
}

.loginFormWrapperMobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0rem;
}

.loginFormWrapperDesktop {
    display: flex;
    align-items: center;
    flex-direction: row;

    width: 100%;
    padding: 0.5rem 0rem;
}

.loginFormWrapper {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: stretch;
    height: 100%;
    width: 100%;
    justify-content: center;
    /* padding: 0px 5px; */
}

@media (max-width:500px) {
    .loginFormWrapper {
        padding: 0px 20px !important;
    }
}

a.applicationLink {
    border-radius: 100px !important;
    display: inline-flex !important;
    align-items: center !important;
    width: 100% !important;
    justify-content: center !important;
    color: white !important;
    padding: 14px 30px !important;
    font-weight: 300 !important;
    background-color: var(--ast-global-color-0);
    border: 1px solid rgba(255, 255, 255, 0.5);

}


.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.flex-col {
    flex-direction: column;
}

.aspectRatio1 {
    aspect-ratio: 1;
}

.overflow-hidden {
    overflow: hidden
}

/* button {
    border-radius: 100px;
}

input {
    border-radius: 100px !important;
} */




.iconInput {
    background-color: white;
    border-radius: 100px;
    border: 1px solid black;
    padding: 0 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;

}

.iconInput:focus-within {
    border-color: var(--ast-global-color-0);
}

.iconInput>input {
    background-color: transparent;
    border: none;
    outline: none;
}

.iconInput>input:focus {
    outline: none;
}

.passwordVisible {
    color: blue;
}

#visibilityIcon:hover {
    cursor: pointer;
}

#usernameLogin {
    border-radius: 100px;
    border: 1px solid black;
    padding-left: 0.5rem;
    padding-right: 0.5rem;

}

#usernameLogin:focus {
    outline: none !important;
    border-color: var(--ast-global-color-0);
}


/** header login form classes **/
.encapsulatedInput {
    margin: 0px 2px;
    display: inline-flex;
    transition-duration: 300ms;
    border-radius: 100px;
    width: 30ch;
    padding: 10px 20px;
    /* border: 1px solid #e97daa; */
    background-color: white;
}

.encapsulatedInput input::placeholder {
    color: rgb(160, 160, 160) !important;
}

@media (min-width:1024px) and (max-width:1440px) {
    .encapsulatedInput {
        width: 20ch !important;
    }
}

.loginButton {
    padding: 10px 20px !important;
    border-radius: 100px;
    margin-left: 10px;
    display: block;
    color: rgb(230, 230, 230);
    background-color: var(--tertiary) !important;
    transition-duration: 300ms;
}

.loginButton:hover {
    color: white;
    /* background-color: var(--tertiary-alt) !important; */

    /* transform: translateY(-5px); */
}

.passwordInput {
    margin-left: 10px !important;
}

@media (max-width:500px) {
    .encapsulatedInput {
        width: 100% !important;
        padding: 10px 10px !important;
        margin: 0px !important;
    }

    .loginInput input {
        font-size: 14px !important;
    }

    .passwordInput {
        margin-top: 10px !important;
        margin-left: 0px !important;
    }

    .passwordInput input {
        font-size: 14px !important;
    }

    .loginButton {
        font-size: 10pt !important;
        margin-top: 10px !important;
        padding: 18px 20px !important;
        width: 100% !important;
        margin-left: 0 !important;
    }
}

.encapsulatedInput:focus-within {
    outline: 1px solid #ED0D6B;
}

.encapsulatedInput input {
    padding: 0px !important;
    background: none !important;
    border: none !important;
}

.encapsulatedInput input:focus {
    outline: none !important;
}

.showPassButton:hover {
    cursor: pointer;
}


#scrollToTopFloatingButton {
    /* background-color: var(--e-global-color-primary); */
    background-color: var(--tertiary);
    text-decoration: none;
    color: white;
    padding: 10px;
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    margin-right: 10px;
    margin-top: 10px;
    transition-duration: 200ms;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

#inquiryFloatingButton {
    text-decoration: none;
    /* background-color: var(--e-global-color-primary); */
    /* background-color: #ED0D6B !important; */
    background-color: var(--tertiary);
    color: white;
    padding: 10px 20px;
    position: fixed;
    /* width: 100%; */
    z-index: 500;
    bottom: 0;
    right: 0;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 10px;
    transition-duration: 200ms;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 15pt !important;
    /* letter-spacing: 1px; */
}

a#inquiryFloatingButton:hover {
    /* background-color: var(--tertiary-alt); */
    transform: translateY(-5px);
}

@media (max-width:500px) {

    #inquiryFloatingButton,
    #inquiryFloatingButton .material-symbols-outlined {
        font-size: 10pt !important;
        font-weight: bold;
    }

    /* #inquiryFloatingButton .material-symbols-outlined {
        font-size: 10pt !important;
    } */
}



/* .icon-list-items {
    font-size: 24pt !important
}

@media (max-width:500px) {
    .icon-list-items {
        font-size: 20pt !important
    }
} */

.aboutUsTopContainer {
    min-height: 100vh;
    padding-top: 50vh !important;
}

@media (min-width:768px) {
    .pageTopContainer {
        padding-top: 260px !important;
        padding-bottom: 260px !important;
        /* padding-left: 50px !important; */
    }
}




.headerInfo {
    font-size: 15pt !important;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.headerInfo a {
    font-weight: initial !important;
}

@media (max-width:900px) {
    .headerInfo {
        font-size: 15px !important;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }


}

@media (max-width:500px) {

    .headerInfo {
        font-size: 12pt !important;
        flex-direction: row;
        justify-content: space-between;

    }

    .headerInfo a {
        padding: 0px 5px;
    }
}



.headerInfoShareButton {
    text-decoration: none;
    position: fixed;
    bottom: 0;
    left: 0;
    color: white;
    font-weight: bold;
    display: inline-flex !important;
    align-items: center;
    /* background-color: #ED0D6B !important; */
    /* background-color: var(--e-global-color-primary); */
    background-color: var(--tertiary);

    border-radius: 100px !important;
    padding: 10px 20px !important;
    z-index: 900;
    margin-left: 10px;
    margin-bottom: 10px;
    /* font-weight: 500; */
    /* letter-spacing: 1px; */
    /* box-shadow: 0px 2px 10px 5px rgba(0, 0, 0, 0.5) */
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 15pt !important;
}

a.headerInfoShareButton:hover {
    color: white !important;
    /* background-color: var(--tertiary-alt); */
    transform: translateY(-5px);
}

@media (max-width:500px) {

    .headerInfoShareButton {
        font-size: 10pt !important;
    }

    .headerInfoShareButton>span.material-symbols-outlined {
        font-size: 12pt !important;
    }
}




a.ghostLink {
    color: white !important;
    /* color: #c8e9ff !important; */
    font-weight: bold;
    transition-duration: 300ms;
}

a.ghostLink:hover {
    color: white !important;
    transform: translateY(-1px);
    /* text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5); */
    /* background-color: var(--tertiary) !important; */
}



.homePageWelcomeText p {
    color: #c8e9ff !important;
    /* color: white !important; */
    text-align: center;
    font-size: 20pt !important;
    /* line-height: 50pt !important; */
}

.homePageWelcomeText h1 {
    color: white;
    font-size: 40pt !important;
    /* font-weight: bold; */
}

.homePageWelcomeText a {
    color: white !important;
    /* color: #c8e9ff !important; */
    font-weight: bold;
    transition-duration: 300ms;
}

.homePageWelcomeText a:hover {
    color: white !important;
    transform: translateY(-1px);
    /* text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5); */
    /* background-color: var(--tertiary) !important; */
}



@media (max-width:500px) {

    .homePageWelcomeText h1 {
        font-size: 25pt !important;
    }

    .homePageWelcomeText p {
        font-size: 12pt !important;
        text-align: center;
    }
}

.companyInfoSection p {
    color: white !important;
    -webkit-color: white !important;
    -moz-color: white !important;
}

.aboutUsJernej i {
    display: flex;
    justify-content: center;
    align-items: center;
}