@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
}

.sweet-overlay, .sweet-alert {
    position: absolute !important;
}

body {
    background: #fff;
    padding: 0 10px;
}
    body .datepicker .datepicker-days table tbody tr td.old.disabled.day {
        color: #c6ced5;
    }
    body .datepicker .datepicker-days table tbody tr td.old.day {
        color: #4e5c68;
    }
    body .datepicker .datepicker-days table tbody tr td.day.new {
        color: #4e5c68;
    }
    body .datepicker .datepicker-days table tbody tr td.new.disabled.day {
        color: #c6ced5;
    }

.wrapper {
    max-width: 700px;
    width: 100%;
    background: #fff;
    margin: 0px auto;
    /*box-shadow: 1px 1px 2px rgba(0,0,0,0.125);*/
    padding: 0px !important;
    margin-bottom: 10px !important;
}

    .wrapper .title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 25px;
        color: #ff0000;
        text-transform: uppercase;
        text-align: center;
    }

    .wrapper .sub-title {
        text-align: center;
        margin-bottom: 25px;
        font-size: 15px;
    }

    .wrapper .form {
        width: 100%;
    }

        .wrapper .form .inputamount {
            display: flex;
            align-items: center;
        }

            .wrapper .form .inputamount .service option {
                color: green;
                font-weight: 700;
            }

                .wrapper .form .inputamount .service option:disabled {
                    color: #808080;
                    font-weight: 400;
                }

            .wrapper .form .inputamount label {
                width: 100%;
                color: black;
                margin: 8px 0 0 5px;
                /*margin-right: 10px;*/
                font-size: 14px;
            }

            .wrapper .form .inputamount .input {
                width: 100%;
                outline: none;
                margin: 5px 10px 5px 0;
                border: 1px solid #d5dbd9;
                font-size: 15px;
                padding: 8px 10px;
                border-radius: 10px;
                transition: all 0.3s ease;
            }

            .wrapper .form .inputamount .btn {
                width: 100%;
                padding: 8px 10px;
                font-size: 15px;
                border: 0px;
                background: #337AB7;
                color: #fff;
                cursor: pointer;
                border-radius: 10px;
                outline: none;
            }

                .wrapper .form .inputamount .btn:hover {
                    background: #2e6da4;
                }

        .wrapper .form .inputfield {
            margin-bottom: 10px;
            display: block;
            align-items: center;
        }

            .wrapper .form .inputfield table {
                width: 100%;
                border-collapse: collapse;
            }

                .wrapper .form .inputfield table thead tr th {
                    text-align: center;
                    font-weight: bold;
                    border: 1px solid #337AB7;
                    font-size: 14px;
                }

                .wrapper .form .inputfield table tbody tr td {
                    text-align: center;
                    border: 1px solid #337AB7;
                    font-size: 14px;
                }

            .wrapper .form .inputfield .service option {
                color: green;
                font-weight: 700;
            }

                .wrapper .form .inputfield .service option:disabled {
                    color: #808080;
                    font-weight: 400;
                }

            .wrapper .form .inputfield label {
                width: 250px;
                color: black;
                margin: 5px;
                /*margin-right: 10px;*/
                font-size: 14px;
            }

            .wrapper .form .inputfield .input,
            .wrapper .form .inputfield .textarea {
                width: 100%;
                outline: none;
                border: 1px solid #d5dbd9;
                font-size: 15px;
                padding: 8px 10px;
                border-radius: 10px;
                transition: all 0.3s ease;
            }

            .wrapper .form .inputfield .textarea {
                width: 100%;
                height: 125px;
                resize: none;
            }

            .wrapper .form .inputfield .custom_select {
                position: relative;
                width: 100%;
                height: 37px;
            }

                .wrapper .form .inputfield .custom_select:before {
                    content: "";
                    position: absolute;
                    top: 12px;
                    right: 10px;
                    border: 8px solid;
                    border-color: #d5dbd9 transparent transparent transparent;
                    pointer-events: none;
                }

                .wrapper .form .inputfield .custom_select select {
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    outline: none;
                    width: 100%;
                    height: 100%;
                    border: 0px;
                    padding: 8px 10px;
                    font-size: 15px;
                    border: 1px solid #d5dbd9;
                    border-radius: 3px;
                }


                    .wrapper .form .inputfield .input:focus,
                    .wrapper .form .inputfield .textarea:focus,
                    .wrapper .form .inputfield .custom_select select:focus {
                        border: 1px solid #fec107;
                    }

            .wrapper .form .inputfield p {
                font-size: 12px;
                color: #757575;
            }

                .wrapper .form .inputfield p .danger {
                    color: red;
                }

            .wrapper .form .inputfield .check {
                width: 15px !important;
                height: 15px !important;
                position: relative !important;
                display: block !important;
                cursor: pointer !important;
            }

                .wrapper .form .inputfield .check input[type="checkbox"] {
                    position: absolute !important;
                    top: 0 !important;
                    left: 0 !important;
                    opacity: 0 !important;
                }

                .wrapper .form .inputfield .check .checkmark {
                    width: 15px !important;
                    height: 15px !important;
                    border: 1px solid #fec107 !important;
                    display: block !important;
                    position: relative !important;
                }

                    .wrapper .form .inputfield .check .checkmark:before {
                        content: "" !important;
                        position: absolute !important;
                        top: 1px !important;
                        left: 2px !important;
                        width: 5px !important;
                        height: 2px !important;
                        border: 2px solid !important;
                        border-color: transparent transparent #fff #fff !important;
                        transform: rotate(-45deg) !important;
                        display: none !important;
                    }

                .wrapper .form .inputfield .check input[type="checkbox"]:checked ~ .checkmark {
                    background: #fec107 !important;
                }

                    .wrapper .form .inputfield .check input[type="checkbox"]:checked ~ .checkmark:before {
                        display: block !important;
                    }

            .wrapper .form .inputfield .btn {
                margin-top: 20px;
                width: 20%;
                padding: 8px 10px;
                font-size: 15px;
                border: 0px;
                background: #337AB7;
                color: #fff;
                cursor: pointer;
                border-radius: 3px;
                outline: none;
                border-radius: 10px;
            }

                .wrapper .form .inputfield .btn:hover {
                    background: #2e6da4;
                }

            .wrapper .form .inputfield:last-child {
                margin-bottom: 0;
            }
/*.row {
    margin-bottom:15px;
}*/

img {
    height: auto; /* Make sure images are scaled correctly. */
    max-width: 100%; /* Adhere to container width. */
}

.btncenter {
    text-align: center;
}

.box-pickup {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.condition-row {
    margin: 5px 0;
}

.condition-l {
    float: left;
    width: 10%;
    line-height: 0;
}

.condition-r {
    float: left;
    width: 90%;
    text-align: left;
    padding-left: 5px;
}

    .condition-r p {
        font-size: 14px;
    }

.clear {
    clear: both;
}

.amountservice {
    margin-top: 20px !important;
}

@media (max-width:689px) {
    .amountservice {
        margin-top: 40px !important;
    }
}

@media (max-width:420px) {
    .wrapper .form .inputfield .btn {
        width: 100%;
        padding: 8px 10px;
        font-size: 15px;
        border: 0px;
        background: #337AB7;
        color: #fff;
        cursor: pointer;
        border-radius: 10px;
        outline: none;
    }

    .wrapper .form .inputfield {
        flex-direction: column;
        align-items: flex-start;
    }

        .wrapper .form .inputfield label {
            margin-bottom: 5px;
        }

        .wrapper .form .inputfield.terms {
            flex-direction: row;
        }

    .wrapper .form .inputamount {
        flex-direction: column;
        align-items: flex-start;
    }

        .wrapper .form .inputamount label {
            margin-bottom: 5px;
        }

        .wrapper .form .inputamount.terms {
            flex-direction: row;
        }

        .wrapper .form .inputamount .service {
            width: 100% !important;
        }

    .amountservice {
        margin-top: 0px !important;
    }
}

@media (max-width:573px) {
    .amountservice {
        margin-top: 0px !important;
    }
}

@media (max-width:575px) {
    .wrapper .form .inputamount .btn {
        margin-top: 4px;
    }
}

@media (max-width:767px) {
    #carType {
        margin-top: 10px;
    }
}