
body {
    margin: 0;
    padding: 0;

}
.cd-app-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: auto;
}  

.cd-app-row {
    width: 100%;
    display: flex;
    gap: 1em;
}



.cd-app-col {
   width: 50%;
   display: flex;
   flex-direction: column;
}

.cd-app-title {
    max-width: 400px;
    font-size: 52px;
    line-height: 64px;
    font-weight: 600;
}

.cd-location-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.cd-location-form-ctn {
    display: flex;
    align-items: center;
    gap: 10px;

}


.cd-app-destiny-input,.cd-app-origin-input {
    width: 100%;
    max-width: 400px;
    padding: 5px;
    border-radius: 5px;
    background-color: #f3f3f3;
    color: #5E5E5E;
    border: none;
}

.cd-app-destiny-input::placeholder,.cd-app-origin-input::placeholder{

    color: #5E5E5E;
}

.cd-app-number-ctn {
    display: flex;
    gap: 5px;
}

.cd-app-quantity-input {
    width: 100%;
    max-width: 40px;
    padding: 5px;
    border-radius: 5px;
    background-color: #f3f3f3;
    color: #5E5E5E;
    border: none;
    text-align: center;
}

.cd-app-quantity-up-input,.cd-app-quantity-down-input {
    width: 100%;
    font-size: 16px;
    max-width: 30px;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    text-align: center;
}



.cd-location-form-submit {
    background-color: #000000;
    color: #ffffff;
    font-weight: 500;
    border-radius: 8px;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.cd-location-form-submit:hover {
    background-color: #ffffff;
    color: #000000;
}

.cd-app-map {
    width: 100%;
    height: 500px;
    border-radius: 5px;
}


@media screen and (max-width: 1024px) {
    .cd-app-row {
        flex-direction: column;
    }
    .cd-app-col {
        width: 100%;
     
     }
}
