.payment-form {
    display: flex;
    flex-direction: column;
     align-items: center;
}

.input-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 98%;
    border: 1px solid #d2cfcf;
    border-radius: 5px;
    padding-bottom: 25px;
    letter-spacing: 1px;
}

/* ! */
.delivery-container,
.billing-container-other,
.input-containers,
.billing-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
/* ! */

.billing-container-other {
    align-items: unset;
}

@font-face {
  font-family: latoFont;
  src: url("fonts/Lato/Lato-Bold.woff");
}

.name-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.input-infos {
    display: flex;
    gap: 3px;
}

.input-infos > span {
    padding-bottom: 10px;
}

.delivery-options > *:not(:first-child) {
    padding-top: 10px;
}

input[type="text"],
input[type="email"],
textarea {
    border: 1px solid;
    border-radius: 3px;
    border-color: #807878;
    padding: 8px;
}

.width-style {
    width: 100%;
}

.payment-container {
    max-width: 600px;
    margin: auto;
    padding: 0px 10px;
}

.payment-container h2 {
    width: 100%;
    text-align: center;
    font-family: sans-serif;
}

.flex-column-align-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-column-align-start {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.flex-space-width {
    display: flex;
    justify-content: space-between;
    width: 90%;
}

.details-container {
    width: 100%;
}

.order-details {
    width: 100%;
    display: flex;
    justify-content: center;
    border: 1px solid #d2cfcf;
    border-radius: 5px;
    padding: 20px;
    background-color: whitesmoke;
}

.order-details-container {
    width: 100%;
    border: 1px solid #d2cfcf;
    border-radius: 5px;
    background-color: white;
}

.order-details-borders{
    border-bottom: 1px solid #c6bdbd;
}

.order-details-container > * {
    padding: 10px;
}

.details-width {
    width: 200px;
}

.otherAddressTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.delivery-info-labels > :first-child {
    width: 150px;
}

.delivery-info-labels:hover {
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.delivery-info-labels > span:nth-child(2) {
    width: 65px;
}

.delivery-info-labels {
    display: flex;
    padding: 10px;
}

.send-order-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding-top: 70px;
    gap: 30px;
}

.send-order-container > span {
    text-align: center;
}

.sendOrder-button:hover {
    cursor: pointer;
    background-color: green !important;
}

@media (width <= 1050px) {
    .input-container {
        flex-direction: column;
        align-items: center;
    }

    .billing-container-other{
        width: 100%;
        align-items: center;
    }

    .entry-detail {
        max-width: unset;;
        margin: unset;
    }

    .delivery-info-labels {
        flex-direction: column;
    }
}


@media (width <= 840px) {
    .input-container {
        padding: 20px;
    }

    .order-details {
        width: 95% !important;
        padding: 0px;
    }

    .details-width {
        width: 110px;
    }
}

@media (width <= 500px) {
   .billing-container-other{
        align-items: unset;
    }
}