.slider-div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* padding: 16px; */
    height: 150px;
    overflow: auto;
}

.updates-title {
    display: flex;
    gap: 16px;
    padding-bottom: 16px;
}

.slider {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    height: 6px;
    width: 6px;
    border-radius: 50%;
    display: block;
    transition: background-color 0.6s ease;
    border: 1px solid var(--e-global-color-d2857b8);
    gap: 8px;
}

.dot-div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 7px;
}

.activeSlide {
    background-color: var(--e-global-color-d2857b8);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

.mySlides .flex-center {
    justify-content: flex-start;
}

.mySlides.fade {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mySlides.fade .slider-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    max-height: 4em;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

div.information-box-new-user {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 88px;
    border: 1px solid var(--e-global-color-d2857b8);
    border-radius: 8px;
    padding: 16px;
    background: var(--e-global-color-1065d64);
    margin-top: 8px;

    .information-box-top {
        display: flex;
        flex-direction: column;

        .information-box-title {
            display: flex;
            flex-direction: row;

            .target-arrow-icon {
                width: 42px;
                height: 42px;
            }

            .message-to-user {
                padding: 9px;
            }
        }
    }

    .button-to-register-user {
        border: 2px solid var(--e-global-color-d2857b8);
        gap: 8px;
        color: var(--e-global-color-d2857b8);

        &:hover {
            svg path {
                fill: white;
            }
        }

        &:focus {
            color: white;

            svg path {
                fill: white;
            }
        }
    }
}

@media only screen and (max-width: 768px) {

    div.information-box-new-user {
        flex-direction: column;
        gap: 16px;
    }

    .button-to-register-user { 
        width: -webkit-fill-available !important;
    }
}