.profile_title {
    margin-bottom: 10px;
    transition: all 200ms ease-in-out;
    width: 100%;
    font-weight: 700;
    align-items: center;
    display: flex;
    padding: 4px;
    text-align: left;
    border: 2px solid #46a2fd;
    border-radius: 10px;
    margin-left: 10px;
    height: 50px;
}

.profile_title h5 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-left: 10px;
    font-size: 25px;
}

.container_right_photo img {
    max-height: 80%;
}

.error {
    display: none;
    position: fixed;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 320px;
    padding: 12px;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    background: #EF665B;
    border-radius: 8px;
    box-shadow: 0px 0px 5px -3px #111;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.error__icon {
    width: 20px;
    height: 20px;
    transform: translateY(-2px);
    margin-right: 8px;
}

.error__icon path {
    fill: #fff;
}

.error__title {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}

.error__close {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
}

.error__close path {
    fill: #fff;
}

.Btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: #d30202;
}

.sign {
    width: 100%;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign svg {
    width: 17px;
}

.sign svg path {
    fill: white;
}

/* text */
.text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition-duration: .3s;
}

/* hover effect on button width */
.Btn:hover {
    width: 155px;
    border-radius: 40px;
}

.Btn:hover .sign {
    width: 30%;
}

.Btn:hover .text {
    opacity: 1;
    width: 70%;
    padding-right: 10px;
}

.Btn:active {
    transform: translate(2px, 2px);
}

.btn_change_img {
    font-size: 15px;
    cursor: pointer;
    margin-top: 1px;
    color: #fff;
    border-radius: 5px;
    padding: 3px;
    max-width: 80%;
    background-color: #46a2fd;
    display: flex;
    position: relative;
}

.btn_change_img:hover {
    color: #fff;
    text-decoration: underline;
}

.container_profile {
    margin-top: 40px;
    flex-direction: column;
    display: flex;
    border-radius: 10px;
    box-shadow: 0px 0px 16px 8px;
    width: 100%;
    height: 500px;
}

.container_left {
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    display: flex;
    width: 70%;
    height: 200px;
}

.container_50 {
    padding: 10px;
    transition: all 200ms ease-in-out;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    display: flex;
    border-radius: 10px;
    margin: 10px;
    border: 3px solid #46a2fd;
    width: 50%;
}

.container_50:hover {
    transform: translateY(-10px);
}

.container_inn {
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
    display: flex;
    height: 100%;
    width: 100%;
}

.separator {
    display: flex;
}

.container_account {
    padding: 10px;
    height: 300px;
    display: flex;
}

.profile_title:hover {
    transform: translateY(-5px);
}

.card {
    box-shadow: 2px 2px 10px #000000;
    background: #f1eeee;
}

img.position-relative.w-100 {
    max-height: 630px;
}

html {
    scroll-behavior: smooth;
}

h1.display-3.text-white.mb-md-4 {
    font-size: 40px;
}

button.btn_close_session {
    margin-top: 0px !important;
    transition: all 200ms ease-in-out;
}

button.btn_close_session:hover {
    background-color: #2787e7;
}

.carousel-indicators {
    z-index: 2 !important;
}

.container_right_photo {
    width: 30%;
    height: 200px;
}

@media (max-width: 768px) {
    .container_right_photo {
        width: 100%;
    }

    .separator {
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column-reverse;
    }

    .container_profile {
        margin-top: 40px;
        flex-direction: column;
        display: flex;
        border-radius: 10px;
        box-shadow: 0px 0px 16px 8px;
        width: 100%;
        height: 900px;
        justify-content: center;
    }

    .container_account {
        height: auto;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 10px;
        display: flex;
    }

    .container_50 {
        width: 80%;
    }

    .profile_title h5 {
        font-size: 15px;
    }
}

@media (max-width: 550px) {
    #coreocss h5 {
        font-size: 10px;
    }

    #type_person_text {
        font-size: 12px;
    }

    svg {
        display: none;
    }
}

@media (max-width: 1066px) {
    .container_left {
        width: 100%;
    }

    .container_50 {
        width: 90%;
    }

    .profile_title {
        margin-left: 0px;
    }

    .Btn:hover {
        width: 105px;
    }
}

@media (max-width: 992px) {
    .Btn:hover {
        width: 190px;
    }

    .container_right_photo img {
        max-width: none; /* Ensure max-width is not applied */
    }
}
@media (max-width: 575.98px) {
    .carousel-caption h1 {
        font-size: 30px !important;
        font-weight: 700 !important;
    }
}

