/*RESET*/
*, *::before, *::after{
    box-sizing: border-box; 
    scrollbar-width: thin;
    z-index: 10;
    font-family: 'Rubik', sans-serif;
}
*{
    margin: 0; 
    padding: 0; 
}

ul[role='list'], ol[role='list']{
    list-style: none; 
}

html:focus-within{
    scroll-behavior: smooth; 
}

a:not([class]){
    text-decoration-skip-ink: auto; 
}

img, picture, svg, video, canvas{
    max-width: 100%;
    height: auto; 
    vertical-align: middle; 
    font-style: italic; 
    background-repeat: no-repeat; 
    background-size: cover;
}

input, button, textarea, select{
    font: inherit; 
}

@media (prefers-reduced-motion: reduce){
    html:focus-within {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition: none;
    }
}

body, html{
    height: 100%; 
    scroll-behavior: smooth; 
}

a {
    text-decoration: none; 
    color: inherit; 
}

/*STYLE*/

:root{
    --max-heigth: 700px;
}

body{
    min-height: min-content;
}

.card {
    border: 1px solid #b0b0b0;
    min-width: min(430px, 100%);
    max-height: 850px;
    min-height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%), url('/assets/background.webp');
    background-size: cover;
    width: 100%;
    overflow: auto;
}

.hide-scroll{
    height: 100%;
    width: 100%;
}
  

@media (min-height: 870px) {
    .card {
        aspect-ratio: 9/16 !important;
        width: auto !important;
        min-height: unset !important;
        border-radius: 1rem;
    }

    .hide-scroll{
        overflow: hidden; border-radius: 1rem;
        height: auto;
        width: auto;
    }
    
}

.container{
    max-width: 600px;
}

.white{
    background-color: #fff;
    width: 100%;
    position: relative;	
}

.white::before{
    content: "";
    background-color: #fff;
    transform:skewY(-3deg);
    position: absolute;
    top: -25px;
    left: 0px;
    width: 100%;
    height: 200px;
}

.icon {
    height: 60px;
    width: 60px;
    display: grid;
    place-items: center;
    background-color: #f5f5f5;
    padding: 20px;
}

.fackelmann-icon{
    position: absolute;
    height: 50px;
    top: 1rem;
    left: 1rem;
}

.profile-icon{
    height: 200px;
    width: 200px;
    border: #fff solid 7px;
    background-color: #f5f5f5;
}

.addContact{
    background-color: #b0a895;
    border: none;
    padding: 15px 20px;
    margin-inline: 16px;
    width: calc(100% - 32px);
}

.container-data{
    margin-inline: 16px;
    padding-block: 4px;
}

.small{
    width: 50px;
    height: 50px;
}


.ripple {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    z-index: 1000;
    width: 20px;
    height: 20px;
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    }

    @keyframes ripple-effect {
    to {
        transform: scale(20);
        opacity: 0;
    }
    }

/*UTILITY*/

.shadow{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

.flex{
    display: flex;
}

.flex-col{
    flex-direction: column;
}

.center-x{   
    justify-content: center;
}

.center-y{
    align-items: center;
}

.rounded{
    border-radius: 15px;
}

.round{
    border-radius: 50%;
}

.z-back{
    z-index: 9;
}

.w-full{
    width: 100%;
}

.h-full{
    height: 100%;
}

.margin-top-66{
    margin-top: 66px;
}

.margin-top-4{
    margin-top: 4px;
}

.margin-top-8{
    margin-top: 8px;
}

.margin-top-16{
    margin-top: 16px;
}

.margin-bottom-8{
    margin-bottom: 8px;
}

.margin-16{
    margin: 1rem;
}

.space-around{
    justify-content: space-around;
}

.relative{
    position: relative;
}

.center-text{
    text-align: center;
}

.bold{
    font-weight: bold;
}

.underscore{
    border-bottom: 2px solid #d5d5d5;
}

.gap-10{
    gap: 10px;
}

.gap-3{
    gap: 3px;
}

.one-line-height{
    min-height: 1lh;
}

.overflow-hidden{
    overflow: hidden;
}