@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css');

body {
    font-family: Montserrat;
    overflow-x: hidden;
}

#seller-form {
    padding-bottom: 30px;
}

.btn {
    text-transform: uppercase;
    border-radius: 0;
}

.form__header {
    text-transform: uppercase;
    font-weight: bold;
}

.card {
    border-radius: 0;
}

.card--no-border {
    border: none;
}

.card-header {
    background-color: transparent;
    border-radius: 0 !important;
}

.card-header .form__header {
    margin-bottom: 0;
    font-weight: 600;
}

.card-header--no-bottom-border {
    border-bottom: none;
}

::-webkit-calendar-picker-indicator {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%230c6efd" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}

.form__field,
.form__label {
    font-size: 18px;
    font-weight: 500;
}

.form__field--italic,
.form__label--italic {
    font-style: italic;
}

.form__field {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(12, 110, 253, 0.6);
    border-radius: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    color: rgba(12, 110, 253, 0.6);
    transition: all 0.4s ease-in-out;
}

.form__field:focus {
    color: rgba(12, 110, 253, 1);
    outline: none;
    box-shadow: none;
    border-bottom-color: rgba(12, 110, 253, 1);
    background-color: transparent;
}

.form__field:disabled,
.form__field[readonly] {
    background-color: transparent;
    border-bottom: none;
}

.form__signature {
    border: 2px dotted #CCCCCC;
    border-radius: 15px;
    cursor: crosshair;
    height: 100px;
}

.text {
    font-size: 20px;
    text-transform: uppercase;
}

.text--small {
    font-size: 13px;
}

.text--bold {
    font-weight: 600;
}

.text--right {
    text-align: right;
}

.text--normal {
    text-transform: none;
}

.row-table .left-col {
    width: 500px;
    max-width: 500px;
}

.row-table__cell {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 6px;
    padding-top: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    width: calc(calc(100% - 500px) / 3);
    max-width: calc(calc(100% - 500px) / 3);
}

.row-table__row:nth-last-child(1) .row-table__cell {
    border-bottom: none;
}

.row-table__cell:nth-last-child(1) {
    border-right: none;
}

.row-table__row--cat .row-table__cell {
    background-color: rgba(0, 0, 0, 0.7);
    color: rgb(255, 255, 255);
    border-right: none;
}

.row-table__row--child .left-col {
    font-weight: 400;
    font-size: 16px;
    text-align: left !important;
}

.logo,
.agent-avatar {
    max-height: 100px;
    width: auto;
}

.agent-name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.4px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .row-table .left-col {
        width: 250px;
        max-width: 250px;
    }

    .row-table__cell {
        width: calc(calc(100% - 250px) / 3);
        max-width: calc(calc(100% - 250px) / 3);
    }
}

@media (max-width: 575px) {
    .row-table .left-col {
        width: 150px;
        max-width: 150px;
    }

    .row-table__cell {
        width: calc(calc(100% - 150px) / 3);
        max-width: calc(calc(100% - 150px) / 3);
    }
}