@import url('../base.css');

.phone-number-entry {
    display: flex;
}

.prefix {
    flex: 1;
    padding-inline: 20px;
    max-width: 110px;
    border-radius: 5px 0px 0px 5px;
    /* background-color: #f8f8f8; */
    color: black;
    font-size: 14px;
    box-sizing: border-box;
}

.phone-number {
    flex: 1;
    height: 50px;
    padding-inline: 20px;
    width: 100%;
    border-radius: 0px 5px 5px 0px;
    /* background-color: #f8f8f8; */
    font-size: 14px;
    box-sizing: border-box;
    /* border-top: 1px solid #c0c0c0;
    border-right: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0; */
}

.prefix:focus, .phone-number:focus {
    outline: none;
    border: 1px solid #6d6d6d;
}

.delivery_instructions {
    height: 100px;
    padding-top: 12px;
}

@media screen and (min-width: 1000px) {
    .other-options {
        font-size: 12px;
        padding: 10px;
    }
}