* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    height: 100vh;
}



#phone {
    width: 350px;
    height: 700px;
    border: 4px solid grey;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1em;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0px 2px 15px 4px black;
    display: flex;
    flex-direction: column;
}



#top-camera {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: black;
    margin: auto;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;

}

#lens-border {
    width: 15px;
    height: 15px;
    scale: 0.5;
    border-radius: 50%;
    border: 0.5px solid rebeccapurple;

}

#lens {
    width: 10px;
    height: 10px;
    shape-outside: ellipse(20% 50%);
    clip-path: ellipse(20% 50%);
    background: linear-gradient(139deg, rgba(255, 255, 255, 1) 9%, rgba(212, 218, 231, 1) 90%);
    box-shadow: 3px 4px bisque;
}


.results-div {
    flex-grow: 1;
    overflow-x: auto
}

.results-div li {
    list-style-type: none;
    width: 80%;
    height: 40px;
    padding: 6px;
    margin-left: 10%;
    margin-top: 20px;
    border: 2px solid rgba(31, 172, 125, 0.808);
    border-radius: 10px;
}


.phone-validator {
    height: 57%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}

.phone-validator .phone-input {
    border-radius: 20px;
    height: 32px;
    width: 85%;
    padding-left: 10px;
    border: none;
    align-self: center;
}

.phone-validator .phone-input:focus {
    border: none;
    outline: none;
}

.num-pad {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    font-size: 1.7em;
    /* row-gap: 30px; */

}

.number {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.number:active {
    color: aquamarine;
}

.num-pad .number {
    width: 100px;
    height: 65px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.num-pad .number2 {
    width: 100px;
    height: 65px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.num-pad .backtab-icon img {
    display: none;
}

.num-pad .backtab-icon img.show {
    display: block;
}


.bottom-nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style-type: none;
    padding: 0px;
    margin-left: 15px;
    margin-right: 15px;
}