
input {
    font-size: 20px;
    color: #d1d1d1;
    font-weight: 400;
}

input.number-input {
    width: 100%;
    height: 55px;
    line-height: 55px;
    text-align: center;
    padding: 0 20px;
    border-radius: 10px;
    border: 0;
    box-shadow: 0px 0px 17px -1px rgba(132, 132, 132, 0.15);
}

.wrapper {
    width: 100%;
    margin-top: -40px;
    padding: 20px;
}

.wrapper .phone {
    width: 350px;
    margin: 40px auto 0 auto;
    position: relative;
}

.wrapper .phone span.title {
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    text-align: center;
}

.wrapper .phone .phone-container {
    width: 100%;
    margin-top: 30px;
}

.wrapper .phone .phone-container .keyboard {
    width: 90%;
    margin-left: 5%;
    margin-top: 40px;
}

.wrapper .phone .phone-container .keyboard .number {
    width: 100%;
    font-size: 0;
    text-align: center;
}

.wrapper .phone .phone-container .keyboard .number.aling-right {
    text-align: right;
    width: 100%;
}

.wrapper .phone .phone-container .keyboard .number span {
    font-size: 24px;
    color: #E4BF88;
    display: inline-block;
    width: 33%;
    text-align: center;
    margin-bottom: 25px;
}

.wrapper .phone .phone-container .keyboard .number span.call-button {
    opacity: 0;
    transition: 250ms;
}

.wrapper .phone .phone-container .keyboard .number span.call-button.show {
    opacity: 1;
}

.wrapper .phone .phone-container .keyboard .number span.call-button img {
    display: inline-block;
    vertical-align: middle;
}

.wrapper .phone .phone-container .keyboard .number span i {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: white;
    cursor: pointer;
    border-radius: 100%;
    transition: 250ms;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    box-shadow: 8px 8px 24px 0px rgba(132, 132, 132, 0.09);
}

.wrapper .phone .phone-container .keyboard .number span i.delete {
    background: transparent;
    box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    -ms-box-shadow: 0 0 0 0;
    color: #E4BF88;
}

.wrapper .phone .phone-container .keyboard .number span i.delete img {
    display: inline-block;
    vertical-align: middle;
}

.wrapper .phone .phone-container .keyboard .number span:hover i {
    color: black;
}

.wrapper .phone .phone-container .keyboard .number span:active i {
    transform: translateY(1px);
    box-shadow: 5px 5px 16px 0px rgba(132, 132, 132, 0.18);
}

.wrapper .phone .phone-container .keyboard .number span:active i.delete {
    box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    -ms-box-shadow: 0 0 0 0;
    transform: translateY(0px);
}

.wrapper .phone .phone-container .keyboard .number span:active i.delete img {
    transtiion: 250ms;
}

.wrapper .phone .phone-container .keyboard .number span:active i.delete:active img {
    transform: translateY(2px);
}
