@font-face {
    font-family: Inter;
    src: url(./assets/font/Inter-VariableFont_slnt\,wght.ttf);
}

:root {
    --element-bg-color: #FFFFFF;
    --body-bg-color: #F6F7F9;
    --primary-color: #2A3647;
    --secondary-color: #29ABE2;
    --focus-color: #091931;
}

body {
    margin: 0;
    font-family: Inter;
    background-color: var(--body-bg-color);
}

p {
    margin: 0;
}

.d-none {
    display: none !important;
}

/* === header === */

header {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 16px;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    background-color: var(--element-bg-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-sizing: border-box;
    width: 100vw;
}

.header-user {
    width: 38px;
    height: 38px;
    border: 2px solid var(--primary-color);
    border-radius: 559px;
    text-align: center;
}

.header-user:hover {
    cursor: pointer;
}

.header-user-initials {
    color: var(--secondary-color);
    font-size: 12px;
    position: absolute;
    z-index: 1;
}

.header-user-initials:hover {
    cursor: pointer;
}

.header-logo {
    width: 32px;
    height: 39px;
}

/* === nav-bar === */

#nav {

    width: 100vw;
    background-color: #2A3647;
    height: 80px;
    position: fixed;
    z-index: 101;
    bottom: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
}

.nav-bar-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-inline: 18px;
}

.nav-bar-icon-bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 80px;
    height: 76px;
    color: #CDCDCD;
    border-radius: 16px;
    text-decoration: none;
}

.nav-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-block: 16px;
}

.nav-bar-links {
    text-decoration: none;
}

.nav-bar-icon-bg:hover,
.nav-bar-icon-bg:focus {
    background-color: var(--focus-color);
    color: #FFFFFF;
}

.nav-bar-icon-bg:hover img,
.nav-bar-icon-bg:focus img {
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(37deg) brightness(200%) contrast(101%);
}


.nav-bar-icon {
    width: 24px;
    height: 24px;
}

.nav-bar-icon:hover,
.nav-bar-icon:focus {
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(37deg) brightness(200%) contrast(101%);

}

.active {
    background-color: var(--focus-color);
}


/* used for close icon */
.close-icon {
    width: 24px;
    height: 24px;
}

/* === display flex variations  === */

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

/* === button variations ===*/

/* primary variant for buttons */
.btn-primary {
    background-color: var(--primary-color, black);
    border: none;
    color: #FFFFFF;
    cursor: pointer;
}

.btn-primary:hover:not(:focus) {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.3);
}

.btn-primary:focus {
    background-color: var(--focus-color);
}

/* secondary variant for buttons */
.btn-secondary {
    background-color: unset;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
}

.btn-secondary:hover:not(:focus) {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.3);
}

.btn-secondary:focus {
    border-color: var(--focus-color);
    color: var(--focus-color);
}

/* used for every wo-icon styled btn */
.btn-wo-icon {
    border-radius: 8px;
    width: 104px;
    height: 27px;
    padding: 4px 18px;
    font-size: 16px;
}

/* used for cancel/clear btn */
.btn-cancel {
    border-radius: 10px;
    width: 136px;
    height: 61px;
    padding: 18px 10px;
    font-size: 20px;
    gap: 10px;
}

.btn-cancel::after {
    content: url('./assets/img/close.svg');
}

.btn-cancel:hover:not(:focus) {
    filter: invert(49%) sepia(78%) saturate(448%) hue-rotate(152deg) brightness(102%) contrast(95%);
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.4);
}

/* used for create btn */
.btn-create {
    border-radius: 10px;
    height: 61px;
    padding: 18px 10px;
    font-size: 21px;
    font-weight: 700;
    gap: 10px;
}

.btn-create::after {
    content: url('./assets/img/check.svg');
}

.btn-create:hover:not(:focus) {
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.3);
}

/* used for add task btn */
.btn-add-task {
    border-radius: 10px;
    height: 51px;
    padding: 18px 10px;
    font-size: 21px;
    font-weight: 700;
    gap: 10px;
}

.btn-add-task::after {
    content: url('./assets/img/add.svg');
}


/* used for add contact btn */
.btn-add-contact {
    border-radius: 10px;
    width: 90%;
    height: 56px;
    padding: 12px 0;
    font-size: 21px;
    font-weight: 700;
    gap: 16px;
}

.btn-add-contact::after {
    content: url(./assets/img/person_add.svg);
}

/*Dropdown menu*/

.dropdown {
    float: right;
    position: relative;
    /* display: inline-block; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--primary-color);
    /* min-width: 160px; */
    overflow: auto;
    box-shadow: 0px 0px 4px 0px #0000001A;
    right: 0;
    z-index: 1;
    top: 46px;
    width: 150px;
    height: 204px;
    border-radius: 20px 0px 20px 20px;
    padding: 10px;
}

.dropdown-content a {
    color: #CDCDCD;
    /* padding: 8px 16px 8px 16px; */
    text-decoration: none;
    display: flex;
    width: 130px;
    height: 50px;
    border-radius: 8px;
    gap: 8px;
    /* justify-content: center; */
    align-items: center;
    padding-left: 10px;
}

.dropdown a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.show {
    display: block;
}

.sideNav-summary-focus {
    background-color: var(--focus-color) !important;
    color: white !important;
    width: 100%;
    height: 46px;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sideNav {
    height: 100vh;
    width: 232px;
    background-color: var(--primary-color);
    display: none;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    box-shadow: 0px 0px 4px 0px #0000001A;
}

.sideNav-links {
    height: 229px;
    gap: 15px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.sideNav-logo {
    padding-top: 64px;
    padding-bottom: 64px;
}

.sideNav-summary {
    width: 100%;
    height: 46px;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sideNav-summary-focus {
    background-color: var(--focus-color) !important;
    color: white !important;
    width: 100%;
    height: 46px;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sideNav-links a {
    text-decoration: none;
}

.sideNav-summary a:hover {
    color: #CDCDCD;
    ;
}

.sideNav-summary:hover {
    cursor: pointer;
    background-color: #2A3D59;
}

.sideNav-text {
    font-weight: 400;
    font-size: 16px;
    color: #CDCDCD;
    width: 80px;
}

.sideNav-policy-content {
    height: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    gap: 20px;
}

.sideNav-policy {
    padding: 8px 0px 8px 0px;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #A8A8A8;
    font-weight: 400;
    font-size: 16px;
}

.sideNav-notice {
    padding: 8px 0px 8px 0px;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #A8A8A8;
    font-weight: 400;
    font-size: 16px;
}

.sideNav-policy:hover {
    background-color: #2A3D59;
    color: #29ABE2;
    cursor: pointer;
}

.sideNav-notice:hover {
    background-color: #2A3D59;
    color: #29ABE2;
    cursor: pointer;
}


.header-text {
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 20px;
}

.top-right-infos {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-right: 20px;
}

.info-img {
    display: none;
}

.info-img:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.sideNav-policy-a{
    text-decoration: none !important;
    width: 100%;
}


@media(min-width: 1017px) {
    #nav {
        display: none;
    }

    #sideNav {
        display: flex;
    }

    .help-d-none {
        display: none !important;
    }

    .dropdown-content {
        height: auto;
    }

    .info-img {
        display: flex;
    }

    .header-text {
        display: flex;
        margin-right: 14%;
    }
}


#legal_notice-container {
    display: flex;
    padding: 15px;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 90px;
    margin-top: 100px;
}

.top {
    display: flex;
    justify-content: space-between;
}

.headline {
    font-weight: 700;
    font-size: 61px;
    margin-bottom: 30px;
}

.back-arrow-img {
    width: 40px;
}

.back-arrow-img:hover {
    cursor: pointer;
    background-color: #e6e6e6;
    border-radius: 50%;
}

@media(min-width: 1017px) {
    #legal_notice-container {
        width: calc(95% - 140px);
        max-width: 1440px;
        padding-left: 160px;
        margin-bottom: 0;
        /* margin-top: 100px; */
    }

    .back-arrow-img {
        width: 40px;
    }

    .headline {
        font-weight: 700;
        font-size: 61px;
        margin-bottom: 30px;
    }
    .header-user {
        width: 45px;
        height: 45px;
    }
    .header-user-initials{
        font-size: 19px;
    }
}

.privacy_policy-container {
    /* width: 80%; */
    display: flex;
    padding: 15px;
    justify-content: center;
    flex-direction: column;
    /* margin-top: 100px; */
}

.headline {
    font-weight: 700;
    font-size: 61px;
    margin-bottom: 30px;
}

.top {
    display: flex;
    justify-content: space-between;
}


.back-arrow-img {
    width: 40px;
}

.back-arrow-img:hover {
    cursor: pointer;
    background-color: #e6e6e6;
    border-radius: 50%;
}

@media(min-width: 1017px) {
    #privacy_policy-container {
        width: calc(95% - 230px);
        max-width: 1440px;
        padding-left: 160px;
        /* margin-top: 100px; */
        box-sizing: content-box;
        margin-bottom: 0px;
    }
    .back-arrow-img {
        width: 40px;
    }
    .headline {
        font-weight: 700;
        font-size: 61px;
        margin-bottom: 30px;
    }
}

.notice-text a{
    text-decoration: none;
    color: #29ABE2;
}

.privacy_policy-fulltext a{
    text-decoration: none;
    color: #29ABE2;
}

