
/**
 * Fonts
 */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500&display=swap');


/**
 * General project styles
 */

body {
    width: 100vw;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background-color: #FAFAFB;
    color: #000000;
    height: 100vh;
}

a {
    text-decoration: none;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #242523 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 14px;
}

*::-webkit-scrollbar-track {
    /*background: #ffffff;*/
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #242523;
    border-radius: 10px;
    border: 3px solid #ffffff;
    height: 15%;
}


/**
 * Generale
 */

#header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

h1 {
    display: flex;
    font-family: 'Urbanist', sans-serif;
    font-size: 2.3vh;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

input,
button,
.dropdown-select button,
.bx--list-box__menu {
    border: 0;
    border-radius: 1vh;
    outline: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 3px 10px 0px rgba(73, 119, 172, 0.08);
    -moz-box-shadow: 0px 3px 10px 0px rgba(73, 119, 172, 0.08);
    box-shadow: 0px 3px 10px 0px rgba(73, 119, 172, 0.08);
}

button.btn {
    position: relative;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.8vh;
    border: 0;
    outline: 0;
    background-color: #7bc2ff;
    -webkit-box-shadow: 0px 3px 10px 0px rgba(73, 119, 172, 0.08);
    -moz-box-shadow: 0px 3px 10px 0px rgba(73, 119, 172, 0.08);
    box-shadow: 0px 3px 10px 0px rgba(73, 119, 172, 0.08);
}

button.btn img {
    opacity: 0;
    position: absolute;
    top: 5%;
    left: 50%;
    height: 90%;
    transform: translate(-50%, 0);
    animation-duration: 0.3s;
}

.bx--list-box__menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 9;
}

.bx--list-box__menu-item:hover {
    font-weight: 400;
}

.dropdown-select button {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
}

.btn.entity-add {
    padding: 1vh 1.5vh;
    font-size: 1.4vh;
}

.btn.entity-save {
    background-color: #6fc831;
}

.btn.entity-delete {
    background-color: #ff1f1f;
}

.btn.entity-cancel {
    background-color: #ff5ab3;
}

.details-container {
    display: flex;
    flex-direction: column;
    padding: 4vh;
    border-radius: 1.5vh;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 3px 10px 0px rgba(73, 119, 172, 0.08);
    -moz-box-shadow: 0px 3px 10px 0px rgba(73, 119, 172, 0.08);
    box-shadow: 0px 3px 10px 0px rgba(73, 119, 172, 0.08);
}

.details-container.actions-panel button.btn {
    margin-bottom: 1vh;
}

.details-container input,
.details-container button,
.details-container .dropdown-select button,
.details-container .bx--list-box__menu,
.assistant button {
    width: 30vh;
    padding: 1.42vh;
    margin-bottom: 2.5vh;
    font-size: 1.78vh;
}

.details-container .bx--dropdown {
    position: relative;
}

.details-container .bx--list-box__menu {
    top: 5.5vh;
}

.details-container > *:last-child,
.assistant-container > *:last-child {
    margin-bottom: 0;
}

.details-container.actions-panel > button.btn:last-child {
    margin-bottom: 0;
}

.assistant {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Urbanist', sans-serif;
}

.assistant-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 34vh;
    height: fit-content;
    padding: 5vh 1vh;
    margin-bottom: 10vh;
    background-color: #FFFFFF;
    border-radius: 1vh;
}

.assistant-close {
    position: absolute;
    top: 1.25vh;
    right: 1.5vh;
    width: 1.25vh;
    height: 1.25vh;
    cursor: pointer;
}

.assistant-close img {
    width: inherit;
    height: inherit;
}

.assistant-container .bx--list-box__menu {
    overflow-y: auto;
    max-height: 35vh;

}

.assistant-container .bx--list-box__menu-item {
    padding: 1vh 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid black;
}

#list-filter-container .dropdown-select button {
    padding: 0.5vh 1vh;
    align-items: center;
}

#list-filter-container .bx--list-box__menu-item__option, #company-info .bx--list-box__menu-item__option {

    padding: 1vh 1vh;
    display: flex;
    align-items: center;
}

#list-filter-container .bx--list-box__menu-item__option:hover, #company-info .bx--list-box__menu-item__option:hover {
    background-color: #7bc2ff;
}

#list-filter-container .bx--list-box__label {
    font-size: 1.6vh;
}

.easepick-wrapper {
    z-index: 100;
}







