.contact-detailed-images:hover {
    color: #005DFF;
    font-weight: 700;
}

.contact-detailed-top {
    display: flex;
    align-items: center;
    gap: 54px;
}

.contact-detailed-name {
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.initial-big {
    box-sizing: border-box;
    display: flex;
    width: 120px;
    height: 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    border: 1px solid #FFF;
    color: white;
    color: #FFF;
    text-align: center;
    font-size: 47px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.contact-detailed-information {
    color: #000;
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.phone {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.add-contact-buttons {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
}

.add-contact-buttons-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.button-clear {
    display: flex;
    width: 136px;
    padding: 16px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid #647188;
    background: var(--white, #FFF);
    cursor: pointer;
    color: #647188;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.button-clear:hover {
    transition: ease-in-out 100ms;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: var(--bg-color, #4589FF);
    border: 1px solid var(--bg-color, #4589FF);
}

.button-clear:hover .button-clear-pic {
    content: url('../img/cancel_icon_hover.png');
}

.button-clear:active {
    color: var(--btn-hover, #005DFF);
    border: 1px solid var(--btn-hover, #005DFF);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.button-clear:active .button-clear-pic {
    content: url('../img/cancel_icon_active.png');
}

.button-clear-pic {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.button-create-task {
    display: flex;
    padding: 16px 10px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
    background: var(--version-2-main-color, #4589FF);
    cursor: pointer;
    border: none;
    color: #FFF;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.button-create-task:hover {
    background: #005DFF;
}

.button-create-task:active {
    background-color: #FFFFFF;
    color: var(--bg-color, #4589FF);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.button-create-task:active .button-create-task-pic {
    content: url('../img/check_active.png');
}

.button-create-task-pic {
    width: 24px;
    height: 24px;
}

.modal-logo img {
    width: 55.123px;
    height: 66.483px;
}

.modal-headline {
    color: var(--white, #FFF);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.modal-text {
    color: var(--white, #FFF);
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.modal-input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.modal-input-img {
    position: relative;
    width: 120px;
    height: 120px;
    background-color: #D1D1D1;
    border-radius: 70%;
    padding: 5px;
    border-radius: 70px;
    border: 3px solid var(--white, #FFF);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.10);
}

.modal-input-img img {
    position: absolute;
    left: 32px;
    top: 32px;
    width: 64px;
    height: 64px;
}

.modal-input-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.modal-input-frame {
    display: flex;
    flex-direction: column;
    width: 422px;
    padding: 12px 21px;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--style, #D1D1D1);
    background: #FFF;
    justify-content: space-between;
    cursor: pointer;
}

.modal-input-frame:focus-within {
    border-bottom: 1px solid var(--bg-color, #4589FF);
}

.modal-name-input-inner {
    display: flex;
    width: 380px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.modal-input-field {
    color: black;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    outline: none;
    border: none;
    width: 100%;
    cursor: pointer;
}

.modal-input-field::placeholder {
    color: #D1D1D1;
}

.modal-input-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media(max-width: 1300px) {
    #contact-details {
        padding-left: 50px;
    }
}

@media(max-width: 1200px) {
    #contact-details {
        display: none !important;
    }

    .addContactBtnText {
        display: none;
    }

    .add-person-button {
        position: absolute;
        right: 100px;
        bottom: 100px;
        padding: 16px;
        width: auto;
    }

    .container {
        padding: 20px;
        width: 900px;
    }

    .container-contact-all {
        width: 100%;
    }

    .letter-title-underline {
        width: 100%;
    }

    #contact-details-mobile {
        display: none;
        position: absolute;
        margin-top: 95px;
        margin-left: 236px;
        padding: 40px;
        height: 1000px;
        top: 0;
    }

    .contact-detailed-images-head {
        position: fixed;
        bottom: 100px;
        right: 100px;
        border-radius: 10px;
        background: var(--Ligth-blue, #4589FF);
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        display: inline-flex;
        padding: 16px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }

    .contact-detailed-images-head:hover {
        background: var(--Ligth-blue, #005DFF);
    }

    #invisibleDiv {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-Index: 6;
    }

    #contact-mobile-buttons {
        cursor: pointer;
        position: fixed;
        bottom: 100px;
        right: 100px;
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 20px 20px 0px 20px;
        background: var(--white, #FFF);
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        animation: slide 0.5s ease-in-out;
        z-index: 10;
    }

    @keyframes slide {
        0% {
            transform: translateX(700px);
        }
        100% {
            transform: translateX(0);
        }
    }

    .contact-detailed-images-mobile {
        display: flex;
        width: 96px;
        padding: 8px;
        z-index: 1000;
        align-items: center;
        gap: 8px;
        color: #2A3647;
        font-family: Open Sans;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
    }

    .contact-detailed-images-mobile img {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .contact-detailed-mobile-return {
        cursor: pointer;
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        position: fixed;
        top: 130px;
        right: 20px;
    }

    .edit-modal {
        display: none;
        justify-content: center;
        align-items: center;
        height: 100vh;
        width: 100%;
    }

    .edit-content {
        position: static;
    }

    #closeEditModalBtn {
        position: relative;
        top: -85px;
        right: -255px;
    }
}